
    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_de2dc98a22cb369d12cd9a2a.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00000;src:url('chunks/assets/font_bf959156e786e69381ea9386.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00000;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:1.005000;font-style: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);}
.m1_c00000{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_c00000{vertical-align:0.000000px;}
.ls0_c00000{letter-spacing:0.000000px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00000{word-spacing:0.000000px;}
.fc0_c00000{color:rgb(0,0,0);}
.fs4_c00000{font-size:42.000000px;}
.fs3_c00000{font-size:60.000000px;}
.fs1_c00000{font-size:63.000000px;}
.fs0_c00000{font-size:72.000000px;}
.fs2_c00000{font-size:102.000000px;}
.y0_c00000{bottom:0.000000px;}
.y6_c00000{bottom:35.925007px;}
.y5_c00000{bottom:66.525004px;}
.y4_c00000{bottom:97.125005px;}
.y22_c00000{bottom:139.264499px;}
.y19_c00000{bottom:196.933500px;}
.y21_c00000{bottom:209.518500px;}
.y18_c00000{bottom:209.533503px;}
.y20_c00000{bottom:222.118502px;}
.y17_c00000{bottom:222.133505px;}
.y1f_c00000{bottom:234.718504px;}
.y16_c00000{bottom:234.733496px;}
.y1e_c00000{bottom:259.918497px;}
.y15_c00000{bottom:259.933500px;}
.y1d_c00000{bottom:272.518500px;}
.y14_c00000{bottom:272.533503px;}
.y1c_c00000{bottom:285.118502px;}
.y13_c00000{bottom:285.133499px;}
.y1b_c00000{bottom:310.318501px;}
.y12_c00000{bottom:310.333501px;}
.y1a_c00000{bottom:322.918500px;}
.y11_c00000{bottom:322.933500px;}
.y10_c00000{bottom:348.133500px;}
.yf_c00000{bottom:386.785499px;}
.ye_c00000{bottom:408.044999px;}
.yd_c00000{bottom:502.864502px;}
.yc_c00000{bottom:520.864502px;}
.yb_c00000{bottom:538.864499px;}
.ya_c00000{bottom:556.864499px;}
.y9_c00000{bottom:645.510000px;}
.y8_c00000{bottom:666.771000px;}
.y7_c00000{bottom:726.298500px;}
.y3_c00000{bottom:752.599495px;}
.y2_c00000{bottom:879.369000px;}
.y1_c00000{bottom:966.726000px;}
.h8_c00000{height:32.130000px;}
.h9_c00000{height:37.968000px;}
.h3_c00000{height:48.195000px;}
.h7_c00000{height:54.240000px;}
.h6_c00000{height:56.952000px;}
.h2_c00000{height:65.088000px;}
.h5_c00000{height:92.208000px;}
.h4_c00000{height:119.055004px;}
.h0_c00000{height:1262.833500px;}
.h1_c00000{height:1263.000000px;}
.w2_c00000{width:637.794021px;}
.w0_c00000{width:892.912500px;}
.w1_c00000{width:893.250000px;}
.x0_c00000{left:0.000000px;}
.x1_c00000{left:102.045000px;}
.x2_c00000{left:106.297500px;}
.x4_c00000{left:203.484001px;}
.x3_c00000{left:454.959000px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:0.000000pt;}
.fs4_c00000{font-size:37.333333pt;}
.fs3_c00000{font-size:53.333333pt;}
.fs1_c00000{font-size:56.000000pt;}
.fs0_c00000{font-size:64.000000pt;}
.fs2_c00000{font-size:90.666667pt;}
.y0_c00000{bottom:0.000000pt;}
.y6_c00000{bottom:31.933340pt;}
.y5_c00000{bottom:59.133337pt;}
.y4_c00000{bottom:86.333337pt;}
.y22_c00000{bottom:123.790666pt;}
.y19_c00000{bottom:175.052000pt;}
.y21_c00000{bottom:186.238666pt;}
.y18_c00000{bottom:186.252002pt;}
.y20_c00000{bottom:197.438668pt;}
.y17_c00000{bottom:197.452004pt;}
.y1f_c00000{bottom:208.638670pt;}
.y16_c00000{bottom:208.651996pt;}
.y1e_c00000{bottom:231.038664pt;}
.y15_c00000{bottom:231.052000pt;}
.y1d_c00000{bottom:242.238666pt;}
.y14_c00000{bottom:242.252002pt;}
.y1c_c00000{bottom:253.438668pt;}
.y13_c00000{bottom:253.451999pt;}
.y1b_c00000{bottom:275.838667pt;}
.y12_c00000{bottom:275.852001pt;}
.y1a_c00000{bottom:287.038667pt;}
.y11_c00000{bottom:287.052000pt;}
.y10_c00000{bottom:309.452000pt;}
.yf_c00000{bottom:343.809333pt;}
.ye_c00000{bottom:362.706666pt;}
.yd_c00000{bottom:446.990669pt;}
.yc_c00000{bottom:462.990669pt;}
.yb_c00000{bottom:478.990666pt;}
.ya_c00000{bottom:494.990666pt;}
.y9_c00000{bottom:573.786667pt;}
.y8_c00000{bottom:592.685334pt;}
.y7_c00000{bottom:645.598667pt;}
.y3_c00000{bottom:668.977329pt;}
.y2_c00000{bottom:781.661334pt;}
.y1_c00000{bottom:859.312000pt;}
.h8_c00000{height:28.560000pt;}
.h9_c00000{height:33.749333pt;}
.h3_c00000{height:42.840000pt;}
.h7_c00000{height:48.213333pt;}
.h6_c00000{height:50.624000pt;}
.h2_c00000{height:57.856000pt;}
.h5_c00000{height:81.962667pt;}
.h4_c00000{height:105.826671pt;}
.h0_c00000{height:1122.518667pt;}
.h1_c00000{height:1122.666667pt;}
.w2_c00000{width:566.928019pt;}
.w0_c00000{width:793.700000pt;}
.w1_c00000{width:794.000000pt;}
.x0_c00000{left:0.000000pt;}
.x1_c00000{left:90.706667pt;}
.x2_c00000{left:94.486667pt;}
.x4_c00000{left:180.874667pt;}
.x3_c00000{left:404.408000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d30fac15a9c92d3a1a9c79e.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.272949;font-style:normal;font-weight:normal;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_ee32c923f804588a230197da.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_66944786f1721e16f7c80ac3.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.291992;font-style: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);}
.v1_c00001{vertical-align:-47.400000px;}
.v0_c00001{vertical-align:0.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00001{word-spacing:-0.192000px;}
.ws1_c00001{word-spacing:0.000000px;}
._8_c00001{margin-left:-11.075970px;}
._d_c00001{margin-left:-8.928000px;}
._e_c00001{margin-left:-6.995904px;}
._4_c00001{margin-left:-3.300030px;}
._5_c00001{margin-left:-2.009970px;}
._a_c00001{margin-left:-1.008000px;}
._0_c00001{width:1.590030px;}
._2_c00001{width:2.699910px;}
._b_c00001{width:5.130018px;}
._1_c00001{width:9.749790px;}
._6_c00001{width:11.760030px;}
._c_c00001{width:15.389922px;}
._7_c00001{width:22.223568px;}
._9_c00001{width:24.408000px;}
._3_c00001{width:1465.049940px;}
.fc1_c00001{color:transparent;}
.fc0_c00001{color:rgb(255,255,255);}
.fs0_c00001{font-size:90.000000px;}
.fs3_c00001{font-size:102.000000px;}
.fs1_c00001{font-size:144.000000px;}
.fs2_c00001{font-size:192.000000px;}
.y0_c00001{bottom:0.000000px;}
.y7_c00001{bottom:59.025004px;}
.y6_c00001{bottom:609.525004px;}
.y5_c00001{bottom:636.525004px;}
.y4_c00001{bottom:711.750004px;}
.y3_c00001{bottom:759.600004px;}
.y2_c00001{bottom:817.575004px;}
.y1_c00001{bottom:903.600004px;}
.h3_c00001{height:91.318359px;}
.h2_c00001{height:102.787500px;}
.h5_c00001{height:103.494141px;}
.h4_c00001{height:194.812500px;}
.h6_c00001{height:195.750000px;}
.h0_c00001{height:965.175000px;}
.h1_c00001{height:965.250000px;}
.w1_c00001{width:650.250000px;}
.w0_c00001{width:650.550000px;}
.x0_c00001{left:0.000000px;}
.x3_c00001{left:44.625000px;}
.x1_c00001{left:45.750000px;}
.x2_c00001{left:47.175000px;}
.x4_c00001{left:134.250000px;}
@media print{
.v1_c00001{vertical-align:-42.133333pt;}
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:-0.170667pt;}
.ws1_c00001{word-spacing:0.000000pt;}
._8_c00001{margin-left:-9.845307pt;}
._d_c00001{margin-left:-7.936000pt;}
._e_c00001{margin-left:-6.218581pt;}
._4_c00001{margin-left:-2.933360pt;}
._5_c00001{margin-left:-1.786640pt;}
._a_c00001{margin-left:-0.896000pt;}
._0_c00001{width:1.413360pt;}
._2_c00001{width:2.399920pt;}
._b_c00001{width:4.560016pt;}
._1_c00001{width:8.666480pt;}
._6_c00001{width:10.453360pt;}
._c_c00001{width:13.679931pt;}
._7_c00001{width:19.754283pt;}
._9_c00001{width:21.696000pt;}
._3_c00001{width:1302.266613pt;}
.fs0_c00001{font-size:80.000000pt;}
.fs3_c00001{font-size:90.666667pt;}
.fs1_c00001{font-size:128.000000pt;}
.fs2_c00001{font-size:170.666667pt;}
.y0_c00001{bottom:0.000000pt;}
.y7_c00001{bottom:52.466670pt;}
.y6_c00001{bottom:541.800003pt;}
.y5_c00001{bottom:565.800003pt;}
.y4_c00001{bottom:632.666670pt;}
.y3_c00001{bottom:675.200003pt;}
.y2_c00001{bottom:726.733337pt;}
.y1_c00001{bottom:803.200003pt;}
.h3_c00001{height:81.171875pt;}
.h2_c00001{height:91.366667pt;}
.h5_c00001{height:91.994792pt;}
.h4_c00001{height:173.166667pt;}
.h6_c00001{height:174.000000pt;}
.h0_c00001{height:857.933333pt;}
.h1_c00001{height:858.000000pt;}
.w1_c00001{width:578.000000pt;}
.w0_c00001{width:578.266667pt;}
.x0_c00001{left:0.000000pt;}
.x3_c00001{left:39.666667pt;}
.x1_c00001{left:40.666667pt;}
.x2_c00001{left:41.933333pt;}
.x4_c00001{left:119.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63e75999ac2a5ab5fe35469b.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.272949;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00002{vertical-align:0.000000px;}
.ls0_c00002{letter-spacing:0.000000px;}
.sc__c00002{text-shadow:none;}
.sc0_c00002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
.sc0_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00002{word-spacing:0.000000px;}
._0_c00002{margin-left:-1.517964px;}
._2_c00002{width:1.800000px;}
._3_c00002{width:2.940048px;}
._4_c00002{width:4.872024px;}
._5_c00002{width:6.120000px;}
._1_c00002{width:7.949880px;}
.fc1_c00002{color:transparent;}
.fc0_c00002{color:rgb(0,0,0);}
.fs1_c00002{font-size:72.000000px;}
.fs0_c00002{font-size:102.000000px;}
.y0_c00002{bottom:0.000000px;}
.y9_c00002{bottom:210.975004px;}
.y8_c00002{bottom:283.350004px;}
.y7_c00002{bottom:307.125004px;}
.y6_c00002{bottom:331.575004px;}
.y5_c00002{bottom:355.350004px;}
.y4_c00002{bottom:379.425004px;}
.y3_c00002{bottom:403.200004px;}
.y2_c00002{bottom:435.975004px;}
.y1_c00002{bottom:483.525004px;}
.h3_c00002{height:73.054688px;}
.h2_c00002{height:103.494141px;}
.h0_c00002{height:965.175000px;}
.h1_c00002{height:965.250000px;}
.w1_c00002{width:650.250000px;}
.w0_c00002{width:650.550000px;}
.x0_c00002{left:0.000000px;}
.x2_c00002{left:110.550000px;}
.x1_c00002{left:111.975000px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls0_c00002{letter-spacing:0.000000pt;}
.ws0_c00002{word-spacing:0.000000pt;}
._0_c00002{margin-left:-1.349301pt;}
._2_c00002{width:1.600000pt;}
._3_c00002{width:2.613376pt;}
._4_c00002{width:4.330688pt;}
._5_c00002{width:5.440000pt;}
._1_c00002{width:7.066560pt;}
.fs1_c00002{font-size:64.000000pt;}
.fs0_c00002{font-size:90.666667pt;}
.y0_c00002{bottom:0.000000pt;}
.y9_c00002{bottom:187.533337pt;}
.y8_c00002{bottom:251.866670pt;}
.y7_c00002{bottom:273.000003pt;}
.y6_c00002{bottom:294.733337pt;}
.y5_c00002{bottom:315.866670pt;}
.y4_c00002{bottom:337.266670pt;}
.y3_c00002{bottom:358.400003pt;}
.y2_c00002{bottom:387.533337pt;}
.y1_c00002{bottom:429.800003pt;}
.h3_c00002{height:64.937500pt;}
.h2_c00002{height:91.994792pt;}
.h0_c00002{height:857.933333pt;}
.h1_c00002{height:858.000000pt;}
.w1_c00002{width:578.000000pt;}
.w0_c00002{width:578.266667pt;}
.x0_c00002{left:0.000000pt;}
.x2_c00002{left:98.266667pt;}
.x1_c00002{left:99.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d6134ed180053a2844f855f6.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.272949;font-style:normal;font-weight:normal;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_86ead6df4db27f0b572276ec.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:1.291992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00003{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00003{vertical-align:0.000000px;}
.ls0_c00003{letter-spacing:0.000000px;}
.sc__c00003{text-shadow:none;}
.sc0_c00003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
.sc0_c00003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00003{word-spacing:-0.114000px;}
.ws1_c00003{word-spacing:0.000000px;}
._5_c00003{margin-left:-11.256048px;}
._4_c00003{margin-left:-2.976048px;}
._0_c00003{margin-left:-1.139976px;}
._2_c00003{width:1.044000px;}
._7_c00003{width:2.280018px;}
._b_c00003{width:3.588048px;}
._9_c00003{width:4.697970px;}
._1_c00003{width:7.379928px;}
._a_c00003{width:9.108042px;}
._8_c00003{width:10.115976px;}
._3_c00003{width:11.807856px;}
._6_c00003{width:14.856048px;}
.fc1_c00003{color:transparent;}
.fc0_c00003{color:rgb(0,0,0);}
.fs0_c00003{font-size:72.000000px;}
.fs2_c00003{font-size:78.000000px;}
.fs3_c00003{font-size:114.000000px;}
.fs1_c00003{font-size:144.000000px;}
.y0_c00003{bottom:0.000000px;}
.y6_c00003{bottom:136.125004px;}
.y5_c00003{bottom:549.750004px;}
.y4_c00003{bottom:572.400004px;}
.y3_c00003{bottom:693.750004px;}
.y2_c00003{bottom:735.525004px;}
.y1_c00003{bottom:840.975004px;}
.h2_c00003{height:73.054688px;}
.h4_c00003{height:79.142578px;}
.h5_c00003{height:116.226562px;}
.h3_c00003{height:146.109375px;}
.h0_c00003{height:965.175000px;}
.h1_c00003{height:965.250000px;}
.w1_c00003{width:650.250000px;}
.w0_c00003{width:650.550000px;}
.x0_c00003{left:0.000000px;}
.x3_c00003{left:93.975000px;}
.x1_c00003{left:95.025000px;}
.x2_c00003{left:96.150000px;}
.x4_c00003{left:153.375000px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls0_c00003{letter-spacing:0.000000pt;}
.ws0_c00003{word-spacing:-0.101333pt;}
.ws1_c00003{word-spacing:0.000000pt;}
._5_c00003{margin-left:-10.005376pt;}
._4_c00003{margin-left:-2.645376pt;}
._0_c00003{margin-left:-1.013312pt;}
._2_c00003{width:0.928000pt;}
._7_c00003{width:2.026683pt;}
._b_c00003{width:3.189376pt;}
._9_c00003{width:4.175973pt;}
._1_c00003{width:6.559936pt;}
._a_c00003{width:8.096037pt;}
._8_c00003{width:8.991979pt;}
._3_c00003{width:10.495872pt;}
._6_c00003{width:13.205376pt;}
.fs0_c00003{font-size:64.000000pt;}
.fs2_c00003{font-size:69.333333pt;}
.fs3_c00003{font-size:101.333333pt;}
.fs1_c00003{font-size:128.000000pt;}
.y0_c00003{bottom:0.000000pt;}
.y6_c00003{bottom:121.000003pt;}
.y5_c00003{bottom:488.666670pt;}
.y4_c00003{bottom:508.800003pt;}
.y3_c00003{bottom:616.666670pt;}
.y2_c00003{bottom:653.800003pt;}
.y1_c00003{bottom:747.533337pt;}
.h2_c00003{height:64.937500pt;}
.h4_c00003{height:70.348958pt;}
.h5_c00003{height:103.312500pt;}
.h3_c00003{height:129.875000pt;}
.h0_c00003{height:857.933333pt;}
.h1_c00003{height:858.000000pt;}
.w1_c00003{width:578.000000pt;}
.w0_c00003{width:578.266667pt;}
.x0_c00003{left:0.000000pt;}
.x3_c00003{left:83.533333pt;}
.x1_c00003{left:84.466667pt;}
.x2_c00003{left:85.466667pt;}
.x4_c00003{left:136.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f1c5e17459e9a154d5aceaf0.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00004;src:url('chunks/assets/font_eaa0467ec537b0037082afdc.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_0c1b711d52f322eb49ef8223.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00004;src:url('chunks/assets/font_ca2c91c6362d438f4e77e1a9.woff2')format("woff");}.ff4_c00004{font-family:ff4_c00004;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00004;src:url('chunks/assets/font_4b8ed869094c3f1a161dbfe1.woff2')format("woff");}.ff5_c00004{font-family:ff5_c00004;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00004{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);}
.v3_c00004{vertical-align:-31.800000px;}
.v0_c00004{vertical-align:0.000000px;}
.v1_c00004{vertical-align:12.600000px;}
.v4_c00004{vertical-align:45.900000px;}
.v2_c00004{vertical-align:57.900000px;}
.ls1_c00004{letter-spacing:0.000000px;}
.ls0_c00004{letter-spacing:257.037600px;}
.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:-13.344000px;}
.ws2_c00004{word-spacing:0.000000px;}
.ws0_c00004{word-spacing:93.000000px;}
._15_c00004{margin-left:-8.088000px;}
._16_c00004{margin-left:-6.696000px;}
._e_c00004{margin-left:-5.580000px;}
._9_c00004{margin-left:-3.852000px;}
._6_c00004{margin-left:-2.568000px;}
._0_c00004{margin-left:-1.356000px;}
._3_c00004{width:1.080000px;}
._2_c00004{width:2.628000px;}
._1_c00004{width:3.768000px;}
._4_c00004{width:4.944000px;}
._8_c00004{width:6.240000px;}
._5_c00004{width:7.416000px;}
._7_c00004{width:9.060000px;}
._17_c00004{width:11.448000px;}
._13_c00004{width:18.072000px;}
._10_c00004{width:27.300000px;}
._c_c00004{width:35.808000px;}
._a_c00004{width:43.500000px;}
._f_c00004{width:57.732000px;}
._11_c00004{width:73.500000px;}
._12_c00004{width:91.932000px;}
._b_c00004{width:124.656000px;}
._d_c00004{width:132.900000px;}
._14_c00004{width:302.328000px;}
._18_c00004{width:636.264000px;}
.fc3_c00004{color:transparent;}
.fc2_c00004{color:rgb(122,122,122);}
.fc1_c00004{color:rgb(35,31,32);}
.fc0_c00004{color:rgb(0,0,0);}
.fs2_c00004{font-size:19.200000px;}
.fs1_c00004{font-size:24.000000px;}
.fs4_c00004{font-size:33.000000px;}
.fs5_c00004{font-size:39.000000px;}
.fs0_c00004{font-size:48.000000px;}
.fs3_c00004{font-size:120.000000px;}
.y0_c00004{bottom:0.000000px;}
.y1b_c00004{bottom:116.250004px;}
.y1a_c00004{bottom:129.975004px;}
.y19_c00004{bottom:216.000004px;}
.y18_c00004{bottom:216.750004px;}
.y17_c00004{bottom:245.100004px;}
.y16_c00004{bottom:255.975004px;}
.y15_c00004{bottom:279.750004px;}
.y14_c00004{bottom:294.825004px;}
.y13_c00004{bottom:310.350004px;}
.y12_c00004{bottom:334.125004px;}
.y11_c00004{bottom:349.575004px;}
.y10_c00004{bottom:364.725004px;}
.yf_c00004{bottom:380.175004px;}
.ye_c00004{bottom:405.300004px;}
.yd_c00004{bottom:427.725004px;}
.yc_c00004{bottom:451.425004px;}
.yb_c00004{bottom:475.200004px;}
.ya_c00004{bottom:490.725004px;}
.y9_c00004{bottom:505.800004px;}
.y8_c00004{bottom:740.175004px;}
.y7_c00004{bottom:757.500004px;}
.y6_c00004{bottom:765.450004px;}
.y5_c00004{bottom:775.200004px;}
.y4_c00004{bottom:812.175004px;}
.y3_c00004{bottom:827.325004px;}
.y2_c00004{bottom:842.775004px;}
.y1_c00004{bottom:857.925004px;}
.h3_c00004{height:24.187500px;}
.h5_c00004{height:32.387695px;}
.h7_c00004{height:40.675781px;}
.h2_c00004{height:50.062500px;}
.h6_c00004{height:86.575781px;}
.h4_c00004{height:137.756250px;}
.h0_c00004{height:965.175000px;}
.h1_c00004{height:965.250000px;}
.w1_c00004{width:650.250000px;}
.w0_c00004{width:650.550000px;}
.x0_c00004{left:0.000000px;}
.x2_c00004{left:97.950000px;}
.x1_c00004{left:99.000000px;}
.x3_c00004{left:104.775000px;}
.x4_c00004{left:109.800000px;}
.x5_c00004{left:273.225000px;}
.x6_c00004{left:500.400000px;}
@media print{
.v3_c00004{vertical-align:-28.266667pt;}
.v0_c00004{vertical-align:0.000000pt;}
.v1_c00004{vertical-align:11.200000pt;}
.v4_c00004{vertical-align:40.800000pt;}
.v2_c00004{vertical-align:51.466667pt;}
.ls1_c00004{letter-spacing:0.000000pt;}
.ls0_c00004{letter-spacing:228.477867pt;}
.ws1_c00004{word-spacing:-11.861333pt;}
.ws2_c00004{word-spacing:0.000000pt;}
.ws0_c00004{word-spacing:82.666667pt;}
._15_c00004{margin-left:-7.189333pt;}
._16_c00004{margin-left:-5.952000pt;}
._e_c00004{margin-left:-4.960000pt;}
._9_c00004{margin-left:-3.424000pt;}
._6_c00004{margin-left:-2.282667pt;}
._0_c00004{margin-left:-1.205333pt;}
._3_c00004{width:0.960000pt;}
._2_c00004{width:2.336000pt;}
._1_c00004{width:3.349333pt;}
._4_c00004{width:4.394667pt;}
._8_c00004{width:5.546667pt;}
._5_c00004{width:6.592000pt;}
._7_c00004{width:8.053333pt;}
._17_c00004{width:10.176000pt;}
._13_c00004{width:16.064000pt;}
._10_c00004{width:24.266667pt;}
._c_c00004{width:31.829333pt;}
._a_c00004{width:38.666667pt;}
._f_c00004{width:51.317333pt;}
._11_c00004{width:65.333333pt;}
._12_c00004{width:81.717333pt;}
._b_c00004{width:110.805333pt;}
._d_c00004{width:118.133333pt;}
._14_c00004{width:268.736000pt;}
._18_c00004{width:565.568000pt;}
.fs2_c00004{font-size:17.066667pt;}
.fs1_c00004{font-size:21.333333pt;}
.fs4_c00004{font-size:29.333333pt;}
.fs5_c00004{font-size:34.666667pt;}
.fs0_c00004{font-size:42.666667pt;}
.fs3_c00004{font-size:106.666667pt;}
.y0_c00004{bottom:0.000000pt;}
.y1b_c00004{bottom:103.333337pt;}
.y1a_c00004{bottom:115.533337pt;}
.y19_c00004{bottom:192.000003pt;}
.y18_c00004{bottom:192.666670pt;}
.y17_c00004{bottom:217.866670pt;}
.y16_c00004{bottom:227.533337pt;}
.y15_c00004{bottom:248.666670pt;}
.y14_c00004{bottom:262.066670pt;}
.y13_c00004{bottom:275.866670pt;}
.y12_c00004{bottom:297.000003pt;}
.y11_c00004{bottom:310.733337pt;}
.y10_c00004{bottom:324.200003pt;}
.yf_c00004{bottom:337.933337pt;}
.ye_c00004{bottom:360.266670pt;}
.yd_c00004{bottom:380.200003pt;}
.yc_c00004{bottom:401.266670pt;}
.yb_c00004{bottom:422.400003pt;}
.ya_c00004{bottom:436.200003pt;}
.y9_c00004{bottom:449.600003pt;}
.y8_c00004{bottom:657.933337pt;}
.y7_c00004{bottom:673.333337pt;}
.y6_c00004{bottom:680.400003pt;}
.y5_c00004{bottom:689.066670pt;}
.y4_c00004{bottom:721.933337pt;}
.y3_c00004{bottom:735.400003pt;}
.y2_c00004{bottom:749.133337pt;}
.y1_c00004{bottom:762.600003pt;}
.h3_c00004{height:21.500000pt;}
.h5_c00004{height:28.789062pt;}
.h7_c00004{height:36.156250pt;}
.h2_c00004{height:44.500000pt;}
.h6_c00004{height:76.956250pt;}
.h4_c00004{height:122.450000pt;}
.h0_c00004{height:857.933333pt;}
.h1_c00004{height:858.000000pt;}
.w1_c00004{width:578.000000pt;}
.w0_c00004{width:578.266667pt;}
.x0_c00004{left:0.000000pt;}
.x2_c00004{left:87.066667pt;}
.x1_c00004{left:88.000000pt;}
.x3_c00004{left:93.133333pt;}
.x4_c00004{left:97.600000pt;}
.x5_c00004{left:242.866667pt;}
.x6_c00004{left:444.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_82679b6a6509f8c3feb62325.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00005{vertical-align:0.000000px;}
.ls0_c00005{letter-spacing:0.000000px;}
.sc__c00005{text-shadow:none;}
.sc0_c00005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00005{-webkit-text-stroke:0px transparent;}
.sc0_c00005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00005{word-spacing:-16.500000px;}
.ws1_c00005{word-spacing:-15.000000px;}
.ws2_c00005{word-spacing:0.000000px;}
._16_c00005{margin-left:-8.350920px;}
._d_c00005{margin-left:-7.295916px;}
._17_c00005{margin-left:-6.228696px;}
._10_c00005{margin-left:-5.219976px;}
._a_c00005{margin-left:-3.827994px;}
._2_c00005{margin-left:-2.460000px;}
._3_c00005{margin-left:-1.440000px;}
._5_c00005{width:1.199952px;}
._1_c00005{width:2.400024px;}
._0_c00005{width:3.648018px;}
._b_c00005{width:4.920000px;}
._e_c00005{width:6.600000px;}
._c_c00005{width:8.387994px;}
._f_c00005{width:9.397770px;}
._6_c00005{width:11.100000px;}
._4_c00005{width:12.300000px;}
._7_c00005{width:13.872390px;}
._11_c00005{width:16.212294px;}
._9_c00005{width:18.180000px;}
._8_c00005{width:20.100432px;}
._13_c00005{width:21.228090px;}
._12_c00005{width:22.500000px;}
._15_c00005{width:24.600072px;}
._14_c00005{width:26.160000px;}
.fc1_c00005{color:transparent;}
.fc0_c00005{color:rgb(35,31,32);}
.fs1_c00005{font-size:60.000000px;}
.fs0_c00005{font-size:66.000000px;}
.y0_c00005{bottom:0.000000px;}
.y24_c00005{bottom:64.425022px;}
.y23_c00005{bottom:118.800022px;}
.y22_c00005{bottom:131.025022px;}
.y21_c00005{bottom:150.525022px;}
.y20_c00005{bottom:169.575022px;}
.y1f_c00005{bottom:189.000022px;}
.y1e_c00005{bottom:216.000022px;}
.y1d_c00005{bottom:235.425022px;}
.y1c_c00005{bottom:254.925022px;}
.y1b_c00005{bottom:274.350022px;}
.y1a_c00005{bottom:286.200022px;}
.y19_c00005{bottom:306.000022px;}
.y18_c00005{bottom:325.425022px;}
.y17_c00005{bottom:351.750022px;}
.y16_c00005{bottom:364.350022px;}
.y15_c00005{bottom:383.775022px;}
.y14_c00005{bottom:410.025022px;}
.y13_c00005{bottom:429.525022px;}
.y12_c00005{bottom:448.950022px;}
.y11_c00005{bottom:461.175022px;}
.y10_c00005{bottom:480.600022px;}
.yf_c00005{bottom:507.225022px;}
.ye_c00005{bottom:519.525022px;}
.yd_c00005{bottom:538.575022px;}
.yc_c00005{bottom:558.000022px;}
.yb_c00005{bottom:577.425022px;}
.ya_c00005{bottom:596.925022px;}
.y9_c00005{bottom:616.350022px;}
.y8_c00005{bottom:642.975022px;}
.y7_c00005{bottom:654.825022px;}
.y6_c00005{bottom:674.325022px;}
.y5_c00005{bottom:701.325022px;}
.y4_c00005{bottom:713.550022px;}
.y3_c00005{bottom:732.600022px;}
.y2_c00005{bottom:752.025022px;}
.y1_c00005{bottom:842.775022px;}
.h3_c00005{height:58.886719px;}
.h2_c00005{height:64.775391px;}
.h1_c00005{height:957.750000px;}
.h0_c00005{height:957.975000px;}
.w0_c00005{width:641.850030px;}
.w1_c00005{width:642.000000px;}
.x0_c00005{left:0.000000px;}
.x1_c00005{left:80.250000px;}
.x2_c00005{left:81.375000px;}
.x3_c00005{left:96.825000px;}
.x4_c00005{left:546.150000px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls0_c00005{letter-spacing:0.000000pt;}
.ws0_c00005{word-spacing:-14.666667pt;}
.ws1_c00005{word-spacing:-13.333333pt;}
.ws2_c00005{word-spacing:0.000000pt;}
._16_c00005{margin-left:-7.423040pt;}
._d_c00005{margin-left:-6.485259pt;}
._17_c00005{margin-left:-5.536619pt;}
._10_c00005{margin-left:-4.639979pt;}
._a_c00005{margin-left:-3.402661pt;}
._2_c00005{margin-left:-2.186667pt;}
._3_c00005{margin-left:-1.280000pt;}
._5_c00005{width:1.066624pt;}
._1_c00005{width:2.133355pt;}
._0_c00005{width:3.242683pt;}
._b_c00005{width:4.373333pt;}
._e_c00005{width:5.866667pt;}
._c_c00005{width:7.455995pt;}
._f_c00005{width:8.353573pt;}
._6_c00005{width:9.866667pt;}
._4_c00005{width:10.933333pt;}
._7_c00005{width:12.331013pt;}
._11_c00005{width:14.410928pt;}
._9_c00005{width:16.160000pt;}
._8_c00005{width:17.867051pt;}
._13_c00005{width:18.869413pt;}
._12_c00005{width:20.000000pt;}
._15_c00005{width:21.866731pt;}
._14_c00005{width:23.253333pt;}
.fs1_c00005{font-size:53.333333pt;}
.fs0_c00005{font-size:58.666667pt;}
.y0_c00005{bottom:0.000000pt;}
.y24_c00005{bottom:57.266686pt;}
.y23_c00005{bottom:105.600020pt;}
.y22_c00005{bottom:116.466686pt;}
.y21_c00005{bottom:133.800020pt;}
.y20_c00005{bottom:150.733353pt;}
.y1f_c00005{bottom:168.000020pt;}
.y1e_c00005{bottom:192.000020pt;}
.y1d_c00005{bottom:209.266686pt;}
.y1c_c00005{bottom:226.600020pt;}
.y1b_c00005{bottom:243.866686pt;}
.y1a_c00005{bottom:254.400020pt;}
.y19_c00005{bottom:272.000020pt;}
.y18_c00005{bottom:289.266686pt;}
.y17_c00005{bottom:312.666686pt;}
.y16_c00005{bottom:323.866686pt;}
.y15_c00005{bottom:341.133353pt;}
.y14_c00005{bottom:364.466686pt;}
.y13_c00005{bottom:381.800020pt;}
.y12_c00005{bottom:399.066686pt;}
.y11_c00005{bottom:409.933353pt;}
.y10_c00005{bottom:427.200020pt;}
.yf_c00005{bottom:450.866686pt;}
.ye_c00005{bottom:461.800020pt;}
.yd_c00005{bottom:478.733353pt;}
.yc_c00005{bottom:496.000020pt;}
.yb_c00005{bottom:513.266686pt;}
.ya_c00005{bottom:530.600020pt;}
.y9_c00005{bottom:547.866686pt;}
.y8_c00005{bottom:571.533353pt;}
.y7_c00005{bottom:582.066686pt;}
.y6_c00005{bottom:599.400020pt;}
.y5_c00005{bottom:623.400020pt;}
.y4_c00005{bottom:634.266686pt;}
.y3_c00005{bottom:651.200020pt;}
.y2_c00005{bottom:668.466686pt;}
.y1_c00005{bottom:749.133353pt;}
.h3_c00005{height:52.343750pt;}
.h2_c00005{height:57.578125pt;}
.h1_c00005{height:851.333333pt;}
.h0_c00005{height:851.533333pt;}
.w0_c00005{width:570.533360pt;}
.w1_c00005{width:570.666667pt;}
.x0_c00005{left:0.000000pt;}
.x1_c00005{left:71.333333pt;}
.x2_c00005{left:72.333333pt;}
.x3_c00005{left:86.066667pt;}
.x4_c00005{left:485.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6419f4b0cefd99f77a16687.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00006;src:url('chunks/assets/font_eb8f526a2c57338dd2ad5de3.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00006;src:url('chunks/assets/font_9820538e8d22c814f7e7f906.woff2')format("woff");}.ff3_c00006{font-family:ff3_c00006;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls2_c00006{letter-spacing:0.000000px;}
.ls0_c00006{letter-spacing:4.380000px;}
.ls1_c00006{letter-spacing:5.160000px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00006{word-spacing:-25.500000px;}
.ws1_c00006{word-spacing:-18.000000px;}
.ws3_c00006{word-spacing:-0.060000px;}
.ws2_c00006{word-spacing:-0.048000px;}
.ws4_c00006{word-spacing:0.000000px;}
._1b_c00006{margin-left:-17.280000px;}
._1a_c00006{margin-left:-14.839203px;}
._1c_c00006{margin-left:-12.516864px;}
._13_c00006{margin-left:-10.489557px;}
._1f_c00006{margin-left:-9.358467px;}
._6_c00006{margin-left:-7.800000px;}
._9_c00006{margin-left:-6.596127px;}
._10_c00006{margin-left:-5.595405px;}
._f_c00006{margin-left:-3.828207px;}
._8_c00006{margin-left:-2.763873px;}
._5_c00006{margin-left:-1.620000px;}
._0_c00006{width:1.839009px;}
._1_c00006{width:2.909910px;}
._c_c00006{width:4.648737px;}
._14_c00006{width:5.751774px;}
._b_c00006{width:6.812070px;}
._d_c00006{width:8.221353px;}
._12_c00006{width:9.240969px;}
._a_c00006{width:11.010270px;}
._11_c00006{width:12.263175px;}
._2_c00006{width:13.800000px;}
._4_c00006{width:16.014054px;}
._3_c00006{width:17.370270px;}
._7_c00006{width:19.421982px;}
._e_c00006{width:20.676762px;}
._18_c00006{width:22.443873px;}
._17_c00006{width:24.223335px;}
._1e_c00006{width:25.481982px;}
._1d_c00006{width:27.037509px;}
._16_c00006{width:144.525855px;}
._15_c00006{width:242.232867px;}
._19_c00006{width:249.298605px;}
.fc1_c00006{color:transparent;}
.fc0_c00006{color:rgb(35,31,32);}
.fs3_c00006{font-size:48.000000px;}
.fs0_c00006{font-size:51.000000px;}
.fs1_c00006{font-size:60.000000px;}
.fs2_c00006{font-size:72.000000px;}
.y0_c00006{bottom:0.000000px;}
.y29_c00006{bottom:64.425022px;}
.y28_c00006{bottom:111.600022px;}
.y27_c00006{bottom:130.725022px;}
.y26_c00006{bottom:150.150022px;}
.y25_c00006{bottom:169.200022px;}
.y24_c00006{bottom:188.625022px;}
.y23_c00006{bottom:208.425022px;}
.y22_c00006{bottom:227.175022px;}
.y21_c00006{bottom:246.975022px;}
.y20_c00006{bottom:266.025022px;}
.y1f_c00006{bottom:285.150022px;}
.y1e_c00006{bottom:304.575022px;}
.y1d_c00006{bottom:324.000022px;}
.y1c_c00006{bottom:343.425022px;}
.y1b_c00006{bottom:362.175022px;}
.y1a_c00006{bottom:381.600022px;}
.y19_c00006{bottom:401.025022px;}
.y18_c00006{bottom:420.525022px;}
.y17_c00006{bottom:439.575022px;}
.y16_c00006{bottom:459.000022px;}
.y15_c00006{bottom:478.125022px;}
.y14_c00006{bottom:497.925022px;}
.y13_c00006{bottom:516.975022px;}
.y12_c00006{bottom:536.400022px;}
.y11_c00006{bottom:555.525022px;}
.y10_c00006{bottom:574.950022px;}
.yf_c00006{bottom:594.375022px;}
.ye_c00006{bottom:613.125022px;}
.yd_c00006{bottom:632.925022px;}
.yc_c00006{bottom:651.975022px;}
.yb_c00006{bottom:671.025022px;}
.ya_c00006{bottom:690.825022px;}
.y9_c00006{bottom:709.950022px;}
.y8_c00006{bottom:729.000022px;}
.y7_c00006{bottom:748.800022px;}
.y6_c00006{bottom:767.925022px;}
.y5_c00006{bottom:786.975022px;}
.y4_c00006{bottom:806.025022px;}
.y3_c00006{bottom:825.825022px;}
.y2_c00006{bottom:844.950022px;}
.y1_c00006{bottom:886.725022px;}
.h2_c00006{height:50.028809px;}
.h3_c00006{height:58.886719px;}
.h4_c00006{height:70.664062px;}
.h1_c00006{height:957.750000px;}
.h0_c00006{height:957.975000px;}
.w1_c00006{width:643.500000px;}
.w0_c00006{width:643.650000px;}
.x0_c00006{left:0.000000px;}
.x1_c00006{left:91.050000px;}
.x2_c00006{left:92.550000px;}
.x3_c00006{left:106.950000px;}
.x4_c00006{left:147.975000px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls2_c00006{letter-spacing:0.000000pt;}
.ls0_c00006{letter-spacing:3.893333pt;}
.ls1_c00006{letter-spacing:4.586667pt;}
.ws0_c00006{word-spacing:-22.666667pt;}
.ws1_c00006{word-spacing:-16.000000pt;}
.ws3_c00006{word-spacing:-0.053333pt;}
.ws2_c00006{word-spacing:-0.042667pt;}
.ws4_c00006{word-spacing:0.000000pt;}
._1b_c00006{margin-left:-15.360000pt;}
._1a_c00006{margin-left:-13.190403pt;}
._1c_c00006{margin-left:-11.126101pt;}
._13_c00006{margin-left:-9.324051pt;}
._1f_c00006{margin-left:-8.318637pt;}
._6_c00006{margin-left:-6.933333pt;}
._9_c00006{margin-left:-5.863224pt;}
._10_c00006{margin-left:-4.973693pt;}
._f_c00006{margin-left:-3.402851pt;}
._8_c00006{margin-left:-2.456776pt;}
._5_c00006{margin-left:-1.440000pt;}
._0_c00006{width:1.634675pt;}
._1_c00006{width:2.586587pt;}
._c_c00006{width:4.132211pt;}
._14_c00006{width:5.112688pt;}
._b_c00006{width:6.055173pt;}
._d_c00006{width:7.307869pt;}
._12_c00006{width:8.214195pt;}
._a_c00006{width:9.786907pt;}
._11_c00006{width:10.900600pt;}
._2_c00006{width:12.266667pt;}
._4_c00006{width:14.234715pt;}
._3_c00006{width:15.440240pt;}
._7_c00006{width:17.263984pt;}
._e_c00006{width:18.379344pt;}
._18_c00006{width:19.950109pt;}
._17_c00006{width:21.531853pt;}
._1e_c00006{width:22.650651pt;}
._1d_c00006{width:24.033341pt;}
._16_c00006{width:128.467427pt;}
._15_c00006{width:215.318104pt;}
._19_c00006{width:221.598760pt;}
.fs3_c00006{font-size:42.666667pt;}
.fs0_c00006{font-size:45.333333pt;}
.fs1_c00006{font-size:53.333333pt;}
.fs2_c00006{font-size:64.000000pt;}
.y0_c00006{bottom:0.000000pt;}
.y29_c00006{bottom:57.266686pt;}
.y28_c00006{bottom:99.200020pt;}
.y27_c00006{bottom:116.200020pt;}
.y26_c00006{bottom:133.466686pt;}
.y25_c00006{bottom:150.400020pt;}
.y24_c00006{bottom:167.666686pt;}
.y23_c00006{bottom:185.266686pt;}
.y22_c00006{bottom:201.933353pt;}
.y21_c00006{bottom:219.533353pt;}
.y20_c00006{bottom:236.466686pt;}
.y1f_c00006{bottom:253.466686pt;}
.y1e_c00006{bottom:270.733353pt;}
.y1d_c00006{bottom:288.000020pt;}
.y1c_c00006{bottom:305.266686pt;}
.y1b_c00006{bottom:321.933353pt;}
.y1a_c00006{bottom:339.200020pt;}
.y19_c00006{bottom:356.466686pt;}
.y18_c00006{bottom:373.800020pt;}
.y17_c00006{bottom:390.733353pt;}
.y16_c00006{bottom:408.000020pt;}
.y15_c00006{bottom:425.000020pt;}
.y14_c00006{bottom:442.600020pt;}
.y13_c00006{bottom:459.533353pt;}
.y12_c00006{bottom:476.800020pt;}
.y11_c00006{bottom:493.800020pt;}
.y10_c00006{bottom:511.066686pt;}
.yf_c00006{bottom:528.333353pt;}
.ye_c00006{bottom:545.000020pt;}
.yd_c00006{bottom:562.600020pt;}
.yc_c00006{bottom:579.533353pt;}
.yb_c00006{bottom:596.466686pt;}
.ya_c00006{bottom:614.066686pt;}
.y9_c00006{bottom:631.066686pt;}
.y8_c00006{bottom:648.000020pt;}
.y7_c00006{bottom:665.600020pt;}
.y6_c00006{bottom:682.600020pt;}
.y5_c00006{bottom:699.533353pt;}
.y4_c00006{bottom:716.466686pt;}
.y3_c00006{bottom:734.066686pt;}
.y2_c00006{bottom:751.066686pt;}
.y1_c00006{bottom:788.200020pt;}
.h2_c00006{height:44.470052pt;}
.h3_c00006{height:52.343750pt;}
.h4_c00006{height:62.812500pt;}
.h1_c00006{height:851.333333pt;}
.h0_c00006{height:851.533333pt;}
.w1_c00006{width:572.000000pt;}
.w0_c00006{width:572.133333pt;}
.x0_c00006{left:0.000000pt;}
.x1_c00006{left:80.933333pt;}
.x2_c00006{left:82.266667pt;}
.x3_c00006{left:95.066667pt;}
.x4_c00006{left:131.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b6419f4b0cefd99f77a16687.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00007;src:url('chunks/assets/font_a1170171525f2797d463f5c2.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00007{letter-spacing:0.000000px;}
.sc__c00007{text-shadow:none;}
.sc0_c00007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00007{-webkit-text-stroke:0px transparent;}
.sc0_c00007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00007{word-spacing:-25.500000px;}
.ws1_c00007{word-spacing:0.000000px;}
._d_c00007{margin-left:-8.699808px;}
._9_c00007{margin-left:-5.880000px;}
._c_c00007{margin-left:-4.440054px;}
._3_c00007{margin-left:-2.820000px;}
._1_c00007{margin-left:-1.680000px;}
._0_c00007{width:1.799994px;}
._7_c00007{width:2.940018px;}
._8_c00007{width:4.800012px;}
._b_c00007{width:6.539946px;}
._a_c00007{width:8.039958px;}
._6_c00007{width:9.480060px;}
._5_c00007{width:13.860018px;}
._4_c00007{width:16.200000px;}
._2_c00007{width:17.700000px;}
.fc1_c00007{color:transparent;}
.fc0_c00007{color:rgb(35,31,32);}
.fs0_c00007{font-size:51.000000px;}
.fs1_c00007{font-size:60.000000px;}
.y0_c00007{bottom:0.000000px;}
.ya_c00007{bottom:64.425022px;}
.y9_c00007{bottom:694.125022px;}
.y8_c00007{bottom:728.625022px;}
.y7_c00007{bottom:748.125022px;}
.y6_c00007{bottom:767.175022px;}
.y5_c00007{bottom:786.225022px;}
.y4_c00007{bottom:805.725022px;}
.y3_c00007{bottom:825.525022px;}
.y2_c00007{bottom:844.575022px;}
.y1_c00007{bottom:886.725022px;}
.h2_c00007{height:50.028809px;}
.h3_c00007{height:58.886719px;}
.h1_c00007{height:957.750000px;}
.h0_c00007{height:957.975000px;}
.w0_c00007{width:641.850030px;}
.w1_c00007{width:642.000000px;}
.x0_c00007{left:0.000000px;}
.x2_c00007{left:81.000000px;}
.x3_c00007{left:96.825000px;}
.x1_c00007{left:509.775000px;}
.x4_c00007{left:546.450000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls0_c00007{letter-spacing:0.000000pt;}
.ws0_c00007{word-spacing:-22.666667pt;}
.ws1_c00007{word-spacing:0.000000pt;}
._d_c00007{margin-left:-7.733163pt;}
._9_c00007{margin-left:-5.226667pt;}
._c_c00007{margin-left:-3.946715pt;}
._3_c00007{margin-left:-2.506667pt;}
._1_c00007{margin-left:-1.493333pt;}
._0_c00007{width:1.599995pt;}
._7_c00007{width:2.613349pt;}
._8_c00007{width:4.266677pt;}
._b_c00007{width:5.813285pt;}
._a_c00007{width:7.146629pt;}
._6_c00007{width:8.426720pt;}
._5_c00007{width:12.320016pt;}
._4_c00007{width:14.400000pt;}
._2_c00007{width:15.733333pt;}
.fs0_c00007{font-size:45.333333pt;}
.fs1_c00007{font-size:53.333333pt;}
.y0_c00007{bottom:0.000000pt;}
.ya_c00007{bottom:57.266686pt;}
.y9_c00007{bottom:617.000020pt;}
.y8_c00007{bottom:647.666686pt;}
.y7_c00007{bottom:665.000020pt;}
.y6_c00007{bottom:681.933353pt;}
.y5_c00007{bottom:698.866686pt;}
.y4_c00007{bottom:716.200020pt;}
.y3_c00007{bottom:733.800020pt;}
.y2_c00007{bottom:750.733353pt;}
.y1_c00007{bottom:788.200020pt;}
.h2_c00007{height:44.470052pt;}
.h3_c00007{height:52.343750pt;}
.h1_c00007{height:851.333333pt;}
.h0_c00007{height:851.533333pt;}
.w0_c00007{width:570.533360pt;}
.w1_c00007{width:570.666667pt;}
.x0_c00007{left:0.000000pt;}
.x2_c00007{left:72.000000pt;}
.x3_c00007{left:86.066667pt;}
.x1_c00007{left:453.133333pt;}
.x4_c00007{left:485.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
.sc__c00008{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00008{-webkit-text-stroke:0px transparent;}
}
.y0_c00008{bottom:0.000000px;}
.h1_c00008{height:957.750000px;}
.h0_c00008{height:957.975000px;}
.w1_c00008{width:643.500000px;}
.w0_c00008{width:643.650000px;}
.x0_c00008{left:0.000000px;}
@media print{
.y0_c00008{bottom:0.000000pt;}
.h1_c00008{height:851.333333pt;}
.h0_c00008{height:851.533333pt;}
.w1_c00008{width:572.000000pt;}
.w0_c00008{width:572.133333pt;}
.x0_c00008{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_141a2411b0795130495236a3.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00009{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_c00009{vertical-align:0.000000px;}
.ls3_c00009{letter-spacing:0.000000px;}
.ls1_c00009{letter-spacing:9.300000px;}
.ls2_c00009{letter-spacing:12.300000px;}
.ls0_c00009{letter-spacing:13.800000px;}
.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:-16.500000px;}
.ws1_c00009{word-spacing:-15.000000px;}
.ws2_c00009{word-spacing:0.000000px;}
._f_c00009{margin-left:-7.080000px;}
._3_c00009{margin-left:-5.400000px;}
._4_c00009{margin-left:-3.720000px;}
._9_c00009{margin-left:-2.580000px;}
._5_c00009{margin-left:-1.200000px;}
._0_c00009{width:1.722006px;}
._1_c00009{width:3.300000px;}
._7_c00009{width:5.111976px;}
._a_c00009{width:6.593982px;}
._d_c00009{width:12.137994px;}
._10_c00009{width:13.680000px;}
._17_c00009{width:33.360000px;}
._6_c00009{width:36.600000px;}
._12_c00009{width:38.940000px;}
._b_c00009{width:125.723832px;}
._18_c00009{width:175.991856px;}
._1b_c00009{width:266.123892px;}
._1a_c00009{width:267.833862px;}
._19_c00009{width:341.705958px;}
._13_c00009{width:803.261946px;}
._11_c00009{width:956.753922px;}
._e_c00009{width:1062.575928px;}
._1d_c00009{width:1072.421946px;}
._16_c00009{width:1130.753982px;}
._1e_c00009{width:1147.997934px;}
._14_c00009{width:1191.497934px;}
._15_c00009{width:1260.149970px;}
._1c_c00009{width:1286.345958px;}
._2_c00009{width:1363.241946px;}
._c_c00009{width:1376.760000px;}
._8_c00009{width:1570.097994px;}
.fc2_c00009{color:transparent;}
.fc1_c00009{color:rgb(0,0,0);}
.fc0_c00009{color:rgb(35,31,32);}
.fs1_c00009{font-size:60.000000px;}
.fs0_c00009{font-size:66.000000px;}
.y0_c00009{bottom:0.000000px;}
.y1d_c00009{bottom:64.425022px;}
.y1c_c00009{bottom:139.725022px;}
.y1b_c00009{bottom:159.150022px;}
.y1a_c00009{bottom:178.575022px;}
.y19_c00009{bottom:198.000022px;}
.y18_c00009{bottom:217.425022px;}
.y17_c00009{bottom:236.925022px;}
.y16_c00009{bottom:264.600022px;}
.y15_c00009{bottom:284.025022px;}
.y14_c00009{bottom:321.525022px;}
.y13_c00009{bottom:340.950022px;}
.y12_c00009{bottom:360.750022px;}
.y11_c00009{bottom:388.425022px;}
.y10_c00009{bottom:425.925022px;}
.yf_c00009{bottom:445.725022px;}
.ye_c00009{bottom:464.775022px;}
.yd_c00009{bottom:484.575022px;}
.yc_c00009{bottom:504.000022px;}
.yb_c00009{bottom:523.425022px;}
.ya_c00009{bottom:551.925022px;}
.y9_c00009{bottom:589.350022px;}
.y8_c00009{bottom:608.400022px;}
.y7_c00009{bottom:628.200022px;}
.y6_c00009{bottom:647.325022px;}
.y5_c00009{bottom:667.125022px;}
.y4_c00009{bottom:695.175022px;}
.y3_c00009{bottom:714.975022px;}
.y2_c00009{bottom:752.025022px;}
.y1_c00009{bottom:842.775022px;}
.h3_c00009{height:58.886719px;}
.h2_c00009{height:64.775391px;}
.h1_c00009{height:957.750000px;}
.h0_c00009{height:957.975000px;}
.w0_c00009{width:641.850030px;}
.w1_c00009{width:642.000000px;}
.x0_c00009{left:0.000000px;}
.x2_c00009{left:80.625000px;}
.x1_c00009{left:81.750000px;}
.x3_c00009{left:106.950000px;}
.x7_c00009{left:112.650000px;}
.x8_c00009{left:115.575000px;}
.x5_c00009{left:118.425000px;}
.x4_c00009{left:124.200000px;}
.x6_c00009{left:138.975000px;}
.x9_c00009{left:546.150000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls3_c00009{letter-spacing:0.000000pt;}
.ls1_c00009{letter-spacing:8.266667pt;}
.ls2_c00009{letter-spacing:10.933333pt;}
.ls0_c00009{letter-spacing:12.266667pt;}
.ws0_c00009{word-spacing:-14.666667pt;}
.ws1_c00009{word-spacing:-13.333333pt;}
.ws2_c00009{word-spacing:0.000000pt;}
._f_c00009{margin-left:-6.293333pt;}
._3_c00009{margin-left:-4.800000pt;}
._4_c00009{margin-left:-3.306667pt;}
._9_c00009{margin-left:-2.293333pt;}
._5_c00009{margin-left:-1.066667pt;}
._0_c00009{width:1.530672pt;}
._1_c00009{width:2.933333pt;}
._7_c00009{width:4.543979pt;}
._a_c00009{width:5.861317pt;}
._d_c00009{width:10.789328pt;}
._10_c00009{width:12.160000pt;}
._17_c00009{width:29.653333pt;}
._6_c00009{width:32.533333pt;}
._12_c00009{width:34.613333pt;}
._b_c00009{width:111.754517pt;}
._18_c00009{width:156.437205pt;}
._1b_c00009{width:236.554571pt;}
._1a_c00009{width:238.074544pt;}
._19_c00009{width:303.738629pt;}
._13_c00009{width:714.010619pt;}
._11_c00009{width:850.447931pt;}
._e_c00009{width:944.511936pt;}
._1d_c00009{width:953.263952pt;}
._16_c00009{width:1005.114651pt;}
._1e_c00009{width:1020.442608pt;}
._14_c00009{width:1059.109275pt;}
._15_c00009{width:1120.133307pt;}
._1c_c00009{width:1143.418629pt;}
._2_c00009{width:1211.770619pt;}
._c_c00009{width:1223.786667pt;}
._8_c00009{width:1395.642661pt;}
.fs1_c00009{font-size:53.333333pt;}
.fs0_c00009{font-size:58.666667pt;}
.y0_c00009{bottom:0.000000pt;}
.y1d_c00009{bottom:57.266686pt;}
.y1c_c00009{bottom:124.200020pt;}
.y1b_c00009{bottom:141.466686pt;}
.y1a_c00009{bottom:158.733353pt;}
.y19_c00009{bottom:176.000020pt;}
.y18_c00009{bottom:193.266686pt;}
.y17_c00009{bottom:210.600020pt;}
.y16_c00009{bottom:235.200020pt;}
.y15_c00009{bottom:252.466686pt;}
.y14_c00009{bottom:285.800020pt;}
.y13_c00009{bottom:303.066686pt;}
.y12_c00009{bottom:320.666686pt;}
.y11_c00009{bottom:345.266686pt;}
.y10_c00009{bottom:378.600020pt;}
.yf_c00009{bottom:396.200020pt;}
.ye_c00009{bottom:413.133353pt;}
.yd_c00009{bottom:430.733353pt;}
.yc_c00009{bottom:448.000020pt;}
.yb_c00009{bottom:465.266686pt;}
.ya_c00009{bottom:490.600020pt;}
.y9_c00009{bottom:523.866686pt;}
.y8_c00009{bottom:540.800020pt;}
.y7_c00009{bottom:558.400020pt;}
.y6_c00009{bottom:575.400020pt;}
.y5_c00009{bottom:593.000020pt;}
.y4_c00009{bottom:617.933353pt;}
.y3_c00009{bottom:635.533353pt;}
.y2_c00009{bottom:668.466686pt;}
.y1_c00009{bottom:749.133353pt;}
.h3_c00009{height:52.343750pt;}
.h2_c00009{height:57.578125pt;}
.h1_c00009{height:851.333333pt;}
.h0_c00009{height:851.533333pt;}
.w0_c00009{width:570.533360pt;}
.w1_c00009{width:570.666667pt;}
.x0_c00009{left:0.000000pt;}
.x2_c00009{left:71.666667pt;}
.x1_c00009{left:72.666667pt;}
.x3_c00009{left:95.066667pt;}
.x7_c00009{left:100.133333pt;}
.x8_c00009{left:102.733333pt;}
.x5_c00009{left:105.266667pt;}
.x4_c00009{left:110.400000pt;}
.x6_c00009{left:123.533333pt;}
.x9_c00009{left:485.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5b9af317285c42547dafc469.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00010;src:url('chunks/assets/font_192e963886f9a4d4eeb753bb.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00010{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_c00010{vertical-align:0.000000px;}
.ls3_c00010{letter-spacing:0.000000px;}
.ls0_c00010{letter-spacing:12.300000px;}
.ls1_c00010{letter-spacing:13.800000px;}
.ls2_c00010{letter-spacing:34.500000px;}
.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;}
}
.ws0_c00010{word-spacing:-25.500000px;}
.ws1_c00010{word-spacing:-15.000000px;}
.ws2_c00010{word-spacing:0.000000px;}
._d_c00010{margin-left:-6.900000px;}
._10_c00010{margin-left:-5.529027px;}
._1_c00010{margin-left:-3.960000px;}
._7_c00010{margin-left:-2.700000px;}
._2_c00010{margin-left:-1.500000px;}
._0_c00010{width:1.016991px;}
._4_c00010{width:2.286018px;}
._5_c00010{width:3.593982px;}
._9_c00010{width:5.541063px;}
._b_c00010{width:7.695045px;}
._3_c00010{width:41.100000px;}
._f_c00010{width:47.040000px;}
._a_c00010{width:102.686901px;}
._13_c00010{width:217.263009px;}
._6_c00010{width:586.055928px;}
._12_c00010{width:856.860000px;}
._e_c00010{width:868.548144px;}
._8_c00010{width:973.136991px;}
._c_c00010{width:1197.827964px;}
._11_c00010{width:1210.422126px;}
.fc2_c00010{color:transparent;}
.fc1_c00010{color:rgb(0,0,0);}
.fc0_c00010{color:rgb(35,31,32);}
.fs0_c00010{font-size:51.000000px;}
.fs1_c00010{font-size:60.000000px;}
.y0_c00010{bottom:0.000000px;}
.y16_c00010{bottom:64.425022px;}
.y12_c00010{bottom:470.925022px;}
.y15_c00010{bottom:490.350022px;}
.y11_c00010{bottom:490.725022px;}
.y10_c00010{bottom:509.775022px;}
.y14_c00010{bottom:510.150022px;}
.yf_c00010{bottom:538.200022px;}
.y13_c00010{bottom:538.575022px;}
.ye_c00010{bottom:575.625022px;}
.yd_c00010{bottom:595.125022px;}
.yc_c00010{bottom:614.550022px;}
.yb_c00010{bottom:642.975022px;}
.ya_c00010{bottom:662.400022px;}
.y9_c00010{bottom:699.825022px;}
.y8_c00010{bottom:719.325022px;}
.y7_c00010{bottom:739.125022px;}
.y6_c00010{bottom:758.550022px;}
.y5_c00010{bottom:777.600022px;}
.y4_c00010{bottom:796.725022px;}
.y3_c00010{bottom:816.150022px;}
.y2_c00010{bottom:844.950022px;}
.y1_c00010{bottom:886.725022px;}
.h2_c00010{height:50.028809px;}
.h3_c00010{height:58.886719px;}
.h1_c00010{height:957.750000px;}
.h0_c00010{height:957.975000px;}
.w1_c00010{width:643.500000px;}
.w0_c00010{width:643.650000px;}
.x0_c00010{left:0.000000px;}
.x1_c00010{left:90.750000px;}
.x9_c00010{left:92.175000px;}
.x7_c00010{left:117.000000px;}
.x4_c00010{left:122.775000px;}
.x6_c00010{left:125.250000px;}
.x3_c00010{left:128.550000px;}
.x2_c00010{left:133.950000px;}
.x5_c00010{left:149.025000px;}
.x8_c00010{left:541.050000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls3_c00010{letter-spacing:0.000000pt;}
.ls0_c00010{letter-spacing:10.933333pt;}
.ls1_c00010{letter-spacing:12.266667pt;}
.ls2_c00010{letter-spacing:30.666667pt;}
.ws0_c00010{word-spacing:-22.666667pt;}
.ws1_c00010{word-spacing:-13.333333pt;}
.ws2_c00010{word-spacing:0.000000pt;}
._d_c00010{margin-left:-6.133333pt;}
._10_c00010{margin-left:-4.914691pt;}
._1_c00010{margin-left:-3.520000pt;}
._7_c00010{margin-left:-2.400000pt;}
._2_c00010{margin-left:-1.333333pt;}
._0_c00010{width:0.903992pt;}
._4_c00010{width:2.032016pt;}
._5_c00010{width:3.194651pt;}
._9_c00010{width:4.925389pt;}
._b_c00010{width:6.840040pt;}
._3_c00010{width:36.533333pt;}
._f_c00010{width:41.813333pt;}
._a_c00010{width:91.277245pt;}
._13_c00010{width:193.122675pt;}
._6_c00010{width:520.938603pt;}
._12_c00010{width:761.653333pt;}
._e_c00010{width:772.042795pt;}
._8_c00010{width:865.010659pt;}
._c_c00010{width:1064.735968pt;}
._11_c00010{width:1075.930779pt;}
.fs0_c00010{font-size:45.333333pt;}
.fs1_c00010{font-size:53.333333pt;}
.y0_c00010{bottom:0.000000pt;}
.y16_c00010{bottom:57.266686pt;}
.y12_c00010{bottom:418.600020pt;}
.y15_c00010{bottom:435.866686pt;}
.y11_c00010{bottom:436.200020pt;}
.y10_c00010{bottom:453.133353pt;}
.y14_c00010{bottom:453.466686pt;}
.yf_c00010{bottom:478.400020pt;}
.y13_c00010{bottom:478.733353pt;}
.ye_c00010{bottom:511.666686pt;}
.yd_c00010{bottom:529.000020pt;}
.yc_c00010{bottom:546.266686pt;}
.yb_c00010{bottom:571.533353pt;}
.ya_c00010{bottom:588.800020pt;}
.y9_c00010{bottom:622.066686pt;}
.y8_c00010{bottom:639.400020pt;}
.y7_c00010{bottom:657.000020pt;}
.y6_c00010{bottom:674.266686pt;}
.y5_c00010{bottom:691.200020pt;}
.y4_c00010{bottom:708.200020pt;}
.y3_c00010{bottom:725.466686pt;}
.y2_c00010{bottom:751.066686pt;}
.y1_c00010{bottom:788.200020pt;}
.h2_c00010{height:44.470052pt;}
.h3_c00010{height:52.343750pt;}
.h1_c00010{height:851.333333pt;}
.h0_c00010{height:851.533333pt;}
.w1_c00010{width:572.000000pt;}
.w0_c00010{width:572.133333pt;}
.x0_c00010{left:0.000000pt;}
.x1_c00010{left:80.666667pt;}
.x9_c00010{left:81.933333pt;}
.x7_c00010{left:104.000000pt;}
.x4_c00010{left:109.133333pt;}
.x6_c00010{left:111.333333pt;}
.x3_c00010{left:114.266667pt;}
.x2_c00010{left:119.066667pt;}
.x5_c00010{left:132.466667pt;}
.x8_c00010{left:480.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8f32934515f9ffed80a7a780.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00011{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_c00011{vertical-align:0.000000px;}
.ls1_c00011{letter-spacing:0.000000px;}
.ls0_c00011{letter-spacing:13.800000px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00011{word-spacing:-16.500000px;}
.ws1_c00011{word-spacing:-15.000000px;}
.ws2_c00011{word-spacing:0.000000px;}
._1d_c00011{margin-left:-14.688024px;}
._17_c00011{margin-left:-7.200000px;}
._b_c00011{margin-left:-6.000000px;}
._7_c00011{margin-left:-3.600000px;}
._2_c00011{margin-left:-2.520000px;}
._5_c00011{margin-left:-1.187976px;}
._0_c00011{width:1.722006px;}
._1_c00011{width:3.677982px;}
._4_c00011{width:5.111976px;}
._8_c00011{width:6.473982px;}
._e_c00011{width:7.553922px;}
._12_c00011{width:12.137994px;}
._10_c00011{width:19.200000px;}
._24_c00011{width:21.420000px;}
._c_c00011{width:23.100000px;}
._22_c00011{width:25.800000px;}
._3_c00011{width:35.700000px;}
._19_c00011{width:39.000000px;}
._9_c00011{width:126.833886px;}
._1e_c00011{width:239.297934px;}
._27_c00011{width:307.451940px;}
._1c_c00011{width:316.704000px;}
._d_c00011{width:347.579892px;}
._f_c00011{width:400.619904px;}
._11_c00011{width:522.887940px;}
._16_c00011{width:748.181970px;}
._1a_c00011{width:803.483976px;}
._23_c00011{width:818.339952px;}
._18_c00011{width:957.533934px;}
._26_c00011{width:993.210006px;}
._14_c00011{width:1020.137934px;}
._15_c00011{width:1034.369970px;}
._13_c00011{width:1063.919952px;}
._1f_c00011{width:1155.942018px;}
._1b_c00011{width:1191.497934px;}
._25_c00011{width:1203.875952px;}
._20_c00011{width:1261.794006px;}
._a_c00011{width:1376.760000px;}
._21_c00011{width:1390.907976px;}
._6_c00011{width:1568.297994px;}
.fc2_c00011{color:transparent;}
.fc1_c00011{color:rgb(0,0,0);}
.fc0_c00011{color:rgb(35,31,32);}
.fs1_c00011{font-size:60.000000px;}
.fs0_c00011{font-size:66.000000px;}
.y0_c00011{bottom:0.000000px;}
.y20_c00011{bottom:64.800022px;}
.y1f_c00011{bottom:153.000022px;}
.y1e_c00011{bottom:172.425022px;}
.y1d_c00011{bottom:191.925022px;}
.y1c_c00011{bottom:211.350022px;}
.y1b_c00011{bottom:230.400022px;}
.y1a_c00011{bottom:249.825022px;}
.y19_c00011{bottom:269.325022px;}
.y18_c00011{bottom:288.750022px;}
.y17_c00011{bottom:308.175022px;}
.y16_c00011{bottom:327.975022px;}
.y15_c00011{bottom:347.025022px;}
.y14_c00011{bottom:366.825022px;}
.y13_c00011{bottom:385.950022px;}
.y12_c00011{bottom:405.750022px;}
.y11_c00011{bottom:424.800022px;}
.y10_c00011{bottom:453.225022px;}
.yf_c00011{bottom:490.725022px;}
.ye_c00011{bottom:509.775022px;}
.yd_c00011{bottom:529.575022px;}
.yc_c00011{bottom:548.625022px;}
.yb_c00011{bottom:568.425022px;}
.ya_c00011{bottom:587.925022px;}
.y9_c00011{bottom:607.350022px;}
.y8_c00011{bottom:626.775022px;}
.y7_c00011{bottom:646.200022px;}
.y6_c00011{bottom:665.625022px;}
.y5_c00011{bottom:685.125022px;}
.y4_c00011{bottom:704.550022px;}
.y3_c00011{bottom:732.600022px;}
.y2_c00011{bottom:752.400022px;}
.y1_c00011{bottom:842.775022px;}
.h3_c00011{height:58.886719px;}
.h2_c00011{height:64.775391px;}
.h1_c00011{height:957.750000px;}
.h0_c00011{height:957.975000px;}
.w0_c00011{width:641.850030px;}
.w1_c00011{width:642.000000px;}
.x0_c00011{left:0.000000px;}
.x2_c00011{left:80.250000px;}
.x1_c00011{left:81.750000px;}
.x3_c00011{left:106.950000px;}
.x8_c00011{left:112.650000px;}
.x9_c00011{left:115.575000px;}
.x5_c00011{left:118.425000px;}
.x4_c00011{left:124.200000px;}
.x6_c00011{left:138.975000px;}
.x7_c00011{left:157.650000px;}
.xa_c00011{left:179.250000px;}
.xb_c00011{left:207.000000px;}
.xc_c00011{left:539.250000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls1_c00011{letter-spacing:0.000000pt;}
.ls0_c00011{letter-spacing:12.266667pt;}
.ws0_c00011{word-spacing:-14.666667pt;}
.ws1_c00011{word-spacing:-13.333333pt;}
.ws2_c00011{word-spacing:0.000000pt;}
._1d_c00011{margin-left:-13.056021pt;}
._17_c00011{margin-left:-6.400000pt;}
._b_c00011{margin-left:-5.333333pt;}
._7_c00011{margin-left:-3.200000pt;}
._2_c00011{margin-left:-2.240000pt;}
._5_c00011{margin-left:-1.055979pt;}
._0_c00011{width:1.530672pt;}
._1_c00011{width:3.269317pt;}
._4_c00011{width:4.543979pt;}
._8_c00011{width:5.754651pt;}
._e_c00011{width:6.714597pt;}
._12_c00011{width:10.789328pt;}
._10_c00011{width:17.066667pt;}
._24_c00011{width:19.040000pt;}
._c_c00011{width:20.533333pt;}
._22_c00011{width:22.933333pt;}
._3_c00011{width:31.733333pt;}
._19_c00011{width:34.666667pt;}
._9_c00011{width:112.741232pt;}
._1e_c00011{width:212.709275pt;}
._27_c00011{width:273.290613pt;}
._1c_c00011{width:281.514667pt;}
._d_c00011{width:308.959904pt;}
._f_c00011{width:356.106581pt;}
._11_c00011{width:464.789280pt;}
._16_c00011{width:665.050640pt;}
._1a_c00011{width:714.207979pt;}
._23_c00011{width:727.413291pt;}
._18_c00011{width:851.141275pt;}
._26_c00011{width:882.853339pt;}
._14_c00011{width:906.789275pt;}
._15_c00011{width:919.439973pt;}
._13_c00011{width:945.706624pt;}
._1f_c00011{width:1027.504016pt;}
._1b_c00011{width:1059.109275pt;}
._25_c00011{width:1070.111957pt;}
._20_c00011{width:1121.594672pt;}
._a_c00011{width:1223.786667pt;}
._21_c00011{width:1236.362645pt;}
._6_c00011{width:1394.042661pt;}
.fs1_c00011{font-size:53.333333pt;}
.fs0_c00011{font-size:58.666667pt;}
.y0_c00011{bottom:0.000000pt;}
.y20_c00011{bottom:57.600020pt;}
.y1f_c00011{bottom:136.000020pt;}
.y1e_c00011{bottom:153.266686pt;}
.y1d_c00011{bottom:170.600020pt;}
.y1c_c00011{bottom:187.866686pt;}
.y1b_c00011{bottom:204.800020pt;}
.y1a_c00011{bottom:222.066686pt;}
.y19_c00011{bottom:239.400020pt;}
.y18_c00011{bottom:256.666686pt;}
.y17_c00011{bottom:273.933353pt;}
.y16_c00011{bottom:291.533353pt;}
.y15_c00011{bottom:308.466686pt;}
.y14_c00011{bottom:326.066686pt;}
.y13_c00011{bottom:343.066686pt;}
.y12_c00011{bottom:360.666686pt;}
.y11_c00011{bottom:377.600020pt;}
.y10_c00011{bottom:402.866686pt;}
.yf_c00011{bottom:436.200020pt;}
.ye_c00011{bottom:453.133353pt;}
.yd_c00011{bottom:470.733353pt;}
.yc_c00011{bottom:487.666686pt;}
.yb_c00011{bottom:505.266686pt;}
.ya_c00011{bottom:522.600020pt;}
.y9_c00011{bottom:539.866686pt;}
.y8_c00011{bottom:557.133353pt;}
.y7_c00011{bottom:574.400020pt;}
.y6_c00011{bottom:591.666686pt;}
.y5_c00011{bottom:609.000020pt;}
.y4_c00011{bottom:626.266686pt;}
.y3_c00011{bottom:651.200020pt;}
.y2_c00011{bottom:668.800020pt;}
.y1_c00011{bottom:749.133353pt;}
.h3_c00011{height:52.343750pt;}
.h2_c00011{height:57.578125pt;}
.h1_c00011{height:851.333333pt;}
.h0_c00011{height:851.533333pt;}
.w0_c00011{width:570.533360pt;}
.w1_c00011{width:570.666667pt;}
.x0_c00011{left:0.000000pt;}
.x2_c00011{left:71.333333pt;}
.x1_c00011{left:72.666667pt;}
.x3_c00011{left:95.066667pt;}
.x8_c00011{left:100.133333pt;}
.x9_c00011{left:102.733333pt;}
.x5_c00011{left:105.266667pt;}
.x4_c00011{left:110.400000pt;}
.x6_c00011{left:123.533333pt;}
.x7_c00011{left:140.133333pt;}
.xa_c00011{left:159.333333pt;}
.xb_c00011{left:184.000000pt;}
.xc_c00011{left:479.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_70f44543986551057a11cd8c.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00012;src:url('chunks/assets/font_ec21d43747ebb1f0e8892679.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00012{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_c00012{vertical-align:0.000000px;}
.ls0_c00012{letter-spacing:0.000000px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00012{word-spacing:-25.500000px;}
.ws1_c00012{word-spacing:-15.000000px;}
.ws2_c00012{word-spacing:0.000000px;}
._a_c00012{margin-left:-7.347264px;}
._3_c00012{margin-left:-4.661970px;}
._7_c00012{margin-left:-3.300000px;}
._4_c00012{margin-left:-1.500000px;}
._0_c00012{width:1.317024px;}
._1_c00012{width:2.387922px;}
._d_c00012{width:4.028928px;}
._5_c00012{width:5.940000px;}
._23_c00012{width:12.840000px;}
._2_c00012{width:17.220000px;}
._8_c00012{width:19.140000px;}
._16_c00012{width:21.240000px;}
._12_c00012{width:22.361970px;}
._1f_c00012{width:25.440000px;}
._c_c00012{width:26.940000px;}
._10_c00012{width:45.480000px;}
._22_c00012{width:216.725472px;}
._f_c00012{width:385.919520px;}
._b_c00012{width:433.680000px;}
._1a_c00012{width:448.016718px;}
._18_c00012{width:459.347790px;}
._26_c00012{width:609.791904px;}
._19_c00012{width:629.144814px;}
._1b_c00012{width:642.833916px;}
._24_c00012{width:665.735886px;}
._9_c00012{width:697.661664px;}
._14_c00012{width:737.468796px;}
._13_c00012{width:747.591114px;}
._17_c00012{width:766.325820px;}
._20_c00012{width:806.204814px;}
._1c_c00012{width:837.089760px;}
._25_c00012{width:855.012120px;}
._6_c00012{width:890.543982px;}
._21_c00012{width:977.685336px;}
._e_c00012{width:1012.050240px;}
._11_c00012{width:1059.431904px;}
._1d_c00012{width:1079.288928px;}
._1e_c00012{width:1191.947964px;}
._15_c00012{width:1203.738030px;}
.fc1_c00012{color:transparent;}
.fc0_c00012{color:rgb(35,31,32);}
.fs0_c00012{font-size:51.000000px;}
.fs1_c00012{font-size:60.000000px;}
.y0_c00012{bottom:0.000000px;}
.y28_c00012{bottom:64.800022px;}
.y27_c00012{bottom:126.375022px;}
.y26_c00012{bottom:145.425022px;}
.y25_c00012{bottom:165.225022px;}
.y24_c00012{bottom:184.350022px;}
.y23_c00012{bottom:204.150022px;}
.y22_c00012{bottom:223.575022px;}
.y21_c00012{bottom:242.625022px;}
.y20_c00012{bottom:262.425022px;}
.y1f_c00012{bottom:281.925022px;}
.y1e_c00012{bottom:300.975022px;}
.y1d_c00012{bottom:320.025022px;}
.y1c_c00012{bottom:339.525022px;}
.y1b_c00012{bottom:359.325022px;}
.y1a_c00012{bottom:378.375022px;}
.y19_c00012{bottom:397.800022px;}
.y18_c00012{bottom:417.225022px;}
.y17_c00012{bottom:436.725022px;}
.y16_c00012{bottom:456.525022px;}
.y15_c00012{bottom:475.575022px;}
.y14_c00012{bottom:495.000022px;}
.y13_c00012{bottom:514.425022px;}
.y12_c00012{bottom:534.225022px;}
.y11_c00012{bottom:553.725022px;}
.y10_c00012{bottom:573.150022px;}
.yf_c00012{bottom:592.200022px;}
.ye_c00012{bottom:611.625022px;}
.yd_c00012{bottom:631.125022px;}
.yc_c00012{bottom:650.550022px;}
.yb_c00012{bottom:669.975022px;}
.ya_c00012{bottom:689.775022px;}
.y9_c00012{bottom:708.825022px;}
.y8_c00012{bottom:728.625022px;}
.y7_c00012{bottom:747.750022px;}
.y6_c00012{bottom:767.550022px;}
.y5_c00012{bottom:786.600022px;}
.y4_c00012{bottom:806.025022px;}
.y3_c00012{bottom:825.525022px;}
.y2_c00012{bottom:844.575022px;}
.y1_c00012{bottom:886.725022px;}
.h2_c00012{height:50.028809px;}
.h3_c00012{height:58.886719px;}
.h1_c00012{height:957.750000px;}
.h0_c00012{height:957.975000px;}
.w1_c00012{width:643.500000px;}
.w0_c00012{width:643.650000px;}
.x0_c00012{left:0.000000px;}
.x1_c00012{left:90.750000px;}
.x9_c00012{left:92.175000px;}
.x7_c00012{left:149.025000px;}
.x6_c00012{left:168.150000px;}
.x2_c00012{left:189.000000px;}
.x3_c00012{left:217.050000px;}
.x5_c00012{left:241.575000px;}
.x4_c00012{left:242.625000px;}
.x8_c00012{left:267.825000px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls0_c00012{letter-spacing:0.000000pt;}
.ws0_c00012{word-spacing:-22.666667pt;}
.ws1_c00012{word-spacing:-13.333333pt;}
.ws2_c00012{word-spacing:0.000000pt;}
._a_c00012{margin-left:-6.530901pt;}
._3_c00012{margin-left:-4.143973pt;}
._7_c00012{margin-left:-2.933333pt;}
._4_c00012{margin-left:-1.333333pt;}
._0_c00012{width:1.170688pt;}
._1_c00012{width:2.122597pt;}
._d_c00012{width:3.581269pt;}
._5_c00012{width:5.280000pt;}
._23_c00012{width:11.413333pt;}
._2_c00012{width:15.306667pt;}
._8_c00012{width:17.013333pt;}
._16_c00012{width:18.880000pt;}
._12_c00012{width:19.877307pt;}
._1f_c00012{width:22.613333pt;}
._c_c00012{width:23.946667pt;}
._10_c00012{width:40.426667pt;}
._22_c00012{width:192.644864pt;}
._f_c00012{width:343.039573pt;}
._b_c00012{width:385.493333pt;}
._1a_c00012{width:398.237083pt;}
._18_c00012{width:408.309147pt;}
._26_c00012{width:542.037248pt;}
._19_c00012{width:559.239835pt;}
._1b_c00012{width:571.407925pt;}
._24_c00012{width:591.765232pt;}
._9_c00012{width:620.143701pt;}
._14_c00012{width:655.527819pt;}
._13_c00012{width:664.525435pt;}
._17_c00012{width:681.178507pt;}
._20_c00012{width:716.626501pt;}
._1c_c00012{width:744.079787pt;}
._25_c00012{width:760.010773pt;}
._6_c00012{width:791.594651pt;}
._21_c00012{width:869.053632pt;}
._e_c00012{width:899.600213pt;}
._11_c00012{width:941.717248pt;}
._1d_c00012{width:959.367936pt;}
._1e_c00012{width:1059.509301pt;}
._15_c00012{width:1069.989360pt;}
.fs0_c00012{font-size:45.333333pt;}
.fs1_c00012{font-size:53.333333pt;}
.y0_c00012{bottom:0.000000pt;}
.y28_c00012{bottom:57.600020pt;}
.y27_c00012{bottom:112.333353pt;}
.y26_c00012{bottom:129.266686pt;}
.y25_c00012{bottom:146.866686pt;}
.y24_c00012{bottom:163.866686pt;}
.y23_c00012{bottom:181.466686pt;}
.y22_c00012{bottom:198.733353pt;}
.y21_c00012{bottom:215.666686pt;}
.y20_c00012{bottom:233.266686pt;}
.y1f_c00012{bottom:250.600020pt;}
.y1e_c00012{bottom:267.533353pt;}
.y1d_c00012{bottom:284.466686pt;}
.y1c_c00012{bottom:301.800020pt;}
.y1b_c00012{bottom:319.400020pt;}
.y1a_c00012{bottom:336.333353pt;}
.y19_c00012{bottom:353.600020pt;}
.y18_c00012{bottom:370.866686pt;}
.y17_c00012{bottom:388.200020pt;}
.y16_c00012{bottom:405.800020pt;}
.y15_c00012{bottom:422.733353pt;}
.y14_c00012{bottom:440.000020pt;}
.y13_c00012{bottom:457.266686pt;}
.y12_c00012{bottom:474.866686pt;}
.y11_c00012{bottom:492.200020pt;}
.y10_c00012{bottom:509.466686pt;}
.yf_c00012{bottom:526.400020pt;}
.ye_c00012{bottom:543.666686pt;}
.yd_c00012{bottom:561.000020pt;}
.yc_c00012{bottom:578.266686pt;}
.yb_c00012{bottom:595.533353pt;}
.ya_c00012{bottom:613.133353pt;}
.y9_c00012{bottom:630.066686pt;}
.y8_c00012{bottom:647.666686pt;}
.y7_c00012{bottom:664.666686pt;}
.y6_c00012{bottom:682.266686pt;}
.y5_c00012{bottom:699.200020pt;}
.y4_c00012{bottom:716.466686pt;}
.y3_c00012{bottom:733.800020pt;}
.y2_c00012{bottom:750.733353pt;}
.y1_c00012{bottom:788.200020pt;}
.h2_c00012{height:44.470052pt;}
.h3_c00012{height:52.343750pt;}
.h1_c00012{height:851.333333pt;}
.h0_c00012{height:851.533333pt;}
.w1_c00012{width:572.000000pt;}
.w0_c00012{width:572.133333pt;}
.x0_c00012{left:0.000000pt;}
.x1_c00012{left:80.666667pt;}
.x9_c00012{left:81.933333pt;}
.x7_c00012{left:132.466667pt;}
.x6_c00012{left:149.466667pt;}
.x2_c00012{left:168.000000pt;}
.x3_c00012{left:192.933333pt;}
.x5_c00012{left:214.733333pt;}
.x4_c00012{left:215.666667pt;}
.x8_c00012{left:238.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_33c0926d331865a5255e120e.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00013;src:url('chunks/assets/font_f68691c20cf2cf6094f58092.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00013{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_c00013{vertical-align:0.000000px;}
.ls3_c00013{letter-spacing:0.000000px;}
.ls1_c00013{letter-spacing:13.800000px;}
.ls0_c00013{letter-spacing:27.000000px;}
.ls2_c00013{letter-spacing:34.800000px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00013{word-spacing:-15.000000px;}
.ws1_c00013{word-spacing:0.000000px;}
._1_c00013{margin-left:-8.730231px;}
._13_c00013{margin-left:-6.000000px;}
._30_c00013{margin-left:-4.800000px;}
._8_c00013{margin-left:-3.600000px;}
._2_c00013{margin-left:-2.178006px;}
._3_c00013{margin-left:-1.017024px;}
._0_c00013{width:1.317024px;}
._a_c00013{width:2.342976px;}
._5_c00013{width:3.360000px;}
._6_c00013{width:4.802976px;}
._4_c00013{width:5.882976px;}
._11_c00013{width:7.364160px;}
._25_c00013{width:13.476012px;}
._9_c00013{width:20.196012px;}
._17_c00013{width:21.420000px;}
._e_c00013{width:24.096012px;}
._15_c00013{width:27.636012px;}
._1d_c00013{width:30.302976px;}
._1b_c00013{width:38.157024px;}
._1f_c00013{width:41.496012px;}
._18_c00013{width:165.227616px;}
._24_c00013{width:175.820502px;}
._16_c00013{width:204.638658px;}
._19_c00013{width:230.630592px;}
._2a_c00013{width:324.800802px;}
._28_c00013{width:330.179520px;}
._26_c00013{width:342.278688px;}
._22_c00013{width:354.464640px;}
._14_c00013{width:395.036844px;}
._7_c00013{width:432.260832px;}
._2f_c00013{width:439.427616px;}
._2c_c00013{width:460.157856px;}
._23_c00013{width:469.295712px;}
._21_c00013{width:546.794880px;}
._c_c00013{width:549.326784px;}
._2d_c00013{width:574.433568px;}
._2e_c00013{width:575.459520px;}
._2b_c00013{width:600.479820px;}
._b_c00013{width:611.000832px;}
._1a_c00013{width:725.690592px;}
._27_c00013{width:777.293748px;}
._d_c00013{width:872.480832px;}
._20_c00013{width:912.960000px;}
._f_c00013{width:1004.174880px;}
._10_c00013{width:1051.889910px;}
._1c_c00013{width:1058.478006px;}
._1e_c00013{width:1109.288928px;}
._12_c00013{width:1130.651904px;}
._29_c00013{width:1163.951904px;}
.fc2_c00013{color:transparent;}
.fc1_c00013{color:rgb(0,0,0);}
.fc0_c00013{color:rgb(35,31,32);}
.fs0_c00013{font-size:51.000000px;}
.fs1_c00013{font-size:60.000000px;}
.y0_c00013{bottom:0.000000px;}
.y26_c00013{bottom:64.425022px;}
.y25_c00013{bottom:138.225022px;}
.y24_c00013{bottom:157.725022px;}
.y23_c00013{bottom:177.150022px;}
.y22_c00013{bottom:196.200022px;}
.y21_c00013{bottom:215.625022px;}
.y20_c00013{bottom:235.125022px;}
.y1f_c00013{bottom:254.925022px;}
.y1e_c00013{bottom:274.350022px;}
.y1d_c00013{bottom:293.025022px;}
.y1c_c00013{bottom:312.525022px;}
.y1b_c00013{bottom:332.325022px;}
.y1a_c00013{bottom:360.375022px;}
.y19_c00013{bottom:397.800022px;}
.y18_c00013{bottom:417.600022px;}
.y17_c00013{bottom:437.025022px;}
.y16_c00013{bottom:456.525022px;}
.y15_c00013{bottom:475.950022px;}
.y14_c00013{bottom:495.375022px;}
.y13_c00013{bottom:514.425022px;}
.y12_c00013{bottom:533.925022px;}
.y11_c00013{bottom:553.350022px;}
.y10_c00013{bottom:572.775022px;}
.yf_c00013{bottom:592.200022px;}
.ye_c00013{bottom:612.000022px;}
.yd_c00013{bottom:631.425022px;}
.yc_c00013{bottom:650.550022px;}
.yb_c00013{bottom:669.975022px;}
.ya_c00013{bottom:689.775022px;}
.y9_c00013{bottom:708.825022px;}
.y8_c00013{bottom:728.325022px;}
.y7_c00013{bottom:747.750022px;}
.y6_c00013{bottom:767.550022px;}
.y5_c00013{bottom:786.225022px;}
.y4_c00013{bottom:805.725022px;}
.y3_c00013{bottom:825.525022px;}
.y2_c00013{bottom:844.950022px;}
.y1_c00013{bottom:886.725022px;}
.h2_c00013{height:50.028809px;}
.h3_c00013{height:58.886719px;}
.h1_c00013{height:957.750000px;}
.h0_c00013{height:957.975000px;}
.w0_c00013{width:641.850030px;}
.w1_c00013{width:642.000000px;}
.x0_c00013{left:0.000000px;}
.x9_c00013{left:81.375000px;}
.x6_c00013{left:112.650000px;}
.xa_c00013{left:124.200000px;}
.x7_c00013{left:138.600000px;}
.x8_c00013{left:139.650000px;}
.x5_c00013{left:158.025000px;}
.x2_c00013{left:178.950000px;}
.x3_c00013{left:207.375000px;}
.x4_c00013{left:232.575000px;}
.x1_c00013{left:456.825000px;}
.xb_c00013{left:539.250000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls3_c00013{letter-spacing:0.000000pt;}
.ls1_c00013{letter-spacing:12.266667pt;}
.ls0_c00013{letter-spacing:24.000000pt;}
.ls2_c00013{letter-spacing:30.933333pt;}
.ws0_c00013{word-spacing:-13.333333pt;}
.ws1_c00013{word-spacing:0.000000pt;}
._1_c00013{margin-left:-7.760205pt;}
._13_c00013{margin-left:-5.333333pt;}
._30_c00013{margin-left:-4.266667pt;}
._8_c00013{margin-left:-3.200000pt;}
._2_c00013{margin-left:-1.936005pt;}
._3_c00013{margin-left:-0.904021pt;}
._0_c00013{width:1.170688pt;}
._a_c00013{width:2.082645pt;}
._5_c00013{width:2.986667pt;}
._6_c00013{width:4.269312pt;}
._4_c00013{width:5.229312pt;}
._11_c00013{width:6.545920pt;}
._25_c00013{width:11.978677pt;}
._9_c00013{width:17.952011pt;}
._17_c00013{width:19.040000pt;}
._e_c00013{width:21.418677pt;}
._15_c00013{width:24.565344pt;}
._1d_c00013{width:26.935979pt;}
._1b_c00013{width:33.917355pt;}
._1f_c00013{width:36.885344pt;}
._18_c00013{width:146.868992pt;}
._24_c00013{width:156.284891pt;}
._16_c00013{width:181.901029pt;}
._19_c00013{width:205.004971pt;}
._2a_c00013{width:288.711824pt;}
._28_c00013{width:293.492907pt;}
._26_c00013{width:304.247723pt;}
._22_c00013{width:315.079680pt;}
._14_c00013{width:351.143861pt;}
._7_c00013{width:384.231851pt;}
._2f_c00013{width:390.602325pt;}
._2c_c00013{width:409.029205pt;}
._23_c00013{width:417.151744pt;}
._21_c00013{width:486.039893pt;}
._c_c00013{width:488.290475pt;}
._2d_c00013{width:510.607616pt;}
._2e_c00013{width:511.519573pt;}
._2b_c00013{width:533.759840pt;}
._b_c00013{width:543.111851pt;}
._1a_c00013{width:645.058304pt;}
._27_c00013{width:690.927776pt;}
._d_c00013{width:775.538517pt;}
._20_c00013{width:811.520000pt;}
._f_c00013{width:892.599893pt;}
._10_c00013{width:935.013253pt;}
._1c_c00013{width:940.869339pt;}
._1e_c00013{width:986.034603pt;}
._12_c00013{width:1005.023915pt;}
._29_c00013{width:1034.623915pt;}
.fs0_c00013{font-size:45.333333pt;}
.fs1_c00013{font-size:53.333333pt;}
.y0_c00013{bottom:0.000000pt;}
.y26_c00013{bottom:57.266686pt;}
.y25_c00013{bottom:122.866686pt;}
.y24_c00013{bottom:140.200020pt;}
.y23_c00013{bottom:157.466686pt;}
.y22_c00013{bottom:174.400020pt;}
.y21_c00013{bottom:191.666686pt;}
.y20_c00013{bottom:209.000020pt;}
.y1f_c00013{bottom:226.600020pt;}
.y1e_c00013{bottom:243.866686pt;}
.y1d_c00013{bottom:260.466686pt;}
.y1c_c00013{bottom:277.800020pt;}
.y1b_c00013{bottom:295.400020pt;}
.y1a_c00013{bottom:320.333353pt;}
.y19_c00013{bottom:353.600020pt;}
.y18_c00013{bottom:371.200020pt;}
.y17_c00013{bottom:388.466686pt;}
.y16_c00013{bottom:405.800020pt;}
.y15_c00013{bottom:423.066686pt;}
.y14_c00013{bottom:440.333353pt;}
.y13_c00013{bottom:457.266686pt;}
.y12_c00013{bottom:474.600020pt;}
.y11_c00013{bottom:491.866686pt;}
.y10_c00013{bottom:509.133353pt;}
.yf_c00013{bottom:526.400020pt;}
.ye_c00013{bottom:544.000020pt;}
.yd_c00013{bottom:561.266686pt;}
.yc_c00013{bottom:578.266686pt;}
.yb_c00013{bottom:595.533353pt;}
.ya_c00013{bottom:613.133353pt;}
.y9_c00013{bottom:630.066686pt;}
.y8_c00013{bottom:647.400020pt;}
.y7_c00013{bottom:664.666686pt;}
.y6_c00013{bottom:682.266686pt;}
.y5_c00013{bottom:698.866686pt;}
.y4_c00013{bottom:716.200020pt;}
.y3_c00013{bottom:733.800020pt;}
.y2_c00013{bottom:751.066686pt;}
.y1_c00013{bottom:788.200020pt;}
.h2_c00013{height:44.470052pt;}
.h3_c00013{height:52.343750pt;}
.h1_c00013{height:851.333333pt;}
.h0_c00013{height:851.533333pt;}
.w0_c00013{width:570.533360pt;}
.w1_c00013{width:570.666667pt;}
.x0_c00013{left:0.000000pt;}
.x9_c00013{left:72.333333pt;}
.x6_c00013{left:100.133333pt;}
.xa_c00013{left:110.400000pt;}
.x7_c00013{left:123.200000pt;}
.x8_c00013{left:124.133333pt;}
.x5_c00013{left:140.466667pt;}
.x2_c00013{left:159.066667pt;}
.x3_c00013{left:184.333333pt;}
.x4_c00013{left:206.733333pt;}
.x1_c00013{left:406.066667pt;}
.xb_c00013{left:479.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_70f44543986551057a11cd8c.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00014;src:url('chunks/assets/font_229c35766d2460daf22b7778.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00014{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_c00014{vertical-align:0.000000px;}
.ls2_c00014{letter-spacing:0.000000px;}
.ls0_c00014{letter-spacing:11.700000px;}
.ls1_c00014{letter-spacing:34.800000px;}
.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:-25.500000px;}
.ws1_c00014{word-spacing:-15.000000px;}
.ws2_c00014{word-spacing:0.000000px;}
._14_c00014{margin-left:-15.000000px;}
._13_c00014{margin-left:-9.017856px;}
._12_c00014{margin-left:-5.795844px;}
._2_c00014{margin-left:-3.900000px;}
._3_c00014{margin-left:-2.100000px;}
._c_c00014{margin-left:-1.080000px;}
._0_c00014{width:1.317024px;}
._1_c00014{width:2.387922px;}
._16_c00014{width:3.771114px;}
._d_c00014{width:4.817856px;}
._17_c00014{width:6.495054px;}
._11_c00014{width:7.680000px;}
._a_c00014{width:17.220000px;}
._1a_c00014{width:21.000000px;}
._4_c00014{width:22.200000px;}
._8_c00014{width:24.540000px;}
._27_c00014{width:25.980000px;}
._6_c00014{width:27.480000px;}
._1b_c00014{width:78.503592px;}
._24_c00014{width:116.618688px;}
._1c_c00014{width:242.552562px;}
._2a_c00014{width:246.314748px;}
._29_c00014{width:255.999078px;}
._22_c00014{width:267.179304px;}
._25_c00014{width:312.512778px;}
._15_c00014{width:349.445952px;}
._19_c00014{width:407.012868px;}
._1e_c00014{width:442.571904px;}
._1d_c00014{width:487.559910px;}
._20_c00014{width:498.605646px;}
._e_c00014{width:594.354306px;}
._21_c00014{width:649.082670px;}
._28_c00014{width:701.249976px;}
._b_c00014{width:765.482844px;}
._18_c00014{width:780.452436px;}
._5_c00014{width:890.747616px;}
._f_c00014{width:902.084640px;}
._9_c00014{width:980.834880px;}
._10_c00014{width:1061.774880px;}
._23_c00014{width:1081.817682px;}
._2b_c00014{width:1085.201838px;}
._7_c00014{width:1144.242012px;}
._26_c00014{width:1312.980000px;}
._1f_c00014{width:1339.620000px;}
.fc2_c00014{color:transparent;}
.fc1_c00014{color:rgb(0,0,0);}
.fc0_c00014{color:rgb(35,31,32);}
.fs0_c00014{font-size:51.000000px;}
.fs1_c00014{font-size:60.000000px;}
.y0_c00014{bottom:0.000000px;}
.y23_c00014{bottom:64.800022px;}
.y22_c00014{bottom:223.575022px;}
.y21_c00014{bottom:243.000022px;}
.y20_c00014{bottom:262.125022px;}
.y1f_c00014{bottom:281.550022px;}
.y1e_c00014{bottom:301.350022px;}
.y1d_c00014{bottom:320.025022px;}
.y1c_c00014{bottom:339.825022px;}
.y1b_c00014{bottom:358.950022px;}
.y1a_c00014{bottom:378.750022px;}
.y19_c00014{bottom:398.175022px;}
.y18_c00014{bottom:417.600022px;}
.y17_c00014{bottom:436.725022px;}
.y16_c00014{bottom:456.150022px;}
.y15_c00014{bottom:475.950022px;}
.y14_c00014{bottom:495.000022px;}
.y13_c00014{bottom:514.425022px;}
.y12_c00014{bottom:534.225022px;}
.y11_c00014{bottom:553.350022px;}
.y10_c00014{bottom:573.150022px;}
.yf_c00014{bottom:592.200022px;}
.ye_c00014{bottom:611.625022px;}
.yd_c00014{bottom:631.125022px;}
.yc_c00014{bottom:650.550022px;}
.yb_c00014{bottom:670.350022px;}
.ya_c00014{bottom:689.400022px;}
.y9_c00014{bottom:708.825022px;}
.y8_c00014{bottom:728.625022px;}
.y7_c00014{bottom:747.750022px;}
.y6_c00014{bottom:767.550022px;}
.y5_c00014{bottom:786.225022px;}
.y4_c00014{bottom:806.025022px;}
.y3_c00014{bottom:825.150022px;}
.y2_c00014{bottom:844.950022px;}
.y1_c00014{bottom:886.725022px;}
.h2_c00014{height:50.028809px;}
.h3_c00014{height:58.886719px;}
.h1_c00014{height:957.750000px;}
.h0_c00014{height:957.975000px;}
.w1_c00014{width:643.500000px;}
.w0_c00014{width:643.650000px;}
.x0_c00014{left:0.000000px;}
.x1_c00014{left:90.750000px;}
.x8_c00014{left:92.175000px;}
.x7_c00014{left:122.775000px;}
.x6_c00014{left:128.550000px;}
.x2_c00014{left:149.025000px;}
.x3_c00014{left:168.150000px;}
.x4_c00014{left:189.375000px;}
.x5_c00014{left:217.050000px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls2_c00014{letter-spacing:0.000000pt;}
.ls0_c00014{letter-spacing:10.400000pt;}
.ls1_c00014{letter-spacing:30.933333pt;}
.ws0_c00014{word-spacing:-22.666667pt;}
.ws1_c00014{word-spacing:-13.333333pt;}
.ws2_c00014{word-spacing:0.000000pt;}
._14_c00014{margin-left:-13.333333pt;}
._13_c00014{margin-left:-8.015872pt;}
._12_c00014{margin-left:-5.151861pt;}
._2_c00014{margin-left:-3.466667pt;}
._3_c00014{margin-left:-1.866667pt;}
._c_c00014{margin-left:-0.960000pt;}
._0_c00014{width:1.170688pt;}
._1_c00014{width:2.122597pt;}
._16_c00014{width:3.352101pt;}
._d_c00014{width:4.282539pt;}
._17_c00014{width:5.773381pt;}
._11_c00014{width:6.826667pt;}
._a_c00014{width:15.306667pt;}
._1a_c00014{width:18.666667pt;}
._4_c00014{width:19.733333pt;}
._8_c00014{width:21.813333pt;}
._27_c00014{width:23.093333pt;}
._6_c00014{width:24.426667pt;}
._1b_c00014{width:69.780971pt;}
._24_c00014{width:103.661056pt;}
._1c_c00014{width:215.602277pt;}
._2a_c00014{width:218.946443pt;}
._29_c00014{width:227.554736pt;}
._22_c00014{width:237.492715pt;}
._25_c00014{width:277.789136pt;}
._15_c00014{width:310.618624pt;}
._19_c00014{width:361.789216pt;}
._1e_c00014{width:393.397248pt;}
._1d_c00014{width:433.386587pt;}
._20_c00014{width:443.205019pt;}
._e_c00014{width:528.314939pt;}
._21_c00014{width:576.962373pt;}
._28_c00014{width:623.333312pt;}
._b_c00014{width:680.429195pt;}
._18_c00014{width:693.735499pt;}
._5_c00014{width:791.775659pt;}
._f_c00014{width:801.853013pt;}
._9_c00014{width:871.853227pt;}
._10_c00014{width:943.799893pt;}
._23_c00014{width:961.615717pt;}
._2b_c00014{width:964.623856pt;}
._7_c00014{width:1017.104011pt;}
._26_c00014{width:1167.093333pt;}
._1f_c00014{width:1190.773333pt;}
.fs0_c00014{font-size:45.333333pt;}
.fs1_c00014{font-size:53.333333pt;}
.y0_c00014{bottom:0.000000pt;}
.y23_c00014{bottom:57.600020pt;}
.y22_c00014{bottom:198.733353pt;}
.y21_c00014{bottom:216.000020pt;}
.y20_c00014{bottom:233.000020pt;}
.y1f_c00014{bottom:250.266686pt;}
.y1e_c00014{bottom:267.866686pt;}
.y1d_c00014{bottom:284.466686pt;}
.y1c_c00014{bottom:302.066686pt;}
.y1b_c00014{bottom:319.066686pt;}
.y1a_c00014{bottom:336.666686pt;}
.y19_c00014{bottom:353.933353pt;}
.y18_c00014{bottom:371.200020pt;}
.y17_c00014{bottom:388.200020pt;}
.y16_c00014{bottom:405.466686pt;}
.y15_c00014{bottom:423.066686pt;}
.y14_c00014{bottom:440.000020pt;}
.y13_c00014{bottom:457.266686pt;}
.y12_c00014{bottom:474.866686pt;}
.y11_c00014{bottom:491.866686pt;}
.y10_c00014{bottom:509.466686pt;}
.yf_c00014{bottom:526.400020pt;}
.ye_c00014{bottom:543.666686pt;}
.yd_c00014{bottom:561.000020pt;}
.yc_c00014{bottom:578.266686pt;}
.yb_c00014{bottom:595.866686pt;}
.ya_c00014{bottom:612.800020pt;}
.y9_c00014{bottom:630.066686pt;}
.y8_c00014{bottom:647.666686pt;}
.y7_c00014{bottom:664.666686pt;}
.y6_c00014{bottom:682.266686pt;}
.y5_c00014{bottom:698.866686pt;}
.y4_c00014{bottom:716.466686pt;}
.y3_c00014{bottom:733.466686pt;}
.y2_c00014{bottom:751.066686pt;}
.y1_c00014{bottom:788.200020pt;}
.h2_c00014{height:44.470052pt;}
.h3_c00014{height:52.343750pt;}
.h1_c00014{height:851.333333pt;}
.h0_c00014{height:851.533333pt;}
.w1_c00014{width:572.000000pt;}
.w0_c00014{width:572.133333pt;}
.x0_c00014{left:0.000000pt;}
.x1_c00014{left:80.666667pt;}
.x8_c00014{left:81.933333pt;}
.x7_c00014{left:109.133333pt;}
.x6_c00014{left:114.266667pt;}
.x2_c00014{left:132.466667pt;}
.x3_c00014{left:149.466667pt;}
.x4_c00014{left:168.333333pt;}
.x5_c00014{left:192.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_33c0926d331865a5255e120e.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00015;src:url('chunks/assets/font_0c51021a0fc70e84917d1b09.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00015{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_c00015{vertical-align:0.000000px;}
.ls2_c00015{letter-spacing:0.000000px;}
.ls1_c00015{letter-spacing:13.800000px;}
.ls0_c00015{letter-spacing:34.800000px;}
.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:-15.000000px;}
.ws1_c00015{word-spacing:0.000000px;}
._1_c00015{margin-left:-8.730231px;}
._a_c00015{margin-left:-6.000000px;}
._3_c00015{margin-left:-4.020000px;}
._2_c00015{margin-left:-2.178006px;}
._6_c00015{margin-left:-1.037856px;}
._0_c00015{width:1.317024px;}
._5_c00015{width:2.369760px;}
._8_c00015{width:3.384108px;}
._4_c00015{width:4.998006px;}
._12_c00015{width:6.635562px;}
._b_c00015{width:20.178006px;}
._16_c00015{width:22.398006px;}
._f_c00015{width:23.777856px;}
._d_c00015{width:24.936012px;}
._14_c00015{width:26.136012px;}
._20_c00015{width:27.636012px;}
._10_c00015{width:223.893096px;}
._17_c00015{width:326.694048px;}
._18_c00015{width:336.531222px;}
._23_c00015{width:361.190592px;}
._26_c00015{width:386.003658px;}
._1a_c00015{width:485.280480px;}
._1d_c00015{width:532.568778px;}
._c_c00015{width:544.820832px;}
._1b_c00015{width:560.883936px;}
._1c_c00015{width:629.502144px;}
._15_c00015{width:640.892736px;}
._1f_c00015{width:666.131604px;}
._27_c00015{width:701.012736px;}
._1e_c00015{width:731.576574px;}
._25_c00015{width:733.184790px;}
._21_c00015{width:775.892736px;}
._19_c00015{width:899.790240px;}
._13_c00015{width:937.352736px;}
._e_c00015{width:1004.117856px;}
._9_c00015{width:1088.564790px;}
._24_c00015{width:1109.979648px;}
._22_c00015{width:1120.260000px;}
._11_c00015{width:1141.020000px;}
._7_c00015{width:1301.246784px;}
.fc2_c00015{color:transparent;}
.fc1_c00015{color:rgb(0,0,0);}
.fc0_c00015{color:rgb(35,31,32);}
.fs0_c00015{font-size:51.000000px;}
.fs1_c00015{font-size:60.000000px;}
.y0_c00015{bottom:0.000000px;}
.y28_c00015{bottom:64.425022px;}
.y27_c00015{bottom:117.375022px;}
.y26_c00015{bottom:136.425022px;}
.y25_c00015{bottom:156.225022px;}
.y24_c00015{bottom:175.725022px;}
.y23_c00015{bottom:194.775022px;}
.y22_c00015{bottom:214.575022px;}
.y21_c00015{bottom:234.000022px;}
.y20_c00015{bottom:253.425022px;}
.y1f_c00015{bottom:272.550022px;}
.y1e_c00015{bottom:292.350022px;}
.y1d_c00015{bottom:311.025022px;}
.y1c_c00015{bottom:330.825022px;}
.y1b_c00015{bottom:349.950022px;}
.y1a_c00015{bottom:369.375022px;}
.y19_c00015{bottom:389.175022px;}
.y18_c00015{bottom:408.225022px;}
.y17_c00015{bottom:427.725022px;}
.y16_c00015{bottom:447.525022px;}
.y15_c00015{bottom:466.575022px;}
.y14_c00015{bottom:486.000022px;}
.y13_c00015{bottom:505.800022px;}
.y12_c00015{bottom:525.225022px;}
.y11_c00015{bottom:544.725022px;}
.y10_c00015{bottom:563.775022px;}
.yf_c00015{bottom:583.200022px;}
.ye_c00015{bottom:603.000022px;}
.yd_c00015{bottom:622.125022px;}
.yc_c00015{bottom:641.925022px;}
.yb_c00015{bottom:660.975022px;}
.ya_c00015{bottom:680.400022px;}
.y9_c00015{bottom:699.825022px;}
.y8_c00015{bottom:719.625022px;}
.y7_c00015{bottom:739.125022px;}
.y6_c00015{bottom:758.550022px;}
.y5_c00015{bottom:777.600022px;}
.y4_c00015{bottom:797.025022px;}
.y3_c00015{bottom:825.150022px;}
.y2_c00015{bottom:844.575022px;}
.y1_c00015{bottom:886.725022px;}
.h2_c00015{height:50.028809px;}
.h3_c00015{height:58.886719px;}
.h1_c00015{height:957.750000px;}
.h0_c00015{height:957.975000px;}
.w0_c00015{width:641.850030px;}
.w1_c00015{width:642.000000px;}
.x0_c00015{left:0.000000px;}
.x2_c00015{left:81.375000px;}
.x3_c00015{left:106.575000px;}
.x4_c00015{left:124.200000px;}
.x5_c00015{left:138.975000px;}
.x6_c00015{left:158.025000px;}
.x7_c00015{left:179.250000px;}
.x8_c00015{left:207.000000px;}
.x9_c00015{left:232.200000px;}
.x1_c00015{left:456.825000px;}
.xa_c00015{left:539.250000px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls2_c00015{letter-spacing:0.000000pt;}
.ls1_c00015{letter-spacing:12.266667pt;}
.ls0_c00015{letter-spacing:30.933333pt;}
.ws0_c00015{word-spacing:-13.333333pt;}
.ws1_c00015{word-spacing:0.000000pt;}
._1_c00015{margin-left:-7.760205pt;}
._a_c00015{margin-left:-5.333333pt;}
._3_c00015{margin-left:-3.573333pt;}
._2_c00015{margin-left:-1.936005pt;}
._6_c00015{margin-left:-0.922539pt;}
._0_c00015{width:1.170688pt;}
._5_c00015{width:2.106453pt;}
._8_c00015{width:3.008096pt;}
._4_c00015{width:4.442672pt;}
._12_c00015{width:5.898277pt;}
._b_c00015{width:17.936005pt;}
._16_c00015{width:19.909339pt;}
._f_c00015{width:21.135872pt;}
._d_c00015{width:22.165344pt;}
._14_c00015{width:23.232011pt;}
._20_c00015{width:24.565344pt;}
._10_c00015{width:199.016085pt;}
._17_c00015{width:290.394709pt;}
._18_c00015{width:299.138864pt;}
._23_c00015{width:321.058304pt;}
._26_c00015{width:343.114363pt;}
._1a_c00015{width:431.360427pt;}
._1d_c00015{width:473.394469pt;}
._c_c00015{width:484.285184pt;}
._1b_c00015{width:498.563499pt;}
._1c_c00015{width:559.557461pt;}
._15_c00015{width:569.682432pt;}
._1f_c00015{width:592.116981pt;}
._27_c00015{width:623.122432pt;}
._1e_c00015{width:650.290288pt;}
._25_c00015{width:651.719813pt;}
._21_c00015{width:689.682432pt;}
._19_c00015{width:799.813547pt;}
._13_c00015{width:833.202432pt;}
._e_c00015{width:892.549205pt;}
._9_c00015{width:967.613147pt;}
._24_c00015{width:986.648576pt;}
._22_c00015{width:995.786667pt;}
._11_c00015{width:1014.240000pt;}
._7_c00015{width:1156.663808pt;}
.fs0_c00015{font-size:45.333333pt;}
.fs1_c00015{font-size:53.333333pt;}
.y0_c00015{bottom:0.000000pt;}
.y28_c00015{bottom:57.266686pt;}
.y27_c00015{bottom:104.333353pt;}
.y26_c00015{bottom:121.266686pt;}
.y25_c00015{bottom:138.866686pt;}
.y24_c00015{bottom:156.200020pt;}
.y23_c00015{bottom:173.133353pt;}
.y22_c00015{bottom:190.733353pt;}
.y21_c00015{bottom:208.000020pt;}
.y20_c00015{bottom:225.266686pt;}
.y1f_c00015{bottom:242.266686pt;}
.y1e_c00015{bottom:259.866686pt;}
.y1d_c00015{bottom:276.466686pt;}
.y1c_c00015{bottom:294.066686pt;}
.y1b_c00015{bottom:311.066686pt;}
.y1a_c00015{bottom:328.333353pt;}
.y19_c00015{bottom:345.933353pt;}
.y18_c00015{bottom:362.866686pt;}
.y17_c00015{bottom:380.200020pt;}
.y16_c00015{bottom:397.800020pt;}
.y15_c00015{bottom:414.733353pt;}
.y14_c00015{bottom:432.000020pt;}
.y13_c00015{bottom:449.600020pt;}
.y12_c00015{bottom:466.866686pt;}
.y11_c00015{bottom:484.200020pt;}
.y10_c00015{bottom:501.133353pt;}
.yf_c00015{bottom:518.400020pt;}
.ye_c00015{bottom:536.000020pt;}
.yd_c00015{bottom:553.000020pt;}
.yc_c00015{bottom:570.600020pt;}
.yb_c00015{bottom:587.533353pt;}
.ya_c00015{bottom:604.800020pt;}
.y9_c00015{bottom:622.066686pt;}
.y8_c00015{bottom:639.666686pt;}
.y7_c00015{bottom:657.000020pt;}
.y6_c00015{bottom:674.266686pt;}
.y5_c00015{bottom:691.200020pt;}
.y4_c00015{bottom:708.466686pt;}
.y3_c00015{bottom:733.466686pt;}
.y2_c00015{bottom:750.733353pt;}
.y1_c00015{bottom:788.200020pt;}
.h2_c00015{height:44.470052pt;}
.h3_c00015{height:52.343750pt;}
.h1_c00015{height:851.333333pt;}
.h0_c00015{height:851.533333pt;}
.w0_c00015{width:570.533360pt;}
.w1_c00015{width:570.666667pt;}
.x0_c00015{left:0.000000pt;}
.x2_c00015{left:72.333333pt;}
.x3_c00015{left:94.733333pt;}
.x4_c00015{left:110.400000pt;}
.x5_c00015{left:123.533333pt;}
.x6_c00015{left:140.466667pt;}
.x7_c00015{left:159.333333pt;}
.x8_c00015{left:184.000000pt;}
.x9_c00015{left:206.400000pt;}
.x1_c00015{left:406.066667pt;}
.xa_c00015{left:479.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_70f44543986551057a11cd8c.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00016;src:url('chunks/assets/font_fb17832b17c4c606ee314ca4.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00016{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_c00016{vertical-align:0.000000px;}
.ls4_c00016{letter-spacing:0.000000px;}
.ls1_c00016{letter-spacing:21.000000px;}
.ls3_c00016{letter-spacing:22.500000px;}
.ls0_c00016{letter-spacing:28.200000px;}
.ls2_c00016{letter-spacing:34.800000px;}
.sc__c00016{text-shadow:none;}
.sc0_c00016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00016{-webkit-text-stroke:0px transparent;}
.sc0_c00016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00016{word-spacing:-25.500000px;}
.ws1_c00016{word-spacing:-15.000000px;}
.ws2_c00016{word-spacing:0.000000px;}
._f_c00016{margin-left:-6.000000px;}
._21_c00016{margin-left:-4.200000px;}
._4_c00016{margin-left:-2.687922px;}
._7_c00016{margin-left:-1.671072px;}
._0_c00016{width:1.317024px;}
._1_c00016{width:2.387922px;}
._3_c00016{width:4.085646px;}
._6_c00016{width:5.111556px;}
._c_c00016{width:6.944772px;}
._2_c00016{width:17.220000px;}
._17_c00016{width:18.527922px;}
._9_c00016{width:20.927922px;}
._13_c00016{width:23.091072px;}
._11_c00016{width:25.967922px;}
._1b_c00016{width:111.762144px;}
._20_c00016{width:228.570546px;}
._5_c00016{width:247.343808px;}
._1d_c00016{width:284.612736px;}
._d_c00016{width:303.681876px;}
._a_c00016{width:467.597682px;}
._16_c00016{width:469.274574px;}
._10_c00016{width:517.820700px;}
._1e_c00016{width:567.302886px;}
._b_c00016{width:676.619868px;}
._18_c00016{width:756.815712px;}
._15_c00016{width:764.286168px;}
._1c_c00016{width:765.629760px;}
._8_c00016{width:830.357856px;}
._1a_c00016{width:845.462802px;}
._14_c00016{width:923.480832px;}
._19_c00016{width:957.683808px;}
._1f_c00016{width:1122.965952px;}
._e_c00016{width:1132.652736px;}
._12_c00016{width:1141.643808px;}
.fc2_c00016{color:transparent;}
.fc1_c00016{color:rgb(0,0,0);}
.fc0_c00016{color:rgb(35,31,32);}
.fs0_c00016{font-size:51.000000px;}
.fs1_c00016{font-size:60.000000px;}
.y0_c00016{bottom:0.000000px;}
.y28_c00016{bottom:64.425022px;}
.y27_c00016{bottom:126.000022px;}
.y26_c00016{bottom:145.800022px;}
.y25_c00016{bottom:164.925022px;}
.y24_c00016{bottom:184.725022px;}
.y23_c00016{bottom:203.775022px;}
.y22_c00016{bottom:223.200022px;}
.y21_c00016{bottom:243.000022px;}
.y20_c00016{bottom:262.125022px;}
.y1f_c00016{bottom:281.550022px;}
.y1e_c00016{bottom:300.975022px;}
.y1d_c00016{bottom:320.025022px;}
.y1c_c00016{bottom:339.825022px;}
.y1b_c00016{bottom:358.950022px;}
.y1a_c00016{bottom:378.375022px;}
.y19_c00016{bottom:398.175022px;}
.y18_c00016{bottom:417.225022px;}
.y17_c00016{bottom:437.025022px;}
.y16_c00016{bottom:456.525022px;}
.y15_c00016{bottom:475.950022px;}
.y14_c00016{bottom:495.375022px;}
.y13_c00016{bottom:514.800022px;}
.y12_c00016{bottom:534.225022px;}
.y11_c00016{bottom:553.350022px;}
.y10_c00016{bottom:573.150022px;}
.yf_c00016{bottom:592.575022px;}
.ye_c00016{bottom:611.625022px;}
.yd_c00016{bottom:631.425022px;}
.yc_c00016{bottom:650.550022px;}
.yb_c00016{bottom:670.350022px;}
.ya_c00016{bottom:689.775022px;}
.y9_c00016{bottom:709.200022px;}
.y8_c00016{bottom:728.325022px;}
.y7_c00016{bottom:748.125022px;}
.y6_c00016{bottom:767.550022px;}
.y5_c00016{bottom:786.600022px;}
.y4_c00016{bottom:805.725022px;}
.y3_c00016{bottom:825.525022px;}
.y2_c00016{bottom:844.950022px;}
.y1_c00016{bottom:886.725022px;}
.h2_c00016{height:50.028809px;}
.h3_c00016{height:58.886719px;}
.h1_c00016{height:957.750000px;}
.h0_c00016{height:957.975000px;}
.w1_c00016{width:643.500000px;}
.w0_c00016{width:643.650000px;}
.x0_c00016{left:0.000000px;}
.x1_c00016{left:90.750000px;}
.xa_c00016{left:92.175000px;}
.x6_c00016{left:128.550000px;}
.x5_c00016{left:148.650000px;}
.x7_c00016{left:149.775000px;}
.x3_c00016{left:168.150000px;}
.x2_c00016{left:189.000000px;}
.x8_c00016{left:217.050000px;}
.x4_c00016{left:220.350000px;}
.x9_c00016{left:242.250000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls4_c00016{letter-spacing:0.000000pt;}
.ls1_c00016{letter-spacing:18.666667pt;}
.ls3_c00016{letter-spacing:20.000000pt;}
.ls0_c00016{letter-spacing:25.066667pt;}
.ls2_c00016{letter-spacing:30.933333pt;}
.ws0_c00016{word-spacing:-22.666667pt;}
.ws1_c00016{word-spacing:-13.333333pt;}
.ws2_c00016{word-spacing:0.000000pt;}
._f_c00016{margin-left:-5.333333pt;}
._21_c00016{margin-left:-3.733333pt;}
._4_c00016{margin-left:-2.389264pt;}
._7_c00016{margin-left:-1.485397pt;}
._0_c00016{width:1.170688pt;}
._1_c00016{width:2.122597pt;}
._3_c00016{width:3.631685pt;}
._6_c00016{width:4.543605pt;}
._c_c00016{width:6.173131pt;}
._2_c00016{width:15.306667pt;}
._17_c00016{width:16.469264pt;}
._9_c00016{width:18.602597pt;}
._13_c00016{width:20.525397pt;}
._11_c00016{width:23.082597pt;}
._1b_c00016{width:99.344128pt;}
._20_c00016{width:203.173819pt;}
._5_c00016{width:219.861163pt;}
._1d_c00016{width:252.989099pt;}
._d_c00016{width:269.939445pt;}
._a_c00016{width:415.642384pt;}
._16_c00016{width:417.132955pt;}
._10_c00016{width:460.285067pt;}
._1e_c00016{width:504.269232pt;}
._b_c00016{width:601.439883pt;}
._18_c00016{width:672.725077pt;}
._15_c00016{width:679.365483pt;}
._1c_c00016{width:680.559787pt;}
._8_c00016{width:738.095872pt;}
._1a_c00016{width:751.522491pt;}
._14_c00016{width:820.871851pt;}
._19_c00016{width:851.274496pt;}
._1f_c00016{width:998.191957pt;}
._e_c00016{width:1006.802432pt;}
._12_c00016{width:1014.794496pt;}
.fs0_c00016{font-size:45.333333pt;}
.fs1_c00016{font-size:53.333333pt;}
.y0_c00016{bottom:0.000000pt;}
.y28_c00016{bottom:57.266686pt;}
.y27_c00016{bottom:112.000020pt;}
.y26_c00016{bottom:129.600020pt;}
.y25_c00016{bottom:146.600020pt;}
.y24_c00016{bottom:164.200020pt;}
.y23_c00016{bottom:181.133353pt;}
.y22_c00016{bottom:198.400020pt;}
.y21_c00016{bottom:216.000020pt;}
.y20_c00016{bottom:233.000020pt;}
.y1f_c00016{bottom:250.266686pt;}
.y1e_c00016{bottom:267.533353pt;}
.y1d_c00016{bottom:284.466686pt;}
.y1c_c00016{bottom:302.066686pt;}
.y1b_c00016{bottom:319.066686pt;}
.y1a_c00016{bottom:336.333353pt;}
.y19_c00016{bottom:353.933353pt;}
.y18_c00016{bottom:370.866686pt;}
.y17_c00016{bottom:388.466686pt;}
.y16_c00016{bottom:405.800020pt;}
.y15_c00016{bottom:423.066686pt;}
.y14_c00016{bottom:440.333353pt;}
.y13_c00016{bottom:457.600020pt;}
.y12_c00016{bottom:474.866686pt;}
.y11_c00016{bottom:491.866686pt;}
.y10_c00016{bottom:509.466686pt;}
.yf_c00016{bottom:526.733353pt;}
.ye_c00016{bottom:543.666686pt;}
.yd_c00016{bottom:561.266686pt;}
.yc_c00016{bottom:578.266686pt;}
.yb_c00016{bottom:595.866686pt;}
.ya_c00016{bottom:613.133353pt;}
.y9_c00016{bottom:630.400020pt;}
.y8_c00016{bottom:647.400020pt;}
.y7_c00016{bottom:665.000020pt;}
.y6_c00016{bottom:682.266686pt;}
.y5_c00016{bottom:699.200020pt;}
.y4_c00016{bottom:716.200020pt;}
.y3_c00016{bottom:733.800020pt;}
.y2_c00016{bottom:751.066686pt;}
.y1_c00016{bottom:788.200020pt;}
.h2_c00016{height:44.470052pt;}
.h3_c00016{height:52.343750pt;}
.h1_c00016{height:851.333333pt;}
.h0_c00016{height:851.533333pt;}
.w1_c00016{width:572.000000pt;}
.w0_c00016{width:572.133333pt;}
.x0_c00016{left:0.000000pt;}
.x1_c00016{left:80.666667pt;}
.xa_c00016{left:81.933333pt;}
.x6_c00016{left:114.266667pt;}
.x5_c00016{left:132.133333pt;}
.x7_c00016{left:133.133333pt;}
.x3_c00016{left:149.466667pt;}
.x2_c00016{left:168.000000pt;}
.x8_c00016{left:192.933333pt;}
.x4_c00016{left:195.866667pt;}
.x9_c00016{left:215.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33c0926d331865a5255e120e.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00017;src:url('chunks/assets/font_ced2ff6950ed952c4ab5f193.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00017{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_c00017{vertical-align:0.000000px;}
.ls3_c00017{letter-spacing:0.000000px;}
.ls0_c00017{letter-spacing:19.800000px;}
.ls2_c00017{letter-spacing:22.500000px;}
.ls1_c00017{letter-spacing:34.800000px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00017{word-spacing:-15.000000px;}
.ws1_c00017{word-spacing:0.000000px;}
._1_c00017{margin-left:-8.730231px;}
._2a_c00017{margin-left:-6.000000px;}
._7_c00017{margin-left:-4.200000px;}
._2_c00017{margin-left:-2.178006px;}
._3_c00017{margin-left:-1.080000px;}
._0_c00017{width:1.317024px;}
._5_c00017{width:3.128928px;}
._18_c00017{width:4.886784px;}
._4_c00017{width:7.385952px;}
._10_c00017{width:20.196012px;}
._c_c00017{width:21.420000px;}
._8_c00017{width:22.578006px;}
._1f_c00017{width:23.820000px;}
._14_c00017{width:26.102976px;}
._a_c00017{width:27.636012px;}
._e_c00017{width:33.720000px;}
._6_c00017{width:86.372886px;}
._b_c00017{width:155.261664px;}
._d_c00017{width:209.129280px;}
._17_c00017{width:296.928096px;}
._1d_c00017{width:319.925952px;}
._9_c00017{width:357.071904px;}
._13_c00017{width:375.512556px;}
._1b_c00017{width:426.512736px;}
._1a_c00017{width:450.060000px;}
._22_c00017{width:497.468748px;}
._19_c00017{width:527.307084px;}
._20_c00017{width:571.199520px;}
._25_c00017{width:615.698688px;}
._16_c00017{width:667.532736px;}
._11_c00017{width:733.295712px;}
._21_c00017{width:776.234880px;}
._1c_c00017{width:787.973568px;}
._28_c00017{width:800.843808px;}
._24_c00017{width:803.391072px;}
._12_c00017{width:819.134880px;}
._26_c00017{width:868.787916px;}
._15_c00017{width:871.145952px;}
._27_c00017{width:913.106784px;}
._f_c00017{width:1002.711072px;}
._23_c00017{width:1009.100832px;}
._2b_c00017{width:1075.823808px;}
._1e_c00017{width:1105.214880px;}
._29_c00017{width:1152.323808px;}
.fc2_c00017{color:transparent;}
.fc1_c00017{color:rgb(0,0,0);}
.fc0_c00017{color:rgb(35,31,32);}
.fs0_c00017{font-size:51.000000px;}
.fs1_c00017{font-size:60.000000px;}
.y0_c00017{bottom:0.000000px;}
.y28_c00017{bottom:64.425022px;}
.y27_c00017{bottom:126.375022px;}
.y26_c00017{bottom:145.800022px;}
.y25_c00017{bottom:165.225022px;}
.y24_c00017{bottom:184.725022px;}
.y23_c00017{bottom:204.150022px;}
.y22_c00017{bottom:223.575022px;}
.y21_c00017{bottom:242.625022px;}
.y20_c00017{bottom:262.425022px;}
.y1f_c00017{bottom:281.550022px;}
.y1e_c00017{bottom:301.350022px;}
.y1d_c00017{bottom:320.025022px;}
.y1c_c00017{bottom:339.525022px;}
.y1b_c00017{bottom:359.325022px;}
.y1a_c00017{bottom:378.750022px;}
.y19_c00017{bottom:398.175022px;}
.y18_c00017{bottom:417.600022px;}
.y17_c00017{bottom:436.725022px;}
.y16_c00017{bottom:456.525022px;}
.y15_c00017{bottom:475.575022px;}
.y14_c00017{bottom:495.375022px;}
.y13_c00017{bottom:514.425022px;}
.y12_c00017{bottom:534.225022px;}
.y11_c00017{bottom:553.725022px;}
.y10_c00017{bottom:572.775022px;}
.yf_c00017{bottom:592.575022px;}
.ye_c00017{bottom:612.000022px;}
.yd_c00017{bottom:631.125022px;}
.yc_c00017{bottom:650.550022px;}
.yb_c00017{bottom:670.350022px;}
.ya_c00017{bottom:689.400022px;}
.y9_c00017{bottom:709.200022px;}
.y8_c00017{bottom:728.325022px;}
.y7_c00017{bottom:748.125022px;}
.y6_c00017{bottom:767.550022px;}
.y5_c00017{bottom:786.600022px;}
.y4_c00017{bottom:806.025022px;}
.y3_c00017{bottom:825.525022px;}
.y2_c00017{bottom:844.575022px;}
.y1_c00017{bottom:886.725022px;}
.h2_c00017{height:50.028809px;}
.h3_c00017{height:58.886719px;}
.h1_c00017{height:957.750000px;}
.h0_c00017{height:957.975000px;}
.w0_c00017{width:641.850030px;}
.w1_c00017{width:642.000000px;}
.x0_c00017{left:0.000000px;}
.x8_c00017{left:112.650000px;}
.x4_c00017{left:138.975000px;}
.x2_c00017{left:158.025000px;}
.x3_c00017{left:178.950000px;}
.x5_c00017{left:207.375000px;}
.x6_c00017{left:232.575000px;}
.x7_c00017{left:258.150000px;}
.x1_c00017{left:456.825000px;}
.x9_c00017{left:539.250000px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls3_c00017{letter-spacing:0.000000pt;}
.ls0_c00017{letter-spacing:17.600000pt;}
.ls2_c00017{letter-spacing:20.000000pt;}
.ls1_c00017{letter-spacing:30.933333pt;}
.ws0_c00017{word-spacing:-13.333333pt;}
.ws1_c00017{word-spacing:0.000000pt;}
._1_c00017{margin-left:-7.760205pt;}
._2a_c00017{margin-left:-5.333333pt;}
._7_c00017{margin-left:-3.733333pt;}
._2_c00017{margin-left:-1.936005pt;}
._3_c00017{margin-left:-0.960000pt;}
._0_c00017{width:1.170688pt;}
._5_c00017{width:2.781269pt;}
._18_c00017{width:4.343808pt;}
._4_c00017{width:6.565291pt;}
._10_c00017{width:17.952011pt;}
._c_c00017{width:19.040000pt;}
._8_c00017{width:20.069339pt;}
._1f_c00017{width:21.173333pt;}
._14_c00017{width:23.202645pt;}
._a_c00017{width:24.565344pt;}
._e_c00017{width:29.973333pt;}
._6_c00017{width:76.775899pt;}
._b_c00017{width:138.010368pt;}
._d_c00017{width:185.892693pt;}
._17_c00017{width:263.936085pt;}
._1d_c00017{width:284.378624pt;}
._9_c00017{width:317.397248pt;}
._13_c00017{width:333.788939pt;}
._1b_c00017{width:379.122432pt;}
._1a_c00017{width:400.053333pt;}
._22_c00017{width:442.194443pt;}
._19_c00017{width:468.717408pt;}
._20_c00017{width:507.732907pt;}
._25_c00017{width:547.287723pt;}
._16_c00017{width:593.362432pt;}
._11_c00017{width:651.818411pt;}
._21_c00017{width:689.986560pt;}
._1c_c00017{width:700.420949pt;}
._28_c00017{width:711.861163pt;}
._24_c00017{width:714.125397pt;}
._12_c00017{width:728.119893pt;}
._26_c00017{width:772.255925pt;}
._15_c00017{width:774.351957pt;}
._27_c00017{width:811.650475pt;}
._f_c00017{width:891.298731pt;}
._23_c00017{width:896.978517pt;}
._2b_c00017{width:956.287829pt;}
._1e_c00017{width:982.413227pt;}
._29_c00017{width:1024.287829pt;}
.fs0_c00017{font-size:45.333333pt;}
.fs1_c00017{font-size:53.333333pt;}
.y0_c00017{bottom:0.000000pt;}
.y28_c00017{bottom:57.266686pt;}
.y27_c00017{bottom:112.333353pt;}
.y26_c00017{bottom:129.600020pt;}
.y25_c00017{bottom:146.866686pt;}
.y24_c00017{bottom:164.200020pt;}
.y23_c00017{bottom:181.466686pt;}
.y22_c00017{bottom:198.733353pt;}
.y21_c00017{bottom:215.666686pt;}
.y20_c00017{bottom:233.266686pt;}
.y1f_c00017{bottom:250.266686pt;}
.y1e_c00017{bottom:267.866686pt;}
.y1d_c00017{bottom:284.466686pt;}
.y1c_c00017{bottom:301.800020pt;}
.y1b_c00017{bottom:319.400020pt;}
.y1a_c00017{bottom:336.666686pt;}
.y19_c00017{bottom:353.933353pt;}
.y18_c00017{bottom:371.200020pt;}
.y17_c00017{bottom:388.200020pt;}
.y16_c00017{bottom:405.800020pt;}
.y15_c00017{bottom:422.733353pt;}
.y14_c00017{bottom:440.333353pt;}
.y13_c00017{bottom:457.266686pt;}
.y12_c00017{bottom:474.866686pt;}
.y11_c00017{bottom:492.200020pt;}
.y10_c00017{bottom:509.133353pt;}
.yf_c00017{bottom:526.733353pt;}
.ye_c00017{bottom:544.000020pt;}
.yd_c00017{bottom:561.000020pt;}
.yc_c00017{bottom:578.266686pt;}
.yb_c00017{bottom:595.866686pt;}
.ya_c00017{bottom:612.800020pt;}
.y9_c00017{bottom:630.400020pt;}
.y8_c00017{bottom:647.400020pt;}
.y7_c00017{bottom:665.000020pt;}
.y6_c00017{bottom:682.266686pt;}
.y5_c00017{bottom:699.200020pt;}
.y4_c00017{bottom:716.466686pt;}
.y3_c00017{bottom:733.800020pt;}
.y2_c00017{bottom:750.733353pt;}
.y1_c00017{bottom:788.200020pt;}
.h2_c00017{height:44.470052pt;}
.h3_c00017{height:52.343750pt;}
.h1_c00017{height:851.333333pt;}
.h0_c00017{height:851.533333pt;}
.w0_c00017{width:570.533360pt;}
.w1_c00017{width:570.666667pt;}
.x0_c00017{left:0.000000pt;}
.x8_c00017{left:100.133333pt;}
.x4_c00017{left:123.533333pt;}
.x2_c00017{left:140.466667pt;}
.x3_c00017{left:159.066667pt;}
.x5_c00017{left:184.333333pt;}
.x6_c00017{left:206.733333pt;}
.x7_c00017{left:229.466667pt;}
.x1_c00017{left:406.066667pt;}
.x9_c00017{left:479.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_70f44543986551057a11cd8c.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00018;src:url('chunks/assets/font_026b7b085d363c1dad75018f.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00018{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_c00018{vertical-align:0.000000px;}
.ls2_c00018{letter-spacing:0.000000px;}
.ls1_c00018{letter-spacing:12.300000px;}
.ls0_c00018{letter-spacing:34.500000px;}
.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:-25.500000px;}
.ws1_c00018{word-spacing:-15.000000px;}
.ws2_c00018{word-spacing:0.000000px;}
._1f_c00018{margin-left:-14.034180px;}
._c_c00018{margin-left:-6.000000px;}
._2_c00018{margin-left:-3.900000px;}
._3_c00018{margin-left:-2.100000px;}
._12_c00018{margin-left:-1.080000px;}
._0_c00018{width:1.317024px;}
._1_c00018{width:2.387922px;}
._5_c00018{width:4.260000px;}
._10_c00018{width:5.678688px;}
._18_c00018{width:17.220000px;}
._8_c00018{width:18.900000px;}
._29_c00018{width:20.340000px;}
._4_c00018{width:22.200000px;}
._d_c00018{width:23.400000px;}
._25_c00018{width:24.540000px;}
._15_c00018{width:25.980000px;}
._f_c00018{width:27.480000px;}
._22_c00018{width:103.206036px;}
._20_c00018{width:306.431904px;}
._1e_c00018{width:314.636760px;}
._24_c00018{width:348.839694px;}
._e_c00018{width:365.354400px;}
._1d_c00018{width:439.163502px;}
._27_c00018{width:523.442496px;}
._28_c00018{width:571.328622px;}
._17_c00018{width:582.728796px;}
._a_c00018{width:592.214964px;}
._2a_c00018{width:593.312910px;}
._7_c00018{width:671.075712px;}
._26_c00018{width:675.923850px;}
._1a_c00018{width:709.292952px;}
._23_c00018{width:715.130940px;}
._1b_c00018{width:840.317856px;}
._11_c00018{width:860.783808px;}
._6_c00018{width:933.314880px;}
._b_c00018{width:973.190940px;}
._19_c00018{width:1023.788928px;}
._13_c00018{width:1086.725952px;}
._16_c00018{width:1136.397240px;}
._9_c00018{width:1152.887964px;}
._1c_c00018{width:1179.380832px;}
._21_c00018{width:1188.437856px;}
._14_c00018{width:1232.783808px;}
.fc2_c00018{color:transparent;}
.fc1_c00018{color:rgb(0,0,0);}
.fc0_c00018{color:rgb(35,31,32);}
.fs0_c00018{font-size:51.000000px;}
.fs1_c00018{font-size:60.000000px;}
.y0_c00018{bottom:0.000000px;}
.y27_c00018{bottom:64.425022px;}
.y26_c00018{bottom:118.800022px;}
.y25_c00018{bottom:137.925022px;}
.y24_c00018{bottom:157.350022px;}
.y23_c00018{bottom:177.150022px;}
.y22_c00018{bottom:196.200022px;}
.y21_c00018{bottom:216.000022px;}
.y20_c00018{bottom:235.125022px;}
.y1f_c00018{bottom:254.550022px;}
.y1e_c00018{bottom:273.975022px;}
.y1d_c00018{bottom:293.025022px;}
.y1c_c00018{bottom:312.825022px;}
.y1b_c00018{bottom:332.325022px;}
.y1a_c00018{bottom:351.375022px;}
.y19_c00018{bottom:371.175022px;}
.y18_c00018{bottom:390.600022px;}
.y17_c00018{bottom:409.725022px;}
.y16_c00018{bottom:429.525022px;}
.y15_c00018{bottom:448.575022px;}
.y14_c00018{bottom:468.375022px;}
.y13_c00018{bottom:487.425022px;}
.y12_c00018{bottom:506.925022px;}
.y11_c00018{bottom:526.350022px;}
.y10_c00018{bottom:545.775022px;}
.yf_c00018{bottom:565.200022px;}
.ye_c00018{bottom:585.000022px;}
.yd_c00018{bottom:604.425022px;}
.yc_c00018{bottom:623.925022px;}
.yb_c00018{bottom:643.350022px;}
.ya_c00018{bottom:662.775022px;}
.y9_c00018{bottom:682.200022px;}
.y8_c00018{bottom:701.625022px;}
.y7_c00018{bottom:720.750022px;}
.y6_c00018{bottom:749.550022px;}
.y5_c00018{bottom:786.600022px;}
.y4_c00018{bottom:806.025022px;}
.y3_c00018{bottom:825.150022px;}
.y2_c00018{bottom:844.950022px;}
.y1_c00018{bottom:886.725022px;}
.h2_c00018{height:50.028809px;}
.h3_c00018{height:58.886719px;}
.h1_c00018{height:957.750000px;}
.h0_c00018{height:957.975000px;}
.w1_c00018{width:643.500000px;}
.w0_c00018{width:643.650000px;}
.x0_c00018{left:0.000000px;}
.x1_c00018{left:90.750000px;}
.x9_c00018{left:92.175000px;}
.x7_c00018{left:128.550000px;}
.x4_c00018{left:133.950000px;}
.x2_c00018{left:149.025000px;}
.x3_c00018{left:167.775000px;}
.x5_c00018{left:188.250000px;}
.x6_c00018{left:189.375000px;}
.x8_c00018{left:217.050000px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls2_c00018{letter-spacing:0.000000pt;}
.ls1_c00018{letter-spacing:10.933333pt;}
.ls0_c00018{letter-spacing:30.666667pt;}
.ws0_c00018{word-spacing:-22.666667pt;}
.ws1_c00018{word-spacing:-13.333333pt;}
.ws2_c00018{word-spacing:0.000000pt;}
._1f_c00018{margin-left:-12.474827pt;}
._c_c00018{margin-left:-5.333333pt;}
._2_c00018{margin-left:-3.466667pt;}
._3_c00018{margin-left:-1.866667pt;}
._12_c00018{margin-left:-0.960000pt;}
._0_c00018{width:1.170688pt;}
._1_c00018{width:2.122597pt;}
._5_c00018{width:3.786667pt;}
._10_c00018{width:5.047723pt;}
._18_c00018{width:15.306667pt;}
._8_c00018{width:16.800000pt;}
._29_c00018{width:18.080000pt;}
._4_c00018{width:19.733333pt;}
._d_c00018{width:20.800000pt;}
._25_c00018{width:21.813333pt;}
._15_c00018{width:23.093333pt;}
._f_c00018{width:24.426667pt;}
._22_c00018{width:91.738699pt;}
._20_c00018{width:272.383915pt;}
._1e_c00018{width:279.677120pt;}
._24_c00018{width:310.079728pt;}
._e_c00018{width:324.759467pt;}
._1d_c00018{width:390.367557pt;}
._27_c00018{width:465.282219pt;}
._28_c00018{width:507.847664pt;}
._17_c00018{width:517.981152pt;}
._a_c00018{width:526.413301pt;}
._2a_c00018{width:527.389253pt;}
._7_c00018{width:596.511744pt;}
._26_c00018{width:600.821200pt;}
._1a_c00018{width:630.482624pt;}
._23_c00018{width:635.671947pt;}
._1b_c00018{width:746.949205pt;}
._11_c00018{width:765.141163pt;}
._6_c00018{width:829.613227pt;}
._b_c00018{width:865.058613pt;}
._19_c00018{width:910.034603pt;}
._13_c00018{width:965.978624pt;}
._16_c00018{width:1010.130880pt;}
._9_c00018{width:1024.789301pt;}
._1c_c00018{width:1048.338517pt;}
._21_c00018{width:1056.389205pt;}
._14_c00018{width:1095.807829pt;}
.fs0_c00018{font-size:45.333333pt;}
.fs1_c00018{font-size:53.333333pt;}
.y0_c00018{bottom:0.000000pt;}
.y27_c00018{bottom:57.266686pt;}
.y26_c00018{bottom:105.600020pt;}
.y25_c00018{bottom:122.600020pt;}
.y24_c00018{bottom:139.866686pt;}
.y23_c00018{bottom:157.466686pt;}
.y22_c00018{bottom:174.400020pt;}
.y21_c00018{bottom:192.000020pt;}
.y20_c00018{bottom:209.000020pt;}
.y1f_c00018{bottom:226.266686pt;}
.y1e_c00018{bottom:243.533353pt;}
.y1d_c00018{bottom:260.466686pt;}
.y1c_c00018{bottom:278.066686pt;}
.y1b_c00018{bottom:295.400020pt;}
.y1a_c00018{bottom:312.333353pt;}
.y19_c00018{bottom:329.933353pt;}
.y18_c00018{bottom:347.200020pt;}
.y17_c00018{bottom:364.200020pt;}
.y16_c00018{bottom:381.800020pt;}
.y15_c00018{bottom:398.733353pt;}
.y14_c00018{bottom:416.333353pt;}
.y13_c00018{bottom:433.266686pt;}
.y12_c00018{bottom:450.600020pt;}
.y11_c00018{bottom:467.866686pt;}
.y10_c00018{bottom:485.133353pt;}
.yf_c00018{bottom:502.400020pt;}
.ye_c00018{bottom:520.000020pt;}
.yd_c00018{bottom:537.266686pt;}
.yc_c00018{bottom:554.600020pt;}
.yb_c00018{bottom:571.866686pt;}
.ya_c00018{bottom:589.133353pt;}
.y9_c00018{bottom:606.400020pt;}
.y8_c00018{bottom:623.666686pt;}
.y7_c00018{bottom:640.666686pt;}
.y6_c00018{bottom:666.266686pt;}
.y5_c00018{bottom:699.200020pt;}
.y4_c00018{bottom:716.466686pt;}
.y3_c00018{bottom:733.466686pt;}
.y2_c00018{bottom:751.066686pt;}
.y1_c00018{bottom:788.200020pt;}
.h2_c00018{height:44.470052pt;}
.h3_c00018{height:52.343750pt;}
.h1_c00018{height:851.333333pt;}
.h0_c00018{height:851.533333pt;}
.w1_c00018{width:572.000000pt;}
.w0_c00018{width:572.133333pt;}
.x0_c00018{left:0.000000pt;}
.x1_c00018{left:80.666667pt;}
.x9_c00018{left:81.933333pt;}
.x7_c00018{left:114.266667pt;}
.x4_c00018{left:119.066667pt;}
.x2_c00018{left:132.466667pt;}
.x3_c00018{left:149.133333pt;}
.x5_c00018{left:167.333333pt;}
.x6_c00018{left:168.333333pt;}
.x8_c00018{left:192.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8a56f1cadff7ad769305fdbc.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00019;src:url('chunks/assets/font_98d4e23fa468545c8712f8e0.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00019{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_c00019{vertical-align:0.000000px;}
.ls0_c00019{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00019{word-spacing:0.000000px;}
._1b_c00019{margin-left:-11.945982px;}
._29_c00019{margin-left:-10.338336px;}
._1_c00019{margin-left:-8.730231px;}
._27_c00019{margin-left:-7.350210px;}
._18_c00019{margin-left:-6.338208px;}
._6_c00019{margin-left:-4.200000px;}
._2_c00019{margin-left:-2.178006px;}
._5_c00019{margin-left:-1.121994px;}
._0_c00019{width:1.317024px;}
._8_c00019{width:2.432736px;}
._b_c00019{width:3.629760px;}
._a_c00019{width:6.122976px;}
._20_c00019{width:17.220000px;}
._d_c00019{width:19.661994px;}
._12_c00019{width:21.420000px;}
._7_c00019{width:22.578006px;}
._10_c00019{width:24.096012px;}
._3_c00019{width:27.096012px;}
._1f_c00019{width:103.754880px;}
._28_c00019{width:179.400000px;}
._13_c00019{width:235.044768px;}
._1a_c00019{width:245.948928px;}
._2a_c00019{width:267.600000px;}
._16_c00019{width:350.753718px;}
._22_c00019{width:469.184790px;}
._24_c00019{width:481.728396px;}
._9_c00019{width:484.814880px;}
._11_c00019{width:503.630892px;}
._17_c00019{width:548.391552px;}
._2c_c00019{width:657.839520px;}
._4_c00019{width:681.641664px;}
._23_c00019{width:697.592256px;}
._21_c00019{width:743.631072px;}
._14_c00019{width:766.191732px;}
._e_c00019{width:781.562976px;}
._25_c00019{width:818.997654px;}
._2b_c00019{width:833.498688px;}
._f_c00019{width:865.040832px;}
._1c_c00019{width:923.405952px;}
._c_c00019{width:925.363104px;}
._1d_c00019{width:947.181312px;}
._19_c00019{width:995.538006px;}
._1e_c00019{width:1022.804640px;}
._26_c00019{width:1107.405120px;}
._15_c00019{width:1121.591904px;}
.fc1_c00019{color:transparent;}
.fc0_c00019{color:rgb(35,31,32);}
.fs0_c00019{font-size:51.000000px;}
.fs1_c00019{font-size:60.000000px;}
.y0_c00019{bottom:0.000000px;}
.y28_c00019{bottom:64.425022px;}
.y27_c00019{bottom:126.375022px;}
.y26_c00019{bottom:145.800022px;}
.y25_c00019{bottom:164.925022px;}
.y24_c00019{bottom:184.725022px;}
.y23_c00019{bottom:203.775022px;}
.y22_c00019{bottom:223.575022px;}
.y21_c00019{bottom:243.000022px;}
.y20_c00019{bottom:262.425022px;}
.y1f_c00019{bottom:281.550022px;}
.y1e_c00019{bottom:300.975022px;}
.y1d_c00019{bottom:320.025022px;}
.y1c_c00019{bottom:339.525022px;}
.y1b_c00019{bottom:358.950022px;}
.y1a_c00019{bottom:378.750022px;}
.y19_c00019{bottom:398.175022px;}
.y18_c00019{bottom:417.225022px;}
.y17_c00019{bottom:436.725022px;}
.y16_c00019{bottom:456.450022px;}
.y15_c00019{bottom:475.575022px;}
.y14_c00019{bottom:495.000022px;}
.y13_c00019{bottom:514.425022px;}
.y12_c00019{bottom:534.225022px;}
.y11_c00019{bottom:553.350022px;}
.y10_c00019{bottom:572.775022px;}
.yf_c00019{bottom:592.575022px;}
.ye_c00019{bottom:612.000022px;}
.yd_c00019{bottom:631.125022px;}
.yc_c00019{bottom:650.550022px;}
.yb_c00019{bottom:670.350022px;}
.ya_c00019{bottom:689.775022px;}
.y9_c00019{bottom:708.825022px;}
.y8_c00019{bottom:728.325022px;}
.y7_c00019{bottom:748.125022px;}
.y6_c00019{bottom:767.175022px;}
.y5_c00019{bottom:786.225022px;}
.y4_c00019{bottom:806.025022px;}
.y3_c00019{bottom:825.525022px;}
.y2_c00019{bottom:844.575022px;}
.y1_c00019{bottom:886.725022px;}
.h2_c00019{height:50.028809px;}
.h3_c00019{height:58.886719px;}
.h1_c00019{height:957.750000px;}
.h0_c00019{height:957.975000px;}
.w0_c00019{width:641.850030px;}
.w1_c00019{width:642.000000px;}
.x0_c00019{left:0.000000px;}
.x3_c00019{left:138.975000px;}
.x4_c00019{left:158.025000px;}
.x2_c00019{left:179.250000px;}
.x5_c00019{left:206.625000px;}
.x6_c00019{left:232.200000px;}
.x8_c00019{left:257.025000px;}
.x7_c00019{left:258.150000px;}
.x1_c00019{left:456.825000px;}
.x9_c00019{left:539.250000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls0_c00019{letter-spacing:0.000000pt;}
.ws0_c00019{word-spacing:-13.333333pt;}
.ws1_c00019{word-spacing:0.000000pt;}
._1b_c00019{margin-left:-10.618651pt;}
._29_c00019{margin-left:-9.189632pt;}
._1_c00019{margin-left:-7.760205pt;}
._27_c00019{margin-left:-6.533520pt;}
._18_c00019{margin-left:-5.633963pt;}
._6_c00019{margin-left:-3.733333pt;}
._2_c00019{margin-left:-1.936005pt;}
._5_c00019{margin-left:-0.997328pt;}
._0_c00019{width:1.170688pt;}
._8_c00019{width:2.162432pt;}
._b_c00019{width:3.226453pt;}
._a_c00019{width:5.442645pt;}
._20_c00019{width:15.306667pt;}
._d_c00019{width:17.477328pt;}
._12_c00019{width:19.040000pt;}
._7_c00019{width:20.069339pt;}
._10_c00019{width:21.418677pt;}
._3_c00019{width:24.085344pt;}
._1f_c00019{width:92.226560pt;}
._28_c00019{width:159.466667pt;}
._13_c00019{width:208.928683pt;}
._1a_c00019{width:218.621269pt;}
._2a_c00019{width:237.866667pt;}
._16_c00019{width:311.781083pt;}
._22_c00019{width:417.053147pt;}
._24_c00019{width:428.203019pt;}
._9_c00019{width:430.946560pt;}
._11_c00019{width:447.671904pt;}
._17_c00019{width:487.459157pt;}
._2c_c00019{width:584.746240pt;}
._4_c00019{width:605.903701pt;}
._23_c00019{width:620.082005pt;}
._21_c00019{width:661.005397pt;}
._14_c00019{width:681.059317pt;}
._e_c00019{width:694.722645pt;}
._25_c00019{width:727.997915pt;}
._2b_c00019{width:740.887723pt;}
._f_c00019{width:768.925184pt;}
._1c_c00019{width:820.805291pt;}
._c_c00019{width:822.544981pt;}
._1d_c00019{width:841.938944pt;}
._19_c00019{width:884.922672pt;}
._1e_c00019{width:909.159680pt;}
._26_c00019{width:984.360107pt;}
._15_c00019{width:996.970581pt;}
.fs0_c00019{font-size:45.333333pt;}
.fs1_c00019{font-size:53.333333pt;}
.y0_c00019{bottom:0.000000pt;}
.y28_c00019{bottom:57.266686pt;}
.y27_c00019{bottom:112.333353pt;}
.y26_c00019{bottom:129.600020pt;}
.y25_c00019{bottom:146.600020pt;}
.y24_c00019{bottom:164.200020pt;}
.y23_c00019{bottom:181.133353pt;}
.y22_c00019{bottom:198.733353pt;}
.y21_c00019{bottom:216.000020pt;}
.y20_c00019{bottom:233.266686pt;}
.y1f_c00019{bottom:250.266686pt;}
.y1e_c00019{bottom:267.533353pt;}
.y1d_c00019{bottom:284.466686pt;}
.y1c_c00019{bottom:301.800020pt;}
.y1b_c00019{bottom:319.066686pt;}
.y1a_c00019{bottom:336.666686pt;}
.y19_c00019{bottom:353.933353pt;}
.y18_c00019{bottom:370.866686pt;}
.y17_c00019{bottom:388.200020pt;}
.y16_c00019{bottom:405.733353pt;}
.y15_c00019{bottom:422.733353pt;}
.y14_c00019{bottom:440.000020pt;}
.y13_c00019{bottom:457.266686pt;}
.y12_c00019{bottom:474.866686pt;}
.y11_c00019{bottom:491.866686pt;}
.y10_c00019{bottom:509.133353pt;}
.yf_c00019{bottom:526.733353pt;}
.ye_c00019{bottom:544.000020pt;}
.yd_c00019{bottom:561.000020pt;}
.yc_c00019{bottom:578.266686pt;}
.yb_c00019{bottom:595.866686pt;}
.ya_c00019{bottom:613.133353pt;}
.y9_c00019{bottom:630.066686pt;}
.y8_c00019{bottom:647.400020pt;}
.y7_c00019{bottom:665.000020pt;}
.y6_c00019{bottom:681.933353pt;}
.y5_c00019{bottom:698.866686pt;}
.y4_c00019{bottom:716.466686pt;}
.y3_c00019{bottom:733.800020pt;}
.y2_c00019{bottom:750.733353pt;}
.y1_c00019{bottom:788.200020pt;}
.h2_c00019{height:44.470052pt;}
.h3_c00019{height:52.343750pt;}
.h1_c00019{height:851.333333pt;}
.h0_c00019{height:851.533333pt;}
.w0_c00019{width:570.533360pt;}
.w1_c00019{width:570.666667pt;}
.x0_c00019{left:0.000000pt;}
.x3_c00019{left:123.533333pt;}
.x4_c00019{left:140.466667pt;}
.x2_c00019{left:159.333333pt;}
.x5_c00019{left:183.666667pt;}
.x6_c00019{left:206.400000pt;}
.x8_c00019{left:228.466667pt;}
.x7_c00019{left:229.466667pt;}
.x1_c00019{left:406.066667pt;}
.x9_c00019{left:479.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_70f44543986551057a11cd8c.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00020;src:url('chunks/assets/font_9b337668db2837198ec5c4e4.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00020{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_c00020{vertical-align:0.000000px;}
.ls2_c00020{letter-spacing:0.000000px;}
.ls0_c00020{letter-spacing:21.000000px;}
.ls1_c00020{letter-spacing:34.800000px;}
.sc__c00020{text-shadow:none;}
.sc0_c00020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00020{-webkit-text-stroke:0px transparent;}
.sc0_c00020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00020{word-spacing:-25.500000px;}
.ws1_c00020{word-spacing:-15.000000px;}
.ws2_c00020{word-spacing:0.000000px;}
._2e_c00020{margin-left:-15.135318px;}
._7_c00020{margin-left:-6.000000px;}
._11_c00020{margin-left:-4.962144px;}
._2_c00020{margin-left:-3.900000px;}
._3_c00020{margin-left:-2.100000px;}
._d_c00020{margin-left:-1.080000px;}
._0_c00020{width:1.317024px;}
._1_c00020{width:2.387922px;}
._b_c00020{width:3.902976px;}
._20_c00020{width:5.744814px;}
._5_c00020{width:7.394880px;}
._13_c00020{width:17.220000px;}
._e_c00020{width:19.500000px;}
._1e_c00020{width:20.880000px;}
._8_c00020{width:21.900000px;}
._a_c00020{width:23.280000px;}
._10_c00020{width:24.540000px;}
._28_c00020{width:25.980000px;}
._16_c00020{width:27.480000px;}
._25_c00020{width:36.302976px;}
._1b_c00020{width:38.820000px;}
._19_c00020{width:46.440000px;}
._23_c00020{width:48.600000px;}
._2f_c00020{width:115.568928px;}
._1f_c00020{width:139.322496px;}
._2a_c00020{width:207.131772px;}
._18_c00020{width:234.005994px;}
._f_c00020{width:356.993784px;}
._2b_c00020{width:454.931904px;}
._2c_c00020{width:503.280084px;}
._9_c00020{width:528.923850px;}
._21_c00020{width:531.173916px;}
._1d_c00020{width:544.781664px;}
._12_c00020{width:656.690592px;}
._14_c00020{width:664.292736px;}
._1a_c00020{width:742.245162px;}
._29_c00020{width:781.328796px;}
._2d_c00020{width:784.955712px;}
._22_c00020{width:814.274880px;}
._24_c00020{width:901.260000px;}
._c_c00020{width:906.410592px;}
._26_c00020{width:925.475712px;}
._4_c00020{width:1005.950766px;}
._27_c00020{width:1023.350766px;}
._17_c00020{width:1041.240000px;}
._15_c00020{width:1060.229934px;}
._1c_c00020{width:1097.588928px;}
._6_c00020{width:1197.660042px;}
.fc2_c00020{color:transparent;}
.fc1_c00020{color:rgb(0,0,0);}
.fc0_c00020{color:rgb(35,31,32);}
.fs0_c00020{font-size:51.000000px;}
.fs1_c00020{font-size:60.000000px;}
.y0_c00020{bottom:0.000000px;}
.y26_c00020{bottom:64.425022px;}
.y25_c00020{bottom:164.925022px;}
.y24_c00020{bottom:184.725022px;}
.y23_c00020{bottom:203.775022px;}
.y22_c00020{bottom:223.200022px;}
.y21_c00020{bottom:242.625022px;}
.y20_c00020{bottom:262.125022px;}
.y1f_c00020{bottom:281.925022px;}
.y1e_c00020{bottom:301.350022px;}
.y1d_c00020{bottom:320.400022px;}
.y1c_c00020{bottom:339.525022px;}
.y1b_c00020{bottom:358.950022px;}
.y1a_c00020{bottom:378.375022px;}
.y19_c00020{bottom:398.175022px;}
.y18_c00020{bottom:417.600022px;}
.y17_c00020{bottom:436.725022px;}
.y16_c00020{bottom:456.150022px;}
.y15_c00020{bottom:475.950022px;}
.y14_c00020{bottom:495.000022px;}
.y13_c00020{bottom:514.425022px;}
.y12_c00020{bottom:533.925022px;}
.y11_c00020{bottom:553.350022px;}
.y10_c00020{bottom:572.775022px;}
.yf_c00020{bottom:592.200022px;}
.ye_c00020{bottom:612.000022px;}
.yd_c00020{bottom:631.125022px;}
.yc_c00020{bottom:650.550022px;}
.yb_c00020{bottom:669.975022px;}
.ya_c00020{bottom:689.400022px;}
.y9_c00020{bottom:708.825022px;}
.y8_c00020{bottom:728.625022px;}
.y7_c00020{bottom:747.750022px;}
.y6_c00020{bottom:767.175022px;}
.y5_c00020{bottom:786.600022px;}
.y4_c00020{bottom:806.025022px;}
.y3_c00020{bottom:825.525022px;}
.y2_c00020{bottom:844.950022px;}
.y1_c00020{bottom:886.725022px;}
.h2_c00020{height:50.028809px;}
.h3_c00020{height:58.886719px;}
.h1_c00020{height:957.750000px;}
.h0_c00020{height:957.975000px;}
.w1_c00020{width:643.500000px;}
.w0_c00020{width:643.650000px;}
.x0_c00020{left:0.000000px;}
.x1_c00020{left:90.750000px;}
.x3_c00020{left:122.775000px;}
.x2_c00020{left:149.025000px;}
.x4_c00020{left:168.150000px;}
.x5_c00020{left:189.000000px;}
.xa_c00020{left:216.000000px;}
.x6_c00020{left:217.050000px;}
.x7_c00020{left:241.575000px;}
.x8_c00020{left:243.000000px;}
.x9_c00020{left:266.775000px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls2_c00020{letter-spacing:0.000000pt;}
.ls0_c00020{letter-spacing:18.666667pt;}
.ls1_c00020{letter-spacing:30.933333pt;}
.ws0_c00020{word-spacing:-22.666667pt;}
.ws1_c00020{word-spacing:-13.333333pt;}
.ws2_c00020{word-spacing:0.000000pt;}
._2e_c00020{margin-left:-13.453616pt;}
._7_c00020{margin-left:-5.333333pt;}
._11_c00020{margin-left:-4.410795pt;}
._2_c00020{margin-left:-3.466667pt;}
._3_c00020{margin-left:-1.866667pt;}
._d_c00020{margin-left:-0.960000pt;}
._0_c00020{width:1.170688pt;}
._1_c00020{width:2.122597pt;}
._b_c00020{width:3.469312pt;}
._20_c00020{width:5.106501pt;}
._5_c00020{width:6.573227pt;}
._13_c00020{width:15.306667pt;}
._e_c00020{width:17.333333pt;}
._1e_c00020{width:18.560000pt;}
._8_c00020{width:19.466667pt;}
._a_c00020{width:20.693333pt;}
._10_c00020{width:21.813333pt;}
._28_c00020{width:23.093333pt;}
._16_c00020{width:24.426667pt;}
._25_c00020{width:32.269312pt;}
._1b_c00020{width:34.506667pt;}
._19_c00020{width:41.280000pt;}
._23_c00020{width:43.200000pt;}
._2f_c00020{width:102.727936pt;}
._1f_c00020{width:123.842219pt;}
._2a_c00020{width:184.117131pt;}
._18_c00020{width:208.005328pt;}
._f_c00020{width:317.327808pt;}
._2b_c00020{width:404.383915pt;}
._2c_c00020{width:447.360075pt;}
._9_c00020{width:470.154533pt;}
._21_c00020{width:472.154592pt;}
._1d_c00020{width:484.250368pt;}
._12_c00020{width:583.724971pt;}
._14_c00020{width:590.482432pt;}
._1a_c00020{width:659.773477pt;}
._29_c00020{width:694.514485pt;}
._2d_c00020{width:697.738411pt;}
._22_c00020{width:723.799893pt;}
._24_c00020{width:801.120000pt;}
._c_c00020{width:805.698304pt;}
._26_c00020{width:822.645077pt;}
._4_c00020{width:894.178459pt;}
._27_c00020{width:909.645125pt;}
._17_c00020{width:925.546667pt;}
._15_c00020{width:942.426608pt;}
._1c_c00020{width:975.634603pt;}
._6_c00020{width:1064.586704pt;}
.fs0_c00020{font-size:45.333333pt;}
.fs1_c00020{font-size:53.333333pt;}
.y0_c00020{bottom:0.000000pt;}
.y26_c00020{bottom:57.266686pt;}
.y25_c00020{bottom:146.600020pt;}
.y24_c00020{bottom:164.200020pt;}
.y23_c00020{bottom:181.133353pt;}
.y22_c00020{bottom:198.400020pt;}
.y21_c00020{bottom:215.666686pt;}
.y20_c00020{bottom:233.000020pt;}
.y1f_c00020{bottom:250.600020pt;}
.y1e_c00020{bottom:267.866686pt;}
.y1d_c00020{bottom:284.800020pt;}
.y1c_c00020{bottom:301.800020pt;}
.y1b_c00020{bottom:319.066686pt;}
.y1a_c00020{bottom:336.333353pt;}
.y19_c00020{bottom:353.933353pt;}
.y18_c00020{bottom:371.200020pt;}
.y17_c00020{bottom:388.200020pt;}
.y16_c00020{bottom:405.466686pt;}
.y15_c00020{bottom:423.066686pt;}
.y14_c00020{bottom:440.000020pt;}
.y13_c00020{bottom:457.266686pt;}
.y12_c00020{bottom:474.600020pt;}
.y11_c00020{bottom:491.866686pt;}
.y10_c00020{bottom:509.133353pt;}
.yf_c00020{bottom:526.400020pt;}
.ye_c00020{bottom:544.000020pt;}
.yd_c00020{bottom:561.000020pt;}
.yc_c00020{bottom:578.266686pt;}
.yb_c00020{bottom:595.533353pt;}
.ya_c00020{bottom:612.800020pt;}
.y9_c00020{bottom:630.066686pt;}
.y8_c00020{bottom:647.666686pt;}
.y7_c00020{bottom:664.666686pt;}
.y6_c00020{bottom:681.933353pt;}
.y5_c00020{bottom:699.200020pt;}
.y4_c00020{bottom:716.466686pt;}
.y3_c00020{bottom:733.800020pt;}
.y2_c00020{bottom:751.066686pt;}
.y1_c00020{bottom:788.200020pt;}
.h2_c00020{height:44.470052pt;}
.h3_c00020{height:52.343750pt;}
.h1_c00020{height:851.333333pt;}
.h0_c00020{height:851.533333pt;}
.w1_c00020{width:572.000000pt;}
.w0_c00020{width:572.133333pt;}
.x0_c00020{left:0.000000pt;}
.x1_c00020{left:80.666667pt;}
.x3_c00020{left:109.133333pt;}
.x2_c00020{left:132.466667pt;}
.x4_c00020{left:149.466667pt;}
.x5_c00020{left:168.000000pt;}
.xa_c00020{left:192.000000pt;}
.x6_c00020{left:192.933333pt;}
.x7_c00020{left:214.733333pt;}
.x8_c00020{left:216.000000pt;}
.x9_c00020{left:237.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61779ef0125e6c0f97092f71.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00021;src:url('chunks/assets/font_85d4c0338e8ebe01ed366c2e.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00021{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_c00021{vertical-align:0.000000px;}
.ls1_c00021{letter-spacing:0.000000px;}
.ls0_c00021{letter-spacing:34.800000px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00021{word-spacing:-15.000000px;}
.ws1_c00021{word-spacing:0.000000px;}
._1_c00021{margin-left:-8.730231px;}
._b_c00021{margin-left:-7.383306px;}
._16_c00021{margin-left:-6.000000px;}
._3_c00021{margin-left:-3.300000px;}
._2_c00021{margin-left:-2.178006px;}
._7_c00021{margin-left:-1.121994px;}
._0_c00021{width:1.317024px;}
._5_c00021{width:2.948928px;}
._f_c00021{width:3.978006px;}
._e_c00021{width:5.400000px;}
._d_c00021{width:7.010922px;}
._26_c00021{width:12.902976px;}
._17_c00021{width:18.300000px;}
._1a_c00021{width:19.920000px;}
._4_c00021{width:21.678006px;}
._a_c00021{width:23.861994px;}
._19_c00021{width:26.136012px;}
._8_c00021{width:27.636012px;}
._12_c00021{width:28.758006px;}
._18_c00021{width:177.209760px;}
._1f_c00021{width:237.347616px;}
._1c_c00021{width:287.798838px;}
._c_c00021{width:321.900000px;}
._22_c00021{width:326.639520px;}
._1b_c00021{width:366.284940px;}
._21_c00021{width:464.510592px;}
._27_c00021{width:490.892766px;}
._24_c00021{width:503.393868px;}
._25_c00021{width:585.059520px;}
._20_c00021{width:647.276544px;}
._13_c00021{width:657.299520px;}
._15_c00021{width:862.421664px;}
._11_c00021{width:864.989760px;}
._6_c00021{width:890.069760px;}
._1e_c00021{width:894.671904px;}
._14_c00021{width:1007.828778px;}
._23_c00021{width:1016.925120px;}
._1d_c00021{width:1055.129760px;}
._10_c00021{width:1060.686243px;}
._9_c00021{width:1106.663808px;}
.fc2_c00021{color:transparent;}
.fc1_c00021{color:rgb(0,0,0);}
.fc0_c00021{color:rgb(35,31,32);}
.fs0_c00021{font-size:51.000000px;}
.fs1_c00021{font-size:60.000000px;}
.y0_c00021{bottom:0.000000px;}
.y27_c00021{bottom:64.800022px;}
.y26_c00021{bottom:145.425022px;}
.y25_c00021{bottom:165.225022px;}
.y24_c00021{bottom:184.350022px;}
.y23_c00021{bottom:203.775022px;}
.y22_c00021{bottom:223.200022px;}
.y21_c00021{bottom:243.000022px;}
.y20_c00021{bottom:262.425022px;}
.y1f_c00021{bottom:281.925022px;}
.y1e_c00021{bottom:301.350022px;}
.y1d_c00021{bottom:320.400022px;}
.y1c_c00021{bottom:339.525022px;}
.y1b_c00021{bottom:358.950022px;}
.y1a_c00021{bottom:378.750022px;}
.y19_c00021{bottom:398.175022px;}
.y18_c00021{bottom:417.225022px;}
.y17_c00021{bottom:436.725022px;}
.y16_c00021{bottom:456.525022px;}
.y15_c00021{bottom:475.950022px;}
.y14_c00021{bottom:495.375022px;}
.y13_c00021{bottom:514.800022px;}
.y12_c00021{bottom:534.225022px;}
.y11_c00021{bottom:553.725022px;}
.y10_c00021{bottom:573.150022px;}
.yf_c00021{bottom:592.200022px;}
.ye_c00021{bottom:611.625022px;}
.yd_c00021{bottom:631.125022px;}
.yc_c00021{bottom:650.550022px;}
.yb_c00021{bottom:670.350022px;}
.ya_c00021{bottom:689.775022px;}
.y9_c00021{bottom:709.200022px;}
.y8_c00021{bottom:728.625022px;}
.y7_c00021{bottom:747.750022px;}
.y6_c00021{bottom:767.550022px;}
.y5_c00021{bottom:786.600022px;}
.y4_c00021{bottom:806.025022px;}
.y3_c00021{bottom:825.525022px;}
.y2_c00021{bottom:844.950022px;}
.y1_c00021{bottom:886.725022px;}
.h2_c00021{height:50.028809px;}
.h3_c00021{height:58.886719px;}
.h1_c00021{height:957.750000px;}
.h0_c00021{height:957.975000px;}
.w0_c00021{width:641.850030px;}
.w1_c00021{width:642.000000px;}
.x0_c00021{left:0.000000px;}
.x7_c00021{left:115.575000px;}
.x2_c00021{left:138.600000px;}
.x8_c00021{left:139.650000px;}
.x3_c00021{left:158.025000px;}
.x6_c00021{left:178.200000px;}
.x4_c00021{left:179.250000px;}
.x5_c00021{left:206.250000px;}
.x1_c00021{left:456.825000px;}
.x9_c00021{left:538.575000px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls1_c00021{letter-spacing:0.000000pt;}
.ls0_c00021{letter-spacing:30.933333pt;}
.ws0_c00021{word-spacing:-13.333333pt;}
.ws1_c00021{word-spacing:0.000000pt;}
._1_c00021{margin-left:-7.760205pt;}
._b_c00021{margin-left:-6.562939pt;}
._16_c00021{margin-left:-5.333333pt;}
._3_c00021{margin-left:-2.933333pt;}
._2_c00021{margin-left:-1.936005pt;}
._7_c00021{margin-left:-0.997328pt;}
._0_c00021{width:1.170688pt;}
._5_c00021{width:2.621269pt;}
._f_c00021{width:3.536005pt;}
._e_c00021{width:4.800000pt;}
._d_c00021{width:6.231931pt;}
._26_c00021{width:11.469312pt;}
._17_c00021{width:16.266667pt;}
._1a_c00021{width:17.706667pt;}
._4_c00021{width:19.269339pt;}
._a_c00021{width:21.210661pt;}
._19_c00021{width:23.232011pt;}
._8_c00021{width:24.565344pt;}
._12_c00021{width:25.562672pt;}
._18_c00021{width:157.519787pt;}
._1f_c00021{width:210.975659pt;}
._1c_c00021{width:255.821189pt;}
._c_c00021{width:286.133333pt;}
._22_c00021{width:290.346240pt;}
._1b_c00021{width:325.586613pt;}
._21_c00021{width:412.898304pt;}
._27_c00021{width:436.349125pt;}
._24_c00021{width:447.461216pt;}
._25_c00021{width:520.052907pt;}
._20_c00021{width:575.356928pt;}
._13_c00021{width:584.266240pt;}
._15_c00021{width:766.597035pt;}
._11_c00021{width:768.879787pt;}
._6_c00021{width:791.173120pt;}
._1e_c00021{width:795.263915pt;}
._14_c00021{width:895.847803pt;}
._23_c00021{width:903.933440pt;}
._1d_c00021{width:937.893120pt;}
._10_c00021{width:942.832216pt;}
._9_c00021{width:983.701163pt;}
.fs0_c00021{font-size:45.333333pt;}
.fs1_c00021{font-size:53.333333pt;}
.y0_c00021{bottom:0.000000pt;}
.y27_c00021{bottom:57.600020pt;}
.y26_c00021{bottom:129.266686pt;}
.y25_c00021{bottom:146.866686pt;}
.y24_c00021{bottom:163.866686pt;}
.y23_c00021{bottom:181.133353pt;}
.y22_c00021{bottom:198.400020pt;}
.y21_c00021{bottom:216.000020pt;}
.y20_c00021{bottom:233.266686pt;}
.y1f_c00021{bottom:250.600020pt;}
.y1e_c00021{bottom:267.866686pt;}
.y1d_c00021{bottom:284.800020pt;}
.y1c_c00021{bottom:301.800020pt;}
.y1b_c00021{bottom:319.066686pt;}
.y1a_c00021{bottom:336.666686pt;}
.y19_c00021{bottom:353.933353pt;}
.y18_c00021{bottom:370.866686pt;}
.y17_c00021{bottom:388.200020pt;}
.y16_c00021{bottom:405.800020pt;}
.y15_c00021{bottom:423.066686pt;}
.y14_c00021{bottom:440.333353pt;}
.y13_c00021{bottom:457.600020pt;}
.y12_c00021{bottom:474.866686pt;}
.y11_c00021{bottom:492.200020pt;}
.y10_c00021{bottom:509.466686pt;}
.yf_c00021{bottom:526.400020pt;}
.ye_c00021{bottom:543.666686pt;}
.yd_c00021{bottom:561.000020pt;}
.yc_c00021{bottom:578.266686pt;}
.yb_c00021{bottom:595.866686pt;}
.ya_c00021{bottom:613.133353pt;}
.y9_c00021{bottom:630.400020pt;}
.y8_c00021{bottom:647.666686pt;}
.y7_c00021{bottom:664.666686pt;}
.y6_c00021{bottom:682.266686pt;}
.y5_c00021{bottom:699.200020pt;}
.y4_c00021{bottom:716.466686pt;}
.y3_c00021{bottom:733.800020pt;}
.y2_c00021{bottom:751.066686pt;}
.y1_c00021{bottom:788.200020pt;}
.h2_c00021{height:44.470052pt;}
.h3_c00021{height:52.343750pt;}
.h1_c00021{height:851.333333pt;}
.h0_c00021{height:851.533333pt;}
.w0_c00021{width:570.533360pt;}
.w1_c00021{width:570.666667pt;}
.x0_c00021{left:0.000000pt;}
.x7_c00021{left:102.733333pt;}
.x2_c00021{left:123.200000pt;}
.x8_c00021{left:124.133333pt;}
.x3_c00021{left:140.466667pt;}
.x6_c00021{left:158.400000pt;}
.x4_c00021{left:159.333333pt;}
.x5_c00021{left:183.333333pt;}
.x1_c00021{left:406.066667pt;}
.x9_c00021{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7ba7e0ad49dbee8e5089f00b.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00022;src:url('chunks/assets/font_cd09e1a2f816d20a4e2183bd.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00022{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_c00022{vertical-align:0.000000px;}
.ls2_c00022{letter-spacing:0.000000px;}
.ls0_c00022{letter-spacing:22.500000px;}
.ls1_c00022{letter-spacing:38.100000px;}
.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;}
}
.ws1_c00022{word-spacing:-30.000000px;}
.ws0_c00022{word-spacing:-25.500000px;}
.ws2_c00022{word-spacing:-15.000000px;}
.ws3_c00022{word-spacing:0.000000px;}
._10_c00022{margin-left:-6.360000px;}
._6_c00022{margin-left:-3.060000px;}
._2_c00022{margin-left:-1.740000px;}
._0_c00022{width:1.317024px;}
._1_c00022{width:2.387922px;}
._4_c00022{width:4.304988px;}
._11_c00022{width:5.919036px;}
._5_c00022{width:7.320000px;}
._13_c00022{width:13.800000px;}
._1b_c00022{width:16.020000px;}
._e_c00022{width:18.960000px;}
._a_c00022{width:21.660000px;}
._15_c00022{width:22.920000px;}
._19_c00022{width:24.720000px;}
._3_c00022{width:25.920000px;}
._c_c00022{width:28.080000px;}
._21_c00022{width:69.158598px;}
._23_c00022{width:111.455580px;}
._1d_c00022{width:113.291730px;}
._22_c00022{width:118.980000px;}
._24_c00022{width:135.093084px;}
._16_c00022{width:167.708316px;}
._26_c00022{width:234.666126px;}
._17_c00022{width:236.030460px;}
._1c_c00022{width:312.465030px;}
._1e_c00022{width:522.320700px;}
._18_c00022{width:566.984814px;}
._d_c00022{width:830.360874px;}
._14_c00022{width:855.860874px;}
._9_c00022{width:858.782844px;}
._b_c00022{width:871.313742px;}
._1a_c00022{width:884.432736px;}
._8_c00022{width:892.559520px;}
._f_c00022{width:981.792294px;}
._7_c00022{width:1156.020000px;}
._25_c00022{width:1161.347964px;}
._20_c00022{width:1172.891904px;}
._1f_c00022{width:1178.969760px;}
._12_c00022{width:1210.172736px;}
.fc2_c00022{color:transparent;}
.fc1_c00022{color:rgb(0,0,0);}
.fc0_c00022{color:rgb(35,31,32);}
.fs0_c00022{font-size:51.000000px;}
.fs1_c00022{font-size:60.000000px;}
.y0_c00022{bottom:0.000000px;}
.y26_c00022{bottom:64.800022px;}
.y25_c00022{bottom:137.925022px;}
.y24_c00022{bottom:157.350022px;}
.y23_c00022{bottom:177.150022px;}
.y22_c00022{bottom:196.200022px;}
.y21_c00022{bottom:215.625022px;}
.y20_c00022{bottom:235.425022px;}
.y1f_c00022{bottom:254.925022px;}
.y1e_c00022{bottom:274.350022px;}
.y1d_c00022{bottom:293.400022px;}
.y1c_c00022{bottom:312.825022px;}
.y1b_c00022{bottom:332.325022px;}
.y1a_c00022{bottom:351.375022px;}
.y19_c00022{bottom:371.175022px;}
.y18_c00022{bottom:390.600022px;}
.y17_c00022{bottom:409.725022px;}
.y16_c00022{bottom:429.525022px;}
.y15_c00022{bottom:448.950022px;}
.y14_c00022{bottom:468.375022px;}
.y13_c00022{bottom:487.425022px;}
.y12_c00022{bottom:506.925022px;}
.y11_c00022{bottom:535.350022px;}
.y10_c00022{bottom:554.775022px;}
.yf_c00022{bottom:592.200022px;}
.ye_c00022{bottom:612.000022px;}
.yd_c00022{bottom:631.425022px;}
.yc_c00022{bottom:650.925022px;}
.yb_c00022{bottom:670.350022px;}
.ya_c00022{bottom:689.775022px;}
.y9_c00022{bottom:709.200022px;}
.y8_c00022{bottom:728.625022px;}
.y7_c00022{bottom:748.125022px;}
.y6_c00022{bottom:767.550022px;}
.y5_c00022{bottom:786.600022px;}
.y4_c00022{bottom:806.025022px;}
.y3_c00022{bottom:825.150022px;}
.y2_c00022{bottom:844.575022px;}
.y1_c00022{bottom:886.725022px;}
.h2_c00022{height:50.028809px;}
.h3_c00022{height:58.886719px;}
.h1_c00022{height:957.750000px;}
.h0_c00022{height:957.975000px;}
.w1_c00022{width:643.500000px;}
.w0_c00022{width:643.650000px;}
.x0_c00022{left:0.000000px;}
.x1_c00022{left:90.750000px;}
.x7_c00022{left:117.000000px;}
.x9_c00022{left:128.550000px;}
.x8_c00022{left:133.950000px;}
.x4_c00022{left:149.025000px;}
.x5_c00022{left:168.150000px;}
.x6_c00022{left:188.250000px;}
.x2_c00022{left:189.375000px;}
.x3_c00022{left:217.050000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls2_c00022{letter-spacing:0.000000pt;}
.ls0_c00022{letter-spacing:20.000000pt;}
.ls1_c00022{letter-spacing:33.866667pt;}
.ws1_c00022{word-spacing:-26.666667pt;}
.ws0_c00022{word-spacing:-22.666667pt;}
.ws2_c00022{word-spacing:-13.333333pt;}
.ws3_c00022{word-spacing:0.000000pt;}
._10_c00022{margin-left:-5.653333pt;}
._6_c00022{margin-left:-2.720000pt;}
._2_c00022{margin-left:-1.546667pt;}
._0_c00022{width:1.170688pt;}
._1_c00022{width:2.122597pt;}
._4_c00022{width:3.826656pt;}
._11_c00022{width:5.261365pt;}
._5_c00022{width:6.506667pt;}
._13_c00022{width:12.266667pt;}
._1b_c00022{width:14.240000pt;}
._e_c00022{width:16.853333pt;}
._a_c00022{width:19.253333pt;}
._15_c00022{width:20.373333pt;}
._19_c00022{width:21.973333pt;}
._3_c00022{width:23.040000pt;}
._c_c00022{width:24.960000pt;}
._21_c00022{width:61.474309pt;}
._23_c00022{width:99.071627pt;}
._1d_c00022{width:100.703760pt;}
._22_c00022{width:105.760000pt;}
._24_c00022{width:120.082741pt;}
._16_c00022{width:149.074059pt;}
._26_c00022{width:208.592112pt;}
._17_c00022{width:209.804853pt;}
._1c_c00022{width:277.746693pt;}
._1e_c00022{width:464.285067pt;}
._18_c00022{width:503.986501pt;}
._d_c00022{width:738.098555pt;}
._14_c00022{width:760.765221pt;}
._9_c00022{width:763.362528pt;}
._b_c00022{width:774.501104pt;}
._1a_c00022{width:786.162432pt;}
._8_c00022{width:793.386240pt;}
._f_c00022{width:872.704261pt;}
._7_c00022{width:1027.573333pt;}
._25_c00022{width:1032.309301pt;}
._20_c00022{width:1042.570581pt;}
._1f_c00022{width:1047.973120pt;}
._12_c00022{width:1075.709099pt;}
.fs0_c00022{font-size:45.333333pt;}
.fs1_c00022{font-size:53.333333pt;}
.y0_c00022{bottom:0.000000pt;}
.y26_c00022{bottom:57.600020pt;}
.y25_c00022{bottom:122.600020pt;}
.y24_c00022{bottom:139.866686pt;}
.y23_c00022{bottom:157.466686pt;}
.y22_c00022{bottom:174.400020pt;}
.y21_c00022{bottom:191.666686pt;}
.y20_c00022{bottom:209.266686pt;}
.y1f_c00022{bottom:226.600020pt;}
.y1e_c00022{bottom:243.866686pt;}
.y1d_c00022{bottom:260.800020pt;}
.y1c_c00022{bottom:278.066686pt;}
.y1b_c00022{bottom:295.400020pt;}
.y1a_c00022{bottom:312.333353pt;}
.y19_c00022{bottom:329.933353pt;}
.y18_c00022{bottom:347.200020pt;}
.y17_c00022{bottom:364.200020pt;}
.y16_c00022{bottom:381.800020pt;}
.y15_c00022{bottom:399.066686pt;}
.y14_c00022{bottom:416.333353pt;}
.y13_c00022{bottom:433.266686pt;}
.y12_c00022{bottom:450.600020pt;}
.y11_c00022{bottom:475.866686pt;}
.y10_c00022{bottom:493.133353pt;}
.yf_c00022{bottom:526.400020pt;}
.ye_c00022{bottom:544.000020pt;}
.yd_c00022{bottom:561.266686pt;}
.yc_c00022{bottom:578.600020pt;}
.yb_c00022{bottom:595.866686pt;}
.ya_c00022{bottom:613.133353pt;}
.y9_c00022{bottom:630.400020pt;}
.y8_c00022{bottom:647.666686pt;}
.y7_c00022{bottom:665.000020pt;}
.y6_c00022{bottom:682.266686pt;}
.y5_c00022{bottom:699.200020pt;}
.y4_c00022{bottom:716.466686pt;}
.y3_c00022{bottom:733.466686pt;}
.y2_c00022{bottom:750.733353pt;}
.y1_c00022{bottom:788.200020pt;}
.h2_c00022{height:44.470052pt;}
.h3_c00022{height:52.343750pt;}
.h1_c00022{height:851.333333pt;}
.h0_c00022{height:851.533333pt;}
.w1_c00022{width:572.000000pt;}
.w0_c00022{width:572.133333pt;}
.x0_c00022{left:0.000000pt;}
.x1_c00022{left:80.666667pt;}
.x7_c00022{left:104.000000pt;}
.x9_c00022{left:114.266667pt;}
.x8_c00022{left:119.066667pt;}
.x4_c00022{left:132.466667pt;}
.x5_c00022{left:149.466667pt;}
.x6_c00022{left:167.333333pt;}
.x2_c00022{left:168.333333pt;}
.x3_c00022{left:192.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_61779ef0125e6c0f97092f71.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00023;src:url('chunks/assets/font_e9d94e250af41f7ed5d50b14.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00023{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_c00023{vertical-align:0.000000px;}
.ls2_c00023{letter-spacing:0.000000px;}
.ls1_c00023{letter-spacing:13.800000px;}
.ls0_c00023{letter-spacing:34.800000px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00023{word-spacing:-15.000000px;}
.ws1_c00023{word-spacing:0.000000px;}
._1_c00023{margin-left:-8.730231px;}
._3_c00023{margin-left:-3.300000px;}
._2_c00023{margin-left:-2.178006px;}
._a_c00023{margin-left:-1.121994px;}
._0_c00023{width:1.317024px;}
._5_c00023{width:2.465952px;}
._4_c00023{width:20.478006px;}
._b_c00023{width:1024.271904px;}
._6_c00023{width:1073.297856px;}
._9_c00023{width:1172.324790px;}
._7_c00023{width:1203.626784px;}
._8_c00023{width:1336.172886px;}
.fc2_c00023{color:transparent;}
.fc1_c00023{color:rgb(0,0,0);}
.fc0_c00023{color:rgb(35,31,32);}
.fs0_c00023{font-size:51.000000px;}
.fs1_c00023{font-size:60.000000px;}
.y0_c00023{bottom:0.000000px;}
.y8_c00023{bottom:64.425022px;}
.y7_c00023{bottom:720.750022px;}
.y6_c00023{bottom:740.550022px;}
.y5_c00023{bottom:759.600022px;}
.y4_c00023{bottom:787.725022px;}
.y3_c00023{bottom:825.525022px;}
.y2_c00023{bottom:844.575022px;}
.y1_c00023{bottom:886.725022px;}
.h2_c00023{height:50.028809px;}
.h3_c00023{height:58.886719px;}
.h1_c00023{height:957.750000px;}
.h0_c00023{height:957.975000px;}
.w0_c00023{width:641.850030px;}
.w1_c00023{width:642.000000px;}
.x0_c00023{left:0.000000px;}
.x4_c00023{left:81.375000px;}
.x7_c00023{left:112.650000px;}
.x6_c00023{left:118.425000px;}
.x5_c00023{left:124.200000px;}
.x2_c00023{left:138.600000px;}
.x3_c00023{left:156.975000px;}
.x1_c00023{left:456.825000px;}
.x8_c00023{left:538.575000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls2_c00023{letter-spacing:0.000000pt;}
.ls1_c00023{letter-spacing:12.266667pt;}
.ls0_c00023{letter-spacing:30.933333pt;}
.ws0_c00023{word-spacing:-13.333333pt;}
.ws1_c00023{word-spacing:0.000000pt;}
._1_c00023{margin-left:-7.760205pt;}
._3_c00023{margin-left:-2.933333pt;}
._2_c00023{margin-left:-1.936005pt;}
._a_c00023{margin-left:-0.997328pt;}
._0_c00023{width:1.170688pt;}
._5_c00023{width:2.191957pt;}
._4_c00023{width:18.202672pt;}
._b_c00023{width:910.463915pt;}
._6_c00023{width:954.042539pt;}
._9_c00023{width:1042.066480pt;}
._7_c00023{width:1069.890475pt;}
._8_c00023{width:1187.709232pt;}
.fs0_c00023{font-size:45.333333pt;}
.fs1_c00023{font-size:53.333333pt;}
.y0_c00023{bottom:0.000000pt;}
.y8_c00023{bottom:57.266686pt;}
.y7_c00023{bottom:640.666686pt;}
.y6_c00023{bottom:658.266686pt;}
.y5_c00023{bottom:675.200020pt;}
.y4_c00023{bottom:700.200020pt;}
.y3_c00023{bottom:733.800020pt;}
.y2_c00023{bottom:750.733353pt;}
.y1_c00023{bottom:788.200020pt;}
.h2_c00023{height:44.470052pt;}
.h3_c00023{height:52.343750pt;}
.h1_c00023{height:851.333333pt;}
.h0_c00023{height:851.533333pt;}
.w0_c00023{width:570.533360pt;}
.w1_c00023{width:570.666667pt;}
.x0_c00023{left:0.000000pt;}
.x4_c00023{left:72.333333pt;}
.x7_c00023{left:100.133333pt;}
.x6_c00023{left:105.266667pt;}
.x5_c00023{left:110.400000pt;}
.x2_c00023{left:123.200000pt;}
.x3_c00023{left:139.533333pt;}
.x1_c00023{left:406.066667pt;}
.x8_c00023{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
.sc__c00024{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00024{-webkit-text-stroke:0px transparent;}
}
.y0_c00024{bottom:0.000000px;}
.h1_c00024{height:957.750000px;}
.h0_c00024{height:957.975000px;}
.w1_c00024{width:643.500000px;}
.w0_c00024{width:643.650000px;}
.x0_c00024{left:0.000000px;}
@media print{
.y0_c00024{bottom:0.000000pt;}
.h1_c00024{height:851.333333pt;}
.h0_c00024{height:851.533333pt;}
.w1_c00024{width:572.000000pt;}
.w0_c00024{width:572.133333pt;}
.x0_c00024{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3847ba1acd881521fdf33cb2.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00025;src:url('chunks/assets/font_662c5c98d8fcc8aa2fcafede.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00025{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_c00025{vertical-align:0.000000px;}
.ls1_c00025{letter-spacing:0.000000px;}
.ls0_c00025{letter-spacing:15.300000px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00025{word-spacing:-16.500000px;}
.ws2_c00025{word-spacing:-15.000000px;}
.ws1_c00025{word-spacing:-12.750000px;}
.ws3_c00025{word-spacing:0.000000px;}
._5_c00025{margin-left:-13.680000px;}
._15_c00025{margin-left:-12.431922px;}
._10_c00025{margin-left:-9.990006px;}
._16_c00025{margin-left:-8.400006px;}
._f_c00025{margin-left:-7.062042px;}
._13_c00025{margin-left:-5.537958px;}
._9_c00025{margin-left:-4.260000px;}
._a_c00025{margin-left:-2.640000px;}
._4_c00025{margin-left:-1.560000px;}
._b_c00025{width:1.020006px;}
._0_c00025{width:2.022000px;}
._1_c00025{width:3.371994px;}
._19_c00025{width:4.481769px;}
._3_c00025{width:5.568036px;}
._e_c00025{width:6.791994px;}
._2_c00025{width:7.908006px;}
._11_c00025{width:9.300000px;}
._7_c00025{width:10.410006px;}
._14_c00025{width:11.471880px;}
._6_c00025{width:12.660000px;}
._12_c00025{width:13.805940px;}
._1a_c00025{width:15.452892px;}
._8_c00025{width:16.770000px;}
._c_c00025{width:18.300000px;}
._d_c00025{width:20.940000px;}
._18_c00025{width:26.610000px;}
._1b_c00025{width:27.809964px;}
._17_c00025{width:30.749991px;}
.fc2_c00025{color:transparent;}
.fc1_c00025{color:rgb(0,0,0);}
.fc0_c00025{color:rgb(35,31,32);}
.fs2_c00025{font-size:51.000000px;}
.fs1_c00025{font-size:60.000000px;}
.fs0_c00025{font-size:66.000000px;}
.y0_c00025{bottom:0.000000px;}
.y22_c00025{bottom:64.425022px;}
.y21_c00025{bottom:110.175022px;}
.y20_c00025{bottom:125.625022px;}
.y1f_c00025{bottom:141.150022px;}
.y1e_c00025{bottom:155.925022px;}
.y1d_c00025{bottom:172.275022px;}
.y1c_c00025{bottom:186.525022px;}
.y1b_c00025{bottom:201.975022px;}
.y1a_c00025{bottom:217.425022px;}
.y19_c00025{bottom:232.575022px;}
.y18_c00025{bottom:248.025022px;}
.y17_c00025{bottom:263.175022px;}
.y16_c00025{bottom:278.325022px;}
.y15_c00025{bottom:293.775022px;}
.y14_c00025{bottom:309.225022px;}
.y13_c00025{bottom:324.375022px;}
.y12_c00025{bottom:339.825022px;}
.y11_c00025{bottom:354.975022px;}
.y10_c00025{bottom:459.000022px;}
.yf_c00025{bottom:478.425022px;}
.ye_c00025{bottom:498.300022px;}
.yd_c00025{bottom:517.725022px;}
.yc_c00025{bottom:537.150022px;}
.yb_c00025{bottom:556.200022px;}
.ya_c00025{bottom:576.000022px;}
.y9_c00025{bottom:595.425022px;}
.y8_c00025{bottom:614.925022px;}
.y7_c00025{bottom:634.350022px;}
.y6_c00025{bottom:653.400022px;}
.y5_c00025{bottom:681.825022px;}
.y4_c00025{bottom:709.950022px;}
.y3_c00025{bottom:729.375022px;}
.y2_c00025{bottom:820.125022px;}
.y1_c00025{bottom:843.150022px;}
.h5_c00025{height:50.053711px;}
.h4_c00025{height:58.857422px;}
.h3_c00025{height:58.886719px;}
.h2_c00025{height:64.775391px;}
.h1_c00025{height:957.750000px;}
.h0_c00025{height:957.975000px;}
.w0_c00025{width:641.850030px;}
.w1_c00025{width:642.000000px;}
.x0_c00025{left:0.000000px;}
.x1_c00025{left:80.250000px;}
.x6_c00025{left:81.375000px;}
.x7_c00025{left:83.550000px;}
.x8_c00025{left:98.625000px;}
.x2_c00025{left:101.550000px;}
.x4_c00025{left:244.050000px;}
.x3_c00025{left:306.375000px;}
.x5_c00025{left:416.550000px;}
.x9_c00025{left:538.575000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls1_c00025{letter-spacing:0.000000pt;}
.ls0_c00025{letter-spacing:13.600000pt;}
.ws0_c00025{word-spacing:-14.666667pt;}
.ws2_c00025{word-spacing:-13.333333pt;}
.ws1_c00025{word-spacing:-11.333333pt;}
.ws3_c00025{word-spacing:0.000000pt;}
._5_c00025{margin-left:-12.160000pt;}
._15_c00025{margin-left:-11.050597pt;}
._10_c00025{margin-left:-8.880005pt;}
._16_c00025{margin-left:-7.466672pt;}
._f_c00025{margin-left:-6.277371pt;}
._13_c00025{margin-left:-4.922629pt;}
._9_c00025{margin-left:-3.786667pt;}
._a_c00025{margin-left:-2.346667pt;}
._4_c00025{margin-left:-1.386667pt;}
._b_c00025{width:0.906672pt;}
._0_c00025{width:1.797333pt;}
._1_c00025{width:2.997328pt;}
._19_c00025{width:3.983795pt;}
._3_c00025{width:4.949365pt;}
._e_c00025{width:6.037328pt;}
._2_c00025{width:7.029339pt;}
._11_c00025{width:8.266667pt;}
._7_c00025{width:9.253339pt;}
._14_c00025{width:10.197227pt;}
._6_c00025{width:11.253333pt;}
._12_c00025{width:12.271947pt;}
._1a_c00025{width:13.735904pt;}
._8_c00025{width:14.906667pt;}
._c_c00025{width:16.266667pt;}
._d_c00025{width:18.613333pt;}
._18_c00025{width:23.653333pt;}
._1b_c00025{width:24.719968pt;}
._17_c00025{width:27.333325pt;}
.fs2_c00025{font-size:45.333333pt;}
.fs1_c00025{font-size:53.333333pt;}
.fs0_c00025{font-size:58.666667pt;}
.y0_c00025{bottom:0.000000pt;}
.y22_c00025{bottom:57.266686pt;}
.y21_c00025{bottom:97.933353pt;}
.y20_c00025{bottom:111.666686pt;}
.y1f_c00025{bottom:125.466686pt;}
.y1e_c00025{bottom:138.600020pt;}
.y1d_c00025{bottom:153.133353pt;}
.y1c_c00025{bottom:165.800020pt;}
.y1b_c00025{bottom:179.533353pt;}
.y1a_c00025{bottom:193.266686pt;}
.y19_c00025{bottom:206.733353pt;}
.y18_c00025{bottom:220.466686pt;}
.y17_c00025{bottom:233.933353pt;}
.y16_c00025{bottom:247.400020pt;}
.y15_c00025{bottom:261.133353pt;}
.y14_c00025{bottom:274.866686pt;}
.y13_c00025{bottom:288.333353pt;}
.y12_c00025{bottom:302.066686pt;}
.y11_c00025{bottom:315.533353pt;}
.y10_c00025{bottom:408.000020pt;}
.yf_c00025{bottom:425.266686pt;}
.ye_c00025{bottom:442.933353pt;}
.yd_c00025{bottom:460.200020pt;}
.yc_c00025{bottom:477.466686pt;}
.yb_c00025{bottom:494.400020pt;}
.ya_c00025{bottom:512.000020pt;}
.y9_c00025{bottom:529.266686pt;}
.y8_c00025{bottom:546.600020pt;}
.y7_c00025{bottom:563.866686pt;}
.y6_c00025{bottom:580.800020pt;}
.y5_c00025{bottom:606.066686pt;}
.y4_c00025{bottom:631.066686pt;}
.y3_c00025{bottom:648.333353pt;}
.y2_c00025{bottom:729.000020pt;}
.y1_c00025{bottom:749.466686pt;}
.h5_c00025{height:44.492188pt;}
.h4_c00025{height:52.317708pt;}
.h3_c00025{height:52.343750pt;}
.h2_c00025{height:57.578125pt;}
.h1_c00025{height:851.333333pt;}
.h0_c00025{height:851.533333pt;}
.w0_c00025{width:570.533360pt;}
.w1_c00025{width:570.666667pt;}
.x0_c00025{left:0.000000pt;}
.x1_c00025{left:71.333333pt;}
.x6_c00025{left:72.333333pt;}
.x7_c00025{left:74.266667pt;}
.x8_c00025{left:87.666667pt;}
.x2_c00025{left:90.266667pt;}
.x4_c00025{left:216.933333pt;}
.x3_c00025{left:272.333333pt;}
.x5_c00025{left:370.266667pt;}
.x9_c00025{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d86a3d88936c35e91701880a.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00026;src:url('chunks/assets/font_fb09c6617becdae3dfe4926f.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00026{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_c00026{vertical-align:0.000000px;}
.ls0_c00026{letter-spacing:0.000000px;}
.sc__c00026{text-shadow:none;}
.sc0_c00026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00026{-webkit-text-stroke:0px transparent;}
.sc0_c00026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00026{word-spacing:-15.000000px;}
.ws0_c00026{word-spacing:-12.750000px;}
.ws2_c00026{word-spacing:0.000000px;}
._5_c00026{margin-left:-12.900000px;}
._9_c00026{margin-left:-10.680000px;}
._2_c00026{margin-left:-9.660000px;}
._a_c00026{margin-left:-6.780000px;}
._4_c00026{margin-left:-5.400000px;}
._17_c00026{margin-left:-3.921012px;}
._8_c00026{margin-left:-2.580000px;}
._7_c00026{margin-left:-1.020000px;}
._1_c00026{width:1.560000px;}
._0_c00026{width:2.700000px;}
._6_c00026{width:3.900000px;}
._3_c00026{width:5.400000px;}
._c_c00026{width:7.080000px;}
._18_c00026{width:8.145000px;}
._b_c00026{width:9.300000px;}
._d_c00026{width:10.380000px;}
._e_c00026{width:11.820000px;}
._f_c00026{width:13.560000px;}
._16_c00026{width:14.978994px;}
._10_c00026{width:16.500000px;}
._11_c00026{width:17.640000px;}
._15_c00026{width:20.982528px;}
._13_c00026{width:22.986024px;}
._14_c00026{width:25.055853px;}
._12_c00026{width:26.130015px;}
._19_c00026{width:27.630000px;}
.fc1_c00026{color:transparent;}
.fc0_c00026{color:rgb(35,31,32);}
.fs1_c00026{font-size:51.000000px;}
.fs0_c00026{font-size:60.000000px;}
.y0_c00026{bottom:0.000000px;}
.y29_c00026{bottom:64.425022px;}
.y28_c00026{bottom:110.175022px;}
.y27_c00026{bottom:125.625022px;}
.y26_c00026{bottom:140.775022px;}
.y25_c00026{bottom:156.225022px;}
.y24_c00026{bottom:171.750022px;}
.y23_c00026{bottom:186.525022px;}
.y22_c00026{bottom:202.350022px;}
.y21_c00026{bottom:217.125022px;}
.y20_c00026{bottom:232.575022px;}
.y1f_c00026{bottom:248.025022px;}
.y1e_c00026{bottom:263.175022px;}
.y1d_c00026{bottom:278.325022px;}
.y1c_c00026{bottom:293.775022px;}
.y1b_c00026{bottom:308.925022px;}
.y1a_c00026{bottom:324.375022px;}
.y19_c00026{bottom:339.825022px;}
.y18_c00026{bottom:354.975022px;}
.y17_c00026{bottom:370.425022px;}
.y16_c00026{bottom:385.950022px;}
.y15_c00026{bottom:401.025022px;}
.y14_c00026{bottom:416.550022px;}
.y13_c00026{bottom:431.325022px;}
.y12_c00026{bottom:446.775022px;}
.y11_c00026{bottom:461.925022px;}
.y10_c00026{bottom:508.350022px;}
.yf_c00026{bottom:527.775022px;}
.ye_c00026{bottom:547.200022px;}
.yd_c00026{bottom:566.325022px;}
.yc_c00026{bottom:607.725022px;}
.ya_c00026{bottom:670.350022px;}
.y9_c00026{bottom:689.775022px;}
.y8_c00026{bottom:709.200022px;}
.y7_c00026{bottom:728.700022px;}
.y6_c00026{bottom:748.125022px;}
.y5_c00026{bottom:767.550022px;}
.y4_c00026{bottom:786.600022px;}
.y3_c00026{bottom:806.025022px;}
.y2_c00026{bottom:825.150022px;}
.y1_c00026{bottom:844.575022px;}
.yb_c00026{bottom:886.725022px;}
.h3_c00026{height:50.028809px;}
.h4_c00026{height:50.053711px;}
.h2_c00026{height:58.886719px;}
.h1_c00026{height:957.750000px;}
.h0_c00026{height:957.975000px;}
.w1_c00026{width:643.500000px;}
.w0_c00026{width:643.650000px;}
.x0_c00026{left:0.000000px;}
.x2_c00026{left:90.000000px;}
.x1_c00026{left:91.050000px;}
.x3_c00026{left:92.850000px;}
.x4_c00026{left:108.000000px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls0_c00026{letter-spacing:0.000000pt;}
.ws1_c00026{word-spacing:-13.333333pt;}
.ws0_c00026{word-spacing:-11.333333pt;}
.ws2_c00026{word-spacing:0.000000pt;}
._5_c00026{margin-left:-11.466667pt;}
._9_c00026{margin-left:-9.493333pt;}
._2_c00026{margin-left:-8.586667pt;}
._a_c00026{margin-left:-6.026667pt;}
._4_c00026{margin-left:-4.800000pt;}
._17_c00026{margin-left:-3.485344pt;}
._8_c00026{margin-left:-2.293333pt;}
._7_c00026{margin-left:-0.906667pt;}
._1_c00026{width:1.386667pt;}
._0_c00026{width:2.400000pt;}
._6_c00026{width:3.466667pt;}
._3_c00026{width:4.800000pt;}
._c_c00026{width:6.293333pt;}
._18_c00026{width:7.240000pt;}
._b_c00026{width:8.266667pt;}
._d_c00026{width:9.226667pt;}
._e_c00026{width:10.506667pt;}
._f_c00026{width:12.053333pt;}
._16_c00026{width:13.314661pt;}
._10_c00026{width:14.666667pt;}
._11_c00026{width:15.680000pt;}
._15_c00026{width:18.651136pt;}
._13_c00026{width:20.432021pt;}
._14_c00026{width:22.271869pt;}
._12_c00026{width:23.226680pt;}
._19_c00026{width:24.560000pt;}
.fs1_c00026{font-size:45.333333pt;}
.fs0_c00026{font-size:53.333333pt;}
.y0_c00026{bottom:0.000000pt;}
.y29_c00026{bottom:57.266686pt;}
.y28_c00026{bottom:97.933353pt;}
.y27_c00026{bottom:111.666686pt;}
.y26_c00026{bottom:125.133353pt;}
.y25_c00026{bottom:138.866686pt;}
.y24_c00026{bottom:152.666686pt;}
.y23_c00026{bottom:165.800020pt;}
.y22_c00026{bottom:179.866686pt;}
.y21_c00026{bottom:193.000020pt;}
.y20_c00026{bottom:206.733353pt;}
.y1f_c00026{bottom:220.466686pt;}
.y1e_c00026{bottom:233.933353pt;}
.y1d_c00026{bottom:247.400020pt;}
.y1c_c00026{bottom:261.133353pt;}
.y1b_c00026{bottom:274.600020pt;}
.y1a_c00026{bottom:288.333353pt;}
.y19_c00026{bottom:302.066686pt;}
.y18_c00026{bottom:315.533353pt;}
.y17_c00026{bottom:329.266686pt;}
.y16_c00026{bottom:343.066686pt;}
.y15_c00026{bottom:356.466686pt;}
.y14_c00026{bottom:370.266686pt;}
.y13_c00026{bottom:383.400020pt;}
.y12_c00026{bottom:397.133353pt;}
.y11_c00026{bottom:410.600020pt;}
.y10_c00026{bottom:451.866686pt;}
.yf_c00026{bottom:469.133353pt;}
.ye_c00026{bottom:486.400020pt;}
.yd_c00026{bottom:503.400020pt;}
.yc_c00026{bottom:540.200020pt;}
.ya_c00026{bottom:595.866686pt;}
.y9_c00026{bottom:613.133353pt;}
.y8_c00026{bottom:630.400020pt;}
.y7_c00026{bottom:647.733353pt;}
.y6_c00026{bottom:665.000020pt;}
.y5_c00026{bottom:682.266686pt;}
.y4_c00026{bottom:699.200020pt;}
.y3_c00026{bottom:716.466686pt;}
.y2_c00026{bottom:733.466686pt;}
.y1_c00026{bottom:750.733353pt;}
.yb_c00026{bottom:788.200020pt;}
.h3_c00026{height:44.470052pt;}
.h4_c00026{height:44.492188pt;}
.h2_c00026{height:52.343750pt;}
.h1_c00026{height:851.333333pt;}
.h0_c00026{height:851.533333pt;}
.w1_c00026{width:572.000000pt;}
.w0_c00026{width:572.133333pt;}
.x0_c00026{left:0.000000pt;}
.x2_c00026{left:80.000000pt;}
.x1_c00026{left:80.933333pt;}
.x3_c00026{left:82.533333pt;}
.x4_c00026{left:96.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f7b6be8776b29d4ab9835ad5.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00027;src:url('chunks/assets/font_d47b18f43ba21f1cfe716082.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.ls0_c00027{letter-spacing:0.000000px;}
.sc__c00027{text-shadow:none;}
.sc0_c00027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00027{-webkit-text-stroke:0px transparent;}
.sc0_c00027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00027{word-spacing:-15.000000px;}
.ws0_c00027{word-spacing:-12.750000px;}
.ws2_c00027{word-spacing:0.000000px;}
._10_c00027{margin-left:-17.532111px;}
._13_c00027{margin-left:-15.884073px;}
._14_c00027{margin-left:-13.805451px;}
._9_c00027{margin-left:-12.710727px;}
._17_c00027{margin-left:-10.591821px;}
._12_c00027{margin-left:-7.364955px;}
._3_c00027{margin-left:-6.150600px;}
._11_c00027{margin-left:-4.547811px;}
._e_c00027{margin-left:-3.198168px;}
._0_c00027{margin-left:-1.383018px;}
._1_c00027{width:1.083036px;}
._2_c00027{width:2.823003px;}
._4_c00027{width:4.383018px;}
._6_c00027{width:5.828574px;}
._5_c00027{width:6.983601px;}
._7_c00027{width:8.570925px;}
._8_c00027{width:10.304787px;}
._b_c00027{width:11.403018px;}
._a_c00027{width:13.013928px;}
._16_c00027{width:14.525847px;}
._d_c00027{width:16.151574px;}
._c_c00027{width:17.718216px;}
._f_c00027{width:18.995712px;}
._15_c00027{width:21.531189px;}
._19_c00027{width:25.731192px;}
._18_c00027{width:28.895934px;}
.fc1_c00027{color:transparent;}
.fc0_c00027{color:rgb(35,31,32);}
.fs0_c00027{font-size:51.000000px;}
.fs1_c00027{font-size:60.000000px;}
.y0_c00027{bottom:0.000000px;}
.y2a_c00027{bottom:64.425022px;}
.y29_c00027{bottom:110.175022px;}
.y28_c00027{bottom:125.325022px;}
.y27_c00027{bottom:140.775022px;}
.y26_c00027{bottom:156.225022px;}
.y25_c00027{bottom:171.375022px;}
.y24_c00027{bottom:186.525022px;}
.y23_c00027{bottom:201.975022px;}
.y22_c00027{bottom:217.125022px;}
.y21_c00027{bottom:232.575022px;}
.y20_c00027{bottom:247.725022px;}
.y1f_c00027{bottom:263.550022px;}
.y1e_c00027{bottom:278.325022px;}
.y1d_c00027{bottom:293.775022px;}
.y1c_c00027{bottom:308.925022px;}
.y1b_c00027{bottom:324.375022px;}
.y1a_c00027{bottom:339.525022px;}
.y19_c00027{bottom:355.350022px;}
.y18_c00027{bottom:370.125022px;}
.y17_c00027{bottom:385.575022px;}
.y16_c00027{bottom:400.725022px;}
.y15_c00027{bottom:416.550022px;}
.y14_c00027{bottom:431.325022px;}
.y13_c00027{bottom:514.800022px;}
.y12_c00027{bottom:533.925022px;}
.y11_c00027{bottom:553.350022px;}
.y10_c00027{bottom:572.775022px;}
.yf_c00027{bottom:592.575022px;}
.ye_c00027{bottom:612.000022px;}
.yd_c00027{bottom:631.125022px;}
.yc_c00027{bottom:650.550022px;}
.yb_c00027{bottom:669.975022px;}
.ya_c00027{bottom:689.400022px;}
.y9_c00027{bottom:709.200022px;}
.y8_c00027{bottom:728.325022px;}
.y7_c00027{bottom:747.750022px;}
.y6_c00027{bottom:767.550022px;}
.y5_c00027{bottom:786.225022px;}
.y4_c00027{bottom:805.725022px;}
.y3_c00027{bottom:825.525022px;}
.y2_c00027{bottom:844.950022px;}
.y1_c00027{bottom:886.725022px;}
.h2_c00027{height:50.028809px;}
.h4_c00027{height:50.053711px;}
.h3_c00027{height:58.886719px;}
.h1_c00027{height:957.750000px;}
.h0_c00027{height:957.975000px;}
.w0_c00027{width:641.850030px;}
.w1_c00027{width:642.000000px;}
.x0_c00027{left:0.000000px;}
.x3_c00027{left:80.250000px;}
.x2_c00027{left:81.375000px;}
.x5_c00027{left:85.650000px;}
.x4_c00027{left:106.950000px;}
.x1_c00027{left:234.000000px;}
.x6_c00027{left:538.575000px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls0_c00027{letter-spacing:0.000000pt;}
.ws1_c00027{word-spacing:-13.333333pt;}
.ws0_c00027{word-spacing:-11.333333pt;}
.ws2_c00027{word-spacing:0.000000pt;}
._10_c00027{margin-left:-15.584099pt;}
._13_c00027{margin-left:-14.119176pt;}
._14_c00027{margin-left:-12.271512pt;}
._9_c00027{margin-left:-11.298424pt;}
._17_c00027{margin-left:-9.414952pt;}
._12_c00027{margin-left:-6.546627pt;}
._3_c00027{margin-left:-5.467200pt;}
._11_c00027{margin-left:-4.042499pt;}
._e_c00027{margin-left:-2.842816pt;}
._0_c00027{margin-left:-1.229349pt;}
._1_c00027{width:0.962699pt;}
._2_c00027{width:2.509336pt;}
._4_c00027{width:3.896016pt;}
._6_c00027{width:5.180955pt;}
._5_c00027{width:6.207645pt;}
._7_c00027{width:7.618600pt;}
._8_c00027{width:9.159811pt;}
._b_c00027{width:10.136016pt;}
._a_c00027{width:11.567936pt;}
._16_c00027{width:12.911864pt;}
._d_c00027{width:14.356955pt;}
._c_c00027{width:15.749525pt;}
._f_c00027{width:16.885077pt;}
._15_c00027{width:19.138835pt;}
._19_c00027{width:22.872171pt;}
._18_c00027{width:25.685275pt;}
.fs0_c00027{font-size:45.333333pt;}
.fs1_c00027{font-size:53.333333pt;}
.y0_c00027{bottom:0.000000pt;}
.y2a_c00027{bottom:57.266686pt;}
.y29_c00027{bottom:97.933353pt;}
.y28_c00027{bottom:111.400020pt;}
.y27_c00027{bottom:125.133353pt;}
.y26_c00027{bottom:138.866686pt;}
.y25_c00027{bottom:152.333353pt;}
.y24_c00027{bottom:165.800020pt;}
.y23_c00027{bottom:179.533353pt;}
.y22_c00027{bottom:193.000020pt;}
.y21_c00027{bottom:206.733353pt;}
.y20_c00027{bottom:220.200020pt;}
.y1f_c00027{bottom:234.266686pt;}
.y1e_c00027{bottom:247.400020pt;}
.y1d_c00027{bottom:261.133353pt;}
.y1c_c00027{bottom:274.600020pt;}
.y1b_c00027{bottom:288.333353pt;}
.y1a_c00027{bottom:301.800020pt;}
.y19_c00027{bottom:315.866686pt;}
.y18_c00027{bottom:329.000020pt;}
.y17_c00027{bottom:342.733353pt;}
.y16_c00027{bottom:356.200020pt;}
.y15_c00027{bottom:370.266686pt;}
.y14_c00027{bottom:383.400020pt;}
.y13_c00027{bottom:457.600020pt;}
.y12_c00027{bottom:474.600020pt;}
.y11_c00027{bottom:491.866686pt;}
.y10_c00027{bottom:509.133353pt;}
.yf_c00027{bottom:526.733353pt;}
.ye_c00027{bottom:544.000020pt;}
.yd_c00027{bottom:561.000020pt;}
.yc_c00027{bottom:578.266686pt;}
.yb_c00027{bottom:595.533353pt;}
.ya_c00027{bottom:612.800020pt;}
.y9_c00027{bottom:630.400020pt;}
.y8_c00027{bottom:647.400020pt;}
.y7_c00027{bottom:664.666686pt;}
.y6_c00027{bottom:682.266686pt;}
.y5_c00027{bottom:698.866686pt;}
.y4_c00027{bottom:716.200020pt;}
.y3_c00027{bottom:733.800020pt;}
.y2_c00027{bottom:751.066686pt;}
.y1_c00027{bottom:788.200020pt;}
.h2_c00027{height:44.470052pt;}
.h4_c00027{height:44.492188pt;}
.h3_c00027{height:52.343750pt;}
.h1_c00027{height:851.333333pt;}
.h0_c00027{height:851.533333pt;}
.w0_c00027{width:570.533360pt;}
.w1_c00027{width:570.666667pt;}
.x0_c00027{left:0.000000pt;}
.x3_c00027{left:71.333333pt;}
.x2_c00027{left:72.333333pt;}
.x5_c00027{left:76.133333pt;}
.x4_c00027{left:95.066667pt;}
.x1_c00027{left:208.000000pt;}
.x6_c00027{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_96880deb58ad8c0aeeb40e26.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00028;src:url('chunks/assets/font_840086472297a0cf3f4218b5.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00028{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00028{word-spacing:-15.000000px;}
.ws0_c00028{word-spacing:-12.750000px;}
.ws2_c00028{word-spacing:0.000000px;}
._3_c00028{margin-left:-15.000000px;}
._f_c00028{margin-left:-13.560000px;}
._11_c00028{margin-left:-12.360000px;}
._15_c00028{margin-left:-10.770087px;}
._14_c00028{margin-left:-6.216030px;}
._12_c00028{margin-left:-5.100000px;}
._b_c00028{margin-left:-2.940000px;}
._2_c00028{margin-left:-1.200000px;}
._0_c00028{width:1.020000px;}
._5_c00028{width:2.100000px;}
._7_c00028{width:3.180000px;}
._8_c00028{width:5.160000px;}
._1_c00028{width:6.600000px;}
._10_c00028{width:8.400000px;}
._6_c00028{width:9.840000px;}
._4_c00028{width:11.100000px;}
._e_c00028{width:12.900000px;}
._d_c00028{width:13.980000px;}
._9_c00028{width:16.200000px;}
._a_c00028{width:17.460000px;}
._c_c00028{width:18.600000px;}
._16_c00028{width:24.330000px;}
._13_c00028{width:27.029955px;}
.fc1_c00028{color:transparent;}
.fc0_c00028{color:rgb(35,31,32);}
.fs1_c00028{font-size:51.000000px;}
.fs0_c00028{font-size:60.000000px;}
.y0_c00028{bottom:0.000000px;}
.y26_c00028{bottom:64.425022px;}
.y25_c00028{bottom:110.175022px;}
.y24_c00028{bottom:125.325022px;}
.y23_c00028{bottom:141.150022px;}
.y22_c00028{bottom:155.925022px;}
.y21_c00028{bottom:171.375022px;}
.y20_c00028{bottom:186.525022px;}
.y1f_c00028{bottom:201.975022px;}
.y1e_c00028{bottom:242.325022px;}
.y1d_c00028{bottom:261.750022px;}
.y1c_c00028{bottom:281.175022px;}
.y1b_c00028{bottom:300.600022px;}
.y1a_c00028{bottom:319.350022px;}
.y19_c00028{bottom:339.150022px;}
.y18_c00028{bottom:358.200022px;}
.y17_c00028{bottom:378.000022px;}
.y16_c00028{bottom:397.425022px;}
.y15_c00028{bottom:436.725022px;}
.y13_c00028{bottom:495.375022px;}
.y12_c00028{bottom:514.425022px;}
.y11_c00028{bottom:534.300022px;}
.y10_c00028{bottom:553.725022px;}
.yf_c00028{bottom:573.150022px;}
.ye_c00028{bottom:592.575022px;}
.yd_c00028{bottom:612.000022px;}
.yc_c00028{bottom:631.425022px;}
.yb_c00028{bottom:650.550022px;}
.ya_c00028{bottom:670.350022px;}
.y9_c00028{bottom:689.775022px;}
.y8_c00028{bottom:708.825022px;}
.y7_c00028{bottom:728.325022px;}
.y6_c00028{bottom:748.125022px;}
.y5_c00028{bottom:767.550022px;}
.y4_c00028{bottom:786.225022px;}
.y3_c00028{bottom:806.025022px;}
.y2_c00028{bottom:825.525022px;}
.y1_c00028{bottom:844.575022px;}
.y14_c00028{bottom:886.725022px;}
.h3_c00028{height:50.028809px;}
.h4_c00028{height:50.053711px;}
.h2_c00028{height:58.886719px;}
.h1_c00028{height:957.750000px;}
.h0_c00028{height:957.975000px;}
.w1_c00028{width:643.500000px;}
.w0_c00028{width:643.650000px;}
.x0_c00028{left:0.000000px;}
.x3_c00028{left:90.375000px;}
.x1_c00028{left:91.425000px;}
.x4_c00028{left:95.775000px;}
.x2_c00028{left:107.250000px;}
.x5_c00028{left:116.625000px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls0_c00028{letter-spacing:0.000000pt;}
.ws1_c00028{word-spacing:-13.333333pt;}
.ws0_c00028{word-spacing:-11.333333pt;}
.ws2_c00028{word-spacing:0.000000pt;}
._3_c00028{margin-left:-13.333333pt;}
._f_c00028{margin-left:-12.053333pt;}
._11_c00028{margin-left:-10.986667pt;}
._15_c00028{margin-left:-9.573411pt;}
._14_c00028{margin-left:-5.525360pt;}
._12_c00028{margin-left:-4.533333pt;}
._b_c00028{margin-left:-2.613333pt;}
._2_c00028{margin-left:-1.066667pt;}
._0_c00028{width:0.906667pt;}
._5_c00028{width:1.866667pt;}
._7_c00028{width:2.826667pt;}
._8_c00028{width:4.586667pt;}
._1_c00028{width:5.866667pt;}
._10_c00028{width:7.466667pt;}
._6_c00028{width:8.746667pt;}
._4_c00028{width:9.866667pt;}
._e_c00028{width:11.466667pt;}
._d_c00028{width:12.426667pt;}
._9_c00028{width:14.400000pt;}
._a_c00028{width:15.520000pt;}
._c_c00028{width:16.533333pt;}
._16_c00028{width:21.626667pt;}
._13_c00028{width:24.026627pt;}
.fs1_c00028{font-size:45.333333pt;}
.fs0_c00028{font-size:53.333333pt;}
.y0_c00028{bottom:0.000000pt;}
.y26_c00028{bottom:57.266686pt;}
.y25_c00028{bottom:97.933353pt;}
.y24_c00028{bottom:111.400020pt;}
.y23_c00028{bottom:125.466686pt;}
.y22_c00028{bottom:138.600020pt;}
.y21_c00028{bottom:152.333353pt;}
.y20_c00028{bottom:165.800020pt;}
.y1f_c00028{bottom:179.533353pt;}
.y1e_c00028{bottom:215.400020pt;}
.y1d_c00028{bottom:232.666686pt;}
.y1c_c00028{bottom:249.933353pt;}
.y1b_c00028{bottom:267.200020pt;}
.y1a_c00028{bottom:283.866686pt;}
.y19_c00028{bottom:301.466686pt;}
.y18_c00028{bottom:318.400020pt;}
.y17_c00028{bottom:336.000020pt;}
.y16_c00028{bottom:353.266686pt;}
.y15_c00028{bottom:388.200020pt;}
.y13_c00028{bottom:440.333353pt;}
.y12_c00028{bottom:457.266686pt;}
.y11_c00028{bottom:474.933353pt;}
.y10_c00028{bottom:492.200020pt;}
.yf_c00028{bottom:509.466686pt;}
.ye_c00028{bottom:526.733353pt;}
.yd_c00028{bottom:544.000020pt;}
.yc_c00028{bottom:561.266686pt;}
.yb_c00028{bottom:578.266686pt;}
.ya_c00028{bottom:595.866686pt;}
.y9_c00028{bottom:613.133353pt;}
.y8_c00028{bottom:630.066686pt;}
.y7_c00028{bottom:647.400020pt;}
.y6_c00028{bottom:665.000020pt;}
.y5_c00028{bottom:682.266686pt;}
.y4_c00028{bottom:698.866686pt;}
.y3_c00028{bottom:716.466686pt;}
.y2_c00028{bottom:733.800020pt;}
.y1_c00028{bottom:750.733353pt;}
.y14_c00028{bottom:788.200020pt;}
.h3_c00028{height:44.470052pt;}
.h4_c00028{height:44.492188pt;}
.h2_c00028{height:52.343750pt;}
.h1_c00028{height:851.333333pt;}
.h0_c00028{height:851.533333pt;}
.w1_c00028{width:572.000000pt;}
.w0_c00028{width:572.133333pt;}
.x0_c00028{left:0.000000pt;}
.x3_c00028{left:80.333333pt;}
.x1_c00028{left:81.266667pt;}
.x4_c00028{left:85.133333pt;}
.x2_c00028{left:95.333333pt;}
.x5_c00028{left:103.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c8eaf5ddcd6ad5e28fc90dac.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00029;src:url('chunks/assets/font_44b3a03a8b089a52681490b5.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00029{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_c00029{vertical-align:0.000000px;}
.ls1_c00029{letter-spacing:0.000000px;}
.ls0_c00029{letter-spacing:11.100000px;}
.sc__c00029{text-shadow:none;}
.sc0_c00029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00029{-webkit-text-stroke:0px transparent;}
.sc0_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00029{word-spacing:-15.000000px;}
.ws1_c00029{word-spacing:-12.750000px;}
.ws2_c00029{word-spacing:0.000000px;}
._d_c00029{margin-left:-13.740000px;}
._b_c00029{margin-left:-10.800000px;}
._e_c00029{margin-left:-7.920000px;}
._14_c00029{margin-left:-6.654117px;}
._c_c00029{margin-left:-5.400000px;}
._a_c00029{margin-left:-3.266946px;}
._6_c00029{margin-left:-1.560000px;}
._0_c00029{width:1.620000px;}
._1_c00029{width:3.300000px;}
._2_c00029{width:4.920000px;}
._7_c00029{width:6.360000px;}
._8_c00029{width:7.500000px;}
._5_c00029{width:8.820000px;}
._3_c00029{width:10.080000px;}
._f_c00029{width:11.520000px;}
._4_c00029{width:12.660000px;}
._9_c00029{width:13.920000px;}
._11_c00029{width:16.020000px;}
._10_c00029{width:17.880000px;}
._12_c00029{width:24.476940px;}
._13_c00029{width:25.976952px;}
.fc2_c00029{color:transparent;}
.fc1_c00029{color:rgb(0,0,0);}
.fc0_c00029{color:rgb(35,31,32);}
.fs1_c00029{font-size:51.000000px;}
.fs0_c00029{font-size:60.000000px;}
.y0_c00029{bottom:0.000000px;}
.y25_c00029{bottom:64.425022px;}
.y24_c00029{bottom:110.550022px;}
.y23_c00029{bottom:125.625022px;}
.y22_c00029{bottom:140.775022px;}
.y21_c00029{bottom:156.225022px;}
.y20_c00029{bottom:171.375022px;}
.y1f_c00029{bottom:186.525022px;}
.y1e_c00029{bottom:201.975022px;}
.y1d_c00029{bottom:217.125022px;}
.y1c_c00029{bottom:294.825022px;}
.y1b_c00029{bottom:314.325022px;}
.y1a_c00029{bottom:333.750022px;}
.y19_c00029{bottom:353.550022px;}
.y18_c00029{bottom:372.600022px;}
.y17_c00029{bottom:392.025022px;}
.y16_c00029{bottom:411.825022px;}
.y15_c00029{bottom:430.950022px;}
.y14_c00029{bottom:450.750022px;}
.y13_c00029{bottom:470.025022px;}
.y12_c00029{bottom:489.525022px;}
.y11_c00029{bottom:509.025022px;}
.y10_c00029{bottom:528.525022px;}
.yf_c00029{bottom:547.950022px;}
.ye_c00029{bottom:567.375022px;}
.yd_c00029{bottom:601.575022px;}
.yb_c00029{bottom:650.925022px;}
.ya_c00029{bottom:670.350022px;}
.y9_c00029{bottom:689.400022px;}
.y8_c00029{bottom:709.200022px;}
.y7_c00029{bottom:728.625022px;}
.y6_c00029{bottom:748.125022px;}
.y5_c00029{bottom:767.550022px;}
.y4_c00029{bottom:786.225022px;}
.y3_c00029{bottom:805.725022px;}
.y2_c00029{bottom:825.150022px;}
.y1_c00029{bottom:844.575022px;}
.yc_c00029{bottom:886.725022px;}
.h3_c00029{height:50.028809px;}
.h4_c00029{height:50.053711px;}
.h2_c00029{height:58.886719px;}
.h1_c00029{height:957.750000px;}
.h0_c00029{height:957.975000px;}
.w0_c00029{width:641.850030px;}
.w1_c00029{width:642.000000px;}
.x0_c00029{left:0.000000px;}
.x2_c00029{left:80.250000px;}
.x1_c00029{left:81.375000px;}
.x4_c00029{left:85.650000px;}
.x5_c00029{left:106.950000px;}
.x3_c00029{left:182.850000px;}
.x6_c00029{left:538.575000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls1_c00029{letter-spacing:0.000000pt;}
.ls0_c00029{letter-spacing:9.866667pt;}
.ws0_c00029{word-spacing:-13.333333pt;}
.ws1_c00029{word-spacing:-11.333333pt;}
.ws2_c00029{word-spacing:0.000000pt;}
._d_c00029{margin-left:-12.213333pt;}
._b_c00029{margin-left:-9.600000pt;}
._e_c00029{margin-left:-7.040000pt;}
._14_c00029{margin-left:-5.914771pt;}
._c_c00029{margin-left:-4.800000pt;}
._a_c00029{margin-left:-2.903952pt;}
._6_c00029{margin-left:-1.386667pt;}
._0_c00029{width:1.440000pt;}
._1_c00029{width:2.933333pt;}
._2_c00029{width:4.373333pt;}
._7_c00029{width:5.653333pt;}
._8_c00029{width:6.666667pt;}
._5_c00029{width:7.840000pt;}
._3_c00029{width:8.960000pt;}
._f_c00029{width:10.240000pt;}
._4_c00029{width:11.253333pt;}
._9_c00029{width:12.373333pt;}
._11_c00029{width:14.240000pt;}
._10_c00029{width:15.893333pt;}
._12_c00029{width:21.757280pt;}
._13_c00029{width:23.090624pt;}
.fs1_c00029{font-size:45.333333pt;}
.fs0_c00029{font-size:53.333333pt;}
.y0_c00029{bottom:0.000000pt;}
.y25_c00029{bottom:57.266686pt;}
.y24_c00029{bottom:98.266686pt;}
.y23_c00029{bottom:111.666686pt;}
.y22_c00029{bottom:125.133353pt;}
.y21_c00029{bottom:138.866686pt;}
.y20_c00029{bottom:152.333353pt;}
.y1f_c00029{bottom:165.800020pt;}
.y1e_c00029{bottom:179.533353pt;}
.y1d_c00029{bottom:193.000020pt;}
.y1c_c00029{bottom:262.066686pt;}
.y1b_c00029{bottom:279.400020pt;}
.y1a_c00029{bottom:296.666686pt;}
.y19_c00029{bottom:314.266686pt;}
.y18_c00029{bottom:331.200020pt;}
.y17_c00029{bottom:348.466686pt;}
.y16_c00029{bottom:366.066686pt;}
.y15_c00029{bottom:383.066686pt;}
.y14_c00029{bottom:400.666686pt;}
.y13_c00029{bottom:417.800020pt;}
.y12_c00029{bottom:435.133353pt;}
.y11_c00029{bottom:452.466686pt;}
.y10_c00029{bottom:469.800020pt;}
.yf_c00029{bottom:487.066686pt;}
.ye_c00029{bottom:504.333353pt;}
.yd_c00029{bottom:534.733353pt;}
.yb_c00029{bottom:578.600020pt;}
.ya_c00029{bottom:595.866686pt;}
.y9_c00029{bottom:612.800020pt;}
.y8_c00029{bottom:630.400020pt;}
.y7_c00029{bottom:647.666686pt;}
.y6_c00029{bottom:665.000020pt;}
.y5_c00029{bottom:682.266686pt;}
.y4_c00029{bottom:698.866686pt;}
.y3_c00029{bottom:716.200020pt;}
.y2_c00029{bottom:733.466686pt;}
.y1_c00029{bottom:750.733353pt;}
.yc_c00029{bottom:788.200020pt;}
.h3_c00029{height:44.470052pt;}
.h4_c00029{height:44.492188pt;}
.h2_c00029{height:52.343750pt;}
.h1_c00029{height:851.333333pt;}
.h0_c00029{height:851.533333pt;}
.w0_c00029{width:570.533360pt;}
.w1_c00029{width:570.666667pt;}
.x0_c00029{left:0.000000pt;}
.x2_c00029{left:71.333333pt;}
.x1_c00029{left:72.333333pt;}
.x4_c00029{left:76.133333pt;}
.x5_c00029{left:95.066667pt;}
.x3_c00029{left:162.533333pt;}
.x6_c00029{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_81c708d57531fba06c507aa0.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00030;src:url('chunks/assets/font_48afaaebdc969e0fb382d0dd.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00030{letter-spacing:0.000000px;}
.sc__c00030{text-shadow:none;}
.sc0_c00030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00030{-webkit-text-stroke:0px transparent;}
.sc0_c00030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00030{word-spacing:-15.000000px;}
.ws1_c00030{word-spacing:-12.750000px;}
.ws2_c00030{word-spacing:0.000000px;}
._a_c00030{margin-left:-12.000000px;}
._5_c00030{margin-left:-10.740000px;}
._b_c00030{margin-left:-9.060000px;}
._f_c00030{margin-left:-7.500000px;}
._16_c00030{margin-left:-6.468084px;}
._9_c00030{margin-left:-5.100000px;}
._c_c00030{margin-left:-3.720000px;}
._3_c00030{margin-left:-1.740000px;}
._0_c00030{width:1.260000px;}
._1_c00030{width:2.280000px;}
._7_c00030{width:3.780000px;}
._6_c00030{width:4.800000px;}
._2_c00030{width:6.000000px;}
._4_c00030{width:7.260000px;}
._8_c00030{width:9.060000px;}
._e_c00030{width:11.040000px;}
._d_c00030{width:13.020000px;}
._18_c00030{width:14.424090px;}
._19_c00030{width:15.530937px;}
._12_c00030{width:16.740000px;}
._10_c00030{width:18.120000px;}
._11_c00030{width:19.740000px;}
._13_c00030{width:20.760000px;}
._14_c00030{width:22.200000px;}
._17_c00030{width:25.110000px;}
._15_c00030{width:26.130018px;}
._1a_c00030{width:28.110000px;}
.fc1_c00030{color:transparent;}
.fc0_c00030{color:rgb(35,31,32);}
.fs1_c00030{font-size:51.000000px;}
.fs0_c00030{font-size:60.000000px;}
.y0_c00030{bottom:0.000000px;}
.y2b_c00030{bottom:64.425022px;}
.y2a_c00030{bottom:110.550022px;}
.y29_c00030{bottom:125.325022px;}
.y28_c00030{bottom:140.775022px;}
.y27_c00030{bottom:155.925022px;}
.y26_c00030{bottom:171.375022px;}
.y25_c00030{bottom:186.825022px;}
.y24_c00030{bottom:202.350022px;}
.y23_c00030{bottom:217.125022px;}
.y22_c00030{bottom:232.575022px;}
.y21_c00030{bottom:247.725022px;}
.y20_c00030{bottom:263.550022px;}
.y1f_c00030{bottom:278.625022px;}
.y1e_c00030{bottom:294.150022px;}
.y1d_c00030{bottom:308.925022px;}
.y1c_c00030{bottom:324.750022px;}
.y1b_c00030{bottom:339.825022px;}
.y1a_c00030{bottom:355.350022px;}
.y19_c00030{bottom:370.125022px;}
.y18_c00030{bottom:385.575022px;}
.y17_c00030{bottom:400.725022px;}
.y16_c00030{bottom:416.550022px;}
.y15_c00030{bottom:431.325022px;}
.y14_c00030{bottom:446.775022px;}
.y13_c00030{bottom:462.225022px;}
.y12_c00030{bottom:477.375022px;}
.y11_c00030{bottom:492.525022px;}
.yf_c00030{bottom:573.150022px;}
.ye_c00030{bottom:592.575022px;}
.yd_c00030{bottom:611.625022px;}
.yc_c00030{bottom:631.125022px;}
.yb_c00030{bottom:650.550022px;}
.ya_c00030{bottom:669.975022px;}
.y9_c00030{bottom:689.400022px;}
.y8_c00030{bottom:709.200022px;}
.y7_c00030{bottom:728.325022px;}
.y6_c00030{bottom:748.125022px;}
.y5_c00030{bottom:767.550022px;}
.y4_c00030{bottom:786.600022px;}
.y3_c00030{bottom:805.725022px;}
.y2_c00030{bottom:825.150022px;}
.y1_c00030{bottom:844.575022px;}
.y10_c00030{bottom:886.725022px;}
.h3_c00030{height:50.028809px;}
.h4_c00030{height:50.053711px;}
.h2_c00030{height:58.886719px;}
.h1_c00030{height:957.750000px;}
.h0_c00030{height:957.975000px;}
.w1_c00030{width:643.500000px;}
.w0_c00030{width:643.650000px;}
.x0_c00030{left:0.000000px;}
.x2_c00030{left:90.375000px;}
.x1_c00030{left:91.425000px;}
.x4_c00030{left:95.400000px;}
.x3_c00030{left:107.250000px;}
.x5_c00030{left:116.625000px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls0_c00030{letter-spacing:0.000000pt;}
.ws0_c00030{word-spacing:-13.333333pt;}
.ws1_c00030{word-spacing:-11.333333pt;}
.ws2_c00030{word-spacing:0.000000pt;}
._a_c00030{margin-left:-10.666667pt;}
._5_c00030{margin-left:-9.546667pt;}
._b_c00030{margin-left:-8.053333pt;}
._f_c00030{margin-left:-6.666667pt;}
._16_c00030{margin-left:-5.749408pt;}
._9_c00030{margin-left:-4.533333pt;}
._c_c00030{margin-left:-3.306667pt;}
._3_c00030{margin-left:-1.546667pt;}
._0_c00030{width:1.120000pt;}
._1_c00030{width:2.026667pt;}
._7_c00030{width:3.360000pt;}
._6_c00030{width:4.266667pt;}
._2_c00030{width:5.333333pt;}
._4_c00030{width:6.453333pt;}
._8_c00030{width:8.053333pt;}
._e_c00030{width:9.813333pt;}
._d_c00030{width:11.573333pt;}
._18_c00030{width:12.821413pt;}
._19_c00030{width:13.805277pt;}
._12_c00030{width:14.880000pt;}
._10_c00030{width:16.106667pt;}
._11_c00030{width:17.546667pt;}
._13_c00030{width:18.453333pt;}
._14_c00030{width:19.733333pt;}
._17_c00030{width:22.320000pt;}
._15_c00030{width:23.226683pt;}
._1a_c00030{width:24.986667pt;}
.fs1_c00030{font-size:45.333333pt;}
.fs0_c00030{font-size:53.333333pt;}
.y0_c00030{bottom:0.000000pt;}
.y2b_c00030{bottom:57.266686pt;}
.y2a_c00030{bottom:98.266686pt;}
.y29_c00030{bottom:111.400020pt;}
.y28_c00030{bottom:125.133353pt;}
.y27_c00030{bottom:138.600020pt;}
.y26_c00030{bottom:152.333353pt;}
.y25_c00030{bottom:166.066686pt;}
.y24_c00030{bottom:179.866686pt;}
.y23_c00030{bottom:193.000020pt;}
.y22_c00030{bottom:206.733353pt;}
.y21_c00030{bottom:220.200020pt;}
.y20_c00030{bottom:234.266686pt;}
.y1f_c00030{bottom:247.666686pt;}
.y1e_c00030{bottom:261.466686pt;}
.y1d_c00030{bottom:274.600020pt;}
.y1c_c00030{bottom:288.666686pt;}
.y1b_c00030{bottom:302.066686pt;}
.y1a_c00030{bottom:315.866686pt;}
.y19_c00030{bottom:329.000020pt;}
.y18_c00030{bottom:342.733353pt;}
.y17_c00030{bottom:356.200020pt;}
.y16_c00030{bottom:370.266686pt;}
.y15_c00030{bottom:383.400020pt;}
.y14_c00030{bottom:397.133353pt;}
.y13_c00030{bottom:410.866686pt;}
.y12_c00030{bottom:424.333353pt;}
.y11_c00030{bottom:437.800020pt;}
.yf_c00030{bottom:509.466686pt;}
.ye_c00030{bottom:526.733353pt;}
.yd_c00030{bottom:543.666686pt;}
.yc_c00030{bottom:561.000020pt;}
.yb_c00030{bottom:578.266686pt;}
.ya_c00030{bottom:595.533353pt;}
.y9_c00030{bottom:612.800020pt;}
.y8_c00030{bottom:630.400020pt;}
.y7_c00030{bottom:647.400020pt;}
.y6_c00030{bottom:665.000020pt;}
.y5_c00030{bottom:682.266686pt;}
.y4_c00030{bottom:699.200020pt;}
.y3_c00030{bottom:716.200020pt;}
.y2_c00030{bottom:733.466686pt;}
.y1_c00030{bottom:750.733353pt;}
.y10_c00030{bottom:788.200020pt;}
.h3_c00030{height:44.470052pt;}
.h4_c00030{height:44.492188pt;}
.h2_c00030{height:52.343750pt;}
.h1_c00030{height:851.333333pt;}
.h0_c00030{height:851.533333pt;}
.w1_c00030{width:572.000000pt;}
.w0_c00030{width:572.133333pt;}
.x0_c00030{left:0.000000pt;}
.x2_c00030{left:80.333333pt;}
.x1_c00030{left:81.266667pt;}
.x4_c00030{left:84.800000pt;}
.x3_c00030{left:95.333333pt;}
.x5_c00030{left:103.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_feb70cfe5f0f75003569b4b7.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00031;src:url('chunks/assets/font_a5bc079abbad902b41b1b570.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00031{letter-spacing:0.000000px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00031{word-spacing:-15.000000px;}
.ws0_c00031{word-spacing:-12.750000px;}
.ws2_c00031{word-spacing:0.000000px;}
._3_c00031{margin-left:-10.440000px;}
._f_c00031{margin-left:-9.360000px;}
._14_c00031{margin-left:-8.205024px;}
._12_c00031{margin-left:-6.180000px;}
._15_c00031{margin-left:-5.072991px;}
._10_c00031{margin-left:-3.600000px;}
._8_c00031{margin-left:-2.580000px;}
._9_c00031{margin-left:-1.440000px;}
._0_c00031{width:1.020000px;}
._1_c00031{width:2.520000px;}
._7_c00031{width:4.500000px;}
._a_c00031{width:5.940000px;}
._2_c00031{width:7.080000px;}
._6_c00031{width:8.880000px;}
._5_c00031{width:10.560000px;}
._4_c00031{width:11.640000px;}
._c_c00031{width:12.900000px;}
._16_c00031{width:14.003949px;}
._18_c00031{width:15.147135px;}
._b_c00031{width:16.260000px;}
._e_c00031{width:17.460000px;}
._d_c00031{width:18.720000px;}
._11_c00031{width:20.160000px;}
._17_c00031{width:22.590006px;}
._1a_c00031{width:23.670000px;}
._19_c00031{width:25.170000px;}
._13_c00031{width:26.670018px;}
.fc1_c00031{color:transparent;}
.fc0_c00031{color:rgb(35,31,32);}
.fs1_c00031{font-size:51.000000px;}
.fs0_c00031{font-size:60.000000px;}
.y0_c00031{bottom:0.000000px;}
.y2a_c00031{bottom:64.425022px;}
.y29_c00031{bottom:110.175022px;}
.y28_c00031{bottom:125.325022px;}
.y27_c00031{bottom:140.775022px;}
.y26_c00031{bottom:156.225022px;}
.y25_c00031{bottom:171.375022px;}
.y24_c00031{bottom:186.825022px;}
.y23_c00031{bottom:202.350022px;}
.y22_c00031{bottom:217.425022px;}
.y21_c00031{bottom:232.575022px;}
.y20_c00031{bottom:248.025022px;}
.y1f_c00031{bottom:263.175022px;}
.y1e_c00031{bottom:278.325022px;}
.y1d_c00031{bottom:293.775022px;}
.y1c_c00031{bottom:308.925022px;}
.y1b_c00031{bottom:324.750022px;}
.y1a_c00031{bottom:339.525022px;}
.y19_c00031{bottom:354.975022px;}
.y17_c00031{bottom:417.600022px;}
.y16_c00031{bottom:437.025022px;}
.y15_c00031{bottom:456.525022px;}
.y14_c00031{bottom:476.025022px;}
.y13_c00031{bottom:495.375022px;}
.y12_c00031{bottom:514.725022px;}
.y11_c00031{bottom:534.225022px;}
.y10_c00031{bottom:553.725022px;}
.yf_c00031{bottom:573.150022px;}
.ye_c00031{bottom:592.575022px;}
.yd_c00031{bottom:612.000022px;}
.yc_c00031{bottom:631.425022px;}
.yb_c00031{bottom:650.925022px;}
.ya_c00031{bottom:669.975022px;}
.y9_c00031{bottom:689.775022px;}
.y8_c00031{bottom:709.200022px;}
.y7_c00031{bottom:728.325022px;}
.y6_c00031{bottom:747.750022px;}
.y5_c00031{bottom:767.550022px;}
.y4_c00031{bottom:786.225022px;}
.y3_c00031{bottom:806.025022px;}
.y2_c00031{bottom:825.525022px;}
.y1_c00031{bottom:844.575022px;}
.y18_c00031{bottom:886.725022px;}
.h3_c00031{height:50.028809px;}
.h4_c00031{height:50.053711px;}
.h2_c00031{height:58.886719px;}
.h1_c00031{height:957.750000px;}
.h0_c00031{height:957.975000px;}
.w0_c00031{width:641.850030px;}
.w1_c00031{width:642.000000px;}
.x0_c00031{left:0.000000px;}
.x2_c00031{left:80.250000px;}
.x1_c00031{left:81.375000px;}
.x4_c00031{left:85.350000px;}
.x5_c00031{left:106.575000px;}
.x3_c00031{left:182.850000px;}
.x6_c00031{left:538.575000px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls0_c00031{letter-spacing:0.000000pt;}
.ws1_c00031{word-spacing:-13.333333pt;}
.ws0_c00031{word-spacing:-11.333333pt;}
.ws2_c00031{word-spacing:0.000000pt;}
._3_c00031{margin-left:-9.280000pt;}
._f_c00031{margin-left:-8.320000pt;}
._14_c00031{margin-left:-7.293355pt;}
._12_c00031{margin-left:-5.493333pt;}
._15_c00031{margin-left:-4.509325pt;}
._10_c00031{margin-left:-3.200000pt;}
._8_c00031{margin-left:-2.293333pt;}
._9_c00031{margin-left:-1.280000pt;}
._0_c00031{width:0.906667pt;}
._1_c00031{width:2.240000pt;}
._7_c00031{width:4.000000pt;}
._a_c00031{width:5.280000pt;}
._2_c00031{width:6.293333pt;}
._6_c00031{width:7.893333pt;}
._5_c00031{width:9.386667pt;}
._4_c00031{width:10.346667pt;}
._c_c00031{width:11.466667pt;}
._16_c00031{width:12.447955pt;}
._18_c00031{width:13.464120pt;}
._b_c00031{width:14.453333pt;}
._e_c00031{width:15.520000pt;}
._d_c00031{width:16.640000pt;}
._11_c00031{width:17.920000pt;}
._17_c00031{width:20.080005pt;}
._1a_c00031{width:21.040000pt;}
._19_c00031{width:22.373333pt;}
._13_c00031{width:23.706683pt;}
.fs1_c00031{font-size:45.333333pt;}
.fs0_c00031{font-size:53.333333pt;}
.y0_c00031{bottom:0.000000pt;}
.y2a_c00031{bottom:57.266686pt;}
.y29_c00031{bottom:97.933353pt;}
.y28_c00031{bottom:111.400020pt;}
.y27_c00031{bottom:125.133353pt;}
.y26_c00031{bottom:138.866686pt;}
.y25_c00031{bottom:152.333353pt;}
.y24_c00031{bottom:166.066686pt;}
.y23_c00031{bottom:179.866686pt;}
.y22_c00031{bottom:193.266686pt;}
.y21_c00031{bottom:206.733353pt;}
.y20_c00031{bottom:220.466686pt;}
.y1f_c00031{bottom:233.933353pt;}
.y1e_c00031{bottom:247.400020pt;}
.y1d_c00031{bottom:261.133353pt;}
.y1c_c00031{bottom:274.600020pt;}
.y1b_c00031{bottom:288.666686pt;}
.y1a_c00031{bottom:301.800020pt;}
.y19_c00031{bottom:315.533353pt;}
.y17_c00031{bottom:371.200020pt;}
.y16_c00031{bottom:388.466686pt;}
.y15_c00031{bottom:405.800020pt;}
.y14_c00031{bottom:423.133353pt;}
.y13_c00031{bottom:440.333353pt;}
.y12_c00031{bottom:457.533353pt;}
.y11_c00031{bottom:474.866686pt;}
.y10_c00031{bottom:492.200020pt;}
.yf_c00031{bottom:509.466686pt;}
.ye_c00031{bottom:526.733353pt;}
.yd_c00031{bottom:544.000020pt;}
.yc_c00031{bottom:561.266686pt;}
.yb_c00031{bottom:578.600020pt;}
.ya_c00031{bottom:595.533353pt;}
.y9_c00031{bottom:613.133353pt;}
.y8_c00031{bottom:630.400020pt;}
.y7_c00031{bottom:647.400020pt;}
.y6_c00031{bottom:664.666686pt;}
.y5_c00031{bottom:682.266686pt;}
.y4_c00031{bottom:698.866686pt;}
.y3_c00031{bottom:716.466686pt;}
.y2_c00031{bottom:733.800020pt;}
.y1_c00031{bottom:750.733353pt;}
.y18_c00031{bottom:788.200020pt;}
.h3_c00031{height:44.470052pt;}
.h4_c00031{height:44.492188pt;}
.h2_c00031{height:52.343750pt;}
.h1_c00031{height:851.333333pt;}
.h0_c00031{height:851.533333pt;}
.w0_c00031{width:570.533360pt;}
.w1_c00031{width:570.666667pt;}
.x0_c00031{left:0.000000pt;}
.x2_c00031{left:71.333333pt;}
.x1_c00031{left:72.333333pt;}
.x4_c00031{left:75.866667pt;}
.x5_c00031{left:94.733333pt;}
.x3_c00031{left:162.533333pt;}
.x6_c00031{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b3f5f6a29d6c1a2b30e1a963.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00032;src:url('chunks/assets/font_676b4b9fea2340f30e989413.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00032{letter-spacing:0.000000px;}
.ls0_c00032{letter-spacing:12.300000px;}
.sc__c00032{text-shadow:none;}
.sc0_c00032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00032{-webkit-text-stroke:0px transparent;}
.sc0_c00032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00032{word-spacing:-15.000000px;}
.ws1_c00032{word-spacing:-12.750000px;}
.ws2_c00032{word-spacing:0.000000px;}
._13_c00032{margin-left:-15.597189px;}
._14_c00032{margin-left:-10.988871px;}
._12_c00032{margin-left:-9.479904px;}
._f_c00032{margin-left:-7.727739px;}
._16_c00032{margin-left:-6.270618px;}
._17_c00032{margin-left:-5.010180px;}
._5_c00032{margin-left:-3.900000px;}
._3_c00032{margin-left:-2.276997px;}
._7_c00032{margin-left:-1.221027px;}
._1_c00032{width:1.049988px;}
._0_c00032{width:2.439024px;}
._4_c00032{width:3.468051px;}
._11_c00032{width:4.749186px;}
._2_c00032{width:5.922018px;}
._6_c00032{width:7.524108px;}
._8_c00032{width:9.383886px;}
._1a_c00032{width:10.455264px;}
._c_c00032{width:11.456997px;}
._e_c00032{width:12.710958px;}
._d_c00032{width:13.799925px;}
._19_c00032{width:15.074940px;}
._a_c00032{width:16.215087px;}
._b_c00032{width:17.463099px;}
._9_c00032{width:19.256997px;}
._10_c00032{width:21.041799px;}
._1b_c00032{width:23.871045px;}
._15_c00032{width:25.371057px;}
._18_c00032{width:28.703973px;}
.fc2_c00032{color:transparent;}
.fc1_c00032{color:rgb(0,0,0);}
.fc0_c00032{color:rgb(35,31,32);}
.fs0_c00032{font-size:51.000000px;}
.fs1_c00032{font-size:60.000000px;}
.y0_c00032{bottom:0.000000px;}
.y2b_c00032{bottom:64.800022px;}
.y2a_c00032{bottom:110.175022px;}
.y29_c00032{bottom:125.325022px;}
.y28_c00032{bottom:141.150022px;}
.y27_c00032{bottom:156.225022px;}
.y26_c00032{bottom:171.750022px;}
.y25_c00032{bottom:186.525022px;}
.y24_c00032{bottom:201.975022px;}
.y23_c00032{bottom:217.425022px;}
.y22_c00032{bottom:232.575022px;}
.y21_c00032{bottom:247.725022px;}
.y20_c00032{bottom:263.550022px;}
.y1f_c00032{bottom:278.625022px;}
.y1e_c00032{bottom:294.150022px;}
.y1d_c00032{bottom:308.925022px;}
.y1c_c00032{bottom:324.750022px;}
.y1b_c00032{bottom:339.825022px;}
.y1a_c00032{bottom:354.975022px;}
.y19_c00032{bottom:370.425022px;}
.y18_c00032{bottom:385.575022px;}
.y17_c00032{bottom:401.025022px;}
.y16_c00032{bottom:440.625022px;}
.y15_c00032{bottom:460.125022px;}
.y14_c00032{bottom:479.550022px;}
.y13_c00032{bottom:499.350022px;}
.y12_c00032{bottom:518.400022px;}
.y11_c00032{bottom:537.825022px;}
.y10_c00032{bottom:557.325022px;}
.yf_c00032{bottom:576.750022px;}
.ye_c00032{bottom:596.550022px;}
.yd_c00032{bottom:615.975022px;}
.yc_c00032{bottom:635.400022px;}
.yb_c00032{bottom:654.825022px;}
.ya_c00032{bottom:674.325022px;}
.y9_c00032{bottom:693.750022px;}
.y8_c00032{bottom:713.175022px;}
.y7_c00032{bottom:732.600022px;}
.y6_c00032{bottom:751.350022px;}
.y5_c00032{bottom:771.150022px;}
.y4_c00032{bottom:790.575022px;}
.y3_c00032{bottom:826.200022px;}
.y2_c00032{bottom:845.325022px;}
.y1_c00032{bottom:886.725022px;}
.h2_c00032{height:50.028809px;}
.h4_c00032{height:50.053711px;}
.h3_c00032{height:58.886719px;}
.h1_c00032{height:957.750000px;}
.h0_c00032{height:957.975000px;}
.w1_c00032{width:643.500000px;}
.w0_c00032{width:643.650000px;}
.x0_c00032{left:0.000000px;}
.x1_c00032{left:90.000000px;}
.x2_c00032{left:91.425000px;}
.x4_c00032{left:95.025000px;}
.x3_c00032{left:106.950000px;}
.x5_c00032{left:116.625000px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls1_c00032{letter-spacing:0.000000pt;}
.ls0_c00032{letter-spacing:10.933333pt;}
.ws0_c00032{word-spacing:-13.333333pt;}
.ws1_c00032{word-spacing:-11.333333pt;}
.ws2_c00032{word-spacing:0.000000pt;}
._13_c00032{margin-left:-13.864168pt;}
._14_c00032{margin-left:-9.767885pt;}
._12_c00032{margin-left:-8.426581pt;}
._f_c00032{margin-left:-6.869101pt;}
._16_c00032{margin-left:-5.573883pt;}
._17_c00032{margin-left:-4.453493pt;}
._5_c00032{margin-left:-3.466667pt;}
._3_c00032{margin-left:-2.023997pt;}
._7_c00032{margin-left:-1.085357pt;}
._1_c00032{width:0.933323pt;}
._0_c00032{width:2.168021pt;}
._4_c00032{width:3.082712pt;}
._11_c00032{width:4.221499pt;}
._2_c00032{width:5.264016pt;}
._6_c00032{width:6.688096pt;}
._8_c00032{width:8.341232pt;}
._1a_c00032{width:9.293568pt;}
._c_c00032{width:10.183997pt;}
._e_c00032{width:11.298629pt;}
._d_c00032{width:12.266600pt;}
._19_c00032{width:13.399947pt;}
._a_c00032{width:14.413411pt;}
._b_c00032{width:15.522755pt;}
._9_c00032{width:17.117331pt;}
._10_c00032{width:18.703821pt;}
._1b_c00032{width:21.218707pt;}
._15_c00032{width:22.552051pt;}
._18_c00032{width:25.514643pt;}
.fs0_c00032{font-size:45.333333pt;}
.fs1_c00032{font-size:53.333333pt;}
.y0_c00032{bottom:0.000000pt;}
.y2b_c00032{bottom:57.600020pt;}
.y2a_c00032{bottom:97.933353pt;}
.y29_c00032{bottom:111.400020pt;}
.y28_c00032{bottom:125.466686pt;}
.y27_c00032{bottom:138.866686pt;}
.y26_c00032{bottom:152.666686pt;}
.y25_c00032{bottom:165.800020pt;}
.y24_c00032{bottom:179.533353pt;}
.y23_c00032{bottom:193.266686pt;}
.y22_c00032{bottom:206.733353pt;}
.y21_c00032{bottom:220.200020pt;}
.y20_c00032{bottom:234.266686pt;}
.y1f_c00032{bottom:247.666686pt;}
.y1e_c00032{bottom:261.466686pt;}
.y1d_c00032{bottom:274.600020pt;}
.y1c_c00032{bottom:288.666686pt;}
.y1b_c00032{bottom:302.066686pt;}
.y1a_c00032{bottom:315.533353pt;}
.y19_c00032{bottom:329.266686pt;}
.y18_c00032{bottom:342.733353pt;}
.y17_c00032{bottom:356.466686pt;}
.y16_c00032{bottom:391.666686pt;}
.y15_c00032{bottom:409.000020pt;}
.y14_c00032{bottom:426.266686pt;}
.y13_c00032{bottom:443.866686pt;}
.y12_c00032{bottom:460.800020pt;}
.y11_c00032{bottom:478.066686pt;}
.y10_c00032{bottom:495.400020pt;}
.yf_c00032{bottom:512.666686pt;}
.ye_c00032{bottom:530.266686pt;}
.yd_c00032{bottom:547.533353pt;}
.yc_c00032{bottom:564.800020pt;}
.yb_c00032{bottom:582.066686pt;}
.ya_c00032{bottom:599.400020pt;}
.y9_c00032{bottom:616.666686pt;}
.y8_c00032{bottom:633.933353pt;}
.y7_c00032{bottom:651.200020pt;}
.y6_c00032{bottom:667.866686pt;}
.y5_c00032{bottom:685.466686pt;}
.y4_c00032{bottom:702.733353pt;}
.y3_c00032{bottom:734.400020pt;}
.y2_c00032{bottom:751.400020pt;}
.y1_c00032{bottom:788.200020pt;}
.h2_c00032{height:44.470052pt;}
.h4_c00032{height:44.492188pt;}
.h3_c00032{height:52.343750pt;}
.h1_c00032{height:851.333333pt;}
.h0_c00032{height:851.533333pt;}
.w1_c00032{width:572.000000pt;}
.w0_c00032{width:572.133333pt;}
.x0_c00032{left:0.000000pt;}
.x1_c00032{left:80.000000pt;}
.x2_c00032{left:81.266667pt;}
.x4_c00032{left:84.466667pt;}
.x3_c00032{left:95.066667pt;}
.x5_c00032{left:103.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d7459e80d1b6bd7230e3f4b5.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00033;src:url('chunks/assets/font_4dc6fc08f8cd55752ea4dccc.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00033{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_c00033{vertical-align:0.000000px;}
.ls0_c00033{letter-spacing:0.000000px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00033{word-spacing:-15.000000px;}
.ws0_c00033{word-spacing:-12.750000px;}
.ws2_c00033{word-spacing:0.000000px;}
._f_c00033{margin-left:-11.756946px;}
._4_c00033{margin-left:-10.718982px;}
._12_c00033{margin-left:-9.557964px;}
._e_c00033{margin-left:-8.400000px;}
._16_c00033{margin-left:-6.501057px;}
._d_c00033{margin-left:-5.241018px;}
._13_c00033{margin-left:-4.181694px;}
._3_c00033{margin-left:-2.849982px;}
._0_c00033{margin-left:-1.566006px;}
._2_c00033{width:1.778982px;}
._1_c00033{width:3.021036px;}
._a_c00033{width:4.136892px;}
._b_c00033{width:5.568390px;}
._11_c00033{width:6.573054px;}
._7_c00033{width:8.090958px;}
._5_c00033{width:9.218982px;}
._6_c00033{width:10.797186px;}
._8_c00033{width:12.555066px;}
._10_c00033{width:13.964934px;}
._15_c00033{width:15.834201px;}
._9_c00033{width:17.181018px;}
._c_c00033{width:18.720000px;}
._18_c00033{width:21.150000px;}
._17_c00033{width:22.716006px;}
._19_c00033{width:24.299994px;}
._1a_c00033{width:25.473129px;}
._1b_c00033{width:26.541192px;}
._14_c00033{width:28.566018px;}
.fc1_c00033{color:transparent;}
.fc0_c00033{color:rgb(35,31,32);}
.fs0_c00033{font-size:51.000000px;}
.fs1_c00033{font-size:60.000000px;}
.y0_c00033{bottom:0.000000px;}
.y2d_c00033{bottom:64.425022px;}
.y2c_c00033{bottom:110.550022px;}
.y2b_c00033{bottom:125.325022px;}
.y2a_c00033{bottom:140.775022px;}
.y29_c00033{bottom:155.925022px;}
.y28_c00033{bottom:171.375022px;}
.y27_c00033{bottom:186.525022px;}
.y26_c00033{bottom:201.975022px;}
.y25_c00033{bottom:217.125022px;}
.y24_c00033{bottom:232.950022px;}
.y23_c00033{bottom:247.725022px;}
.y22_c00033{bottom:263.175022px;}
.y21_c00033{bottom:278.325022px;}
.y20_c00033{bottom:293.775022px;}
.y1f_c00033{bottom:309.225022px;}
.y1e_c00033{bottom:324.750022px;}
.y1d_c00033{bottom:339.825022px;}
.y1c_c00033{bottom:355.275022px;}
.y1b_c00033{bottom:370.425022px;}
.y1a_c00033{bottom:385.575022px;}
.y19_c00033{bottom:400.725022px;}
.y18_c00033{bottom:416.175022px;}
.y17_c00033{bottom:431.625022px;}
.y16_c00033{bottom:447.150022px;}
.y15_c00033{bottom:461.925022px;}
.y14_c00033{bottom:477.375022px;}
.y13_c00033{bottom:492.525022px;}
.y12_c00033{bottom:534.225022px;}
.y11_c00033{bottom:553.725022px;}
.y10_c00033{bottom:573.150022px;}
.yf_c00033{bottom:592.575022px;}
.ye_c00033{bottom:612.000022px;}
.yd_c00033{bottom:631.125022px;}
.yc_c00033{bottom:650.925022px;}
.yb_c00033{bottom:669.975022px;}
.ya_c00033{bottom:689.775022px;}
.y9_c00033{bottom:709.200022px;}
.y8_c00033{bottom:728.325022px;}
.y7_c00033{bottom:747.750022px;}
.y6_c00033{bottom:767.175022px;}
.y5_c00033{bottom:786.600022px;}
.y4_c00033{bottom:806.025022px;}
.y3_c00033{bottom:825.150022px;}
.y2_c00033{bottom:844.575022px;}
.y1_c00033{bottom:886.725022px;}
.h2_c00033{height:50.028809px;}
.h4_c00033{height:50.053711px;}
.h5_c00033{height:50.353711px;}
.h3_c00033{height:58.886719px;}
.h1_c00033{height:957.750000px;}
.h0_c00033{height:957.975000px;}
.w0_c00033{width:641.850030px;}
.w1_c00033{width:642.000000px;}
.x0_c00033{left:0.000000px;}
.x2_c00033{left:81.000000px;}
.x4_c00033{left:84.975000px;}
.x3_c00033{left:97.200000px;}
.x5_c00033{left:106.950000px;}
.x1_c00033{left:182.850000px;}
.x6_c00033{left:538.575000px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls0_c00033{letter-spacing:0.000000pt;}
.ws1_c00033{word-spacing:-13.333333pt;}
.ws0_c00033{word-spacing:-11.333333pt;}
.ws2_c00033{word-spacing:0.000000pt;}
._f_c00033{margin-left:-10.450619pt;}
._4_c00033{margin-left:-9.527984pt;}
._12_c00033{margin-left:-8.495968pt;}
._e_c00033{margin-left:-7.466667pt;}
._16_c00033{margin-left:-5.778717pt;}
._d_c00033{margin-left:-4.658683pt;}
._13_c00033{margin-left:-3.717061pt;}
._3_c00033{margin-left:-2.533317pt;}
._0_c00033{margin-left:-1.392005pt;}
._2_c00033{width:1.581317pt;}
._1_c00033{width:2.685365pt;}
._a_c00033{width:3.677237pt;}
._b_c00033{width:4.949680pt;}
._11_c00033{width:5.842715pt;}
._7_c00033{width:7.191963pt;}
._5_c00033{width:8.194651pt;}
._6_c00033{width:9.597499pt;}
._8_c00033{width:11.160059pt;}
._10_c00033{width:12.413275pt;}
._15_c00033{width:14.074845pt;}
._9_c00033{width:15.272016pt;}
._c_c00033{width:16.640000pt;}
._18_c00033{width:18.800000pt;}
._17_c00033{width:20.192005pt;}
._19_c00033{width:21.599995pt;}
._1a_c00033{width:22.642781pt;}
._1b_c00033{width:23.592171pt;}
._14_c00033{width:25.392016pt;}
.fs0_c00033{font-size:45.333333pt;}
.fs1_c00033{font-size:53.333333pt;}
.y0_c00033{bottom:0.000000pt;}
.y2d_c00033{bottom:57.266686pt;}
.y2c_c00033{bottom:98.266686pt;}
.y2b_c00033{bottom:111.400020pt;}
.y2a_c00033{bottom:125.133353pt;}
.y29_c00033{bottom:138.600020pt;}
.y28_c00033{bottom:152.333353pt;}
.y27_c00033{bottom:165.800020pt;}
.y26_c00033{bottom:179.533353pt;}
.y25_c00033{bottom:193.000020pt;}
.y24_c00033{bottom:207.066686pt;}
.y23_c00033{bottom:220.200020pt;}
.y22_c00033{bottom:233.933353pt;}
.y21_c00033{bottom:247.400020pt;}
.y20_c00033{bottom:261.133353pt;}
.y1f_c00033{bottom:274.866686pt;}
.y1e_c00033{bottom:288.666686pt;}
.y1d_c00033{bottom:302.066686pt;}
.y1c_c00033{bottom:315.800020pt;}
.y1b_c00033{bottom:329.266686pt;}
.y1a_c00033{bottom:342.733353pt;}
.y19_c00033{bottom:356.200020pt;}
.y18_c00033{bottom:369.933353pt;}
.y17_c00033{bottom:383.666686pt;}
.y16_c00033{bottom:397.466686pt;}
.y15_c00033{bottom:410.600020pt;}
.y14_c00033{bottom:424.333353pt;}
.y13_c00033{bottom:437.800020pt;}
.y12_c00033{bottom:474.866686pt;}
.y11_c00033{bottom:492.200020pt;}
.y10_c00033{bottom:509.466686pt;}
.yf_c00033{bottom:526.733353pt;}
.ye_c00033{bottom:544.000020pt;}
.yd_c00033{bottom:561.000020pt;}
.yc_c00033{bottom:578.600020pt;}
.yb_c00033{bottom:595.533353pt;}
.ya_c00033{bottom:613.133353pt;}
.y9_c00033{bottom:630.400020pt;}
.y8_c00033{bottom:647.400020pt;}
.y7_c00033{bottom:664.666686pt;}
.y6_c00033{bottom:681.933353pt;}
.y5_c00033{bottom:699.200020pt;}
.y4_c00033{bottom:716.466686pt;}
.y3_c00033{bottom:733.466686pt;}
.y2_c00033{bottom:750.733353pt;}
.y1_c00033{bottom:788.200020pt;}
.h2_c00033{height:44.470052pt;}
.h4_c00033{height:44.492188pt;}
.h5_c00033{height:44.758854pt;}
.h3_c00033{height:52.343750pt;}
.h1_c00033{height:851.333333pt;}
.h0_c00033{height:851.533333pt;}
.w0_c00033{width:570.533360pt;}
.w1_c00033{width:570.666667pt;}
.x0_c00033{left:0.000000pt;}
.x2_c00033{left:72.000000pt;}
.x4_c00033{left:75.533333pt;}
.x3_c00033{left:86.400000pt;}
.x5_c00033{left:95.066667pt;}
.x1_c00033{left:162.533333pt;}
.x6_c00033{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_29a3156b233e2e95f00a467a.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00034;src:url('chunks/assets/font_ce1a2ee1e9fc37ef01bfb378.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.ls0_c00034{letter-spacing:0.000000px;}
.sc__c00034{text-shadow:none;}
.sc0_c00034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00034{-webkit-text-stroke:0px transparent;}
.sc0_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00034{word-spacing:-15.000000px;}
.ws0_c00034{word-spacing:-12.750000px;}
.ws2_c00034{word-spacing:0.000000px;}
._9_c00034{margin-left:-13.740000px;}
._10_c00034{margin-left:-11.160000px;}
._f_c00034{margin-left:-9.540000px;}
._e_c00034{margin-left:-7.860000px;}
._17_c00034{margin-left:-6.782985px;}
._13_c00034{margin-left:-5.640000px;}
._11_c00034{margin-left:-4.260000px;}
._8_c00034{margin-left:-2.700000px;}
._2_c00034{margin-left:-1.620000px;}
._0_c00034{width:1.740000px;}
._6_c00034{width:3.000000px;}
._7_c00034{width:4.860000px;}
._b_c00034{width:6.120000px;}
._c_c00034{width:7.560000px;}
._4_c00034{width:8.820000px;}
._a_c00034{width:9.840000px;}
._3_c00034{width:11.100000px;}
._1_c00034{width:12.600000px;}
._5_c00034{width:13.980000px;}
._d_c00034{width:16.080000px;}
._12_c00034{width:18.060000px;}
._1a_c00034{width:20.070000px;}
._15_c00034{width:22.770000px;}
._1b_c00034{width:24.149979px;}
._16_c00034{width:25.350000px;}
._18_c00034{width:27.669045px;}
._14_c00034{width:29.549979px;}
._19_c00034{width:31.865979px;}
.fc1_c00034{color:transparent;}
.fc0_c00034{color:rgb(35,31,32);}
.fs1_c00034{font-size:51.000000px;}
.fs0_c00034{font-size:60.000000px;}
.y0_c00034{bottom:0.000000px;}
.y2b_c00034{bottom:64.800022px;}
.y2a_c00034{bottom:110.175022px;}
.y29_c00034{bottom:125.325022px;}
.y28_c00034{bottom:140.775022px;}
.y27_c00034{bottom:155.925022px;}
.y26_c00034{bottom:171.375022px;}
.y25_c00034{bottom:186.525022px;}
.y24_c00034{bottom:201.975022px;}
.y23_c00034{bottom:217.425022px;}
.y22_c00034{bottom:232.575022px;}
.y21_c00034{bottom:248.025022px;}
.y20_c00034{bottom:262.800022px;}
.y1f_c00034{bottom:278.625022px;}
.y1e_c00034{bottom:293.775022px;}
.y1d_c00034{bottom:309.225022px;}
.y1c_c00034{bottom:324.750022px;}
.y1b_c00034{bottom:339.525022px;}
.y1a_c00034{bottom:355.350022px;}
.y19_c00034{bottom:370.425022px;}
.y18_c00034{bottom:385.950022px;}
.y17_c00034{bottom:400.725022px;}
.y16_c00034{bottom:416.175022px;}
.y14_c00034{bottom:475.950022px;}
.y13_c00034{bottom:495.375022px;}
.y12_c00034{bottom:514.800022px;}
.y11_c00034{bottom:534.225022px;}
.y10_c00034{bottom:553.725022px;}
.yf_c00034{bottom:573.150022px;}
.ye_c00034{bottom:592.200022px;}
.yd_c00034{bottom:611.625022px;}
.yc_c00034{bottom:631.425022px;}
.yb_c00034{bottom:650.550022px;}
.ya_c00034{bottom:670.350022px;}
.y9_c00034{bottom:689.775022px;}
.y8_c00034{bottom:709.200022px;}
.y7_c00034{bottom:728.325022px;}
.y6_c00034{bottom:747.750022px;}
.y5_c00034{bottom:767.550022px;}
.y4_c00034{bottom:786.600022px;}
.y3_c00034{bottom:806.025022px;}
.y2_c00034{bottom:825.150022px;}
.y1_c00034{bottom:844.950022px;}
.y15_c00034{bottom:886.725022px;}
.h3_c00034{height:50.028809px;}
.h4_c00034{height:50.053711px;}
.h2_c00034{height:58.886719px;}
.h1_c00034{height:957.750000px;}
.h0_c00034{height:957.975000px;}
.w1_c00034{width:643.500000px;}
.w0_c00034{width:643.650000px;}
.x0_c00034{left:0.000000px;}
.x3_c00034{left:90.000000px;}
.x1_c00034{left:91.425000px;}
.x5_c00034{left:95.025000px;}
.x2_c00034{left:106.950000px;}
.x4_c00034{left:116.250000px;}
.x6_c00034{left:117.375000px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls0_c00034{letter-spacing:0.000000pt;}
.ws1_c00034{word-spacing:-13.333333pt;}
.ws0_c00034{word-spacing:-11.333333pt;}
.ws2_c00034{word-spacing:0.000000pt;}
._9_c00034{margin-left:-12.213333pt;}
._10_c00034{margin-left:-9.920000pt;}
._f_c00034{margin-left:-8.480000pt;}
._e_c00034{margin-left:-6.986667pt;}
._17_c00034{margin-left:-6.029320pt;}
._13_c00034{margin-left:-5.013333pt;}
._11_c00034{margin-left:-3.786667pt;}
._8_c00034{margin-left:-2.400000pt;}
._2_c00034{margin-left:-1.440000pt;}
._0_c00034{width:1.546667pt;}
._6_c00034{width:2.666667pt;}
._7_c00034{width:4.320000pt;}
._b_c00034{width:5.440000pt;}
._c_c00034{width:6.720000pt;}
._4_c00034{width:7.840000pt;}
._a_c00034{width:8.746667pt;}
._3_c00034{width:9.866667pt;}
._1_c00034{width:11.200000pt;}
._5_c00034{width:12.426667pt;}
._d_c00034{width:14.293333pt;}
._12_c00034{width:16.053333pt;}
._1a_c00034{width:17.840000pt;}
._15_c00034{width:20.240000pt;}
._1b_c00034{width:21.466648pt;}
._16_c00034{width:22.533333pt;}
._18_c00034{width:24.594707pt;}
._14_c00034{width:26.266648pt;}
._19_c00034{width:28.325315pt;}
.fs1_c00034{font-size:45.333333pt;}
.fs0_c00034{font-size:53.333333pt;}
.y0_c00034{bottom:0.000000pt;}
.y2b_c00034{bottom:57.600020pt;}
.y2a_c00034{bottom:97.933353pt;}
.y29_c00034{bottom:111.400020pt;}
.y28_c00034{bottom:125.133353pt;}
.y27_c00034{bottom:138.600020pt;}
.y26_c00034{bottom:152.333353pt;}
.y25_c00034{bottom:165.800020pt;}
.y24_c00034{bottom:179.533353pt;}
.y23_c00034{bottom:193.266686pt;}
.y22_c00034{bottom:206.733353pt;}
.y21_c00034{bottom:220.466686pt;}
.y20_c00034{bottom:233.600020pt;}
.y1f_c00034{bottom:247.666686pt;}
.y1e_c00034{bottom:261.133353pt;}
.y1d_c00034{bottom:274.866686pt;}
.y1c_c00034{bottom:288.666686pt;}
.y1b_c00034{bottom:301.800020pt;}
.y1a_c00034{bottom:315.866686pt;}
.y19_c00034{bottom:329.266686pt;}
.y18_c00034{bottom:343.066686pt;}
.y17_c00034{bottom:356.200020pt;}
.y16_c00034{bottom:369.933353pt;}
.y14_c00034{bottom:423.066686pt;}
.y13_c00034{bottom:440.333353pt;}
.y12_c00034{bottom:457.600020pt;}
.y11_c00034{bottom:474.866686pt;}
.y10_c00034{bottom:492.200020pt;}
.yf_c00034{bottom:509.466686pt;}
.ye_c00034{bottom:526.400020pt;}
.yd_c00034{bottom:543.666686pt;}
.yc_c00034{bottom:561.266686pt;}
.yb_c00034{bottom:578.266686pt;}
.ya_c00034{bottom:595.866686pt;}
.y9_c00034{bottom:613.133353pt;}
.y8_c00034{bottom:630.400020pt;}
.y7_c00034{bottom:647.400020pt;}
.y6_c00034{bottom:664.666686pt;}
.y5_c00034{bottom:682.266686pt;}
.y4_c00034{bottom:699.200020pt;}
.y3_c00034{bottom:716.466686pt;}
.y2_c00034{bottom:733.466686pt;}
.y1_c00034{bottom:751.066686pt;}
.y15_c00034{bottom:788.200020pt;}
.h3_c00034{height:44.470052pt;}
.h4_c00034{height:44.492188pt;}
.h2_c00034{height:52.343750pt;}
.h1_c00034{height:851.333333pt;}
.h0_c00034{height:851.533333pt;}
.w1_c00034{width:572.000000pt;}
.w0_c00034{width:572.133333pt;}
.x0_c00034{left:0.000000pt;}
.x3_c00034{left:80.000000pt;}
.x1_c00034{left:81.266667pt;}
.x5_c00034{left:84.466667pt;}
.x2_c00034{left:95.066667pt;}
.x4_c00034{left:103.333333pt;}
.x6_c00034{left:104.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ded18b09765c7feee5d095ce.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00035;src:url('chunks/assets/font_ff4286c9af31767f38811a3d.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00035{letter-spacing:0.000000px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00035{word-spacing:-15.000000px;}
.ws0_c00035{word-spacing:-12.750000px;}
.ws2_c00035{word-spacing:0.000000px;}
._10_c00035{margin-left:-14.640000px;}
._12_c00035{margin-left:-11.160000px;}
._9_c00035{margin-left:-10.140000px;}
._2_c00035{margin-left:-9.000000px;}
._1_c00035{margin-left:-7.800000px;}
._18_c00035{margin-left:-6.767850px;}
._13_c00035{margin-left:-5.280000px;}
._d_c00035{margin-left:-3.660000px;}
._5_c00035{margin-left:-1.740000px;}
._0_c00035{width:1.620000px;}
._6_c00035{width:2.760000px;}
._4_c00035{width:4.080000px;}
._3_c00035{width:5.100000px;}
._f_c00035{width:6.120000px;}
._e_c00035{width:7.680000px;}
._11_c00035{width:8.760000px;}
._b_c00035{width:10.620000px;}
._7_c00035{width:12.240000px;}
._a_c00035{width:13.980000px;}
._16_c00035{width:15.221976px;}
._c_c00035{width:16.560000px;}
._8_c00035{width:18.180000px;}
._14_c00035{width:24.390018px;}
._15_c00035{width:25.890030px;}
._17_c00035{width:28.470006px;}
.fc1_c00035{color:transparent;}
.fc0_c00035{color:rgb(35,31,32);}
.fs1_c00035{font-size:51.000000px;}
.fs0_c00035{font-size:60.000000px;}
.y0_c00035{bottom:0.000000px;}
.y2c_c00035{bottom:64.425022px;}
.y2b_c00035{bottom:110.175022px;}
.y2a_c00035{bottom:125.325022px;}
.y29_c00035{bottom:140.775022px;}
.y28_c00035{bottom:155.925022px;}
.y27_c00035{bottom:171.750022px;}
.y26_c00035{bottom:186.525022px;}
.y25_c00035{bottom:201.975022px;}
.y24_c00035{bottom:217.425022px;}
.y23_c00035{bottom:232.575022px;}
.y22_c00035{bottom:247.725022px;}
.y21_c00035{bottom:263.550022px;}
.y20_c00035{bottom:278.325022px;}
.y1f_c00035{bottom:293.775022px;}
.y1e_c00035{bottom:309.225022px;}
.y1d_c00035{bottom:324.750022px;}
.y1c_c00035{bottom:339.825022px;}
.y1b_c00035{bottom:354.975022px;}
.y1a_c00035{bottom:370.125022px;}
.y19_c00035{bottom:385.950022px;}
.y18_c00035{bottom:401.025022px;}
.y17_c00035{bottom:416.550022px;}
.y16_c00035{bottom:431.625022px;}
.y15_c00035{bottom:447.150022px;}
.y14_c00035{bottom:461.925022px;}
.y13_c00035{bottom:477.375022px;}
.y11_c00035{bottom:534.225022px;}
.y10_c00035{bottom:553.725022px;}
.yf_c00035{bottom:572.775022px;}
.ye_c00035{bottom:592.575022px;}
.yd_c00035{bottom:612.000022px;}
.yc_c00035{bottom:631.425022px;}
.yb_c00035{bottom:650.550022px;}
.ya_c00035{bottom:670.350022px;}
.y9_c00035{bottom:689.775022px;}
.y8_c00035{bottom:708.825022px;}
.y7_c00035{bottom:728.625022px;}
.y6_c00035{bottom:748.125022px;}
.y5_c00035{bottom:767.175022px;}
.y4_c00035{bottom:786.600022px;}
.y3_c00035{bottom:806.025022px;}
.y2_c00035{bottom:825.150022px;}
.y1_c00035{bottom:844.950022px;}
.y12_c00035{bottom:886.725022px;}
.h3_c00035{height:50.028809px;}
.h4_c00035{height:50.053711px;}
.h2_c00035{height:58.886719px;}
.h1_c00035{height:957.750000px;}
.h0_c00035{height:957.975000px;}
.w0_c00035{width:641.850030px;}
.w1_c00035{width:642.000000px;}
.x0_c00035{left:0.000000px;}
.x1_c00035{left:81.000000px;}
.x3_c00035{left:84.975000px;}
.x4_c00035{left:106.575000px;}
.x2_c00035{left:182.850000px;}
.x5_c00035{left:538.575000px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls0_c00035{letter-spacing:0.000000pt;}
.ws1_c00035{word-spacing:-13.333333pt;}
.ws0_c00035{word-spacing:-11.333333pt;}
.ws2_c00035{word-spacing:0.000000pt;}
._10_c00035{margin-left:-13.013333pt;}
._12_c00035{margin-left:-9.920000pt;}
._9_c00035{margin-left:-9.013333pt;}
._2_c00035{margin-left:-8.000000pt;}
._1_c00035{margin-left:-6.933333pt;}
._18_c00035{margin-left:-6.015867pt;}
._13_c00035{margin-left:-4.693333pt;}
._d_c00035{margin-left:-3.253333pt;}
._5_c00035{margin-left:-1.546667pt;}
._0_c00035{width:1.440000pt;}
._6_c00035{width:2.453333pt;}
._4_c00035{width:3.626667pt;}
._3_c00035{width:4.533333pt;}
._f_c00035{width:5.440000pt;}
._e_c00035{width:6.826667pt;}
._11_c00035{width:7.786667pt;}
._b_c00035{width:9.440000pt;}
._7_c00035{width:10.880000pt;}
._a_c00035{width:12.426667pt;}
._16_c00035{width:13.530645pt;}
._c_c00035{width:14.720000pt;}
._8_c00035{width:16.160000pt;}
._14_c00035{width:21.680016pt;}
._15_c00035{width:23.013360pt;}
._17_c00035{width:25.306672pt;}
.fs1_c00035{font-size:45.333333pt;}
.fs0_c00035{font-size:53.333333pt;}
.y0_c00035{bottom:0.000000pt;}
.y2c_c00035{bottom:57.266686pt;}
.y2b_c00035{bottom:97.933353pt;}
.y2a_c00035{bottom:111.400020pt;}
.y29_c00035{bottom:125.133353pt;}
.y28_c00035{bottom:138.600020pt;}
.y27_c00035{bottom:152.666686pt;}
.y26_c00035{bottom:165.800020pt;}
.y25_c00035{bottom:179.533353pt;}
.y24_c00035{bottom:193.266686pt;}
.y23_c00035{bottom:206.733353pt;}
.y22_c00035{bottom:220.200020pt;}
.y21_c00035{bottom:234.266686pt;}
.y20_c00035{bottom:247.400020pt;}
.y1f_c00035{bottom:261.133353pt;}
.y1e_c00035{bottom:274.866686pt;}
.y1d_c00035{bottom:288.666686pt;}
.y1c_c00035{bottom:302.066686pt;}
.y1b_c00035{bottom:315.533353pt;}
.y1a_c00035{bottom:329.000020pt;}
.y19_c00035{bottom:343.066686pt;}
.y18_c00035{bottom:356.466686pt;}
.y17_c00035{bottom:370.266686pt;}
.y16_c00035{bottom:383.666686pt;}
.y15_c00035{bottom:397.466686pt;}
.y14_c00035{bottom:410.600020pt;}
.y13_c00035{bottom:424.333353pt;}
.y11_c00035{bottom:474.866686pt;}
.y10_c00035{bottom:492.200020pt;}
.yf_c00035{bottom:509.133353pt;}
.ye_c00035{bottom:526.733353pt;}
.yd_c00035{bottom:544.000020pt;}
.yc_c00035{bottom:561.266686pt;}
.yb_c00035{bottom:578.266686pt;}
.ya_c00035{bottom:595.866686pt;}
.y9_c00035{bottom:613.133353pt;}
.y8_c00035{bottom:630.066686pt;}
.y7_c00035{bottom:647.666686pt;}
.y6_c00035{bottom:665.000020pt;}
.y5_c00035{bottom:681.933353pt;}
.y4_c00035{bottom:699.200020pt;}
.y3_c00035{bottom:716.466686pt;}
.y2_c00035{bottom:733.466686pt;}
.y1_c00035{bottom:751.066686pt;}
.y12_c00035{bottom:788.200020pt;}
.h3_c00035{height:44.470052pt;}
.h4_c00035{height:44.492188pt;}
.h2_c00035{height:52.343750pt;}
.h1_c00035{height:851.333333pt;}
.h0_c00035{height:851.533333pt;}
.w0_c00035{width:570.533360pt;}
.w1_c00035{width:570.666667pt;}
.x0_c00035{left:0.000000pt;}
.x1_c00035{left:72.000000pt;}
.x3_c00035{left:75.533333pt;}
.x4_c00035{left:94.733333pt;}
.x2_c00035{left:162.533333pt;}
.x5_c00035{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_91f4ffb04f397154c3271bcd.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00036;src:url('chunks/assets/font_e1b7ba7d3b892fb370479ee7.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls1_c00036{letter-spacing:0.000000px;}
.ls0_c00036{letter-spacing:16.800000px;}
.sc__c00036{text-shadow:none;}
.sc0_c00036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00036{-webkit-text-stroke:0px transparent;}
.sc0_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00036{word-spacing:-15.000000px;}
.ws1_c00036{word-spacing:-12.750000px;}
.ws2_c00036{word-spacing:0.000000px;}
._6_c00036{margin-left:-12.240000px;}
._c_c00036{margin-left:-9.780000px;}
._e_c00036{margin-left:-8.460000px;}
._f_c00036{margin-left:-7.020000px;}
._14_c00036{margin-left:-5.177955px;}
._7_c00036{margin-left:-3.900000px;}
._9_c00036{margin-left:-2.580000px;}
._3_c00036{margin-left:-1.440000px;}
._0_c00036{width:1.080000px;}
._2_c00036{width:2.220000px;}
._1_c00036{width:3.780000px;}
._4_c00036{width:5.100000px;}
._5_c00036{width:6.240000px;}
._d_c00036{width:7.320000px;}
._b_c00036{width:8.880000px;}
._16_c00036{width:10.194006px;}
._a_c00036{width:11.340000px;}
._8_c00036{width:12.660000px;}
._19_c00036{width:14.033991px;}
._18_c00036{width:16.296114px;}
._12_c00036{width:17.580000px;}
._11_c00036{width:18.840000px;}
._10_c00036{width:20.340000px;}
._15_c00036{width:23.669994px;}
._17_c00036{width:25.590000px;}
._13_c00036{width:26.670018px;}
.fc2_c00036{color:transparent;}
.fc1_c00036{color:rgb(0,0,0);}
.fc0_c00036{color:rgb(35,31,32);}
.fs1_c00036{font-size:51.000000px;}
.fs0_c00036{font-size:60.000000px;}
.y0_c00036{bottom:0.000000px;}
.y27_c00036{bottom:64.425022px;}
.y26_c00036{bottom:110.175022px;}
.y25_c00036{bottom:125.325022px;}
.y24_c00036{bottom:141.150022px;}
.y23_c00036{bottom:155.925022px;}
.y22_c00036{bottom:171.750022px;}
.y21_c00036{bottom:186.525022px;}
.y20_c00036{bottom:201.975022px;}
.y1f_c00036{bottom:217.125022px;}
.y1e_c00036{bottom:232.950022px;}
.y1d_c00036{bottom:248.025022px;}
.y1c_c00036{bottom:263.175022px;}
.y1b_c00036{bottom:278.325022px;}
.y1a_c00036{bottom:294.150022px;}
.y19_c00036{bottom:308.925022px;}
.y18_c00036{bottom:324.375022px;}
.y17_c00036{bottom:339.525022px;}
.y16_c00036{bottom:355.350022px;}
.y15_c00036{bottom:370.125022px;}
.y14_c00036{bottom:385.575022px;}
.y13_c00036{bottom:400.725022px;}
.y12_c00036{bottom:416.550022px;}
.y11_c00036{bottom:431.325022px;}
.y10_c00036{bottom:446.775022px;}
.yf_c00036{bottom:461.925022px;}
.ye_c00036{bottom:567.375022px;}
.yd_c00036{bottom:586.800022px;}
.yc_c00036{bottom:605.925022px;}
.yb_c00036{bottom:625.725022px;}
.ya_c00036{bottom:644.775022px;}
.y9_c00036{bottom:664.200022px;}
.y8_c00036{bottom:683.625022px;}
.y7_c00036{bottom:702.750022px;}
.y6_c00036{bottom:722.175022px;}
.y5_c00036{bottom:741.975022px;}
.y4_c00036{bottom:776.550022px;}
.y2_c00036{bottom:825.525022px;}
.y1_c00036{bottom:844.950022px;}
.y3_c00036{bottom:886.725022px;}
.h3_c00036{height:50.028809px;}
.h4_c00036{height:50.053711px;}
.h2_c00036{height:58.886719px;}
.h1_c00036{height:957.750000px;}
.h0_c00036{height:957.975000px;}
.w1_c00036{width:643.500000px;}
.w0_c00036{width:643.650000px;}
.x0_c00036{left:0.000000px;}
.x2_c00036{left:90.000000px;}
.x1_c00036{left:91.425000px;}
.x3_c00036{left:95.400000px;}
.x4_c00036{left:117.000000px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls1_c00036{letter-spacing:0.000000pt;}
.ls0_c00036{letter-spacing:14.933333pt;}
.ws0_c00036{word-spacing:-13.333333pt;}
.ws1_c00036{word-spacing:-11.333333pt;}
.ws2_c00036{word-spacing:0.000000pt;}
._6_c00036{margin-left:-10.880000pt;}
._c_c00036{margin-left:-8.693333pt;}
._e_c00036{margin-left:-7.520000pt;}
._f_c00036{margin-left:-6.240000pt;}
._14_c00036{margin-left:-4.602627pt;}
._7_c00036{margin-left:-3.466667pt;}
._9_c00036{margin-left:-2.293333pt;}
._3_c00036{margin-left:-1.280000pt;}
._0_c00036{width:0.960000pt;}
._2_c00036{width:1.973333pt;}
._1_c00036{width:3.360000pt;}
._4_c00036{width:4.533333pt;}
._5_c00036{width:5.546667pt;}
._d_c00036{width:6.506667pt;}
._b_c00036{width:7.893333pt;}
._16_c00036{width:9.061339pt;}
._a_c00036{width:10.080000pt;}
._8_c00036{width:11.253333pt;}
._19_c00036{width:12.474659pt;}
._18_c00036{width:14.485435pt;}
._12_c00036{width:15.626667pt;}
._11_c00036{width:16.746667pt;}
._10_c00036{width:18.080000pt;}
._15_c00036{width:21.039995pt;}
._17_c00036{width:22.746667pt;}
._13_c00036{width:23.706683pt;}
.fs1_c00036{font-size:45.333333pt;}
.fs0_c00036{font-size:53.333333pt;}
.y0_c00036{bottom:0.000000pt;}
.y27_c00036{bottom:57.266686pt;}
.y26_c00036{bottom:97.933353pt;}
.y25_c00036{bottom:111.400020pt;}
.y24_c00036{bottom:125.466686pt;}
.y23_c00036{bottom:138.600020pt;}
.y22_c00036{bottom:152.666686pt;}
.y21_c00036{bottom:165.800020pt;}
.y20_c00036{bottom:179.533353pt;}
.y1f_c00036{bottom:193.000020pt;}
.y1e_c00036{bottom:207.066686pt;}
.y1d_c00036{bottom:220.466686pt;}
.y1c_c00036{bottom:233.933353pt;}
.y1b_c00036{bottom:247.400020pt;}
.y1a_c00036{bottom:261.466686pt;}
.y19_c00036{bottom:274.600020pt;}
.y18_c00036{bottom:288.333353pt;}
.y17_c00036{bottom:301.800020pt;}
.y16_c00036{bottom:315.866686pt;}
.y15_c00036{bottom:329.000020pt;}
.y14_c00036{bottom:342.733353pt;}
.y13_c00036{bottom:356.200020pt;}
.y12_c00036{bottom:370.266686pt;}
.y11_c00036{bottom:383.400020pt;}
.y10_c00036{bottom:397.133353pt;}
.yf_c00036{bottom:410.600020pt;}
.ye_c00036{bottom:504.333353pt;}
.yd_c00036{bottom:521.600020pt;}
.yc_c00036{bottom:538.600020pt;}
.yb_c00036{bottom:556.200020pt;}
.ya_c00036{bottom:573.133353pt;}
.y9_c00036{bottom:590.400020pt;}
.y8_c00036{bottom:607.666686pt;}
.y7_c00036{bottom:624.666686pt;}
.y6_c00036{bottom:641.933353pt;}
.y5_c00036{bottom:659.533353pt;}
.y4_c00036{bottom:690.266686pt;}
.y2_c00036{bottom:733.800020pt;}
.y1_c00036{bottom:751.066686pt;}
.y3_c00036{bottom:788.200020pt;}
.h3_c00036{height:44.470052pt;}
.h4_c00036{height:44.492188pt;}
.h2_c00036{height:52.343750pt;}
.h1_c00036{height:851.333333pt;}
.h0_c00036{height:851.533333pt;}
.w1_c00036{width:572.000000pt;}
.w0_c00036{width:572.133333pt;}
.x0_c00036{left:0.000000pt;}
.x2_c00036{left:80.000000pt;}
.x1_c00036{left:81.266667pt;}
.x3_c00036{left:84.800000pt;}
.x4_c00036{left:104.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_960a10523be33875d5f967d7.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00037;src:url('chunks/assets/font_eca388cbe230461c03ad34d7.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00037{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_c00037{vertical-align:0.000000px;}
.ls0_c00037{letter-spacing:0.000000px;}
.sc__c00037{text-shadow:none;}
.sc0_c00037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00037{-webkit-text-stroke:0px transparent;}
.sc0_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00037{word-spacing:-15.000000px;}
.ws0_c00037{word-spacing:-12.750000px;}
.ws2_c00037{word-spacing:0.000000px;}
._4_c00037{margin-left:-12.000000px;}
._6_c00037{margin-left:-10.620000px;}
._8_c00037{margin-left:-9.360000px;}
._17_c00037{margin-left:-7.202826px;}
._12_c00037{margin-left:-6.153105px;}
._5_c00037{margin-left:-5.100000px;}
._b_c00037{margin-left:-3.060000px;}
._9_c00037{margin-left:-1.140000px;}
._2_c00037{width:1.800000px;}
._0_c00037{width:2.940000px;}
._7_c00037{width:4.440000px;}
._d_c00037{width:5.700000px;}
._c_c00037{width:7.380000px;}
._e_c00037{width:9.240000px;}
._f_c00037{width:10.320000px;}
._a_c00037{width:11.760000px;}
._1_c00037{width:13.800000px;}
._3_c00037{width:16.080000px;}
._14_c00037{width:18.599979px;}
._16_c00037{width:20.154027px;}
._15_c00037{width:22.695198px;}
._11_c00037{width:23.790018px;}
._13_c00037{width:25.290030px;}
._10_c00037{width:28.349979px;}
.fc1_c00037{color:transparent;}
.fc0_c00037{color:rgb(35,31,32);}
.fs1_c00037{font-size:51.000000px;}
.fs0_c00037{font-size:60.000000px;}
.y0_c00037{bottom:0.000000px;}
.y2f_c00037{bottom:64.425022px;}
.y2e_c00037{bottom:110.175022px;}
.y2d_c00037{bottom:125.625022px;}
.y2c_c00037{bottom:140.775022px;}
.y2b_c00037{bottom:155.925022px;}
.y2a_c00037{bottom:171.375022px;}
.y29_c00037{bottom:186.825022px;}
.y28_c00037{bottom:202.350022px;}
.y27_c00037{bottom:217.425022px;}
.y26_c00037{bottom:232.575022px;}
.y25_c00037{bottom:248.025022px;}
.y24_c00037{bottom:263.175022px;}
.y23_c00037{bottom:278.325022px;}
.y22_c00037{bottom:294.150022px;}
.y21_c00037{bottom:308.925022px;}
.y20_c00037{bottom:324.675022px;}
.y1f_c00037{bottom:339.825022px;}
.y1e_c00037{bottom:354.975022px;}
.y1d_c00037{bottom:370.425022px;}
.y1c_c00037{bottom:385.575022px;}
.y1b_c00037{bottom:401.025022px;}
.y1a_c00037{bottom:416.175022px;}
.y19_c00037{bottom:431.625022px;}
.y18_c00037{bottom:446.775022px;}
.y17_c00037{bottom:461.925022px;}
.y16_c00037{bottom:477.375022px;}
.y15_c00037{bottom:492.525022px;}
.y14_c00037{bottom:507.975022px;}
.y13_c00037{bottom:523.425022px;}
.y12_c00037{bottom:538.575022px;}
.y11_c00037{bottom:554.025022px;}
.y10_c00037{bottom:569.550022px;}
.yf_c00037{bottom:584.325022px;}
.ye_c00037{bottom:599.775022px;}
.yd_c00037{bottom:614.925022px;}
.yc_c00037{bottom:630.375022px;}
.yb_c00037{bottom:645.525022px;}
.ya_c00037{bottom:660.975022px;}
.y9_c00037{bottom:676.125022px;}
.y7_c00037{bottom:728.625022px;}
.y6_c00037{bottom:748.125022px;}
.y5_c00037{bottom:767.550022px;}
.y4_c00037{bottom:786.600022px;}
.y3_c00037{bottom:806.025022px;}
.y2_c00037{bottom:825.525022px;}
.y1_c00037{bottom:844.950022px;}
.y8_c00037{bottom:886.725022px;}
.h3_c00037{height:50.028809px;}
.h4_c00037{height:50.053711px;}
.h2_c00037{height:58.886719px;}
.h1_c00037{height:957.750000px;}
.h0_c00037{height:957.975000px;}
.w0_c00037{width:641.850030px;}
.w1_c00037{width:642.000000px;}
.x0_c00037{left:0.000000px;}
.x1_c00037{left:81.375000px;}
.x4_c00037{left:84.975000px;}
.x2_c00037{left:97.200000px;}
.x5_c00037{left:106.575000px;}
.x3_c00037{left:182.850000px;}
.x6_c00037{left:538.575000px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls0_c00037{letter-spacing:0.000000pt;}
.ws1_c00037{word-spacing:-13.333333pt;}
.ws0_c00037{word-spacing:-11.333333pt;}
.ws2_c00037{word-spacing:0.000000pt;}
._4_c00037{margin-left:-10.666667pt;}
._6_c00037{margin-left:-9.440000pt;}
._8_c00037{margin-left:-8.320000pt;}
._17_c00037{margin-left:-6.402512pt;}
._12_c00037{margin-left:-5.469427pt;}
._5_c00037{margin-left:-4.533333pt;}
._b_c00037{margin-left:-2.720000pt;}
._9_c00037{margin-left:-1.013333pt;}
._2_c00037{width:1.600000pt;}
._0_c00037{width:2.613333pt;}
._7_c00037{width:3.946667pt;}
._d_c00037{width:5.066667pt;}
._c_c00037{width:6.560000pt;}
._e_c00037{width:8.213333pt;}
._f_c00037{width:9.173333pt;}
._a_c00037{width:10.453333pt;}
._1_c00037{width:12.266667pt;}
._3_c00037{width:14.293333pt;}
._14_c00037{width:16.533315pt;}
._16_c00037{width:17.914691pt;}
._15_c00037{width:20.173509pt;}
._11_c00037{width:21.146683pt;}
._13_c00037{width:22.480027pt;}
._10_c00037{width:25.199981pt;}
.fs1_c00037{font-size:45.333333pt;}
.fs0_c00037{font-size:53.333333pt;}
.y0_c00037{bottom:0.000000pt;}
.y2f_c00037{bottom:57.266686pt;}
.y2e_c00037{bottom:97.933353pt;}
.y2d_c00037{bottom:111.666686pt;}
.y2c_c00037{bottom:125.133353pt;}
.y2b_c00037{bottom:138.600020pt;}
.y2a_c00037{bottom:152.333353pt;}
.y29_c00037{bottom:166.066686pt;}
.y28_c00037{bottom:179.866686pt;}
.y27_c00037{bottom:193.266686pt;}
.y26_c00037{bottom:206.733353pt;}
.y25_c00037{bottom:220.466686pt;}
.y24_c00037{bottom:233.933353pt;}
.y23_c00037{bottom:247.400020pt;}
.y22_c00037{bottom:261.466686pt;}
.y21_c00037{bottom:274.600020pt;}
.y20_c00037{bottom:288.600020pt;}
.y1f_c00037{bottom:302.066686pt;}
.y1e_c00037{bottom:315.533353pt;}
.y1d_c00037{bottom:329.266686pt;}
.y1c_c00037{bottom:342.733353pt;}
.y1b_c00037{bottom:356.466686pt;}
.y1a_c00037{bottom:369.933353pt;}
.y19_c00037{bottom:383.666686pt;}
.y18_c00037{bottom:397.133353pt;}
.y17_c00037{bottom:410.600020pt;}
.y16_c00037{bottom:424.333353pt;}
.y15_c00037{bottom:437.800020pt;}
.y14_c00037{bottom:451.533353pt;}
.y13_c00037{bottom:465.266686pt;}
.y12_c00037{bottom:478.733353pt;}
.y11_c00037{bottom:492.466686pt;}
.y10_c00037{bottom:506.266686pt;}
.yf_c00037{bottom:519.400020pt;}
.ye_c00037{bottom:533.133353pt;}
.yd_c00037{bottom:546.600020pt;}
.yc_c00037{bottom:560.333353pt;}
.yb_c00037{bottom:573.800020pt;}
.ya_c00037{bottom:587.533353pt;}
.y9_c00037{bottom:601.000020pt;}
.y7_c00037{bottom:647.666686pt;}
.y6_c00037{bottom:665.000020pt;}
.y5_c00037{bottom:682.266686pt;}
.y4_c00037{bottom:699.200020pt;}
.y3_c00037{bottom:716.466686pt;}
.y2_c00037{bottom:733.800020pt;}
.y1_c00037{bottom:751.066686pt;}
.y8_c00037{bottom:788.200020pt;}
.h3_c00037{height:44.470052pt;}
.h4_c00037{height:44.492188pt;}
.h2_c00037{height:52.343750pt;}
.h1_c00037{height:851.333333pt;}
.h0_c00037{height:851.533333pt;}
.w0_c00037{width:570.533360pt;}
.w1_c00037{width:570.666667pt;}
.x0_c00037{left:0.000000pt;}
.x1_c00037{left:72.333333pt;}
.x4_c00037{left:75.533333pt;}
.x2_c00037{left:86.400000pt;}
.x5_c00037{left:94.733333pt;}
.x3_c00037{left:162.533333pt;}
.x6_c00037{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_09aad8b30d3a59e7547877d3.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00038;src:url('chunks/assets/font_904018d8b1c2873c285b2b55.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls1_c00038{letter-spacing:0.000000px;}
.ls0_c00038{letter-spacing:1.199979px;}
.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;}
}
.ws2_c00038{word-spacing:-15.000000px;}
.ws1_c00038{word-spacing:-13.949979px;}
.ws0_c00038{word-spacing:-12.750000px;}
.ws3_c00038{word-spacing:0.000000px;}
._e_c00038{margin-left:-10.800000px;}
._b_c00038{margin-left:-9.240000px;}
._f_c00038{margin-left:-6.960000px;}
._13_c00038{margin-left:-5.541138px;}
._16_c00038{margin-left:-3.932982px;}
._15_c00038{margin-left:-2.643003px;}
._5_c00038{margin-left:-1.620000px;}
._0_c00038{width:1.260000px;}
._3_c00038{width:2.640000px;}
._10_c00038{width:3.660000px;}
._6_c00038{width:4.680000px;}
._c_c00038{width:6.060000px;}
._1_c00038{width:7.140000px;}
._2_c00038{width:9.060000px;}
._4_c00038{width:10.860000px;}
._d_c00038{width:12.240000px;}
._11_c00038{width:13.260000px;}
._14_c00038{width:14.549994px;}
._7_c00038{width:16.440000px;}
._18_c00038{width:17.552925px;}
._a_c00038{width:18.720000px;}
._9_c00038{width:19.860000px;}
._17_c00038{width:21.150000px;}
._8_c00038{width:22.860000px;}
._12_c00038{width:25.770030px;}
.fc1_c00038{color:transparent;}
.fc0_c00038{color:rgb(35,31,32);}
.fs1_c00038{font-size:51.000000px;}
.fs0_c00038{font-size:60.000000px;}
.y0_c00038{bottom:0.000000px;}
.y2b_c00038{bottom:64.425022px;}
.y2a_c00038{bottom:110.550022px;}
.y29_c00038{bottom:125.325022px;}
.y28_c00038{bottom:140.775022px;}
.y27_c00038{bottom:155.925022px;}
.y26_c00038{bottom:171.375022px;}
.y25_c00038{bottom:186.825022px;}
.y24_c00038{bottom:201.975022px;}
.y23_c00038{bottom:217.125022px;}
.y22_c00038{bottom:232.575022px;}
.y21_c00038{bottom:247.725022px;}
.y20_c00038{bottom:263.550022px;}
.y1f_c00038{bottom:278.325022px;}
.y1e_c00038{bottom:293.775022px;}
.y1d_c00038{bottom:308.925022px;}
.y1c_c00038{bottom:324.375022px;}
.y1b_c00038{bottom:339.825022px;}
.y1a_c00038{bottom:354.975022px;}
.y19_c00038{bottom:370.125022px;}
.y18_c00038{bottom:385.575022px;}
.y17_c00038{bottom:401.025022px;}
.y16_c00038{bottom:416.550022px;}
.y15_c00038{bottom:431.325022px;}
.y14_c00038{bottom:446.775022px;}
.y13_c00038{bottom:461.925022px;}
.y12_c00038{bottom:477.375022px;}
.y11_c00038{bottom:492.525022px;}
.y10_c00038{bottom:508.350022px;}
.ye_c00038{bottom:592.200022px;}
.yd_c00038{bottom:612.000022px;}
.yc_c00038{bottom:631.125022px;}
.yb_c00038{bottom:650.550022px;}
.ya_c00038{bottom:670.350022px;}
.y9_c00038{bottom:689.325022px;}
.y8_c00038{bottom:708.825022px;}
.y7_c00038{bottom:728.325022px;}
.y6_c00038{bottom:747.750022px;}
.y5_c00038{bottom:767.550022px;}
.y4_c00038{bottom:786.600022px;}
.y3_c00038{bottom:806.025022px;}
.y2_c00038{bottom:825.525022px;}
.y1_c00038{bottom:844.575022px;}
.yf_c00038{bottom:886.725022px;}
.h3_c00038{height:50.028809px;}
.h4_c00038{height:50.053711px;}
.h2_c00038{height:58.886719px;}
.h1_c00038{height:957.750000px;}
.h0_c00038{height:957.975000px;}
.w1_c00038{width:643.500000px;}
.w0_c00038{width:643.650000px;}
.x0_c00038{left:0.000000px;}
.x2_c00038{left:90.000000px;}
.x1_c00038{left:91.050000px;}
.x3_c00038{left:95.025000px;}
.x5_c00038{left:115.950000px;}
.x4_c00038{left:117.000000px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls1_c00038{letter-spacing:0.000000pt;}
.ls0_c00038{letter-spacing:1.066648pt;}
.ws2_c00038{word-spacing:-13.333333pt;}
.ws1_c00038{word-spacing:-12.399981pt;}
.ws0_c00038{word-spacing:-11.333333pt;}
.ws3_c00038{word-spacing:0.000000pt;}
._e_c00038{margin-left:-9.600000pt;}
._b_c00038{margin-left:-8.213333pt;}
._f_c00038{margin-left:-6.186667pt;}
._13_c00038{margin-left:-4.925456pt;}
._16_c00038{margin-left:-3.495984pt;}
._15_c00038{margin-left:-2.349336pt;}
._5_c00038{margin-left:-1.440000pt;}
._0_c00038{width:1.120000pt;}
._3_c00038{width:2.346667pt;}
._10_c00038{width:3.253333pt;}
._6_c00038{width:4.160000pt;}
._c_c00038{width:5.386667pt;}
._1_c00038{width:6.346667pt;}
._2_c00038{width:8.053333pt;}
._4_c00038{width:9.653333pt;}
._d_c00038{width:10.880000pt;}
._11_c00038{width:11.786667pt;}
._14_c00038{width:12.933328pt;}
._7_c00038{width:14.613333pt;}
._18_c00038{width:15.602600pt;}
._a_c00038{width:16.640000pt;}
._9_c00038{width:17.653333pt;}
._17_c00038{width:18.800000pt;}
._8_c00038{width:20.320000pt;}
._12_c00038{width:22.906693pt;}
.fs1_c00038{font-size:45.333333pt;}
.fs0_c00038{font-size:53.333333pt;}
.y0_c00038{bottom:0.000000pt;}
.y2b_c00038{bottom:57.266686pt;}
.y2a_c00038{bottom:98.266686pt;}
.y29_c00038{bottom:111.400020pt;}
.y28_c00038{bottom:125.133353pt;}
.y27_c00038{bottom:138.600020pt;}
.y26_c00038{bottom:152.333353pt;}
.y25_c00038{bottom:166.066686pt;}
.y24_c00038{bottom:179.533353pt;}
.y23_c00038{bottom:193.000020pt;}
.y22_c00038{bottom:206.733353pt;}
.y21_c00038{bottom:220.200020pt;}
.y20_c00038{bottom:234.266686pt;}
.y1f_c00038{bottom:247.400020pt;}
.y1e_c00038{bottom:261.133353pt;}
.y1d_c00038{bottom:274.600020pt;}
.y1c_c00038{bottom:288.333353pt;}
.y1b_c00038{bottom:302.066686pt;}
.y1a_c00038{bottom:315.533353pt;}
.y19_c00038{bottom:329.000020pt;}
.y18_c00038{bottom:342.733353pt;}
.y17_c00038{bottom:356.466686pt;}
.y16_c00038{bottom:370.266686pt;}
.y15_c00038{bottom:383.400020pt;}
.y14_c00038{bottom:397.133353pt;}
.y13_c00038{bottom:410.600020pt;}
.y12_c00038{bottom:424.333353pt;}
.y11_c00038{bottom:437.800020pt;}
.y10_c00038{bottom:451.866686pt;}
.ye_c00038{bottom:526.400020pt;}
.yd_c00038{bottom:544.000020pt;}
.yc_c00038{bottom:561.000020pt;}
.yb_c00038{bottom:578.266686pt;}
.ya_c00038{bottom:595.866686pt;}
.y9_c00038{bottom:612.733353pt;}
.y8_c00038{bottom:630.066686pt;}
.y7_c00038{bottom:647.400020pt;}
.y6_c00038{bottom:664.666686pt;}
.y5_c00038{bottom:682.266686pt;}
.y4_c00038{bottom:699.200020pt;}
.y3_c00038{bottom:716.466686pt;}
.y2_c00038{bottom:733.800020pt;}
.y1_c00038{bottom:750.733353pt;}
.yf_c00038{bottom:788.200020pt;}
.h3_c00038{height:44.470052pt;}
.h4_c00038{height:44.492188pt;}
.h2_c00038{height:52.343750pt;}
.h1_c00038{height:851.333333pt;}
.h0_c00038{height:851.533333pt;}
.w1_c00038{width:572.000000pt;}
.w0_c00038{width:572.133333pt;}
.x0_c00038{left:0.000000pt;}
.x2_c00038{left:80.000000pt;}
.x1_c00038{left:80.933333pt;}
.x3_c00038{left:84.466667pt;}
.x5_c00038{left:103.066667pt;}
.x4_c00038{left:104.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a74fc7af2ec0fec076b435a5.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00039;src:url('chunks/assets/font_bc26222ceb709b18bb899c94.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.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;}
}
.ws1_c00039{word-spacing:-15.000000px;}
.ws0_c00039{word-spacing:-12.750000px;}
.ws2_c00039{word-spacing:0.000000px;}
._5_c00039{margin-left:-13.500000px;}
._f_c00039{margin-left:-11.580000px;}
._7_c00039{margin-left:-10.500000px;}
._e_c00039{margin-left:-7.920000px;}
._6_c00039{margin-left:-6.600000px;}
._15_c00039{margin-left:-4.926279px;}
._13_c00039{margin-left:-3.300000px;}
._4_c00039{margin-left:-2.160000px;}
._3_c00039{margin-left:-1.080000px;}
._0_c00039{width:1.560000px;}
._1_c00039{width:2.880000px;}
._2_c00039{width:4.620000px;}
._c_c00039{width:6.420000px;}
._d_c00039{width:7.620000px;}
._9_c00039{width:9.120000px;}
._12_c00039{width:10.260000px;}
._8_c00039{width:11.520000px;}
._a_c00039{width:13.260000px;}
._1a_c00039{width:14.408994px;}
._11_c00039{width:16.380000px;}
._b_c00039{width:18.060000px;}
._10_c00039{width:20.520000px;}
._18_c00039{width:22.257000px;}
._16_c00039{width:23.970000px;}
._19_c00039{width:25.470006px;}
._17_c00039{width:26.610006px;}
._14_c00039{width:27.750000px;}
.fc1_c00039{color:transparent;}
.fc0_c00039{color:rgb(35,31,32);}
.fs1_c00039{font-size:51.000000px;}
.fs0_c00039{font-size:60.000000px;}
.y0_c00039{bottom:0.000000px;}
.y29_c00039{bottom:64.425022px;}
.y28_c00039{bottom:110.175022px;}
.y27_c00039{bottom:125.325022px;}
.y26_c00039{bottom:141.150022px;}
.y25_c00039{bottom:155.925022px;}
.y24_c00039{bottom:171.750022px;}
.y23_c00039{bottom:186.525022px;}
.y22_c00039{bottom:202.350022px;}
.y21_c00039{bottom:217.125022px;}
.y20_c00039{bottom:232.575022px;}
.y1f_c00039{bottom:247.725022px;}
.y1e_c00039{bottom:263.550022px;}
.y1d_c00039{bottom:278.325022px;}
.y1c_c00039{bottom:294.150022px;}
.y1b_c00039{bottom:308.925022px;}
.y1a_c00039{bottom:324.375022px;}
.y19_c00039{bottom:339.525022px;}
.y18_c00039{bottom:354.975022px;}
.y17_c00039{bottom:370.425022px;}
.y16_c00039{bottom:385.575022px;}
.y15_c00039{bottom:400.725022px;}
.y14_c00039{bottom:416.175022px;}
.y13_c00039{bottom:431.325022px;}
.y12_c00039{bottom:446.775022px;}
.y10_c00039{bottom:553.725022px;}
.yf_c00039{bottom:573.150022px;}
.ye_c00039{bottom:592.200022px;}
.yd_c00039{bottom:612.000022px;}
.yc_c00039{bottom:631.425022px;}
.yb_c00039{bottom:650.550022px;}
.ya_c00039{bottom:670.350022px;}
.y9_c00039{bottom:689.400022px;}
.y8_c00039{bottom:709.200022px;}
.y7_c00039{bottom:728.625022px;}
.y6_c00039{bottom:747.750022px;}
.y5_c00039{bottom:767.550022px;}
.y4_c00039{bottom:786.600022px;}
.y3_c00039{bottom:805.725022px;}
.y2_c00039{bottom:825.525022px;}
.y1_c00039{bottom:844.575022px;}
.y11_c00039{bottom:886.725022px;}
.h3_c00039{height:50.028809px;}
.h4_c00039{height:50.053711px;}
.h2_c00039{height:58.886719px;}
.h1_c00039{height:957.750000px;}
.h0_c00039{height:957.975000px;}
.w0_c00039{width:641.850030px;}
.w1_c00039{width:642.000000px;}
.x0_c00039{left:0.000000px;}
.x1_c00039{left:81.000000px;}
.x4_c00039{left:85.350000px;}
.x2_c00039{left:97.200000px;}
.x5_c00039{left:106.575000px;}
.x3_c00039{left:182.850000px;}
.x6_c00039{left:538.575000px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls0_c00039{letter-spacing:0.000000pt;}
.ws1_c00039{word-spacing:-13.333333pt;}
.ws0_c00039{word-spacing:-11.333333pt;}
.ws2_c00039{word-spacing:0.000000pt;}
._5_c00039{margin-left:-12.000000pt;}
._f_c00039{margin-left:-10.293333pt;}
._7_c00039{margin-left:-9.333333pt;}
._e_c00039{margin-left:-7.040000pt;}
._6_c00039{margin-left:-5.866667pt;}
._15_c00039{margin-left:-4.378915pt;}
._13_c00039{margin-left:-2.933333pt;}
._4_c00039{margin-left:-1.920000pt;}
._3_c00039{margin-left:-0.960000pt;}
._0_c00039{width:1.386667pt;}
._1_c00039{width:2.560000pt;}
._2_c00039{width:4.106667pt;}
._c_c00039{width:5.706667pt;}
._d_c00039{width:6.773333pt;}
._9_c00039{width:8.106667pt;}
._12_c00039{width:9.120000pt;}
._8_c00039{width:10.240000pt;}
._a_c00039{width:11.786667pt;}
._1a_c00039{width:12.807995pt;}
._11_c00039{width:14.560000pt;}
._b_c00039{width:16.053333pt;}
._10_c00039{width:18.240000pt;}
._18_c00039{width:19.784000pt;}
._16_c00039{width:21.306667pt;}
._19_c00039{width:22.640005pt;}
._17_c00039{width:23.653339pt;}
._14_c00039{width:24.666667pt;}
.fs1_c00039{font-size:45.333333pt;}
.fs0_c00039{font-size:53.333333pt;}
.y0_c00039{bottom:0.000000pt;}
.y29_c00039{bottom:57.266686pt;}
.y28_c00039{bottom:97.933353pt;}
.y27_c00039{bottom:111.400020pt;}
.y26_c00039{bottom:125.466686pt;}
.y25_c00039{bottom:138.600020pt;}
.y24_c00039{bottom:152.666686pt;}
.y23_c00039{bottom:165.800020pt;}
.y22_c00039{bottom:179.866686pt;}
.y21_c00039{bottom:193.000020pt;}
.y20_c00039{bottom:206.733353pt;}
.y1f_c00039{bottom:220.200020pt;}
.y1e_c00039{bottom:234.266686pt;}
.y1d_c00039{bottom:247.400020pt;}
.y1c_c00039{bottom:261.466686pt;}
.y1b_c00039{bottom:274.600020pt;}
.y1a_c00039{bottom:288.333353pt;}
.y19_c00039{bottom:301.800020pt;}
.y18_c00039{bottom:315.533353pt;}
.y17_c00039{bottom:329.266686pt;}
.y16_c00039{bottom:342.733353pt;}
.y15_c00039{bottom:356.200020pt;}
.y14_c00039{bottom:369.933353pt;}
.y13_c00039{bottom:383.400020pt;}
.y12_c00039{bottom:397.133353pt;}
.y10_c00039{bottom:492.200020pt;}
.yf_c00039{bottom:509.466686pt;}
.ye_c00039{bottom:526.400020pt;}
.yd_c00039{bottom:544.000020pt;}
.yc_c00039{bottom:561.266686pt;}
.yb_c00039{bottom:578.266686pt;}
.ya_c00039{bottom:595.866686pt;}
.y9_c00039{bottom:612.800020pt;}
.y8_c00039{bottom:630.400020pt;}
.y7_c00039{bottom:647.666686pt;}
.y6_c00039{bottom:664.666686pt;}
.y5_c00039{bottom:682.266686pt;}
.y4_c00039{bottom:699.200020pt;}
.y3_c00039{bottom:716.200020pt;}
.y2_c00039{bottom:733.800020pt;}
.y1_c00039{bottom:750.733353pt;}
.y11_c00039{bottom:788.200020pt;}
.h3_c00039{height:44.470052pt;}
.h4_c00039{height:44.492188pt;}
.h2_c00039{height:52.343750pt;}
.h1_c00039{height:851.333333pt;}
.h0_c00039{height:851.533333pt;}
.w0_c00039{width:570.533360pt;}
.w1_c00039{width:570.666667pt;}
.x0_c00039{left:0.000000pt;}
.x1_c00039{left:72.000000pt;}
.x4_c00039{left:75.866667pt;}
.x2_c00039{left:86.400000pt;}
.x5_c00039{left:94.733333pt;}
.x3_c00039{left:162.533333pt;}
.x6_c00039{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d46d8f3a434963d300a2c624.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00040;src:url('chunks/assets/font_c730c16e1c7054eaf97136be.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00040{letter-spacing:0.000000px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00040{word-spacing:-15.000000px;}
.ws1_c00040{word-spacing:-12.750000px;}
.ws2_c00040{word-spacing:0.000000px;}
._8_c00040{margin-left:-10.926003px;}
._11_c00040{margin-left:-9.546126px;}
._17_c00040{margin-left:-6.287883px;}
._10_c00040{margin-left:-5.025060px;}
._15_c00040{margin-left:-3.897399px;}
._3_c00040{margin-left:-2.276997px;}
._7_c00040{margin-left:-1.274895px;}
._1_c00040{width:1.049988px;}
._0_c00040{width:2.439024px;}
._4_c00040{width:3.468051px;}
._a_c00040{width:4.751964px;}
._2_c00040{width:5.922018px;}
._f_c00040{width:7.202943px;}
._b_c00040{width:8.508108px;}
._9_c00040{width:10.436997px;}
._e_c00040{width:11.547069px;}
._c_c00040{width:12.720048px;}
._5_c00040{width:13.980000px;}
._14_c00040{width:15.405057px;}
._d_c00040{width:16.421826px;}
._6_c00040{width:17.733084px;}
._12_c00040{width:18.809784px;}
._13_c00040{width:20.924895px;}
._16_c00040{width:25.704000px;}
._18_c00040{width:27.204012px;}
.fc1_c00040{color:transparent;}
.fc0_c00040{color:rgb(35,31,32);}
.fs0_c00040{font-size:51.000000px;}
.fs1_c00040{font-size:60.000000px;}
.y0_c00040{bottom:0.000000px;}
.y2b_c00040{bottom:64.425022px;}
.y2a_c00040{bottom:110.175022px;}
.y29_c00040{bottom:125.625022px;}
.y28_c00040{bottom:141.150022px;}
.y27_c00040{bottom:155.925022px;}
.y26_c00040{bottom:171.750022px;}
.y25_c00040{bottom:186.825022px;}
.y24_c00040{bottom:201.975022px;}
.y23_c00040{bottom:217.425022px;}
.y22_c00040{bottom:232.950022px;}
.y21_c00040{bottom:247.725022px;}
.y20_c00040{bottom:263.550022px;}
.y1f_c00040{bottom:278.625022px;}
.y1e_c00040{bottom:294.150022px;}
.y1d_c00040{bottom:308.925022px;}
.y1c_c00040{bottom:324.750022px;}
.y1b_c00040{bottom:339.825022px;}
.y1a_c00040{bottom:354.975022px;}
.y19_c00040{bottom:397.800022px;}
.y18_c00040{bottom:417.225022px;}
.y17_c00040{bottom:437.025022px;}
.y16_c00040{bottom:456.525022px;}
.y15_c00040{bottom:475.950022px;}
.y14_c00040{bottom:495.375022px;}
.y13_c00040{bottom:514.800022px;}
.y12_c00040{bottom:534.225022px;}
.y11_c00040{bottom:553.725022px;}
.y10_c00040{bottom:573.150022px;}
.yf_c00040{bottom:592.575022px;}
.ye_c00040{bottom:612.000022px;}
.yd_c00040{bottom:631.125022px;}
.yc_c00040{bottom:650.925022px;}
.yb_c00040{bottom:669.975022px;}
.ya_c00040{bottom:689.400022px;}
.y9_c00040{bottom:709.200022px;}
.y8_c00040{bottom:728.325022px;}
.y7_c00040{bottom:748.125022px;}
.y6_c00040{bottom:767.475022px;}
.y5_c00040{bottom:786.600022px;}
.y4_c00040{bottom:805.725022px;}
.y3_c00040{bottom:825.150022px;}
.y2_c00040{bottom:844.950022px;}
.y1_c00040{bottom:886.725022px;}
.h2_c00040{height:50.028809px;}
.h4_c00040{height:50.053711px;}
.h3_c00040{height:58.886719px;}
.h1_c00040{height:957.750000px;}
.h0_c00040{height:957.975000px;}
.w1_c00040{width:643.500000px;}
.w0_c00040{width:643.650000px;}
.x0_c00040{left:0.000000px;}
.x1_c00040{left:90.000000px;}
.x2_c00040{left:91.425000px;}
.x4_c00040{left:95.400000px;}
.x3_c00040{left:107.250000px;}
.x5_c00040{left:117.375000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls0_c00040{letter-spacing:0.000000pt;}
.ws0_c00040{word-spacing:-13.333333pt;}
.ws1_c00040{word-spacing:-11.333333pt;}
.ws2_c00040{word-spacing:0.000000pt;}
._8_c00040{margin-left:-9.712003pt;}
._11_c00040{margin-left:-8.485445pt;}
._17_c00040{margin-left:-5.589229pt;}
._10_c00040{margin-left:-4.466720pt;}
._15_c00040{margin-left:-3.464355pt;}
._3_c00040{margin-left:-2.023997pt;}
._7_c00040{margin-left:-1.133240pt;}
._1_c00040{width:0.933323pt;}
._0_c00040{width:2.168021pt;}
._4_c00040{width:3.082712pt;}
._a_c00040{width:4.223968pt;}
._2_c00040{width:5.264016pt;}
._f_c00040{width:6.402616pt;}
._b_c00040{width:7.562763pt;}
._9_c00040{width:9.277331pt;}
._e_c00040{width:10.264061pt;}
._c_c00040{width:11.306709pt;}
._5_c00040{width:12.426667pt;}
._14_c00040{width:13.693384pt;}
._d_c00040{width:14.597179pt;}
._6_c00040{width:15.762741pt;}
._12_c00040{width:16.719808pt;}
._13_c00040{width:18.599907pt;}
._16_c00040{width:22.848000pt;}
._18_c00040{width:24.181344pt;}
.fs0_c00040{font-size:45.333333pt;}
.fs1_c00040{font-size:53.333333pt;}
.y0_c00040{bottom:0.000000pt;}
.y2b_c00040{bottom:57.266686pt;}
.y2a_c00040{bottom:97.933353pt;}
.y29_c00040{bottom:111.666686pt;}
.y28_c00040{bottom:125.466686pt;}
.y27_c00040{bottom:138.600020pt;}
.y26_c00040{bottom:152.666686pt;}
.y25_c00040{bottom:166.066686pt;}
.y24_c00040{bottom:179.533353pt;}
.y23_c00040{bottom:193.266686pt;}
.y22_c00040{bottom:207.066686pt;}
.y21_c00040{bottom:220.200020pt;}
.y20_c00040{bottom:234.266686pt;}
.y1f_c00040{bottom:247.666686pt;}
.y1e_c00040{bottom:261.466686pt;}
.y1d_c00040{bottom:274.600020pt;}
.y1c_c00040{bottom:288.666686pt;}
.y1b_c00040{bottom:302.066686pt;}
.y1a_c00040{bottom:315.533353pt;}
.y19_c00040{bottom:353.600020pt;}
.y18_c00040{bottom:370.866686pt;}
.y17_c00040{bottom:388.466686pt;}
.y16_c00040{bottom:405.800020pt;}
.y15_c00040{bottom:423.066686pt;}
.y14_c00040{bottom:440.333353pt;}
.y13_c00040{bottom:457.600020pt;}
.y12_c00040{bottom:474.866686pt;}
.y11_c00040{bottom:492.200020pt;}
.y10_c00040{bottom:509.466686pt;}
.yf_c00040{bottom:526.733353pt;}
.ye_c00040{bottom:544.000020pt;}
.yd_c00040{bottom:561.000020pt;}
.yc_c00040{bottom:578.600020pt;}
.yb_c00040{bottom:595.533353pt;}
.ya_c00040{bottom:612.800020pt;}
.y9_c00040{bottom:630.400020pt;}
.y8_c00040{bottom:647.400020pt;}
.y7_c00040{bottom:665.000020pt;}
.y6_c00040{bottom:682.200020pt;}
.y5_c00040{bottom:699.200020pt;}
.y4_c00040{bottom:716.200020pt;}
.y3_c00040{bottom:733.466686pt;}
.y2_c00040{bottom:751.066686pt;}
.y1_c00040{bottom:788.200020pt;}
.h2_c00040{height:44.470052pt;}
.h4_c00040{height:44.492188pt;}
.h3_c00040{height:52.343750pt;}
.h1_c00040{height:851.333333pt;}
.h0_c00040{height:851.533333pt;}
.w1_c00040{width:572.000000pt;}
.w0_c00040{width:572.133333pt;}
.x0_c00040{left:0.000000pt;}
.x1_c00040{left:80.000000pt;}
.x2_c00040{left:81.266667pt;}
.x4_c00040{left:84.800000pt;}
.x3_c00040{left:95.333333pt;}
.x5_c00040{left:104.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eb9234eeaa5477f4c77a73bb.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00041;src:url('chunks/assets/font_bf1b482b52ad162d63e616c0.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00041{letter-spacing:0.000000px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00041{word-spacing:-15.000000px;}
.ws0_c00041{word-spacing:-12.750000px;}
.ws2_c00041{word-spacing:0.000000px;}
._b_c00041{margin-left:-15.401694px;}
._11_c00041{margin-left:-11.513805px;}
._7_c00041{margin-left:-8.247030px;}
._17_c00041{margin-left:-6.972267px;}
._8_c00041{margin-left:-5.252970px;}
._1a_c00041{margin-left:-4.119498px;}
._3_c00041{margin-left:-3.050922px;}
._0_c00041{margin-left:-1.448961px;}
._2_c00041{width:1.799994px;}
._1_c00041{width:2.816985px;}
._9_c00041{width:3.930123px;}
._a_c00041{width:5.100000px;}
._5_c00041{width:6.180018px;}
._6_c00041{width:7.373877px;}
._4_c00041{width:8.400036px;}
._12_c00041{width:9.900006px;}
._10_c00041{width:11.100018px;}
._e_c00041{width:13.920006px;}
._18_c00041{width:15.176058px;}
._c_c00041{width:16.200024px;}
._d_c00041{width:17.520012px;}
._13_c00041{width:18.732237px;}
._14_c00041{width:20.591112px;}
._f_c00041{width:21.647793px;}
._15_c00041{width:23.798118px;}
._16_c00041{width:25.649883px;}
._19_c00041{width:27.251850px;}
.fc1_c00041{color:transparent;}
.fc0_c00041{color:rgb(35,31,32);}
.fs0_c00041{font-size:51.000000px;}
.fs1_c00041{font-size:60.000000px;}
.y0_c00041{bottom:0.000000px;}
.y29_c00041{bottom:64.800022px;}
.y28_c00041{bottom:110.175022px;}
.y27_c00041{bottom:125.325022px;}
.y26_c00041{bottom:141.150022px;}
.y25_c00041{bottom:156.225022px;}
.y24_c00041{bottom:171.750022px;}
.y23_c00041{bottom:186.825022px;}
.y22_c00041{bottom:201.975022px;}
.y21_c00041{bottom:217.125022px;}
.y20_c00041{bottom:232.575022px;}
.y1f_c00041{bottom:247.725022px;}
.y1e_c00041{bottom:263.475022px;}
.y1d_c00041{bottom:278.625022px;}
.y1c_c00041{bottom:293.775022px;}
.y1b_c00041{bottom:308.925022px;}
.y1a_c00041{bottom:324.375022px;}
.y19_c00041{bottom:339.825022px;}
.y18_c00041{bottom:354.975022px;}
.y17_c00041{bottom:370.125022px;}
.y16_c00041{bottom:385.950022px;}
.y15_c00041{bottom:400.725022px;}
.y14_c00041{bottom:416.175022px;}
.y13_c00041{bottom:431.325022px;}
.y12_c00041{bottom:446.775022px;}
.y11_c00041{bottom:461.925022px;}
.y10_c00041{bottom:507.975022px;}
.yf_c00041{bottom:527.400022px;}
.ye_c00041{bottom:547.200022px;}
.yd_c00041{bottom:566.325022px;}
.yc_c00041{bottom:586.125022px;}
.yb_c00041{bottom:605.550022px;}
.ya_c00041{bottom:646.200022px;}
.y9_c00041{bottom:709.200022px;}
.y8_c00041{bottom:728.625022px;}
.y7_c00041{bottom:748.125022px;}
.y6_c00041{bottom:767.550022px;}
.y5_c00041{bottom:786.600022px;}
.y4_c00041{bottom:805.725022px;}
.y3_c00041{bottom:825.150022px;}
.y2_c00041{bottom:844.575022px;}
.y1_c00041{bottom:886.725022px;}
.h2_c00041{height:50.028809px;}
.h4_c00041{height:50.053711px;}
.h3_c00041{height:58.886719px;}
.h1_c00041{height:957.750000px;}
.h0_c00041{height:957.975000px;}
.w0_c00041{width:641.850030px;}
.w1_c00041{width:642.000000px;}
.x0_c00041{left:0.000000px;}
.x2_c00041{left:81.000000px;}
.x3_c00041{left:85.350000px;}
.x4_c00041{left:106.950000px;}
.x1_c00041{left:422.250000px;}
.x5_c00041{left:538.200000px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls0_c00041{letter-spacing:0.000000pt;}
.ws1_c00041{word-spacing:-13.333333pt;}
.ws0_c00041{word-spacing:-11.333333pt;}
.ws2_c00041{word-spacing:0.000000pt;}
._b_c00041{margin-left:-13.690395pt;}
._11_c00041{margin-left:-10.234493pt;}
._7_c00041{margin-left:-7.330693pt;}
._17_c00041{margin-left:-6.197571pt;}
._8_c00041{margin-left:-4.669307pt;}
._1a_c00041{margin-left:-3.661776pt;}
._3_c00041{margin-left:-2.711931pt;}
._0_c00041{margin-left:-1.287965pt;}
._2_c00041{width:1.599995pt;}
._1_c00041{width:2.503987pt;}
._9_c00041{width:3.493443pt;}
._a_c00041{width:4.533333pt;}
._5_c00041{width:5.493349pt;}
._6_c00041{width:6.554557pt;}
._4_c00041{width:7.466699pt;}
._12_c00041{width:8.800005pt;}
._10_c00041{width:9.866683pt;}
._e_c00041{width:12.373339pt;}
._18_c00041{width:13.489829pt;}
._c_c00041{width:14.400021pt;}
._d_c00041{width:15.573344pt;}
._13_c00041{width:16.650877pt;}
._14_c00041{width:18.303211pt;}
._f_c00041{width:19.242483pt;}
._15_c00041{width:21.153883pt;}
._16_c00041{width:22.799896pt;}
._19_c00041{width:24.223867pt;}
.fs0_c00041{font-size:45.333333pt;}
.fs1_c00041{font-size:53.333333pt;}
.y0_c00041{bottom:0.000000pt;}
.y29_c00041{bottom:57.600020pt;}
.y28_c00041{bottom:97.933353pt;}
.y27_c00041{bottom:111.400020pt;}
.y26_c00041{bottom:125.466686pt;}
.y25_c00041{bottom:138.866686pt;}
.y24_c00041{bottom:152.666686pt;}
.y23_c00041{bottom:166.066686pt;}
.y22_c00041{bottom:179.533353pt;}
.y21_c00041{bottom:193.000020pt;}
.y20_c00041{bottom:206.733353pt;}
.y1f_c00041{bottom:220.200020pt;}
.y1e_c00041{bottom:234.200020pt;}
.y1d_c00041{bottom:247.666686pt;}
.y1c_c00041{bottom:261.133353pt;}
.y1b_c00041{bottom:274.600020pt;}
.y1a_c00041{bottom:288.333353pt;}
.y19_c00041{bottom:302.066686pt;}
.y18_c00041{bottom:315.533353pt;}
.y17_c00041{bottom:329.000020pt;}
.y16_c00041{bottom:343.066686pt;}
.y15_c00041{bottom:356.200020pt;}
.y14_c00041{bottom:369.933353pt;}
.y13_c00041{bottom:383.400020pt;}
.y12_c00041{bottom:397.133353pt;}
.y11_c00041{bottom:410.600020pt;}
.y10_c00041{bottom:451.533353pt;}
.yf_c00041{bottom:468.800020pt;}
.ye_c00041{bottom:486.400020pt;}
.yd_c00041{bottom:503.400020pt;}
.yc_c00041{bottom:521.000020pt;}
.yb_c00041{bottom:538.266686pt;}
.ya_c00041{bottom:574.400020pt;}
.y9_c00041{bottom:630.400020pt;}
.y8_c00041{bottom:647.666686pt;}
.y7_c00041{bottom:665.000020pt;}
.y6_c00041{bottom:682.266686pt;}
.y5_c00041{bottom:699.200020pt;}
.y4_c00041{bottom:716.200020pt;}
.y3_c00041{bottom:733.466686pt;}
.y2_c00041{bottom:750.733353pt;}
.y1_c00041{bottom:788.200020pt;}
.h2_c00041{height:44.470052pt;}
.h4_c00041{height:44.492188pt;}
.h3_c00041{height:52.343750pt;}
.h1_c00041{height:851.333333pt;}
.h0_c00041{height:851.533333pt;}
.w0_c00041{width:570.533360pt;}
.w1_c00041{width:570.666667pt;}
.x0_c00041{left:0.000000pt;}
.x2_c00041{left:72.000000pt;}
.x3_c00041{left:75.866667pt;}
.x4_c00041{left:95.066667pt;}
.x1_c00041{left:375.333333pt;}
.x5_c00041{left:478.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_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_1a225d0243690bf963448fb8.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00042;src:url('chunks/assets/font_e4a470c8927d6ade0a488392.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00042{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_c00042{vertical-align:0.000000px;}
.ls1_c00042{letter-spacing:0.000000px;}
.ls0_c00042{letter-spacing:16.800000px;}
.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:-15.000000px;}
.ws1_c00042{word-spacing:-12.750000px;}
.ws2_c00042{word-spacing:0.000000px;}
._12_c00042{margin-left:-16.260000px;}
._5_c00042{margin-left:-11.640000px;}
._3_c00042{margin-left:-10.440000px;}
._15_c00042{margin-left:-8.927925px;}
._10_c00042{margin-left:-7.260000px;}
._e_c00042{margin-left:-6.060000px;}
._13_c00042{margin-left:-4.920000px;}
._11_c00042{margin-left:-3.360000px;}
._6_c00042{margin-left:-1.860000px;}
._1_c00042{width:1.860000px;}
._2_c00042{width:2.940000px;}
._d_c00042{width:4.500000px;}
._c_c00042{width:6.240000px;}
._4_c00042{width:7.740000px;}
._0_c00042{width:8.880000px;}
._8_c00042{width:9.960000px;}
._7_c00042{width:11.880000px;}
._9_c00042{width:12.960000px;}
._f_c00042{width:13.980000px;}
._a_c00042{width:16.500000px;}
._b_c00042{width:18.540000px;}
._16_c00042{width:21.510000px;}
._17_c00042{width:24.870006px;}
._14_c00042{width:26.370018px;}
.fc2_c00042{color:transparent;}
.fc1_c00042{color:rgb(0,0,0);}
.fc0_c00042{color:rgb(35,31,32);}
.fs1_c00042{font-size:51.000000px;}
.fs0_c00042{font-size:60.000000px;}
.y0_c00042{bottom:0.000000px;}
.y28_c00042{bottom:64.800022px;}
.y27_c00042{bottom:110.175022px;}
.y26_c00042{bottom:125.325022px;}
.y25_c00042{bottom:141.150022px;}
.y24_c00042{bottom:155.925022px;}
.y23_c00042{bottom:171.750022px;}
.y22_c00042{bottom:186.525022px;}
.y21_c00042{bottom:202.275022px;}
.y20_c00042{bottom:217.425022px;}
.y1f_c00042{bottom:232.575022px;}
.y1e_c00042{bottom:247.725022px;}
.y1d_c00042{bottom:263.550022px;}
.y1c_c00042{bottom:278.325022px;}
.y1b_c00042{bottom:293.775022px;}
.y1a_c00042{bottom:308.925022px;}
.y19_c00042{bottom:324.750022px;}
.y18_c00042{bottom:339.525022px;}
.y17_c00042{bottom:383.400022px;}
.y16_c00042{bottom:402.825022px;}
.y15_c00042{bottom:421.950022px;}
.y14_c00042{bottom:441.750022px;}
.y13_c00042{bottom:460.725022px;}
.y12_c00042{bottom:480.225022px;}
.y11_c00042{bottom:499.725022px;}
.y10_c00042{bottom:519.525022px;}
.yf_c00042{bottom:538.575022px;}
.ye_c00042{bottom:558.375022px;}
.yd_c00042{bottom:577.800022px;}
.yc_c00042{bottom:597.225022px;}
.yb_c00042{bottom:616.725022px;}
.ya_c00042{bottom:636.150022px;}
.y9_c00042{bottom:672.825022px;}
.y7_c00042{bottom:728.625022px;}
.y6_c00042{bottom:748.125022px;}
.y5_c00042{bottom:767.175022px;}
.y4_c00042{bottom:786.300022px;}
.y3_c00042{bottom:805.725022px;}
.y2_c00042{bottom:825.150022px;}
.y1_c00042{bottom:844.950022px;}
.y8_c00042{bottom:886.725022px;}
.h3_c00042{height:50.028809px;}
.h4_c00042{height:50.053711px;}
.h2_c00042{height:58.886719px;}
.h1_c00042{height:957.750000px;}
.h0_c00042{height:957.975000px;}
.w1_c00042{width:643.500000px;}
.w0_c00042{width:643.650000px;}
.x0_c00042{left:0.000000px;}
.x2_c00042{left:90.000000px;}
.x1_c00042{left:91.050000px;}
.x3_c00042{left:95.400000px;}
.x4_c00042{left:116.625000px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls1_c00042{letter-spacing:0.000000pt;}
.ls0_c00042{letter-spacing:14.933333pt;}
.ws0_c00042{word-spacing:-13.333333pt;}
.ws1_c00042{word-spacing:-11.333333pt;}
.ws2_c00042{word-spacing:0.000000pt;}
._12_c00042{margin-left:-14.453333pt;}
._5_c00042{margin-left:-10.346667pt;}
._3_c00042{margin-left:-9.280000pt;}
._15_c00042{margin-left:-7.935933pt;}
._10_c00042{margin-left:-6.453333pt;}
._e_c00042{margin-left:-5.386667pt;}
._13_c00042{margin-left:-4.373333pt;}
._11_c00042{margin-left:-2.986667pt;}
._6_c00042{margin-left:-1.653333pt;}
._1_c00042{width:1.653333pt;}
._2_c00042{width:2.613333pt;}
._d_c00042{width:4.000000pt;}
._c_c00042{width:5.546667pt;}
._4_c00042{width:6.880000pt;}
._0_c00042{width:7.893333pt;}
._8_c00042{width:8.853333pt;}
._7_c00042{width:10.560000pt;}
._9_c00042{width:11.520000pt;}
._f_c00042{width:12.426667pt;}
._a_c00042{width:14.666667pt;}
._b_c00042{width:16.480000pt;}
._16_c00042{width:19.120000pt;}
._17_c00042{width:22.106672pt;}
._14_c00042{width:23.440016pt;}
.fs1_c00042{font-size:45.333333pt;}
.fs0_c00042{font-size:53.333333pt;}
.y0_c00042{bottom:0.000000pt;}
.y28_c00042{bottom:57.600020pt;}
.y27_c00042{bottom:97.933353pt;}
.y26_c00042{bottom:111.400020pt;}
.y25_c00042{bottom:125.466686pt;}
.y24_c00042{bottom:138.600020pt;}
.y23_c00042{bottom:152.666686pt;}
.y22_c00042{bottom:165.800020pt;}
.y21_c00042{bottom:179.800020pt;}
.y20_c00042{bottom:193.266686pt;}
.y1f_c00042{bottom:206.733353pt;}
.y1e_c00042{bottom:220.200020pt;}
.y1d_c00042{bottom:234.266686pt;}
.y1c_c00042{bottom:247.400020pt;}
.y1b_c00042{bottom:261.133353pt;}
.y1a_c00042{bottom:274.600020pt;}
.y19_c00042{bottom:288.666686pt;}
.y18_c00042{bottom:301.800020pt;}
.y17_c00042{bottom:340.800020pt;}
.y16_c00042{bottom:358.066686pt;}
.y15_c00042{bottom:375.066686pt;}
.y14_c00042{bottom:392.666686pt;}
.y13_c00042{bottom:409.533353pt;}
.y12_c00042{bottom:426.866686pt;}
.y11_c00042{bottom:444.200020pt;}
.y10_c00042{bottom:461.800020pt;}
.yf_c00042{bottom:478.733353pt;}
.ye_c00042{bottom:496.333353pt;}
.yd_c00042{bottom:513.600020pt;}
.yc_c00042{bottom:530.866686pt;}
.yb_c00042{bottom:548.200020pt;}
.ya_c00042{bottom:565.466686pt;}
.y9_c00042{bottom:598.066686pt;}
.y7_c00042{bottom:647.666686pt;}
.y6_c00042{bottom:665.000020pt;}
.y5_c00042{bottom:681.933353pt;}
.y4_c00042{bottom:698.933353pt;}
.y3_c00042{bottom:716.200020pt;}
.y2_c00042{bottom:733.466686pt;}
.y1_c00042{bottom:751.066686pt;}
.y8_c00042{bottom:788.200020pt;}
.h3_c00042{height:44.470052pt;}
.h4_c00042{height:44.492188pt;}
.h2_c00042{height:52.343750pt;}
.h1_c00042{height:851.333333pt;}
.h0_c00042{height:851.533333pt;}
.w1_c00042{width:572.000000pt;}
.w0_c00042{width:572.133333pt;}
.x0_c00042{left:0.000000pt;}
.x2_c00042{left:80.000000pt;}
.x1_c00042{left:80.933333pt;}
.x3_c00042{left:84.800000pt;}
.x4_c00042{left:103.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7ceca0c2925d2386b2d27319.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00043;src:url('chunks/assets/font_8b7b376e93e1e6e035031325.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00043{letter-spacing:0.000000px;}
.ls0_c00043{letter-spacing:12.600000px;}
.sc__c00043{text-shadow:none;}
.sc0_c00043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00043{-webkit-text-stroke:0px transparent;}
.sc0_c00043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00043{word-spacing:-15.000000px;}
.ws1_c00043{word-spacing:-12.750000px;}
.ws2_c00043{word-spacing:0.000000px;}
._d_c00043{margin-left:-14.627892px;}
._11_c00043{margin-left:-10.979778px;}
._b_c00043{margin-left:-9.413922px;}
._12_c00043{margin-left:-5.799249px;}
._e_c00043{margin-left:-4.200000px;}
._3_c00043{margin-left:-3.050922px;}
._0_c00043{margin-left:-1.448961px;}
._2_c00043{width:1.799994px;}
._1_c00043{width:2.816985px;}
._8_c00043{width:3.900042px;}
._c_c00043{width:5.639880px;}
._a_c00043{width:7.320006px;}
._4_c00043{width:9.300066px;}
._7_c00043{width:10.620036px;}
._5_c00043{width:11.940012px;}
._6_c00043{width:13.019883px;}
._16_c00043{width:15.035709px;}
._9_c00043{width:16.286883px;}
._10_c00043{width:17.880012px;}
._f_c00043{width:19.020000px;}
._15_c00043{width:22.598961px;}
._13_c00043{width:25.598991px;}
._14_c00043{width:27.149901px;}
.fc2_c00043{color:transparent;}
.fc1_c00043{color:rgb(0,0,0);}
.fc0_c00043{color:rgb(35,31,32);}
.fs0_c00043{font-size:51.000000px;}
.fs1_c00043{font-size:60.000000px;}
.y0_c00043{bottom:0.000000px;}
.y29_c00043{bottom:64.425022px;}
.y28_c00043{bottom:110.175022px;}
.y27_c00043{bottom:125.625022px;}
.y26_c00043{bottom:140.775022px;}
.y25_c00043{bottom:155.925022px;}
.y24_c00043{bottom:171.375022px;}
.y23_c00043{bottom:186.525022px;}
.y22_c00043{bottom:202.275022px;}
.y21_c00043{bottom:217.425022px;}
.y20_c00043{bottom:232.575022px;}
.y1f_c00043{bottom:247.725022px;}
.y1e_c00043{bottom:263.175022px;}
.y1d_c00043{bottom:278.625022px;}
.y1c_c00043{bottom:294.150022px;}
.y1b_c00043{bottom:309.225022px;}
.y1a_c00043{bottom:324.750022px;}
.y19_c00043{bottom:339.825022px;}
.y18_c00043{bottom:354.975022px;}
.y17_c00043{bottom:370.125022px;}
.y16_c00043{bottom:385.575022px;}
.y15_c00043{bottom:400.725022px;}
.y14_c00043{bottom:441.750022px;}
.y13_c00043{bottom:461.175022px;}
.y12_c00043{bottom:480.600022px;}
.y11_c00043{bottom:500.025022px;}
.y10_c00043{bottom:519.150022px;}
.yf_c00043{bottom:538.575022px;}
.ye_c00043{bottom:576.000022px;}
.yd_c00043{bottom:631.500022px;}
.yc_c00043{bottom:650.925022px;}
.yb_c00043{bottom:670.350022px;}
.ya_c00043{bottom:689.775022px;}
.y9_c00043{bottom:708.825022px;}
.y8_c00043{bottom:728.625022px;}
.y7_c00043{bottom:748.125022px;}
.y6_c00043{bottom:767.175022px;}
.y5_c00043{bottom:786.525022px;}
.y4_c00043{bottom:806.025022px;}
.y3_c00043{bottom:825.525022px;}
.y2_c00043{bottom:844.575022px;}
.y1_c00043{bottom:886.725022px;}
.h2_c00043{height:50.028809px;}
.h4_c00043{height:50.053711px;}
.h3_c00043{height:58.886719px;}
.h1_c00043{height:957.750000px;}
.h0_c00043{height:957.975000px;}
.w0_c00043{width:641.850030px;}
.w1_c00043{width:642.000000px;}
.x0_c00043{left:0.000000px;}
.x3_c00043{left:80.250000px;}
.x2_c00043{left:81.375000px;}
.x5_c00043{left:84.975000px;}
.x6_c00043{left:105.450000px;}
.x4_c00043{left:106.950000px;}
.x1_c00043{left:422.250000px;}
.x7_c00043{left:538.200000px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls1_c00043{letter-spacing:0.000000pt;}
.ls0_c00043{letter-spacing:11.200000pt;}
.ws0_c00043{word-spacing:-13.333333pt;}
.ws1_c00043{word-spacing:-11.333333pt;}
.ws2_c00043{word-spacing:0.000000pt;}
._d_c00043{margin-left:-13.002571pt;}
._11_c00043{margin-left:-9.759803pt;}
._b_c00043{margin-left:-8.367931pt;}
._12_c00043{margin-left:-5.154888pt;}
._e_c00043{margin-left:-3.733333pt;}
._3_c00043{margin-left:-2.711931pt;}
._0_c00043{margin-left:-1.287965pt;}
._2_c00043{width:1.599995pt;}
._1_c00043{width:2.503987pt;}
._8_c00043{width:3.466704pt;}
._c_c00043{width:5.013227pt;}
._a_c00043{width:6.506672pt;}
._4_c00043{width:8.266725pt;}
._7_c00043{width:9.440032pt;}
._5_c00043{width:10.613344pt;}
._6_c00043{width:11.573229pt;}
._16_c00043{width:13.365075pt;}
._9_c00043{width:14.477229pt;}
._10_c00043{width:15.893344pt;}
._f_c00043{width:16.906667pt;}
._15_c00043{width:20.087965pt;}
._13_c00043{width:22.754659pt;}
._14_c00043{width:24.133245pt;}
.fs0_c00043{font-size:45.333333pt;}
.fs1_c00043{font-size:53.333333pt;}
.y0_c00043{bottom:0.000000pt;}
.y29_c00043{bottom:57.266686pt;}
.y28_c00043{bottom:97.933353pt;}
.y27_c00043{bottom:111.666686pt;}
.y26_c00043{bottom:125.133353pt;}
.y25_c00043{bottom:138.600020pt;}
.y24_c00043{bottom:152.333353pt;}
.y23_c00043{bottom:165.800020pt;}
.y22_c00043{bottom:179.800020pt;}
.y21_c00043{bottom:193.266686pt;}
.y20_c00043{bottom:206.733353pt;}
.y1f_c00043{bottom:220.200020pt;}
.y1e_c00043{bottom:233.933353pt;}
.y1d_c00043{bottom:247.666686pt;}
.y1c_c00043{bottom:261.466686pt;}
.y1b_c00043{bottom:274.866686pt;}
.y1a_c00043{bottom:288.666686pt;}
.y19_c00043{bottom:302.066686pt;}
.y18_c00043{bottom:315.533353pt;}
.y17_c00043{bottom:329.000020pt;}
.y16_c00043{bottom:342.733353pt;}
.y15_c00043{bottom:356.200020pt;}
.y14_c00043{bottom:392.666686pt;}
.y13_c00043{bottom:409.933353pt;}
.y12_c00043{bottom:427.200020pt;}
.y11_c00043{bottom:444.466686pt;}
.y10_c00043{bottom:461.466686pt;}
.yf_c00043{bottom:478.733353pt;}
.ye_c00043{bottom:512.000020pt;}
.yd_c00043{bottom:561.333353pt;}
.yc_c00043{bottom:578.600020pt;}
.yb_c00043{bottom:595.866686pt;}
.ya_c00043{bottom:613.133353pt;}
.y9_c00043{bottom:630.066686pt;}
.y8_c00043{bottom:647.666686pt;}
.y7_c00043{bottom:665.000020pt;}
.y6_c00043{bottom:681.933353pt;}
.y5_c00043{bottom:699.133353pt;}
.y4_c00043{bottom:716.466686pt;}
.y3_c00043{bottom:733.800020pt;}
.y2_c00043{bottom:750.733353pt;}
.y1_c00043{bottom:788.200020pt;}
.h2_c00043{height:44.470052pt;}
.h4_c00043{height:44.492188pt;}
.h3_c00043{height:52.343750pt;}
.h1_c00043{height:851.333333pt;}
.h0_c00043{height:851.533333pt;}
.w0_c00043{width:570.533360pt;}
.w1_c00043{width:570.666667pt;}
.x0_c00043{left:0.000000pt;}
.x3_c00043{left:71.333333pt;}
.x2_c00043{left:72.333333pt;}
.x5_c00043{left:75.533333pt;}
.x6_c00043{left:93.733333pt;}
.x4_c00043{left:95.066667pt;}
.x1_c00043{left:375.333333pt;}
.x7_c00043{left:478.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_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_22a54b2f770b4c6990416e3e.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00044;src:url('chunks/assets/font_57d26d4c0674e6ee87b4a7b6.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.ls1_c00044{letter-spacing:0.000000px;}
.ls0_c00044{letter-spacing:6.150000px;}
.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;}
}
.ws1_c00044{word-spacing:-15.000000px;}
.ws0_c00044{word-spacing:-12.750000px;}
.ws2_c00044{word-spacing:0.000000px;}
._d_c00044{margin-left:-11.640000px;}
._12_c00044{margin-left:-10.560000px;}
._11_c00044{margin-left:-9.540000px;}
._e_c00044{margin-left:-7.980000px;}
._14_c00044{margin-left:-6.095958px;}
._19_c00044{margin-left:-4.704006px;}
._6_c00044{margin-left:-3.120000px;}
._4_c00044{margin-left:-1.680000px;}
._1_c00044{width:1.740000px;}
._7_c00044{width:3.300000px;}
._2_c00044{width:4.440000px;}
._5_c00044{width:6.000000px;}
._0_c00044{width:7.260000px;}
._3_c00044{width:8.280000px;}
._c_c00044{width:9.540000px;}
._b_c00044{width:10.980000px;}
._10_c00044{width:12.660000px;}
._f_c00044{width:13.800000px;}
._8_c00044{width:16.320000px;}
._9_c00044{width:17.520000px;}
._a_c00044{width:18.960000px;}
._15_c00044{width:22.830000px;}
._1a_c00044{width:24.330018px;}
._16_c00044{width:26.430024px;}
._13_c00044{width:27.509979px;}
._18_c00044{width:28.806063px;}
._17_c00044{width:30.780027px;}
.fc2_c00044{color:transparent;}
.fc1_c00044{color:rgb(0,0,0);}
.fc0_c00044{color:rgb(35,31,32);}
.fs1_c00044{font-size:51.000000px;}
.fs0_c00044{font-size:60.000000px;}
.y0_c00044{bottom:0.000000px;}
.y2c_c00044{bottom:64.800022px;}
.y2b_c00044{bottom:110.550022px;}
.y2a_c00044{bottom:125.625022px;}
.y29_c00044{bottom:140.775022px;}
.y28_c00044{bottom:155.925022px;}
.y27_c00044{bottom:171.375022px;}
.y26_c00044{bottom:186.525022px;}
.y25_c00044{bottom:201.975022px;}
.y24_c00044{bottom:217.125022px;}
.y23_c00044{bottom:232.575022px;}
.y22_c00044{bottom:248.025022px;}
.y21_c00044{bottom:263.175022px;}
.y20_c00044{bottom:278.325022px;}
.y1f_c00044{bottom:293.775022px;}
.y1e_c00044{bottom:309.225022px;}
.y1d_c00044{bottom:324.375022px;}
.y1c_c00044{bottom:339.825022px;}
.y1b_c00044{bottom:355.350022px;}
.y1a_c00044{bottom:370.125022px;}
.y19_c00044{bottom:385.575022px;}
.y18_c00044{bottom:401.025022px;}
.y17_c00044{bottom:416.550022px;}
.y16_c00044{bottom:431.625022px;}
.y15_c00044{bottom:446.775022px;}
.y14_c00044{bottom:461.925022px;}
.y12_c00044{bottom:514.800022px;}
.y11_c00044{bottom:534.225022px;}
.y10_c00044{bottom:553.350022px;}
.yf_c00044{bottom:573.150022px;}
.ye_c00044{bottom:592.575022px;}
.yd_c00044{bottom:611.625022px;}
.yc_c00044{bottom:631.125022px;}
.yb_c00044{bottom:650.925022px;}
.ya_c00044{bottom:670.350022px;}
.y9_c00044{bottom:689.775022px;}
.y8_c00044{bottom:709.200022px;}
.y7_c00044{bottom:728.325022px;}
.y6_c00044{bottom:748.125022px;}
.y5_c00044{bottom:767.550022px;}
.y4_c00044{bottom:786.225022px;}
.y3_c00044{bottom:805.725022px;}
.y2_c00044{bottom:825.525022px;}
.y1_c00044{bottom:844.950022px;}
.y13_c00044{bottom:886.725022px;}
.h3_c00044{height:50.028809px;}
.h4_c00044{height:50.053711px;}
.h2_c00044{height:58.886719px;}
.h1_c00044{height:957.750000px;}
.h0_c00044{height:957.975000px;}
.w1_c00044{width:643.500000px;}
.w0_c00044{width:643.650000px;}
.x0_c00044{left:0.000000px;}
.x3_c00044{left:90.000000px;}
.x1_c00044{left:91.050000px;}
.x4_c00044{left:95.025000px;}
.x2_c00044{left:107.250000px;}
.x5_c00044{left:117.000000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls1_c00044{letter-spacing:0.000000pt;}
.ls0_c00044{letter-spacing:5.466667pt;}
.ws1_c00044{word-spacing:-13.333333pt;}
.ws0_c00044{word-spacing:-11.333333pt;}
.ws2_c00044{word-spacing:0.000000pt;}
._d_c00044{margin-left:-10.346667pt;}
._12_c00044{margin-left:-9.386667pt;}
._11_c00044{margin-left:-8.480000pt;}
._e_c00044{margin-left:-7.093333pt;}
._14_c00044{margin-left:-5.418629pt;}
._19_c00044{margin-left:-4.181339pt;}
._6_c00044{margin-left:-2.773333pt;}
._4_c00044{margin-left:-1.493333pt;}
._1_c00044{width:1.546667pt;}
._7_c00044{width:2.933333pt;}
._2_c00044{width:3.946667pt;}
._5_c00044{width:5.333333pt;}
._0_c00044{width:6.453333pt;}
._3_c00044{width:7.360000pt;}
._c_c00044{width:8.480000pt;}
._b_c00044{width:9.760000pt;}
._10_c00044{width:11.253333pt;}
._f_c00044{width:12.266667pt;}
._8_c00044{width:14.506667pt;}
._9_c00044{width:15.573333pt;}
._a_c00044{width:16.853333pt;}
._15_c00044{width:20.293333pt;}
._1a_c00044{width:21.626683pt;}
._16_c00044{width:23.493355pt;}
._13_c00044{width:24.453315pt;}
._18_c00044{width:25.605389pt;}
._17_c00044{width:27.360024pt;}
.fs1_c00044{font-size:45.333333pt;}
.fs0_c00044{font-size:53.333333pt;}
.y0_c00044{bottom:0.000000pt;}
.y2c_c00044{bottom:57.600020pt;}
.y2b_c00044{bottom:98.266686pt;}
.y2a_c00044{bottom:111.666686pt;}
.y29_c00044{bottom:125.133353pt;}
.y28_c00044{bottom:138.600020pt;}
.y27_c00044{bottom:152.333353pt;}
.y26_c00044{bottom:165.800020pt;}
.y25_c00044{bottom:179.533353pt;}
.y24_c00044{bottom:193.000020pt;}
.y23_c00044{bottom:206.733353pt;}
.y22_c00044{bottom:220.466686pt;}
.y21_c00044{bottom:233.933353pt;}
.y20_c00044{bottom:247.400020pt;}
.y1f_c00044{bottom:261.133353pt;}
.y1e_c00044{bottom:274.866686pt;}
.y1d_c00044{bottom:288.333353pt;}
.y1c_c00044{bottom:302.066686pt;}
.y1b_c00044{bottom:315.866686pt;}
.y1a_c00044{bottom:329.000020pt;}
.y19_c00044{bottom:342.733353pt;}
.y18_c00044{bottom:356.466686pt;}
.y17_c00044{bottom:370.266686pt;}
.y16_c00044{bottom:383.666686pt;}
.y15_c00044{bottom:397.133353pt;}
.y14_c00044{bottom:410.600020pt;}
.y12_c00044{bottom:457.600020pt;}
.y11_c00044{bottom:474.866686pt;}
.y10_c00044{bottom:491.866686pt;}
.yf_c00044{bottom:509.466686pt;}
.ye_c00044{bottom:526.733353pt;}
.yd_c00044{bottom:543.666686pt;}
.yc_c00044{bottom:561.000020pt;}
.yb_c00044{bottom:578.600020pt;}
.ya_c00044{bottom:595.866686pt;}
.y9_c00044{bottom:613.133353pt;}
.y8_c00044{bottom:630.400020pt;}
.y7_c00044{bottom:647.400020pt;}
.y6_c00044{bottom:665.000020pt;}
.y5_c00044{bottom:682.266686pt;}
.y4_c00044{bottom:698.866686pt;}
.y3_c00044{bottom:716.200020pt;}
.y2_c00044{bottom:733.800020pt;}
.y1_c00044{bottom:751.066686pt;}
.y13_c00044{bottom:788.200020pt;}
.h3_c00044{height:44.470052pt;}
.h4_c00044{height:44.492188pt;}
.h2_c00044{height:52.343750pt;}
.h1_c00044{height:851.333333pt;}
.h0_c00044{height:851.533333pt;}
.w1_c00044{width:572.000000pt;}
.w0_c00044{width:572.133333pt;}
.x0_c00044{left:0.000000pt;}
.x3_c00044{left:80.000000pt;}
.x1_c00044{left:80.933333pt;}
.x4_c00044{left:84.466667pt;}
.x2_c00044{left:95.333333pt;}
.x5_c00044{left:104.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_91ede67b54c96afa1fa8b25a.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00045;src:url('chunks/assets/font_eaa9e5984ddcb67aca313e0a.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00045{letter-spacing:0.000000px;}
.sc__c00045{text-shadow:none;}
.sc0_c00045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00045{-webkit-text-stroke:0px transparent;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00045{word-spacing:-15.000000px;}
.ws1_c00045{word-spacing:-12.750000px;}
.ws2_c00045{word-spacing:0.000000px;}
._11_c00045{margin-left:-15.282114px;}
._c_c00045{margin-left:-12.677856px;}
._d_c00045{margin-left:-10.722144px;}
._a_c00045{margin-left:-9.720018px;}
._15_c00045{margin-left:-7.652763px;}
._19_c00045{margin-left:-6.570066px;}
._1d_c00045{margin-left:-5.406051px;}
._18_c00045{margin-left:-4.381404px;}
._3_c00045{margin-left:-3.050922px;}
._0_c00045{margin-left:-1.448961px;}
._2_c00045{width:1.799994px;}
._1_c00045{width:2.816985px;}
._b_c00045{width:3.993099px;}
._16_c00045{width:5.148438px;}
._f_c00045{width:6.182817px;}
._5_c00045{width:7.500024px;}
._7_c00045{width:9.420048px;}
._6_c00045{width:10.560000px;}
._9_c00045{width:11.777916px;}
._8_c00045{width:12.900000px;}
._14_c00045{width:13.911090px;}
._13_c00045{width:16.080024px;}
._4_c00045{width:17.520018px;}
._e_c00045{width:18.992997px;}
._10_c00045{width:21.213153px;}
._12_c00045{width:23.082114px;}
._17_c00045{width:24.698892px;}
._1b_c00045{width:26.198904px;}
._1c_c00045{width:27.800805px;}
._1a_c00045{width:29.402673px;}
.fc1_c00045{color:transparent;}
.fc0_c00045{color:rgb(35,31,32);}
.fs0_c00045{font-size:51.000000px;}
.fs1_c00045{font-size:60.000000px;}
.y0_c00045{bottom:0.000000px;}
.y28_c00045{bottom:64.425022px;}
.y27_c00045{bottom:110.175022px;}
.y26_c00045{bottom:125.325022px;}
.y25_c00045{bottom:141.150022px;}
.y24_c00045{bottom:155.925022px;}
.y23_c00045{bottom:171.375022px;}
.y22_c00045{bottom:186.525022px;}
.y21_c00045{bottom:242.925022px;}
.y20_c00045{bottom:262.425022px;}
.y1f_c00045{bottom:281.925022px;}
.y1e_c00045{bottom:300.975022px;}
.y1d_c00045{bottom:320.025022px;}
.y1c_c00045{bottom:339.525022px;}
.y1b_c00045{bottom:359.325022px;}
.y1a_c00045{bottom:378.375022px;}
.y19_c00045{bottom:398.175022px;}
.y18_c00045{bottom:417.600022px;}
.y17_c00045{bottom:437.025022px;}
.y16_c00045{bottom:456.525022px;}
.y15_c00045{bottom:475.575022px;}
.y14_c00045{bottom:495.000022px;}
.y13_c00045{bottom:514.800022px;}
.y12_c00045{bottom:533.925022px;}
.y11_c00045{bottom:553.350022px;}
.y10_c00045{bottom:572.775022px;}
.yf_c00045{bottom:592.200022px;}
.ye_c00045{bottom:612.000022px;}
.yd_c00045{bottom:631.125022px;}
.yc_c00045{bottom:650.925022px;}
.yb_c00045{bottom:670.350022px;}
.ya_c00045{bottom:689.775022px;}
.y9_c00045{bottom:709.200022px;}
.y8_c00045{bottom:728.325022px;}
.y7_c00045{bottom:748.125022px;}
.y6_c00045{bottom:767.475022px;}
.y5_c00045{bottom:786.600022px;}
.y4_c00045{bottom:805.725022px;}
.y3_c00045{bottom:825.525022px;}
.y2_c00045{bottom:844.950022px;}
.y1_c00045{bottom:886.725022px;}
.h2_c00045{height:50.028809px;}
.h4_c00045{height:50.053711px;}
.h3_c00045{height:58.886719px;}
.h1_c00045{height:957.750000px;}
.h0_c00045{height:957.975000px;}
.w0_c00045{width:641.850030px;}
.w1_c00045{width:642.000000px;}
.x0_c00045{left:0.000000px;}
.x3_c00045{left:81.000000px;}
.x5_c00045{left:86.775000px;}
.x2_c00045{left:96.150000px;}
.x4_c00045{left:97.200000px;}
.x6_c00045{left:113.775000px;}
.x1_c00045{left:422.250000px;}
.x7_c00045{left:538.200000px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls0_c00045{letter-spacing:0.000000pt;}
.ws0_c00045{word-spacing:-13.333333pt;}
.ws1_c00045{word-spacing:-11.333333pt;}
.ws2_c00045{word-spacing:0.000000pt;}
._11_c00045{margin-left:-13.584101pt;}
._c_c00045{margin-left:-11.269205pt;}
._d_c00045{margin-left:-9.530795pt;}
._a_c00045{margin-left:-8.640016pt;}
._15_c00045{margin-left:-6.802456pt;}
._19_c00045{margin-left:-5.840059pt;}
._1d_c00045{margin-left:-4.805379pt;}
._18_c00045{margin-left:-3.894581pt;}
._3_c00045{margin-left:-2.711931pt;}
._0_c00045{margin-left:-1.287965pt;}
._2_c00045{width:1.599995pt;}
._1_c00045{width:2.503987pt;}
._b_c00045{width:3.549421pt;}
._16_c00045{width:4.576389pt;}
._f_c00045{width:5.495837pt;}
._5_c00045{width:6.666688pt;}
._7_c00045{width:8.373376pt;}
._6_c00045{width:9.386667pt;}
._9_c00045{width:10.469259pt;}
._8_c00045{width:11.466667pt;}
._14_c00045{width:12.365413pt;}
._13_c00045{width:14.293355pt;}
._4_c00045{width:15.573349pt;}
._e_c00045{width:16.882664pt;}
._10_c00045{width:18.856136pt;}
._12_c00045{width:20.517435pt;}
._17_c00045{width:21.954571pt;}
._1b_c00045{width:23.287915pt;}
._1c_c00045{width:24.711827pt;}
._1a_c00045{width:26.135709pt;}
.fs0_c00045{font-size:45.333333pt;}
.fs1_c00045{font-size:53.333333pt;}
.y0_c00045{bottom:0.000000pt;}
.y28_c00045{bottom:57.266686pt;}
.y27_c00045{bottom:97.933353pt;}
.y26_c00045{bottom:111.400020pt;}
.y25_c00045{bottom:125.466686pt;}
.y24_c00045{bottom:138.600020pt;}
.y23_c00045{bottom:152.333353pt;}
.y22_c00045{bottom:165.800020pt;}
.y21_c00045{bottom:215.933353pt;}
.y20_c00045{bottom:233.266686pt;}
.y1f_c00045{bottom:250.600020pt;}
.y1e_c00045{bottom:267.533353pt;}
.y1d_c00045{bottom:284.466686pt;}
.y1c_c00045{bottom:301.800020pt;}
.y1b_c00045{bottom:319.400020pt;}
.y1a_c00045{bottom:336.333353pt;}
.y19_c00045{bottom:353.933353pt;}
.y18_c00045{bottom:371.200020pt;}
.y17_c00045{bottom:388.466686pt;}
.y16_c00045{bottom:405.800020pt;}
.y15_c00045{bottom:422.733353pt;}
.y14_c00045{bottom:440.000020pt;}
.y13_c00045{bottom:457.600020pt;}
.y12_c00045{bottom:474.600020pt;}
.y11_c00045{bottom:491.866686pt;}
.y10_c00045{bottom:509.133353pt;}
.yf_c00045{bottom:526.400020pt;}
.ye_c00045{bottom:544.000020pt;}
.yd_c00045{bottom:561.000020pt;}
.yc_c00045{bottom:578.600020pt;}
.yb_c00045{bottom:595.866686pt;}
.ya_c00045{bottom:613.133353pt;}
.y9_c00045{bottom:630.400020pt;}
.y8_c00045{bottom:647.400020pt;}
.y7_c00045{bottom:665.000020pt;}
.y6_c00045{bottom:682.200020pt;}
.y5_c00045{bottom:699.200020pt;}
.y4_c00045{bottom:716.200020pt;}
.y3_c00045{bottom:733.800020pt;}
.y2_c00045{bottom:751.066686pt;}
.y1_c00045{bottom:788.200020pt;}
.h2_c00045{height:44.470052pt;}
.h4_c00045{height:44.492188pt;}
.h3_c00045{height:52.343750pt;}
.h1_c00045{height:851.333333pt;}
.h0_c00045{height:851.533333pt;}
.w0_c00045{width:570.533360pt;}
.w1_c00045{width:570.666667pt;}
.x0_c00045{left:0.000000pt;}
.x3_c00045{left:72.000000pt;}
.x5_c00045{left:77.133333pt;}
.x2_c00045{left:85.466667pt;}
.x4_c00045{left:86.400000pt;}
.x6_c00045{left:101.133333pt;}
.x1_c00045{left:375.333333pt;}
.x7_c00045{left:478.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_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_eea9b69424eb68fb8f4a2df5.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00046;src:url('chunks/assets/font_904d02342f9e0e42a76ddf81.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00046{vertical-align:0.000000px;}
.ls2_c00046{letter-spacing:0.000000px;}
.ls1_c00046{letter-spacing:3.150000px;}
.ls0_c00046{letter-spacing:13.800000px;}
.sc__c00046{text-shadow:none;}
.sc0_c00046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00046{-webkit-text-stroke:0px transparent;}
.sc0_c00046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00046{word-spacing:-15.000000px;}
.ws1_c00046{word-spacing:-12.750000px;}
.ws2_c00046{word-spacing:0.000000px;}
._7_c00046{margin-left:-12.660000px;}
._11_c00046{margin-left:-11.580000px;}
._16_c00046{margin-left:-5.526036px;}
._9_c00046{margin-left:-3.900000px;}
._12_c00046{margin-left:-2.880000px;}
._3_c00046{margin-left:-1.560000px;}
._0_c00046{width:1.440000px;}
._2_c00046{width:3.360000px;}
._1_c00046{width:4.680000px;}
._8_c00046{width:6.018111px;}
._6_c00046{width:7.380000px;}
._5_c00046{width:9.360000px;}
._10_c00046{width:11.520000px;}
._f_c00046{width:12.540000px;}
._e_c00046{width:13.860000px;}
._15_c00046{width:15.255018px;}
._4_c00046{width:16.620000px;}
._d_c00046{width:18.000000px;}
._a_c00046{width:19.500000px;}
._c_c00046{width:21.240000px;}
._b_c00046{width:23.400000px;}
._14_c00046{width:24.929958px;}
._13_c00046{width:26.250060px;}
.fc2_c00046{color:transparent;}
.fc1_c00046{color:rgb(0,0,0);}
.fc0_c00046{color:rgb(35,31,32);}
.fs1_c00046{font-size:51.000000px;}
.fs0_c00046{font-size:60.000000px;}
.y0_c00046{bottom:0.000000px;}
.y27_c00046{bottom:64.425022px;}
.y26_c00046{bottom:110.175022px;}
.y25_c00046{bottom:125.325022px;}
.y24_c00046{bottom:140.775022px;}
.y23_c00046{bottom:155.925022px;}
.y22_c00046{bottom:171.750022px;}
.y21_c00046{bottom:186.525022px;}
.y20_c00046{bottom:201.975022px;}
.y1f_c00046{bottom:217.125022px;}
.y1e_c00046{bottom:232.575022px;}
.y1d_c00046{bottom:248.025022px;}
.y1c_c00046{bottom:263.175022px;}
.y1b_c00046{bottom:278.625022px;}
.y1a_c00046{bottom:294.075022px;}
.y19_c00046{bottom:309.225022px;}
.y18_c00046{bottom:324.375022px;}
.y17_c00046{bottom:339.525022px;}
.y16_c00046{bottom:411.825022px;}
.y15_c00046{bottom:431.325022px;}
.y14_c00046{bottom:450.750022px;}
.y13_c00046{bottom:470.175022px;}
.y12_c00046{bottom:489.600022px;}
.y11_c00046{bottom:508.725022px;}
.y10_c00046{bottom:528.525022px;}
.yf_c00046{bottom:547.575022px;}
.ye_c00046{bottom:567.375022px;}
.yd_c00046{bottom:586.800022px;}
.yc_c00046{bottom:605.925022px;}
.yb_c00046{bottom:625.725022px;}
.ya_c00046{bottom:644.775022px;}
.y9_c00046{bottom:664.200022px;}
.y8_c00046{bottom:683.625022px;}
.y7_c00046{bottom:702.750022px;}
.y6_c00046{bottom:737.325022px;}
.y4_c00046{bottom:786.225022px;}
.y3_c00046{bottom:806.025022px;}
.y2_c00046{bottom:825.525022px;}
.y1_c00046{bottom:844.575022px;}
.y5_c00046{bottom:886.725022px;}
.h3_c00046{height:50.028809px;}
.h4_c00046{height:50.053711px;}
.h2_c00046{height:58.886719px;}
.h1_c00046{height:957.750000px;}
.h0_c00046{height:957.975000px;}
.w1_c00046{width:643.500000px;}
.w0_c00046{width:643.650000px;}
.x0_c00046{left:0.000000px;}
.x2_c00046{left:90.000000px;}
.x1_c00046{left:91.425000px;}
.x3_c00046{left:96.825000px;}
.x4_c00046{left:123.825000px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls2_c00046{letter-spacing:0.000000pt;}
.ls1_c00046{letter-spacing:2.800000pt;}
.ls0_c00046{letter-spacing:12.266667pt;}
.ws0_c00046{word-spacing:-13.333333pt;}
.ws1_c00046{word-spacing:-11.333333pt;}
.ws2_c00046{word-spacing:0.000000pt;}
._7_c00046{margin-left:-11.253333pt;}
._11_c00046{margin-left:-10.293333pt;}
._16_c00046{margin-left:-4.912032pt;}
._9_c00046{margin-left:-3.466667pt;}
._12_c00046{margin-left:-2.560000pt;}
._3_c00046{margin-left:-1.386667pt;}
._0_c00046{width:1.280000pt;}
._2_c00046{width:2.986667pt;}
._1_c00046{width:4.160000pt;}
._8_c00046{width:5.349432pt;}
._6_c00046{width:6.560000pt;}
._5_c00046{width:8.320000pt;}
._10_c00046{width:10.240000pt;}
._f_c00046{width:11.146667pt;}
._e_c00046{width:12.320000pt;}
._15_c00046{width:13.560016pt;}
._4_c00046{width:14.773333pt;}
._d_c00046{width:16.000000pt;}
._a_c00046{width:17.333333pt;}
._c_c00046{width:18.880000pt;}
._b_c00046{width:20.800000pt;}
._14_c00046{width:22.159963pt;}
._13_c00046{width:23.333387pt;}
.fs1_c00046{font-size:45.333333pt;}
.fs0_c00046{font-size:53.333333pt;}
.y0_c00046{bottom:0.000000pt;}
.y27_c00046{bottom:57.266686pt;}
.y26_c00046{bottom:97.933353pt;}
.y25_c00046{bottom:111.400020pt;}
.y24_c00046{bottom:125.133353pt;}
.y23_c00046{bottom:138.600020pt;}
.y22_c00046{bottom:152.666686pt;}
.y21_c00046{bottom:165.800020pt;}
.y20_c00046{bottom:179.533353pt;}
.y1f_c00046{bottom:193.000020pt;}
.y1e_c00046{bottom:206.733353pt;}
.y1d_c00046{bottom:220.466686pt;}
.y1c_c00046{bottom:233.933353pt;}
.y1b_c00046{bottom:247.666686pt;}
.y1a_c00046{bottom:261.400020pt;}
.y19_c00046{bottom:274.866686pt;}
.y18_c00046{bottom:288.333353pt;}
.y17_c00046{bottom:301.800020pt;}
.y16_c00046{bottom:366.066686pt;}
.y15_c00046{bottom:383.400020pt;}
.y14_c00046{bottom:400.666686pt;}
.y13_c00046{bottom:417.933353pt;}
.y12_c00046{bottom:435.200020pt;}
.y11_c00046{bottom:452.200020pt;}
.y10_c00046{bottom:469.800020pt;}
.yf_c00046{bottom:486.733353pt;}
.ye_c00046{bottom:504.333353pt;}
.yd_c00046{bottom:521.600020pt;}
.yc_c00046{bottom:538.600020pt;}
.yb_c00046{bottom:556.200020pt;}
.ya_c00046{bottom:573.133353pt;}
.y9_c00046{bottom:590.400020pt;}
.y8_c00046{bottom:607.666686pt;}
.y7_c00046{bottom:624.666686pt;}
.y6_c00046{bottom:655.400020pt;}
.y4_c00046{bottom:698.866686pt;}
.y3_c00046{bottom:716.466686pt;}
.y2_c00046{bottom:733.800020pt;}
.y1_c00046{bottom:750.733353pt;}
.y5_c00046{bottom:788.200020pt;}
.h3_c00046{height:44.470052pt;}
.h4_c00046{height:44.492188pt;}
.h2_c00046{height:52.343750pt;}
.h1_c00046{height:851.333333pt;}
.h0_c00046{height:851.533333pt;}
.w1_c00046{width:572.000000pt;}
.w0_c00046{width:572.133333pt;}
.x0_c00046{left:0.000000pt;}
.x2_c00046{left:80.000000pt;}
.x1_c00046{left:81.266667pt;}
.x3_c00046{left:86.066667pt;}
.x4_c00046{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6d8fda433505ff81dbc9262e.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00047;src:url('chunks/assets/font_89ed6945b507e15835dc27b6.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00047{letter-spacing:0.000000px;}
.sc__c00047{text-shadow:none;}
.sc0_c00047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00047{-webkit-text-stroke:0px transparent;}
.sc0_c00047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00047{word-spacing:-15.000000px;}
.ws1_c00047{word-spacing:0.000000px;}
._12_c00047{margin-left:-17.226054px;}
._f_c00047{margin-left:-15.510270px;}
._e_c00047{margin-left:-13.889730px;}
._b_c00047{margin-left:-12.018054px;}
._4_c00047{margin-left:-6.633009px;}
._7_c00047{margin-left:-4.086054px;}
._1_c00047{margin-left:-2.660976px;}
._0_c00047{margin-left:-1.082985px;}
._3_c00047{width:1.428000px;}
._5_c00047{width:2.466054px;}
._2_c00047{width:3.599988px;}
._d_c00047{width:5.075784px;}
._c_c00047{width:6.689730px;}
._6_c00047{width:7.754961px;}
._a_c00047{width:8.858985px;}
._9_c00047{width:10.776000px;}
._8_c00047{width:12.792000px;}
._10_c00047{width:13.946859px;}
._11_c00047{width:16.241946px;}
._13_c00047{width:17.388000px;}
._15_c00047{width:18.701946px;}
._14_c00047{width:21.732000px;}
._16_c00047{width:26.654997px;}
._18_c00047{width:28.232937px;}
._17_c00047{width:29.657913px;}
.fc1_c00047{color:transparent;}
.fc0_c00047{color:rgb(35,31,32);}
.fs0_c00047{font-size:51.000000px;}
.fs1_c00047{font-size:60.000000px;}
.y0_c00047{bottom:0.000000px;}
.y28_c00047{bottom:64.425022px;}
.y27_c00047{bottom:110.550022px;}
.y26_c00047{bottom:125.325022px;}
.y25_c00047{bottom:140.775022px;}
.y24_c00047{bottom:155.925022px;}
.y23_c00047{bottom:171.750022px;}
.y22_c00047{bottom:186.825022px;}
.y21_c00047{bottom:202.350022px;}
.y20_c00047{bottom:217.125022px;}
.y1f_c00047{bottom:260.325022px;}
.y1e_c00047{bottom:279.750022px;}
.y1d_c00047{bottom:299.175022px;}
.y1c_c00047{bottom:318.600022px;}
.y1b_c00047{bottom:338.025022px;}
.y1a_c00047{bottom:357.150022px;}
.y19_c00047{bottom:376.950022px;}
.y18_c00047{bottom:396.375022px;}
.y17_c00047{bottom:415.425022px;}
.y16_c00047{bottom:435.225022px;}
.y15_c00047{bottom:454.350022px;}
.y14_c00047{bottom:474.150022px;}
.y13_c00047{bottom:493.200022px;}
.y12_c00047{bottom:512.625022px;}
.y11_c00047{bottom:531.750022px;}
.y10_c00047{bottom:551.550022px;}
.yf_c00047{bottom:570.600022px;}
.ye_c00047{bottom:590.400022px;}
.yd_c00047{bottom:609.825022px;}
.yc_c00047{bottom:629.325022px;}
.yb_c00047{bottom:648.750022px;}
.ya_c00047{bottom:668.175022px;}
.y9_c00047{bottom:687.600022px;}
.y8_c00047{bottom:706.725022px;}
.y7_c00047{bottom:726.525022px;}
.y6_c00047{bottom:745.950022px;}
.y5_c00047{bottom:765.375022px;}
.y4_c00047{bottom:784.800022px;}
.y3_c00047{bottom:804.225022px;}
.y2_c00047{bottom:845.325022px;}
.y1_c00047{bottom:886.725022px;}
.h2_c00047{height:50.028809px;}
.h4_c00047{height:50.053711px;}
.h3_c00047{height:58.886719px;}
.h1_c00047{height:957.750000px;}
.h0_c00047{height:957.975000px;}
.w0_c00047{width:641.850030px;}
.w1_c00047{width:642.000000px;}
.x0_c00047{left:0.000000px;}
.x3_c00047{left:80.250000px;}
.x2_c00047{left:81.375000px;}
.x5_c00047{left:86.775000px;}
.x4_c00047{left:97.200000px;}
.x1_c00047{left:402.450000px;}
.x6_c00047{left:538.200000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls0_c00047{letter-spacing:0.000000pt;}
.ws0_c00047{word-spacing:-13.333333pt;}
.ws1_c00047{word-spacing:0.000000pt;}
._12_c00047{margin-left:-15.312048pt;}
._f_c00047{margin-left:-13.786907pt;}
._e_c00047{margin-left:-12.346427pt;}
._b_c00047{margin-left:-10.682715pt;}
._4_c00047{margin-left:-5.896008pt;}
._7_c00047{margin-left:-3.632048pt;}
._1_c00047{margin-left:-2.365312pt;}
._0_c00047{margin-left:-0.962653pt;}
._3_c00047{width:1.269333pt;}
._5_c00047{width:2.192048pt;}
._2_c00047{width:3.199989pt;}
._d_c00047{width:4.511808pt;}
._c_c00047{width:5.946427pt;}
._6_c00047{width:6.893299pt;}
._a_c00047{width:7.874653pt;}
._9_c00047{width:9.578667pt;}
._8_c00047{width:11.370667pt;}
._10_c00047{width:12.397208pt;}
._11_c00047{width:14.437285pt;}
._13_c00047{width:15.456000pt;}
._15_c00047{width:16.623952pt;}
._14_c00047{width:19.317333pt;}
._16_c00047{width:23.693331pt;}
._18_c00047{width:25.095944pt;}
._17_c00047{width:26.362589pt;}
.fs0_c00047{font-size:45.333333pt;}
.fs1_c00047{font-size:53.333333pt;}
.y0_c00047{bottom:0.000000pt;}
.y28_c00047{bottom:57.266686pt;}
.y27_c00047{bottom:98.266686pt;}
.y26_c00047{bottom:111.400020pt;}
.y25_c00047{bottom:125.133353pt;}
.y24_c00047{bottom:138.600020pt;}
.y23_c00047{bottom:152.666686pt;}
.y22_c00047{bottom:166.066686pt;}
.y21_c00047{bottom:179.866686pt;}
.y20_c00047{bottom:193.000020pt;}
.y1f_c00047{bottom:231.400020pt;}
.y1e_c00047{bottom:248.666686pt;}
.y1d_c00047{bottom:265.933353pt;}
.y1c_c00047{bottom:283.200020pt;}
.y1b_c00047{bottom:300.466686pt;}
.y1a_c00047{bottom:317.466686pt;}
.y19_c00047{bottom:335.066686pt;}
.y18_c00047{bottom:352.333353pt;}
.y17_c00047{bottom:369.266686pt;}
.y16_c00047{bottom:386.866686pt;}
.y15_c00047{bottom:403.866686pt;}
.y14_c00047{bottom:421.466686pt;}
.y13_c00047{bottom:438.400020pt;}
.y12_c00047{bottom:455.666686pt;}
.y11_c00047{bottom:472.666686pt;}
.y10_c00047{bottom:490.266686pt;}
.yf_c00047{bottom:507.200020pt;}
.ye_c00047{bottom:524.800020pt;}
.yd_c00047{bottom:542.066686pt;}
.yc_c00047{bottom:559.400020pt;}
.yb_c00047{bottom:576.666686pt;}
.ya_c00047{bottom:593.933353pt;}
.y9_c00047{bottom:611.200020pt;}
.y8_c00047{bottom:628.200020pt;}
.y7_c00047{bottom:645.800020pt;}
.y6_c00047{bottom:663.066686pt;}
.y5_c00047{bottom:680.333353pt;}
.y4_c00047{bottom:697.600020pt;}
.y3_c00047{bottom:714.866686pt;}
.y2_c00047{bottom:751.400020pt;}
.y1_c00047{bottom:788.200020pt;}
.h2_c00047{height:44.470052pt;}
.h4_c00047{height:44.492188pt;}
.h3_c00047{height:52.343750pt;}
.h1_c00047{height:851.333333pt;}
.h0_c00047{height:851.533333pt;}
.w0_c00047{width:570.533360pt;}
.w1_c00047{width:570.666667pt;}
.x0_c00047{left:0.000000pt;}
.x3_c00047{left:71.333333pt;}
.x2_c00047{left:72.333333pt;}
.x5_c00047{left:77.133333pt;}
.x4_c00047{left:86.400000pt;}
.x1_c00047{left:357.733333pt;}
.x6_c00047{left:478.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_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_9ede041d37771bf364147b9d.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00048;src:url('chunks/assets/font_9ade81760b68b7e76bc2a3c9.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls0_c00048{letter-spacing:0.000000px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00048{word-spacing:-15.000000px;}
.ws1_c00048{word-spacing:0.000000px;}
._6_c00048{margin-left:-15.360000px;}
._5_c00048{margin-left:-14.040000px;}
._15_c00048{margin-left:-12.960000px;}
._12_c00048{margin-left:-11.820000px;}
._13_c00048{margin-left:-4.020000px;}
._14_c00048{margin-left:-2.940000px;}
._8_c00048{margin-left:-1.680000px;}
._0_c00048{width:1.020000px;}
._1_c00048{width:2.160000px;}
._3_c00048{width:4.140000px;}
._7_c00048{width:5.820000px;}
._e_c00048{width:7.080000px;}
._9_c00048{width:8.460000px;}
._d_c00048{width:9.900000px;}
._2_c00048{width:11.220000px;}
._4_c00048{width:12.420000px;}
._11_c00048{width:13.980000px;}
._a_c00048{width:16.080000px;}
._b_c00048{width:17.460000px;}
._16_c00048{width:19.020000px;}
._c_c00048{width:20.220000px;}
._10_c00048{width:21.360000px;}
._f_c00048{width:22.680000px;}
._17_c00048{width:25.289958px;}
._18_c00048{width:26.550060px;}
._1a_c00048{width:27.809958px;}
._19_c00048{width:29.069958px;}
.fc1_c00048{color:transparent;}
.fc0_c00048{color:rgb(35,31,32);}
.fs1_c00048{font-size:51.000000px;}
.fs0_c00048{font-size:60.000000px;}
.y0_c00048{bottom:0.000000px;}
.y29_c00048{bottom:64.425022px;}
.y28_c00048{bottom:110.175022px;}
.y27_c00048{bottom:125.625022px;}
.y26_c00048{bottom:141.150022px;}
.y25_c00048{bottom:155.925022px;}
.y24_c00048{bottom:171.750022px;}
.y23_c00048{bottom:186.825022px;}
.y22_c00048{bottom:202.350022px;}
.y21_c00048{bottom:217.425022px;}
.y20_c00048{bottom:232.950022px;}
.y1e_c00048{bottom:281.925022px;}
.y1d_c00048{bottom:301.350022px;}
.y1c_c00048{bottom:320.400022px;}
.y1b_c00048{bottom:339.825022px;}
.y1a_c00048{bottom:358.950022px;}
.y19_c00048{bottom:378.375022px;}
.y18_c00048{bottom:398.175022px;}
.y17_c00048{bottom:417.600022px;}
.y16_c00048{bottom:437.025022px;}
.y15_c00048{bottom:456.150022px;}
.y14_c00048{bottom:475.950022px;}
.y13_c00048{bottom:495.000022px;}
.y12_c00048{bottom:514.425022px;}
.y11_c00048{bottom:534.225022px;}
.y10_c00048{bottom:553.725022px;}
.yf_c00048{bottom:573.150022px;}
.ye_c00048{bottom:592.575022px;}
.yd_c00048{bottom:612.000022px;}
.yc_c00048{bottom:631.125022px;}
.yb_c00048{bottom:650.925022px;}
.ya_c00048{bottom:670.350022px;}
.y9_c00048{bottom:689.775022px;}
.y8_c00048{bottom:708.825022px;}
.y7_c00048{bottom:728.325022px;}
.y6_c00048{bottom:748.125022px;}
.y5_c00048{bottom:767.550022px;}
.y4_c00048{bottom:786.675022px;}
.y3_c00048{bottom:806.100022px;}
.y2_c00048{bottom:825.525022px;}
.y1_c00048{bottom:844.950022px;}
.y1f_c00048{bottom:886.725022px;}
.h3_c00048{height:50.028809px;}
.h4_c00048{height:50.053711px;}
.h2_c00048{height:58.886719px;}
.h1_c00048{height:957.750000px;}
.h0_c00048{height:957.975000px;}
.w1_c00048{width:643.500000px;}
.w0_c00048{width:643.650000px;}
.x0_c00048{left:0.000000px;}
.x2_c00048{left:90.375000px;}
.x1_c00048{left:91.425000px;}
.x4_c00048{left:96.825000px;}
.x3_c00048{left:107.250000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls0_c00048{letter-spacing:0.000000pt;}
.ws0_c00048{word-spacing:-13.333333pt;}
.ws1_c00048{word-spacing:0.000000pt;}
._6_c00048{margin-left:-13.653333pt;}
._5_c00048{margin-left:-12.480000pt;}
._15_c00048{margin-left:-11.520000pt;}
._12_c00048{margin-left:-10.506667pt;}
._13_c00048{margin-left:-3.573333pt;}
._14_c00048{margin-left:-2.613333pt;}
._8_c00048{margin-left:-1.493333pt;}
._0_c00048{width:0.906667pt;}
._1_c00048{width:1.920000pt;}
._3_c00048{width:3.680000pt;}
._7_c00048{width:5.173333pt;}
._e_c00048{width:6.293333pt;}
._9_c00048{width:7.520000pt;}
._d_c00048{width:8.800000pt;}
._2_c00048{width:9.973333pt;}
._4_c00048{width:11.040000pt;}
._11_c00048{width:12.426667pt;}
._a_c00048{width:14.293333pt;}
._b_c00048{width:15.520000pt;}
._16_c00048{width:16.906667pt;}
._c_c00048{width:17.973333pt;}
._10_c00048{width:18.986667pt;}
._f_c00048{width:20.160000pt;}
._17_c00048{width:22.479963pt;}
._18_c00048{width:23.600053pt;}
._1a_c00048{width:24.719963pt;}
._19_c00048{width:25.839963pt;}
.fs1_c00048{font-size:45.333333pt;}
.fs0_c00048{font-size:53.333333pt;}
.y0_c00048{bottom:0.000000pt;}
.y29_c00048{bottom:57.266686pt;}
.y28_c00048{bottom:97.933353pt;}
.y27_c00048{bottom:111.666686pt;}
.y26_c00048{bottom:125.466686pt;}
.y25_c00048{bottom:138.600020pt;}
.y24_c00048{bottom:152.666686pt;}
.y23_c00048{bottom:166.066686pt;}
.y22_c00048{bottom:179.866686pt;}
.y21_c00048{bottom:193.266686pt;}
.y20_c00048{bottom:207.066686pt;}
.y1e_c00048{bottom:250.600020pt;}
.y1d_c00048{bottom:267.866686pt;}
.y1c_c00048{bottom:284.800020pt;}
.y1b_c00048{bottom:302.066686pt;}
.y1a_c00048{bottom:319.066686pt;}
.y19_c00048{bottom:336.333353pt;}
.y18_c00048{bottom:353.933353pt;}
.y17_c00048{bottom:371.200020pt;}
.y16_c00048{bottom:388.466686pt;}
.y15_c00048{bottom:405.466686pt;}
.y14_c00048{bottom:423.066686pt;}
.y13_c00048{bottom:440.000020pt;}
.y12_c00048{bottom:457.266686pt;}
.y11_c00048{bottom:474.866686pt;}
.y10_c00048{bottom:492.200020pt;}
.yf_c00048{bottom:509.466686pt;}
.ye_c00048{bottom:526.733353pt;}
.yd_c00048{bottom:544.000020pt;}
.yc_c00048{bottom:561.000020pt;}
.yb_c00048{bottom:578.600020pt;}
.ya_c00048{bottom:595.866686pt;}
.y9_c00048{bottom:613.133353pt;}
.y8_c00048{bottom:630.066686pt;}
.y7_c00048{bottom:647.400020pt;}
.y6_c00048{bottom:665.000020pt;}
.y5_c00048{bottom:682.266686pt;}
.y4_c00048{bottom:699.266686pt;}
.y3_c00048{bottom:716.533353pt;}
.y2_c00048{bottom:733.800020pt;}
.y1_c00048{bottom:751.066686pt;}
.y1f_c00048{bottom:788.200020pt;}
.h3_c00048{height:44.470052pt;}
.h4_c00048{height:44.492188pt;}
.h2_c00048{height:52.343750pt;}
.h1_c00048{height:851.333333pt;}
.h0_c00048{height:851.533333pt;}
.w1_c00048{width:572.000000pt;}
.w0_c00048{width:572.133333pt;}
.x0_c00048{left:0.000000pt;}
.x2_c00048{left:80.333333pt;}
.x1_c00048{left:81.266667pt;}
.x4_c00048{left:86.066667pt;}
.x3_c00048{left:95.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6d8fda433505ff81dbc9262e.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00049;src:url('chunks/assets/font_d919a3dda421b42e90219790.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-15.000000px;}
.ws1_c00049{word-spacing:0.000000px;}
._15_c00049{margin-left:-15.750066px;}
._16_c00049{margin-left:-14.412120px;}
._c_c00049{margin-left:-13.320096px;}
._a_c00049{margin-left:-11.784000px;}
._9_c00049{margin-left:-9.816000px;}
._4_c00049{margin-left:-6.633009px;}
._b_c00049{margin-left:-4.800000px;}
._19_c00049{margin-left:-3.678120px;}
._1_c00049{margin-left:-2.660976px;}
._0_c00049{margin-left:-1.082985px;}
._3_c00049{width:1.428000px;}
._5_c00049{width:2.466054px;}
._2_c00049{width:3.599988px;}
._14_c00049{width:4.695705px;}
._d_c00049{width:6.089970px;}
._f_c00049{width:7.236216px;}
._13_c00049{width:8.333250px;}
._11_c00049{width:9.953946px;}
._12_c00049{width:11.892012px;}
._10_c00049{width:13.638162px;}
._e_c00049{width:16.715784px;}
._8_c00049{width:18.252000px;}
._7_c00049{width:19.980000px;}
._6_c00049{width:21.132000px;}
._18_c00049{width:23.993919px;}
._17_c00049{width:26.654997px;}
._1a_c00049{width:29.249979px;}
.fc1_c00049{color:transparent;}
.fc0_c00049{color:rgb(35,31,32);}
.fs0_c00049{font-size:51.000000px;}
.fs1_c00049{font-size:60.000000px;}
.y0_c00049{bottom:0.000000px;}
.y1d_c00049{bottom:64.425022px;}
.y1c_c00049{bottom:110.175022px;}
.y1b_c00049{bottom:125.325022px;}
.y1a_c00049{bottom:141.150022px;}
.y19_c00049{bottom:155.925022px;}
.y18_c00049{bottom:171.375022px;}
.y17_c00049{bottom:186.525022px;}
.y16_c00049{bottom:201.975022px;}
.y15_c00049{bottom:217.125022px;}
.y14_c00049{bottom:495.375022px;}
.y13_c00049{bottom:514.800022px;}
.y12_c00049{bottom:533.925022px;}
.y11_c00049{bottom:553.725022px;}
.y10_c00049{bottom:573.150022px;}
.yf_c00049{bottom:592.575022px;}
.ye_c00049{bottom:611.625022px;}
.yd_c00049{bottom:631.425022px;}
.yc_c00049{bottom:650.550022px;}
.yb_c00049{bottom:670.350022px;}
.ya_c00049{bottom:689.775022px;}
.y9_c00049{bottom:708.825022px;}
.y8_c00049{bottom:728.625022px;}
.y7_c00049{bottom:747.750022px;}
.y6_c00049{bottom:767.550022px;}
.y5_c00049{bottom:786.300022px;}
.y4_c00049{bottom:805.725022px;}
.y3_c00049{bottom:825.150022px;}
.y2_c00049{bottom:844.575022px;}
.y1_c00049{bottom:886.725022px;}
.h2_c00049{height:50.028809px;}
.h4_c00049{height:50.053711px;}
.h3_c00049{height:58.886719px;}
.h1_c00049{height:957.750000px;}
.h0_c00049{height:957.975000px;}
.w0_c00049{width:641.850030px;}
.w1_c00049{width:642.000000px;}
.x0_c00049{left:0.000000px;}
.x2_c00049{left:81.375000px;}
.x4_c00049{left:86.775000px;}
.x3_c00049{left:97.200000px;}
.x1_c00049{left:402.450000px;}
.x5_c00049{left:538.200000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls0_c00049{letter-spacing:0.000000pt;}
.ws0_c00049{word-spacing:-13.333333pt;}
.ws1_c00049{word-spacing:0.000000pt;}
._15_c00049{margin-left:-14.000059pt;}
._16_c00049{margin-left:-12.810773pt;}
._c_c00049{margin-left:-11.840085pt;}
._a_c00049{margin-left:-10.474667pt;}
._9_c00049{margin-left:-8.725333pt;}
._4_c00049{margin-left:-5.896008pt;}
._b_c00049{margin-left:-4.266667pt;}
._19_c00049{margin-left:-3.269440pt;}
._1_c00049{margin-left:-2.365312pt;}
._0_c00049{margin-left:-0.962653pt;}
._3_c00049{width:1.269333pt;}
._5_c00049{width:2.192048pt;}
._2_c00049{width:3.199989pt;}
._14_c00049{width:4.173960pt;}
._d_c00049{width:5.413307pt;}
._f_c00049{width:6.432192pt;}
._13_c00049{width:7.407333pt;}
._11_c00049{width:8.847952pt;}
._12_c00049{width:10.570677pt;}
._10_c00049{width:12.122811pt;}
._e_c00049{width:14.858475pt;}
._8_c00049{width:16.224000pt;}
._7_c00049{width:17.760000pt;}
._6_c00049{width:18.784000pt;}
._18_c00049{width:21.327928pt;}
._17_c00049{width:23.693331pt;}
._1a_c00049{width:25.999981pt;}
.fs0_c00049{font-size:45.333333pt;}
.fs1_c00049{font-size:53.333333pt;}
.y0_c00049{bottom:0.000000pt;}
.y1d_c00049{bottom:57.266686pt;}
.y1c_c00049{bottom:97.933353pt;}
.y1b_c00049{bottom:111.400020pt;}
.y1a_c00049{bottom:125.466686pt;}
.y19_c00049{bottom:138.600020pt;}
.y18_c00049{bottom:152.333353pt;}
.y17_c00049{bottom:165.800020pt;}
.y16_c00049{bottom:179.533353pt;}
.y15_c00049{bottom:193.000020pt;}
.y14_c00049{bottom:440.333353pt;}
.y13_c00049{bottom:457.600020pt;}
.y12_c00049{bottom:474.600020pt;}
.y11_c00049{bottom:492.200020pt;}
.y10_c00049{bottom:509.466686pt;}
.yf_c00049{bottom:526.733353pt;}
.ye_c00049{bottom:543.666686pt;}
.yd_c00049{bottom:561.266686pt;}
.yc_c00049{bottom:578.266686pt;}
.yb_c00049{bottom:595.866686pt;}
.ya_c00049{bottom:613.133353pt;}
.y9_c00049{bottom:630.066686pt;}
.y8_c00049{bottom:647.666686pt;}
.y7_c00049{bottom:664.666686pt;}
.y6_c00049{bottom:682.266686pt;}
.y5_c00049{bottom:698.933353pt;}
.y4_c00049{bottom:716.200020pt;}
.y3_c00049{bottom:733.466686pt;}
.y2_c00049{bottom:750.733353pt;}
.y1_c00049{bottom:788.200020pt;}
.h2_c00049{height:44.470052pt;}
.h4_c00049{height:44.492188pt;}
.h3_c00049{height:52.343750pt;}
.h1_c00049{height:851.333333pt;}
.h0_c00049{height:851.533333pt;}
.w0_c00049{width:570.533360pt;}
.w1_c00049{width:570.666667pt;}
.x0_c00049{left:0.000000pt;}
.x2_c00049{left:72.333333pt;}
.x4_c00049{left:77.133333pt;}
.x3_c00049{left:86.400000pt;}
.x1_c00049{left:357.733333pt;}
.x5_c00049{left:478.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_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;}
.sc__c00050{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00050{-webkit-text-stroke:0px transparent;}
}
.y0_c00050{bottom:0.000000px;}
.h1_c00050{height:957.750000px;}
.h0_c00050{height:957.975000px;}
.w1_c00050{width:643.500000px;}
.w0_c00050{width:643.650000px;}
.x0_c00050{left:0.000000px;}
@media print{
.y0_c00050{bottom:0.000000pt;}
.h1_c00050{height:851.333333pt;}
.h0_c00050{height:851.533333pt;}
.w1_c00050{width:572.000000pt;}
.w0_c00050{width:572.133333pt;}
.x0_c00050{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7ec5c0f26dfeebc2fe35c5e9.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00051;src:url('chunks/assets/font_d7714b4d621d800ccb9737d1.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00051{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_c00051{vertical-align:0.000000px;}
.ls1_c00051{letter-spacing:0.000000px;}
.ls0_c00051{letter-spacing:15.600000px;}
.sc__c00051{text-shadow:none;}
.sc0_c00051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00051{-webkit-text-stroke:0px transparent;}
.sc0_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00051{word-spacing:-16.500000px;}
.ws2_c00051{word-spacing:-15.000000px;}
.ws1_c00051{word-spacing:-12.750000px;}
.ws3_c00051{word-spacing:0.000000px;}
._b_c00051{margin-left:-14.785656px;}
._8_c00051{margin-left:-13.175580px;}
._7_c00051{margin-left:-11.424420px;}
._0_c00051{margin-left:-6.521988px;}
._14_c00051{margin-left:-5.269980px;}
._c_c00051{margin-left:-3.939666px;}
._1_c00051{margin-left:-2.400012px;}
._f_c00051{margin-left:-1.327230px;}
._2_c00051{width:1.295976px;}
._4_c00051{width:2.316336px;}
._3_c00051{width:3.425994px;}
._5_c00051{width:4.740012px;}
._6_c00051{width:5.948832px;}
._9_c00051{width:6.950634px;}
._11_c00051{width:8.080854px;}
._a_c00051{width:9.096096px;}
._10_c00051{width:10.265718px;}
._d_c00051{width:11.328048px;}
._e_c00051{width:13.248168px;}
._15_c00051{width:14.970003px;}
._16_c00051{width:16.945182px;}
._12_c00051{width:24.877302px;}
._13_c00051{width:26.377314px;}
.fc2_c00051{color:transparent;}
.fc1_c00051{color:rgb(0,0,0);}
.fc0_c00051{color:rgb(35,31,32);}
.fs2_c00051{font-size:51.000000px;}
.fs1_c00051{font-size:60.000000px;}
.fs0_c00051{font-size:66.000000px;}
.y0_c00051{bottom:0.000000px;}
.y27_c00051{bottom:64.425022px;}
.y26_c00051{bottom:110.175022px;}
.y25_c00051{bottom:125.625022px;}
.y24_c00051{bottom:140.775022px;}
.y23_c00051{bottom:155.925022px;}
.y22_c00051{bottom:171.375022px;}
.y21_c00051{bottom:186.525022px;}
.y20_c00051{bottom:201.975022px;}
.y1f_c00051{bottom:217.125022px;}
.y1e_c00051{bottom:232.575022px;}
.y1d_c00051{bottom:248.025022px;}
.y1c_c00051{bottom:263.175022px;}
.y1b_c00051{bottom:278.325022px;}
.y1a_c00051{bottom:293.775022px;}
.y19_c00051{bottom:309.225022px;}
.y18_c00051{bottom:324.375022px;}
.y17_c00051{bottom:339.525022px;}
.y16_c00051{bottom:354.975022px;}
.y15_c00051{bottom:370.125022px;}
.y14_c00051{bottom:385.575022px;}
.y13_c00051{bottom:400.725022px;}
.y12_c00051{bottom:416.550022px;}
.y11_c00051{bottom:460.800022px;}
.y10_c00051{bottom:480.225022px;}
.yf_c00051{bottom:499.350022px;}
.ye_c00051{bottom:519.225022px;}
.yd_c00051{bottom:538.575022px;}
.yc_c00051{bottom:557.925022px;}
.yb_c00051{bottom:577.425022px;}
.ya_c00051{bottom:596.925022px;}
.y9_c00051{bottom:615.975022px;}
.y8_c00051{bottom:635.400022px;}
.y7_c00051{bottom:655.200022px;}
.y6_c00051{bottom:674.700022px;}
.y5_c00051{bottom:694.125022px;}
.y4_c00051{bottom:713.550022px;}
.y3_c00051{bottom:732.975022px;}
.y2_c00051{bottom:752.400022px;}
.y1_c00051{bottom:842.775022px;}
.h4_c00051{height:50.053711px;}
.h3_c00051{height:58.886719px;}
.h2_c00051{height:64.775391px;}
.h1_c00051{height:957.750000px;}
.h0_c00051{height:957.975000px;}
.w0_c00051{width:641.850030px;}
.w1_c00051{width:642.000000px;}
.x0_c00051{left:0.000000px;}
.x1_c00051{left:81.750000px;}
.x2_c00051{left:86.775000px;}
.x3_c00051{left:113.775000px;}
.x4_c00051{left:538.575000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls1_c00051{letter-spacing:0.000000pt;}
.ls0_c00051{letter-spacing:13.866667pt;}
.ws0_c00051{word-spacing:-14.666667pt;}
.ws2_c00051{word-spacing:-13.333333pt;}
.ws1_c00051{word-spacing:-11.333333pt;}
.ws3_c00051{word-spacing:0.000000pt;}
._b_c00051{margin-left:-13.142805pt;}
._8_c00051{margin-left:-11.711627pt;}
._7_c00051{margin-left:-10.155040pt;}
._0_c00051{margin-left:-5.797323pt;}
._14_c00051{margin-left:-4.684427pt;}
._c_c00051{margin-left:-3.501925pt;}
._1_c00051{margin-left:-2.133344pt;}
._f_c00051{margin-left:-1.179760pt;}
._2_c00051{width:1.151979pt;}
._4_c00051{width:2.058965pt;}
._3_c00051{width:3.045328pt;}
._5_c00051{width:4.213344pt;}
._6_c00051{width:5.287851pt;}
._9_c00051{width:6.178341pt;}
._11_c00051{width:7.182981pt;}
._a_c00051{width:8.085419pt;}
._10_c00051{width:9.125083pt;}
._d_c00051{width:10.069376pt;}
._e_c00051{width:11.776149pt;}
._15_c00051{width:13.306669pt;}
._16_c00051{width:15.062384pt;}
._12_c00051{width:22.113157pt;}
._13_c00051{width:23.446501pt;}
.fs2_c00051{font-size:45.333333pt;}
.fs1_c00051{font-size:53.333333pt;}
.fs0_c00051{font-size:58.666667pt;}
.y0_c00051{bottom:0.000000pt;}
.y27_c00051{bottom:57.266686pt;}
.y26_c00051{bottom:97.933353pt;}
.y25_c00051{bottom:111.666686pt;}
.y24_c00051{bottom:125.133353pt;}
.y23_c00051{bottom:138.600020pt;}
.y22_c00051{bottom:152.333353pt;}
.y21_c00051{bottom:165.800020pt;}
.y20_c00051{bottom:179.533353pt;}
.y1f_c00051{bottom:193.000020pt;}
.y1e_c00051{bottom:206.733353pt;}
.y1d_c00051{bottom:220.466686pt;}
.y1c_c00051{bottom:233.933353pt;}
.y1b_c00051{bottom:247.400020pt;}
.y1a_c00051{bottom:261.133353pt;}
.y19_c00051{bottom:274.866686pt;}
.y18_c00051{bottom:288.333353pt;}
.y17_c00051{bottom:301.800020pt;}
.y16_c00051{bottom:315.533353pt;}
.y15_c00051{bottom:329.000020pt;}
.y14_c00051{bottom:342.733353pt;}
.y13_c00051{bottom:356.200020pt;}
.y12_c00051{bottom:370.266686pt;}
.y11_c00051{bottom:409.600020pt;}
.y10_c00051{bottom:426.866686pt;}
.yf_c00051{bottom:443.866686pt;}
.ye_c00051{bottom:461.533353pt;}
.yd_c00051{bottom:478.733353pt;}
.yc_c00051{bottom:495.933353pt;}
.yb_c00051{bottom:513.266686pt;}
.ya_c00051{bottom:530.600020pt;}
.y9_c00051{bottom:547.533353pt;}
.y8_c00051{bottom:564.800020pt;}
.y7_c00051{bottom:582.400020pt;}
.y6_c00051{bottom:599.733353pt;}
.y5_c00051{bottom:617.000020pt;}
.y4_c00051{bottom:634.266686pt;}
.y3_c00051{bottom:651.533353pt;}
.y2_c00051{bottom:668.800020pt;}
.y1_c00051{bottom:749.133353pt;}
.h4_c00051{height:44.492188pt;}
.h3_c00051{height:52.343750pt;}
.h2_c00051{height:57.578125pt;}
.h1_c00051{height:851.333333pt;}
.h0_c00051{height:851.533333pt;}
.w0_c00051{width:570.533360pt;}
.w1_c00051{width:570.666667pt;}
.x0_c00051{left:0.000000pt;}
.x1_c00051{left:72.666667pt;}
.x2_c00051{left:77.133333pt;}
.x3_c00051{left:101.133333pt;}
.x4_c00051{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f7a779eec7d5f902cc123da9.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00052;src:url('chunks/assets/font_92591534098a38190d546a34.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.ls1_c00052{letter-spacing:0.000000px;}
.ls0_c00052{letter-spacing:13.800000px;}
.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:-15.000000px;}
.ws1_c00052{word-spacing:-12.750000px;}
.ws2_c00052{word-spacing:0.000000px;}
._16_c00052{margin-left:-14.512080px;}
._13_c00052{margin-left:-11.700000px;}
._12_c00052{margin-left:-9.683706px;}
._11_c00052{margin-left:-8.252277px;}
._14_c00052{margin-left:-6.000000px;}
._7_c00052{margin-left:-4.314336px;}
._10_c00052{margin-left:-2.813076px;}
._0_c00052{margin-left:-1.760979px;}
._2_c00052{width:1.115931px;}
._1_c00052{width:2.699991px;}
._a_c00052{width:3.774672px;}
._f_c00052{width:4.886325px;}
._5_c00052{width:6.060345px;}
._3_c00052{width:7.356276px;}
._4_c00052{width:9.240381px;}
._8_c00052{width:10.250349px;}
._6_c00052{width:11.256294px;}
._e_c00052{width:13.181958px;}
._9_c00052{width:16.053240px;}
._15_c00052{width:18.059592px;}
._c_c00052{width:20.148147px;}
._b_c00052{width:22.200000px;}
._d_c00052{width:23.761089px;}
._17_c00052{width:26.585094px;}
.fc2_c00052{color:transparent;}
.fc1_c00052{color:rgb(0,0,0);}
.fc0_c00052{color:rgb(35,31,32);}
.fs0_c00052{font-size:51.000000px;}
.fs1_c00052{font-size:60.000000px;}
.y0_c00052{bottom:0.000000px;}
.y21_c00052{bottom:64.800022px;}
.y20_c00052{bottom:110.175022px;}
.y1f_c00052{bottom:125.325022px;}
.y1e_c00052{bottom:140.775022px;}
.y1d_c00052{bottom:219.600022px;}
.y1c_c00052{bottom:239.400022px;}
.y1b_c00052{bottom:258.825022px;}
.y1a_c00052{bottom:278.325022px;}
.y19_c00052{bottom:297.375022px;}
.y18_c00052{bottom:316.800022px;}
.y17_c00052{bottom:351.000022px;}
.y16_c00052{bottom:400.725022px;}
.y15_c00052{bottom:419.775022px;}
.y14_c00052{bottom:439.200022px;}
.y13_c00052{bottom:458.625022px;}
.y12_c00052{bottom:478.125022px;}
.y11_c00052{bottom:516.600022px;}
.y10_c00052{bottom:572.775022px;}
.yf_c00052{bottom:592.200022px;}
.ye_c00052{bottom:611.625022px;}
.yd_c00052{bottom:631.425022px;}
.yc_c00052{bottom:650.550022px;}
.yb_c00052{bottom:670.350022px;}
.ya_c00052{bottom:689.400022px;}
.y9_c00052{bottom:709.125022px;}
.y8_c00052{bottom:728.625022px;}
.y7_c00052{bottom:748.125022px;}
.y6_c00052{bottom:767.550022px;}
.y5_c00052{bottom:786.225022px;}
.y4_c00052{bottom:806.025022px;}
.y3_c00052{bottom:825.525022px;}
.y2_c00052{bottom:844.575022px;}
.y1_c00052{bottom:886.725022px;}
.h2_c00052{height:50.028809px;}
.h4_c00052{height:50.053711px;}
.h3_c00052{height:58.886719px;}
.h1_c00052{height:957.750000px;}
.h0_c00052{height:957.975000px;}
.w1_c00052{width:643.500000px;}
.w0_c00052{width:643.650000px;}
.x0_c00052{left:0.000000px;}
.x1_c00052{left:90.750000px;}
.x3_c00052{left:91.800000px;}
.x2_c00052{left:95.775000px;}
.x4_c00052{left:96.825000px;}
.x5_c00052{left:124.200000px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls1_c00052{letter-spacing:0.000000pt;}
.ls0_c00052{letter-spacing:12.266667pt;}
.ws0_c00052{word-spacing:-13.333333pt;}
.ws1_c00052{word-spacing:-11.333333pt;}
.ws2_c00052{word-spacing:0.000000pt;}
._16_c00052{margin-left:-12.899627pt;}
._13_c00052{margin-left:-10.400000pt;}
._12_c00052{margin-left:-8.607739pt;}
._11_c00052{margin-left:-7.335357pt;}
._14_c00052{margin-left:-5.333333pt;}
._7_c00052{margin-left:-3.834965pt;}
._10_c00052{margin-left:-2.500512pt;}
._0_c00052{margin-left:-1.565315pt;}
._2_c00052{width:0.991939pt;}
._1_c00052{width:2.399992pt;}
._a_c00052{width:3.355264pt;}
._f_c00052{width:4.343400pt;}
._5_c00052{width:5.386973pt;}
._3_c00052{width:6.538912pt;}
._4_c00052{width:8.213672pt;}
._8_c00052{width:9.111421pt;}
._6_c00052{width:10.005595pt;}
._e_c00052{width:11.717296pt;}
._9_c00052{width:14.269547pt;}
._15_c00052{width:16.052971pt;}
._c_c00052{width:17.909464pt;}
._b_c00052{width:19.733333pt;}
._d_c00052{width:21.120968pt;}
._17_c00052{width:23.631195pt;}
.fs0_c00052{font-size:45.333333pt;}
.fs1_c00052{font-size:53.333333pt;}
.y0_c00052{bottom:0.000000pt;}
.y21_c00052{bottom:57.600020pt;}
.y20_c00052{bottom:97.933353pt;}
.y1f_c00052{bottom:111.400020pt;}
.y1e_c00052{bottom:125.133353pt;}
.y1d_c00052{bottom:195.200020pt;}
.y1c_c00052{bottom:212.800020pt;}
.y1b_c00052{bottom:230.066686pt;}
.y1a_c00052{bottom:247.400020pt;}
.y19_c00052{bottom:264.333353pt;}
.y18_c00052{bottom:281.600020pt;}
.y17_c00052{bottom:312.000020pt;}
.y16_c00052{bottom:356.200020pt;}
.y15_c00052{bottom:373.133353pt;}
.y14_c00052{bottom:390.400020pt;}
.y13_c00052{bottom:407.666686pt;}
.y12_c00052{bottom:425.000020pt;}
.y11_c00052{bottom:459.200020pt;}
.y10_c00052{bottom:509.133353pt;}
.yf_c00052{bottom:526.400020pt;}
.ye_c00052{bottom:543.666686pt;}
.yd_c00052{bottom:561.266686pt;}
.yc_c00052{bottom:578.266686pt;}
.yb_c00052{bottom:595.866686pt;}
.ya_c00052{bottom:612.800020pt;}
.y9_c00052{bottom:630.333353pt;}
.y8_c00052{bottom:647.666686pt;}
.y7_c00052{bottom:665.000020pt;}
.y6_c00052{bottom:682.266686pt;}
.y5_c00052{bottom:698.866686pt;}
.y4_c00052{bottom:716.466686pt;}
.y3_c00052{bottom:733.800020pt;}
.y2_c00052{bottom:750.733353pt;}
.y1_c00052{bottom:788.200020pt;}
.h2_c00052{height:44.470052pt;}
.h4_c00052{height:44.492188pt;}
.h3_c00052{height:52.343750pt;}
.h1_c00052{height:851.333333pt;}
.h0_c00052{height:851.533333pt;}
.w1_c00052{width:572.000000pt;}
.w0_c00052{width:572.133333pt;}
.x0_c00052{left:0.000000pt;}
.x1_c00052{left:80.666667pt;}
.x3_c00052{left:81.600000pt;}
.x2_c00052{left:85.133333pt;}
.x4_c00052{left:86.066667pt;}
.x5_c00052{left:110.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_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_61f4e6ed33c96a6295ceec2f.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00053;src:url('chunks/assets/font_aa464eb4bcefc867120e0081.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00053{vertical-align:0.000000px;}
.ls0_c00053{letter-spacing:0.000000px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00053{word-spacing:-15.000000px;}
.ws0_c00053{word-spacing:-12.750000px;}
.ws2_c00053{word-spacing:0.000000px;}
._15_c00053{margin-left:-15.890490px;}
._c_c00053{margin-left:-13.226898px;}
._7_c00053{margin-left:-12.000000px;}
._10_c00053{margin-left:-10.562817px;}
._d_c00053{margin-left:-9.557829px;}
._5_c00053{margin-left:-7.958958px;}
._1b_c00053{margin-left:-6.809958px;}
._e_c00053{margin-left:-5.742171px;}
._16_c00053{margin-left:-4.391214px;}
._6_c00053{margin-left:-2.550060px;}
._0_c00053{margin-left:-1.383018px;}
._1_c00053{width:1.005006px;}
._2_c00053{width:2.030922px;}
._4_c00053{width:3.431841px;}
._3_c00053{width:5.268147px;}
._11_c00053{width:7.167237px;}
._a_c00053{width:8.280351px;}
._14_c00053{width:9.446898px;}
._13_c00053{width:10.538304px;}
._12_c00053{width:11.847210px;}
._f_c00053{width:12.960000px;}
._1d_c00053{width:14.324982px;}
._1f_c00053{width:15.538542px;}
._8_c00053{width:16.755384px;}
._9_c00053{width:18.089964px;}
._b_c00053{width:19.500000px;}
._18_c00053{width:21.212970px;}
._19_c00053{width:22.350144px;}
._17_c00053{width:23.733138px;}
._1a_c00053{width:24.900180px;}
._1c_c00053{width:26.733198px;}
._1e_c00053{width:28.233138px;}
.fc1_c00053{color:transparent;}
.fc0_c00053{color:rgb(35,31,32);}
.fs0_c00053{font-size:51.000000px;}
.fs1_c00053{font-size:60.000000px;}
.y0_c00053{bottom:0.000000px;}
.y2d_c00053{bottom:64.425022px;}
.y2c_c00053{bottom:110.175022px;}
.y2b_c00053{bottom:125.325022px;}
.y2a_c00053{bottom:141.150022px;}
.y29_c00053{bottom:155.925022px;}
.y28_c00053{bottom:171.375022px;}
.y27_c00053{bottom:186.525022px;}
.y26_c00053{bottom:202.350022px;}
.y25_c00053{bottom:217.425022px;}
.y24_c00053{bottom:232.575022px;}
.y23_c00053{bottom:248.025022px;}
.y22_c00053{bottom:263.175022px;}
.y21_c00053{bottom:278.625022px;}
.y20_c00053{bottom:293.775022px;}
.y1f_c00053{bottom:308.925022px;}
.y1e_c00053{bottom:324.750022px;}
.y1d_c00053{bottom:339.525022px;}
.y1c_c00053{bottom:354.975022px;}
.y1b_c00053{bottom:370.125022px;}
.y1a_c00053{bottom:385.575022px;}
.y19_c00053{bottom:400.725022px;}
.y18_c00053{bottom:416.175022px;}
.y17_c00053{bottom:431.325022px;}
.y16_c00053{bottom:446.775022px;}
.y15_c00053{bottom:462.225022px;}
.y14_c00053{bottom:477.375022px;}
.y13_c00053{bottom:492.525022px;}
.y12_c00053{bottom:508.350022px;}
.y11_c00053{bottom:553.350022px;}
.y10_c00053{bottom:572.775022px;}
.yf_c00053{bottom:592.200022px;}
.ye_c00053{bottom:611.625022px;}
.yd_c00053{bottom:631.425022px;}
.yc_c00053{bottom:650.925022px;}
.yb_c00053{bottom:669.975022px;}
.ya_c00053{bottom:689.400022px;}
.y9_c00053{bottom:709.125022px;}
.y8_c00053{bottom:728.625022px;}
.y7_c00053{bottom:748.125022px;}
.y6_c00053{bottom:767.175022px;}
.y5_c00053{bottom:786.225022px;}
.y4_c00053{bottom:805.725022px;}
.y3_c00053{bottom:825.150022px;}
.y2_c00053{bottom:844.950022px;}
.y1_c00053{bottom:886.725022px;}
.h2_c00053{height:50.028809px;}
.h4_c00053{height:50.053711px;}
.h3_c00053{height:58.886719px;}
.h1_c00053{height:957.750000px;}
.h0_c00053{height:957.975000px;}
.w0_c00053{width:641.850030px;}
.w1_c00053{width:642.000000px;}
.x0_c00053{left:0.000000px;}
.x2_c00053{left:81.375000px;}
.x3_c00053{left:86.775000px;}
.x4_c00053{left:114.150000px;}
.x1_c00053{left:178.950000px;}
.x5_c00053{left:538.575000px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls0_c00053{letter-spacing:0.000000pt;}
.ws1_c00053{word-spacing:-13.333333pt;}
.ws0_c00053{word-spacing:-11.333333pt;}
.ws2_c00053{word-spacing:0.000000pt;}
._15_c00053{margin-left:-14.124880pt;}
._c_c00053{margin-left:-11.757243pt;}
._7_c00053{margin-left:-10.666667pt;}
._10_c00053{margin-left:-9.389171pt;}
._d_c00053{margin-left:-8.495848pt;}
._5_c00053{margin-left:-7.074629pt;}
._1b_c00053{margin-left:-6.053296pt;}
._e_c00053{margin-left:-5.104152pt;}
._16_c00053{margin-left:-3.903301pt;}
._6_c00053{margin-left:-2.266720pt;}
._0_c00053{margin-left:-1.229349pt;}
._1_c00053{width:0.893339pt;}
._2_c00053{width:1.805264pt;}
._4_c00053{width:3.050525pt;}
._3_c00053{width:4.682797pt;}
._11_c00053{width:6.370877pt;}
._a_c00053{width:7.360312pt;}
._14_c00053{width:8.397243pt;}
._13_c00053{width:9.367381pt;}
._12_c00053{width:10.530853pt;}
._f_c00053{width:11.520000pt;}
._1d_c00053{width:12.733317pt;}
._1f_c00053{width:13.812037pt;}
._8_c00053{width:14.893675pt;}
._9_c00053{width:16.079968pt;}
._b_c00053{width:17.333333pt;}
._18_c00053{width:18.855973pt;}
._19_c00053{width:19.866795pt;}
._17_c00053{width:21.096123pt;}
._1a_c00053{width:22.133493pt;}
._1c_c00053{width:23.762843pt;}
._1e_c00053{width:25.096123pt;}
.fs0_c00053{font-size:45.333333pt;}
.fs1_c00053{font-size:53.333333pt;}
.y0_c00053{bottom:0.000000pt;}
.y2d_c00053{bottom:57.266686pt;}
.y2c_c00053{bottom:97.933353pt;}
.y2b_c00053{bottom:111.400020pt;}
.y2a_c00053{bottom:125.466686pt;}
.y29_c00053{bottom:138.600020pt;}
.y28_c00053{bottom:152.333353pt;}
.y27_c00053{bottom:165.800020pt;}
.y26_c00053{bottom:179.866686pt;}
.y25_c00053{bottom:193.266686pt;}
.y24_c00053{bottom:206.733353pt;}
.y23_c00053{bottom:220.466686pt;}
.y22_c00053{bottom:233.933353pt;}
.y21_c00053{bottom:247.666686pt;}
.y20_c00053{bottom:261.133353pt;}
.y1f_c00053{bottom:274.600020pt;}
.y1e_c00053{bottom:288.666686pt;}
.y1d_c00053{bottom:301.800020pt;}
.y1c_c00053{bottom:315.533353pt;}
.y1b_c00053{bottom:329.000020pt;}
.y1a_c00053{bottom:342.733353pt;}
.y19_c00053{bottom:356.200020pt;}
.y18_c00053{bottom:369.933353pt;}
.y17_c00053{bottom:383.400020pt;}
.y16_c00053{bottom:397.133353pt;}
.y15_c00053{bottom:410.866686pt;}
.y14_c00053{bottom:424.333353pt;}
.y13_c00053{bottom:437.800020pt;}
.y12_c00053{bottom:451.866686pt;}
.y11_c00053{bottom:491.866686pt;}
.y10_c00053{bottom:509.133353pt;}
.yf_c00053{bottom:526.400020pt;}
.ye_c00053{bottom:543.666686pt;}
.yd_c00053{bottom:561.266686pt;}
.yc_c00053{bottom:578.600020pt;}
.yb_c00053{bottom:595.533353pt;}
.ya_c00053{bottom:612.800020pt;}
.y9_c00053{bottom:630.333353pt;}
.y8_c00053{bottom:647.666686pt;}
.y7_c00053{bottom:665.000020pt;}
.y6_c00053{bottom:681.933353pt;}
.y5_c00053{bottom:698.866686pt;}
.y4_c00053{bottom:716.200020pt;}
.y3_c00053{bottom:733.466686pt;}
.y2_c00053{bottom:751.066686pt;}
.y1_c00053{bottom:788.200020pt;}
.h2_c00053{height:44.470052pt;}
.h4_c00053{height:44.492188pt;}
.h3_c00053{height:52.343750pt;}
.h1_c00053{height:851.333333pt;}
.h0_c00053{height:851.533333pt;}
.w0_c00053{width:570.533360pt;}
.w1_c00053{width:570.666667pt;}
.x0_c00053{left:0.000000pt;}
.x2_c00053{left:72.333333pt;}
.x3_c00053{left:77.133333pt;}
.x4_c00053{left:101.466667pt;}
.x1_c00053{left:159.066667pt;}
.x5_c00053{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_51d1733595a023ad36d3d616.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00054;src:url('chunks/assets/font_d9891041b870aef337115c93.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls1_c00054{letter-spacing:0.000000px;}
.ls0_c00054{letter-spacing:13.800000px;}
.sc__c00054{text-shadow:none;}
.sc0_c00054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00054{-webkit-text-stroke:0px transparent;}
.sc0_c00054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00054{word-spacing:-15.000000px;}
.ws1_c00054{word-spacing:-12.750000px;}
.ws2_c00054{word-spacing:0.000000px;}
._15_c00054{margin-left:-15.480000px;}
._4_c00054{margin-left:-13.740000px;}
._c_c00054{margin-left:-11.580000px;}
._13_c00054{margin-left:-9.960000px;}
._9_c00054{margin-left:-8.940000px;}
._b_c00054{margin-left:-7.440000px;}
._14_c00054{margin-left:-6.300000px;}
._5_c00054{margin-left:-4.800000px;}
._e_c00054{margin-left:-3.060000px;}
._7_c00054{margin-left:-1.260000px;}
._3_c00054{width:1.080000px;}
._2_c00054{width:2.160000px;}
._a_c00054{width:3.420000px;}
._f_c00054{width:5.100000px;}
._d_c00054{width:6.660000px;}
._8_c00054{width:8.220000px;}
._0_c00054{width:9.720000px;}
._6_c00054{width:10.800000px;}
._1_c00054{width:12.060000px;}
._12_c00054{width:13.200000px;}
._1c_c00054{width:14.690946px;}
._1d_c00054{width:15.921087px;}
._10_c00054{width:16.980000px;}
._11_c00054{width:18.360000px;}
._17_c00054{width:19.530000px;}
._1a_c00054{width:21.692994px;}
._18_c00054{width:22.830000px;}
._1b_c00054{width:24.330048px;}
._16_c00054{width:25.830060px;}
._19_c00054{width:27.006006px;}
.fc2_c00054{color:transparent;}
.fc1_c00054{color:rgb(0,0,0);}
.fc0_c00054{color:rgb(35,31,32);}
.fs1_c00054{font-size:51.000000px;}
.fs0_c00054{font-size:60.000000px;}
.y0_c00054{bottom:0.000000px;}
.y29_c00054{bottom:64.800022px;}
.y28_c00054{bottom:110.175022px;}
.y27_c00054{bottom:125.325022px;}
.y26_c00054{bottom:140.775022px;}
.y25_c00054{bottom:155.925022px;}
.y24_c00054{bottom:171.375022px;}
.y23_c00054{bottom:186.825022px;}
.y22_c00054{bottom:201.975022px;}
.y21_c00054{bottom:217.125022px;}
.y20_c00054{bottom:232.950022px;}
.y1f_c00054{bottom:248.025022px;}
.y1e_c00054{bottom:263.550022px;}
.y1d_c00054{bottom:278.325022px;}
.y1c_c00054{bottom:293.775022px;}
.y1b_c00054{bottom:308.925022px;}
.y1a_c00054{bottom:324.375022px;}
.y19_c00054{bottom:339.525022px;}
.y18_c00054{bottom:354.975022px;}
.y17_c00054{bottom:370.125022px;}
.y16_c00054{bottom:410.025022px;}
.y15_c00054{bottom:429.825022px;}
.y14_c00054{bottom:448.950022px;}
.y13_c00054{bottom:468.750022px;}
.y12_c00054{bottom:488.175022px;}
.y11_c00054{bottom:507.225022px;}
.y10_c00054{bottom:527.025022px;}
.yf_c00054{bottom:546.525022px;}
.ye_c00054{bottom:565.950022px;}
.yd_c00054{bottom:585.375022px;}
.yc_c00054{bottom:604.425022px;}
.yb_c00054{bottom:639.375022px;}
.y9_c00054{bottom:689.400022px;}
.y8_c00054{bottom:709.125022px;}
.y7_c00054{bottom:728.625022px;}
.y6_c00054{bottom:748.125022px;}
.y5_c00054{bottom:767.175022px;}
.y4_c00054{bottom:786.600022px;}
.y3_c00054{bottom:805.725022px;}
.y2_c00054{bottom:825.525022px;}
.y1_c00054{bottom:844.575022px;}
.ya_c00054{bottom:886.725022px;}
.h3_c00054{height:50.028809px;}
.h4_c00054{height:50.053711px;}
.h2_c00054{height:58.886719px;}
.h1_c00054{height:957.750000px;}
.h0_c00054{height:957.975000px;}
.w1_c00054{width:643.500000px;}
.w0_c00054{width:643.650000px;}
.x0_c00054{left:0.000000px;}
.x3_c00054{left:90.375000px;}
.x1_c00054{left:91.425000px;}
.x4_c00054{left:96.825000px;}
.x2_c00054{left:107.250000px;}
.x5_c00054{left:122.775000px;}
.x6_c00054{left:123.825000px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls1_c00054{letter-spacing:0.000000pt;}
.ls0_c00054{letter-spacing:12.266667pt;}
.ws0_c00054{word-spacing:-13.333333pt;}
.ws1_c00054{word-spacing:-11.333333pt;}
.ws2_c00054{word-spacing:0.000000pt;}
._15_c00054{margin-left:-13.760000pt;}
._4_c00054{margin-left:-12.213333pt;}
._c_c00054{margin-left:-10.293333pt;}
._13_c00054{margin-left:-8.853333pt;}
._9_c00054{margin-left:-7.946667pt;}
._b_c00054{margin-left:-6.613333pt;}
._14_c00054{margin-left:-5.600000pt;}
._5_c00054{margin-left:-4.266667pt;}
._e_c00054{margin-left:-2.720000pt;}
._7_c00054{margin-left:-1.120000pt;}
._3_c00054{width:0.960000pt;}
._2_c00054{width:1.920000pt;}
._a_c00054{width:3.040000pt;}
._f_c00054{width:4.533333pt;}
._d_c00054{width:5.920000pt;}
._8_c00054{width:7.306667pt;}
._0_c00054{width:8.640000pt;}
._6_c00054{width:9.600000pt;}
._1_c00054{width:10.720000pt;}
._12_c00054{width:11.733333pt;}
._1c_c00054{width:13.058619pt;}
._1d_c00054{width:14.152077pt;}
._10_c00054{width:15.093333pt;}
._11_c00054{width:16.320000pt;}
._17_c00054{width:17.360000pt;}
._1a_c00054{width:19.282661pt;}
._18_c00054{width:20.293333pt;}
._1b_c00054{width:21.626709pt;}
._16_c00054{width:22.960053pt;}
._19_c00054{width:24.005339pt;}
.fs1_c00054{font-size:45.333333pt;}
.fs0_c00054{font-size:53.333333pt;}
.y0_c00054{bottom:0.000000pt;}
.y29_c00054{bottom:57.600020pt;}
.y28_c00054{bottom:97.933353pt;}
.y27_c00054{bottom:111.400020pt;}
.y26_c00054{bottom:125.133353pt;}
.y25_c00054{bottom:138.600020pt;}
.y24_c00054{bottom:152.333353pt;}
.y23_c00054{bottom:166.066686pt;}
.y22_c00054{bottom:179.533353pt;}
.y21_c00054{bottom:193.000020pt;}
.y20_c00054{bottom:207.066686pt;}
.y1f_c00054{bottom:220.466686pt;}
.y1e_c00054{bottom:234.266686pt;}
.y1d_c00054{bottom:247.400020pt;}
.y1c_c00054{bottom:261.133353pt;}
.y1b_c00054{bottom:274.600020pt;}
.y1a_c00054{bottom:288.333353pt;}
.y19_c00054{bottom:301.800020pt;}
.y18_c00054{bottom:315.533353pt;}
.y17_c00054{bottom:329.000020pt;}
.y16_c00054{bottom:364.466686pt;}
.y15_c00054{bottom:382.066686pt;}
.y14_c00054{bottom:399.066686pt;}
.y13_c00054{bottom:416.666686pt;}
.y12_c00054{bottom:433.933353pt;}
.y11_c00054{bottom:450.866686pt;}
.y10_c00054{bottom:468.466686pt;}
.yf_c00054{bottom:485.800020pt;}
.ye_c00054{bottom:503.066686pt;}
.yd_c00054{bottom:520.333353pt;}
.yc_c00054{bottom:537.266686pt;}
.yb_c00054{bottom:568.333353pt;}
.y9_c00054{bottom:612.800020pt;}
.y8_c00054{bottom:630.333353pt;}
.y7_c00054{bottom:647.666686pt;}
.y6_c00054{bottom:665.000020pt;}
.y5_c00054{bottom:681.933353pt;}
.y4_c00054{bottom:699.200020pt;}
.y3_c00054{bottom:716.200020pt;}
.y2_c00054{bottom:733.800020pt;}
.y1_c00054{bottom:750.733353pt;}
.ya_c00054{bottom:788.200020pt;}
.h3_c00054{height:44.470052pt;}
.h4_c00054{height:44.492188pt;}
.h2_c00054{height:52.343750pt;}
.h1_c00054{height:851.333333pt;}
.h0_c00054{height:851.533333pt;}
.w1_c00054{width:572.000000pt;}
.w0_c00054{width:572.133333pt;}
.x0_c00054{left:0.000000pt;}
.x3_c00054{left:80.333333pt;}
.x1_c00054{left:81.266667pt;}
.x4_c00054{left:86.066667pt;}
.x2_c00054{left:95.333333pt;}
.x5_c00054{left:109.133333pt;}
.x6_c00054{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3c97be440ef59004fefaf9e7.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00055;src:url('chunks/assets/font_4d92603b0d122e3435796010.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.ls1_c00055{letter-spacing:0.000000px;}
.ls0_c00055{letter-spacing:16.500000px;}
.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:-15.000000px;}
.ws1_c00055{word-spacing:-12.750000px;}
.ws2_c00055{word-spacing:0.000000px;}
._e_c00055{margin-left:-13.591164px;}
._13_c00055{margin-left:-12.521460px;}
._11_c00055{margin-left:-11.400000px;}
._10_c00055{margin-left:-10.230132px;}
._5_c00055{margin-left:-7.958958px;}
._15_c00055{margin-left:-6.091296px;}
._9_c00055{margin-left:-3.900000px;}
._12_c00055{margin-left:-2.651295px;}
._0_c00055{margin-left:-1.383018px;}
._1_c00055{width:1.005006px;}
._2_c00055{width:2.030922px;}
._4_c00055{width:3.431841px;}
._3_c00055{width:5.268147px;}
._6_c00055{width:7.320000px;}
._8_c00055{width:8.520597px;}
._7_c00055{width:9.888096px;}
._d_c00055{width:11.489988px;}
._c_c00055{width:13.463751px;}
._a_c00055{width:16.203018px;}
._b_c00055{width:17.673549px;}
._f_c00055{width:18.882603px;}
._16_c00055{width:25.435608px;}
._14_c00055{width:26.703885px;}
._17_c00055{width:28.435608px;}
.fc2_c00055{color:transparent;}
.fc1_c00055{color:rgb(0,0,0);}
.fc0_c00055{color:rgb(35,31,32);}
.fs0_c00055{font-size:51.000000px;}
.fs1_c00055{font-size:60.000000px;}
.y0_c00055{bottom:0.000000px;}
.y22_c00055{bottom:64.425022px;}
.y21_c00055{bottom:110.175022px;}
.y20_c00055{bottom:125.325022px;}
.y1f_c00055{bottom:140.775022px;}
.y1e_c00055{bottom:256.350022px;}
.y1d_c00055{bottom:275.775022px;}
.y1c_c00055{bottom:294.825022px;}
.y1b_c00055{bottom:314.325022px;}
.y1a_c00055{bottom:334.125022px;}
.y19_c00055{bottom:353.175022px;}
.y18_c00055{bottom:372.975022px;}
.y17_c00055{bottom:392.400022px;}
.y16_c00055{bottom:411.525022px;}
.y15_c00055{bottom:431.325022px;}
.y14_c00055{bottom:450.750022px;}
.y13_c00055{bottom:470.175022px;}
.y12_c00055{bottom:489.600022px;}
.y11_c00055{bottom:508.725022px;}
.y10_c00055{bottom:528.525022px;}
.yf_c00055{bottom:547.950022px;}
.ye_c00055{bottom:567.375022px;}
.yd_c00055{bottom:586.425022px;}
.yc_c00055{bottom:606.225022px;}
.yb_c00055{bottom:625.725022px;}
.ya_c00055{bottom:645.150022px;}
.y9_c00055{bottom:664.200022px;}
.y8_c00055{bottom:683.325022px;}
.y7_c00055{bottom:703.125022px;}
.y6_c00055{bottom:737.325022px;}
.y5_c00055{bottom:786.225022px;}
.y4_c00055{bottom:805.725022px;}
.y3_c00055{bottom:825.525022px;}
.y2_c00055{bottom:844.950022px;}
.y1_c00055{bottom:886.725022px;}
.h2_c00055{height:50.028809px;}
.h4_c00055{height:50.053711px;}
.h3_c00055{height:58.886719px;}
.h1_c00055{height:957.750000px;}
.h0_c00055{height:957.975000px;}
.w0_c00055{width:641.850030px;}
.w1_c00055{width:642.000000px;}
.x0_c00055{left:0.000000px;}
.x2_c00055{left:81.375000px;}
.x4_c00055{left:86.775000px;}
.x3_c00055{left:96.825000px;}
.x1_c00055{left:178.950000px;}
.x5_c00055{left:538.575000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls1_c00055{letter-spacing:0.000000pt;}
.ls0_c00055{letter-spacing:14.666667pt;}
.ws0_c00055{word-spacing:-13.333333pt;}
.ws1_c00055{word-spacing:-11.333333pt;}
.ws2_c00055{word-spacing:0.000000pt;}
._e_c00055{margin-left:-12.081035pt;}
._13_c00055{margin-left:-11.130187pt;}
._11_c00055{margin-left:-10.133333pt;}
._10_c00055{margin-left:-9.093451pt;}
._5_c00055{margin-left:-7.074629pt;}
._15_c00055{margin-left:-5.414485pt;}
._9_c00055{margin-left:-3.466667pt;}
._12_c00055{margin-left:-2.356707pt;}
._0_c00055{margin-left:-1.229349pt;}
._1_c00055{width:0.893339pt;}
._2_c00055{width:1.805264pt;}
._4_c00055{width:3.050525pt;}
._3_c00055{width:4.682797pt;}
._6_c00055{width:6.506667pt;}
._8_c00055{width:7.573864pt;}
._7_c00055{width:8.789419pt;}
._d_c00055{width:10.213323pt;}
._c_c00055{width:11.967779pt;}
._a_c00055{width:14.402683pt;}
._b_c00055{width:15.709821pt;}
._f_c00055{width:16.784536pt;}
._16_c00055{width:22.609429pt;}
._14_c00055{width:23.736787pt;}
._17_c00055{width:25.276096pt;}
.fs0_c00055{font-size:45.333333pt;}
.fs1_c00055{font-size:53.333333pt;}
.y0_c00055{bottom:0.000000pt;}
.y22_c00055{bottom:57.266686pt;}
.y21_c00055{bottom:97.933353pt;}
.y20_c00055{bottom:111.400020pt;}
.y1f_c00055{bottom:125.133353pt;}
.y1e_c00055{bottom:227.866686pt;}
.y1d_c00055{bottom:245.133353pt;}
.y1c_c00055{bottom:262.066686pt;}
.y1b_c00055{bottom:279.400020pt;}
.y1a_c00055{bottom:297.000020pt;}
.y19_c00055{bottom:313.933353pt;}
.y18_c00055{bottom:331.533353pt;}
.y17_c00055{bottom:348.800020pt;}
.y16_c00055{bottom:365.800020pt;}
.y15_c00055{bottom:383.400020pt;}
.y14_c00055{bottom:400.666686pt;}
.y13_c00055{bottom:417.933353pt;}
.y12_c00055{bottom:435.200020pt;}
.y11_c00055{bottom:452.200020pt;}
.y10_c00055{bottom:469.800020pt;}
.yf_c00055{bottom:487.066686pt;}
.ye_c00055{bottom:504.333353pt;}
.yd_c00055{bottom:521.266686pt;}
.yc_c00055{bottom:538.866686pt;}
.yb_c00055{bottom:556.200020pt;}
.ya_c00055{bottom:573.466686pt;}
.y9_c00055{bottom:590.400020pt;}
.y8_c00055{bottom:607.400020pt;}
.y7_c00055{bottom:625.000020pt;}
.y6_c00055{bottom:655.400020pt;}
.y5_c00055{bottom:698.866686pt;}
.y4_c00055{bottom:716.200020pt;}
.y3_c00055{bottom:733.800020pt;}
.y2_c00055{bottom:751.066686pt;}
.y1_c00055{bottom:788.200020pt;}
.h2_c00055{height:44.470052pt;}
.h4_c00055{height:44.492188pt;}
.h3_c00055{height:52.343750pt;}
.h1_c00055{height:851.333333pt;}
.h0_c00055{height:851.533333pt;}
.w0_c00055{width:570.533360pt;}
.w1_c00055{width:570.666667pt;}
.x0_c00055{left:0.000000pt;}
.x2_c00055{left:72.333333pt;}
.x4_c00055{left:77.133333pt;}
.x3_c00055{left:86.066667pt;}
.x1_c00055{left:159.066667pt;}
.x5_c00055{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cb0ff07f500fc4bfc9addd3c.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00056;src:url('chunks/assets/font_1840243a8352eca3e1f2c3ac.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00056{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_c00056{vertical-align:0.000000px;}
.ls0_c00056{letter-spacing:0.000000px;}
.sc__c00056{text-shadow:none;}
.sc0_c00056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00056{-webkit-text-stroke:0px transparent;}
.sc0_c00056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00056{word-spacing:-15.000000px;}
.ws0_c00056{word-spacing:-12.750000px;}
.ws2_c00056{word-spacing:0.000000px;}
._12_c00056{margin-left:-13.581795px;}
._f_c00056{margin-left:-11.700000px;}
._e_c00056{margin-left:-10.271835px;}
._14_c00056{margin-left:-7.779546px;}
._11_c00056{margin-left:-6.395895px;}
._15_c00056{margin-left:-5.045496px;}
._9_c00056{margin-left:-3.686832px;}
._0_c00056{margin-left:-1.760979px;}
._2_c00056{width:1.115931px;}
._1_c00056{width:2.699991px;}
._5_c00056{width:4.200018px;}
._4_c00056{width:5.661669px;}
._10_c00056{width:6.684414px;}
._3_c00056{width:7.740000px;}
._7_c00056{width:9.213186px;}
._6_c00056{width:10.800000px;}
._a_c00056{width:12.105384px;}
._8_c00056{width:13.263108px;}
._17_c00056{width:14.981916px;}
._d_c00056{width:16.245420px;}
._b_c00056{width:18.384414px;}
._c_c00056{width:20.496276px;}
._16_c00056{width:22.271904px;}
._13_c00056{width:24.032985px;}
._18_c00056{width:25.532997px;}
.fc1_c00056{color:transparent;}
.fc0_c00056{color:rgb(35,31,32);}
.fs0_c00056{font-size:51.000000px;}
.fs1_c00056{font-size:60.000000px;}
.y0_c00056{bottom:0.000000px;}
.y2a_c00056{bottom:64.425022px;}
.y29_c00056{bottom:110.550022px;}
.y28_c00056{bottom:125.325022px;}
.y27_c00056{bottom:141.150022px;}
.y26_c00056{bottom:155.925022px;}
.y25_c00056{bottom:171.750022px;}
.y24_c00056{bottom:186.825022px;}
.y23_c00056{bottom:201.975022px;}
.y22_c00056{bottom:217.425022px;}
.y21_c00056{bottom:232.575022px;}
.y20_c00056{bottom:247.725022px;}
.y1f_c00056{bottom:263.175022px;}
.y1e_c00056{bottom:278.325022px;}
.y1d_c00056{bottom:293.775022px;}
.y1c_c00056{bottom:308.925022px;}
.y1b_c00056{bottom:324.375022px;}
.y1a_c00056{bottom:364.350022px;}
.y19_c00056{bottom:383.775022px;}
.y18_c00056{bottom:402.900022px;}
.y17_c00056{bottom:422.325022px;}
.y16_c00056{bottom:441.750022px;}
.y15_c00056{bottom:461.175022px;}
.y14_c00056{bottom:480.225022px;}
.y13_c00056{bottom:499.725022px;}
.y12_c00056{bottom:518.475022px;}
.y11_c00056{bottom:537.900022px;}
.y10_c00056{bottom:557.325022px;}
.yf_c00056{bottom:576.750022px;}
.ye_c00056{bottom:595.800022px;}
.yd_c00056{bottom:615.225022px;}
.yc_c00056{bottom:634.350022px;}
.yb_c00056{bottom:654.150022px;}
.ya_c00056{bottom:672.825022px;}
.y9_c00056{bottom:692.625022px;}
.y8_c00056{bottom:711.750022px;}
.y7_c00056{bottom:730.800022px;}
.y6_c00056{bottom:750.600022px;}
.y5_c00056{bottom:769.725022px;}
.y4_c00056{bottom:788.775022px;}
.y3_c00056{bottom:808.575022px;}
.y2_c00056{bottom:845.325022px;}
.y1_c00056{bottom:886.725022px;}
.h2_c00056{height:50.028809px;}
.h4_c00056{height:50.053711px;}
.h3_c00056{height:58.886719px;}
.h1_c00056{height:957.750000px;}
.h0_c00056{height:957.975000px;}
.w1_c00056{width:643.500000px;}
.w0_c00056{width:643.650000px;}
.x0_c00056{left:0.000000px;}
.x1_c00056{left:90.750000px;}
.x2_c00056{left:96.825000px;}
.x3_c00056{left:123.825000px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls0_c00056{letter-spacing:0.000000pt;}
.ws1_c00056{word-spacing:-13.333333pt;}
.ws0_c00056{word-spacing:-11.333333pt;}
.ws2_c00056{word-spacing:0.000000pt;}
._12_c00056{margin-left:-12.072707pt;}
._f_c00056{margin-left:-10.400000pt;}
._e_c00056{margin-left:-9.130520pt;}
._14_c00056{margin-left:-6.915152pt;}
._11_c00056{margin-left:-5.685240pt;}
._15_c00056{margin-left:-4.484885pt;}
._9_c00056{margin-left:-3.277184pt;}
._0_c00056{margin-left:-1.565315pt;}
._2_c00056{width:0.991939pt;}
._1_c00056{width:2.399992pt;}
._5_c00056{width:3.733349pt;}
._4_c00056{width:5.032595pt;}
._10_c00056{width:5.941701pt;}
._3_c00056{width:6.880000pt;}
._7_c00056{width:8.189499pt;}
._6_c00056{width:9.600000pt;}
._a_c00056{width:10.760341pt;}
._8_c00056{width:11.789429pt;}
._17_c00056{width:13.317259pt;}
._d_c00056{width:14.440373pt;}
._b_c00056{width:16.341701pt;}
._c_c00056{width:18.218912pt;}
._16_c00056{width:19.797248pt;}
._13_c00056{width:21.362653pt;}
._18_c00056{width:22.695997pt;}
.fs0_c00056{font-size:45.333333pt;}
.fs1_c00056{font-size:53.333333pt;}
.y0_c00056{bottom:0.000000pt;}
.y2a_c00056{bottom:57.266686pt;}
.y29_c00056{bottom:98.266686pt;}
.y28_c00056{bottom:111.400020pt;}
.y27_c00056{bottom:125.466686pt;}
.y26_c00056{bottom:138.600020pt;}
.y25_c00056{bottom:152.666686pt;}
.y24_c00056{bottom:166.066686pt;}
.y23_c00056{bottom:179.533353pt;}
.y22_c00056{bottom:193.266686pt;}
.y21_c00056{bottom:206.733353pt;}
.y20_c00056{bottom:220.200020pt;}
.y1f_c00056{bottom:233.933353pt;}
.y1e_c00056{bottom:247.400020pt;}
.y1d_c00056{bottom:261.133353pt;}
.y1c_c00056{bottom:274.600020pt;}
.y1b_c00056{bottom:288.333353pt;}
.y1a_c00056{bottom:323.866686pt;}
.y19_c00056{bottom:341.133353pt;}
.y18_c00056{bottom:358.133353pt;}
.y17_c00056{bottom:375.400020pt;}
.y16_c00056{bottom:392.666686pt;}
.y15_c00056{bottom:409.933353pt;}
.y14_c00056{bottom:426.866686pt;}
.y13_c00056{bottom:444.200020pt;}
.y12_c00056{bottom:460.866686pt;}
.y11_c00056{bottom:478.133353pt;}
.y10_c00056{bottom:495.400020pt;}
.yf_c00056{bottom:512.666686pt;}
.ye_c00056{bottom:529.600020pt;}
.yd_c00056{bottom:546.866686pt;}
.yc_c00056{bottom:563.866686pt;}
.yb_c00056{bottom:581.466686pt;}
.ya_c00056{bottom:598.066686pt;}
.y9_c00056{bottom:615.666686pt;}
.y8_c00056{bottom:632.666686pt;}
.y7_c00056{bottom:649.600020pt;}
.y6_c00056{bottom:667.200020pt;}
.y5_c00056{bottom:684.200020pt;}
.y4_c00056{bottom:701.133353pt;}
.y3_c00056{bottom:718.733353pt;}
.y2_c00056{bottom:751.400020pt;}
.y1_c00056{bottom:788.200020pt;}
.h2_c00056{height:44.470052pt;}
.h4_c00056{height:44.492188pt;}
.h3_c00056{height:52.343750pt;}
.h1_c00056{height:851.333333pt;}
.h0_c00056{height:851.533333pt;}
.w1_c00056{width:572.000000pt;}
.w0_c00056{width:572.133333pt;}
.x0_c00056{left:0.000000pt;}
.x1_c00056{left:80.666667pt;}
.x2_c00056{left:86.066667pt;}
.x3_c00056{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8ebff9309603191e258794ca.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00057;src:url('chunks/assets/font_d1433b12fbd509b4f4ff9516.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00057{letter-spacing:0.000000px;}
.sc__c00057{text-shadow:none;}
.sc0_c00057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00057{-webkit-text-stroke:0px transparent;}
.sc0_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00057{word-spacing:-15.000000px;}
.ws1_c00057{word-spacing:-12.750000px;}
.ws2_c00057{word-spacing:0.000000px;}
._16_c00057{margin-left:-14.700000px;}
._12_c00057{margin-left:-12.300000px;}
._f_c00057{margin-left:-10.800000px;}
._c_c00057{margin-left:-7.320000px;}
._10_c00057{margin-left:-5.400000px;}
._e_c00057{margin-left:-3.888000px;}
._3_c00057{margin-left:-2.160000px;}
._7_c00057{margin-left:-1.080000px;}
._5_c00057{width:1.080000px;}
._0_c00057{width:2.100000px;}
._6_c00057{width:3.480000px;}
._8_c00057{width:5.280000px;}
._b_c00057{width:6.720000px;}
._9_c00057{width:7.740000px;}
._a_c00057{width:8.880000px;}
._15_c00057{width:10.440000px;}
._d_c00057{width:11.760000px;}
._4_c00057{width:13.260000px;}
._18_c00057{width:14.735940px;}
._11_c00057{width:16.200000px;}
._14_c00057{width:17.280000px;}
._1_c00057{width:18.300000px;}
._2_c00057{width:19.680000px;}
._13_c00057{width:21.480000px;}
._17_c00057{width:26.730060px;}
._19_c00057{width:30.185907px;}
.fc1_c00057{color:transparent;}
.fc0_c00057{color:rgb(35,31,32);}
.fs1_c00057{font-size:51.000000px;}
.fs0_c00057{font-size:60.000000px;}
.y0_c00057{bottom:0.000000px;}
.y24_c00057{bottom:64.425022px;}
.y23_c00057{bottom:110.175022px;}
.y22_c00057{bottom:125.625022px;}
.y21_c00057{bottom:140.775022px;}
.y20_c00057{bottom:155.925022px;}
.y1f_c00057{bottom:171.375022px;}
.y1e_c00057{bottom:186.825022px;}
.y1d_c00057{bottom:202.350022px;}
.y1c_c00057{bottom:217.125022px;}
.y1b_c00057{bottom:232.575022px;}
.y1a_c00057{bottom:247.725022px;}
.y19_c00057{bottom:263.175022px;}
.y18_c00057{bottom:278.325022px;}
.y17_c00057{bottom:321.150022px;}
.y16_c00057{bottom:340.950022px;}
.y15_c00057{bottom:359.625022px;}
.y14_c00057{bottom:379.125022px;}
.y13_c00057{bottom:398.925022px;}
.y12_c00057{bottom:440.325022px;}
.y11_c00057{bottom:500.025022px;}
.y10_c00057{bottom:519.525022px;}
.yf_c00057{bottom:538.950022px;}
.ye_c00057{bottom:558.375022px;}
.yd_c00057{bottom:577.800022px;}
.yc_c00057{bottom:597.225022px;}
.yb_c00057{bottom:616.350022px;}
.ya_c00057{bottom:653.400022px;}
.y8_c00057{bottom:709.200022px;}
.y7_c00057{bottom:728.325022px;}
.y6_c00057{bottom:748.125022px;}
.y5_c00057{bottom:767.175022px;}
.y4_c00057{bottom:786.600022px;}
.y3_c00057{bottom:805.725022px;}
.y2_c00057{bottom:825.150022px;}
.y1_c00057{bottom:844.950022px;}
.y9_c00057{bottom:886.725022px;}
.h3_c00057{height:50.028809px;}
.h4_c00057{height:50.053711px;}
.h2_c00057{height:58.886719px;}
.h1_c00057{height:957.750000px;}
.h0_c00057{height:957.975000px;}
.w0_c00057{width:641.850030px;}
.w1_c00057{width:642.000000px;}
.x0_c00057{left:0.000000px;}
.x4_c00057{left:79.950000px;}
.x2_c00057{left:81.000000px;}
.x5_c00057{left:86.775000px;}
.x1_c00057{left:97.200000px;}
.x6_c00057{left:114.150000px;}
.x3_c00057{left:162.750000px;}
.x7_c00057{left:538.575000px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls0_c00057{letter-spacing:0.000000pt;}
.ws0_c00057{word-spacing:-13.333333pt;}
.ws1_c00057{word-spacing:-11.333333pt;}
.ws2_c00057{word-spacing:0.000000pt;}
._16_c00057{margin-left:-13.066667pt;}
._12_c00057{margin-left:-10.933333pt;}
._f_c00057{margin-left:-9.600000pt;}
._c_c00057{margin-left:-6.506667pt;}
._10_c00057{margin-left:-4.800000pt;}
._e_c00057{margin-left:-3.456000pt;}
._3_c00057{margin-left:-1.920000pt;}
._7_c00057{margin-left:-0.960000pt;}
._5_c00057{width:0.960000pt;}
._0_c00057{width:1.866667pt;}
._6_c00057{width:3.093333pt;}
._8_c00057{width:4.693333pt;}
._b_c00057{width:5.973333pt;}
._9_c00057{width:6.880000pt;}
._a_c00057{width:7.893333pt;}
._15_c00057{width:9.280000pt;}
._d_c00057{width:10.453333pt;}
._4_c00057{width:11.786667pt;}
._18_c00057{width:13.098613pt;}
._11_c00057{width:14.400000pt;}
._14_c00057{width:15.360000pt;}
._1_c00057{width:16.266667pt;}
._2_c00057{width:17.493333pt;}
._13_c00057{width:19.093333pt;}
._17_c00057{width:23.760053pt;}
._19_c00057{width:26.831917pt;}
.fs1_c00057{font-size:45.333333pt;}
.fs0_c00057{font-size:53.333333pt;}
.y0_c00057{bottom:0.000000pt;}
.y24_c00057{bottom:57.266686pt;}
.y23_c00057{bottom:97.933353pt;}
.y22_c00057{bottom:111.666686pt;}
.y21_c00057{bottom:125.133353pt;}
.y20_c00057{bottom:138.600020pt;}
.y1f_c00057{bottom:152.333353pt;}
.y1e_c00057{bottom:166.066686pt;}
.y1d_c00057{bottom:179.866686pt;}
.y1c_c00057{bottom:193.000020pt;}
.y1b_c00057{bottom:206.733353pt;}
.y1a_c00057{bottom:220.200020pt;}
.y19_c00057{bottom:233.933353pt;}
.y18_c00057{bottom:247.400020pt;}
.y17_c00057{bottom:285.466686pt;}
.y16_c00057{bottom:303.066686pt;}
.y15_c00057{bottom:319.666686pt;}
.y14_c00057{bottom:337.000020pt;}
.y13_c00057{bottom:354.600020pt;}
.y12_c00057{bottom:391.400020pt;}
.y11_c00057{bottom:444.466686pt;}
.y10_c00057{bottom:461.800020pt;}
.yf_c00057{bottom:479.066686pt;}
.ye_c00057{bottom:496.333353pt;}
.yd_c00057{bottom:513.600020pt;}
.yc_c00057{bottom:530.866686pt;}
.yb_c00057{bottom:547.866686pt;}
.ya_c00057{bottom:580.800020pt;}
.y8_c00057{bottom:630.400020pt;}
.y7_c00057{bottom:647.400020pt;}
.y6_c00057{bottom:665.000020pt;}
.y5_c00057{bottom:681.933353pt;}
.y4_c00057{bottom:699.200020pt;}
.y3_c00057{bottom:716.200020pt;}
.y2_c00057{bottom:733.466686pt;}
.y1_c00057{bottom:751.066686pt;}
.y9_c00057{bottom:788.200020pt;}
.h3_c00057{height:44.470052pt;}
.h4_c00057{height:44.492188pt;}
.h2_c00057{height:52.343750pt;}
.h1_c00057{height:851.333333pt;}
.h0_c00057{height:851.533333pt;}
.w0_c00057{width:570.533360pt;}
.w1_c00057{width:570.666667pt;}
.x0_c00057{left:0.000000pt;}
.x4_c00057{left:71.066667pt;}
.x2_c00057{left:72.000000pt;}
.x5_c00057{left:77.133333pt;}
.x1_c00057{left:86.400000pt;}
.x6_c00057{left:101.466667pt;}
.x3_c00057{left:144.666667pt;}
.x7_c00057{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a3936549226eaf1fbc0d3017.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00058;src:url('chunks/assets/font_2e3f64d6d8668b4cc182b6cc.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00058{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00058{word-spacing:-12.750000px;}
.ws2_c00058{word-spacing:0.000000px;}
._7_c00058{margin-left:-13.296285px;}
._6_c00058{margin-left:-11.903715px;}
._10_c00058{margin-left:-6.794322px;}
._13_c00058{margin-left:-5.555889px;}
._a_c00058{margin-left:-4.450569px;}
._12_c00058{margin-left:-3.000024px;}
._0_c00058{margin-left:-1.760979px;}
._2_c00058{width:1.115931px;}
._1_c00058{width:2.699991px;}
._f_c00058{width:3.745494px;}
._3_c00058{width:5.063916px;}
._4_c00058{width:6.972225px;}
._8_c00058{width:8.556390px;}
._9_c00058{width:10.513440px;}
._5_c00058{width:11.684904px;}
._e_c00058{width:13.249443px;}
._d_c00058{width:16.251936px;}
._c_c00058{width:17.960979px;}
._b_c00058{width:21.000000px;}
._11_c00058{width:24.032985px;}
._15_c00058{width:25.272030px;}
._16_c00058{width:26.772042px;}
._14_c00058{width:28.010985px;}
.fc1_c00058{color:transparent;}
.fc0_c00058{color:rgb(35,31,32);}
.fs0_c00058{font-size:51.000000px;}
.fs1_c00058{font-size:60.000000px;}
.y0_c00058{bottom:0.000000px;}
.y2a_c00058{bottom:64.425022px;}
.y29_c00058{bottom:110.175022px;}
.y28_c00058{bottom:125.325022px;}
.y27_c00058{bottom:141.150022px;}
.y26_c00058{bottom:155.925022px;}
.y25_c00058{bottom:171.750022px;}
.y24_c00058{bottom:186.525022px;}
.y23_c00058{bottom:201.975022px;}
.y22_c00058{bottom:217.125022px;}
.y21_c00058{bottom:232.950022px;}
.y20_c00058{bottom:247.725022px;}
.y1f_c00058{bottom:263.175022px;}
.y1e_c00058{bottom:278.325022px;}
.y1d_c00058{bottom:294.150022px;}
.y1c_c00058{bottom:308.925022px;}
.y1b_c00058{bottom:324.375022px;}
.y1a_c00058{bottom:339.525022px;}
.y19_c00058{bottom:354.975022px;}
.y18_c00058{bottom:370.125022px;}
.y17_c00058{bottom:385.575022px;}
.y16_c00058{bottom:456.525022px;}
.y15_c00058{bottom:475.575022px;}
.y14_c00058{bottom:495.375022px;}
.y13_c00058{bottom:514.425022px;}
.y12_c00058{bottom:533.925022px;}
.y11_c00058{bottom:553.350022px;}
.y10_c00058{bottom:573.150022px;}
.yf_c00058{bottom:592.575022px;}
.ye_c00058{bottom:611.625022px;}
.yd_c00058{bottom:631.125022px;}
.yc_c00058{bottom:650.925022px;}
.yb_c00058{bottom:669.975022px;}
.ya_c00058{bottom:689.400022px;}
.y9_c00058{bottom:709.125022px;}
.y8_c00058{bottom:728.625022px;}
.y7_c00058{bottom:748.125022px;}
.y6_c00058{bottom:767.550022px;}
.y5_c00058{bottom:786.600022px;}
.y4_c00058{bottom:805.725022px;}
.y3_c00058{bottom:825.150022px;}
.y2_c00058{bottom:844.575022px;}
.y1_c00058{bottom:886.725022px;}
.h2_c00058{height:50.028809px;}
.h4_c00058{height:50.053711px;}
.h3_c00058{height:58.886719px;}
.h1_c00058{height:957.750000px;}
.h0_c00058{height:957.975000px;}
.w1_c00058{width:643.500000px;}
.w0_c00058{width:643.650000px;}
.x0_c00058{left:0.000000px;}
.x1_c00058{left:90.750000px;}
.x2_c00058{left:91.800000px;}
.x3_c00058{left:96.825000px;}
.x4_c00058{left:123.825000px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls0_c00058{letter-spacing:0.000000pt;}
.ws0_c00058{word-spacing:-13.333333pt;}
.ws1_c00058{word-spacing:-11.333333pt;}
.ws2_c00058{word-spacing:0.000000pt;}
._7_c00058{margin-left:-11.818920pt;}
._6_c00058{margin-left:-10.581080pt;}
._10_c00058{margin-left:-6.039397pt;}
._13_c00058{margin-left:-4.938568pt;}
._a_c00058{margin-left:-3.956061pt;}
._12_c00058{margin-left:-2.666688pt;}
._0_c00058{margin-left:-1.565315pt;}
._2_c00058{width:0.991939pt;}
._1_c00058{width:2.399992pt;}
._f_c00058{width:3.329328pt;}
._3_c00058{width:4.501259pt;}
._4_c00058{width:6.197533pt;}
._8_c00058{width:7.605680pt;}
._9_c00058{width:9.345280pt;}
._5_c00058{width:10.386581pt;}
._e_c00058{width:11.777283pt;}
._d_c00058{width:14.446165pt;}
._c_c00058{width:15.965315pt;}
._b_c00058{width:18.666667pt;}
._11_c00058{width:21.362653pt;}
._15_c00058{width:22.464027pt;}
._16_c00058{width:23.797371pt;}
._14_c00058{width:24.898653pt;}
.fs0_c00058{font-size:45.333333pt;}
.fs1_c00058{font-size:53.333333pt;}
.y0_c00058{bottom:0.000000pt;}
.y2a_c00058{bottom:57.266686pt;}
.y29_c00058{bottom:97.933353pt;}
.y28_c00058{bottom:111.400020pt;}
.y27_c00058{bottom:125.466686pt;}
.y26_c00058{bottom:138.600020pt;}
.y25_c00058{bottom:152.666686pt;}
.y24_c00058{bottom:165.800020pt;}
.y23_c00058{bottom:179.533353pt;}
.y22_c00058{bottom:193.000020pt;}
.y21_c00058{bottom:207.066686pt;}
.y20_c00058{bottom:220.200020pt;}
.y1f_c00058{bottom:233.933353pt;}
.y1e_c00058{bottom:247.400020pt;}
.y1d_c00058{bottom:261.466686pt;}
.y1c_c00058{bottom:274.600020pt;}
.y1b_c00058{bottom:288.333353pt;}
.y1a_c00058{bottom:301.800020pt;}
.y19_c00058{bottom:315.533353pt;}
.y18_c00058{bottom:329.000020pt;}
.y17_c00058{bottom:342.733353pt;}
.y16_c00058{bottom:405.800020pt;}
.y15_c00058{bottom:422.733353pt;}
.y14_c00058{bottom:440.333353pt;}
.y13_c00058{bottom:457.266686pt;}
.y12_c00058{bottom:474.600020pt;}
.y11_c00058{bottom:491.866686pt;}
.y10_c00058{bottom:509.466686pt;}
.yf_c00058{bottom:526.733353pt;}
.ye_c00058{bottom:543.666686pt;}
.yd_c00058{bottom:561.000020pt;}
.yc_c00058{bottom:578.600020pt;}
.yb_c00058{bottom:595.533353pt;}
.ya_c00058{bottom:612.800020pt;}
.y9_c00058{bottom:630.333353pt;}
.y8_c00058{bottom:647.666686pt;}
.y7_c00058{bottom:665.000020pt;}
.y6_c00058{bottom:682.266686pt;}
.y5_c00058{bottom:699.200020pt;}
.y4_c00058{bottom:716.200020pt;}
.y3_c00058{bottom:733.466686pt;}
.y2_c00058{bottom:750.733353pt;}
.y1_c00058{bottom:788.200020pt;}
.h2_c00058{height:44.470052pt;}
.h4_c00058{height:44.492188pt;}
.h3_c00058{height:52.343750pt;}
.h1_c00058{height:851.333333pt;}
.h0_c00058{height:851.533333pt;}
.w1_c00058{width:572.000000pt;}
.w0_c00058{width:572.133333pt;}
.x0_c00058{left:0.000000pt;}
.x1_c00058{left:80.666667pt;}
.x2_c00058{left:81.600000pt;}
.x3_c00058{left:86.066667pt;}
.x4_c00058{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5adf3f1a6cb09b492ae84a16.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00059;src:url('chunks/assets/font_ef885fe7e9433405cd2190e3.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00059{letter-spacing:0.000000px;}
.sc__c00059{text-shadow:none;}
.sc0_c00059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00059{-webkit-text-stroke:0px transparent;}
.sc0_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00059{word-spacing:-15.000000px;}
.ws1_c00059{word-spacing:-12.750000px;}
.ws2_c00059{word-spacing:0.000000px;}
._15_c00059{margin-left:-30.660000px;}
._14_c00059{margin-left:-29.340000px;}
._10_c00059{margin-left:-15.660000px;}
._13_c00059{margin-left:-13.260000px;}
._6_c00059{margin-left:-12.120000px;}
._8_c00059{margin-left:-10.440000px;}
._17_c00059{margin-left:-9.372000px;}
._12_c00059{margin-left:-7.320000px;}
._16_c00059{margin-left:-5.220000px;}
._f_c00059{margin-left:-4.140000px;}
._11_c00059{margin-left:-3.048000px;}
._3_c00059{margin-left:-1.920000px;}
._0_c00059{width:1.860000px;}
._4_c00059{width:3.300000px;}
._e_c00059{width:4.320000px;}
._5_c00059{width:5.460000px;}
._9_c00059{width:6.540000px;}
._7_c00059{width:7.560000px;}
._c_c00059{width:9.120000px;}
._2_c00059{width:10.440000px;}
._1_c00059{width:12.600000px;}
._a_c00059{width:13.680000px;}
._d_c00059{width:16.560000px;}
._18_c00059{width:17.640000px;}
._b_c00059{width:18.780000px;}
._19_c00059{width:20.280000px;}
._1b_c00059{width:21.438000px;}
._1c_c00059{width:24.893922px;}
._1a_c00059{width:27.138000px;}
._1d_c00059{width:28.638000px;}
.fc1_c00059{color:transparent;}
.fc0_c00059{color:rgb(35,31,32);}
.fs1_c00059{font-size:51.000000px;}
.fs0_c00059{font-size:60.000000px;}
.y0_c00059{bottom:0.000000px;}
.y25_c00059{bottom:64.425022px;}
.y24_c00059{bottom:110.175022px;}
.y23_c00059{bottom:125.325022px;}
.y22_c00059{bottom:141.150022px;}
.y21_c00059{bottom:155.925022px;}
.y20_c00059{bottom:171.375022px;}
.y1f_c00059{bottom:186.525022px;}
.y1e_c00059{bottom:201.975022px;}
.y1d_c00059{bottom:217.125022px;}
.y1c_c00059{bottom:232.950022px;}
.y1b_c00059{bottom:247.725022px;}
.y1a_c00059{bottom:263.175022px;}
.y19_c00059{bottom:278.325022px;}
.y18_c00059{bottom:361.425022px;}
.y17_c00059{bottom:380.925022px;}
.y16_c00059{bottom:400.350022px;}
.y15_c00059{bottom:419.775022px;}
.y14_c00059{bottom:439.200022px;}
.y13_c00059{bottom:458.625022px;}
.y12_c00059{bottom:478.125022px;}
.y11_c00059{bottom:497.175022px;}
.y10_c00059{bottom:516.600022px;}
.yf_c00059{bottom:536.400022px;}
.ye_c00059{bottom:555.825022px;}
.yd_c00059{bottom:574.950022px;}
.yc_c00059{bottom:594.375022px;}
.yb_c00059{bottom:614.175022px;}
.ya_c00059{bottom:633.225022px;}
.y9_c00059{bottom:671.400022px;}
.y7_c00059{bottom:728.625022px;}
.y6_c00059{bottom:747.750022px;}
.y5_c00059{bottom:767.550022px;}
.y4_c00059{bottom:786.600022px;}
.y3_c00059{bottom:806.025022px;}
.y2_c00059{bottom:825.150022px;}
.y1_c00059{bottom:844.575022px;}
.y8_c00059{bottom:886.725022px;}
.h3_c00059{height:50.028809px;}
.h4_c00059{height:50.053711px;}
.h2_c00059{height:58.886719px;}
.h1_c00059{height:957.750000px;}
.h0_c00059{height:957.975000px;}
.w0_c00059{width:641.850030px;}
.w1_c00059{width:642.000000px;}
.x0_c00059{left:0.000000px;}
.x3_c00059{left:80.250000px;}
.x1_c00059{left:81.375000px;}
.x5_c00059{left:86.775000px;}
.x2_c00059{left:96.150000px;}
.x6_c00059{left:114.150000px;}
.x4_c00059{left:162.750000px;}
.x7_c00059{left:538.575000px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls0_c00059{letter-spacing:0.000000pt;}
.ws0_c00059{word-spacing:-13.333333pt;}
.ws1_c00059{word-spacing:-11.333333pt;}
.ws2_c00059{word-spacing:0.000000pt;}
._15_c00059{margin-left:-27.253333pt;}
._14_c00059{margin-left:-26.080000pt;}
._10_c00059{margin-left:-13.920000pt;}
._13_c00059{margin-left:-11.786667pt;}
._6_c00059{margin-left:-10.773333pt;}
._8_c00059{margin-left:-9.280000pt;}
._17_c00059{margin-left:-8.330667pt;}
._12_c00059{margin-left:-6.506667pt;}
._16_c00059{margin-left:-4.640000pt;}
._f_c00059{margin-left:-3.680000pt;}
._11_c00059{margin-left:-2.709333pt;}
._3_c00059{margin-left:-1.706667pt;}
._0_c00059{width:1.653333pt;}
._4_c00059{width:2.933333pt;}
._e_c00059{width:3.840000pt;}
._5_c00059{width:4.853333pt;}
._9_c00059{width:5.813333pt;}
._7_c00059{width:6.720000pt;}
._c_c00059{width:8.106667pt;}
._2_c00059{width:9.280000pt;}
._1_c00059{width:11.200000pt;}
._a_c00059{width:12.160000pt;}
._d_c00059{width:14.720000pt;}
._18_c00059{width:15.680000pt;}
._b_c00059{width:16.693333pt;}
._19_c00059{width:18.026667pt;}
._1b_c00059{width:19.056000pt;}
._1c_c00059{width:22.127931pt;}
._1a_c00059{width:24.122667pt;}
._1d_c00059{width:25.456000pt;}
.fs1_c00059{font-size:45.333333pt;}
.fs0_c00059{font-size:53.333333pt;}
.y0_c00059{bottom:0.000000pt;}
.y25_c00059{bottom:57.266686pt;}
.y24_c00059{bottom:97.933353pt;}
.y23_c00059{bottom:111.400020pt;}
.y22_c00059{bottom:125.466686pt;}
.y21_c00059{bottom:138.600020pt;}
.y20_c00059{bottom:152.333353pt;}
.y1f_c00059{bottom:165.800020pt;}
.y1e_c00059{bottom:179.533353pt;}
.y1d_c00059{bottom:193.000020pt;}
.y1c_c00059{bottom:207.066686pt;}
.y1b_c00059{bottom:220.200020pt;}
.y1a_c00059{bottom:233.933353pt;}
.y19_c00059{bottom:247.400020pt;}
.y18_c00059{bottom:321.266686pt;}
.y17_c00059{bottom:338.600020pt;}
.y16_c00059{bottom:355.866686pt;}
.y15_c00059{bottom:373.133353pt;}
.y14_c00059{bottom:390.400020pt;}
.y13_c00059{bottom:407.666686pt;}
.y12_c00059{bottom:425.000020pt;}
.y11_c00059{bottom:441.933353pt;}
.y10_c00059{bottom:459.200020pt;}
.yf_c00059{bottom:476.800020pt;}
.ye_c00059{bottom:494.066686pt;}
.yd_c00059{bottom:511.066686pt;}
.yc_c00059{bottom:528.333353pt;}
.yb_c00059{bottom:545.933353pt;}
.ya_c00059{bottom:562.866686pt;}
.y9_c00059{bottom:596.800020pt;}
.y7_c00059{bottom:647.666686pt;}
.y6_c00059{bottom:664.666686pt;}
.y5_c00059{bottom:682.266686pt;}
.y4_c00059{bottom:699.200020pt;}
.y3_c00059{bottom:716.466686pt;}
.y2_c00059{bottom:733.466686pt;}
.y1_c00059{bottom:750.733353pt;}
.y8_c00059{bottom:788.200020pt;}
.h3_c00059{height:44.470052pt;}
.h4_c00059{height:44.492188pt;}
.h2_c00059{height:52.343750pt;}
.h1_c00059{height:851.333333pt;}
.h0_c00059{height:851.533333pt;}
.w0_c00059{width:570.533360pt;}
.w1_c00059{width:570.666667pt;}
.x0_c00059{left:0.000000pt;}
.x3_c00059{left:71.333333pt;}
.x1_c00059{left:72.333333pt;}
.x5_c00059{left:77.133333pt;}
.x2_c00059{left:85.466667pt;}
.x6_c00059{left:101.466667pt;}
.x4_c00059{left:144.666667pt;}
.x7_c00059{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c67ffaa859cacdf69e09e91f.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00060;src:url('chunks/assets/font_7caf38c54444afb594350fe6.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00060{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_c00060{vertical-align:0.000000px;}
.ls0_c00060{letter-spacing:0.000000px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00060{word-spacing:-15.000000px;}
.ws1_c00060{word-spacing:-12.750000px;}
.ws2_c00060{word-spacing:0.000000px;}
._e_c00060{margin-left:-30.000000px;}
._d_c00060{margin-left:-14.520000px;}
._f_c00060{margin-left:-13.440000px;}
._c_c00060{margin-left:-11.940000px;}
._a_c00060{margin-left:-9.840000px;}
._17_c00060{margin-left:-8.534865px;}
._8_c00060{margin-left:-6.120000px;}
._7_c00060{margin-left:-5.100000px;}
._15_c00060{margin-left:-3.420000px;}
._6_c00060{margin-left:-2.340000px;}
._0_c00060{margin-left:-1.080000px;}
._3_c00060{width:1.260000px;}
._2_c00060{width:2.460000px;}
._4_c00060{width:3.540000px;}
._18_c00060{width:4.559973px;}
._5_c00060{width:5.580000px;}
._9_c00060{width:6.600000px;}
._b_c00060{width:8.400000px;}
._1_c00060{width:9.420000px;}
._11_c00060{width:10.560000px;}
._10_c00060{width:11.580000px;}
._12_c00060{width:13.140000px;}
._1b_c00060{width:14.468793px;}
._1a_c00060{width:15.516006px;}
._13_c00060{width:16.980000px;}
._14_c00060{width:20.340000px;}
._19_c00060{width:23.010000px;}
._16_c00060{width:26.010060px;}
.fc1_c00060{color:transparent;}
.fc0_c00060{color:rgb(35,31,32);}
.fs1_c00060{font-size:51.000000px;}
.fs0_c00060{font-size:60.000000px;}
.y0_c00060{bottom:0.000000px;}
.y27_c00060{bottom:64.425022px;}
.y26_c00060{bottom:110.175022px;}
.y25_c00060{bottom:125.625022px;}
.y24_c00060{bottom:140.775022px;}
.y23_c00060{bottom:156.225022px;}
.y22_c00060{bottom:171.375022px;}
.y21_c00060{bottom:186.825022px;}
.y20_c00060{bottom:202.350022px;}
.y1f_c00060{bottom:217.425022px;}
.y1e_c00060{bottom:232.575022px;}
.y1d_c00060{bottom:247.725022px;}
.y1c_c00060{bottom:263.175022px;}
.y1b_c00060{bottom:278.325022px;}
.y1a_c00060{bottom:293.775022px;}
.y19_c00060{bottom:309.225022px;}
.y18_c00060{bottom:324.750022px;}
.y17_c00060{bottom:364.725022px;}
.y16_c00060{bottom:383.775022px;}
.y15_c00060{bottom:403.500022px;}
.y14_c00060{bottom:422.625022px;}
.y13_c00060{bottom:441.750022px;}
.y12_c00060{bottom:461.175022px;}
.y11_c00060{bottom:500.775022px;}
.yf_c00060{bottom:553.350022px;}
.ye_c00060{bottom:572.775022px;}
.yd_c00060{bottom:592.200022px;}
.yc_c00060{bottom:611.625022px;}
.yb_c00060{bottom:631.125022px;}
.ya_c00060{bottom:650.175022px;}
.y9_c00060{bottom:669.975022px;}
.y8_c00060{bottom:689.400022px;}
.y7_c00060{bottom:708.525022px;}
.y6_c00060{bottom:728.325022px;}
.y5_c00060{bottom:747.375022px;}
.y4_c00060{bottom:767.175022px;}
.y3_c00060{bottom:786.600022px;}
.y2_c00060{bottom:805.725022px;}
.y1_c00060{bottom:844.950022px;}
.y10_c00060{bottom:886.725022px;}
.h3_c00060{height:50.028809px;}
.h4_c00060{height:50.053711px;}
.h2_c00060{height:58.886719px;}
.h1_c00060{height:957.750000px;}
.h0_c00060{height:957.975000px;}
.w1_c00060{width:643.500000px;}
.w0_c00060{width:643.650000px;}
.x0_c00060{left:0.000000px;}
.x1_c00060{left:91.425000px;}
.x2_c00060{left:96.825000px;}
.x3_c00060{left:124.200000px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls0_c00060{letter-spacing:0.000000pt;}
.ws0_c00060{word-spacing:-13.333333pt;}
.ws1_c00060{word-spacing:-11.333333pt;}
.ws2_c00060{word-spacing:0.000000pt;}
._e_c00060{margin-left:-26.666667pt;}
._d_c00060{margin-left:-12.906667pt;}
._f_c00060{margin-left:-11.946667pt;}
._c_c00060{margin-left:-10.613333pt;}
._a_c00060{margin-left:-8.746667pt;}
._17_c00060{margin-left:-7.586547pt;}
._8_c00060{margin-left:-5.440000pt;}
._7_c00060{margin-left:-4.533333pt;}
._15_c00060{margin-left:-3.040000pt;}
._6_c00060{margin-left:-2.080000pt;}
._0_c00060{margin-left:-0.960000pt;}
._3_c00060{width:1.120000pt;}
._2_c00060{width:2.186667pt;}
._4_c00060{width:3.146667pt;}
._18_c00060{width:4.053309pt;}
._5_c00060{width:4.960000pt;}
._9_c00060{width:5.866667pt;}
._b_c00060{width:7.466667pt;}
._1_c00060{width:8.373333pt;}
._11_c00060{width:9.386667pt;}
._10_c00060{width:10.293333pt;}
._12_c00060{width:11.680000pt;}
._1b_c00060{width:12.861149pt;}
._1a_c00060{width:13.792005pt;}
._13_c00060{width:15.093333pt;}
._14_c00060{width:18.080000pt;}
._19_c00060{width:20.453333pt;}
._16_c00060{width:23.120053pt;}
.fs1_c00060{font-size:45.333333pt;}
.fs0_c00060{font-size:53.333333pt;}
.y0_c00060{bottom:0.000000pt;}
.y27_c00060{bottom:57.266686pt;}
.y26_c00060{bottom:97.933353pt;}
.y25_c00060{bottom:111.666686pt;}
.y24_c00060{bottom:125.133353pt;}
.y23_c00060{bottom:138.866686pt;}
.y22_c00060{bottom:152.333353pt;}
.y21_c00060{bottom:166.066686pt;}
.y20_c00060{bottom:179.866686pt;}
.y1f_c00060{bottom:193.266686pt;}
.y1e_c00060{bottom:206.733353pt;}
.y1d_c00060{bottom:220.200020pt;}
.y1c_c00060{bottom:233.933353pt;}
.y1b_c00060{bottom:247.400020pt;}
.y1a_c00060{bottom:261.133353pt;}
.y19_c00060{bottom:274.866686pt;}
.y18_c00060{bottom:288.666686pt;}
.y17_c00060{bottom:324.200020pt;}
.y16_c00060{bottom:341.133353pt;}
.y15_c00060{bottom:358.666686pt;}
.y14_c00060{bottom:375.666686pt;}
.y13_c00060{bottom:392.666686pt;}
.y12_c00060{bottom:409.933353pt;}
.y11_c00060{bottom:445.133353pt;}
.yf_c00060{bottom:491.866686pt;}
.ye_c00060{bottom:509.133353pt;}
.yd_c00060{bottom:526.400020pt;}
.yc_c00060{bottom:543.666686pt;}
.yb_c00060{bottom:561.000020pt;}
.ya_c00060{bottom:577.933353pt;}
.y9_c00060{bottom:595.533353pt;}
.y8_c00060{bottom:612.800020pt;}
.y7_c00060{bottom:629.800020pt;}
.y6_c00060{bottom:647.400020pt;}
.y5_c00060{bottom:664.333353pt;}
.y4_c00060{bottom:681.933353pt;}
.y3_c00060{bottom:699.200020pt;}
.y2_c00060{bottom:716.200020pt;}
.y1_c00060{bottom:751.066686pt;}
.y10_c00060{bottom:788.200020pt;}
.h3_c00060{height:44.470052pt;}
.h4_c00060{height:44.492188pt;}
.h2_c00060{height:52.343750pt;}
.h1_c00060{height:851.333333pt;}
.h0_c00060{height:851.533333pt;}
.w1_c00060{width:572.000000pt;}
.w0_c00060{width:572.133333pt;}
.x0_c00060{left:0.000000pt;}
.x1_c00060{left:81.266667pt;}
.x2_c00060{left:86.066667pt;}
.x3_c00060{left:110.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_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_944b2e800e89857a7de7b6e0.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00061;src:url('chunks/assets/font_ef9b970d75959f133ed2e2ac.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-15.000000px;}
.ws1_c00061{word-spacing:-12.750000px;}
.ws2_c00061{word-spacing:0.000000px;}
._11_c00061{margin-left:-14.940030px;}
._3_c00061{margin-left:-13.193979px;}
._4_c00061{margin-left:-12.006021px;}
._d_c00061{margin-left:-10.904976px;}
._14_c00061{margin-left:-7.620288px;}
._12_c00061{margin-left:-5.469126px;}
._9_c00061{margin-left:-4.200000px;}
._13_c00061{margin-left:-3.000000px;}
._2_c00061{margin-left:-1.895976px;}
._0_c00061{width:1.173000px;}
._1_c00061{width:2.531997px;}
._5_c00061{width:3.600000px;}
._c_c00061{width:4.833012px;}
._7_c00061{width:6.408003px;}
._b_c00061{width:8.280000px;}
._8_c00061{width:9.621000px;}
._a_c00061{width:10.935000px;}
._6_c00061{width:12.120000px;}
._10_c00061{width:13.542015px;}
._17_c00061{width:15.285006px;}
._e_c00061{width:17.106021px;}
._f_c00061{width:18.360000px;}
._16_c00061{width:25.145976px;}
._15_c00061{width:27.042012px;}
.fc1_c00061{color:transparent;}
.fc0_c00061{color:rgb(35,31,32);}
.fs0_c00061{font-size:51.000000px;}
.fs1_c00061{font-size:60.000000px;}
.y0_c00061{bottom:0.000000px;}
.y2b_c00061{bottom:64.425022px;}
.y2a_c00061{bottom:110.175022px;}
.y29_c00061{bottom:125.625022px;}
.y28_c00061{bottom:140.775022px;}
.y27_c00061{bottom:155.925022px;}
.y26_c00061{bottom:171.375022px;}
.y25_c00061{bottom:186.525022px;}
.y24_c00061{bottom:201.975022px;}
.y23_c00061{bottom:217.125022px;}
.y22_c00061{bottom:232.575022px;}
.y21_c00061{bottom:247.725022px;}
.y20_c00061{bottom:263.550022px;}
.y1f_c00061{bottom:278.325022px;}
.y1e_c00061{bottom:294.150022px;}
.y1d_c00061{bottom:309.225022px;}
.y1c_c00061{bottom:324.750022px;}
.y1b_c00061{bottom:339.525022px;}
.y1a_c00061{bottom:354.975022px;}
.y19_c00061{bottom:397.800022px;}
.y18_c00061{bottom:417.225022px;}
.y17_c00061{bottom:437.025022px;}
.y16_c00061{bottom:456.525022px;}
.y15_c00061{bottom:475.950022px;}
.y14_c00061{bottom:495.000022px;}
.y13_c00061{bottom:514.425022px;}
.y12_c00061{bottom:534.225022px;}
.y11_c00061{bottom:553.350022px;}
.y10_c00061{bottom:572.775022px;}
.yf_c00061{bottom:592.200022px;}
.ye_c00061{bottom:612.000022px;}
.yd_c00061{bottom:631.125022px;}
.yc_c00061{bottom:650.925022px;}
.yb_c00061{bottom:670.350022px;}
.ya_c00061{bottom:689.775022px;}
.y9_c00061{bottom:709.200022px;}
.y8_c00061{bottom:728.625022px;}
.y7_c00061{bottom:747.750022px;}
.y6_c00061{bottom:767.550022px;}
.y5_c00061{bottom:786.600022px;}
.y4_c00061{bottom:806.025022px;}
.y3_c00061{bottom:825.150022px;}
.y2_c00061{bottom:844.575022px;}
.y1_c00061{bottom:886.725022px;}
.h2_c00061{height:50.028809px;}
.h4_c00061{height:50.053711px;}
.h3_c00061{height:58.886719px;}
.h1_c00061{height:957.750000px;}
.h0_c00061{height:957.975000px;}
.w0_c00061{width:641.850030px;}
.w1_c00061{width:642.000000px;}
.x0_c00061{left:0.000000px;}
.x2_c00061{left:80.250000px;}
.x3_c00061{left:81.375000px;}
.x5_c00061{left:86.775000px;}
.x4_c00061{left:113.775000px;}
.x1_c00061{left:162.750000px;}
.x6_c00061{left:538.575000px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls0_c00061{letter-spacing:0.000000pt;}
.ws0_c00061{word-spacing:-13.333333pt;}
.ws1_c00061{word-spacing:-11.333333pt;}
.ws2_c00061{word-spacing:0.000000pt;}
._11_c00061{margin-left:-13.280027pt;}
._3_c00061{margin-left:-11.727981pt;}
._4_c00061{margin-left:-10.672019pt;}
._d_c00061{margin-left:-9.693312pt;}
._14_c00061{margin-left:-6.773589pt;}
._12_c00061{margin-left:-4.861445pt;}
._9_c00061{margin-left:-3.733333pt;}
._13_c00061{margin-left:-2.666667pt;}
._2_c00061{margin-left:-1.685312pt;}
._0_c00061{width:1.042667pt;}
._1_c00061{width:2.250664pt;}
._5_c00061{width:3.200000pt;}
._c_c00061{width:4.296011pt;}
._7_c00061{width:5.696003pt;}
._b_c00061{width:7.360000pt;}
._8_c00061{width:8.552000pt;}
._a_c00061{width:9.720000pt;}
._6_c00061{width:10.773333pt;}
._10_c00061{width:12.037347pt;}
._17_c00061{width:13.586672pt;}
._e_c00061{width:15.205352pt;}
._f_c00061{width:16.320000pt;}
._16_c00061{width:22.351979pt;}
._15_c00061{width:24.037344pt;}
.fs0_c00061{font-size:45.333333pt;}
.fs1_c00061{font-size:53.333333pt;}
.y0_c00061{bottom:0.000000pt;}
.y2b_c00061{bottom:57.266686pt;}
.y2a_c00061{bottom:97.933353pt;}
.y29_c00061{bottom:111.666686pt;}
.y28_c00061{bottom:125.133353pt;}
.y27_c00061{bottom:138.600020pt;}
.y26_c00061{bottom:152.333353pt;}
.y25_c00061{bottom:165.800020pt;}
.y24_c00061{bottom:179.533353pt;}
.y23_c00061{bottom:193.000020pt;}
.y22_c00061{bottom:206.733353pt;}
.y21_c00061{bottom:220.200020pt;}
.y20_c00061{bottom:234.266686pt;}
.y1f_c00061{bottom:247.400020pt;}
.y1e_c00061{bottom:261.466686pt;}
.y1d_c00061{bottom:274.866686pt;}
.y1c_c00061{bottom:288.666686pt;}
.y1b_c00061{bottom:301.800020pt;}
.y1a_c00061{bottom:315.533353pt;}
.y19_c00061{bottom:353.600020pt;}
.y18_c00061{bottom:370.866686pt;}
.y17_c00061{bottom:388.466686pt;}
.y16_c00061{bottom:405.800020pt;}
.y15_c00061{bottom:423.066686pt;}
.y14_c00061{bottom:440.000020pt;}
.y13_c00061{bottom:457.266686pt;}
.y12_c00061{bottom:474.866686pt;}
.y11_c00061{bottom:491.866686pt;}
.y10_c00061{bottom:509.133353pt;}
.yf_c00061{bottom:526.400020pt;}
.ye_c00061{bottom:544.000020pt;}
.yd_c00061{bottom:561.000020pt;}
.yc_c00061{bottom:578.600020pt;}
.yb_c00061{bottom:595.866686pt;}
.ya_c00061{bottom:613.133353pt;}
.y9_c00061{bottom:630.400020pt;}
.y8_c00061{bottom:647.666686pt;}
.y7_c00061{bottom:664.666686pt;}
.y6_c00061{bottom:682.266686pt;}
.y5_c00061{bottom:699.200020pt;}
.y4_c00061{bottom:716.466686pt;}
.y3_c00061{bottom:733.466686pt;}
.y2_c00061{bottom:750.733353pt;}
.y1_c00061{bottom:788.200020pt;}
.h2_c00061{height:44.470052pt;}
.h4_c00061{height:44.492188pt;}
.h3_c00061{height:52.343750pt;}
.h1_c00061{height:851.333333pt;}
.h0_c00061{height:851.533333pt;}
.w0_c00061{width:570.533360pt;}
.w1_c00061{width:570.666667pt;}
.x0_c00061{left:0.000000pt;}
.x2_c00061{left:71.333333pt;}
.x3_c00061{left:72.333333pt;}
.x5_c00061{left:77.133333pt;}
.x4_c00061{left:101.133333pt;}
.x1_c00061{left:144.666667pt;}
.x6_c00061{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f66289d50a86aa07292ef149.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00062;src:url('chunks/assets/font_2a3c62c7eff2db1868ffb7ce.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00062{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_c00062{vertical-align:0.000000px;}
.ls0_c00062{letter-spacing:0.000000px;}
.sc__c00062{text-shadow:none;}
.sc0_c00062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00062{-webkit-text-stroke:0px transparent;}
.sc0_c00062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00062{word-spacing:-15.000000px;}
.ws1_c00062{word-spacing:-12.750000px;}
.ws2_c00062{word-spacing:0.000000px;}
._8_c00062{margin-left:-12.900000px;}
._7_c00062{margin-left:-11.830392px;}
._19_c00062{margin-left:-8.100051px;}
._12_c00062{margin-left:-6.828138px;}
._15_c00062{margin-left:-5.465532px;}
._13_c00062{margin-left:-3.836748px;}
._5_c00062{margin-left:-2.772198px;}
._0_c00062{margin-left:-1.760979px;}
._2_c00062{width:1.115931px;}
._1_c00062{width:2.699991px;}
._3_c00062{width:4.452207px;}
._4_c00062{width:5.877264px;}
._6_c00062{width:7.365066px;}
._11_c00062{width:8.900979px;}
._9_c00062{width:10.200000px;}
._f_c00062{width:11.416023px;}
._a_c00062{width:12.816639px;}
._10_c00062{width:13.944414px;}
._e_c00062{width:16.020000px;}
._d_c00062{width:17.180625px;}
._b_c00062{width:18.288138px;}
._c_c00062{width:20.316984px;}
._14_c00062{width:21.660690px;}
._17_c00062{width:23.771916px;}
._16_c00062{width:25.044204px;}
._18_c00062{width:26.544216px;}
.fc1_c00062{color:transparent;}
.fc0_c00062{color:rgb(35,31,32);}
.fs0_c00062{font-size:51.000000px;}
.fs1_c00062{font-size:60.000000px;}
.y0_c00062{bottom:0.000000px;}
.y28_c00062{bottom:64.800022px;}
.y27_c00062{bottom:110.175022px;}
.y26_c00062{bottom:125.625022px;}
.y25_c00062{bottom:140.775022px;}
.y24_c00062{bottom:155.925022px;}
.y23_c00062{bottom:171.375022px;}
.y22_c00062{bottom:186.525022px;}
.y21_c00062{bottom:202.350022px;}
.y20_c00062{bottom:217.125022px;}
.y1f_c00062{bottom:232.575022px;}
.y1e_c00062{bottom:248.025022px;}
.y1d_c00062{bottom:263.550022px;}
.y1c_c00062{bottom:278.325022px;}
.y1b_c00062{bottom:293.775022px;}
.y1a_c00062{bottom:308.925022px;}
.y19_c00062{bottom:324.375022px;}
.y18_c00062{bottom:364.350022px;}
.y17_c00062{bottom:384.150022px;}
.y16_c00062{bottom:403.575022px;}
.y15_c00062{bottom:423.000022px;}
.y14_c00062{bottom:441.750022px;}
.y13_c00062{bottom:461.175022px;}
.y12_c00062{bottom:480.975022px;}
.y11_c00062{bottom:500.400022px;}
.y10_c00062{bottom:519.825022px;}
.yf_c00062{bottom:538.950022px;}
.ye_c00062{bottom:558.375022px;}
.yd_c00062{bottom:597.975022px;}
.yc_c00062{bottom:650.550022px;}
.yb_c00062{bottom:669.975022px;}
.ya_c00062{bottom:689.400022px;}
.y9_c00062{bottom:709.125022px;}
.y8_c00062{bottom:728.625022px;}
.y7_c00062{bottom:748.125022px;}
.y6_c00062{bottom:767.175022px;}
.y5_c00062{bottom:786.225022px;}
.y4_c00062{bottom:806.025022px;}
.y3_c00062{bottom:825.525022px;}
.y2_c00062{bottom:844.575022px;}
.y1_c00062{bottom:886.725022px;}
.h2_c00062{height:50.028809px;}
.h4_c00062{height:50.053711px;}
.h3_c00062{height:58.886719px;}
.h1_c00062{height:957.750000px;}
.h0_c00062{height:957.975000px;}
.w1_c00062{width:643.500000px;}
.w0_c00062{width:643.650000px;}
.x0_c00062{left:0.000000px;}
.x1_c00062{left:90.750000px;}
.x2_c00062{left:91.800000px;}
.x4_c00062{left:96.825000px;}
.x3_c00062{left:123.450000px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls0_c00062{letter-spacing:0.000000pt;}
.ws0_c00062{word-spacing:-13.333333pt;}
.ws1_c00062{word-spacing:-11.333333pt;}
.ws2_c00062{word-spacing:0.000000pt;}
._8_c00062{margin-left:-11.466667pt;}
._7_c00062{margin-left:-10.515904pt;}
._19_c00062{margin-left:-7.200045pt;}
._12_c00062{margin-left:-6.069456pt;}
._15_c00062{margin-left:-4.858251pt;}
._13_c00062{margin-left:-3.410443pt;}
._5_c00062{margin-left:-2.464176pt;}
._0_c00062{margin-left:-1.565315pt;}
._2_c00062{width:0.991939pt;}
._1_c00062{width:2.399992pt;}
._3_c00062{width:3.957517pt;}
._4_c00062{width:5.224235pt;}
._6_c00062{width:6.546725pt;}
._11_c00062{width:7.911981pt;}
._9_c00062{width:9.066667pt;}
._f_c00062{width:10.147576pt;}
._a_c00062{width:11.392568pt;}
._10_c00062{width:12.395035pt;}
._e_c00062{width:14.240000pt;}
._d_c00062{width:15.271667pt;}
._b_c00062{width:16.256123pt;}
._c_c00062{width:18.059541pt;}
._14_c00062{width:19.253947pt;}
._17_c00062{width:21.130592pt;}
._16_c00062{width:22.261515pt;}
._18_c00062{width:23.594859pt;}
.fs0_c00062{font-size:45.333333pt;}
.fs1_c00062{font-size:53.333333pt;}
.y0_c00062{bottom:0.000000pt;}
.y28_c00062{bottom:57.600020pt;}
.y27_c00062{bottom:97.933353pt;}
.y26_c00062{bottom:111.666686pt;}
.y25_c00062{bottom:125.133353pt;}
.y24_c00062{bottom:138.600020pt;}
.y23_c00062{bottom:152.333353pt;}
.y22_c00062{bottom:165.800020pt;}
.y21_c00062{bottom:179.866686pt;}
.y20_c00062{bottom:193.000020pt;}
.y1f_c00062{bottom:206.733353pt;}
.y1e_c00062{bottom:220.466686pt;}
.y1d_c00062{bottom:234.266686pt;}
.y1c_c00062{bottom:247.400020pt;}
.y1b_c00062{bottom:261.133353pt;}
.y1a_c00062{bottom:274.600020pt;}
.y19_c00062{bottom:288.333353pt;}
.y18_c00062{bottom:323.866686pt;}
.y17_c00062{bottom:341.466686pt;}
.y16_c00062{bottom:358.733353pt;}
.y15_c00062{bottom:376.000020pt;}
.y14_c00062{bottom:392.666686pt;}
.y13_c00062{bottom:409.933353pt;}
.y12_c00062{bottom:427.533353pt;}
.y11_c00062{bottom:444.800020pt;}
.y10_c00062{bottom:462.066686pt;}
.yf_c00062{bottom:479.066686pt;}
.ye_c00062{bottom:496.333353pt;}
.yd_c00062{bottom:531.533353pt;}
.yc_c00062{bottom:578.266686pt;}
.yb_c00062{bottom:595.533353pt;}
.ya_c00062{bottom:612.800020pt;}
.y9_c00062{bottom:630.333353pt;}
.y8_c00062{bottom:647.666686pt;}
.y7_c00062{bottom:665.000020pt;}
.y6_c00062{bottom:681.933353pt;}
.y5_c00062{bottom:698.866686pt;}
.y4_c00062{bottom:716.466686pt;}
.y3_c00062{bottom:733.800020pt;}
.y2_c00062{bottom:750.733353pt;}
.y1_c00062{bottom:788.200020pt;}
.h2_c00062{height:44.470052pt;}
.h4_c00062{height:44.492188pt;}
.h3_c00062{height:52.343750pt;}
.h1_c00062{height:851.333333pt;}
.h0_c00062{height:851.533333pt;}
.w1_c00062{width:572.000000pt;}
.w0_c00062{width:572.133333pt;}
.x0_c00062{left:0.000000pt;}
.x1_c00062{left:80.666667pt;}
.x2_c00062{left:81.600000pt;}
.x4_c00062{left:86.066667pt;}
.x3_c00062{left:109.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d60111375e0ebe0cac5cd19d.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00063;src:url('chunks/assets/font_5e5468653dbcf696bb6e9f61.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00063{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00063{word-spacing:-12.750000px;}
.ws2_c00063{word-spacing:0.000000px;}
._f_c00063{margin-left:-12.000000px;}
._11_c00063{margin-left:-10.560000px;}
._4_c00063{margin-left:-8.700000px;}
._3_c00063{margin-left:-7.560000px;}
._16_c00063{margin-left:-5.508021px;}
._14_c00063{margin-left:-3.708000px;}
._e_c00063{margin-left:-2.580000px;}
._6_c00063{margin-left:-1.320000px;}
._0_c00063{width:1.500000px;}
._1_c00063{width:2.580000px;}
._8_c00063{width:3.600000px;}
._a_c00063{width:4.740000px;}
._2_c00063{width:6.120000px;}
._5_c00063{width:7.440000px;}
._9_c00063{width:9.420000px;}
._c_c00063{width:11.280000px;}
._d_c00063{width:12.480000px;}
._b_c00063{width:13.500000px;}
._7_c00063{width:16.140000px;}
._10_c00063{width:18.120000px;}
._13_c00063{width:19.920000px;}
._18_c00063{width:21.107964px;}
._12_c00063{width:22.260000px;}
._19_c00063{width:23.682036px;}
._15_c00063{width:25.650000px;}
._1a_c00063{width:26.730000px;}
._17_c00063{width:27.990009px;}
.fc1_c00063{color:transparent;}
.fc0_c00063{color:rgb(35,31,32);}
.fs1_c00063{font-size:51.000000px;}
.fs0_c00063{font-size:60.000000px;}
.y0_c00063{bottom:0.000000px;}
.y2a_c00063{bottom:64.425022px;}
.y29_c00063{bottom:110.175022px;}
.y28_c00063{bottom:125.325022px;}
.y27_c00063{bottom:140.775022px;}
.y26_c00063{bottom:155.925022px;}
.y25_c00063{bottom:171.375022px;}
.y24_c00063{bottom:186.825022px;}
.y23_c00063{bottom:201.975022px;}
.y22_c00063{bottom:217.125022px;}
.y21_c00063{bottom:232.575022px;}
.y20_c00063{bottom:247.725022px;}
.y1f_c00063{bottom:263.175022px;}
.y1e_c00063{bottom:278.325022px;}
.y1d_c00063{bottom:293.775022px;}
.y1c_c00063{bottom:308.925022px;}
.y1b_c00063{bottom:324.375022px;}
.y1a_c00063{bottom:339.825022px;}
.y18_c00063{bottom:397.800022px;}
.y17_c00063{bottom:417.600022px;}
.y16_c00063{bottom:436.725022px;}
.y15_c00063{bottom:456.525022px;}
.y14_c00063{bottom:475.950022px;}
.y13_c00063{bottom:495.375022px;}
.y12_c00063{bottom:514.425022px;}
.y11_c00063{bottom:533.925022px;}
.y10_c00063{bottom:553.725022px;}
.yf_c00063{bottom:573.150022px;}
.ye_c00063{bottom:592.575022px;}
.yd_c00063{bottom:612.000022px;}
.yc_c00063{bottom:631.125022px;}
.yb_c00063{bottom:650.550022px;}
.ya_c00063{bottom:670.350022px;}
.y9_c00063{bottom:689.400022px;}
.y8_c00063{bottom:709.200022px;}
.y7_c00063{bottom:728.325022px;}
.y6_c00063{bottom:747.750022px;}
.y5_c00063{bottom:767.175022px;}
.y4_c00063{bottom:786.225022px;}
.y3_c00063{bottom:806.025022px;}
.y2_c00063{bottom:825.525022px;}
.y1_c00063{bottom:844.575022px;}
.y19_c00063{bottom:886.725022px;}
.h3_c00063{height:50.028809px;}
.h4_c00063{height:50.053711px;}
.h2_c00063{height:58.886719px;}
.h1_c00063{height:957.750000px;}
.h0_c00063{height:957.975000px;}
.w0_c00063{width:641.850030px;}
.w1_c00063{width:642.000000px;}
.x0_c00063{left:0.000000px;}
.x2_c00063{left:80.250000px;}
.x1_c00063{left:81.375000px;}
.x7_c00063{left:86.400000px;}
.x4_c00063{left:96.150000px;}
.x3_c00063{left:97.200000px;}
.x6_c00063{left:113.775000px;}
.x5_c00063{left:162.750000px;}
.x8_c00063{left:538.575000px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls0_c00063{letter-spacing:0.000000pt;}
.ws0_c00063{word-spacing:-13.333333pt;}
.ws1_c00063{word-spacing:-11.333333pt;}
.ws2_c00063{word-spacing:0.000000pt;}
._f_c00063{margin-left:-10.666667pt;}
._11_c00063{margin-left:-9.386667pt;}
._4_c00063{margin-left:-7.733333pt;}
._3_c00063{margin-left:-6.720000pt;}
._16_c00063{margin-left:-4.896019pt;}
._14_c00063{margin-left:-3.296000pt;}
._e_c00063{margin-left:-2.293333pt;}
._6_c00063{margin-left:-1.173333pt;}
._0_c00063{width:1.333333pt;}
._1_c00063{width:2.293333pt;}
._8_c00063{width:3.200000pt;}
._a_c00063{width:4.213333pt;}
._2_c00063{width:5.440000pt;}
._5_c00063{width:6.613333pt;}
._9_c00063{width:8.373333pt;}
._c_c00063{width:10.026667pt;}
._d_c00063{width:11.093333pt;}
._b_c00063{width:12.000000pt;}
._7_c00063{width:14.346667pt;}
._10_c00063{width:16.106667pt;}
._13_c00063{width:17.706667pt;}
._18_c00063{width:18.762635pt;}
._12_c00063{width:19.786667pt;}
._19_c00063{width:21.050699pt;}
._15_c00063{width:22.800000pt;}
._1a_c00063{width:23.760000pt;}
._17_c00063{width:24.880008pt;}
.fs1_c00063{font-size:45.333333pt;}
.fs0_c00063{font-size:53.333333pt;}
.y0_c00063{bottom:0.000000pt;}
.y2a_c00063{bottom:57.266686pt;}
.y29_c00063{bottom:97.933353pt;}
.y28_c00063{bottom:111.400020pt;}
.y27_c00063{bottom:125.133353pt;}
.y26_c00063{bottom:138.600020pt;}
.y25_c00063{bottom:152.333353pt;}
.y24_c00063{bottom:166.066686pt;}
.y23_c00063{bottom:179.533353pt;}
.y22_c00063{bottom:193.000020pt;}
.y21_c00063{bottom:206.733353pt;}
.y20_c00063{bottom:220.200020pt;}
.y1f_c00063{bottom:233.933353pt;}
.y1e_c00063{bottom:247.400020pt;}
.y1d_c00063{bottom:261.133353pt;}
.y1c_c00063{bottom:274.600020pt;}
.y1b_c00063{bottom:288.333353pt;}
.y1a_c00063{bottom:302.066686pt;}
.y18_c00063{bottom:353.600020pt;}
.y17_c00063{bottom:371.200020pt;}
.y16_c00063{bottom:388.200020pt;}
.y15_c00063{bottom:405.800020pt;}
.y14_c00063{bottom:423.066686pt;}
.y13_c00063{bottom:440.333353pt;}
.y12_c00063{bottom:457.266686pt;}
.y11_c00063{bottom:474.600020pt;}
.y10_c00063{bottom:492.200020pt;}
.yf_c00063{bottom:509.466686pt;}
.ye_c00063{bottom:526.733353pt;}
.yd_c00063{bottom:544.000020pt;}
.yc_c00063{bottom:561.000020pt;}
.yb_c00063{bottom:578.266686pt;}
.ya_c00063{bottom:595.866686pt;}
.y9_c00063{bottom:612.800020pt;}
.y8_c00063{bottom:630.400020pt;}
.y7_c00063{bottom:647.400020pt;}
.y6_c00063{bottom:664.666686pt;}
.y5_c00063{bottom:681.933353pt;}
.y4_c00063{bottom:698.866686pt;}
.y3_c00063{bottom:716.466686pt;}
.y2_c00063{bottom:733.800020pt;}
.y1_c00063{bottom:750.733353pt;}
.y19_c00063{bottom:788.200020pt;}
.h3_c00063{height:44.470052pt;}
.h4_c00063{height:44.492188pt;}
.h2_c00063{height:52.343750pt;}
.h1_c00063{height:851.333333pt;}
.h0_c00063{height:851.533333pt;}
.w0_c00063{width:570.533360pt;}
.w1_c00063{width:570.666667pt;}
.x0_c00063{left:0.000000pt;}
.x2_c00063{left:71.333333pt;}
.x1_c00063{left:72.333333pt;}
.x7_c00063{left:76.800000pt;}
.x4_c00063{left:85.466667pt;}
.x3_c00063{left:86.400000pt;}
.x6_c00063{left:101.133333pt;}
.x5_c00063{left:144.666667pt;}
.x8_c00063{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4090fedcbe680e476b5473d7.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00064;src:url('chunks/assets/font_1006525f352136edf332fd9c.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00064{letter-spacing:0.000000px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00064{word-spacing:-15.000000px;}
.ws1_c00064{word-spacing:-12.750000px;}
.ws2_c00064{word-spacing:0.000000px;}
._14_c00064{margin-left:-13.200000px;}
._10_c00064{margin-left:-11.495550px;}
._7_c00064{margin-left:-9.934896px;}
._b_c00064{margin-left:-8.424732px;}
._16_c00064{margin-left:-6.102429px;}
._13_c00064{margin-left:-4.811517px;}
._9_c00064{margin-left:-2.940000px;}
._0_c00064{margin-left:-1.760979px;}
._2_c00064{width:1.115931px;}
._1_c00064{width:2.699991px;}
._e_c00064{width:4.332207px;}
._a_c00064{width:5.952144px;}
._d_c00064{width:7.056276px;}
._5_c00064{width:8.424069px;}
._4_c00064{width:9.528483px;}
._f_c00064{width:10.546566px;}
._3_c00064{width:11.784069px;}
._6_c00064{width:12.948147px;}
._17_c00064{width:14.903427px;}
._8_c00064{width:16.726413px;}
._11_c00064{width:18.108147px;}
._c_c00064{width:19.164459px;}
._12_c00064{width:21.934914px;}
._15_c00064{width:23.231517px;}
._18_c00064{width:25.271928px;}
._19_c00064{width:26.390979px;}
.fc1_c00064{color:transparent;}
.fc0_c00064{color:rgb(35,31,32);}
.fs0_c00064{font-size:51.000000px;}
.fs1_c00064{font-size:60.000000px;}
.y0_c00064{bottom:0.000000px;}
.y2c_c00064{bottom:64.800022px;}
.y2b_c00064{bottom:110.550022px;}
.y2a_c00064{bottom:125.325022px;}
.y29_c00064{bottom:141.150022px;}
.y28_c00064{bottom:156.225022px;}
.y27_c00064{bottom:171.375022px;}
.y26_c00064{bottom:186.525022px;}
.y25_c00064{bottom:202.350022px;}
.y24_c00064{bottom:217.125022px;}
.y23_c00064{bottom:232.575022px;}
.y22_c00064{bottom:247.725022px;}
.y21_c00064{bottom:263.175022px;}
.y20_c00064{bottom:278.325022px;}
.y1f_c00064{bottom:293.775022px;}
.y1e_c00064{bottom:309.225022px;}
.y1d_c00064{bottom:324.375022px;}
.y1c_c00064{bottom:339.525022px;}
.y1b_c00064{bottom:355.350022px;}
.y1a_c00064{bottom:370.125022px;}
.y19_c00064{bottom:385.950022px;}
.y18_c00064{bottom:400.725022px;}
.y17_c00064{bottom:416.175022px;}
.y16_c00064{bottom:456.525022px;}
.y15_c00064{bottom:475.575022px;}
.y14_c00064{bottom:495.375022px;}
.y13_c00064{bottom:514.800022px;}
.y12_c00064{bottom:534.300022px;}
.y11_c00064{bottom:553.725022px;}
.y10_c00064{bottom:573.150022px;}
.yf_c00064{bottom:592.575022px;}
.ye_c00064{bottom:611.925022px;}
.yd_c00064{bottom:631.425022px;}
.yc_c00064{bottom:650.925022px;}
.yb_c00064{bottom:670.350022px;}
.ya_c00064{bottom:689.775022px;}
.y9_c00064{bottom:708.825022px;}
.y8_c00064{bottom:728.625022px;}
.y7_c00064{bottom:747.750022px;}
.y6_c00064{bottom:767.550022px;}
.y5_c00064{bottom:786.225022px;}
.y4_c00064{bottom:806.025022px;}
.y3_c00064{bottom:825.525022px;}
.y2_c00064{bottom:844.575022px;}
.y1_c00064{bottom:886.725022px;}
.h2_c00064{height:50.028809px;}
.h5_c00064{height:50.053711px;}
.h3_c00064{height:58.886719px;}
.h4_c00064{height:59.186719px;}
.h1_c00064{height:957.750000px;}
.h0_c00064{height:957.975000px;}
.w1_c00064{width:643.500000px;}
.w0_c00064{width:643.650000px;}
.x0_c00064{left:0.000000px;}
.x1_c00064{left:90.750000px;}
.x2_c00064{left:96.450000px;}
.x3_c00064{left:123.825000px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls0_c00064{letter-spacing:0.000000pt;}
.ws0_c00064{word-spacing:-13.333333pt;}
.ws1_c00064{word-spacing:-11.333333pt;}
.ws2_c00064{word-spacing:0.000000pt;}
._14_c00064{margin-left:-11.733333pt;}
._10_c00064{margin-left:-10.218267pt;}
._7_c00064{margin-left:-8.831019pt;}
._b_c00064{margin-left:-7.488651pt;}
._16_c00064{margin-left:-5.424381pt;}
._13_c00064{margin-left:-4.276904pt;}
._9_c00064{margin-left:-2.613333pt;}
._0_c00064{margin-left:-1.565315pt;}
._2_c00064{width:0.991939pt;}
._1_c00064{width:2.399992pt;}
._e_c00064{width:3.850851pt;}
._a_c00064{width:5.290795pt;}
._d_c00064{width:6.272245pt;}
._5_c00064{width:7.488061pt;}
._4_c00064{width:8.469763pt;}
._f_c00064{width:9.374725pt;}
._3_c00064{width:10.474728pt;}
._6_c00064{width:11.509464pt;}
._17_c00064{width:13.247491pt;}
._8_c00064{width:14.867923pt;}
._11_c00064{width:16.096131pt;}
._c_c00064{width:17.035075pt;}
._12_c00064{width:19.497701pt;}
._15_c00064{width:20.650237pt;}
._18_c00064{width:22.463936pt;}
._19_c00064{width:23.458648pt;}
.fs0_c00064{font-size:45.333333pt;}
.fs1_c00064{font-size:53.333333pt;}
.y0_c00064{bottom:0.000000pt;}
.y2c_c00064{bottom:57.600020pt;}
.y2b_c00064{bottom:98.266686pt;}
.y2a_c00064{bottom:111.400020pt;}
.y29_c00064{bottom:125.466686pt;}
.y28_c00064{bottom:138.866686pt;}
.y27_c00064{bottom:152.333353pt;}
.y26_c00064{bottom:165.800020pt;}
.y25_c00064{bottom:179.866686pt;}
.y24_c00064{bottom:193.000020pt;}
.y23_c00064{bottom:206.733353pt;}
.y22_c00064{bottom:220.200020pt;}
.y21_c00064{bottom:233.933353pt;}
.y20_c00064{bottom:247.400020pt;}
.y1f_c00064{bottom:261.133353pt;}
.y1e_c00064{bottom:274.866686pt;}
.y1d_c00064{bottom:288.333353pt;}
.y1c_c00064{bottom:301.800020pt;}
.y1b_c00064{bottom:315.866686pt;}
.y1a_c00064{bottom:329.000020pt;}
.y19_c00064{bottom:343.066686pt;}
.y18_c00064{bottom:356.200020pt;}
.y17_c00064{bottom:369.933353pt;}
.y16_c00064{bottom:405.800020pt;}
.y15_c00064{bottom:422.733353pt;}
.y14_c00064{bottom:440.333353pt;}
.y13_c00064{bottom:457.600020pt;}
.y12_c00064{bottom:474.933353pt;}
.y11_c00064{bottom:492.200020pt;}
.y10_c00064{bottom:509.466686pt;}
.yf_c00064{bottom:526.733353pt;}
.ye_c00064{bottom:543.933353pt;}
.yd_c00064{bottom:561.266686pt;}
.yc_c00064{bottom:578.600020pt;}
.yb_c00064{bottom:595.866686pt;}
.ya_c00064{bottom:613.133353pt;}
.y9_c00064{bottom:630.066686pt;}
.y8_c00064{bottom:647.666686pt;}
.y7_c00064{bottom:664.666686pt;}
.y6_c00064{bottom:682.266686pt;}
.y5_c00064{bottom:698.866686pt;}
.y4_c00064{bottom:716.466686pt;}
.y3_c00064{bottom:733.800020pt;}
.y2_c00064{bottom:750.733353pt;}
.y1_c00064{bottom:788.200020pt;}
.h2_c00064{height:44.470052pt;}
.h5_c00064{height:44.492188pt;}
.h3_c00064{height:52.343750pt;}
.h4_c00064{height:52.610417pt;}
.h1_c00064{height:851.333333pt;}
.h0_c00064{height:851.533333pt;}
.w1_c00064{width:572.000000pt;}
.w0_c00064{width:572.133333pt;}
.x0_c00064{left:0.000000pt;}
.x1_c00064{left:80.666667pt;}
.x2_c00064{left:85.733333pt;}
.x3_c00064{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e7dcd2b24155b003622765c2.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00065;src:url('chunks/assets/font_3824d3847117fe790def126e.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00065{letter-spacing:0.000000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00065{word-spacing:-15.000000px;}
.ws1_c00065{word-spacing:-12.750000px;}
.ws2_c00065{word-spacing:0.000000px;}
._c_c00065{margin-left:-13.440000px;}
._11_c00065{margin-left:-12.300000px;}
._b_c00065{margin-left:-11.220000px;}
._12_c00065{margin-left:-9.840000px;}
._16_c00065{margin-left:-7.673943px;}
._e_c00065{margin-left:-5.940000px;}
._d_c00065{margin-left:-3.900000px;}
._0_c00065{margin-left:-1.920000px;}
._2_c00065{width:1.860000px;}
._8_c00065{width:3.360000px;}
._a_c00065{width:4.680000px;}
._f_c00065{width:5.820000px;}
._5_c00065{width:6.960000px;}
._7_c00065{width:8.760000px;}
._6_c00065{width:10.440000px;}
._9_c00065{width:11.700000px;}
._3_c00065{width:13.620000px;}
._14_c00065{width:14.840997px;}
._4_c00065{width:16.860000px;}
._10_c00065{width:17.880000px;}
._1_c00065{width:19.800000px;}
._17_c00065{width:21.089985px;}
._13_c00065{width:24.089958px;}
._15_c00065{width:25.589970px;}
.fc1_c00065{color:transparent;}
.fc0_c00065{color:rgb(35,31,32);}
.fs1_c00065{font-size:51.000000px;}
.fs0_c00065{font-size:60.000000px;}
.y0_c00065{bottom:0.000000px;}
.y2b_c00065{bottom:64.425022px;}
.y2a_c00065{bottom:110.175022px;}
.y29_c00065{bottom:125.325022px;}
.y28_c00065{bottom:140.775022px;}
.y27_c00065{bottom:156.225022px;}
.y26_c00065{bottom:171.375022px;}
.y25_c00065{bottom:186.525022px;}
.y24_c00065{bottom:201.975022px;}
.y23_c00065{bottom:217.425022px;}
.y22_c00065{bottom:232.575022px;}
.y21_c00065{bottom:248.025022px;}
.y20_c00065{bottom:263.175022px;}
.y1f_c00065{bottom:278.325022px;}
.y1e_c00065{bottom:294.150022px;}
.y1d_c00065{bottom:308.925022px;}
.y1c_c00065{bottom:324.375022px;}
.y1b_c00065{bottom:339.525022px;}
.y1a_c00065{bottom:355.350022px;}
.y19_c00065{bottom:370.125022px;}
.y18_c00065{bottom:385.950022px;}
.y16_c00065{bottom:436.725022px;}
.y15_c00065{bottom:456.525022px;}
.y14_c00065{bottom:475.950022px;}
.y13_c00065{bottom:495.375022px;}
.y12_c00065{bottom:514.800022px;}
.y11_c00065{bottom:534.225022px;}
.y10_c00065{bottom:553.350022px;}
.yf_c00065{bottom:572.775022px;}
.ye_c00065{bottom:592.200022px;}
.yd_c00065{bottom:612.000022px;}
.yc_c00065{bottom:631.125022px;}
.yb_c00065{bottom:650.550022px;}
.ya_c00065{bottom:669.975022px;}
.y9_c00065{bottom:689.775022px;}
.y8_c00065{bottom:708.900022px;}
.y7_c00065{bottom:728.325022px;}
.y6_c00065{bottom:747.750022px;}
.y5_c00065{bottom:767.175022px;}
.y4_c00065{bottom:786.600022px;}
.y3_c00065{bottom:805.725022px;}
.y2_c00065{bottom:825.525022px;}
.y1_c00065{bottom:844.575022px;}
.y17_c00065{bottom:886.725022px;}
.h3_c00065{height:50.028809px;}
.h4_c00065{height:50.053711px;}
.h2_c00065{height:58.886719px;}
.h1_c00065{height:957.750000px;}
.h0_c00065{height:957.975000px;}
.w0_c00065{width:641.850030px;}
.w1_c00065{width:642.000000px;}
.x0_c00065{left:0.000000px;}
.x3_c00065{left:80.250000px;}
.x2_c00065{left:81.375000px;}
.x5_c00065{left:86.400000px;}
.x1_c00065{left:96.825000px;}
.x6_c00065{left:113.400000px;}
.x4_c00065{left:162.750000px;}
.x7_c00065{left:538.575000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls0_c00065{letter-spacing:0.000000pt;}
.ws0_c00065{word-spacing:-13.333333pt;}
.ws1_c00065{word-spacing:-11.333333pt;}
.ws2_c00065{word-spacing:0.000000pt;}
._c_c00065{margin-left:-11.946667pt;}
._11_c00065{margin-left:-10.933333pt;}
._b_c00065{margin-left:-9.973333pt;}
._12_c00065{margin-left:-8.746667pt;}
._16_c00065{margin-left:-6.821283pt;}
._e_c00065{margin-left:-5.280000pt;}
._d_c00065{margin-left:-3.466667pt;}
._0_c00065{margin-left:-1.706667pt;}
._2_c00065{width:1.653333pt;}
._8_c00065{width:2.986667pt;}
._a_c00065{width:4.160000pt;}
._f_c00065{width:5.173333pt;}
._5_c00065{width:6.186667pt;}
._7_c00065{width:7.786667pt;}
._6_c00065{width:9.280000pt;}
._9_c00065{width:10.400000pt;}
._3_c00065{width:12.106667pt;}
._14_c00065{width:13.191997pt;}
._4_c00065{width:14.986667pt;}
._10_c00065{width:15.893333pt;}
._1_c00065{width:17.600000pt;}
._17_c00065{width:18.746653pt;}
._13_c00065{width:21.413296pt;}
._15_c00065{width:22.746640pt;}
.fs1_c00065{font-size:45.333333pt;}
.fs0_c00065{font-size:53.333333pt;}
.y0_c00065{bottom:0.000000pt;}
.y2b_c00065{bottom:57.266686pt;}
.y2a_c00065{bottom:97.933353pt;}
.y29_c00065{bottom:111.400020pt;}
.y28_c00065{bottom:125.133353pt;}
.y27_c00065{bottom:138.866686pt;}
.y26_c00065{bottom:152.333353pt;}
.y25_c00065{bottom:165.800020pt;}
.y24_c00065{bottom:179.533353pt;}
.y23_c00065{bottom:193.266686pt;}
.y22_c00065{bottom:206.733353pt;}
.y21_c00065{bottom:220.466686pt;}
.y20_c00065{bottom:233.933353pt;}
.y1f_c00065{bottom:247.400020pt;}
.y1e_c00065{bottom:261.466686pt;}
.y1d_c00065{bottom:274.600020pt;}
.y1c_c00065{bottom:288.333353pt;}
.y1b_c00065{bottom:301.800020pt;}
.y1a_c00065{bottom:315.866686pt;}
.y19_c00065{bottom:329.000020pt;}
.y18_c00065{bottom:343.066686pt;}
.y16_c00065{bottom:388.200020pt;}
.y15_c00065{bottom:405.800020pt;}
.y14_c00065{bottom:423.066686pt;}
.y13_c00065{bottom:440.333353pt;}
.y12_c00065{bottom:457.600020pt;}
.y11_c00065{bottom:474.866686pt;}
.y10_c00065{bottom:491.866686pt;}
.yf_c00065{bottom:509.133353pt;}
.ye_c00065{bottom:526.400020pt;}
.yd_c00065{bottom:544.000020pt;}
.yc_c00065{bottom:561.000020pt;}
.yb_c00065{bottom:578.266686pt;}
.ya_c00065{bottom:595.533353pt;}
.y9_c00065{bottom:613.133353pt;}
.y8_c00065{bottom:630.133353pt;}
.y7_c00065{bottom:647.400020pt;}
.y6_c00065{bottom:664.666686pt;}
.y5_c00065{bottom:681.933353pt;}
.y4_c00065{bottom:699.200020pt;}
.y3_c00065{bottom:716.200020pt;}
.y2_c00065{bottom:733.800020pt;}
.y1_c00065{bottom:750.733353pt;}
.y17_c00065{bottom:788.200020pt;}
.h3_c00065{height:44.470052pt;}
.h4_c00065{height:44.492188pt;}
.h2_c00065{height:52.343750pt;}
.h1_c00065{height:851.333333pt;}
.h0_c00065{height:851.533333pt;}
.w0_c00065{width:570.533360pt;}
.w1_c00065{width:570.666667pt;}
.x0_c00065{left:0.000000pt;}
.x3_c00065{left:71.333333pt;}
.x2_c00065{left:72.333333pt;}
.x5_c00065{left:76.800000pt;}
.x1_c00065{left:86.066667pt;}
.x6_c00065{left:100.800000pt;}
.x4_c00065{left:144.666667pt;}
.x7_c00065{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6fda45b5b56cd270ffd23447.woff2')format("woff");}.ff1_c00066{font-family:ff1_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:ff2_c00066;src:url('chunks/assets/font_beff8b2a6aa06b12b43aab9f.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls0_c00066{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00066{word-spacing:-12.750000px;}
.ws2_c00066{word-spacing:0.000000px;}
._13_c00066{margin-left:-12.300000px;}
._12_c00066{margin-left:-11.003025px;}
._14_c00066{margin-left:-9.584121px;}
._18_c00066{margin-left:-7.232838px;}
._15_c00066{margin-left:-5.648964px;}
._d_c00066{margin-left:-3.726363px;}
._0_c00066{margin-left:-1.760979px;}
._2_c00066{width:1.115931px;}
._1_c00066{width:2.699991px;}
._4_c00066{width:3.852951px;}
._3_c00066{width:5.316285px;}
._9_c00066{width:6.711393px;}
._b_c00066{width:7.968129px;}
._17_c00066{width:8.994153px;}
._a_c00066{width:10.022937px;}
._f_c00066{width:11.210181px;}
._5_c00066{width:12.948147px;}
._8_c00066{width:13.992198px;}
._7_c00066{width:16.284078px;}
._e_c00066{width:17.720979px;}
._6_c00066{width:18.966363px;}
._c_c00066{width:20.028138px;}
._11_c00066{width:21.180345px;}
._10_c00066{width:23.100000px;}
._19_c00066{width:25.271928px;}
._16_c00066{width:27.498279px;}
.fc1_c00066{color:transparent;}
.fc0_c00066{color:rgb(35,31,32);}
.fs0_c00066{font-size:51.000000px;}
.fs1_c00066{font-size:60.000000px;}
.y0_c00066{bottom:0.000000px;}
.y28_c00066{bottom:64.425022px;}
.y27_c00066{bottom:110.175022px;}
.y26_c00066{bottom:125.325022px;}
.y25_c00066{bottom:140.775022px;}
.y24_c00066{bottom:155.925022px;}
.y23_c00066{bottom:171.375022px;}
.y22_c00066{bottom:186.525022px;}
.y21_c00066{bottom:202.350022px;}
.y20_c00066{bottom:217.125022px;}
.y1f_c00066{bottom:232.575022px;}
.y1e_c00066{bottom:247.725022px;}
.y1d_c00066{bottom:263.175022px;}
.y1c_c00066{bottom:278.325022px;}
.y1b_c00066{bottom:294.150022px;}
.y1a_c00066{bottom:308.925022px;}
.y19_c00066{bottom:324.375022px;}
.y18_c00066{bottom:339.525022px;}
.y17_c00066{bottom:379.800022px;}
.y16_c00066{bottom:399.225022px;}
.y15_c00066{bottom:418.350022px;}
.y14_c00066{bottom:437.775022px;}
.y13_c00066{bottom:457.200022px;}
.y12_c00066{bottom:477.000022px;}
.y11_c00066{bottom:515.550022px;}
.y10_c00066{bottom:573.150022px;}
.yf_c00066{bottom:592.200022px;}
.ye_c00066{bottom:611.625022px;}
.yd_c00066{bottom:631.425022px;}
.yc_c00066{bottom:650.925022px;}
.yb_c00066{bottom:670.350022px;}
.ya_c00066{bottom:689.400022px;}
.y9_c00066{bottom:709.200022px;}
.y8_c00066{bottom:728.325022px;}
.y7_c00066{bottom:747.750022px;}
.y6_c00066{bottom:767.475022px;}
.y5_c00066{bottom:786.600022px;}
.y4_c00066{bottom:805.725022px;}
.y3_c00066{bottom:825.150022px;}
.y2_c00066{bottom:844.950022px;}
.y1_c00066{bottom:886.725022px;}
.h2_c00066{height:50.028809px;}
.h4_c00066{height:50.053711px;}
.h3_c00066{height:58.886719px;}
.h1_c00066{height:957.750000px;}
.h0_c00066{height:957.975000px;}
.w1_c00066{width:643.500000px;}
.w0_c00066{width:643.650000px;}
.x0_c00066{left:0.000000px;}
.x1_c00066{left:90.750000px;}
.x2_c00066{left:91.800000px;}
.x4_c00066{left:96.450000px;}
.x3_c00066{left:124.200000px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls0_c00066{letter-spacing:0.000000pt;}
.ws0_c00066{word-spacing:-13.333333pt;}
.ws1_c00066{word-spacing:-11.333333pt;}
.ws2_c00066{word-spacing:0.000000pt;}
._13_c00066{margin-left:-10.933333pt;}
._12_c00066{margin-left:-9.780467pt;}
._14_c00066{margin-left:-8.519219pt;}
._18_c00066{margin-left:-6.429189pt;}
._15_c00066{margin-left:-5.021301pt;}
._d_c00066{margin-left:-3.312323pt;}
._0_c00066{margin-left:-1.565315pt;}
._2_c00066{width:0.991939pt;}
._1_c00066{width:2.399992pt;}
._4_c00066{width:3.424845pt;}
._3_c00066{width:4.725587pt;}
._9_c00066{width:5.965683pt;}
._b_c00066{width:7.082781pt;}
._17_c00066{width:7.994803pt;}
._a_c00066{width:8.909277pt;}
._f_c00066{width:9.964605pt;}
._5_c00066{width:11.509464pt;}
._8_c00066{width:12.437509pt;}
._7_c00066{width:14.474736pt;}
._e_c00066{width:15.751981pt;}
._6_c00066{width:16.858989pt;}
._c_c00066{width:17.802789pt;}
._11_c00066{width:18.826973pt;}
._10_c00066{width:20.533333pt;}
._19_c00066{width:22.463936pt;}
._16_c00066{width:24.442915pt;}
.fs0_c00066{font-size:45.333333pt;}
.fs1_c00066{font-size:53.333333pt;}
.y0_c00066{bottom:0.000000pt;}
.y28_c00066{bottom:57.266686pt;}
.y27_c00066{bottom:97.933353pt;}
.y26_c00066{bottom:111.400020pt;}
.y25_c00066{bottom:125.133353pt;}
.y24_c00066{bottom:138.600020pt;}
.y23_c00066{bottom:152.333353pt;}
.y22_c00066{bottom:165.800020pt;}
.y21_c00066{bottom:179.866686pt;}
.y20_c00066{bottom:193.000020pt;}
.y1f_c00066{bottom:206.733353pt;}
.y1e_c00066{bottom:220.200020pt;}
.y1d_c00066{bottom:233.933353pt;}
.y1c_c00066{bottom:247.400020pt;}
.y1b_c00066{bottom:261.466686pt;}
.y1a_c00066{bottom:274.600020pt;}
.y19_c00066{bottom:288.333353pt;}
.y18_c00066{bottom:301.800020pt;}
.y17_c00066{bottom:337.600020pt;}
.y16_c00066{bottom:354.866686pt;}
.y15_c00066{bottom:371.866686pt;}
.y14_c00066{bottom:389.133353pt;}
.y13_c00066{bottom:406.400020pt;}
.y12_c00066{bottom:424.000020pt;}
.y11_c00066{bottom:458.266686pt;}
.y10_c00066{bottom:509.466686pt;}
.yf_c00066{bottom:526.400020pt;}
.ye_c00066{bottom:543.666686pt;}
.yd_c00066{bottom:561.266686pt;}
.yc_c00066{bottom:578.600020pt;}
.yb_c00066{bottom:595.866686pt;}
.ya_c00066{bottom:612.800020pt;}
.y9_c00066{bottom:630.400020pt;}
.y8_c00066{bottom:647.400020pt;}
.y7_c00066{bottom:664.666686pt;}
.y6_c00066{bottom:682.200020pt;}
.y5_c00066{bottom:699.200020pt;}
.y4_c00066{bottom:716.200020pt;}
.y3_c00066{bottom:733.466686pt;}
.y2_c00066{bottom:751.066686pt;}
.y1_c00066{bottom:788.200020pt;}
.h2_c00066{height:44.470052pt;}
.h4_c00066{height:44.492188pt;}
.h3_c00066{height:52.343750pt;}
.h1_c00066{height:851.333333pt;}
.h0_c00066{height:851.533333pt;}
.w1_c00066{width:572.000000pt;}
.w0_c00066{width:572.133333pt;}
.x0_c00066{left:0.000000pt;}
.x1_c00066{left:80.666667pt;}
.x2_c00066{left:81.600000pt;}
.x4_c00066{left:85.733333pt;}
.x3_c00066{left:110.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_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_e426a6873442441eb6ac764f.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00067;src:url('chunks/assets/font_cf58dbd648eac303eb197017.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00067{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00067{word-spacing:-12.750000px;}
.ws2_c00067{word-spacing:0.000000px;}
._c_c00067{margin-left:-12.300000px;}
._b_c00067{margin-left:-10.500000px;}
._f_c00067{margin-left:-8.760000px;}
._17_c00067{margin-left:-6.707955px;}
._12_c00067{margin-left:-5.340000px;}
._9_c00067{margin-left:-4.200000px;}
._4_c00067{margin-left:-2.640000px;}
._2_c00067{margin-left:-1.440000px;}
._0_c00067{width:1.620000px;}
._6_c00067{width:2.760000px;}
._a_c00067{width:3.960000px;}
._5_c00067{width:5.460000px;}
._1_c00067{width:6.660000px;}
._d_c00067{width:7.740000px;}
._3_c00067{width:9.060000px;}
._7_c00067{width:10.560000px;}
._8_c00067{width:11.820000px;}
._14_c00067{width:13.140000px;}
._10_c00067{width:16.680000px;}
._e_c00067{width:17.760000px;}
._11_c00067{width:18.900000px;}
._13_c00067{width:19.980000px;}
._19_c00067{width:23.069946px;}
._18_c00067{width:24.569958px;}
._16_c00067{width:26.069970px;}
._15_c00067{width:27.270000px;}
.fc1_c00067{color:transparent;}
.fc0_c00067{color:rgb(35,31,32);}
.fs1_c00067{font-size:51.000000px;}
.fs0_c00067{font-size:60.000000px;}
.y0_c00067{bottom:0.000000px;}
.y28_c00067{bottom:64.425022px;}
.y27_c00067{bottom:110.175022px;}
.y26_c00067{bottom:125.625022px;}
.y25_c00067{bottom:141.150022px;}
.y24_c00067{bottom:156.225022px;}
.y23_c00067{bottom:171.750022px;}
.y22_c00067{bottom:186.525022px;}
.y21_c00067{bottom:202.350022px;}
.y20_c00067{bottom:217.125022px;}
.y1f_c00067{bottom:232.575022px;}
.y1e_c00067{bottom:248.025022px;}
.y1d_c00067{bottom:263.550022px;}
.y1c_c00067{bottom:278.325022px;}
.y1b_c00067{bottom:293.775022px;}
.y1a_c00067{bottom:309.225022px;}
.y19_c00067{bottom:324.375022px;}
.y18_c00067{bottom:339.525022px;}
.y17_c00067{bottom:354.975022px;}
.y16_c00067{bottom:370.125022px;}
.y15_c00067{bottom:416.925022px;}
.y14_c00067{bottom:435.975022px;}
.y13_c00067{bottom:455.400022px;}
.y12_c00067{bottom:475.200022px;}
.y11_c00067{bottom:494.325022px;}
.y10_c00067{bottom:514.125022px;}
.yf_c00067{bottom:555.150022px;}
.yd_c00067{bottom:611.625022px;}
.yc_c00067{bottom:631.425022px;}
.yb_c00067{bottom:650.925022px;}
.ya_c00067{bottom:669.975022px;}
.y9_c00067{bottom:689.400022px;}
.y8_c00067{bottom:709.200022px;}
.y7_c00067{bottom:728.625022px;}
.y6_c00067{bottom:748.125022px;}
.y5_c00067{bottom:767.550022px;}
.y4_c00067{bottom:786.600022px;}
.y3_c00067{bottom:805.725022px;}
.y2_c00067{bottom:825.150022px;}
.y1_c00067{bottom:844.950022px;}
.ye_c00067{bottom:886.725022px;}
.h3_c00067{height:50.028809px;}
.h4_c00067{height:50.053711px;}
.h2_c00067{height:58.886719px;}
.h1_c00067{height:957.750000px;}
.h0_c00067{height:957.975000px;}
.w0_c00067{width:641.850030px;}
.w1_c00067{width:642.000000px;}
.x0_c00067{left:0.000000px;}
.x2_c00067{left:80.250000px;}
.x1_c00067{left:81.375000px;}
.x4_c00067{left:86.400000px;}
.x5_c00067{left:114.150000px;}
.x3_c00067{left:162.750000px;}
.x6_c00067{left:538.575000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls0_c00067{letter-spacing:0.000000pt;}
.ws0_c00067{word-spacing:-13.333333pt;}
.ws1_c00067{word-spacing:-11.333333pt;}
.ws2_c00067{word-spacing:0.000000pt;}
._c_c00067{margin-left:-10.933333pt;}
._b_c00067{margin-left:-9.333333pt;}
._f_c00067{margin-left:-7.786667pt;}
._17_c00067{margin-left:-5.962627pt;}
._12_c00067{margin-left:-4.746667pt;}
._9_c00067{margin-left:-3.733333pt;}
._4_c00067{margin-left:-2.346667pt;}
._2_c00067{margin-left:-1.280000pt;}
._0_c00067{width:1.440000pt;}
._6_c00067{width:2.453333pt;}
._a_c00067{width:3.520000pt;}
._5_c00067{width:4.853333pt;}
._1_c00067{width:5.920000pt;}
._d_c00067{width:6.880000pt;}
._3_c00067{width:8.053333pt;}
._7_c00067{width:9.386667pt;}
._8_c00067{width:10.506667pt;}
._14_c00067{width:11.680000pt;}
._10_c00067{width:14.826667pt;}
._e_c00067{width:15.786667pt;}
._11_c00067{width:16.800000pt;}
._13_c00067{width:17.760000pt;}
._19_c00067{width:20.506619pt;}
._18_c00067{width:21.839963pt;}
._16_c00067{width:23.173307pt;}
._15_c00067{width:24.240000pt;}
.fs1_c00067{font-size:45.333333pt;}
.fs0_c00067{font-size:53.333333pt;}
.y0_c00067{bottom:0.000000pt;}
.y28_c00067{bottom:57.266686pt;}
.y27_c00067{bottom:97.933353pt;}
.y26_c00067{bottom:111.666686pt;}
.y25_c00067{bottom:125.466686pt;}
.y24_c00067{bottom:138.866686pt;}
.y23_c00067{bottom:152.666686pt;}
.y22_c00067{bottom:165.800020pt;}
.y21_c00067{bottom:179.866686pt;}
.y20_c00067{bottom:193.000020pt;}
.y1f_c00067{bottom:206.733353pt;}
.y1e_c00067{bottom:220.466686pt;}
.y1d_c00067{bottom:234.266686pt;}
.y1c_c00067{bottom:247.400020pt;}
.y1b_c00067{bottom:261.133353pt;}
.y1a_c00067{bottom:274.866686pt;}
.y19_c00067{bottom:288.333353pt;}
.y18_c00067{bottom:301.800020pt;}
.y17_c00067{bottom:315.533353pt;}
.y16_c00067{bottom:329.000020pt;}
.y15_c00067{bottom:370.600020pt;}
.y14_c00067{bottom:387.533353pt;}
.y13_c00067{bottom:404.800020pt;}
.y12_c00067{bottom:422.400020pt;}
.y11_c00067{bottom:439.400020pt;}
.y10_c00067{bottom:457.000020pt;}
.yf_c00067{bottom:493.466686pt;}
.yd_c00067{bottom:543.666686pt;}
.yc_c00067{bottom:561.266686pt;}
.yb_c00067{bottom:578.600020pt;}
.ya_c00067{bottom:595.533353pt;}
.y9_c00067{bottom:612.800020pt;}
.y8_c00067{bottom:630.400020pt;}
.y7_c00067{bottom:647.666686pt;}
.y6_c00067{bottom:665.000020pt;}
.y5_c00067{bottom:682.266686pt;}
.y4_c00067{bottom:699.200020pt;}
.y3_c00067{bottom:716.200020pt;}
.y2_c00067{bottom:733.466686pt;}
.y1_c00067{bottom:751.066686pt;}
.ye_c00067{bottom:788.200020pt;}
.h3_c00067{height:44.470052pt;}
.h4_c00067{height:44.492188pt;}
.h2_c00067{height:52.343750pt;}
.h1_c00067{height:851.333333pt;}
.h0_c00067{height:851.533333pt;}
.w0_c00067{width:570.533360pt;}
.w1_c00067{width:570.666667pt;}
.x0_c00067{left:0.000000pt;}
.x2_c00067{left:71.333333pt;}
.x1_c00067{left:72.333333pt;}
.x4_c00067{left:76.800000pt;}
.x5_c00067{left:101.466667pt;}
.x3_c00067{left:144.666667pt;}
.x6_c00067{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_db736e64b468caf6945df857.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00068;src:url('chunks/assets/font_f0b3bd1244076f6ef1ac6138.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00068{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00068{word-spacing:-12.750000px;}
.ws2_c00068{word-spacing:0.000000px;}
._7_c00068{margin-left:-13.463352px;}
._8_c00068{margin-left:-11.736648px;}
._d_c00068{margin-left:-10.680000px;}
._14_c00068{margin-left:-9.410238px;}
._11_c00068{margin-left:-6.638595px;}
._c_c00068{margin-left:-5.312877px;}
._16_c00068{margin-left:-4.077555px;}
._5_c00068{margin-left:-2.919021px;}
._0_c00068{margin-left:-1.760979px;}
._2_c00068{width:1.115931px;}
._1_c00068{width:2.699991px;}
._3_c00068{width:3.720363px;}
._12_c00068{width:4.874961px;}
._13_c00068{width:6.504423px;}
._f_c00068{width:8.004105px;}
._15_c00068{width:9.149100px;}
._10_c00068{width:10.208700px;}
._e_c00068{width:11.652207px;}
._19_c00068{width:12.700380px;}
._9_c00068{width:13.728483px;}
._1b_c00068{width:15.068721px;}
._a_c00068{width:16.512570px;}
._4_c00068{width:17.520000px;}
._6_c00068{width:19.500000px;}
._b_c00068{width:20.877282px;}
._18_c00068{width:22.907784px;}
._17_c00068{width:25.989408px;}
._1a_c00068{width:27.848979px;}
.fc1_c00068{color:transparent;}
.fc0_c00068{color:rgb(35,31,32);}
.fs0_c00068{font-size:51.000000px;}
.fs1_c00068{font-size:60.000000px;}
.y0_c00068{bottom:0.000000px;}
.y2c_c00068{bottom:64.425022px;}
.y2b_c00068{bottom:110.175022px;}
.y2a_c00068{bottom:125.325022px;}
.y29_c00068{bottom:140.775022px;}
.y28_c00068{bottom:155.925022px;}
.y27_c00068{bottom:171.750022px;}
.y26_c00068{bottom:186.525022px;}
.y25_c00068{bottom:201.975022px;}
.y24_c00068{bottom:217.125022px;}
.y23_c00068{bottom:232.575022px;}
.y22_c00068{bottom:247.725022px;}
.y21_c00068{bottom:263.175022px;}
.y20_c00068{bottom:278.325022px;}
.y1f_c00068{bottom:293.700022px;}
.y1e_c00068{bottom:309.225022px;}
.y1d_c00068{bottom:324.750022px;}
.y1c_c00068{bottom:339.525022px;}
.y1b_c00068{bottom:354.900022px;}
.y1a_c00068{bottom:370.425022px;}
.y19_c00068{bottom:385.950022px;}
.y18_c00068{bottom:401.025022px;}
.y17_c00068{bottom:416.175022px;}
.y16_c00068{bottom:431.325022px;}
.y15_c00068{bottom:475.575022px;}
.y14_c00068{bottom:495.375022px;}
.y13_c00068{bottom:514.425022px;}
.y12_c00068{bottom:534.300022px;}
.y11_c00068{bottom:553.725022px;}
.y10_c00068{bottom:573.150022px;}
.yf_c00068{bottom:592.200022px;}
.ye_c00068{bottom:611.625022px;}
.yd_c00068{bottom:631.125022px;}
.yc_c00068{bottom:650.925022px;}
.yb_c00068{bottom:670.350022px;}
.ya_c00068{bottom:689.775022px;}
.y9_c00068{bottom:708.825022px;}
.y8_c00068{bottom:728.700022px;}
.y7_c00068{bottom:748.125022px;}
.y6_c00068{bottom:767.550022px;}
.y5_c00068{bottom:786.225022px;}
.y4_c00068{bottom:805.725022px;}
.y3_c00068{bottom:825.150022px;}
.y2_c00068{bottom:844.950022px;}
.y1_c00068{bottom:886.725022px;}
.h2_c00068{height:50.028809px;}
.h4_c00068{height:50.053711px;}
.h5_c00068{height:50.353711px;}
.h3_c00068{height:58.886719px;}
.h1_c00068{height:957.750000px;}
.h0_c00068{height:957.975000px;}
.w1_c00068{width:643.500000px;}
.w0_c00068{width:643.650000px;}
.x0_c00068{left:0.000000px;}
.x1_c00068{left:90.750000px;}
.x3_c00068{left:96.450000px;}
.x2_c00068{left:107.250000px;}
.x4_c00068{left:124.200000px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls0_c00068{letter-spacing:0.000000pt;}
.ws0_c00068{word-spacing:-13.333333pt;}
.ws1_c00068{word-spacing:-11.333333pt;}
.ws2_c00068{word-spacing:0.000000pt;}
._7_c00068{margin-left:-11.967424pt;}
._8_c00068{margin-left:-10.432576pt;}
._d_c00068{margin-left:-9.493333pt;}
._14_c00068{margin-left:-8.364656pt;}
._11_c00068{margin-left:-5.900973pt;}
._c_c00068{margin-left:-4.722557pt;}
._16_c00068{margin-left:-3.624493pt;}
._5_c00068{margin-left:-2.594685pt;}
._0_c00068{margin-left:-1.565315pt;}
._2_c00068{width:0.991939pt;}
._1_c00068{width:2.399992pt;}
._3_c00068{width:3.306989pt;}
._12_c00068{width:4.333299pt;}
._13_c00068{width:5.781709pt;}
._f_c00068{width:7.114760pt;}
._15_c00068{width:8.132533pt;}
._10_c00068{width:9.074400pt;}
._e_c00068{width:10.357517pt;}
._19_c00068{width:11.289227pt;}
._9_c00068{width:12.203096pt;}
._1b_c00068{width:13.394419pt;}
._a_c00068{width:14.677840pt;}
._4_c00068{width:15.573333pt;}
._6_c00068{width:17.333333pt;}
._b_c00068{width:18.557584pt;}
._18_c00068{width:20.362475pt;}
._17_c00068{width:23.101696pt;}
._1a_c00068{width:24.754648pt;}
.fs0_c00068{font-size:45.333333pt;}
.fs1_c00068{font-size:53.333333pt;}
.y0_c00068{bottom:0.000000pt;}
.y2c_c00068{bottom:57.266686pt;}
.y2b_c00068{bottom:97.933353pt;}
.y2a_c00068{bottom:111.400020pt;}
.y29_c00068{bottom:125.133353pt;}
.y28_c00068{bottom:138.600020pt;}
.y27_c00068{bottom:152.666686pt;}
.y26_c00068{bottom:165.800020pt;}
.y25_c00068{bottom:179.533353pt;}
.y24_c00068{bottom:193.000020pt;}
.y23_c00068{bottom:206.733353pt;}
.y22_c00068{bottom:220.200020pt;}
.y21_c00068{bottom:233.933353pt;}
.y20_c00068{bottom:247.400020pt;}
.y1f_c00068{bottom:261.066686pt;}
.y1e_c00068{bottom:274.866686pt;}
.y1d_c00068{bottom:288.666686pt;}
.y1c_c00068{bottom:301.800020pt;}
.y1b_c00068{bottom:315.466686pt;}
.y1a_c00068{bottom:329.266686pt;}
.y19_c00068{bottom:343.066686pt;}
.y18_c00068{bottom:356.466686pt;}
.y17_c00068{bottom:369.933353pt;}
.y16_c00068{bottom:383.400020pt;}
.y15_c00068{bottom:422.733353pt;}
.y14_c00068{bottom:440.333353pt;}
.y13_c00068{bottom:457.266686pt;}
.y12_c00068{bottom:474.933353pt;}
.y11_c00068{bottom:492.200020pt;}
.y10_c00068{bottom:509.466686pt;}
.yf_c00068{bottom:526.400020pt;}
.ye_c00068{bottom:543.666686pt;}
.yd_c00068{bottom:561.000020pt;}
.yc_c00068{bottom:578.600020pt;}
.yb_c00068{bottom:595.866686pt;}
.ya_c00068{bottom:613.133353pt;}
.y9_c00068{bottom:630.066686pt;}
.y8_c00068{bottom:647.733353pt;}
.y7_c00068{bottom:665.000020pt;}
.y6_c00068{bottom:682.266686pt;}
.y5_c00068{bottom:698.866686pt;}
.y4_c00068{bottom:716.200020pt;}
.y3_c00068{bottom:733.466686pt;}
.y2_c00068{bottom:751.066686pt;}
.y1_c00068{bottom:788.200020pt;}
.h2_c00068{height:44.470052pt;}
.h4_c00068{height:44.492188pt;}
.h5_c00068{height:44.758854pt;}
.h3_c00068{height:52.343750pt;}
.h1_c00068{height:851.333333pt;}
.h0_c00068{height:851.533333pt;}
.w1_c00068{width:572.000000pt;}
.w0_c00068{width:572.133333pt;}
.x0_c00068{left:0.000000pt;}
.x1_c00068{left:80.666667pt;}
.x3_c00068{left:85.733333pt;}
.x2_c00068{left:95.333333pt;}
.x4_c00068{left:110.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_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_fb9875b17050059e1ed5faa9.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00069;src:url('chunks/assets/font_ca4eaf3c6679b62c4b794003.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00069{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.ls0_c00069{letter-spacing:0.000000px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00069{word-spacing:-15.000000px;}
.ws1_c00069{word-spacing:-12.750000px;}
.ws2_c00069{word-spacing:0.000000px;}
._11_c00069{margin-left:-12.960000px;}
._6_c00069{margin-left:-9.900000px;}
._d_c00069{margin-left:-8.400000px;}
._12_c00069{margin-left:-7.140000px;}
._7_c00069{margin-left:-6.060000px;}
._13_c00069{margin-left:-4.715955px;}
._8_c00069{margin-left:-3.600000px;}
._2_c00069{margin-left:-1.740000px;}
._0_c00069{width:1.080000px;}
._3_c00069{width:2.160000px;}
._4_c00069{width:3.840000px;}
._1_c00069{width:5.040000px;}
._5_c00069{width:6.060000px;}
._a_c00069{width:8.040000px;}
._10_c00069{width:9.780000px;}
._c_c00069{width:10.920000px;}
._b_c00069{width:12.660000px;}
._9_c00069{width:13.920000px;}
._f_c00069{width:16.200000px;}
._e_c00069{width:17.640000px;}
._14_c00069{width:25.469958px;}
._15_c00069{width:26.969970px;}
._16_c00069{width:28.829970px;}
.fc1_c00069{color:transparent;}
.fc0_c00069{color:rgb(35,31,32);}
.fs1_c00069{font-size:51.000000px;}
.fs0_c00069{font-size:60.000000px;}
.y0_c00069{bottom:0.000000px;}
.y29_c00069{bottom:64.425022px;}
.y28_c00069{bottom:110.175022px;}
.y27_c00069{bottom:125.325022px;}
.y26_c00069{bottom:140.775022px;}
.y25_c00069{bottom:156.225022px;}
.y24_c00069{bottom:171.750022px;}
.y23_c00069{bottom:186.525022px;}
.y22_c00069{bottom:201.975022px;}
.y21_c00069{bottom:217.125022px;}
.y20_c00069{bottom:232.575022px;}
.y1f_c00069{bottom:247.725022px;}
.y1e_c00069{bottom:263.175022px;}
.y1d_c00069{bottom:278.325022px;}
.y1c_c00069{bottom:293.775022px;}
.y1b_c00069{bottom:308.925022px;}
.y1a_c00069{bottom:324.750022px;}
.y19_c00069{bottom:339.525022px;}
.y18_c00069{bottom:354.975022px;}
.y17_c00069{bottom:370.125022px;}
.y16_c00069{bottom:385.575022px;}
.y15_c00069{bottom:401.025022px;}
.y14_c00069{bottom:416.175022px;}
.y13_c00069{bottom:456.525022px;}
.y12_c00069{bottom:475.950022px;}
.y11_c00069{bottom:495.375022px;}
.y10_c00069{bottom:514.800022px;}
.yf_c00069{bottom:555.150022px;}
.yd_c00069{bottom:611.925022px;}
.yc_c00069{bottom:631.425022px;}
.yb_c00069{bottom:650.925022px;}
.ya_c00069{bottom:669.975022px;}
.y9_c00069{bottom:689.775022px;}
.y8_c00069{bottom:708.900022px;}
.y7_c00069{bottom:728.325022px;}
.y6_c00069{bottom:747.750022px;}
.y5_c00069{bottom:767.550022px;}
.y4_c00069{bottom:786.225022px;}
.y3_c00069{bottom:805.725022px;}
.y2_c00069{bottom:825.150022px;}
.y1_c00069{bottom:844.950022px;}
.ye_c00069{bottom:886.725022px;}
.h3_c00069{height:50.028809px;}
.h4_c00069{height:50.053711px;}
.h2_c00069{height:58.886719px;}
.h1_c00069{height:957.750000px;}
.h0_c00069{height:957.975000px;}
.w0_c00069{width:641.850030px;}
.w1_c00069{width:642.000000px;}
.x0_c00069{left:0.000000px;}
.x2_c00069{left:80.250000px;}
.x1_c00069{left:81.375000px;}
.x5_c00069{left:86.400000px;}
.x4_c00069{left:113.775000px;}
.x3_c00069{left:162.750000px;}
.x6_c00069{left:538.575000px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls0_c00069{letter-spacing:0.000000pt;}
.ws0_c00069{word-spacing:-13.333333pt;}
.ws1_c00069{word-spacing:-11.333333pt;}
.ws2_c00069{word-spacing:0.000000pt;}
._11_c00069{margin-left:-11.520000pt;}
._6_c00069{margin-left:-8.800000pt;}
._d_c00069{margin-left:-7.466667pt;}
._12_c00069{margin-left:-6.346667pt;}
._7_c00069{margin-left:-5.386667pt;}
._13_c00069{margin-left:-4.191960pt;}
._8_c00069{margin-left:-3.200000pt;}
._2_c00069{margin-left:-1.546667pt;}
._0_c00069{width:0.960000pt;}
._3_c00069{width:1.920000pt;}
._4_c00069{width:3.413333pt;}
._1_c00069{width:4.480000pt;}
._5_c00069{width:5.386667pt;}
._a_c00069{width:7.146667pt;}
._10_c00069{width:8.693333pt;}
._c_c00069{width:9.706667pt;}
._b_c00069{width:11.253333pt;}
._9_c00069{width:12.373333pt;}
._f_c00069{width:14.400000pt;}
._e_c00069{width:15.680000pt;}
._14_c00069{width:22.639963pt;}
._15_c00069{width:23.973307pt;}
._16_c00069{width:25.626640pt;}
.fs1_c00069{font-size:45.333333pt;}
.fs0_c00069{font-size:53.333333pt;}
.y0_c00069{bottom:0.000000pt;}
.y29_c00069{bottom:57.266686pt;}
.y28_c00069{bottom:97.933353pt;}
.y27_c00069{bottom:111.400020pt;}
.y26_c00069{bottom:125.133353pt;}
.y25_c00069{bottom:138.866686pt;}
.y24_c00069{bottom:152.666686pt;}
.y23_c00069{bottom:165.800020pt;}
.y22_c00069{bottom:179.533353pt;}
.y21_c00069{bottom:193.000020pt;}
.y20_c00069{bottom:206.733353pt;}
.y1f_c00069{bottom:220.200020pt;}
.y1e_c00069{bottom:233.933353pt;}
.y1d_c00069{bottom:247.400020pt;}
.y1c_c00069{bottom:261.133353pt;}
.y1b_c00069{bottom:274.600020pt;}
.y1a_c00069{bottom:288.666686pt;}
.y19_c00069{bottom:301.800020pt;}
.y18_c00069{bottom:315.533353pt;}
.y17_c00069{bottom:329.000020pt;}
.y16_c00069{bottom:342.733353pt;}
.y15_c00069{bottom:356.466686pt;}
.y14_c00069{bottom:369.933353pt;}
.y13_c00069{bottom:405.800020pt;}
.y12_c00069{bottom:423.066686pt;}
.y11_c00069{bottom:440.333353pt;}
.y10_c00069{bottom:457.600020pt;}
.yf_c00069{bottom:493.466686pt;}
.yd_c00069{bottom:543.933353pt;}
.yc_c00069{bottom:561.266686pt;}
.yb_c00069{bottom:578.600020pt;}
.ya_c00069{bottom:595.533353pt;}
.y9_c00069{bottom:613.133353pt;}
.y8_c00069{bottom:630.133353pt;}
.y7_c00069{bottom:647.400020pt;}
.y6_c00069{bottom:664.666686pt;}
.y5_c00069{bottom:682.266686pt;}
.y4_c00069{bottom:698.866686pt;}
.y3_c00069{bottom:716.200020pt;}
.y2_c00069{bottom:733.466686pt;}
.y1_c00069{bottom:751.066686pt;}
.ye_c00069{bottom:788.200020pt;}
.h3_c00069{height:44.470052pt;}
.h4_c00069{height:44.492188pt;}
.h2_c00069{height:52.343750pt;}
.h1_c00069{height:851.333333pt;}
.h0_c00069{height:851.533333pt;}
.w0_c00069{width:570.533360pt;}
.w1_c00069{width:570.666667pt;}
.x0_c00069{left:0.000000pt;}
.x2_c00069{left:71.333333pt;}
.x1_c00069{left:72.333333pt;}
.x5_c00069{left:76.800000pt;}
.x4_c00069{left:101.133333pt;}
.x3_c00069{left:144.666667pt;}
.x6_c00069{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_22918150310ba41c67228b45.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00070;src:url('chunks/assets/font_ade3b2fd33e8921194033280.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00070{letter-spacing:0.000000px;}
.sc__c00070{text-shadow:none;}
.sc0_c00070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00070{-webkit-text-stroke:0px transparent;}
.sc0_c00070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00070{word-spacing:-15.000000px;}
.ws1_c00070{word-spacing:-12.750000px;}
.ws2_c00070{word-spacing:0.000000px;}
._12_c00070{margin-left:-10.639548px;}
._4_c00070{margin-left:-9.539619px;}
._13_c00070{margin-left:-8.145900px;}
._f_c00070{margin-left:-6.978234px;}
._17_c00070{margin-left:-5.893737px;}
._16_c00070{margin-left:-4.670541px;}
._10_c00070{margin-left:-3.600000px;}
._0_c00070{margin-left:-1.760979px;}
._2_c00070{width:1.115931px;}
._1_c00070{width:2.699991px;}
._7_c00070{width:3.900018px;}
._a_c00070{width:5.423016px;}
._3_c00070{width:7.128147px;}
._5_c00070{width:8.519601px;}
._8_c00070{width:9.600000px;}
._9_c00070{width:11.581434px;}
._6_c00070{width:12.611004px;}
._b_c00070{width:13.811418px;}
._11_c00070{width:17.049975px;}
._d_c00070{width:18.600354px;}
._e_c00070{width:19.820979px;}
._c_c00070{width:21.048138px;}
._14_c00070{width:22.414305px;}
._15_c00070{width:23.771916px;}
._18_c00070{width:25.271928px;}
.fc1_c00070{color:transparent;}
.fc0_c00070{color:rgb(35,31,32);}
.fs0_c00070{font-size:51.000000px;}
.fs1_c00070{font-size:60.000000px;}
.y0_c00070{bottom:0.000000px;}
.y2b_c00070{bottom:64.425022px;}
.y2a_c00070{bottom:110.175022px;}
.y29_c00070{bottom:125.325022px;}
.y28_c00070{bottom:140.775022px;}
.y27_c00070{bottom:155.925022px;}
.y26_c00070{bottom:171.750022px;}
.y25_c00070{bottom:186.525022px;}
.y24_c00070{bottom:201.975022px;}
.y23_c00070{bottom:217.425022px;}
.y22_c00070{bottom:232.575022px;}
.y21_c00070{bottom:247.725022px;}
.y20_c00070{bottom:263.175022px;}
.y1f_c00070{bottom:278.325022px;}
.y1e_c00070{bottom:294.150022px;}
.y1d_c00070{bottom:308.925022px;}
.y1c_c00070{bottom:324.375022px;}
.y1b_c00070{bottom:339.525022px;}
.y1a_c00070{bottom:354.975022px;}
.y19_c00070{bottom:370.425022px;}
.y18_c00070{bottom:385.950022px;}
.y17_c00070{bottom:400.725022px;}
.y16_c00070{bottom:416.175022px;}
.y15_c00070{bottom:431.325022px;}
.y14_c00070{bottom:495.375022px;}
.y13_c00070{bottom:514.800022px;}
.y12_c00070{bottom:534.225022px;}
.y11_c00070{bottom:553.725022px;}
.y10_c00070{bottom:572.775022px;}
.yf_c00070{bottom:592.575022px;}
.ye_c00070{bottom:611.700022px;}
.yd_c00070{bottom:631.125022px;}
.yc_c00070{bottom:650.550022px;}
.yb_c00070{bottom:670.350022px;}
.ya_c00070{bottom:689.400022px;}
.y9_c00070{bottom:708.825022px;}
.y8_c00070{bottom:728.325022px;}
.y7_c00070{bottom:748.125022px;}
.y6_c00070{bottom:767.550022px;}
.y5_c00070{bottom:786.525022px;}
.y4_c00070{bottom:806.025022px;}
.y3_c00070{bottom:825.525022px;}
.y2_c00070{bottom:844.575022px;}
.y1_c00070{bottom:886.725022px;}
.h2_c00070{height:50.028809px;}
.h4_c00070{height:50.053711px;}
.h3_c00070{height:58.886719px;}
.h1_c00070{height:957.750000px;}
.h0_c00070{height:957.975000px;}
.w1_c00070{width:643.500000px;}
.w0_c00070{width:643.650000px;}
.x0_c00070{left:0.000000px;}
.x1_c00070{left:90.750000px;}
.x2_c00070{left:96.450000px;}
.x3_c00070{left:123.450000px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls0_c00070{letter-spacing:0.000000pt;}
.ws0_c00070{word-spacing:-13.333333pt;}
.ws1_c00070{word-spacing:-11.333333pt;}
.ws2_c00070{word-spacing:0.000000pt;}
._12_c00070{margin-left:-9.457376pt;}
._4_c00070{margin-left:-8.479661pt;}
._13_c00070{margin-left:-7.240800pt;}
._f_c00070{margin-left:-6.202875pt;}
._17_c00070{margin-left:-5.238877pt;}
._16_c00070{margin-left:-4.151592pt;}
._10_c00070{margin-left:-3.200000pt;}
._0_c00070{margin-left:-1.565315pt;}
._2_c00070{width:0.991939pt;}
._1_c00070{width:2.399992pt;}
._7_c00070{width:3.466683pt;}
._a_c00070{width:4.820459pt;}
._3_c00070{width:6.336131pt;}
._5_c00070{width:7.572979pt;}
._8_c00070{width:8.533333pt;}
._9_c00070{width:10.294608pt;}
._6_c00070{width:11.209781pt;}
._b_c00070{width:12.276816pt;}
._11_c00070{width:15.155533pt;}
._d_c00070{width:16.533648pt;}
._e_c00070{width:17.618648pt;}
._c_c00070{width:18.709456pt;}
._14_c00070{width:19.923827pt;}
._15_c00070{width:21.130592pt;}
._18_c00070{width:22.463936pt;}
.fs0_c00070{font-size:45.333333pt;}
.fs1_c00070{font-size:53.333333pt;}
.y0_c00070{bottom:0.000000pt;}
.y2b_c00070{bottom:57.266686pt;}
.y2a_c00070{bottom:97.933353pt;}
.y29_c00070{bottom:111.400020pt;}
.y28_c00070{bottom:125.133353pt;}
.y27_c00070{bottom:138.600020pt;}
.y26_c00070{bottom:152.666686pt;}
.y25_c00070{bottom:165.800020pt;}
.y24_c00070{bottom:179.533353pt;}
.y23_c00070{bottom:193.266686pt;}
.y22_c00070{bottom:206.733353pt;}
.y21_c00070{bottom:220.200020pt;}
.y20_c00070{bottom:233.933353pt;}
.y1f_c00070{bottom:247.400020pt;}
.y1e_c00070{bottom:261.466686pt;}
.y1d_c00070{bottom:274.600020pt;}
.y1c_c00070{bottom:288.333353pt;}
.y1b_c00070{bottom:301.800020pt;}
.y1a_c00070{bottom:315.533353pt;}
.y19_c00070{bottom:329.266686pt;}
.y18_c00070{bottom:343.066686pt;}
.y17_c00070{bottom:356.200020pt;}
.y16_c00070{bottom:369.933353pt;}
.y15_c00070{bottom:383.400020pt;}
.y14_c00070{bottom:440.333353pt;}
.y13_c00070{bottom:457.600020pt;}
.y12_c00070{bottom:474.866686pt;}
.y11_c00070{bottom:492.200020pt;}
.y10_c00070{bottom:509.133353pt;}
.yf_c00070{bottom:526.733353pt;}
.ye_c00070{bottom:543.733353pt;}
.yd_c00070{bottom:561.000020pt;}
.yc_c00070{bottom:578.266686pt;}
.yb_c00070{bottom:595.866686pt;}
.ya_c00070{bottom:612.800020pt;}
.y9_c00070{bottom:630.066686pt;}
.y8_c00070{bottom:647.400020pt;}
.y7_c00070{bottom:665.000020pt;}
.y6_c00070{bottom:682.266686pt;}
.y5_c00070{bottom:699.133353pt;}
.y4_c00070{bottom:716.466686pt;}
.y3_c00070{bottom:733.800020pt;}
.y2_c00070{bottom:750.733353pt;}
.y1_c00070{bottom:788.200020pt;}
.h2_c00070{height:44.470052pt;}
.h4_c00070{height:44.492188pt;}
.h3_c00070{height:52.343750pt;}
.h1_c00070{height:851.333333pt;}
.h0_c00070{height:851.533333pt;}
.w1_c00070{width:572.000000pt;}
.w0_c00070{width:572.133333pt;}
.x0_c00070{left:0.000000pt;}
.x1_c00070{left:80.666667pt;}
.x2_c00070{left:85.733333pt;}
.x3_c00070{left:109.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f26a108e6c366828ac017149.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00071;src:url('chunks/assets/font_280dff447c40e301c4ad4752.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00071{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00071{word-spacing:-15.000000px;}
.ws1_c00071{word-spacing:-12.750000px;}
.ws2_c00071{word-spacing:0.000000px;}
._13_c00071{margin-left:-12.300000px;}
._d_c00071{margin-left:-10.800000px;}
._3_c00071{margin-left:-9.300000px;}
._18_c00071{margin-left:-5.634006px;}
._e_c00071{margin-left:-4.620000px;}
._b_c00071{margin-left:-3.360000px;}
._a_c00071{margin-left:-2.280000px;}
._2_c00071{margin-left:-1.140000px;}
._1_c00071{width:1.080000px;}
._0_c00071{width:2.520000px;}
._4_c00071{width:4.260000px;}
._5_c00071{width:6.120000px;}
._14_c00071{width:7.260000px;}
._6_c00071{width:8.340000px;}
._c_c00071{width:9.360000px;}
._9_c00071{width:10.620000px;}
._8_c00071{width:11.940000px;}
._7_c00071{width:13.500000px;}
._19_c00071{width:15.089988px;}
._15_c00071{width:16.200000px;}
._17_c00071{width:18.060000px;}
._16_c00071{width:19.440000px;}
._1a_c00071{width:23.670000px;}
._f_c00071{width:24.960000px;}
._10_c00071{width:26.280000px;}
._12_c00071{width:27.480000px;}
._11_c00071{width:28.620000px;}
.fc1_c00071{color:transparent;}
.fc0_c00071{color:rgb(35,31,32);}
.fs1_c00071{font-size:51.000000px;}
.fs0_c00071{font-size:60.000000px;}
.y0_c00071{bottom:0.000000px;}
.y28_c00071{bottom:64.425022px;}
.y27_c00071{bottom:110.175022px;}
.y26_c00071{bottom:125.325022px;}
.y25_c00071{bottom:140.775022px;}
.y24_c00071{bottom:155.925022px;}
.y23_c00071{bottom:171.375022px;}
.y22_c00071{bottom:186.825022px;}
.y21_c00071{bottom:201.975022px;}
.y20_c00071{bottom:217.125022px;}
.y1f_c00071{bottom:232.950022px;}
.y1e_c00071{bottom:247.725022px;}
.y1d_c00071{bottom:263.175022px;}
.y1c_c00071{bottom:278.325022px;}
.y1b_c00071{bottom:293.775022px;}
.y1a_c00071{bottom:308.925022px;}
.y19_c00071{bottom:324.750022px;}
.y18_c00071{bottom:339.825022px;}
.y17_c00071{bottom:355.350022px;}
.y16_c00071{bottom:370.125022px;}
.y15_c00071{bottom:385.575022px;}
.y14_c00071{bottom:439.200022px;}
.y13_c00071{bottom:458.325022px;}
.y12_c00071{bottom:477.750022px;}
.y11_c00071{bottom:497.175022px;}
.y10_c00071{bottom:516.975022px;}
.yf_c00071{bottom:536.400022px;}
.ye_c00071{bottom:555.825022px;}
.yd_c00071{bottom:574.950022px;}
.yc_c00071{bottom:594.750022px;}
.yb_c00071{bottom:632.925022px;}
.y9_c00071{bottom:689.775022px;}
.y8_c00071{bottom:708.825022px;}
.y7_c00071{bottom:728.625022px;}
.y6_c00071{bottom:748.125022px;}
.y5_c00071{bottom:767.175022px;}
.y4_c00071{bottom:786.600022px;}
.y3_c00071{bottom:805.725022px;}
.y2_c00071{bottom:825.150022px;}
.y1_c00071{bottom:844.575022px;}
.ya_c00071{bottom:886.725022px;}
.h3_c00071{height:50.028809px;}
.h4_c00071{height:50.053711px;}
.h2_c00071{height:58.886719px;}
.h1_c00071{height:957.750000px;}
.h0_c00071{height:957.975000px;}
.w0_c00071{width:641.850030px;}
.w1_c00071{width:642.000000px;}
.x0_c00071{left:0.000000px;}
.x3_c00071{left:80.250000px;}
.x1_c00071{left:81.375000px;}
.x4_c00071{left:86.400000px;}
.x5_c00071{left:114.150000px;}
.x2_c00071{left:162.750000px;}
.x6_c00071{left:538.575000px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls0_c00071{letter-spacing:0.000000pt;}
.ws0_c00071{word-spacing:-13.333333pt;}
.ws1_c00071{word-spacing:-11.333333pt;}
.ws2_c00071{word-spacing:0.000000pt;}
._13_c00071{margin-left:-10.933333pt;}
._d_c00071{margin-left:-9.600000pt;}
._3_c00071{margin-left:-8.266667pt;}
._18_c00071{margin-left:-5.008005pt;}
._e_c00071{margin-left:-4.106667pt;}
._b_c00071{margin-left:-2.986667pt;}
._a_c00071{margin-left:-2.026667pt;}
._2_c00071{margin-left:-1.013333pt;}
._1_c00071{width:0.960000pt;}
._0_c00071{width:2.240000pt;}
._4_c00071{width:3.786667pt;}
._5_c00071{width:5.440000pt;}
._14_c00071{width:6.453333pt;}
._6_c00071{width:7.413333pt;}
._c_c00071{width:8.320000pt;}
._9_c00071{width:9.440000pt;}
._8_c00071{width:10.613333pt;}
._7_c00071{width:12.000000pt;}
._19_c00071{width:13.413323pt;}
._15_c00071{width:14.400000pt;}
._17_c00071{width:16.053333pt;}
._16_c00071{width:17.280000pt;}
._1a_c00071{width:21.040000pt;}
._f_c00071{width:22.186667pt;}
._10_c00071{width:23.360000pt;}
._12_c00071{width:24.426667pt;}
._11_c00071{width:25.440000pt;}
.fs1_c00071{font-size:45.333333pt;}
.fs0_c00071{font-size:53.333333pt;}
.y0_c00071{bottom:0.000000pt;}
.y28_c00071{bottom:57.266686pt;}
.y27_c00071{bottom:97.933353pt;}
.y26_c00071{bottom:111.400020pt;}
.y25_c00071{bottom:125.133353pt;}
.y24_c00071{bottom:138.600020pt;}
.y23_c00071{bottom:152.333353pt;}
.y22_c00071{bottom:166.066686pt;}
.y21_c00071{bottom:179.533353pt;}
.y20_c00071{bottom:193.000020pt;}
.y1f_c00071{bottom:207.066686pt;}
.y1e_c00071{bottom:220.200020pt;}
.y1d_c00071{bottom:233.933353pt;}
.y1c_c00071{bottom:247.400020pt;}
.y1b_c00071{bottom:261.133353pt;}
.y1a_c00071{bottom:274.600020pt;}
.y19_c00071{bottom:288.666686pt;}
.y18_c00071{bottom:302.066686pt;}
.y17_c00071{bottom:315.866686pt;}
.y16_c00071{bottom:329.000020pt;}
.y15_c00071{bottom:342.733353pt;}
.y14_c00071{bottom:390.400020pt;}
.y13_c00071{bottom:407.400020pt;}
.y12_c00071{bottom:424.666686pt;}
.y11_c00071{bottom:441.933353pt;}
.y10_c00071{bottom:459.533353pt;}
.yf_c00071{bottom:476.800020pt;}
.ye_c00071{bottom:494.066686pt;}
.yd_c00071{bottom:511.066686pt;}
.yc_c00071{bottom:528.666686pt;}
.yb_c00071{bottom:562.600020pt;}
.y9_c00071{bottom:613.133353pt;}
.y8_c00071{bottom:630.066686pt;}
.y7_c00071{bottom:647.666686pt;}
.y6_c00071{bottom:665.000020pt;}
.y5_c00071{bottom:681.933353pt;}
.y4_c00071{bottom:699.200020pt;}
.y3_c00071{bottom:716.200020pt;}
.y2_c00071{bottom:733.466686pt;}
.y1_c00071{bottom:750.733353pt;}
.ya_c00071{bottom:788.200020pt;}
.h3_c00071{height:44.470052pt;}
.h4_c00071{height:44.492188pt;}
.h2_c00071{height:52.343750pt;}
.h1_c00071{height:851.333333pt;}
.h0_c00071{height:851.533333pt;}
.w0_c00071{width:570.533360pt;}
.w1_c00071{width:570.666667pt;}
.x0_c00071{left:0.000000pt;}
.x3_c00071{left:71.333333pt;}
.x1_c00071{left:72.333333pt;}
.x4_c00071{left:76.800000pt;}
.x5_c00071{left:101.466667pt;}
.x2_c00071{left:144.666667pt;}
.x6_c00071{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3016d9ca14241906fe7788dd.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00072;src:url('chunks/assets/font_32fcf2fb8810f860efa0c490.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00072{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_c00072{vertical-align:0.000000px;}
.ls0_c00072{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00072{word-spacing:-12.750000px;}
.ws2_c00072{word-spacing:0.000000px;}
._7_c00072{margin-left:-10.620000px;}
._9_c00072{margin-left:-9.480000px;}
._e_c00072{margin-left:-8.040000px;}
._14_c00072{margin-left:-6.900000px;}
._19_c00072{margin-left:-5.877033px;}
._11_c00072{margin-left:-4.800000px;}
._13_c00072{margin-left:-3.780000px;}
._15_c00072{margin-left:-2.340000px;}
._6_c00072{margin-left:-1.080000px;}
._3_c00072{width:1.020000px;}
._0_c00072{width:2.100000px;}
._5_c00072{width:3.120000px;}
._1_c00072{width:4.380000px;}
._8_c00072{width:5.460000px;}
._2_c00072{width:6.600000px;}
._4_c00072{width:8.520000px;}
._16_c00072{width:9.540000px;}
._a_c00072{width:10.740000px;}
._b_c00072{width:12.420000px;}
._c_c00072{width:13.440000px;}
._1a_c00072{width:15.087009px;}
._d_c00072{width:16.140000px;}
._12_c00072{width:17.280000px;}
._10_c00072{width:18.360000px;}
._f_c00072{width:21.000000px;}
._18_c00072{width:23.430000px;}
._17_c00072{width:26.010000px;}
._1b_c00072{width:27.630000px;}
.fc1_c00072{color:transparent;}
.fc0_c00072{color:rgb(35,31,32);}
.fs1_c00072{font-size:51.000000px;}
.fs0_c00072{font-size:60.000000px;}
.y0_c00072{bottom:0.000000px;}
.y2c_c00072{bottom:64.800022px;}
.y2b_c00072{bottom:110.175022px;}
.y2a_c00072{bottom:125.325022px;}
.y29_c00072{bottom:140.775022px;}
.y28_c00072{bottom:155.925022px;}
.y27_c00072{bottom:171.375022px;}
.y26_c00072{bottom:186.525022px;}
.y25_c00072{bottom:201.975022px;}
.y24_c00072{bottom:217.125022px;}
.y23_c00072{bottom:232.575022px;}
.y22_c00072{bottom:247.725022px;}
.y21_c00072{bottom:263.550022px;}
.y20_c00072{bottom:278.625022px;}
.y1f_c00072{bottom:294.150022px;}
.y1e_c00072{bottom:308.925022px;}
.y1d_c00072{bottom:324.375022px;}
.y1c_c00072{bottom:339.525022px;}
.y1b_c00072{bottom:354.975022px;}
.y1a_c00072{bottom:370.125022px;}
.y19_c00072{bottom:385.575022px;}
.y18_c00072{bottom:400.725022px;}
.y17_c00072{bottom:416.175022px;}
.y16_c00072{bottom:431.325022px;}
.y15_c00072{bottom:446.775022px;}
.y14_c00072{bottom:461.925022px;}
.y12_c00072{bottom:514.425022px;}
.y11_c00072{bottom:534.225022px;}
.y10_c00072{bottom:553.350022px;}
.yf_c00072{bottom:572.775022px;}
.ye_c00072{bottom:592.200022px;}
.yd_c00072{bottom:611.625022px;}
.yc_c00072{bottom:631.125022px;}
.yb_c00072{bottom:650.925022px;}
.ya_c00072{bottom:670.350022px;}
.y9_c00072{bottom:689.400022px;}
.y8_c00072{bottom:709.200022px;}
.y7_c00072{bottom:728.625022px;}
.y6_c00072{bottom:748.125022px;}
.y5_c00072{bottom:767.475022px;}
.y4_c00072{bottom:786.600022px;}
.y3_c00072{bottom:805.725022px;}
.y2_c00072{bottom:825.525022px;}
.y1_c00072{bottom:844.950022px;}
.y13_c00072{bottom:886.725022px;}
.h3_c00072{height:50.028809px;}
.h4_c00072{height:50.053711px;}
.h2_c00072{height:58.886719px;}
.h1_c00072{height:957.750000px;}
.h0_c00072{height:957.975000px;}
.w1_c00072{width:643.500000px;}
.w0_c00072{width:643.650000px;}
.x0_c00072{left:0.000000px;}
.x1_c00072{left:91.425000px;}
.x3_c00072{left:96.450000px;}
.x2_c00072{left:107.250000px;}
.x4_c00072{left:123.825000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls0_c00072{letter-spacing:0.000000pt;}
.ws0_c00072{word-spacing:-13.333333pt;}
.ws1_c00072{word-spacing:-11.333333pt;}
.ws2_c00072{word-spacing:0.000000pt;}
._7_c00072{margin-left:-9.440000pt;}
._9_c00072{margin-left:-8.426667pt;}
._e_c00072{margin-left:-7.146667pt;}
._14_c00072{margin-left:-6.133333pt;}
._19_c00072{margin-left:-5.224029pt;}
._11_c00072{margin-left:-4.266667pt;}
._13_c00072{margin-left:-3.360000pt;}
._15_c00072{margin-left:-2.080000pt;}
._6_c00072{margin-left:-0.960000pt;}
._3_c00072{width:0.906667pt;}
._0_c00072{width:1.866667pt;}
._5_c00072{width:2.773333pt;}
._1_c00072{width:3.893333pt;}
._8_c00072{width:4.853333pt;}
._2_c00072{width:5.866667pt;}
._4_c00072{width:7.573333pt;}
._16_c00072{width:8.480000pt;}
._a_c00072{width:9.546667pt;}
._b_c00072{width:11.040000pt;}
._c_c00072{width:11.946667pt;}
._1a_c00072{width:13.410675pt;}
._d_c00072{width:14.346667pt;}
._12_c00072{width:15.360000pt;}
._10_c00072{width:16.320000pt;}
._f_c00072{width:18.666667pt;}
._18_c00072{width:20.826667pt;}
._17_c00072{width:23.120000pt;}
._1b_c00072{width:24.560000pt;}
.fs1_c00072{font-size:45.333333pt;}
.fs0_c00072{font-size:53.333333pt;}
.y0_c00072{bottom:0.000000pt;}
.y2c_c00072{bottom:57.600020pt;}
.y2b_c00072{bottom:97.933353pt;}
.y2a_c00072{bottom:111.400020pt;}
.y29_c00072{bottom:125.133353pt;}
.y28_c00072{bottom:138.600020pt;}
.y27_c00072{bottom:152.333353pt;}
.y26_c00072{bottom:165.800020pt;}
.y25_c00072{bottom:179.533353pt;}
.y24_c00072{bottom:193.000020pt;}
.y23_c00072{bottom:206.733353pt;}
.y22_c00072{bottom:220.200020pt;}
.y21_c00072{bottom:234.266686pt;}
.y20_c00072{bottom:247.666686pt;}
.y1f_c00072{bottom:261.466686pt;}
.y1e_c00072{bottom:274.600020pt;}
.y1d_c00072{bottom:288.333353pt;}
.y1c_c00072{bottom:301.800020pt;}
.y1b_c00072{bottom:315.533353pt;}
.y1a_c00072{bottom:329.000020pt;}
.y19_c00072{bottom:342.733353pt;}
.y18_c00072{bottom:356.200020pt;}
.y17_c00072{bottom:369.933353pt;}
.y16_c00072{bottom:383.400020pt;}
.y15_c00072{bottom:397.133353pt;}
.y14_c00072{bottom:410.600020pt;}
.y12_c00072{bottom:457.266686pt;}
.y11_c00072{bottom:474.866686pt;}
.y10_c00072{bottom:491.866686pt;}
.yf_c00072{bottom:509.133353pt;}
.ye_c00072{bottom:526.400020pt;}
.yd_c00072{bottom:543.666686pt;}
.yc_c00072{bottom:561.000020pt;}
.yb_c00072{bottom:578.600020pt;}
.ya_c00072{bottom:595.866686pt;}
.y9_c00072{bottom:612.800020pt;}
.y8_c00072{bottom:630.400020pt;}
.y7_c00072{bottom:647.666686pt;}
.y6_c00072{bottom:665.000020pt;}
.y5_c00072{bottom:682.200020pt;}
.y4_c00072{bottom:699.200020pt;}
.y3_c00072{bottom:716.200020pt;}
.y2_c00072{bottom:733.800020pt;}
.y1_c00072{bottom:751.066686pt;}
.y13_c00072{bottom:788.200020pt;}
.h3_c00072{height:44.470052pt;}
.h4_c00072{height:44.492188pt;}
.h2_c00072{height:52.343750pt;}
.h1_c00072{height:851.333333pt;}
.h0_c00072{height:851.533333pt;}
.w1_c00072{width:572.000000pt;}
.w0_c00072{width:572.133333pt;}
.x0_c00072{left:0.000000pt;}
.x1_c00072{left:81.266667pt;}
.x3_c00072{left:85.733333pt;}
.x2_c00072{left:95.333333pt;}
.x4_c00072{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0e10a524ed6ebf1701bbdab7.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00073;src:url('chunks/assets/font_3c27683f86b4caa6ac65dafa.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00073{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_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:-15.000000px;}
.ws1_c00073{word-spacing:-12.750000px;}
.ws2_c00073{word-spacing:0.000000px;}
._8_c00073{margin-left:-12.888012px;}
._7_c00073{margin-left:-11.711988px;}
._b_c00073{margin-left:-9.900000px;}
._a_c00073{margin-left:-8.897997px;}
._19_c00073{margin-left:-5.835000px;}
._18_c00073{margin-left:-4.662027px;}
._c_c00073{margin-left:-3.267003px;}
._2_c00073{margin-left:-1.895976px;}
._0_c00073{width:1.173000px;}
._1_c00073{width:2.531997px;}
._3_c00073{width:4.023006px;}
._4_c00073{width:5.037006px;}
._d_c00073{width:6.075000px;}
._6_c00073{width:7.121997px;}
._5_c00073{width:8.160000px;}
._9_c00073{width:10.224018px;}
._12_c00073{width:12.293985px;}
._f_c00073{width:13.613979px;}
._1a_c00073{width:15.266997px;}
._e_c00073{width:16.329000px;}
._10_c00073{width:17.685015px;}
._16_c00073{width:19.122051px;}
._13_c00073{width:20.135901px;}
._11_c00073{width:21.155976px;}
._15_c00073{width:22.983105px;}
._14_c00073{width:24.711024px;}
._1b_c00073{width:25.937928px;}
._17_c00073{width:28.679991px;}
.fc1_c00073{color:transparent;}
.fc0_c00073{color:rgb(35,31,32);}
.fs0_c00073{font-size:51.000000px;}
.fs1_c00073{font-size:60.000000px;}
.y0_c00073{bottom:0.000000px;}
.y2b_c00073{bottom:64.425022px;}
.y2a_c00073{bottom:110.175022px;}
.y29_c00073{bottom:125.325022px;}
.y28_c00073{bottom:140.775022px;}
.y27_c00073{bottom:155.925022px;}
.y26_c00073{bottom:171.375022px;}
.y25_c00073{bottom:186.825022px;}
.y24_c00073{bottom:201.900022px;}
.y23_c00073{bottom:217.425022px;}
.y22_c00073{bottom:232.950022px;}
.y21_c00073{bottom:247.725022px;}
.y20_c00073{bottom:263.175022px;}
.y1f_c00073{bottom:278.625022px;}
.y1e_c00073{bottom:293.775022px;}
.y1d_c00073{bottom:308.925022px;}
.y1c_c00073{bottom:324.375022px;}
.y1b_c00073{bottom:339.525022px;}
.y1a_c00073{bottom:354.975022px;}
.y19_c00073{bottom:397.725022px;}
.y18_c00073{bottom:417.225022px;}
.y17_c00073{bottom:436.725022px;}
.y16_c00073{bottom:456.525022px;}
.y15_c00073{bottom:475.575022px;}
.y14_c00073{bottom:495.000022px;}
.y13_c00073{bottom:514.800022px;}
.y12_c00073{bottom:533.925022px;}
.y11_c00073{bottom:553.350022px;}
.y10_c00073{bottom:573.150022px;}
.yf_c00073{bottom:592.200022px;}
.ye_c00073{bottom:612.000022px;}
.yd_c00073{bottom:631.425022px;}
.yc_c00073{bottom:650.550022px;}
.yb_c00073{bottom:669.975022px;}
.ya_c00073{bottom:689.400022px;}
.y9_c00073{bottom:709.200022px;}
.y8_c00073{bottom:728.625022px;}
.y7_c00073{bottom:747.750022px;}
.y6_c00073{bottom:767.550022px;}
.y5_c00073{bottom:786.225022px;}
.y4_c00073{bottom:806.100022px;}
.y3_c00073{bottom:825.525022px;}
.y2_c00073{bottom:844.950022px;}
.y1_c00073{bottom:886.725022px;}
.h2_c00073{height:50.028809px;}
.h4_c00073{height:50.053711px;}
.h3_c00073{height:58.886719px;}
.h1_c00073{height:957.750000px;}
.h0_c00073{height:957.975000px;}
.w0_c00073{width:641.850030px;}
.w1_c00073{width:642.000000px;}
.x0_c00073{left:0.000000px;}
.x2_c00073{left:80.625000px;}
.x4_c00073{left:86.400000px;}
.x3_c00073{left:97.200000px;}
.x5_c00073{left:113.775000px;}
.x1_c00073{left:162.750000px;}
.x6_c00073{left:538.575000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls0_c00073{letter-spacing:0.000000pt;}
.ws0_c00073{word-spacing:-13.333333pt;}
.ws1_c00073{word-spacing:-11.333333pt;}
.ws2_c00073{word-spacing:0.000000pt;}
._8_c00073{margin-left:-11.456011pt;}
._7_c00073{margin-left:-10.410656pt;}
._b_c00073{margin-left:-8.800000pt;}
._a_c00073{margin-left:-7.909331pt;}
._19_c00073{margin-left:-5.186667pt;}
._18_c00073{margin-left:-4.144024pt;}
._c_c00073{margin-left:-2.904003pt;}
._2_c00073{margin-left:-1.685312pt;}
._0_c00073{width:1.042667pt;}
._1_c00073{width:2.250664pt;}
._3_c00073{width:3.576005pt;}
._4_c00073{width:4.477339pt;}
._d_c00073{width:5.400000pt;}
._6_c00073{width:6.330664pt;}
._5_c00073{width:7.253333pt;}
._9_c00073{width:9.088016pt;}
._12_c00073{width:10.927987pt;}
._f_c00073{width:12.101315pt;}
._1a_c00073{width:13.570664pt;}
._e_c00073{width:14.514667pt;}
._10_c00073{width:15.720013pt;}
._16_c00073{width:16.997379pt;}
._13_c00073{width:17.898579pt;}
._11_c00073{width:18.805312pt;}
._15_c00073{width:20.429427pt;}
._14_c00073{width:21.965355pt;}
._1b_c00073{width:23.055936pt;}
._17_c00073{width:25.493325pt;}
.fs0_c00073{font-size:45.333333pt;}
.fs1_c00073{font-size:53.333333pt;}
.y0_c00073{bottom:0.000000pt;}
.y2b_c00073{bottom:57.266686pt;}
.y2a_c00073{bottom:97.933353pt;}
.y29_c00073{bottom:111.400020pt;}
.y28_c00073{bottom:125.133353pt;}
.y27_c00073{bottom:138.600020pt;}
.y26_c00073{bottom:152.333353pt;}
.y25_c00073{bottom:166.066686pt;}
.y24_c00073{bottom:179.466686pt;}
.y23_c00073{bottom:193.266686pt;}
.y22_c00073{bottom:207.066686pt;}
.y21_c00073{bottom:220.200020pt;}
.y20_c00073{bottom:233.933353pt;}
.y1f_c00073{bottom:247.666686pt;}
.y1e_c00073{bottom:261.133353pt;}
.y1d_c00073{bottom:274.600020pt;}
.y1c_c00073{bottom:288.333353pt;}
.y1b_c00073{bottom:301.800020pt;}
.y1a_c00073{bottom:315.533353pt;}
.y19_c00073{bottom:353.533353pt;}
.y18_c00073{bottom:370.866686pt;}
.y17_c00073{bottom:388.200020pt;}
.y16_c00073{bottom:405.800020pt;}
.y15_c00073{bottom:422.733353pt;}
.y14_c00073{bottom:440.000020pt;}
.y13_c00073{bottom:457.600020pt;}
.y12_c00073{bottom:474.600020pt;}
.y11_c00073{bottom:491.866686pt;}
.y10_c00073{bottom:509.466686pt;}
.yf_c00073{bottom:526.400020pt;}
.ye_c00073{bottom:544.000020pt;}
.yd_c00073{bottom:561.266686pt;}
.yc_c00073{bottom:578.266686pt;}
.yb_c00073{bottom:595.533353pt;}
.ya_c00073{bottom:612.800020pt;}
.y9_c00073{bottom:630.400020pt;}
.y8_c00073{bottom:647.666686pt;}
.y7_c00073{bottom:664.666686pt;}
.y6_c00073{bottom:682.266686pt;}
.y5_c00073{bottom:698.866686pt;}
.y4_c00073{bottom:716.533353pt;}
.y3_c00073{bottom:733.800020pt;}
.y2_c00073{bottom:751.066686pt;}
.y1_c00073{bottom:788.200020pt;}
.h2_c00073{height:44.470052pt;}
.h4_c00073{height:44.492188pt;}
.h3_c00073{height:52.343750pt;}
.h1_c00073{height:851.333333pt;}
.h0_c00073{height:851.533333pt;}
.w0_c00073{width:570.533360pt;}
.w1_c00073{width:570.666667pt;}
.x0_c00073{left:0.000000pt;}
.x2_c00073{left:71.666667pt;}
.x4_c00073{left:76.800000pt;}
.x3_c00073{left:86.400000pt;}
.x5_c00073{left:101.133333pt;}
.x1_c00073{left:144.666667pt;}
.x6_c00073{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6f57d6f1d8b9546ea1c7e6bc.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00074;src:url('chunks/assets/font_bf4973c1fc4e29d8f5e605db.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00074{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_c00074{vertical-align:0.000000px;}
.ls0_c00074{letter-spacing:0.000000px;}
.sc__c00074{text-shadow:none;}
.sc0_c00074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00074{-webkit-text-stroke:0px transparent;}
.sc0_c00074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00074{word-spacing:-15.000000px;}
.ws1_c00074{word-spacing:-12.750000px;}
.ws2_c00074{word-spacing:0.000000px;}
._13_c00074{margin-left:-12.759243px;}
._d_c00074{margin-left:-10.283751px;}
._4_c00074{margin-left:-9.216249px;}
._15_c00074{margin-left:-7.139961px;}
._18_c00074{margin-left:-5.748222px;}
._c_c00074{margin-left:-4.571862px;}
._e_c00074{margin-left:-3.456576px;}
._0_c00074{margin-left:-1.760979px;}
._2_c00074{width:1.115931px;}
._1_c00074{width:2.699991px;}
._3_c00074{width:4.500354px;}
._5_c00074{width:6.432498px;}
._12_c00074{width:7.584414px;}
._6_c00074{width:8.639709px;}
._7_c00074{width:10.023282px;}
._f_c00074{width:11.249259px;}
._8_c00074{width:12.320979px;}
._9_c00074{width:13.560000px;}
._a_c00074{width:17.472225px;}
._b_c00074{width:18.744768px;}
._10_c00074{width:20.628120px;}
._11_c00074{width:22.052169px;}
._16_c00074{width:23.771958px;}
._14_c00074{width:25.271928px;}
._17_c00074{width:27.228492px;}
.fc1_c00074{color:transparent;}
.fc0_c00074{color:rgb(35,31,32);}
.fs0_c00074{font-size:51.000000px;}
.fs1_c00074{font-size:60.000000px;}
.y0_c00074{bottom:0.000000px;}
.y26_c00074{bottom:64.800022px;}
.y25_c00074{bottom:110.175022px;}
.y24_c00074{bottom:125.625022px;}
.y23_c00074{bottom:140.775022px;}
.y22_c00074{bottom:155.925022px;}
.y21_c00074{bottom:171.375022px;}
.y20_c00074{bottom:186.525022px;}
.y1f_c00074{bottom:201.975022px;}
.y1e_c00074{bottom:217.125022px;}
.y1d_c00074{bottom:232.575022px;}
.y1c_c00074{bottom:247.725022px;}
.y1b_c00074{bottom:263.175022px;}
.y1a_c00074{bottom:322.950022px;}
.y19_c00074{bottom:342.000022px;}
.y18_c00074{bottom:361.125022px;}
.y17_c00074{bottom:380.925022px;}
.y16_c00074{bottom:400.350022px;}
.y15_c00074{bottom:419.775022px;}
.y14_c00074{bottom:439.200022px;}
.y13_c00074{bottom:458.625022px;}
.y12_c00074{bottom:477.750022px;}
.y11_c00074{bottom:497.175022px;}
.y10_c00074{bottom:516.975022px;}
.yf_c00074{bottom:536.400022px;}
.ye_c00074{bottom:555.900022px;}
.yd_c00074{bottom:575.325022px;}
.yc_c00074{bottom:594.750022px;}
.yb_c00074{bottom:614.175022px;}
.ya_c00074{bottom:652.350022px;}
.y9_c00074{bottom:709.200022px;}
.y8_c00074{bottom:728.625022px;}
.y7_c00074{bottom:747.750022px;}
.y6_c00074{bottom:767.175022px;}
.y5_c00074{bottom:786.600022px;}
.y4_c00074{bottom:806.025022px;}
.y3_c00074{bottom:825.150022px;}
.y2_c00074{bottom:844.575022px;}
.y1_c00074{bottom:886.725022px;}
.h2_c00074{height:50.028809px;}
.h4_c00074{height:50.053711px;}
.h3_c00074{height:58.886719px;}
.h1_c00074{height:957.750000px;}
.h0_c00074{height:957.975000px;}
.w1_c00074{width:643.500000px;}
.w0_c00074{width:643.650000px;}
.x0_c00074{left:0.000000px;}
.x1_c00074{left:90.750000px;}
.x3_c00074{left:96.450000px;}
.x2_c00074{left:107.250000px;}
.x4_c00074{left:123.825000px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls0_c00074{letter-spacing:0.000000pt;}
.ws0_c00074{word-spacing:-13.333333pt;}
.ws1_c00074{word-spacing:-11.333333pt;}
.ws2_c00074{word-spacing:0.000000pt;}
._13_c00074{margin-left:-11.341549pt;}
._d_c00074{margin-left:-9.141112pt;}
._4_c00074{margin-left:-8.192221pt;}
._15_c00074{margin-left:-6.346632pt;}
._18_c00074{margin-left:-5.109531pt;}
._c_c00074{margin-left:-4.063877pt;}
._e_c00074{margin-left:-3.072512pt;}
._0_c00074{margin-left:-1.565315pt;}
._2_c00074{width:0.991939pt;}
._1_c00074{width:2.399992pt;}
._3_c00074{width:4.000315pt;}
._5_c00074{width:5.717776pt;}
._12_c00074{width:6.741701pt;}
._6_c00074{width:7.679741pt;}
._7_c00074{width:8.909584pt;}
._f_c00074{width:9.999341pt;}
._8_c00074{width:10.951981pt;}
._9_c00074{width:12.053333pt;}
._a_c00074{width:15.530867pt;}
._b_c00074{width:16.662016pt;}
._10_c00074{width:18.336107pt;}
._11_c00074{width:19.601928pt;}
._16_c00074{width:21.130629pt;}
._14_c00074{width:22.463936pt;}
._17_c00074{width:24.203104pt;}
.fs0_c00074{font-size:45.333333pt;}
.fs1_c00074{font-size:53.333333pt;}
.y0_c00074{bottom:0.000000pt;}
.y26_c00074{bottom:57.600020pt;}
.y25_c00074{bottom:97.933353pt;}
.y24_c00074{bottom:111.666686pt;}
.y23_c00074{bottom:125.133353pt;}
.y22_c00074{bottom:138.600020pt;}
.y21_c00074{bottom:152.333353pt;}
.y20_c00074{bottom:165.800020pt;}
.y1f_c00074{bottom:179.533353pt;}
.y1e_c00074{bottom:193.000020pt;}
.y1d_c00074{bottom:206.733353pt;}
.y1c_c00074{bottom:220.200020pt;}
.y1b_c00074{bottom:233.933353pt;}
.y1a_c00074{bottom:287.066686pt;}
.y19_c00074{bottom:304.000020pt;}
.y18_c00074{bottom:321.000020pt;}
.y17_c00074{bottom:338.600020pt;}
.y16_c00074{bottom:355.866686pt;}
.y15_c00074{bottom:373.133353pt;}
.y14_c00074{bottom:390.400020pt;}
.y13_c00074{bottom:407.666686pt;}
.y12_c00074{bottom:424.666686pt;}
.y11_c00074{bottom:441.933353pt;}
.y10_c00074{bottom:459.533353pt;}
.yf_c00074{bottom:476.800020pt;}
.ye_c00074{bottom:494.133353pt;}
.yd_c00074{bottom:511.400020pt;}
.yc_c00074{bottom:528.666686pt;}
.yb_c00074{bottom:545.933353pt;}
.ya_c00074{bottom:579.866686pt;}
.y9_c00074{bottom:630.400020pt;}
.y8_c00074{bottom:647.666686pt;}
.y7_c00074{bottom:664.666686pt;}
.y6_c00074{bottom:681.933353pt;}
.y5_c00074{bottom:699.200020pt;}
.y4_c00074{bottom:716.466686pt;}
.y3_c00074{bottom:733.466686pt;}
.y2_c00074{bottom:750.733353pt;}
.y1_c00074{bottom:788.200020pt;}
.h2_c00074{height:44.470052pt;}
.h4_c00074{height:44.492188pt;}
.h3_c00074{height:52.343750pt;}
.h1_c00074{height:851.333333pt;}
.h0_c00074{height:851.533333pt;}
.w1_c00074{width:572.000000pt;}
.w0_c00074{width:572.133333pt;}
.x0_c00074{left:0.000000pt;}
.x1_c00074{left:80.666667pt;}
.x3_c00074{left:85.733333pt;}
.x2_c00074{left:95.333333pt;}
.x4_c00074{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eea98740d2168957b4379cf2.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00075;src:url('chunks/assets/font_330ab1933ef08b32eb337808.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00075{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.ls0_c00075{letter-spacing:0.000000px;}
.sc__c00075{text-shadow:none;}
.sc0_c00075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00075{-webkit-text-stroke:0px transparent;}
.sc0_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00075{word-spacing:-15.000000px;}
.ws1_c00075{word-spacing:-12.750000px;}
.ws2_c00075{word-spacing:0.000000px;}
._11_c00075{margin-left:-11.220000px;}
._e_c00075{margin-left:-10.200000px;}
._d_c00075{margin-left:-7.080000px;}
._19_c00075{margin-left:-5.391033px;}
._10_c00075{margin-left:-4.260000px;}
._f_c00075{margin-left:-2.340000px;}
._1_c00075{margin-left:-1.080000px;}
._0_c00075{width:1.260000px;}
._3_c00075{width:2.280000px;}
._2_c00075{width:3.600000px;}
._7_c00075{width:4.800000px;}
._5_c00075{width:5.880000px;}
._4_c00075{width:7.560000px;}
._a_c00075{width:9.480000px;}
._c_c00075{width:10.560000px;}
._6_c00075{width:11.640000px;}
._8_c00075{width:12.780000px;}
._b_c00075{width:13.800000px;}
._9_c00075{width:16.140000px;}
._16_c00075{width:17.760000px;}
._12_c00075{width:18.900000px;}
._15_c00075{width:21.660000px;}
._14_c00075{width:23.040000px;}
._13_c00075{width:24.720000px;}
._17_c00075{width:26.429970px;}
._18_c00075{width:27.510072px;}
.fc1_c00075{color:transparent;}
.fc0_c00075{color:rgb(35,31,32);}
.fs1_c00075{font-size:51.000000px;}
.fs0_c00075{font-size:60.000000px;}
.y0_c00075{bottom:0.000000px;}
.y25_c00075{bottom:64.425022px;}
.y24_c00075{bottom:110.175022px;}
.y23_c00075{bottom:125.325022px;}
.y22_c00075{bottom:140.775022px;}
.y21_c00075{bottom:156.225022px;}
.y20_c00075{bottom:171.375022px;}
.y1f_c00075{bottom:186.525022px;}
.y1e_c00075{bottom:201.975022px;}
.y1d_c00075{bottom:264.525022px;}
.y1c_c00075{bottom:284.025022px;}
.y1b_c00075{bottom:303.525022px;}
.y1a_c00075{bottom:322.875022px;}
.y19_c00075{bottom:342.000022px;}
.y18_c00075{bottom:361.125022px;}
.y17_c00075{bottom:380.925022px;}
.y16_c00075{bottom:400.350022px;}
.y15_c00075{bottom:419.400022px;}
.y14_c00075{bottom:439.200022px;}
.y13_c00075{bottom:458.325022px;}
.y12_c00075{bottom:478.125022px;}
.y11_c00075{bottom:497.550022px;}
.y10_c00075{bottom:516.975022px;}
.yf_c00075{bottom:536.400022px;}
.ye_c00075{bottom:574.200022px;}
.yc_c00075{bottom:631.425022px;}
.yb_c00075{bottom:650.850022px;}
.ya_c00075{bottom:670.350022px;}
.y9_c00075{bottom:689.400022px;}
.y8_c00075{bottom:709.200022px;}
.y7_c00075{bottom:728.325022px;}
.y6_c00075{bottom:747.750022px;}
.y5_c00075{bottom:767.175022px;}
.y4_c00075{bottom:786.225022px;}
.y3_c00075{bottom:806.025022px;}
.y2_c00075{bottom:825.525022px;}
.y1_c00075{bottom:844.575022px;}
.yd_c00075{bottom:886.725022px;}
.h3_c00075{height:50.028809px;}
.h4_c00075{height:50.053711px;}
.h2_c00075{height:58.886719px;}
.h1_c00075{height:957.750000px;}
.h0_c00075{height:957.975000px;}
.w0_c00075{width:641.850030px;}
.w1_c00075{width:642.000000px;}
.x0_c00075{left:0.000000px;}
.x1_c00075{left:81.000000px;}
.x3_c00075{left:86.400000px;}
.x4_c00075{left:113.775000px;}
.x2_c00075{left:162.750000px;}
.x5_c00075{left:538.575000px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls0_c00075{letter-spacing:0.000000pt;}
.ws0_c00075{word-spacing:-13.333333pt;}
.ws1_c00075{word-spacing:-11.333333pt;}
.ws2_c00075{word-spacing:0.000000pt;}
._11_c00075{margin-left:-9.973333pt;}
._e_c00075{margin-left:-9.066667pt;}
._d_c00075{margin-left:-6.293333pt;}
._19_c00075{margin-left:-4.792029pt;}
._10_c00075{margin-left:-3.786667pt;}
._f_c00075{margin-left:-2.080000pt;}
._1_c00075{margin-left:-0.960000pt;}
._0_c00075{width:1.120000pt;}
._3_c00075{width:2.026667pt;}
._2_c00075{width:3.200000pt;}
._7_c00075{width:4.266667pt;}
._5_c00075{width:5.226667pt;}
._4_c00075{width:6.720000pt;}
._a_c00075{width:8.426667pt;}
._c_c00075{width:9.386667pt;}
._6_c00075{width:10.346667pt;}
._8_c00075{width:11.360000pt;}
._b_c00075{width:12.266667pt;}
._9_c00075{width:14.346667pt;}
._16_c00075{width:15.786667pt;}
._12_c00075{width:16.800000pt;}
._15_c00075{width:19.253333pt;}
._14_c00075{width:20.480000pt;}
._13_c00075{width:21.973333pt;}
._17_c00075{width:23.493307pt;}
._18_c00075{width:24.453397pt;}
.fs1_c00075{font-size:45.333333pt;}
.fs0_c00075{font-size:53.333333pt;}
.y0_c00075{bottom:0.000000pt;}
.y25_c00075{bottom:57.266686pt;}
.y24_c00075{bottom:97.933353pt;}
.y23_c00075{bottom:111.400020pt;}
.y22_c00075{bottom:125.133353pt;}
.y21_c00075{bottom:138.866686pt;}
.y20_c00075{bottom:152.333353pt;}
.y1f_c00075{bottom:165.800020pt;}
.y1e_c00075{bottom:179.533353pt;}
.y1d_c00075{bottom:235.133353pt;}
.y1c_c00075{bottom:252.466686pt;}
.y1b_c00075{bottom:269.800020pt;}
.y1a_c00075{bottom:287.000020pt;}
.y19_c00075{bottom:304.000020pt;}
.y18_c00075{bottom:321.000020pt;}
.y17_c00075{bottom:338.600020pt;}
.y16_c00075{bottom:355.866686pt;}
.y15_c00075{bottom:372.800020pt;}
.y14_c00075{bottom:390.400020pt;}
.y13_c00075{bottom:407.400020pt;}
.y12_c00075{bottom:425.000020pt;}
.y11_c00075{bottom:442.266686pt;}
.y10_c00075{bottom:459.533353pt;}
.yf_c00075{bottom:476.800020pt;}
.ye_c00075{bottom:510.400020pt;}
.yc_c00075{bottom:561.266686pt;}
.yb_c00075{bottom:578.533353pt;}
.ya_c00075{bottom:595.866686pt;}
.y9_c00075{bottom:612.800020pt;}
.y8_c00075{bottom:630.400020pt;}
.y7_c00075{bottom:647.400020pt;}
.y6_c00075{bottom:664.666686pt;}
.y5_c00075{bottom:681.933353pt;}
.y4_c00075{bottom:698.866686pt;}
.y3_c00075{bottom:716.466686pt;}
.y2_c00075{bottom:733.800020pt;}
.y1_c00075{bottom:750.733353pt;}
.yd_c00075{bottom:788.200020pt;}
.h3_c00075{height:44.470052pt;}
.h4_c00075{height:44.492188pt;}
.h2_c00075{height:52.343750pt;}
.h1_c00075{height:851.333333pt;}
.h0_c00075{height:851.533333pt;}
.w0_c00075{width:570.533360pt;}
.w1_c00075{width:570.666667pt;}
.x0_c00075{left:0.000000pt;}
.x1_c00075{left:72.000000pt;}
.x3_c00075{left:76.800000pt;}
.x4_c00075{left:101.133333pt;}
.x2_c00075{left:144.666667pt;}
.x5_c00075{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_16dbe9d3aae2b9b3dc280a7c.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00076;src:url('chunks/assets/font_90ae992ff74ef1f27729ea61.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00076{letter-spacing:0.000000px;}
.sc__c00076{text-shadow:none;}
.sc0_c00076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00076{-webkit-text-stroke:0px transparent;}
.sc0_c00076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00076{word-spacing:-15.000000px;}
.ws1_c00076{word-spacing:-12.750000px;}
.ws2_c00076{word-spacing:0.000000px;}
._3_c00076{margin-left:-10.211517px;}
._c_c00076{margin-left:-7.260381px;}
._11_c00076{margin-left:-5.366985px;}
._4_c00076{margin-left:-3.600000px;}
._0_c00076{margin-left:-1.760979px;}
._2_c00076{width:1.115931px;}
._1_c00076{width:2.699991px;}
._6_c00076{width:4.248147px;}
._5_c00076{width:5.983677px;}
._8_c00076{width:8.052561px;}
._b_c00076{width:10.032207px;}
._a_c00076{width:11.952234px;}
._f_c00076{width:13.560000px;}
._12_c00076{width:14.806065px;}
._13_c00076{width:16.032138px;}
._7_c00076{width:17.448138px;}
._9_c00076{width:19.115265px;}
._e_c00076{width:20.197287px;}
._d_c00076{width:21.420000px;}
._10_c00076{width:25.271928px;}
.fc1_c00076{color:transparent;}
.fc0_c00076{color:rgb(35,31,32);}
.fs0_c00076{font-size:51.000000px;}
.fs1_c00076{font-size:60.000000px;}
.y0_c00076{bottom:0.000000px;}
.y24_c00076{bottom:64.425022px;}
.y23_c00076{bottom:110.175022px;}
.y22_c00076{bottom:125.325022px;}
.y21_c00076{bottom:140.775022px;}
.y20_c00076{bottom:155.925022px;}
.y1f_c00076{bottom:171.375022px;}
.y1e_c00076{bottom:186.825022px;}
.y1d_c00076{bottom:201.975022px;}
.y1c_c00076{bottom:217.125022px;}
.y1b_c00076{bottom:232.575022px;}
.y1a_c00076{bottom:247.725022px;}
.y19_c00076{bottom:263.175022px;}
.y18_c00076{bottom:303.525022px;}
.y17_c00076{bottom:322.950022px;}
.y16_c00076{bottom:342.000022px;}
.y15_c00076{bottom:361.800022px;}
.y14_c00076{bottom:402.525022px;}
.y13_c00076{bottom:421.575022px;}
.y12_c00076{bottom:481.350022px;}
.y11_c00076{bottom:500.775022px;}
.y10_c00076{bottom:520.200022px;}
.yf_c00076{bottom:539.325022px;}
.ye_c00076{bottom:559.125022px;}
.yd_c00076{bottom:578.550022px;}
.yc_c00076{bottom:615.225022px;}
.yb_c00076{bottom:669.975022px;}
.ya_c00076{bottom:689.400022px;}
.y9_c00076{bottom:709.125022px;}
.y8_c00076{bottom:728.625022px;}
.y7_c00076{bottom:748.125022px;}
.y6_c00076{bottom:767.550022px;}
.y5_c00076{bottom:786.225022px;}
.y4_c00076{bottom:806.025022px;}
.y3_c00076{bottom:825.150022px;}
.y2_c00076{bottom:844.575022px;}
.y1_c00076{bottom:886.725022px;}
.h2_c00076{height:50.028809px;}
.h4_c00076{height:50.053711px;}
.h3_c00076{height:58.886719px;}
.h1_c00076{height:957.750000px;}
.h0_c00076{height:957.975000px;}
.w1_c00076{width:643.500000px;}
.w0_c00076{width:643.650000px;}
.x0_c00076{left:0.000000px;}
.x1_c00076{left:90.750000px;}
.x3_c00076{left:96.450000px;}
.x2_c00076{left:108.750000px;}
.x4_c00076{left:123.825000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls0_c00076{letter-spacing:0.000000pt;}
.ws0_c00076{word-spacing:-13.333333pt;}
.ws1_c00076{word-spacing:-11.333333pt;}
.ws2_c00076{word-spacing:0.000000pt;}
._3_c00076{margin-left:-9.076904pt;}
._c_c00076{margin-left:-6.453672pt;}
._11_c00076{margin-left:-4.770653pt;}
._4_c00076{margin-left:-3.200000pt;}
._0_c00076{margin-left:-1.565315pt;}
._2_c00076{width:0.991939pt;}
._1_c00076{width:2.399992pt;}
._6_c00076{width:3.776131pt;}
._5_c00076{width:5.318824pt;}
._8_c00076{width:7.157832pt;}
._b_c00076{width:8.917517pt;}
._a_c00076{width:10.624208pt;}
._f_c00076{width:12.053333pt;}
._12_c00076{width:13.160947pt;}
._13_c00076{width:14.250789pt;}
._7_c00076{width:15.509456pt;}
._9_c00076{width:16.991347pt;}
._e_c00076{width:17.953144pt;}
._d_c00076{width:19.040000pt;}
._10_c00076{width:22.463936pt;}
.fs0_c00076{font-size:45.333333pt;}
.fs1_c00076{font-size:53.333333pt;}
.y0_c00076{bottom:0.000000pt;}
.y24_c00076{bottom:57.266686pt;}
.y23_c00076{bottom:97.933353pt;}
.y22_c00076{bottom:111.400020pt;}
.y21_c00076{bottom:125.133353pt;}
.y20_c00076{bottom:138.600020pt;}
.y1f_c00076{bottom:152.333353pt;}
.y1e_c00076{bottom:166.066686pt;}
.y1d_c00076{bottom:179.533353pt;}
.y1c_c00076{bottom:193.000020pt;}
.y1b_c00076{bottom:206.733353pt;}
.y1a_c00076{bottom:220.200020pt;}
.y19_c00076{bottom:233.933353pt;}
.y18_c00076{bottom:269.800020pt;}
.y17_c00076{bottom:287.066686pt;}
.y16_c00076{bottom:304.000020pt;}
.y15_c00076{bottom:321.600020pt;}
.y14_c00076{bottom:357.800020pt;}
.y13_c00076{bottom:374.733353pt;}
.y12_c00076{bottom:427.866686pt;}
.y11_c00076{bottom:445.133353pt;}
.y10_c00076{bottom:462.400020pt;}
.yf_c00076{bottom:479.400020pt;}
.ye_c00076{bottom:497.000020pt;}
.yd_c00076{bottom:514.266686pt;}
.yc_c00076{bottom:546.866686pt;}
.yb_c00076{bottom:595.533353pt;}
.ya_c00076{bottom:612.800020pt;}
.y9_c00076{bottom:630.333353pt;}
.y8_c00076{bottom:647.666686pt;}
.y7_c00076{bottom:665.000020pt;}
.y6_c00076{bottom:682.266686pt;}
.y5_c00076{bottom:698.866686pt;}
.y4_c00076{bottom:716.466686pt;}
.y3_c00076{bottom:733.466686pt;}
.y2_c00076{bottom:750.733353pt;}
.y1_c00076{bottom:788.200020pt;}
.h2_c00076{height:44.470052pt;}
.h4_c00076{height:44.492188pt;}
.h3_c00076{height:52.343750pt;}
.h1_c00076{height:851.333333pt;}
.h0_c00076{height:851.533333pt;}
.w1_c00076{width:572.000000pt;}
.w0_c00076{width:572.133333pt;}
.x0_c00076{left:0.000000pt;}
.x1_c00076{left:80.666667pt;}
.x3_c00076{left:85.733333pt;}
.x2_c00076{left:96.666667pt;}
.x4_c00076{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a9a655ac0cf1b89d8b4ecc32.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00077;src:url('chunks/assets/font_aff7f78fd8905d82ebe3eacf.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.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;}
}
.ws1_c00077{word-spacing:-15.000000px;}
.ws0_c00077{word-spacing:-12.750000px;}
.ws2_c00077{word-spacing:0.000000px;}
._12_c00077{margin-left:-13.212021px;}
._11_c00077{margin-left:-11.987979px;}
._3_c00077{margin-left:-10.478994px;}
._f_c00077{margin-left:-9.476997px;}
._14_c00077{margin-left:-7.995177px;}
._15_c00077{margin-left:-6.762000px;}
._18_c00077{margin-left:-5.220138px;}
._b_c00077{margin-left:-3.792015px;}
._2_c00077{margin-left:-1.895976px;}
._0_c00077{width:1.173000px;}
._1_c00077{width:2.531997px;}
._6_c00077{width:3.855003px;}
._9_c00077{width:5.481003px;}
._a_c00077{width:6.542994px;}
._10_c00077{width:7.910820px;}
._e_c00077{width:9.537180px;}
._d_c00077{width:10.872024px;}
._c_c00077{width:12.155976px;}
._5_c00077{width:13.523904px;}
._17_c00077{width:15.563850px;}
._8_c00077{width:16.595976px;}
._4_c00077{width:17.657988px;}
._7_c00077{width:18.735039px;}
._13_c00077{width:20.901000px;}
._16_c00077{width:24.041910px;}
._19_c00077{width:25.541952px;}
._1a_c00077{width:26.741952px;}
.fc1_c00077{color:transparent;}
.fc0_c00077{color:rgb(35,31,32);}
.fs0_c00077{font-size:51.000000px;}
.fs1_c00077{font-size:60.000000px;}
.y0_c00077{bottom:0.000000px;}
.y2c_c00077{bottom:64.425022px;}
.y2b_c00077{bottom:110.175022px;}
.y2a_c00077{bottom:125.625022px;}
.y29_c00077{bottom:141.150022px;}
.y28_c00077{bottom:156.225022px;}
.y27_c00077{bottom:171.375022px;}
.y26_c00077{bottom:186.525022px;}
.y25_c00077{bottom:201.975022px;}
.y24_c00077{bottom:217.125022px;}
.y23_c00077{bottom:232.575022px;}
.y22_c00077{bottom:247.725022px;}
.y21_c00077{bottom:263.175022px;}
.y20_c00077{bottom:278.325022px;}
.y1f_c00077{bottom:293.775022px;}
.y1e_c00077{bottom:308.925022px;}
.y1d_c00077{bottom:324.375022px;}
.y1c_c00077{bottom:339.525022px;}
.y1b_c00077{bottom:355.350022px;}
.y1a_c00077{bottom:370.125022px;}
.y19_c00077{bottom:385.575022px;}
.y18_c00077{bottom:400.725022px;}
.y17_c00077{bottom:416.175022px;}
.y16_c00077{bottom:431.325022px;}
.y15_c00077{bottom:475.575022px;}
.y14_c00077{bottom:495.375022px;}
.y13_c00077{bottom:514.800022px;}
.y12_c00077{bottom:534.225022px;}
.y11_c00077{bottom:553.350022px;}
.y10_c00077{bottom:572.775022px;}
.yf_c00077{bottom:592.200022px;}
.ye_c00077{bottom:611.625022px;}
.yd_c00077{bottom:631.425022px;}
.yc_c00077{bottom:650.925022px;}
.yb_c00077{bottom:670.350022px;}
.ya_c00077{bottom:689.400022px;}
.y9_c00077{bottom:709.200022px;}
.y8_c00077{bottom:728.625022px;}
.y7_c00077{bottom:747.750022px;}
.y6_c00077{bottom:767.550022px;}
.y5_c00077{bottom:786.600022px;}
.y4_c00077{bottom:806.025022px;}
.y3_c00077{bottom:825.150022px;}
.y2_c00077{bottom:844.575022px;}
.y1_c00077{bottom:886.725022px;}
.h2_c00077{height:50.028809px;}
.h4_c00077{height:50.053711px;}
.h3_c00077{height:58.886719px;}
.h1_c00077{height:957.750000px;}
.h0_c00077{height:957.975000px;}
.w0_c00077{width:641.850030px;}
.w1_c00077{width:642.000000px;}
.x0_c00077{left:0.000000px;}
.x2_c00077{left:81.000000px;}
.x4_c00077{left:86.400000px;}
.x3_c00077{left:97.200000px;}
.x5_c00077{left:112.650000px;}
.x6_c00077{left:113.775000px;}
.x1_c00077{left:162.750000px;}
.x7_c00077{left:538.575000px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls0_c00077{letter-spacing:0.000000pt;}
.ws1_c00077{word-spacing:-13.333333pt;}
.ws0_c00077{word-spacing:-11.333333pt;}
.ws2_c00077{word-spacing:0.000000pt;}
._12_c00077{margin-left:-11.744019pt;}
._11_c00077{margin-left:-10.655981pt;}
._3_c00077{margin-left:-9.314661pt;}
._f_c00077{margin-left:-8.423997pt;}
._14_c00077{margin-left:-7.106824pt;}
._15_c00077{margin-left:-6.010667pt;}
._18_c00077{margin-left:-4.640123pt;}
._b_c00077{margin-left:-3.370680pt;}
._2_c00077{margin-left:-1.685312pt;}
._0_c00077{width:1.042667pt;}
._1_c00077{width:2.250664pt;}
._6_c00077{width:3.426669pt;}
._9_c00077{width:4.872003pt;}
._a_c00077{width:5.815995pt;}
._10_c00077{width:7.031840pt;}
._e_c00077{width:8.477493pt;}
._d_c00077{width:9.664021pt;}
._c_c00077{width:10.805312pt;}
._5_c00077{width:12.021248pt;}
._17_c00077{width:13.834533pt;}
._8_c00077{width:14.751979pt;}
._4_c00077{width:15.695989pt;}
._7_c00077{width:16.653368pt;}
._13_c00077{width:18.578667pt;}
._16_c00077{width:21.370587pt;}
._19_c00077{width:22.703957pt;}
._1a_c00077{width:23.770624pt;}
.fs0_c00077{font-size:45.333333pt;}
.fs1_c00077{font-size:53.333333pt;}
.y0_c00077{bottom:0.000000pt;}
.y2c_c00077{bottom:57.266686pt;}
.y2b_c00077{bottom:97.933353pt;}
.y2a_c00077{bottom:111.666686pt;}
.y29_c00077{bottom:125.466686pt;}
.y28_c00077{bottom:138.866686pt;}
.y27_c00077{bottom:152.333353pt;}
.y26_c00077{bottom:165.800020pt;}
.y25_c00077{bottom:179.533353pt;}
.y24_c00077{bottom:193.000020pt;}
.y23_c00077{bottom:206.733353pt;}
.y22_c00077{bottom:220.200020pt;}
.y21_c00077{bottom:233.933353pt;}
.y20_c00077{bottom:247.400020pt;}
.y1f_c00077{bottom:261.133353pt;}
.y1e_c00077{bottom:274.600020pt;}
.y1d_c00077{bottom:288.333353pt;}
.y1c_c00077{bottom:301.800020pt;}
.y1b_c00077{bottom:315.866686pt;}
.y1a_c00077{bottom:329.000020pt;}
.y19_c00077{bottom:342.733353pt;}
.y18_c00077{bottom:356.200020pt;}
.y17_c00077{bottom:369.933353pt;}
.y16_c00077{bottom:383.400020pt;}
.y15_c00077{bottom:422.733353pt;}
.y14_c00077{bottom:440.333353pt;}
.y13_c00077{bottom:457.600020pt;}
.y12_c00077{bottom:474.866686pt;}
.y11_c00077{bottom:491.866686pt;}
.y10_c00077{bottom:509.133353pt;}
.yf_c00077{bottom:526.400020pt;}
.ye_c00077{bottom:543.666686pt;}
.yd_c00077{bottom:561.266686pt;}
.yc_c00077{bottom:578.600020pt;}
.yb_c00077{bottom:595.866686pt;}
.ya_c00077{bottom:612.800020pt;}
.y9_c00077{bottom:630.400020pt;}
.y8_c00077{bottom:647.666686pt;}
.y7_c00077{bottom:664.666686pt;}
.y6_c00077{bottom:682.266686pt;}
.y5_c00077{bottom:699.200020pt;}
.y4_c00077{bottom:716.466686pt;}
.y3_c00077{bottom:733.466686pt;}
.y2_c00077{bottom:750.733353pt;}
.y1_c00077{bottom:788.200020pt;}
.h2_c00077{height:44.470052pt;}
.h4_c00077{height:44.492188pt;}
.h3_c00077{height:52.343750pt;}
.h1_c00077{height:851.333333pt;}
.h0_c00077{height:851.533333pt;}
.w0_c00077{width:570.533360pt;}
.w1_c00077{width:570.666667pt;}
.x0_c00077{left:0.000000pt;}
.x2_c00077{left:72.000000pt;}
.x4_c00077{left:76.800000pt;}
.x3_c00077{left:86.400000pt;}
.x5_c00077{left:100.133333pt;}
.x6_c00077{left:101.133333pt;}
.x1_c00077{left:144.666667pt;}
.x7_c00077{left:478.733333pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00078 {
      width: 900px;
      min-height: 280px;
      margin: 16px auto;
      background: #fff;
      border: 1px solid #e5e7eb;
      box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
      position: relative;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    .scieee-page-failed_c00078 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00078 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00078 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_32e22e4de9344553b01997d1.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00079;src:url('chunks/assets/font_8fc5504b794ac54e8bc600c6.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00079{letter-spacing:0.000000px;}
.sc__c00079{text-shadow:none;}
.sc0_c00079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00079{-webkit-text-stroke:0px transparent;}
.sc0_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00079{word-spacing:-15.000000px;}
.ws0_c00079{word-spacing:-12.750000px;}
.ws2_c00079{word-spacing:0.000000px;}
._f_c00079{margin-left:-13.500000px;}
._10_c00079{margin-left:-11.700000px;}
._e_c00079{margin-left:-10.440000px;}
._11_c00079{margin-left:-9.000000px;}
._8_c00079{margin-left:-4.560000px;}
._3_c00079{margin-left:-2.760000px;}
._0_c00079{margin-left:-1.080000px;}
._2_c00079{width:1.680000px;}
._4_c00079{width:2.880000px;}
._12_c00079{width:3.900000px;}
._1_c00079{width:4.920000px;}
._d_c00079{width:6.180000px;}
._9_c00079{width:7.200000px;}
._a_c00079{width:8.880000px;}
._b_c00079{width:10.380000px;}
._c_c00079{width:11.640000px;}
._5_c00079{width:13.500000px;}
._7_c00079{width:16.800000px;}
._6_c00079{width:18.360000px;}
._13_c00079{width:19.380000px;}
._14_c00079{width:24.089958px;}
._15_c00079{width:27.029997px;}
.fc1_c00079{color:transparent;}
.fc0_c00079{color:rgb(35,31,32);}
.fs1_c00079{font-size:51.000000px;}
.fs0_c00079{font-size:60.000000px;}
.y0_c00079{bottom:0.000000px;}
.y24_c00079{bottom:64.425022px;}
.y23_c00079{bottom:110.175022px;}
.y22_c00079{bottom:125.325022px;}
.y21_c00079{bottom:140.775022px;}
.y20_c00079{bottom:155.925022px;}
.y1f_c00079{bottom:171.375022px;}
.y1e_c00079{bottom:186.825022px;}
.y1d_c00079{bottom:201.975022px;}
.y1c_c00079{bottom:217.125022px;}
.y1b_c00079{bottom:290.550022px;}
.y1a_c00079{bottom:309.600022px;}
.y19_c00079{bottom:329.025022px;}
.y18_c00079{bottom:348.825022px;}
.y17_c00079{bottom:368.325022px;}
.y16_c00079{bottom:387.750022px;}
.y15_c00079{bottom:406.800022px;}
.y14_c00079{bottom:426.600022px;}
.y13_c00079{bottom:445.725022px;}
.y12_c00079{bottom:465.525022px;}
.y11_c00079{bottom:484.575022px;}
.y10_c00079{bottom:504.375022px;}
.yf_c00079{bottom:523.800022px;}
.ye_c00079{bottom:542.925022px;}
.yd_c00079{bottom:562.725022px;}
.yc_c00079{bottom:582.150022px;}
.yb_c00079{bottom:619.950022px;}
.y9_c00079{bottom:671.025022px;}
.y8_c00079{bottom:690.525022px;}
.y7_c00079{bottom:709.950022px;}
.y6_c00079{bottom:728.925022px;}
.y5_c00079{bottom:748.425022px;}
.y4_c00079{bottom:767.925022px;}
.y3_c00079{bottom:786.975022px;}
.y2_c00079{bottom:806.775022px;}
.y1_c00079{bottom:844.950022px;}
.ya_c00079{bottom:886.725022px;}
.h3_c00079{height:50.028809px;}
.h4_c00079{height:50.053711px;}
.h2_c00079{height:58.886719px;}
.h1_c00079{height:957.750000px;}
.h0_c00079{height:957.975000px;}
.w0_c00079{width:641.850030px;}
.w1_c00079{width:642.000000px;}
.x0_c00079{left:0.000000px;}
.x3_c00079{left:80.250000px;}
.x1_c00079{left:81.375000px;}
.x4_c00079{left:86.400000px;}
.x5_c00079{left:114.150000px;}
.x2_c00079{left:162.750000px;}
.x6_c00079{left:538.575000px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls0_c00079{letter-spacing:0.000000pt;}
.ws1_c00079{word-spacing:-13.333333pt;}
.ws0_c00079{word-spacing:-11.333333pt;}
.ws2_c00079{word-spacing:0.000000pt;}
._f_c00079{margin-left:-12.000000pt;}
._10_c00079{margin-left:-10.400000pt;}
._e_c00079{margin-left:-9.280000pt;}
._11_c00079{margin-left:-8.000000pt;}
._8_c00079{margin-left:-4.053333pt;}
._3_c00079{margin-left:-2.453333pt;}
._0_c00079{margin-left:-0.960000pt;}
._2_c00079{width:1.493333pt;}
._4_c00079{width:2.560000pt;}
._12_c00079{width:3.466667pt;}
._1_c00079{width:4.373333pt;}
._d_c00079{width:5.493333pt;}
._9_c00079{width:6.400000pt;}
._a_c00079{width:7.893333pt;}
._b_c00079{width:9.226667pt;}
._c_c00079{width:10.346667pt;}
._5_c00079{width:12.000000pt;}
._7_c00079{width:14.933333pt;}
._6_c00079{width:16.320000pt;}
._13_c00079{width:17.226667pt;}
._14_c00079{width:21.413296pt;}
._15_c00079{width:24.026664pt;}
.fs1_c00079{font-size:45.333333pt;}
.fs0_c00079{font-size:53.333333pt;}
.y0_c00079{bottom:0.000000pt;}
.y24_c00079{bottom:57.266686pt;}
.y23_c00079{bottom:97.933353pt;}
.y22_c00079{bottom:111.400020pt;}
.y21_c00079{bottom:125.133353pt;}
.y20_c00079{bottom:138.600020pt;}
.y1f_c00079{bottom:152.333353pt;}
.y1e_c00079{bottom:166.066686pt;}
.y1d_c00079{bottom:179.533353pt;}
.y1c_c00079{bottom:193.000020pt;}
.y1b_c00079{bottom:258.266686pt;}
.y1a_c00079{bottom:275.200020pt;}
.y19_c00079{bottom:292.466686pt;}
.y18_c00079{bottom:310.066686pt;}
.y17_c00079{bottom:327.400020pt;}
.y16_c00079{bottom:344.666686pt;}
.y15_c00079{bottom:361.600020pt;}
.y14_c00079{bottom:379.200020pt;}
.y13_c00079{bottom:396.200020pt;}
.y12_c00079{bottom:413.800020pt;}
.y11_c00079{bottom:430.733353pt;}
.y10_c00079{bottom:448.333353pt;}
.yf_c00079{bottom:465.600020pt;}
.ye_c00079{bottom:482.600020pt;}
.yd_c00079{bottom:500.200020pt;}
.yc_c00079{bottom:517.466686pt;}
.yb_c00079{bottom:551.066686pt;}
.y9_c00079{bottom:596.466686pt;}
.y8_c00079{bottom:613.800020pt;}
.y7_c00079{bottom:631.066686pt;}
.y6_c00079{bottom:647.933353pt;}
.y5_c00079{bottom:665.266686pt;}
.y4_c00079{bottom:682.600020pt;}
.y3_c00079{bottom:699.533353pt;}
.y2_c00079{bottom:717.133353pt;}
.y1_c00079{bottom:751.066686pt;}
.ya_c00079{bottom:788.200020pt;}
.h3_c00079{height:44.470052pt;}
.h4_c00079{height:44.492188pt;}
.h2_c00079{height:52.343750pt;}
.h1_c00079{height:851.333333pt;}
.h0_c00079{height:851.533333pt;}
.w0_c00079{width:570.533360pt;}
.w1_c00079{width:570.666667pt;}
.x0_c00079{left:0.000000pt;}
.x3_c00079{left:71.333333pt;}
.x1_c00079{left:72.333333pt;}
.x4_c00079{left:76.800000pt;}
.x5_c00079{left:101.466667pt;}
.x2_c00079{left:144.666667pt;}
.x6_c00079{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bcd312e4b7ef74c7c75ade74.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00080;src:url('chunks/assets/font_97590a57252cfa91708e2712.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00080{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_c00080{vertical-align:0.000000px;}
.ls0_c00080{letter-spacing:0.000000px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00080{word-spacing:-15.000000px;}
.ws0_c00080{word-spacing:-12.750000px;}
.ws2_c00080{word-spacing:0.000000px;}
._12_c00080{margin-left:-11.717697px;}
._8_c00080{margin-left:-10.175178px;}
._c_c00080{margin-left:-8.159310px;}
._7_c00080{margin-left:-6.611853px;}
._11_c00080{margin-left:-4.591995px;}
._15_c00080{margin-left:-3.487107px;}
._0_c00080{margin-left:-1.760979px;}
._2_c00080{width:1.115931px;}
._1_c00080{width:2.699991px;}
._5_c00080{width:3.783072px;}
._9_c00080{width:4.800000px;}
._a_c00080{width:6.396348px;}
._13_c00080{width:7.837398px;}
._f_c00080{width:8.952198px;}
._d_c00080{width:10.264158px;}
._10_c00080{width:11.331375px;}
._b_c00080{width:12.432216px;}
._6_c00080{width:13.800000px;}
._18_c00080{width:14.826324px;}
._4_c00080{width:16.056966px;}
._3_c00080{width:17.577282px;}
._e_c00080{width:19.740027px;}
._19_c00080{width:20.771994px;}
._14_c00080{width:21.948837px;}
._16_c00080{width:24.032937px;}
._17_c00080{width:25.271928px;}
.fc1_c00080{color:transparent;}
.fc0_c00080{color:rgb(35,31,32);}
.fs0_c00080{font-size:51.000000px;}
.fs1_c00080{font-size:60.000000px;}
.y0_c00080{bottom:0.000000px;}
.y2a_c00080{bottom:64.425022px;}
.y29_c00080{bottom:110.175022px;}
.y28_c00080{bottom:125.625022px;}
.y27_c00080{bottom:140.775022px;}
.y26_c00080{bottom:156.225022px;}
.y25_c00080{bottom:171.750022px;}
.y24_c00080{bottom:186.825022px;}
.y23_c00080{bottom:201.900022px;}
.y22_c00080{bottom:217.425022px;}
.y21_c00080{bottom:232.950022px;}
.y20_c00080{bottom:248.025022px;}
.y1f_c00080{bottom:263.550022px;}
.y1e_c00080{bottom:278.325022px;}
.y1d_c00080{bottom:294.150022px;}
.y1c_c00080{bottom:308.925022px;}
.y1b_c00080{bottom:324.750022px;}
.y1a_c00080{bottom:339.525022px;}
.y19_c00080{bottom:355.350022px;}
.y18_c00080{bottom:370.125022px;}
.y17_c00080{bottom:385.575022px;}
.y16_c00080{bottom:456.525022px;}
.y15_c00080{bottom:475.575022px;}
.y14_c00080{bottom:495.450022px;}
.y13_c00080{bottom:514.875022px;}
.y12_c00080{bottom:534.300022px;}
.y11_c00080{bottom:553.725022px;}
.y10_c00080{bottom:573.150022px;}
.yf_c00080{bottom:592.200022px;}
.ye_c00080{bottom:612.000022px;}
.yd_c00080{bottom:631.125022px;}
.yc_c00080{bottom:650.550022px;}
.yb_c00080{bottom:670.350022px;}
.ya_c00080{bottom:689.775022px;}
.y9_c00080{bottom:709.200022px;}
.y8_c00080{bottom:728.325022px;}
.y7_c00080{bottom:747.750022px;}
.y6_c00080{bottom:767.550022px;}
.y5_c00080{bottom:786.600022px;}
.y4_c00080{bottom:806.025022px;}
.y3_c00080{bottom:825.525022px;}
.y2_c00080{bottom:844.575022px;}
.y1_c00080{bottom:886.725022px;}
.h2_c00080{height:50.028809px;}
.h4_c00080{height:50.053711px;}
.h3_c00080{height:58.886719px;}
.h1_c00080{height:957.750000px;}
.h0_c00080{height:957.975000px;}
.w1_c00080{width:643.500000px;}
.w0_c00080{width:643.650000px;}
.x0_c00080{left:0.000000px;}
.x1_c00080{left:90.750000px;}
.x3_c00080{left:96.450000px;}
.x2_c00080{left:106.950000px;}
.x4_c00080{left:123.825000px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls0_c00080{letter-spacing:0.000000pt;}
.ws1_c00080{word-spacing:-13.333333pt;}
.ws0_c00080{word-spacing:-11.333333pt;}
.ws2_c00080{word-spacing:0.000000pt;}
._12_c00080{margin-left:-10.415731pt;}
._8_c00080{margin-left:-9.044603pt;}
._c_c00080{margin-left:-7.252720pt;}
._7_c00080{margin-left:-5.877203pt;}
._11_c00080{margin-left:-4.081773pt;}
._15_c00080{margin-left:-3.099651pt;}
._0_c00080{margin-left:-1.565315pt;}
._2_c00080{width:0.991939pt;}
._1_c00080{width:2.399992pt;}
._5_c00080{width:3.362731pt;}
._9_c00080{width:4.266667pt;}
._a_c00080{width:5.685643pt;}
._13_c00080{width:6.966576pt;}
._f_c00080{width:7.957509pt;}
._d_c00080{width:9.123696pt;}
._10_c00080{width:10.072333pt;}
._b_c00080{width:11.050859pt;}
._6_c00080{width:12.266667pt;}
._18_c00080{width:13.178955pt;}
._4_c00080{width:14.272859pt;}
._3_c00080{width:15.624251pt;}
._e_c00080{width:17.546691pt;}
._19_c00080{width:18.463995pt;}
._14_c00080{width:19.510077pt;}
._16_c00080{width:21.362611pt;}
._17_c00080{width:22.463936pt;}
.fs0_c00080{font-size:45.333333pt;}
.fs1_c00080{font-size:53.333333pt;}
.y0_c00080{bottom:0.000000pt;}
.y2a_c00080{bottom:57.266686pt;}
.y29_c00080{bottom:97.933353pt;}
.y28_c00080{bottom:111.666686pt;}
.y27_c00080{bottom:125.133353pt;}
.y26_c00080{bottom:138.866686pt;}
.y25_c00080{bottom:152.666686pt;}
.y24_c00080{bottom:166.066686pt;}
.y23_c00080{bottom:179.466686pt;}
.y22_c00080{bottom:193.266686pt;}
.y21_c00080{bottom:207.066686pt;}
.y20_c00080{bottom:220.466686pt;}
.y1f_c00080{bottom:234.266686pt;}
.y1e_c00080{bottom:247.400020pt;}
.y1d_c00080{bottom:261.466686pt;}
.y1c_c00080{bottom:274.600020pt;}
.y1b_c00080{bottom:288.666686pt;}
.y1a_c00080{bottom:301.800020pt;}
.y19_c00080{bottom:315.866686pt;}
.y18_c00080{bottom:329.000020pt;}
.y17_c00080{bottom:342.733353pt;}
.y16_c00080{bottom:405.800020pt;}
.y15_c00080{bottom:422.733353pt;}
.y14_c00080{bottom:440.400020pt;}
.y13_c00080{bottom:457.666686pt;}
.y12_c00080{bottom:474.933353pt;}
.y11_c00080{bottom:492.200020pt;}
.y10_c00080{bottom:509.466686pt;}
.yf_c00080{bottom:526.400020pt;}
.ye_c00080{bottom:544.000020pt;}
.yd_c00080{bottom:561.000020pt;}
.yc_c00080{bottom:578.266686pt;}
.yb_c00080{bottom:595.866686pt;}
.ya_c00080{bottom:613.133353pt;}
.y9_c00080{bottom:630.400020pt;}
.y8_c00080{bottom:647.400020pt;}
.y7_c00080{bottom:664.666686pt;}
.y6_c00080{bottom:682.266686pt;}
.y5_c00080{bottom:699.200020pt;}
.y4_c00080{bottom:716.466686pt;}
.y3_c00080{bottom:733.800020pt;}
.y2_c00080{bottom:750.733353pt;}
.y1_c00080{bottom:788.200020pt;}
.h2_c00080{height:44.470052pt;}
.h4_c00080{height:44.492188pt;}
.h3_c00080{height:52.343750pt;}
.h1_c00080{height:851.333333pt;}
.h0_c00080{height:851.533333pt;}
.w1_c00080{width:572.000000pt;}
.w0_c00080{width:572.133333pt;}
.x0_c00080{left:0.000000pt;}
.x1_c00080{left:80.666667pt;}
.x3_c00080{left:85.733333pt;}
.x2_c00080{left:95.066667pt;}
.x4_c00080{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fd337586b58df0cec3b19fa5.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00081;src:url('chunks/assets/font_b2f6bf9414ca6e4233eb1f2e.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00081{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_c00081{vertical-align:0.000000px;}
.ls0_c00081{letter-spacing:0.000000px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00081{word-spacing:-15.000000px;}
.ws0_c00081{word-spacing:-12.750000px;}
.ws2_c00081{word-spacing:0.000000px;}
._12_c00081{margin-left:-15.600000px;}
._15_c00081{margin-left:-12.480000px;}
._4_c00081{margin-left:-10.740000px;}
._5_c00081{margin-left:-9.060000px;}
._1b_c00081{margin-left:-7.500000px;}
._d_c00081{margin-left:-5.820000px;}
._9_c00081{margin-left:-4.440000px;}
._11_c00081{margin-left:-3.060000px;}
._f_c00081{margin-left:-1.440000px;}
._0_c00081{width:1.440000px;}
._6_c00081{width:2.640000px;}
._8_c00081{width:3.660000px;}
._17_c00081{width:4.920000px;}
._13_c00081{width:6.060000px;}
._7_c00081{width:7.440000px;}
._14_c00081{width:8.880000px;}
._16_c00081{width:9.960000px;}
._3_c00081{width:11.040000px;}
._a_c00081{width:12.660000px;}
._1_c00081{width:13.800000px;}
._2_c00081{width:16.020000px;}
._c_c00081{width:17.220000px;}
._b_c00081{width:18.780000px;}
._10_c00081{width:20.640000px;}
._e_c00081{width:22.500000px;}
._1c_c00081{width:24.060000px;}
._1d_c00081{width:25.830051px;}
._18_c00081{width:27.060000px;}
._19_c00081{width:28.680000px;}
._1a_c00081{width:30.060000px;}
.fc1_c00081{color:transparent;}
.fc0_c00081{color:rgb(35,31,32);}
.fs1_c00081{font-size:51.000000px;}
.fs0_c00081{font-size:60.000000px;}
.y0_c00081{bottom:0.000000px;}
.y27_c00081{bottom:64.425022px;}
.y26_c00081{bottom:110.175022px;}
.y25_c00081{bottom:125.325022px;}
.y24_c00081{bottom:141.150022px;}
.y23_c00081{bottom:155.925022px;}
.y22_c00081{bottom:171.375022px;}
.y21_c00081{bottom:186.825022px;}
.y20_c00081{bottom:202.350022px;}
.y1f_c00081{bottom:217.125022px;}
.y1e_c00081{bottom:232.950022px;}
.y1d_c00081{bottom:247.725022px;}
.y1c_c00081{bottom:287.625022px;}
.y1b_c00081{bottom:307.425022px;}
.y1a_c00081{bottom:326.925022px;}
.y19_c00081{bottom:345.975022px;}
.y18_c00081{bottom:365.775022px;}
.y17_c00081{bottom:384.825022px;}
.y16_c00081{bottom:404.625022px;}
.y15_c00081{bottom:443.175022px;}
.y13_c00081{bottom:495.375022px;}
.y12_c00081{bottom:514.425022px;}
.y11_c00081{bottom:534.300022px;}
.y10_c00081{bottom:553.725022px;}
.yf_c00081{bottom:573.150022px;}
.ye_c00081{bottom:592.200022px;}
.yd_c00081{bottom:612.000022px;}
.yc_c00081{bottom:631.125022px;}
.yb_c00081{bottom:650.550022px;}
.ya_c00081{bottom:669.975022px;}
.y9_c00081{bottom:689.775022px;}
.y8_c00081{bottom:708.825022px;}
.y7_c00081{bottom:728.325022px;}
.y6_c00081{bottom:748.125022px;}
.y5_c00081{bottom:767.550022px;}
.y4_c00081{bottom:786.600022px;}
.y3_c00081{bottom:806.100022px;}
.y2_c00081{bottom:825.525022px;}
.y1_c00081{bottom:844.950022px;}
.y14_c00081{bottom:886.725022px;}
.h3_c00081{height:50.028809px;}
.h4_c00081{height:50.053711px;}
.h2_c00081{height:58.886719px;}
.h1_c00081{height:957.750000px;}
.h0_c00081{height:957.975000px;}
.w0_c00081{width:641.850030px;}
.w1_c00081{width:642.000000px;}
.x0_c00081{left:0.000000px;}
.x1_c00081{left:80.625000px;}
.x4_c00081{left:81.750000px;}
.x5_c00081{left:86.400000px;}
.x2_c00081{left:97.200000px;}
.x6_c00081{left:113.775000px;}
.x3_c00081{left:162.750000px;}
.x7_c00081{left:538.575000px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls0_c00081{letter-spacing:0.000000pt;}
.ws1_c00081{word-spacing:-13.333333pt;}
.ws0_c00081{word-spacing:-11.333333pt;}
.ws2_c00081{word-spacing:0.000000pt;}
._12_c00081{margin-left:-13.866667pt;}
._15_c00081{margin-left:-11.093333pt;}
._4_c00081{margin-left:-9.546667pt;}
._5_c00081{margin-left:-8.053333pt;}
._1b_c00081{margin-left:-6.666667pt;}
._d_c00081{margin-left:-5.173333pt;}
._9_c00081{margin-left:-3.946667pt;}
._11_c00081{margin-left:-2.720000pt;}
._f_c00081{margin-left:-1.280000pt;}
._0_c00081{width:1.280000pt;}
._6_c00081{width:2.346667pt;}
._8_c00081{width:3.253333pt;}
._17_c00081{width:4.373333pt;}
._13_c00081{width:5.386667pt;}
._7_c00081{width:6.613333pt;}
._14_c00081{width:7.893333pt;}
._16_c00081{width:8.853333pt;}
._3_c00081{width:9.813333pt;}
._a_c00081{width:11.253333pt;}
._1_c00081{width:12.266667pt;}
._2_c00081{width:14.240000pt;}
._c_c00081{width:15.306667pt;}
._b_c00081{width:16.693333pt;}
._10_c00081{width:18.346667pt;}
._e_c00081{width:20.000000pt;}
._1c_c00081{width:21.386667pt;}
._1d_c00081{width:22.960045pt;}
._18_c00081{width:24.053333pt;}
._19_c00081{width:25.493333pt;}
._1a_c00081{width:26.720000pt;}
.fs1_c00081{font-size:45.333333pt;}
.fs0_c00081{font-size:53.333333pt;}
.y0_c00081{bottom:0.000000pt;}
.y27_c00081{bottom:57.266686pt;}
.y26_c00081{bottom:97.933353pt;}
.y25_c00081{bottom:111.400020pt;}
.y24_c00081{bottom:125.466686pt;}
.y23_c00081{bottom:138.600020pt;}
.y22_c00081{bottom:152.333353pt;}
.y21_c00081{bottom:166.066686pt;}
.y20_c00081{bottom:179.866686pt;}
.y1f_c00081{bottom:193.000020pt;}
.y1e_c00081{bottom:207.066686pt;}
.y1d_c00081{bottom:220.200020pt;}
.y1c_c00081{bottom:255.666686pt;}
.y1b_c00081{bottom:273.266686pt;}
.y1a_c00081{bottom:290.600020pt;}
.y19_c00081{bottom:307.533353pt;}
.y18_c00081{bottom:325.133353pt;}
.y17_c00081{bottom:342.066686pt;}
.y16_c00081{bottom:359.666686pt;}
.y15_c00081{bottom:393.933353pt;}
.y13_c00081{bottom:440.333353pt;}
.y12_c00081{bottom:457.266686pt;}
.y11_c00081{bottom:474.933353pt;}
.y10_c00081{bottom:492.200020pt;}
.yf_c00081{bottom:509.466686pt;}
.ye_c00081{bottom:526.400020pt;}
.yd_c00081{bottom:544.000020pt;}
.yc_c00081{bottom:561.000020pt;}
.yb_c00081{bottom:578.266686pt;}
.ya_c00081{bottom:595.533353pt;}
.y9_c00081{bottom:613.133353pt;}
.y8_c00081{bottom:630.066686pt;}
.y7_c00081{bottom:647.400020pt;}
.y6_c00081{bottom:665.000020pt;}
.y5_c00081{bottom:682.266686pt;}
.y4_c00081{bottom:699.200020pt;}
.y3_c00081{bottom:716.533353pt;}
.y2_c00081{bottom:733.800020pt;}
.y1_c00081{bottom:751.066686pt;}
.y14_c00081{bottom:788.200020pt;}
.h3_c00081{height:44.470052pt;}
.h4_c00081{height:44.492188pt;}
.h2_c00081{height:52.343750pt;}
.h1_c00081{height:851.333333pt;}
.h0_c00081{height:851.533333pt;}
.w0_c00081{width:570.533360pt;}
.w1_c00081{width:570.666667pt;}
.x0_c00081{left:0.000000pt;}
.x1_c00081{left:71.666667pt;}
.x4_c00081{left:72.666667pt;}
.x5_c00081{left:76.800000pt;}
.x2_c00081{left:86.400000pt;}
.x6_c00081{left:101.133333pt;}
.x3_c00081{left:144.666667pt;}
.x7_c00081{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_02763ba16d208e247259f96d.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00082;src:url('chunks/assets/font_fbfe73534514362d7a902295.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00082{letter-spacing:0.000000px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00082{word-spacing:-15.000000px;}
.ws0_c00082{word-spacing:-12.750000px;}
.ws2_c00082{word-spacing:0.000000px;}
._7_c00082{margin-left:-11.171337px;}
._6_c00082{margin-left:-9.828663px;}
._f_c00082{margin-left:-8.015931px;}
._18_c00082{margin-left:-6.530856px;}
._5_c00082{margin-left:-4.910358px;}
._4_c00082{margin-left:-3.189642px;}
._0_c00082{margin-left:-1.760979px;}
._2_c00082{width:1.115931px;}
._1_c00082{width:2.699991px;}
._b_c00082{width:3.768165px;}
._c_c00082{width:4.798497px;}
._a_c00082{width:6.223362px;}
._9_c00082{width:7.584078px;}
._e_c00082{width:8.700708px;}
._d_c00082{width:9.789669px;}
._13_c00082{width:10.871871px;}
._10_c00082{width:12.144594px;}
._8_c00082{width:13.800000px;}
._17_c00082{width:15.454173px;}
._3_c00082{width:17.100726px;}
._11_c00082{width:18.696285px;}
._16_c00082{width:20.226396px;}
._12_c00082{width:22.908819px;}
._14_c00082{width:25.271958px;}
._15_c00082{width:26.472009px;}
.fc1_c00082{color:transparent;}
.fc0_c00082{color:rgb(35,31,32);}
.fs0_c00082{font-size:51.000000px;}
.fs1_c00082{font-size:60.000000px;}
.y0_c00082{bottom:0.000000px;}
.y2b_c00082{bottom:64.800022px;}
.y2a_c00082{bottom:109.800022px;}
.y29_c00082{bottom:125.625022px;}
.y28_c00082{bottom:141.150022px;}
.y27_c00082{bottom:155.925022px;}
.y26_c00082{bottom:171.750022px;}
.y25_c00082{bottom:186.825022px;}
.y24_c00082{bottom:201.975022px;}
.y23_c00082{bottom:217.125022px;}
.y22_c00082{bottom:232.575022px;}
.y21_c00082{bottom:247.725022px;}
.y20_c00082{bottom:263.550022px;}
.y1f_c00082{bottom:278.325022px;}
.y1e_c00082{bottom:293.775022px;}
.y1d_c00082{bottom:308.925022px;}
.y1c_c00082{bottom:324.375022px;}
.y1b_c00082{bottom:339.525022px;}
.y1a_c00082{bottom:355.350022px;}
.y19_c00082{bottom:370.125022px;}
.y18_c00082{bottom:385.950022px;}
.y17_c00082{bottom:400.725022px;}
.y16_c00082{bottom:416.550022px;}
.y15_c00082{bottom:431.625022px;}
.y14_c00082{bottom:446.775022px;}
.y13_c00082{bottom:461.925022px;}
.y12_c00082{bottom:477.375022px;}
.y11_c00082{bottom:553.350022px;}
.y10_c00082{bottom:573.150022px;}
.yf_c00082{bottom:592.200022px;}
.ye_c00082{bottom:612.000022px;}
.yd_c00082{bottom:631.125022px;}
.yc_c00082{bottom:650.925022px;}
.yb_c00082{bottom:669.975022px;}
.ya_c00082{bottom:689.400022px;}
.y9_c00082{bottom:709.200022px;}
.y8_c00082{bottom:728.325022px;}
.y7_c00082{bottom:748.125022px;}
.y6_c00082{bottom:767.550022px;}
.y5_c00082{bottom:786.600022px;}
.y4_c00082{bottom:806.025022px;}
.y3_c00082{bottom:825.525022px;}
.y2_c00082{bottom:844.575022px;}
.y1_c00082{bottom:886.725022px;}
.h2_c00082{height:50.028809px;}
.h4_c00082{height:50.053711px;}
.h3_c00082{height:58.886719px;}
.h1_c00082{height:957.750000px;}
.h0_c00082{height:957.975000px;}
.w1_c00082{width:643.500000px;}
.w0_c00082{width:643.650000px;}
.x0_c00082{left:0.000000px;}
.x1_c00082{left:90.750000px;}
.x3_c00082{left:96.150000px;}
.x2_c00082{left:123.450000px;}
.x4_c00082{left:124.575000px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls0_c00082{letter-spacing:0.000000pt;}
.ws1_c00082{word-spacing:-13.333333pt;}
.ws0_c00082{word-spacing:-11.333333pt;}
.ws2_c00082{word-spacing:0.000000pt;}
._7_c00082{margin-left:-9.930077pt;}
._6_c00082{margin-left:-8.736589pt;}
._f_c00082{margin-left:-7.125272pt;}
._18_c00082{margin-left:-5.805205pt;}
._5_c00082{margin-left:-4.364763pt;}
._4_c00082{margin-left:-2.835237pt;}
._0_c00082{margin-left:-1.565315pt;}
._2_c00082{width:0.991939pt;}
._1_c00082{width:2.399992pt;}
._b_c00082{width:3.349480pt;}
._c_c00082{width:4.265331pt;}
._a_c00082{width:5.531877pt;}
._9_c00082{width:6.741403pt;}
._e_c00082{width:7.733963pt;}
._d_c00082{width:8.701928pt;}
._13_c00082{width:9.663885pt;}
._10_c00082{width:10.795195pt;}
._8_c00082{width:12.266667pt;}
._17_c00082{width:13.737043pt;}
._3_c00082{width:15.200645pt;}
._11_c00082{width:16.618920pt;}
._16_c00082{width:17.979019pt;}
._12_c00082{width:20.363395pt;}
._14_c00082{width:22.463963pt;}
._15_c00082{width:23.530675pt;}
.fs0_c00082{font-size:45.333333pt;}
.fs1_c00082{font-size:53.333333pt;}
.y0_c00082{bottom:0.000000pt;}
.y2b_c00082{bottom:57.600020pt;}
.y2a_c00082{bottom:97.600020pt;}
.y29_c00082{bottom:111.666686pt;}
.y28_c00082{bottom:125.466686pt;}
.y27_c00082{bottom:138.600020pt;}
.y26_c00082{bottom:152.666686pt;}
.y25_c00082{bottom:166.066686pt;}
.y24_c00082{bottom:179.533353pt;}
.y23_c00082{bottom:193.000020pt;}
.y22_c00082{bottom:206.733353pt;}
.y21_c00082{bottom:220.200020pt;}
.y20_c00082{bottom:234.266686pt;}
.y1f_c00082{bottom:247.400020pt;}
.y1e_c00082{bottom:261.133353pt;}
.y1d_c00082{bottom:274.600020pt;}
.y1c_c00082{bottom:288.333353pt;}
.y1b_c00082{bottom:301.800020pt;}
.y1a_c00082{bottom:315.866686pt;}
.y19_c00082{bottom:329.000020pt;}
.y18_c00082{bottom:343.066686pt;}
.y17_c00082{bottom:356.200020pt;}
.y16_c00082{bottom:370.266686pt;}
.y15_c00082{bottom:383.666686pt;}
.y14_c00082{bottom:397.133353pt;}
.y13_c00082{bottom:410.600020pt;}
.y12_c00082{bottom:424.333353pt;}
.y11_c00082{bottom:491.866686pt;}
.y10_c00082{bottom:509.466686pt;}
.yf_c00082{bottom:526.400020pt;}
.ye_c00082{bottom:544.000020pt;}
.yd_c00082{bottom:561.000020pt;}
.yc_c00082{bottom:578.600020pt;}
.yb_c00082{bottom:595.533353pt;}
.ya_c00082{bottom:612.800020pt;}
.y9_c00082{bottom:630.400020pt;}
.y8_c00082{bottom:647.400020pt;}
.y7_c00082{bottom:665.000020pt;}
.y6_c00082{bottom:682.266686pt;}
.y5_c00082{bottom:699.200020pt;}
.y4_c00082{bottom:716.466686pt;}
.y3_c00082{bottom:733.800020pt;}
.y2_c00082{bottom:750.733353pt;}
.y1_c00082{bottom:788.200020pt;}
.h2_c00082{height:44.470052pt;}
.h4_c00082{height:44.492188pt;}
.h3_c00082{height:52.343750pt;}
.h1_c00082{height:851.333333pt;}
.h0_c00082{height:851.533333pt;}
.w1_c00082{width:572.000000pt;}
.w0_c00082{width:572.133333pt;}
.x0_c00082{left:0.000000pt;}
.x1_c00082{left:80.666667pt;}
.x3_c00082{left:85.466667pt;}
.x2_c00082{left:109.733333pt;}
.x4_c00082{left:110.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dd16066e00fcde3304266064.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00083;src:url('chunks/assets/font_1ada47e09961609a79dfe85b.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00083{letter-spacing:0.000000px;}
.sc__c00083{text-shadow:none;}
.sc0_c00083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00083{-webkit-text-stroke:0px transparent;}
.sc0_c00083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00083{word-spacing:-15.000000px;}
.ws0_c00083{word-spacing:-12.750000px;}
.ws2_c00083{word-spacing:0.000000px;}
._12_c00083{margin-left:-15.441021px;}
._11_c00083{margin-left:-13.958979px;}
._7_c00083{margin-left:-11.747991px;}
._16_c00083{margin-left:-10.709862px;}
._14_c00083{margin-left:-7.475961px;}
._15_c00083{margin-left:-5.627913px;}
._1c_c00083{margin-left:-4.234116px;}
._13_c00083{margin-left:-3.071856px;}
._2_c00083{margin-left:-1.895976px;}
._0_c00083{width:1.173000px;}
._1_c00083{width:2.531997px;}
._4_c00083{width:4.155003px;}
._6_c00083{width:5.627928px;}
._3_c00083{width:7.455000px;}
._5_c00083{width:8.595003px;}
._9_c00083{width:9.657039px;}
._8_c00083{width:10.895982px;}
._a_c00083{width:12.966033px;}
._19_c00083{width:14.449890px;}
._1b_c00083{width:15.467985px;}
._b_c00083{width:16.745979px;}
._10_c00083{width:18.623997px;}
._e_c00083{width:19.662003px;}
._f_c00083{width:20.852997px;}
._d_c00083{width:21.942000px;}
._c_c00083{width:24.540000px;}
._17_c00083{width:25.541973px;}
._1a_c00083{width:26.741901px;}
._18_c00083{width:29.813859px;}
.fc1_c00083{color:transparent;}
.fc0_c00083{color:rgb(35,31,32);}
.fs0_c00083{font-size:51.000000px;}
.fs1_c00083{font-size:60.000000px;}
.y0_c00083{bottom:0.000000px;}
.y2b_c00083{bottom:64.425022px;}
.y2a_c00083{bottom:110.175022px;}
.y29_c00083{bottom:125.625022px;}
.y28_c00083{bottom:141.150022px;}
.y27_c00083{bottom:155.925022px;}
.y26_c00083{bottom:171.375022px;}
.y25_c00083{bottom:186.525022px;}
.y24_c00083{bottom:201.975022px;}
.y23_c00083{bottom:217.125022px;}
.y22_c00083{bottom:232.575022px;}
.y21_c00083{bottom:247.725022px;}
.y20_c00083{bottom:263.175022px;}
.y1f_c00083{bottom:278.325022px;}
.y1e_c00083{bottom:293.775022px;}
.y1d_c00083{bottom:308.925022px;}
.y1c_c00083{bottom:324.750022px;}
.y1b_c00083{bottom:339.825022px;}
.y1a_c00083{bottom:354.975022px;}
.y19_c00083{bottom:398.175022px;}
.y18_c00083{bottom:417.600022px;}
.y17_c00083{bottom:436.725022px;}
.y16_c00083{bottom:456.525022px;}
.y15_c00083{bottom:475.575022px;}
.y14_c00083{bottom:495.000022px;}
.y13_c00083{bottom:514.425022px;}
.y12_c00083{bottom:534.225022px;}
.y11_c00083{bottom:553.725022px;}
.y10_c00083{bottom:573.150022px;}
.yf_c00083{bottom:592.500022px;}
.ye_c00083{bottom:612.000022px;}
.yd_c00083{bottom:631.500022px;}
.yc_c00083{bottom:650.925022px;}
.yb_c00083{bottom:670.350022px;}
.ya_c00083{bottom:689.775022px;}
.y9_c00083{bottom:708.825022px;}
.y8_c00083{bottom:728.625022px;}
.y7_c00083{bottom:747.750022px;}
.y6_c00083{bottom:767.550022px;}
.y5_c00083{bottom:786.225022px;}
.y4_c00083{bottom:806.025022px;}
.y3_c00083{bottom:825.525022px;}
.y2_c00083{bottom:844.575022px;}
.y1_c00083{bottom:886.725022px;}
.h2_c00083{height:50.028809px;}
.h4_c00083{height:50.053711px;}
.h3_c00083{height:58.886719px;}
.h1_c00083{height:957.750000px;}
.h0_c00083{height:957.975000px;}
.w0_c00083{width:641.850030px;}
.w1_c00083{width:642.000000px;}
.x0_c00083{left:0.000000px;}
.x4_c00083{left:80.250000px;}
.x3_c00083{left:81.375000px;}
.x5_c00083{left:86.025000px;}
.x2_c00083{left:96.825000px;}
.x6_c00083{left:113.400000px;}
.x1_c00083{left:162.750000px;}
.x7_c00083{left:538.575000px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls0_c00083{letter-spacing:0.000000pt;}
.ws1_c00083{word-spacing:-13.333333pt;}
.ws0_c00083{word-spacing:-11.333333pt;}
.ws2_c00083{word-spacing:0.000000pt;}
._12_c00083{margin-left:-13.725352pt;}
._11_c00083{margin-left:-12.407981pt;}
._7_c00083{margin-left:-10.442659pt;}
._16_c00083{margin-left:-9.519877pt;}
._14_c00083{margin-left:-6.645299pt;}
._15_c00083{margin-left:-5.002589pt;}
._1c_c00083{margin-left:-3.763659pt;}
._13_c00083{margin-left:-2.730539pt;}
._2_c00083{margin-left:-1.685312pt;}
._0_c00083{width:1.042667pt;}
._1_c00083{width:2.250664pt;}
._4_c00083{width:3.693336pt;}
._6_c00083{width:5.002603pt;}
._3_c00083{width:6.626667pt;}
._5_c00083{width:7.640003pt;}
._9_c00083{width:8.584035pt;}
._8_c00083{width:9.685317pt;}
._a_c00083{width:11.525363pt;}
._19_c00083{width:12.844347pt;}
._1b_c00083{width:13.749320pt;}
._b_c00083{width:14.885315pt;}
._10_c00083{width:16.554664pt;}
._e_c00083{width:17.477336pt;}
._f_c00083{width:18.535997pt;}
._d_c00083{width:19.504000pt;}
._c_c00083{width:21.813333pt;}
._17_c00083{width:22.703976pt;}
._1a_c00083{width:23.770579pt;}
._18_c00083{width:26.501208pt;}
.fs0_c00083{font-size:45.333333pt;}
.fs1_c00083{font-size:53.333333pt;}
.y0_c00083{bottom:0.000000pt;}
.y2b_c00083{bottom:57.266686pt;}
.y2a_c00083{bottom:97.933353pt;}
.y29_c00083{bottom:111.666686pt;}
.y28_c00083{bottom:125.466686pt;}
.y27_c00083{bottom:138.600020pt;}
.y26_c00083{bottom:152.333353pt;}
.y25_c00083{bottom:165.800020pt;}
.y24_c00083{bottom:179.533353pt;}
.y23_c00083{bottom:193.000020pt;}
.y22_c00083{bottom:206.733353pt;}
.y21_c00083{bottom:220.200020pt;}
.y20_c00083{bottom:233.933353pt;}
.y1f_c00083{bottom:247.400020pt;}
.y1e_c00083{bottom:261.133353pt;}
.y1d_c00083{bottom:274.600020pt;}
.y1c_c00083{bottom:288.666686pt;}
.y1b_c00083{bottom:302.066686pt;}
.y1a_c00083{bottom:315.533353pt;}
.y19_c00083{bottom:353.933353pt;}
.y18_c00083{bottom:371.200020pt;}
.y17_c00083{bottom:388.200020pt;}
.y16_c00083{bottom:405.800020pt;}
.y15_c00083{bottom:422.733353pt;}
.y14_c00083{bottom:440.000020pt;}
.y13_c00083{bottom:457.266686pt;}
.y12_c00083{bottom:474.866686pt;}
.y11_c00083{bottom:492.200020pt;}
.y10_c00083{bottom:509.466686pt;}
.yf_c00083{bottom:526.666686pt;}
.ye_c00083{bottom:544.000020pt;}
.yd_c00083{bottom:561.333353pt;}
.yc_c00083{bottom:578.600020pt;}
.yb_c00083{bottom:595.866686pt;}
.ya_c00083{bottom:613.133353pt;}
.y9_c00083{bottom:630.066686pt;}
.y8_c00083{bottom:647.666686pt;}
.y7_c00083{bottom:664.666686pt;}
.y6_c00083{bottom:682.266686pt;}
.y5_c00083{bottom:698.866686pt;}
.y4_c00083{bottom:716.466686pt;}
.y3_c00083{bottom:733.800020pt;}
.y2_c00083{bottom:750.733353pt;}
.y1_c00083{bottom:788.200020pt;}
.h2_c00083{height:44.470052pt;}
.h4_c00083{height:44.492188pt;}
.h3_c00083{height:52.343750pt;}
.h1_c00083{height:851.333333pt;}
.h0_c00083{height:851.533333pt;}
.w0_c00083{width:570.533360pt;}
.w1_c00083{width:570.666667pt;}
.x0_c00083{left:0.000000pt;}
.x4_c00083{left:71.333333pt;}
.x3_c00083{left:72.333333pt;}
.x5_c00083{left:76.466667pt;}
.x2_c00083{left:86.066667pt;}
.x6_c00083{left:100.800000pt;}
.x1_c00083{left:144.666667pt;}
.x7_c00083{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8c7066cbe721f22c18b46d3b.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00084;src:url('chunks/assets/font_8b2a7da439fa1f2dbd5305cb.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00084{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_c00084{vertical-align:0.000000px;}
.ls0_c00084{letter-spacing:0.000000px;}
.sc__c00084{text-shadow:none;}
.sc0_c00084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00084{-webkit-text-stroke:0px transparent;}
.sc0_c00084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00084{word-spacing:-15.000000px;}
.ws0_c00084{word-spacing:-12.750000px;}
.ws2_c00084{word-spacing:0.000000px;}
._f_c00084{margin-left:-30.000000px;}
._e_c00084{margin-left:-15.191880px;}
._d_c00084{margin-left:-12.504060px;}
._14_c00084{margin-left:-11.409951px;}
._8_c00084{margin-left:-9.540000px;}
._15_c00084{margin-left:-8.484132px;}
._1a_c00084{margin-left:-6.093537px;}
._16_c00084{margin-left:-4.883988px;}
._10_c00084{margin-left:-3.065118px;}
._0_c00084{margin-left:-1.760979px;}
._2_c00084{width:1.115931px;}
._1_c00084{width:2.699991px;}
._6_c00084{width:4.332234px;}
._19_c00084{width:5.517384px;}
._12_c00084{width:6.720690px;}
._13_c00084{width:7.800717px;}
._4_c00084{width:9.084432px;}
._5_c00084{width:10.560000px;}
._3_c00084{width:11.940000px;}
._a_c00084{width:13.248501px;}
._18_c00084{width:15.240753px;}
._7_c00084{width:16.968492px;}
._11_c00084{width:18.083361px;}
._9_c00084{width:19.500000px;}
._c_c00084{width:21.324423px;}
._b_c00084{width:23.004069px;}
._17_c00084{width:24.710979px;}
._1b_c00084{width:31.037076px;}
.fc1_c00084{color:transparent;}
.fc0_c00084{color:rgb(35,31,32);}
.fs0_c00084{font-size:51.000000px;}
.fs1_c00084{font-size:60.000000px;}
.y0_c00084{bottom:0.000000px;}
.y2a_c00084{bottom:64.800022px;}
.y29_c00084{bottom:110.175022px;}
.y28_c00084{bottom:125.325022px;}
.y27_c00084{bottom:141.150022px;}
.y26_c00084{bottom:155.925022px;}
.y25_c00084{bottom:171.375022px;}
.y24_c00084{bottom:186.825022px;}
.y23_c00084{bottom:202.350022px;}
.y22_c00084{bottom:217.425022px;}
.y21_c00084{bottom:232.575022px;}
.y20_c00084{bottom:247.725022px;}
.y1f_c00084{bottom:263.175022px;}
.y1e_c00084{bottom:278.325022px;}
.y1d_c00084{bottom:293.775022px;}
.y1c_c00084{bottom:309.225022px;}
.y1b_c00084{bottom:324.375022px;}
.y1a_c00084{bottom:339.525022px;}
.y19_c00084{bottom:354.975022px;}
.y18_c00084{bottom:370.125022px;}
.y17_c00084{bottom:385.950022px;}
.y16_c00084{bottom:400.725022px;}
.y15_c00084{bottom:416.175022px;}
.y14_c00084{bottom:431.625022px;}
.y13_c00084{bottom:447.075022px;}
.y12_c00084{bottom:462.225022px;}
.y11_c00084{bottom:477.375022px;}
.y10_c00084{bottom:492.825022px;}
.yf_c00084{bottom:532.800022px;}
.ye_c00084{bottom:551.925022px;}
.yd_c00084{bottom:571.725022px;}
.yc_c00084{bottom:591.150022px;}
.yb_c00084{bottom:610.575022px;}
.ya_c00084{bottom:629.625022px;}
.y9_c00084{bottom:649.125022px;}
.y8_c00084{bottom:689.025022px;}
.y7_c00084{bottom:747.750022px;}
.y6_c00084{bottom:767.175022px;}
.y5_c00084{bottom:786.600022px;}
.y4_c00084{bottom:806.025022px;}
.y3_c00084{bottom:825.525022px;}
.y2_c00084{bottom:844.575022px;}
.y1_c00084{bottom:886.725022px;}
.h2_c00084{height:50.028809px;}
.h4_c00084{height:50.053711px;}
.h3_c00084{height:58.886719px;}
.h1_c00084{height:957.750000px;}
.h0_c00084{height:957.975000px;}
.w1_c00084{width:643.500000px;}
.w0_c00084{width:643.650000px;}
.x0_c00084{left:0.000000px;}
.x1_c00084{left:90.750000px;}
.x2_c00084{left:91.800000px;}
.x3_c00084{left:96.150000px;}
.x4_c00084{left:123.825000px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls0_c00084{letter-spacing:0.000000pt;}
.ws1_c00084{word-spacing:-13.333333pt;}
.ws0_c00084{word-spacing:-11.333333pt;}
.ws2_c00084{word-spacing:0.000000pt;}
._f_c00084{margin-left:-26.666667pt;}
._e_c00084{margin-left:-13.503893pt;}
._d_c00084{margin-left:-11.114720pt;}
._14_c00084{margin-left:-10.142179pt;}
._8_c00084{margin-left:-8.480000pt;}
._15_c00084{margin-left:-7.541451pt;}
._1a_c00084{margin-left:-5.416477pt;}
._16_c00084{margin-left:-4.341323pt;}
._10_c00084{margin-left:-2.724549pt;}
._0_c00084{margin-left:-1.565315pt;}
._2_c00084{width:0.991939pt;}
._1_c00084{width:2.399992pt;}
._6_c00084{width:3.850875pt;}
._19_c00084{width:4.904341pt;}
._12_c00084{width:5.973947pt;}
._13_c00084{width:6.933971pt;}
._4_c00084{width:8.075051pt;}
._5_c00084{width:9.386667pt;}
._3_c00084{width:10.613333pt;}
._a_c00084{width:11.776445pt;}
._18_c00084{width:13.547336pt;}
._7_c00084{width:15.083104pt;}
._11_c00084{width:16.074099pt;}
._9_c00084{width:17.333333pt;}
._c_c00084{width:18.955043pt;}
._b_c00084{width:20.448061pt;}
._17_c00084{width:21.965315pt;}
._1b_c00084{width:27.588512pt;}
.fs0_c00084{font-size:45.333333pt;}
.fs1_c00084{font-size:53.333333pt;}
.y0_c00084{bottom:0.000000pt;}
.y2a_c00084{bottom:57.600020pt;}
.y29_c00084{bottom:97.933353pt;}
.y28_c00084{bottom:111.400020pt;}
.y27_c00084{bottom:125.466686pt;}
.y26_c00084{bottom:138.600020pt;}
.y25_c00084{bottom:152.333353pt;}
.y24_c00084{bottom:166.066686pt;}
.y23_c00084{bottom:179.866686pt;}
.y22_c00084{bottom:193.266686pt;}
.y21_c00084{bottom:206.733353pt;}
.y20_c00084{bottom:220.200020pt;}
.y1f_c00084{bottom:233.933353pt;}
.y1e_c00084{bottom:247.400020pt;}
.y1d_c00084{bottom:261.133353pt;}
.y1c_c00084{bottom:274.866686pt;}
.y1b_c00084{bottom:288.333353pt;}
.y1a_c00084{bottom:301.800020pt;}
.y19_c00084{bottom:315.533353pt;}
.y18_c00084{bottom:329.000020pt;}
.y17_c00084{bottom:343.066686pt;}
.y16_c00084{bottom:356.200020pt;}
.y15_c00084{bottom:369.933353pt;}
.y14_c00084{bottom:383.666686pt;}
.y13_c00084{bottom:397.400020pt;}
.y12_c00084{bottom:410.866686pt;}
.y11_c00084{bottom:424.333353pt;}
.y10_c00084{bottom:438.066686pt;}
.yf_c00084{bottom:473.600020pt;}
.ye_c00084{bottom:490.600020pt;}
.yd_c00084{bottom:508.200020pt;}
.yc_c00084{bottom:525.466686pt;}
.yb_c00084{bottom:542.733353pt;}
.ya_c00084{bottom:559.666686pt;}
.y9_c00084{bottom:577.000020pt;}
.y8_c00084{bottom:612.466686pt;}
.y7_c00084{bottom:664.666686pt;}
.y6_c00084{bottom:681.933353pt;}
.y5_c00084{bottom:699.200020pt;}
.y4_c00084{bottom:716.466686pt;}
.y3_c00084{bottom:733.800020pt;}
.y2_c00084{bottom:750.733353pt;}
.y1_c00084{bottom:788.200020pt;}
.h2_c00084{height:44.470052pt;}
.h4_c00084{height:44.492188pt;}
.h3_c00084{height:52.343750pt;}
.h1_c00084{height:851.333333pt;}
.h0_c00084{height:851.533333pt;}
.w1_c00084{width:572.000000pt;}
.w0_c00084{width:572.133333pt;}
.x0_c00084{left:0.000000pt;}
.x1_c00084{left:80.666667pt;}
.x2_c00084{left:81.600000pt;}
.x3_c00084{left:85.466667pt;}
.x4_c00084{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bc62bbbd5ab43d82613b6641.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00085;src:url('chunks/assets/font_82ced8d64f70b0322f4d2f89.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00085{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_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;}
}
.ws1_c00085{word-spacing:-15.000000px;}
.ws0_c00085{word-spacing:-12.750000px;}
.ws2_c00085{word-spacing:0.000000px;}
._d_c00085{margin-left:-11.228973px;}
._7_c00085{margin-left:-9.963015px;}
._6_c00085{margin-left:-8.636985px;}
._1c_c00085{margin-left:-7.385955px;}
._8_c00085{margin-left:-6.300000px;}
._15_c00085{margin-left:-5.048973px;}
._1a_c00085{margin-left:-3.986856px;}
._e_c00085{margin-left:-2.931027px;}
._2_c00085{margin-left:-1.895976px;}
._0_c00085{width:1.173000px;}
._1_c00085{width:2.531997px;}
._3_c00085{width:3.768003px;}
._c_c00085{width:4.893003px;}
._5_c00085{width:6.402003px;}
._14_c00085{width:7.443000px;}
._4_c00085{width:8.568003px;}
._9_c00085{width:9.600000px;}
._f_c00085{width:11.615976px;}
._10_c00085{width:13.194036px;}
._19_c00085{width:14.852883px;}
._b_c00085{width:16.898997px;}
._a_c00085{width:18.519012px;}
._13_c00085{width:20.307000px;}
._12_c00085{width:21.441054px;}
._11_c00085{width:22.854000px;}
._18_c00085{width:24.041952px;}
._17_c00085{width:25.445916px;}
._1b_c00085{width:26.741901px;}
._16_c00085{width:30.288003px;}
.fc1_c00085{color:transparent;}
.fc0_c00085{color:rgb(35,31,32);}
.fs0_c00085{font-size:51.000000px;}
.fs1_c00085{font-size:60.000000px;}
.y0_c00085{bottom:0.000000px;}
.y27_c00085{bottom:64.425022px;}
.y26_c00085{bottom:110.175022px;}
.y25_c00085{bottom:125.625022px;}
.y24_c00085{bottom:140.775022px;}
.y23_c00085{bottom:156.225022px;}
.y22_c00085{bottom:171.375022px;}
.y21_c00085{bottom:186.525022px;}
.y20_c00085{bottom:201.975022px;}
.y1f_c00085{bottom:217.125022px;}
.y1e_c00085{bottom:232.575022px;}
.y1d_c00085{bottom:247.725022px;}
.y1c_c00085{bottom:263.175022px;}
.y1b_c00085{bottom:278.325022px;}
.y1a_c00085{bottom:293.775022px;}
.y19_c00085{bottom:308.925022px;}
.y18_c00085{bottom:367.575022px;}
.y17_c00085{bottom:387.000022px;}
.y16_c00085{bottom:406.425022px;}
.y15_c00085{bottom:425.550022px;}
.y14_c00085{bottom:445.350022px;}
.y13_c00085{bottom:464.775022px;}
.y12_c00085{bottom:483.825022px;}
.y11_c00085{bottom:503.325022px;}
.y10_c00085{bottom:523.125022px;}
.yf_c00085{bottom:542.175022px;}
.ye_c00085{bottom:561.975022px;}
.yd_c00085{bottom:581.400022px;}
.yc_c00085{bottom:600.525022px;}
.yb_c00085{bottom:619.950022px;}
.ya_c00085{bottom:658.425022px;}
.y9_c00085{bottom:709.200022px;}
.y8_c00085{bottom:728.625022px;}
.y7_c00085{bottom:747.750022px;}
.y6_c00085{bottom:767.550022px;}
.y5_c00085{bottom:786.600022px;}
.y4_c00085{bottom:806.025022px;}
.y3_c00085{bottom:825.150022px;}
.y2_c00085{bottom:844.575022px;}
.y1_c00085{bottom:886.725022px;}
.h2_c00085{height:50.028809px;}
.h4_c00085{height:50.053711px;}
.h3_c00085{height:58.886719px;}
.h1_c00085{height:957.750000px;}
.h0_c00085{height:957.975000px;}
.w0_c00085{width:641.850030px;}
.w1_c00085{width:642.000000px;}
.x0_c00085{left:0.000000px;}
.x2_c00085{left:81.000000px;}
.x3_c00085{left:86.025000px;}
.x4_c00085{left:113.400000px;}
.x1_c00085{left:162.750000px;}
.x5_c00085{left:538.575000px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls0_c00085{letter-spacing:0.000000pt;}
.ws1_c00085{word-spacing:-13.333333pt;}
.ws0_c00085{word-spacing:-11.333333pt;}
.ws2_c00085{word-spacing:0.000000pt;}
._d_c00085{margin-left:-9.981309pt;}
._7_c00085{margin-left:-8.856013pt;}
._6_c00085{margin-left:-7.677320pt;}
._1c_c00085{margin-left:-6.565293pt;}
._8_c00085{margin-left:-5.600000pt;}
._15_c00085{margin-left:-4.487976pt;}
._1a_c00085{margin-left:-3.543872pt;}
._e_c00085{margin-left:-2.605357pt;}
._2_c00085{margin-left:-1.685312pt;}
._0_c00085{width:1.042667pt;}
._1_c00085{width:2.250664pt;}
._3_c00085{width:3.349336pt;}
._c_c00085{width:4.349336pt;}
._5_c00085{width:5.690669pt;}
._14_c00085{width:6.616000pt;}
._4_c00085{width:7.616003pt;}
._9_c00085{width:8.533333pt;}
._f_c00085{width:10.325312pt;}
._10_c00085{width:11.728032pt;}
._19_c00085{width:13.202563pt;}
._b_c00085{width:15.021331pt;}
._a_c00085{width:16.461344pt;}
._13_c00085{width:18.050667pt;}
._12_c00085{width:19.058715pt;}
._11_c00085{width:20.314667pt;}
._18_c00085{width:21.370624pt;}
._17_c00085{width:22.618592pt;}
._1b_c00085{width:23.770579pt;}
._16_c00085{width:26.922669pt;}
.fs0_c00085{font-size:45.333333pt;}
.fs1_c00085{font-size:53.333333pt;}
.y0_c00085{bottom:0.000000pt;}
.y27_c00085{bottom:57.266686pt;}
.y26_c00085{bottom:97.933353pt;}
.y25_c00085{bottom:111.666686pt;}
.y24_c00085{bottom:125.133353pt;}
.y23_c00085{bottom:138.866686pt;}
.y22_c00085{bottom:152.333353pt;}
.y21_c00085{bottom:165.800020pt;}
.y20_c00085{bottom:179.533353pt;}
.y1f_c00085{bottom:193.000020pt;}
.y1e_c00085{bottom:206.733353pt;}
.y1d_c00085{bottom:220.200020pt;}
.y1c_c00085{bottom:233.933353pt;}
.y1b_c00085{bottom:247.400020pt;}
.y1a_c00085{bottom:261.133353pt;}
.y19_c00085{bottom:274.600020pt;}
.y18_c00085{bottom:326.733353pt;}
.y17_c00085{bottom:344.000020pt;}
.y16_c00085{bottom:361.266686pt;}
.y15_c00085{bottom:378.266686pt;}
.y14_c00085{bottom:395.866686pt;}
.y13_c00085{bottom:413.133353pt;}
.y12_c00085{bottom:430.066686pt;}
.y11_c00085{bottom:447.400020pt;}
.y10_c00085{bottom:465.000020pt;}
.yf_c00085{bottom:481.933353pt;}
.ye_c00085{bottom:499.533353pt;}
.yd_c00085{bottom:516.800020pt;}
.yc_c00085{bottom:533.800020pt;}
.yb_c00085{bottom:551.066686pt;}
.ya_c00085{bottom:585.266686pt;}
.y9_c00085{bottom:630.400020pt;}
.y8_c00085{bottom:647.666686pt;}
.y7_c00085{bottom:664.666686pt;}
.y6_c00085{bottom:682.266686pt;}
.y5_c00085{bottom:699.200020pt;}
.y4_c00085{bottom:716.466686pt;}
.y3_c00085{bottom:733.466686pt;}
.y2_c00085{bottom:750.733353pt;}
.y1_c00085{bottom:788.200020pt;}
.h2_c00085{height:44.470052pt;}
.h4_c00085{height:44.492188pt;}
.h3_c00085{height:52.343750pt;}
.h1_c00085{height:851.333333pt;}
.h0_c00085{height:851.533333pt;}
.w0_c00085{width:570.533360pt;}
.w1_c00085{width:570.666667pt;}
.x0_c00085{left:0.000000pt;}
.x2_c00085{left:72.000000pt;}
.x3_c00085{left:76.466667pt;}
.x4_c00085{left:100.800000pt;}
.x1_c00085{left:144.666667pt;}
.x5_c00085{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6d551729b3446b0b2ae3b2fa.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00086;src:url('chunks/assets/font_4e32f07c1223543a67ab730d.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00086{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_c00086{vertical-align:0.000000px;}
.ls0_c00086{letter-spacing:0.000000px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00086{word-spacing:-15.000000px;}
.ws0_c00086{word-spacing:-12.750000px;}
.ws2_c00086{word-spacing:0.000000px;}
._10_c00086{margin-left:-12.000000px;}
._8_c00086{margin-left:-10.800000px;}
._7_c00086{margin-left:-9.600000px;}
._17_c00086{margin-left:-8.316030px;}
._16_c00086{margin-left:-7.289949px;}
._1_c00086{margin-left:-6.000000px;}
._14_c00086{margin-left:-4.380000px;}
._13_c00086{margin-left:-3.180000px;}
._3_c00086{margin-left:-1.440000px;}
._2_c00086{width:1.500000px;}
._0_c00086{width:2.760000px;}
._4_c00086{width:4.140000px;}
._c_c00086{width:5.520000px;}
._6_c00086{width:6.780000px;}
._5_c00086{width:7.980000px;}
._a_c00086{width:9.420000px;}
._b_c00086{width:10.740000px;}
._f_c00086{width:12.360000px;}
._9_c00086{width:13.800000px;}
._18_c00086{width:15.272997px;}
._12_c00086{width:16.980000px;}
._11_c00086{width:18.900000px;}
._15_c00086{width:23.190021px;}
._e_c00086{width:24.360000px;}
._d_c00086{width:25.620000px;}
.fc1_c00086{color:transparent;}
.fc0_c00086{color:rgb(35,31,32);}
.fs1_c00086{font-size:51.000000px;}
.fs0_c00086{font-size:60.000000px;}
.y0_c00086{bottom:0.000000px;}
.y2b_c00086{bottom:64.425022px;}
.y2a_c00086{bottom:110.175022px;}
.y29_c00086{bottom:125.625022px;}
.y28_c00086{bottom:140.775022px;}
.y27_c00086{bottom:156.225022px;}
.y26_c00086{bottom:171.375022px;}
.y25_c00086{bottom:186.825022px;}
.y24_c00086{bottom:201.975022px;}
.y23_c00086{bottom:217.125022px;}
.y22_c00086{bottom:232.575022px;}
.y21_c00086{bottom:247.725022px;}
.y20_c00086{bottom:263.550022px;}
.y1f_c00086{bottom:278.325022px;}
.y1e_c00086{bottom:294.150022px;}
.y1d_c00086{bottom:309.225022px;}
.y1c_c00086{bottom:324.750022px;}
.y1b_c00086{bottom:339.525022px;}
.y1a_c00086{bottom:355.350022px;}
.y19_c00086{bottom:370.125022px;}
.y18_c00086{bottom:385.575022px;}
.y17_c00086{bottom:401.025022px;}
.y16_c00086{bottom:416.175022px;}
.y15_c00086{bottom:431.625022px;}
.y13_c00086{bottom:495.375022px;}
.y12_c00086{bottom:514.800022px;}
.y11_c00086{bottom:534.225022px;}
.y10_c00086{bottom:553.725022px;}
.yf_c00086{bottom:572.775022px;}
.ye_c00086{bottom:592.200022px;}
.yd_c00086{bottom:612.000022px;}
.yc_c00086{bottom:631.425022px;}
.yb_c00086{bottom:650.550022px;}
.ya_c00086{bottom:670.350022px;}
.y9_c00086{bottom:689.400022px;}
.y8_c00086{bottom:708.825022px;}
.y7_c00086{bottom:728.325022px;}
.y6_c00086{bottom:748.125022px;}
.y5_c00086{bottom:767.550022px;}
.y4_c00086{bottom:786.600022px;}
.y3_c00086{bottom:806.025022px;}
.y2_c00086{bottom:825.150022px;}
.y1_c00086{bottom:844.575022px;}
.y14_c00086{bottom:886.725022px;}
.h3_c00086{height:50.028809px;}
.h4_c00086{height:50.053711px;}
.h2_c00086{height:58.886719px;}
.h1_c00086{height:957.750000px;}
.h0_c00086{height:957.975000px;}
.w1_c00086{width:643.500000px;}
.w0_c00086{width:643.650000px;}
.x0_c00086{left:0.000000px;}
.x2_c00086{left:90.750000px;}
.x1_c00086{left:91.800000px;}
.x4_c00086{left:96.150000px;}
.x3_c00086{left:106.200000px;}
.x6_c00086{left:123.150000px;}
.x5_c00086{left:124.200000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls0_c00086{letter-spacing:0.000000pt;}
.ws1_c00086{word-spacing:-13.333333pt;}
.ws0_c00086{word-spacing:-11.333333pt;}
.ws2_c00086{word-spacing:0.000000pt;}
._10_c00086{margin-left:-10.666667pt;}
._8_c00086{margin-left:-9.600000pt;}
._7_c00086{margin-left:-8.533333pt;}
._17_c00086{margin-left:-7.392027pt;}
._16_c00086{margin-left:-6.479955pt;}
._1_c00086{margin-left:-5.333333pt;}
._14_c00086{margin-left:-3.893333pt;}
._13_c00086{margin-left:-2.826667pt;}
._3_c00086{margin-left:-1.280000pt;}
._2_c00086{width:1.333333pt;}
._0_c00086{width:2.453333pt;}
._4_c00086{width:3.680000pt;}
._c_c00086{width:4.906667pt;}
._6_c00086{width:6.026667pt;}
._5_c00086{width:7.093333pt;}
._a_c00086{width:8.373333pt;}
._b_c00086{width:9.546667pt;}
._f_c00086{width:10.986667pt;}
._9_c00086{width:12.266667pt;}
._18_c00086{width:13.575997pt;}
._12_c00086{width:15.093333pt;}
._11_c00086{width:16.800000pt;}
._15_c00086{width:20.613352pt;}
._e_c00086{width:21.653333pt;}
._d_c00086{width:22.773333pt;}
.fs1_c00086{font-size:45.333333pt;}
.fs0_c00086{font-size:53.333333pt;}
.y0_c00086{bottom:0.000000pt;}
.y2b_c00086{bottom:57.266686pt;}
.y2a_c00086{bottom:97.933353pt;}
.y29_c00086{bottom:111.666686pt;}
.y28_c00086{bottom:125.133353pt;}
.y27_c00086{bottom:138.866686pt;}
.y26_c00086{bottom:152.333353pt;}
.y25_c00086{bottom:166.066686pt;}
.y24_c00086{bottom:179.533353pt;}
.y23_c00086{bottom:193.000020pt;}
.y22_c00086{bottom:206.733353pt;}
.y21_c00086{bottom:220.200020pt;}
.y20_c00086{bottom:234.266686pt;}
.y1f_c00086{bottom:247.400020pt;}
.y1e_c00086{bottom:261.466686pt;}
.y1d_c00086{bottom:274.866686pt;}
.y1c_c00086{bottom:288.666686pt;}
.y1b_c00086{bottom:301.800020pt;}
.y1a_c00086{bottom:315.866686pt;}
.y19_c00086{bottom:329.000020pt;}
.y18_c00086{bottom:342.733353pt;}
.y17_c00086{bottom:356.466686pt;}
.y16_c00086{bottom:369.933353pt;}
.y15_c00086{bottom:383.666686pt;}
.y13_c00086{bottom:440.333353pt;}
.y12_c00086{bottom:457.600020pt;}
.y11_c00086{bottom:474.866686pt;}
.y10_c00086{bottom:492.200020pt;}
.yf_c00086{bottom:509.133353pt;}
.ye_c00086{bottom:526.400020pt;}
.yd_c00086{bottom:544.000020pt;}
.yc_c00086{bottom:561.266686pt;}
.yb_c00086{bottom:578.266686pt;}
.ya_c00086{bottom:595.866686pt;}
.y9_c00086{bottom:612.800020pt;}
.y8_c00086{bottom:630.066686pt;}
.y7_c00086{bottom:647.400020pt;}
.y6_c00086{bottom:665.000020pt;}
.y5_c00086{bottom:682.266686pt;}
.y4_c00086{bottom:699.200020pt;}
.y3_c00086{bottom:716.466686pt;}
.y2_c00086{bottom:733.466686pt;}
.y1_c00086{bottom:750.733353pt;}
.y14_c00086{bottom:788.200020pt;}
.h3_c00086{height:44.470052pt;}
.h4_c00086{height:44.492188pt;}
.h2_c00086{height:52.343750pt;}
.h1_c00086{height:851.333333pt;}
.h0_c00086{height:851.533333pt;}
.w1_c00086{width:572.000000pt;}
.w0_c00086{width:572.133333pt;}
.x0_c00086{left:0.000000pt;}
.x2_c00086{left:80.666667pt;}
.x1_c00086{left:81.600000pt;}
.x4_c00086{left:85.466667pt;}
.x3_c00086{left:94.400000pt;}
.x6_c00086{left:109.466667pt;}
.x5_c00086{left:110.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_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_ed1386c42bf8a372fc63adc1.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00087;src:url('chunks/assets/font_559f7e50f382be34db5216cd.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00087{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00087{vertical-align:0.000000px;}
.ls0_c00087{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00087{word-spacing:-12.750000px;}
.ws2_c00087{word-spacing:0.000000px;}
._7_c00087{margin-left:-13.200000px;}
._6_c00087{margin-left:-11.630994px;}
._a_c00087{margin-left:-9.468045px;}
._14_c00087{margin-left:-8.175186px;}
._13_c00087{margin-left:-6.758952px;}
._e_c00087{margin-left:-4.584024px;}
._b_c00087{margin-left:-3.240000px;}
._2_c00087{margin-left:-1.895976px;}
._0_c00087{width:1.173000px;}
._1_c00087{width:2.531997px;}
._5_c00087{width:3.768003px;}
._c_c00087{width:5.469000px;}
._8_c00087{width:6.600000px;}
._3_c00087{width:7.974000px;}
._9_c00087{width:9.128955px;}
._4_c00087{width:10.743003px;}
._12_c00087{width:11.787111px;}
._d_c00087{width:12.888000px;}
._1b_c00087{width:14.705925px;}
._11_c00087{width:16.046958px;}
._10_c00087{width:17.268006px;}
._f_c00087{width:18.702003px;}
._15_c00087{width:19.980000px;}
._19_c00087{width:22.950000px;}
._18_c00087{width:24.041952px;}
._1a_c00087{width:25.541973px;}
._17_c00087{width:26.742003px;}
._16_c00087{width:28.637979px;}
.fc1_c00087{color:transparent;}
.fc0_c00087{color:rgb(35,31,32);}
.fs0_c00087{font-size:51.000000px;}
.fs1_c00087{font-size:60.000000px;}
.y0_c00087{bottom:0.000000px;}
.y2a_c00087{bottom:64.425022px;}
.y29_c00087{bottom:110.175022px;}
.y28_c00087{bottom:125.325022px;}
.y27_c00087{bottom:140.775022px;}
.y26_c00087{bottom:155.925022px;}
.y25_c00087{bottom:171.750022px;}
.y24_c00087{bottom:186.525022px;}
.y23_c00087{bottom:201.975022px;}
.y22_c00087{bottom:217.425022px;}
.y21_c00087{bottom:232.575022px;}
.y20_c00087{bottom:247.725022px;}
.y1f_c00087{bottom:263.550022px;}
.y1e_c00087{bottom:278.325022px;}
.y1d_c00087{bottom:320.025022px;}
.y1c_c00087{bottom:339.825022px;}
.y1b_c00087{bottom:359.325022px;}
.y1a_c00087{bottom:378.375022px;}
.y19_c00087{bottom:397.800022px;}
.y18_c00087{bottom:417.600022px;}
.y17_c00087{bottom:437.025022px;}
.y16_c00087{bottom:456.150022px;}
.y15_c00087{bottom:475.950022px;}
.y14_c00087{bottom:495.000022px;}
.y13_c00087{bottom:514.800022px;}
.y12_c00087{bottom:534.225022px;}
.y11_c00087{bottom:553.350022px;}
.y10_c00087{bottom:573.150022px;}
.yf_c00087{bottom:592.575022px;}
.ye_c00087{bottom:612.000022px;}
.yd_c00087{bottom:631.125022px;}
.yc_c00087{bottom:650.550022px;}
.yb_c00087{bottom:669.975022px;}
.ya_c00087{bottom:689.325022px;}
.y9_c00087{bottom:708.825022px;}
.y8_c00087{bottom:728.325022px;}
.y7_c00087{bottom:747.750022px;}
.y6_c00087{bottom:767.175022px;}
.y5_c00087{bottom:786.225022px;}
.y4_c00087{bottom:805.725022px;}
.y3_c00087{bottom:825.525022px;}
.y2_c00087{bottom:844.575022px;}
.y1_c00087{bottom:886.725022px;}
.h2_c00087{height:50.028809px;}
.h4_c00087{height:50.053711px;}
.h3_c00087{height:58.886719px;}
.h1_c00087{height:957.750000px;}
.h0_c00087{height:957.975000px;}
.w0_c00087{width:641.850030px;}
.w1_c00087{width:642.000000px;}
.x0_c00087{left:0.000000px;}
.x3_c00087{left:79.950000px;}
.x2_c00087{left:81.375000px;}
.x5_c00087{left:86.025000px;}
.x4_c00087{left:97.200000px;}
.x6_c00087{left:114.450000px;}
.x1_c00087{left:162.750000px;}
.x7_c00087{left:538.575000px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls0_c00087{letter-spacing:0.000000pt;}
.ws0_c00087{word-spacing:-13.333333pt;}
.ws1_c00087{word-spacing:-11.333333pt;}
.ws2_c00087{word-spacing:0.000000pt;}
._7_c00087{margin-left:-11.733333pt;}
._6_c00087{margin-left:-10.338661pt;}
._a_c00087{margin-left:-8.416040pt;}
._14_c00087{margin-left:-7.266832pt;}
._13_c00087{margin-left:-6.007957pt;}
._e_c00087{margin-left:-4.074688pt;}
._b_c00087{margin-left:-2.880000pt;}
._2_c00087{margin-left:-1.685312pt;}
._0_c00087{width:1.042667pt;}
._1_c00087{width:2.250664pt;}
._5_c00087{width:3.349336pt;}
._c_c00087{width:4.861333pt;}
._8_c00087{width:5.866667pt;}
._3_c00087{width:7.088000pt;}
._9_c00087{width:8.114627pt;}
._4_c00087{width:9.549336pt;}
._12_c00087{width:10.477432pt;}
._d_c00087{width:11.456000pt;}
._1b_c00087{width:13.071933pt;}
._11_c00087{width:14.263963pt;}
._10_c00087{width:15.349339pt;}
._f_c00087{width:16.624003pt;}
._15_c00087{width:17.760000pt;}
._19_c00087{width:20.400000pt;}
._18_c00087{width:21.370624pt;}
._1a_c00087{width:22.703976pt;}
._17_c00087{width:23.770669pt;}
._16_c00087{width:25.455981pt;}
.fs0_c00087{font-size:45.333333pt;}
.fs1_c00087{font-size:53.333333pt;}
.y0_c00087{bottom:0.000000pt;}
.y2a_c00087{bottom:57.266686pt;}
.y29_c00087{bottom:97.933353pt;}
.y28_c00087{bottom:111.400020pt;}
.y27_c00087{bottom:125.133353pt;}
.y26_c00087{bottom:138.600020pt;}
.y25_c00087{bottom:152.666686pt;}
.y24_c00087{bottom:165.800020pt;}
.y23_c00087{bottom:179.533353pt;}
.y22_c00087{bottom:193.266686pt;}
.y21_c00087{bottom:206.733353pt;}
.y20_c00087{bottom:220.200020pt;}
.y1f_c00087{bottom:234.266686pt;}
.y1e_c00087{bottom:247.400020pt;}
.y1d_c00087{bottom:284.466686pt;}
.y1c_c00087{bottom:302.066686pt;}
.y1b_c00087{bottom:319.400020pt;}
.y1a_c00087{bottom:336.333353pt;}
.y19_c00087{bottom:353.600020pt;}
.y18_c00087{bottom:371.200020pt;}
.y17_c00087{bottom:388.466686pt;}
.y16_c00087{bottom:405.466686pt;}
.y15_c00087{bottom:423.066686pt;}
.y14_c00087{bottom:440.000020pt;}
.y13_c00087{bottom:457.600020pt;}
.y12_c00087{bottom:474.866686pt;}
.y11_c00087{bottom:491.866686pt;}
.y10_c00087{bottom:509.466686pt;}
.yf_c00087{bottom:526.733353pt;}
.ye_c00087{bottom:544.000020pt;}
.yd_c00087{bottom:561.000020pt;}
.yc_c00087{bottom:578.266686pt;}
.yb_c00087{bottom:595.533353pt;}
.ya_c00087{bottom:612.733353pt;}
.y9_c00087{bottom:630.066686pt;}
.y8_c00087{bottom:647.400020pt;}
.y7_c00087{bottom:664.666686pt;}
.y6_c00087{bottom:681.933353pt;}
.y5_c00087{bottom:698.866686pt;}
.y4_c00087{bottom:716.200020pt;}
.y3_c00087{bottom:733.800020pt;}
.y2_c00087{bottom:750.733353pt;}
.y1_c00087{bottom:788.200020pt;}
.h2_c00087{height:44.470052pt;}
.h4_c00087{height:44.492188pt;}
.h3_c00087{height:52.343750pt;}
.h1_c00087{height:851.333333pt;}
.h0_c00087{height:851.533333pt;}
.w0_c00087{width:570.533360pt;}
.w1_c00087{width:570.666667pt;}
.x0_c00087{left:0.000000pt;}
.x3_c00087{left:71.066667pt;}
.x2_c00087{left:72.333333pt;}
.x5_c00087{left:76.466667pt;}
.x4_c00087{left:86.400000pt;}
.x6_c00087{left:101.733333pt;}
.x1_c00087{left:144.666667pt;}
.x7_c00087{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c49f4a324f57c5269fca509a.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00088;src:url('chunks/assets/font_67cb80dbc8f93daeb8a175e1.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00088{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00088{word-spacing:-12.750000px;}
.ws2_c00088{word-spacing:0.000000px;}
._d_c00088{margin-left:-13.260000px;}
._e_c00088{margin-left:-11.340000px;}
._5_c00088{margin-left:-9.300000px;}
._4_c00088{margin-left:-8.111163px;}
._19_c00088{margin-left:-6.096327px;}
._10_c00088{margin-left:-4.535913px;}
._14_c00088{margin-left:-3.023724px;}
._0_c00088{margin-left:-1.760979px;}
._2_c00088{width:1.115931px;}
._1_c00088{width:2.699991px;}
._15_c00088{width:3.792978px;}
._b_c00088{width:4.860000px;}
._c_c00088{width:6.312570px;}
._7_c00088{width:7.704477px;}
._f_c00088{width:9.836157px;}
._9_c00088{width:10.942041px;}
._a_c00088{width:12.312207px;}
._3_c00088{width:13.908147px;}
._6_c00088{width:16.500000px;}
._8_c00088{width:17.760000px;}
._11_c00088{width:19.200000px;}
._13_c00088{width:21.701958px;}
._12_c00088{width:22.980000px;}
._16_c00088{width:24.773745px;}
._18_c00088{width:25.973775px;}
._17_c00088{width:29.495733px;}
.fc1_c00088{color:transparent;}
.fc0_c00088{color:rgb(35,31,32);}
.fs0_c00088{font-size:51.000000px;}
.fs1_c00088{font-size:60.000000px;}
.y0_c00088{bottom:0.000000px;}
.y26_c00088{bottom:64.425022px;}
.y25_c00088{bottom:110.175022px;}
.y24_c00088{bottom:125.325022px;}
.y23_c00088{bottom:140.775022px;}
.y22_c00088{bottom:155.925022px;}
.y21_c00088{bottom:171.375022px;}
.y20_c00088{bottom:186.525022px;}
.y1f_c00088{bottom:201.975022px;}
.y1e_c00088{bottom:217.125022px;}
.y1d_c00088{bottom:232.575022px;}
.y1c_c00088{bottom:280.800022px;}
.y1b_c00088{bottom:300.225022px;}
.y1a_c00088{bottom:319.725022px;}
.y19_c00088{bottom:338.775022px;}
.y18_c00088{bottom:358.200022px;}
.y17_c00088{bottom:377.625022px;}
.y16_c00088{bottom:397.425022px;}
.y15_c00088{bottom:416.850022px;}
.y14_c00088{bottom:435.975022px;}
.y13_c00088{bottom:455.775022px;}
.y12_c00088{bottom:475.200022px;}
.y11_c00088{bottom:515.925022px;}
.y10_c00088{bottom:572.775022px;}
.yf_c00088{bottom:592.200022px;}
.ye_c00088{bottom:611.625022px;}
.yd_c00088{bottom:631.425022px;}
.yc_c00088{bottom:650.550022px;}
.yb_c00088{bottom:670.350022px;}
.ya_c00088{bottom:689.775022px;}
.y9_c00088{bottom:709.200022px;}
.y8_c00088{bottom:728.625022px;}
.y7_c00088{bottom:747.750022px;}
.y6_c00088{bottom:767.550022px;}
.y5_c00088{bottom:786.225022px;}
.y4_c00088{bottom:805.725022px;}
.y3_c00088{bottom:825.525022px;}
.y2_c00088{bottom:844.950022px;}
.y1_c00088{bottom:886.725022px;}
.h2_c00088{height:50.028809px;}
.h4_c00088{height:50.053711px;}
.h3_c00088{height:58.886719px;}
.h1_c00088{height:957.750000px;}
.h0_c00088{height:957.975000px;}
.w1_c00088{width:643.500000px;}
.w0_c00088{width:643.650000px;}
.x0_c00088{left:0.000000px;}
.x1_c00088{left:90.750000px;}
.x2_c00088{left:91.800000px;}
.x3_c00088{left:96.150000px;}
.x4_c00088{left:123.450000px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls0_c00088{letter-spacing:0.000000pt;}
.ws0_c00088{word-spacing:-13.333333pt;}
.ws1_c00088{word-spacing:-11.333333pt;}
.ws2_c00088{word-spacing:0.000000pt;}
._d_c00088{margin-left:-11.786667pt;}
._e_c00088{margin-left:-10.080000pt;}
._5_c00088{margin-left:-8.266667pt;}
._4_c00088{margin-left:-7.209923pt;}
._19_c00088{margin-left:-5.418957pt;}
._10_c00088{margin-left:-4.031923pt;}
._14_c00088{margin-left:-2.687755pt;}
._0_c00088{margin-left:-1.565315pt;}
._2_c00088{width:0.991939pt;}
._1_c00088{width:2.399992pt;}
._15_c00088{width:3.371536pt;}
._b_c00088{width:4.320000pt;}
._c_c00088{width:5.611173pt;}
._7_c00088{width:6.848424pt;}
._f_c00088{width:8.743251pt;}
._9_c00088{width:9.726259pt;}
._a_c00088{width:10.944184pt;}
._3_c00088{width:12.362797pt;}
._6_c00088{width:14.666667pt;}
._8_c00088{width:15.786667pt;}
._11_c00088{width:17.066667pt;}
._13_c00088{width:19.290629pt;}
._12_c00088{width:20.426667pt;}
._16_c00088{width:22.021107pt;}
._18_c00088{width:23.087800pt;}
._17_c00088{width:26.218429pt;}
.fs0_c00088{font-size:45.333333pt;}
.fs1_c00088{font-size:53.333333pt;}
.y0_c00088{bottom:0.000000pt;}
.y26_c00088{bottom:57.266686pt;}
.y25_c00088{bottom:97.933353pt;}
.y24_c00088{bottom:111.400020pt;}
.y23_c00088{bottom:125.133353pt;}
.y22_c00088{bottom:138.600020pt;}
.y21_c00088{bottom:152.333353pt;}
.y20_c00088{bottom:165.800020pt;}
.y1f_c00088{bottom:179.533353pt;}
.y1e_c00088{bottom:193.000020pt;}
.y1d_c00088{bottom:206.733353pt;}
.y1c_c00088{bottom:249.600020pt;}
.y1b_c00088{bottom:266.866686pt;}
.y1a_c00088{bottom:284.200020pt;}
.y19_c00088{bottom:301.133353pt;}
.y18_c00088{bottom:318.400020pt;}
.y17_c00088{bottom:335.666686pt;}
.y16_c00088{bottom:353.266686pt;}
.y15_c00088{bottom:370.533353pt;}
.y14_c00088{bottom:387.533353pt;}
.y13_c00088{bottom:405.133353pt;}
.y12_c00088{bottom:422.400020pt;}
.y11_c00088{bottom:458.600020pt;}
.y10_c00088{bottom:509.133353pt;}
.yf_c00088{bottom:526.400020pt;}
.ye_c00088{bottom:543.666686pt;}
.yd_c00088{bottom:561.266686pt;}
.yc_c00088{bottom:578.266686pt;}
.yb_c00088{bottom:595.866686pt;}
.ya_c00088{bottom:613.133353pt;}
.y9_c00088{bottom:630.400020pt;}
.y8_c00088{bottom:647.666686pt;}
.y7_c00088{bottom:664.666686pt;}
.y6_c00088{bottom:682.266686pt;}
.y5_c00088{bottom:698.866686pt;}
.y4_c00088{bottom:716.200020pt;}
.y3_c00088{bottom:733.800020pt;}
.y2_c00088{bottom:751.066686pt;}
.y1_c00088{bottom:788.200020pt;}
.h2_c00088{height:44.470052pt;}
.h4_c00088{height:44.492188pt;}
.h3_c00088{height:52.343750pt;}
.h1_c00088{height:851.333333pt;}
.h0_c00088{height:851.533333pt;}
.w1_c00088{width:572.000000pt;}
.w0_c00088{width:572.133333pt;}
.x0_c00088{left:0.000000pt;}
.x1_c00088{left:80.666667pt;}
.x2_c00088{left:81.600000pt;}
.x3_c00088{left:85.466667pt;}
.x4_c00088{left:109.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_de2633a9456d32f24ac2e707.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00089;src:url('chunks/assets/font_82d4a19bb8ed399d5f90f56c.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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:-15.000000px;}
.ws1_c00089{word-spacing:-12.750000px;}
.ws2_c00089{word-spacing:0.000000px;}
._17_c00089{margin-left:-15.600000px;}
._18_c00089{margin-left:-13.440000px;}
._16_c00089{margin-left:-12.120000px;}
._6_c00089{margin-left:-10.500000px;}
._f_c00089{margin-left:-8.400000px;}
._13_c00089{margin-left:-7.200000px;}
._1a_c00089{margin-left:-5.658162px;}
._5_c00089{margin-left:-4.560000px;}
._d_c00089{margin-left:-2.640000px;}
._0_c00089{margin-left:-1.080000px;}
._2_c00089{width:1.440000px;}
._4_c00089{width:2.460000px;}
._3_c00089{width:3.480000px;}
._1_c00089{width:5.100000px;}
._8_c00089{width:6.180000px;}
._7_c00089{width:7.200000px;}
._c_c00089{width:8.520000px;}
._e_c00089{width:9.540000px;}
._a_c00089{width:10.620000px;}
._9_c00089{width:11.760000px;}
._b_c00089{width:13.560000px;}
._12_c00089{width:16.680000px;}
._10_c00089{width:18.720000px;}
._11_c00089{width:19.980000px;}
._15_c00089{width:21.420000px;}
._19_c00089{width:22.950000px;}
._14_c00089{width:24.420000px;}
._1c_c00089{width:26.610000px;}
._1b_c00089{width:29.310051px;}
.fc1_c00089{color:transparent;}
.fc0_c00089{color:rgb(35,31,32);}
.fs1_c00089{font-size:51.000000px;}
.fs0_c00089{font-size:60.000000px;}
.y0_c00089{bottom:0.000000px;}
.y26_c00089{bottom:64.425022px;}
.y25_c00089{bottom:110.175022px;}
.y24_c00089{bottom:125.325022px;}
.y23_c00089{bottom:140.775022px;}
.y22_c00089{bottom:155.925022px;}
.y21_c00089{bottom:171.375022px;}
.y20_c00089{bottom:186.525022px;}
.y1f_c00089{bottom:201.975022px;}
.y1e_c00089{bottom:217.125022px;}
.y1d_c00089{bottom:258.525022px;}
.y1c_c00089{bottom:277.950022px;}
.y1b_c00089{bottom:318.600022px;}
.y19_c00089{bottom:378.375022px;}
.y18_c00089{bottom:398.175022px;}
.y17_c00089{bottom:417.675022px;}
.y16_c00089{bottom:437.100022px;}
.y15_c00089{bottom:456.525022px;}
.y14_c00089{bottom:475.950022px;}
.y13_c00089{bottom:495.375022px;}
.y12_c00089{bottom:514.800022px;}
.y11_c00089{bottom:534.225022px;}
.y10_c00089{bottom:553.725022px;}
.yf_c00089{bottom:572.775022px;}
.ye_c00089{bottom:592.200022px;}
.yd_c00089{bottom:611.925022px;}
.yc_c00089{bottom:631.425022px;}
.yb_c00089{bottom:650.925022px;}
.ya_c00089{bottom:669.975022px;}
.y9_c00089{bottom:689.625022px;}
.y8_c00089{bottom:709.125022px;}
.y7_c00089{bottom:728.625022px;}
.y6_c00089{bottom:748.125022px;}
.y5_c00089{bottom:767.175022px;}
.y4_c00089{bottom:786.600022px;}
.y3_c00089{bottom:806.025022px;}
.y2_c00089{bottom:825.525022px;}
.y1_c00089{bottom:844.575022px;}
.y1a_c00089{bottom:886.725022px;}
.h3_c00089{height:50.028809px;}
.h4_c00089{height:50.053711px;}
.h2_c00089{height:58.886719px;}
.h1_c00089{height:957.750000px;}
.h0_c00089{height:957.975000px;}
.w0_c00089{width:641.850030px;}
.w1_c00089{width:642.000000px;}
.x0_c00089{left:0.000000px;}
.x1_c00089{left:81.000000px;}
.x4_c00089{left:86.025000px;}
.x2_c00089{left:97.200000px;}
.x3_c00089{left:162.750000px;}
.x5_c00089{left:538.575000px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls0_c00089{letter-spacing:0.000000pt;}
.ws0_c00089{word-spacing:-13.333333pt;}
.ws1_c00089{word-spacing:-11.333333pt;}
.ws2_c00089{word-spacing:0.000000pt;}
._17_c00089{margin-left:-13.866667pt;}
._18_c00089{margin-left:-11.946667pt;}
._16_c00089{margin-left:-10.773333pt;}
._6_c00089{margin-left:-9.333333pt;}
._f_c00089{margin-left:-7.466667pt;}
._13_c00089{margin-left:-6.400000pt;}
._1a_c00089{margin-left:-5.029477pt;}
._5_c00089{margin-left:-4.053333pt;}
._d_c00089{margin-left:-2.346667pt;}
._0_c00089{margin-left:-0.960000pt;}
._2_c00089{width:1.280000pt;}
._4_c00089{width:2.186667pt;}
._3_c00089{width:3.093333pt;}
._1_c00089{width:4.533333pt;}
._8_c00089{width:5.493333pt;}
._7_c00089{width:6.400000pt;}
._c_c00089{width:7.573333pt;}
._e_c00089{width:8.480000pt;}
._a_c00089{width:9.440000pt;}
._9_c00089{width:10.453333pt;}
._b_c00089{width:12.053333pt;}
._12_c00089{width:14.826667pt;}
._10_c00089{width:16.640000pt;}
._11_c00089{width:17.760000pt;}
._15_c00089{width:19.040000pt;}
._19_c00089{width:20.400000pt;}
._14_c00089{width:21.706667pt;}
._1c_c00089{width:23.653333pt;}
._1b_c00089{width:26.053379pt;}
.fs1_c00089{font-size:45.333333pt;}
.fs0_c00089{font-size:53.333333pt;}
.y0_c00089{bottom:0.000000pt;}
.y26_c00089{bottom:57.266686pt;}
.y25_c00089{bottom:97.933353pt;}
.y24_c00089{bottom:111.400020pt;}
.y23_c00089{bottom:125.133353pt;}
.y22_c00089{bottom:138.600020pt;}
.y21_c00089{bottom:152.333353pt;}
.y20_c00089{bottom:165.800020pt;}
.y1f_c00089{bottom:179.533353pt;}
.y1e_c00089{bottom:193.000020pt;}
.y1d_c00089{bottom:229.800020pt;}
.y1c_c00089{bottom:247.066686pt;}
.y1b_c00089{bottom:283.200020pt;}
.y19_c00089{bottom:336.333353pt;}
.y18_c00089{bottom:353.933353pt;}
.y17_c00089{bottom:371.266686pt;}
.y16_c00089{bottom:388.533353pt;}
.y15_c00089{bottom:405.800020pt;}
.y14_c00089{bottom:423.066686pt;}
.y13_c00089{bottom:440.333353pt;}
.y12_c00089{bottom:457.600020pt;}
.y11_c00089{bottom:474.866686pt;}
.y10_c00089{bottom:492.200020pt;}
.yf_c00089{bottom:509.133353pt;}
.ye_c00089{bottom:526.400020pt;}
.yd_c00089{bottom:543.933353pt;}
.yc_c00089{bottom:561.266686pt;}
.yb_c00089{bottom:578.600020pt;}
.ya_c00089{bottom:595.533353pt;}
.y9_c00089{bottom:613.000020pt;}
.y8_c00089{bottom:630.333353pt;}
.y7_c00089{bottom:647.666686pt;}
.y6_c00089{bottom:665.000020pt;}
.y5_c00089{bottom:681.933353pt;}
.y4_c00089{bottom:699.200020pt;}
.y3_c00089{bottom:716.466686pt;}
.y2_c00089{bottom:733.800020pt;}
.y1_c00089{bottom:750.733353pt;}
.y1a_c00089{bottom:788.200020pt;}
.h3_c00089{height:44.470052pt;}
.h4_c00089{height:44.492188pt;}
.h2_c00089{height:52.343750pt;}
.h1_c00089{height:851.333333pt;}
.h0_c00089{height:851.533333pt;}
.w0_c00089{width:570.533360pt;}
.w1_c00089{width:570.666667pt;}
.x0_c00089{left:0.000000pt;}
.x1_c00089{left:72.000000pt;}
.x4_c00089{left:76.466667pt;}
.x2_c00089{left:86.400000pt;}
.x3_c00089{left:144.666667pt;}
.x5_c00089{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5cf150cc23170d6ee874f6cb.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00090;src:url('chunks/assets/font_d964d292baf3ace135d5a7c3.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00090{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00090{word-spacing:-12.750000px;}
.ws2_c00090{word-spacing:0.000000px;}
._12_c00090{margin-left:-12.795441px;}
._13_c00090{margin-left:-11.700000px;}
._11_c00090{margin-left:-10.175931px;}
._16_c00090{margin-left:-8.928528px;}
._15_c00090{margin-left:-7.013103px;}
._14_c00090{margin-left:-3.900000px;}
._d_c00090{margin-left:-2.804559px;}
._0_c00090{margin-left:-1.760979px;}
._2_c00090{width:1.115931px;}
._1_c00090{width:2.699991px;}
._c_c00090{width:3.955524px;}
._7_c00090{width:5.040009px;}
._3_c00090{width:6.761958px;}
._10_c00090{width:7.874292px;}
._5_c00090{width:9.048483px;}
._8_c00090{width:10.877544px;}
._6_c00090{width:12.348510px;}
._4_c00090{width:13.524069px;}
._b_c00090{width:16.608147px;}
._a_c00090{width:18.740979px;}
._9_c00090{width:19.862937px;}
._e_c00090{width:21.862257px;}
._f_c00090{width:23.129010px;}
._17_c00090{width:24.554580px;}
.fc1_c00090{color:transparent;}
.fc0_c00090{color:rgb(35,31,32);}
.fs0_c00090{font-size:51.000000px;}
.fs1_c00090{font-size:60.000000px;}
.y0_c00090{bottom:0.000000px;}
.y24_c00090{bottom:64.425022px;}
.y23_c00090{bottom:110.175022px;}
.y22_c00090{bottom:125.325022px;}
.y21_c00090{bottom:198.000022px;}
.y20_c00090{bottom:217.425022px;}
.y1f_c00090{bottom:236.550022px;}
.y1e_c00090{bottom:255.975022px;}
.y1d_c00090{bottom:275.775022px;}
.y1c_c00090{bottom:294.825022px;}
.y1b_c00090{bottom:314.625022px;}
.y1a_c00090{bottom:348.525022px;}
.y19_c00090{bottom:398.175022px;}
.y18_c00090{bottom:417.600022px;}
.y17_c00090{bottom:436.725022px;}
.y16_c00090{bottom:456.525022px;}
.y15_c00090{bottom:475.575022px;}
.y14_c00090{bottom:495.375022px;}
.y13_c00090{bottom:514.800022px;}
.y12_c00090{bottom:534.225022px;}
.y11_c00090{bottom:553.350022px;}
.y10_c00090{bottom:573.150022px;}
.yf_c00090{bottom:592.575022px;}
.ye_c00090{bottom:612.000022px;}
.yd_c00090{bottom:631.425022px;}
.yc_c00090{bottom:650.925022px;}
.yb_c00090{bottom:669.975022px;}
.ya_c00090{bottom:689.400022px;}
.y9_c00090{bottom:708.900022px;}
.y8_c00090{bottom:728.325022px;}
.y7_c00090{bottom:747.750022px;}
.y6_c00090{bottom:767.175022px;}
.y5_c00090{bottom:786.600022px;}
.y4_c00090{bottom:806.025022px;}
.y3_c00090{bottom:825.150022px;}
.y2_c00090{bottom:844.950022px;}
.y1_c00090{bottom:886.725022px;}
.h2_c00090{height:50.028809px;}
.h4_c00090{height:50.053711px;}
.h3_c00090{height:58.886719px;}
.h1_c00090{height:957.750000px;}
.h0_c00090{height:957.975000px;}
.w1_c00090{width:643.500000px;}
.w0_c00090{width:643.650000px;}
.x0_c00090{left:0.000000px;}
.x1_c00090{left:90.750000px;}
.x2_c00090{left:96.150000px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls0_c00090{letter-spacing:0.000000pt;}
.ws0_c00090{word-spacing:-13.333333pt;}
.ws1_c00090{word-spacing:-11.333333pt;}
.ws2_c00090{word-spacing:0.000000pt;}
._12_c00090{margin-left:-11.373725pt;}
._13_c00090{margin-left:-10.400000pt;}
._11_c00090{margin-left:-9.045272pt;}
._16_c00090{margin-left:-7.936469pt;}
._15_c00090{margin-left:-6.233869pt;}
._14_c00090{margin-left:-3.466667pt;}
._d_c00090{margin-left:-2.492941pt;}
._0_c00090{margin-left:-1.565315pt;}
._2_c00090{width:0.991939pt;}
._1_c00090{width:2.399992pt;}
._c_c00090{width:3.516021pt;}
._7_c00090{width:4.480008pt;}
._3_c00090{width:6.010629pt;}
._10_c00090{width:6.999371pt;}
._5_c00090{width:8.043096pt;}
._8_c00090{width:9.668928pt;}
._6_c00090{width:10.976453pt;}
._4_c00090{width:12.021395pt;}
._b_c00090{width:14.762797pt;}
._a_c00090{width:16.658648pt;}
._9_c00090{width:17.655944pt;}
._e_c00090{width:19.433117pt;}
._f_c00090{width:20.559120pt;}
._17_c00090{width:21.826293pt;}
.fs0_c00090{font-size:45.333333pt;}
.fs1_c00090{font-size:53.333333pt;}
.y0_c00090{bottom:0.000000pt;}
.y24_c00090{bottom:57.266686pt;}
.y23_c00090{bottom:97.933353pt;}
.y22_c00090{bottom:111.400020pt;}
.y21_c00090{bottom:176.000020pt;}
.y20_c00090{bottom:193.266686pt;}
.y1f_c00090{bottom:210.266686pt;}
.y1e_c00090{bottom:227.533353pt;}
.y1d_c00090{bottom:245.133353pt;}
.y1c_c00090{bottom:262.066686pt;}
.y1b_c00090{bottom:279.666686pt;}
.y1a_c00090{bottom:309.800020pt;}
.y19_c00090{bottom:353.933353pt;}
.y18_c00090{bottom:371.200020pt;}
.y17_c00090{bottom:388.200020pt;}
.y16_c00090{bottom:405.800020pt;}
.y15_c00090{bottom:422.733353pt;}
.y14_c00090{bottom:440.333353pt;}
.y13_c00090{bottom:457.600020pt;}
.y12_c00090{bottom:474.866686pt;}
.y11_c00090{bottom:491.866686pt;}
.y10_c00090{bottom:509.466686pt;}
.yf_c00090{bottom:526.733353pt;}
.ye_c00090{bottom:544.000020pt;}
.yd_c00090{bottom:561.266686pt;}
.yc_c00090{bottom:578.600020pt;}
.yb_c00090{bottom:595.533353pt;}
.ya_c00090{bottom:612.800020pt;}
.y9_c00090{bottom:630.133353pt;}
.y8_c00090{bottom:647.400020pt;}
.y7_c00090{bottom:664.666686pt;}
.y6_c00090{bottom:681.933353pt;}
.y5_c00090{bottom:699.200020pt;}
.y4_c00090{bottom:716.466686pt;}
.y3_c00090{bottom:733.466686pt;}
.y2_c00090{bottom:751.066686pt;}
.y1_c00090{bottom:788.200020pt;}
.h2_c00090{height:44.470052pt;}
.h4_c00090{height:44.492188pt;}
.h3_c00090{height:52.343750pt;}
.h1_c00090{height:851.333333pt;}
.h0_c00090{height:851.533333pt;}
.w1_c00090{width:572.000000pt;}
.w0_c00090{width:572.133333pt;}
.x0_c00090{left:0.000000pt;}
.x1_c00090{left:80.666667pt;}
.x2_c00090{left:85.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_feb510f261c71e9c092c2f8f.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00091;src:url('chunks/assets/font_6b69540594abb40a86c059c7.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00091{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00091{word-spacing:-12.750000px;}
.ws2_c00091{word-spacing:0.000000px;}
._c_c00091{margin-left:-11.220000px;}
._d_c00091{margin-left:-9.900000px;}
._11_c00091{margin-left:-8.580000px;}
._15_c00091{margin-left:-6.366000px;}
._b_c00091{margin-left:-4.440000px;}
._a_c00091{margin-left:-2.760000px;}
._0_c00091{margin-left:-1.140000px;}
._2_c00091{width:1.920000px;}
._3_c00091{width:3.480000px;}
._4_c00091{width:4.680000px;}
._8_c00091{width:6.420000px;}
._9_c00091{width:7.500000px;}
._1_c00091{width:8.520000px;}
._7_c00091{width:9.540000px;}
._5_c00091{width:11.760000px;}
._6_c00091{width:13.020000px;}
._14_c00091{width:14.469051px;}
._e_c00091{width:16.260000px;}
._f_c00091{width:17.520000px;}
._10_c00091{width:19.260000px;}
._13_c00091{width:21.150000px;}
._16_c00091{width:22.950000px;}
._17_c00091{width:24.150000px;}
._18_c00091{width:25.650021px;}
._12_c00091{width:26.850051px;}
.fc1_c00091{color:transparent;}
.fc0_c00091{color:rgb(35,31,32);}
.fs1_c00091{font-size:51.000000px;}
.fs0_c00091{font-size:60.000000px;}
.y0_c00091{bottom:0.000000px;}
.y27_c00091{bottom:64.425022px;}
.y26_c00091{bottom:110.550022px;}
.y25_c00091{bottom:125.325022px;}
.y24_c00091{bottom:140.775022px;}
.y23_c00091{bottom:155.925022px;}
.y22_c00091{bottom:171.375022px;}
.y21_c00091{bottom:186.825022px;}
.y20_c00091{bottom:202.350022px;}
.y1f_c00091{bottom:217.125022px;}
.y1e_c00091{bottom:232.950022px;}
.y1d_c00091{bottom:248.025022px;}
.y1c_c00091{bottom:263.175022px;}
.y1b_c00091{bottom:278.325022px;}
.y1a_c00091{bottom:293.775022px;}
.y18_c00091{bottom:379.425022px;}
.y17_c00091{bottom:398.550022px;}
.y16_c00091{bottom:417.975022px;}
.y15_c00091{bottom:437.775022px;}
.y14_c00091{bottom:456.825022px;}
.y13_c00091{bottom:476.625022px;}
.y12_c00091{bottom:495.750022px;}
.y11_c00091{bottom:515.550022px;}
.y10_c00091{bottom:534.600022px;}
.yf_c00091{bottom:554.025022px;}
.ye_c00091{bottom:573.525022px;}
.yd_c00091{bottom:593.325022px;}
.yc_c00091{bottom:612.750022px;}
.yb_c00091{bottom:632.175022px;}
.ya_c00091{bottom:651.600022px;}
.y9_c00091{bottom:670.725022px;}
.y8_c00091{bottom:690.525022px;}
.y7_c00091{bottom:709.950022px;}
.y6_c00091{bottom:728.625022px;}
.y5_c00091{bottom:748.425022px;}
.y4_c00091{bottom:767.925022px;}
.y3_c00091{bottom:787.350022px;}
.y2_c00091{bottom:825.150022px;}
.y1_c00091{bottom:844.950022px;}
.y19_c00091{bottom:886.725022px;}
.h3_c00091{height:50.028809px;}
.h4_c00091{height:50.053711px;}
.h2_c00091{height:58.886719px;}
.h1_c00091{height:957.750000px;}
.h0_c00091{height:957.975000px;}
.w0_c00091{width:641.850030px;}
.w1_c00091{width:642.000000px;}
.x0_c00091{left:0.000000px;}
.x3_c00091{left:80.250000px;}
.x1_c00091{left:81.375000px;}
.x5_c00091{left:86.025000px;}
.x2_c00091{left:97.575000px;}
.x6_c00091{left:113.775000px;}
.x4_c00091{left:162.750000px;}
.x7_c00091{left:538.575000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls0_c00091{letter-spacing:0.000000pt;}
.ws0_c00091{word-spacing:-13.333333pt;}
.ws1_c00091{word-spacing:-11.333333pt;}
.ws2_c00091{word-spacing:0.000000pt;}
._c_c00091{margin-left:-9.973333pt;}
._d_c00091{margin-left:-8.800000pt;}
._11_c00091{margin-left:-7.626667pt;}
._15_c00091{margin-left:-5.658667pt;}
._b_c00091{margin-left:-3.946667pt;}
._a_c00091{margin-left:-2.453333pt;}
._0_c00091{margin-left:-1.013333pt;}
._2_c00091{width:1.706667pt;}
._3_c00091{width:3.093333pt;}
._4_c00091{width:4.160000pt;}
._8_c00091{width:5.706667pt;}
._9_c00091{width:6.666667pt;}
._1_c00091{width:7.573333pt;}
._7_c00091{width:8.480000pt;}
._5_c00091{width:10.453333pt;}
._6_c00091{width:11.573333pt;}
._14_c00091{width:12.861379pt;}
._e_c00091{width:14.453333pt;}
._f_c00091{width:15.573333pt;}
._10_c00091{width:17.120000pt;}
._13_c00091{width:18.800000pt;}
._16_c00091{width:20.400000pt;}
._17_c00091{width:21.466667pt;}
._18_c00091{width:22.800019pt;}
._12_c00091{width:23.866712pt;}
.fs1_c00091{font-size:45.333333pt;}
.fs0_c00091{font-size:53.333333pt;}
.y0_c00091{bottom:0.000000pt;}
.y27_c00091{bottom:57.266686pt;}
.y26_c00091{bottom:98.266686pt;}
.y25_c00091{bottom:111.400020pt;}
.y24_c00091{bottom:125.133353pt;}
.y23_c00091{bottom:138.600020pt;}
.y22_c00091{bottom:152.333353pt;}
.y21_c00091{bottom:166.066686pt;}
.y20_c00091{bottom:179.866686pt;}
.y1f_c00091{bottom:193.000020pt;}
.y1e_c00091{bottom:207.066686pt;}
.y1d_c00091{bottom:220.466686pt;}
.y1c_c00091{bottom:233.933353pt;}
.y1b_c00091{bottom:247.400020pt;}
.y1a_c00091{bottom:261.133353pt;}
.y18_c00091{bottom:337.266686pt;}
.y17_c00091{bottom:354.266686pt;}
.y16_c00091{bottom:371.533353pt;}
.y15_c00091{bottom:389.133353pt;}
.y14_c00091{bottom:406.066686pt;}
.y13_c00091{bottom:423.666686pt;}
.y12_c00091{bottom:440.666686pt;}
.y11_c00091{bottom:458.266686pt;}
.y10_c00091{bottom:475.200020pt;}
.yf_c00091{bottom:492.466686pt;}
.ye_c00091{bottom:509.800020pt;}
.yd_c00091{bottom:527.400020pt;}
.yc_c00091{bottom:544.666686pt;}
.yb_c00091{bottom:561.933353pt;}
.ya_c00091{bottom:579.200020pt;}
.y9_c00091{bottom:596.200020pt;}
.y8_c00091{bottom:613.800020pt;}
.y7_c00091{bottom:631.066686pt;}
.y6_c00091{bottom:647.666686pt;}
.y5_c00091{bottom:665.266686pt;}
.y4_c00091{bottom:682.600020pt;}
.y3_c00091{bottom:699.866686pt;}
.y2_c00091{bottom:733.466686pt;}
.y1_c00091{bottom:751.066686pt;}
.y19_c00091{bottom:788.200020pt;}
.h3_c00091{height:44.470052pt;}
.h4_c00091{height:44.492188pt;}
.h2_c00091{height:52.343750pt;}
.h1_c00091{height:851.333333pt;}
.h0_c00091{height:851.533333pt;}
.w0_c00091{width:570.533360pt;}
.w1_c00091{width:570.666667pt;}
.x0_c00091{left:0.000000pt;}
.x3_c00091{left:71.333333pt;}
.x1_c00091{left:72.333333pt;}
.x5_c00091{left:76.466667pt;}
.x2_c00091{left:86.733333pt;}
.x6_c00091{left:101.133333pt;}
.x4_c00091{left:144.666667pt;}
.x7_c00091{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2b5a65c74b3ebf56d8dacffc.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00092;src:url('chunks/assets/font_5b8561d822fe9aad92b56ff5.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.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;}
}
.ws1_c00092{word-spacing:-15.000000px;}
.ws0_c00092{word-spacing:-12.750000px;}
.ws2_c00092{word-spacing:0.000000px;}
._4_c00092{margin-left:-12.000000px;}
._7_c00092{margin-left:-9.600000px;}
._e_c00092{margin-left:-8.460000px;}
._11_c00092{margin-left:-5.820000px;}
._6_c00092{margin-left:-4.740000px;}
._3_c00092{margin-left:-3.720000px;}
._1_c00092{margin-left:-1.740000px;}
._0_c00092{width:1.620000px;}
._5_c00092{width:2.880000px;}
._2_c00092{width:3.960000px;}
._8_c00092{width:5.580000px;}
._9_c00092{width:7.440000px;}
._a_c00092{width:8.580000px;}
._10_c00092{width:10.080000px;}
._d_c00092{width:11.880000px;}
._12_c00092{width:13.560000px;}
._19_c00092{width:14.573979px;}
._13_c00092{width:16.020000px;}
._c_c00092{width:17.640000px;}
._b_c00092{width:18.960000px;}
._f_c00092{width:21.000000px;}
._1b_c00092{width:23.730000px;}
._1a_c00092{width:25.470000px;}
._18_c00092{width:26.970072px;}
._16_c00092{width:35.460000px;}
._14_c00092{width:37.800000px;}
._17_c00092{width:39.360000px;}
._15_c00092{width:40.920000px;}
.fc1_c00092{color:transparent;}
.fc0_c00092{color:rgb(35,31,32);}
.fs1_c00092{font-size:51.000000px;}
.fs0_c00092{font-size:60.000000px;}
.y0_c00092{bottom:0.000000px;}
.y28_c00092{bottom:64.800022px;}
.y27_c00092{bottom:110.175022px;}
.y26_c00092{bottom:125.325022px;}
.y25_c00092{bottom:140.775022px;}
.y24_c00092{bottom:155.925022px;}
.y23_c00092{bottom:171.375022px;}
.y22_c00092{bottom:186.825022px;}
.y21_c00092{bottom:202.350022px;}
.y20_c00092{bottom:217.125022px;}
.y1f_c00092{bottom:232.950022px;}
.y1e_c00092{bottom:247.725022px;}
.y1d_c00092{bottom:263.175022px;}
.y1c_c00092{bottom:278.325022px;}
.y1b_c00092{bottom:293.775022px;}
.y1a_c00092{bottom:309.225022px;}
.y19_c00092{bottom:324.750022px;}
.y18_c00092{bottom:339.525022px;}
.y17_c00092{bottom:354.975022px;}
.y16_c00092{bottom:370.425022px;}
.y15_c00092{bottom:413.625022px;}
.y14_c00092{bottom:433.425022px;}
.y13_c00092{bottom:452.925022px;}
.y12_c00092{bottom:493.575022px;}
.y10_c00092{bottom:553.725022px;}
.yf_c00092{bottom:572.775022px;}
.ye_c00092{bottom:592.200022px;}
.yd_c00092{bottom:612.000022px;}
.yc_c00092{bottom:631.125022px;}
.yb_c00092{bottom:650.925022px;}
.ya_c00092{bottom:670.350022px;}
.y9_c00092{bottom:689.775022px;}
.y8_c00092{bottom:709.200022px;}
.y7_c00092{bottom:728.625022px;}
.y6_c00092{bottom:747.750022px;}
.y5_c00092{bottom:767.550022px;}
.y4_c00092{bottom:786.600022px;}
.y3_c00092{bottom:805.725022px;}
.y2_c00092{bottom:825.150022px;}
.y1_c00092{bottom:844.575022px;}
.y11_c00092{bottom:886.725022px;}
.h3_c00092{height:50.028809px;}
.h4_c00092{height:50.053711px;}
.h2_c00092{height:58.886719px;}
.h1_c00092{height:957.750000px;}
.h0_c00092{height:957.975000px;}
.w1_c00092{width:643.500000px;}
.w0_c00092{width:643.650000px;}
.x0_c00092{left:0.000000px;}
.x3_c00092{left:90.375000px;}
.x1_c00092{left:91.425000px;}
.x4_c00092{left:96.150000px;}
.x2_c00092{left:106.200000px;}
.x5_c00092{left:123.825000px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls0_c00092{letter-spacing:0.000000pt;}
.ws1_c00092{word-spacing:-13.333333pt;}
.ws0_c00092{word-spacing:-11.333333pt;}
.ws2_c00092{word-spacing:0.000000pt;}
._4_c00092{margin-left:-10.666667pt;}
._7_c00092{margin-left:-8.533333pt;}
._e_c00092{margin-left:-7.520000pt;}
._11_c00092{margin-left:-5.173333pt;}
._6_c00092{margin-left:-4.213333pt;}
._3_c00092{margin-left:-3.306667pt;}
._1_c00092{margin-left:-1.546667pt;}
._0_c00092{width:1.440000pt;}
._5_c00092{width:2.560000pt;}
._2_c00092{width:3.520000pt;}
._8_c00092{width:4.960000pt;}
._9_c00092{width:6.613333pt;}
._a_c00092{width:7.626667pt;}
._10_c00092{width:8.960000pt;}
._d_c00092{width:10.560000pt;}
._12_c00092{width:12.053333pt;}
._19_c00092{width:12.954648pt;}
._13_c00092{width:14.240000pt;}
._c_c00092{width:15.680000pt;}
._b_c00092{width:16.853333pt;}
._f_c00092{width:18.666667pt;}
._1b_c00092{width:21.093333pt;}
._1a_c00092{width:22.640000pt;}
._18_c00092{width:23.973397pt;}
._16_c00092{width:31.520000pt;}
._14_c00092{width:33.600000pt;}
._17_c00092{width:34.986667pt;}
._15_c00092{width:36.373333pt;}
.fs1_c00092{font-size:45.333333pt;}
.fs0_c00092{font-size:53.333333pt;}
.y0_c00092{bottom:0.000000pt;}
.y28_c00092{bottom:57.600020pt;}
.y27_c00092{bottom:97.933353pt;}
.y26_c00092{bottom:111.400020pt;}
.y25_c00092{bottom:125.133353pt;}
.y24_c00092{bottom:138.600020pt;}
.y23_c00092{bottom:152.333353pt;}
.y22_c00092{bottom:166.066686pt;}
.y21_c00092{bottom:179.866686pt;}
.y20_c00092{bottom:193.000020pt;}
.y1f_c00092{bottom:207.066686pt;}
.y1e_c00092{bottom:220.200020pt;}
.y1d_c00092{bottom:233.933353pt;}
.y1c_c00092{bottom:247.400020pt;}
.y1b_c00092{bottom:261.133353pt;}
.y1a_c00092{bottom:274.866686pt;}
.y19_c00092{bottom:288.666686pt;}
.y18_c00092{bottom:301.800020pt;}
.y17_c00092{bottom:315.533353pt;}
.y16_c00092{bottom:329.266686pt;}
.y15_c00092{bottom:367.666686pt;}
.y14_c00092{bottom:385.266686pt;}
.y13_c00092{bottom:402.600020pt;}
.y12_c00092{bottom:438.733353pt;}
.y10_c00092{bottom:492.200020pt;}
.yf_c00092{bottom:509.133353pt;}
.ye_c00092{bottom:526.400020pt;}
.yd_c00092{bottom:544.000020pt;}
.yc_c00092{bottom:561.000020pt;}
.yb_c00092{bottom:578.600020pt;}
.ya_c00092{bottom:595.866686pt;}
.y9_c00092{bottom:613.133353pt;}
.y8_c00092{bottom:630.400020pt;}
.y7_c00092{bottom:647.666686pt;}
.y6_c00092{bottom:664.666686pt;}
.y5_c00092{bottom:682.266686pt;}
.y4_c00092{bottom:699.200020pt;}
.y3_c00092{bottom:716.200020pt;}
.y2_c00092{bottom:733.466686pt;}
.y1_c00092{bottom:750.733353pt;}
.y11_c00092{bottom:788.200020pt;}
.h3_c00092{height:44.470052pt;}
.h4_c00092{height:44.492188pt;}
.h2_c00092{height:52.343750pt;}
.h1_c00092{height:851.333333pt;}
.h0_c00092{height:851.533333pt;}
.w1_c00092{width:572.000000pt;}
.w0_c00092{width:572.133333pt;}
.x0_c00092{left:0.000000pt;}
.x3_c00092{left:80.333333pt;}
.x1_c00092{left:81.266667pt;}
.x4_c00092{left:85.466667pt;}
.x2_c00092{left:94.400000pt;}
.x5_c00092{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7ca8f8957842ab412aabc986.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00093;src:url('chunks/assets/font_d26d3a8afd2fdc637389ad41.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00093{word-spacing:-15.000000px;}
.ws0_c00093{word-spacing:-12.750000px;}
.ws2_c00093{word-spacing:0.000000px;}
._17_c00093{margin-left:-12.360000px;}
._10_c00093{margin-left:-10.920000px;}
._d_c00093{margin-left:-9.540000px;}
._16_c00093{margin-left:-7.740000px;}
._5_c00093{margin-left:-5.460000px;}
._6_c00093{margin-left:-4.140000px;}
._15_c00093{margin-left:-2.460000px;}
._1_c00093{margin-left:-1.440000px;}
._3_c00093{width:1.680000px;}
._7_c00093{width:2.760000px;}
._2_c00093{width:4.320000px;}
._f_c00093{width:5.400000px;}
._4_c00093{width:6.600000px;}
._0_c00093{width:7.800000px;}
._e_c00093{width:9.780000px;}
._c_c00093{width:11.040000px;}
._a_c00093{width:12.360000px;}
._9_c00093{width:13.920000px;}
._1a_c00093{width:15.165135px;}
._14_c00093{width:16.200000px;}
._8_c00093{width:17.340000px;}
._b_c00093{width:18.720000px;}
._11_c00093{width:19.740000px;}
._13_c00093{width:21.840000px;}
._12_c00093{width:23.940000px;}
._19_c00093{width:25.650000px;}
._18_c00093{width:26.850000px;}
._1b_c00093{width:27.869949px;}
.fc1_c00093{color:transparent;}
.fc0_c00093{color:rgb(35,31,32);}
.fs1_c00093{font-size:51.000000px;}
.fs0_c00093{font-size:60.000000px;}
.y0_c00093{bottom:0.000000px;}
.y27_c00093{bottom:64.425022px;}
.y26_c00093{bottom:110.175022px;}
.y25_c00093{bottom:125.625022px;}
.y24_c00093{bottom:140.775022px;}
.y23_c00093{bottom:156.225022px;}
.y22_c00093{bottom:171.375022px;}
.y21_c00093{bottom:186.525022px;}
.y20_c00093{bottom:202.875022px;}
.y1f_c00093{bottom:217.425022px;}
.y1e_c00093{bottom:232.575022px;}
.y1d_c00093{bottom:248.025022px;}
.y1c_c00093{bottom:263.550022px;}
.y1b_c00093{bottom:278.625022px;}
.y1a_c00093{bottom:293.775022px;}
.y19_c00093{bottom:308.925022px;}
.y18_c00093{bottom:324.375022px;}
.y17_c00093{bottom:339.525022px;}
.y16_c00093{bottom:354.975022px;}
.y15_c00093{bottom:370.125022px;}
.y13_c00093{bottom:495.000022px;}
.y12_c00093{bottom:514.800022px;}
.y11_c00093{bottom:533.925022px;}
.y10_c00093{bottom:553.725022px;}
.yf_c00093{bottom:573.150022px;}
.ye_c00093{bottom:592.575022px;}
.yd_c00093{bottom:612.000022px;}
.yc_c00093{bottom:631.425022px;}
.yb_c00093{bottom:650.550022px;}
.ya_c00093{bottom:669.975022px;}
.y9_c00093{bottom:689.775022px;}
.y8_c00093{bottom:709.200022px;}
.y7_c00093{bottom:728.325022px;}
.y6_c00093{bottom:748.125022px;}
.y5_c00093{bottom:767.550022px;}
.y4_c00093{bottom:786.225022px;}
.y3_c00093{bottom:806.025022px;}
.y2_c00093{bottom:825.525022px;}
.y1_c00093{bottom:844.950022px;}
.y14_c00093{bottom:886.725022px;}
.h3_c00093{height:50.028809px;}
.h4_c00093{height:50.053711px;}
.h2_c00093{height:58.886719px;}
.h1_c00093{height:957.750000px;}
.h0_c00093{height:957.975000px;}
.w0_c00093{width:641.850030px;}
.w1_c00093{width:642.000000px;}
.x0_c00093{left:0.000000px;}
.x2_c00093{left:80.250000px;}
.x1_c00093{left:81.375000px;}
.x4_c00093{left:86.025000px;}
.x5_c00093{left:114.150000px;}
.x3_c00093{left:162.750000px;}
.x6_c00093{left:538.575000px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls0_c00093{letter-spacing:0.000000pt;}
.ws1_c00093{word-spacing:-13.333333pt;}
.ws0_c00093{word-spacing:-11.333333pt;}
.ws2_c00093{word-spacing:0.000000pt;}
._17_c00093{margin-left:-10.986667pt;}
._10_c00093{margin-left:-9.706667pt;}
._d_c00093{margin-left:-8.480000pt;}
._16_c00093{margin-left:-6.880000pt;}
._5_c00093{margin-left:-4.853333pt;}
._6_c00093{margin-left:-3.680000pt;}
._15_c00093{margin-left:-2.186667pt;}
._1_c00093{margin-left:-1.280000pt;}
._3_c00093{width:1.493333pt;}
._7_c00093{width:2.453333pt;}
._2_c00093{width:3.840000pt;}
._f_c00093{width:4.800000pt;}
._4_c00093{width:5.866667pt;}
._0_c00093{width:6.933333pt;}
._e_c00093{width:8.693333pt;}
._c_c00093{width:9.813333pt;}
._a_c00093{width:10.986667pt;}
._9_c00093{width:12.373333pt;}
._1a_c00093{width:13.480120pt;}
._14_c00093{width:14.400000pt;}
._8_c00093{width:15.413333pt;}
._b_c00093{width:16.640000pt;}
._11_c00093{width:17.546667pt;}
._13_c00093{width:19.413333pt;}
._12_c00093{width:21.280000pt;}
._19_c00093{width:22.800000pt;}
._18_c00093{width:23.866667pt;}
._1b_c00093{width:24.773288pt;}
.fs1_c00093{font-size:45.333333pt;}
.fs0_c00093{font-size:53.333333pt;}
.y0_c00093{bottom:0.000000pt;}
.y27_c00093{bottom:57.266686pt;}
.y26_c00093{bottom:97.933353pt;}
.y25_c00093{bottom:111.666686pt;}
.y24_c00093{bottom:125.133353pt;}
.y23_c00093{bottom:138.866686pt;}
.y22_c00093{bottom:152.333353pt;}
.y21_c00093{bottom:165.800020pt;}
.y20_c00093{bottom:180.333353pt;}
.y1f_c00093{bottom:193.266686pt;}
.y1e_c00093{bottom:206.733353pt;}
.y1d_c00093{bottom:220.466686pt;}
.y1c_c00093{bottom:234.266686pt;}
.y1b_c00093{bottom:247.666686pt;}
.y1a_c00093{bottom:261.133353pt;}
.y19_c00093{bottom:274.600020pt;}
.y18_c00093{bottom:288.333353pt;}
.y17_c00093{bottom:301.800020pt;}
.y16_c00093{bottom:315.533353pt;}
.y15_c00093{bottom:329.000020pt;}
.y13_c00093{bottom:440.000020pt;}
.y12_c00093{bottom:457.600020pt;}
.y11_c00093{bottom:474.600020pt;}
.y10_c00093{bottom:492.200020pt;}
.yf_c00093{bottom:509.466686pt;}
.ye_c00093{bottom:526.733353pt;}
.yd_c00093{bottom:544.000020pt;}
.yc_c00093{bottom:561.266686pt;}
.yb_c00093{bottom:578.266686pt;}
.ya_c00093{bottom:595.533353pt;}
.y9_c00093{bottom:613.133353pt;}
.y8_c00093{bottom:630.400020pt;}
.y7_c00093{bottom:647.400020pt;}
.y6_c00093{bottom:665.000020pt;}
.y5_c00093{bottom:682.266686pt;}
.y4_c00093{bottom:698.866686pt;}
.y3_c00093{bottom:716.466686pt;}
.y2_c00093{bottom:733.800020pt;}
.y1_c00093{bottom:751.066686pt;}
.y14_c00093{bottom:788.200020pt;}
.h3_c00093{height:44.470052pt;}
.h4_c00093{height:44.492188pt;}
.h2_c00093{height:52.343750pt;}
.h1_c00093{height:851.333333pt;}
.h0_c00093{height:851.533333pt;}
.w0_c00093{width:570.533360pt;}
.w1_c00093{width:570.666667pt;}
.x0_c00093{left:0.000000pt;}
.x2_c00093{left:71.333333pt;}
.x1_c00093{left:72.333333pt;}
.x4_c00093{left:76.466667pt;}
.x5_c00093{left:101.466667pt;}
.x3_c00093{left:144.666667pt;}
.x6_c00093{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bf3319d769f1bc0774dcf523.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00094;src:url('chunks/assets/font_f79c18510b6c292daac687f4.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.ls0_c00094{letter-spacing:0.000000px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00094{word-spacing:-15.000000px;}
.ws0_c00094{word-spacing:-12.750000px;}
.ws2_c00094{word-spacing:0.000000px;}
._f_c00094{margin-left:-12.120000px;}
._e_c00094{margin-left:-10.680000px;}
._14_c00094{margin-left:-6.645108px;}
._a_c00094{margin-left:-5.160000px;}
._c_c00094{margin-left:-3.480000px;}
._b_c00094{margin-left:-2.100000px;}
._0_c00094{margin-left:-1.080000px;}
._2_c00094{width:1.500000px;}
._3_c00094{width:3.360000px;}
._10_c00094{width:4.920000px;}
._8_c00094{width:6.000000px;}
._d_c00094{width:7.200000px;}
._9_c00094{width:8.280000px;}
._1_c00094{width:9.420000px;}
._6_c00094{width:10.560000px;}
._5_c00094{width:12.240000px;}
._4_c00094{width:13.740000px;}
._15_c00094{width:15.363042px;}
._7_c00094{width:17.160000px;}
._11_c00094{width:18.780000px;}
._12_c00094{width:19.920000px;}
._16_c00094{width:25.950021px;}
._13_c00094{width:27.150051px;}
.fc1_c00094{color:transparent;}
.fc0_c00094{color:rgb(35,31,32);}
.fs1_c00094{font-size:51.000000px;}
.fs0_c00094{font-size:60.000000px;}
.y0_c00094{bottom:0.000000px;}
.y27_c00094{bottom:64.800022px;}
.y26_c00094{bottom:110.175022px;}
.y25_c00094{bottom:125.625022px;}
.y24_c00094{bottom:140.775022px;}
.y23_c00094{bottom:156.225022px;}
.y22_c00094{bottom:171.375022px;}
.y21_c00094{bottom:186.525022px;}
.y20_c00094{bottom:201.975022px;}
.y1f_c00094{bottom:217.425022px;}
.y1e_c00094{bottom:232.575022px;}
.y1d_c00094{bottom:247.725022px;}
.y1c_c00094{bottom:263.175022px;}
.y1b_c00094{bottom:278.325022px;}
.y1a_c00094{bottom:294.150022px;}
.y19_c00094{bottom:308.925022px;}
.y18_c00094{bottom:324.750022px;}
.y17_c00094{bottom:339.825022px;}
.y16_c00094{bottom:354.975022px;}
.y15_c00094{bottom:370.425022px;}
.y14_c00094{bottom:385.950022px;}
.y12_c00094{bottom:496.125022px;}
.y11_c00094{bottom:515.175022px;}
.y10_c00094{bottom:534.975022px;}
.yf_c00094{bottom:554.100022px;}
.ye_c00094{bottom:573.525022px;}
.yd_c00094{bottom:592.950022px;}
.yc_c00094{bottom:612.750022px;}
.yb_c00094{bottom:631.800022px;}
.ya_c00094{bottom:651.600022px;}
.y9_c00094{bottom:671.025022px;}
.y8_c00094{bottom:690.525022px;}
.y7_c00094{bottom:709.950022px;}
.y6_c00094{bottom:728.625022px;}
.y5_c00094{bottom:748.500022px;}
.y4_c00094{bottom:767.925022px;}
.y3_c00094{bottom:787.350022px;}
.y2_c00094{bottom:806.400022px;}
.y1_c00094{bottom:844.575022px;}
.y13_c00094{bottom:886.725022px;}
.h3_c00094{height:50.028809px;}
.h4_c00094{height:50.053711px;}
.h2_c00094{height:58.886719px;}
.h1_c00094{height:957.750000px;}
.h0_c00094{height:957.975000px;}
.w1_c00094{width:643.500000px;}
.w0_c00094{width:643.650000px;}
.x0_c00094{left:0.000000px;}
.x2_c00094{left:90.375000px;}
.x1_c00094{left:91.425000px;}
.x3_c00094{left:96.150000px;}
.x4_c00094{left:123.450000px;}
.x5_c00094{left:124.575000px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls0_c00094{letter-spacing:0.000000pt;}
.ws1_c00094{word-spacing:-13.333333pt;}
.ws0_c00094{word-spacing:-11.333333pt;}
.ws2_c00094{word-spacing:0.000000pt;}
._f_c00094{margin-left:-10.773333pt;}
._e_c00094{margin-left:-9.493333pt;}
._14_c00094{margin-left:-5.906763pt;}
._a_c00094{margin-left:-4.586667pt;}
._c_c00094{margin-left:-3.093333pt;}
._b_c00094{margin-left:-1.866667pt;}
._0_c00094{margin-left:-0.960000pt;}
._2_c00094{width:1.333333pt;}
._3_c00094{width:2.986667pt;}
._10_c00094{width:4.373333pt;}
._8_c00094{width:5.333333pt;}
._d_c00094{width:6.400000pt;}
._9_c00094{width:7.360000pt;}
._1_c00094{width:8.373333pt;}
._6_c00094{width:9.386667pt;}
._5_c00094{width:10.880000pt;}
._4_c00094{width:12.213333pt;}
._15_c00094{width:13.656037pt;}
._7_c00094{width:15.253333pt;}
._11_c00094{width:16.693333pt;}
._12_c00094{width:17.706667pt;}
._16_c00094{width:23.066685pt;}
._13_c00094{width:24.133379pt;}
.fs1_c00094{font-size:45.333333pt;}
.fs0_c00094{font-size:53.333333pt;}
.y0_c00094{bottom:0.000000pt;}
.y27_c00094{bottom:57.600020pt;}
.y26_c00094{bottom:97.933353pt;}
.y25_c00094{bottom:111.666686pt;}
.y24_c00094{bottom:125.133353pt;}
.y23_c00094{bottom:138.866686pt;}
.y22_c00094{bottom:152.333353pt;}
.y21_c00094{bottom:165.800020pt;}
.y20_c00094{bottom:179.533353pt;}
.y1f_c00094{bottom:193.266686pt;}
.y1e_c00094{bottom:206.733353pt;}
.y1d_c00094{bottom:220.200020pt;}
.y1c_c00094{bottom:233.933353pt;}
.y1b_c00094{bottom:247.400020pt;}
.y1a_c00094{bottom:261.466686pt;}
.y19_c00094{bottom:274.600020pt;}
.y18_c00094{bottom:288.666686pt;}
.y17_c00094{bottom:302.066686pt;}
.y16_c00094{bottom:315.533353pt;}
.y15_c00094{bottom:329.266686pt;}
.y14_c00094{bottom:343.066686pt;}
.y12_c00094{bottom:441.000020pt;}
.y11_c00094{bottom:457.933353pt;}
.y10_c00094{bottom:475.533353pt;}
.yf_c00094{bottom:492.533353pt;}
.ye_c00094{bottom:509.800020pt;}
.yd_c00094{bottom:527.066686pt;}
.yc_c00094{bottom:544.666686pt;}
.yb_c00094{bottom:561.600020pt;}
.ya_c00094{bottom:579.200020pt;}
.y9_c00094{bottom:596.466686pt;}
.y8_c00094{bottom:613.800020pt;}
.y7_c00094{bottom:631.066686pt;}
.y6_c00094{bottom:647.666686pt;}
.y5_c00094{bottom:665.333353pt;}
.y4_c00094{bottom:682.600020pt;}
.y3_c00094{bottom:699.866686pt;}
.y2_c00094{bottom:716.800020pt;}
.y1_c00094{bottom:750.733353pt;}
.y13_c00094{bottom:788.200020pt;}
.h3_c00094{height:44.470052pt;}
.h4_c00094{height:44.492188pt;}
.h2_c00094{height:52.343750pt;}
.h1_c00094{height:851.333333pt;}
.h0_c00094{height:851.533333pt;}
.w1_c00094{width:572.000000pt;}
.w0_c00094{width:572.133333pt;}
.x0_c00094{left:0.000000pt;}
.x2_c00094{left:80.333333pt;}
.x1_c00094{left:81.266667pt;}
.x3_c00094{left:85.466667pt;}
.x4_c00094{left:109.733333pt;}
.x5_c00094{left:110.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_da881d88f8d9f34fe237851a.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00095;src:url('chunks/assets/font_a5426d4b25d3849bc4ea6c85.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00095{letter-spacing:0.000000px;}
.sc__c00095{text-shadow:none;}
.sc0_c00095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00095{-webkit-text-stroke:0px transparent;}
.sc0_c00095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00095{word-spacing:-15.000000px;}
.ws0_c00095{word-spacing:-12.750000px;}
.ws2_c00095{word-spacing:0.000000px;}
._15_c00095{margin-left:-13.200000px;}
._c_c00095{margin-left:-12.000000px;}
._b_c00095{margin-left:-10.800000px;}
._d_c00095{margin-left:-8.640000px;}
._14_c00095{margin-left:-7.560000px;}
._11_c00095{margin-left:-5.880000px;}
._1_c00095{margin-left:-4.800000px;}
._0_c00095{margin-left:-3.180000px;}
._7_c00095{margin-left:-1.620000px;}
._3_c00095{width:1.680000px;}
._4_c00095{width:3.240000px;}
._a_c00095{width:4.440000px;}
._18_c00095{width:5.510964px;}
._8_c00095{width:6.540000px;}
._5_c00095{width:7.680000px;}
._6_c00095{width:9.060000px;}
._19_c00095{width:10.082958px;}
._2_c00095{width:11.100000px;}
._9_c00095{width:12.120000px;}
._13_c00095{width:13.440000px;}
._16_c00095{width:14.691138px;}
._10_c00095{width:16.020000px;}
._e_c00095{width:17.280000px;}
._f_c00095{width:18.300000px;}
._12_c00095{width:19.560000px;}
._1d_c00095{width:21.021000px;}
._17_c00095{width:24.990021px;}
._1e_c00095{width:26.190000px;}
._1a_c00095{width:27.690000px;}
._1f_c00095{width:29.370051px;}
._1c_c00095{width:31.302000px;}
._1b_c00095{width:32.834982px;}
.fc1_c00095{color:transparent;}
.fc0_c00095{color:rgb(35,31,32);}
.fs1_c00095{font-size:51.000000px;}
.fs0_c00095{font-size:60.000000px;}
.y0_c00095{bottom:0.000000px;}
.y27_c00095{bottom:64.425022px;}
.y26_c00095{bottom:110.550022px;}
.y25_c00095{bottom:125.325022px;}
.y24_c00095{bottom:141.150022px;}
.y23_c00095{bottom:155.925022px;}
.y22_c00095{bottom:171.375022px;}
.y21_c00095{bottom:186.525022px;}
.y20_c00095{bottom:201.975022px;}
.y1f_c00095{bottom:217.425022px;}
.y1e_c00095{bottom:232.575022px;}
.y1d_c00095{bottom:247.725022px;}
.y1c_c00095{bottom:263.175022px;}
.y1b_c00095{bottom:278.625022px;}
.y1a_c00095{bottom:293.775022px;}
.y19_c00095{bottom:308.925022px;}
.y18_c00095{bottom:324.375022px;}
.y17_c00095{bottom:339.525022px;}
.y16_c00095{bottom:355.350022px;}
.y15_c00095{bottom:370.425022px;}
.y14_c00095{bottom:385.950022px;}
.y13_c00095{bottom:400.725022px;}
.y12_c00095{bottom:416.175022px;}
.y11_c00095{bottom:484.950022px;}
.y10_c00095{bottom:504.000022px;}
.yf_c00095{bottom:523.800022px;}
.ye_c00095{bottom:543.225022px;}
.yd_c00095{bottom:562.725022px;}
.yc_c00095{bottom:582.075022px;}
.yb_c00095{bottom:601.200022px;}
.ya_c00095{bottom:620.325022px;}
.y9_c00095{bottom:640.125022px;}
.y8_c00095{bottom:678.225022px;}
.y6_c00095{bottom:728.625022px;}
.y5_c00095{bottom:748.125022px;}
.y4_c00095{bottom:767.550022px;}
.y3_c00095{bottom:786.975022px;}
.y2_c00095{bottom:806.775022px;}
.y1_c00095{bottom:844.950022px;}
.y7_c00095{bottom:886.725022px;}
.h3_c00095{height:50.028809px;}
.h4_c00095{height:50.053711px;}
.h2_c00095{height:58.886719px;}
.h1_c00095{height:957.750000px;}
.h0_c00095{height:957.975000px;}
.w0_c00095{width:641.850030px;}
.w1_c00095{width:642.000000px;}
.x0_c00095{left:0.000000px;}
.x3_c00095{left:80.625000px;}
.x1_c00095{left:81.750000px;}
.x4_c00095{left:86.025000px;}
.x5_c00095{left:114.150000px;}
.x2_c00095{left:162.750000px;}
.x6_c00095{left:538.575000px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls0_c00095{letter-spacing:0.000000pt;}
.ws1_c00095{word-spacing:-13.333333pt;}
.ws0_c00095{word-spacing:-11.333333pt;}
.ws2_c00095{word-spacing:0.000000pt;}
._15_c00095{margin-left:-11.733333pt;}
._c_c00095{margin-left:-10.666667pt;}
._b_c00095{margin-left:-9.600000pt;}
._d_c00095{margin-left:-7.680000pt;}
._14_c00095{margin-left:-6.720000pt;}
._11_c00095{margin-left:-5.226667pt;}
._1_c00095{margin-left:-4.266667pt;}
._0_c00095{margin-left:-2.826667pt;}
._7_c00095{margin-left:-1.440000pt;}
._3_c00095{width:1.493333pt;}
._4_c00095{width:2.880000pt;}
._a_c00095{width:3.946667pt;}
._18_c00095{width:4.898635pt;}
._8_c00095{width:5.813333pt;}
._5_c00095{width:6.826667pt;}
._6_c00095{width:8.053333pt;}
._19_c00095{width:8.962629pt;}
._2_c00095{width:9.866667pt;}
._9_c00095{width:10.773333pt;}
._13_c00095{width:11.946667pt;}
._16_c00095{width:13.058789pt;}
._10_c00095{width:14.240000pt;}
._e_c00095{width:15.360000pt;}
._f_c00095{width:16.266667pt;}
._12_c00095{width:17.386667pt;}
._1d_c00095{width:18.685333pt;}
._17_c00095{width:22.213352pt;}
._1e_c00095{width:23.280000pt;}
._1a_c00095{width:24.613333pt;}
._1f_c00095{width:26.106712pt;}
._1c_c00095{width:27.824000pt;}
._1b_c00095{width:29.186651pt;}
.fs1_c00095{font-size:45.333333pt;}
.fs0_c00095{font-size:53.333333pt;}
.y0_c00095{bottom:0.000000pt;}
.y27_c00095{bottom:57.266686pt;}
.y26_c00095{bottom:98.266686pt;}
.y25_c00095{bottom:111.400020pt;}
.y24_c00095{bottom:125.466686pt;}
.y23_c00095{bottom:138.600020pt;}
.y22_c00095{bottom:152.333353pt;}
.y21_c00095{bottom:165.800020pt;}
.y20_c00095{bottom:179.533353pt;}
.y1f_c00095{bottom:193.266686pt;}
.y1e_c00095{bottom:206.733353pt;}
.y1d_c00095{bottom:220.200020pt;}
.y1c_c00095{bottom:233.933353pt;}
.y1b_c00095{bottom:247.666686pt;}
.y1a_c00095{bottom:261.133353pt;}
.y19_c00095{bottom:274.600020pt;}
.y18_c00095{bottom:288.333353pt;}
.y17_c00095{bottom:301.800020pt;}
.y16_c00095{bottom:315.866686pt;}
.y15_c00095{bottom:329.266686pt;}
.y14_c00095{bottom:343.066686pt;}
.y13_c00095{bottom:356.200020pt;}
.y12_c00095{bottom:369.933353pt;}
.y11_c00095{bottom:431.066686pt;}
.y10_c00095{bottom:448.000020pt;}
.yf_c00095{bottom:465.600020pt;}
.ye_c00095{bottom:482.866686pt;}
.yd_c00095{bottom:500.200020pt;}
.yc_c00095{bottom:517.400020pt;}
.yb_c00095{bottom:534.400020pt;}
.ya_c00095{bottom:551.400020pt;}
.y9_c00095{bottom:569.000020pt;}
.y8_c00095{bottom:602.866686pt;}
.y6_c00095{bottom:647.666686pt;}
.y5_c00095{bottom:665.000020pt;}
.y4_c00095{bottom:682.266686pt;}
.y3_c00095{bottom:699.533353pt;}
.y2_c00095{bottom:717.133353pt;}
.y1_c00095{bottom:751.066686pt;}
.y7_c00095{bottom:788.200020pt;}
.h3_c00095{height:44.470052pt;}
.h4_c00095{height:44.492188pt;}
.h2_c00095{height:52.343750pt;}
.h1_c00095{height:851.333333pt;}
.h0_c00095{height:851.533333pt;}
.w0_c00095{width:570.533360pt;}
.w1_c00095{width:570.666667pt;}
.x0_c00095{left:0.000000pt;}
.x3_c00095{left:71.666667pt;}
.x1_c00095{left:72.666667pt;}
.x4_c00095{left:76.466667pt;}
.x5_c00095{left:101.466667pt;}
.x2_c00095{left:144.666667pt;}
.x6_c00095{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b7dadc622c4cebec96454ac1.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00096;src:url('chunks/assets/font_4d07e95813c0c39ef6030f2d.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00096{letter-spacing:0.000000px;}
.sc__c00096{text-shadow:none;}
.sc0_c00096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00096{-webkit-text-stroke:0px transparent;}
.sc0_c00096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00096{word-spacing:-15.000000px;}
.ws1_c00096{word-spacing:-12.750000px;}
.ws2_c00096{word-spacing:0.000000px;}
._9_c00096{margin-left:-10.980000px;}
._4_c00096{margin-left:-9.720000px;}
._e_c00096{margin-left:-8.580000px;}
._16_c00096{margin-left:-6.600012px;}
._f_c00096{margin-left:-4.680000px;}
._12_c00096{margin-left:-3.480000px;}
._5_c00096{margin-left:-2.400000px;}
._2_c00096{margin-left:-1.080000px;}
._1_c00096{width:1.440000px;}
._3_c00096{width:2.820000px;}
._7_c00096{width:4.200000px;}
._0_c00096{width:5.280000px;}
._6_c00096{width:7.140000px;}
._11_c00096{width:8.460000px;}
._8_c00096{width:10.200000px;}
._10_c00096{width:11.580000px;}
._c_c00096{width:12.720000px;}
._13_c00096{width:13.980000px;}
._a_c00096{width:16.200000px;}
._b_c00096{width:18.060000px;}
._d_c00096{width:19.200000px;}
._17_c00096{width:21.330000px;}
._14_c00096{width:25.350000px;}
._15_c00096{width:26.549970px;}
.fc1_c00096{color:transparent;}
.fc0_c00096{color:rgb(35,31,32);}
.fs1_c00096{font-size:51.000000px;}
.fs0_c00096{font-size:60.000000px;}
.y0_c00096{bottom:0.000000px;}
.y2a_c00096{bottom:64.425022px;}
.y29_c00096{bottom:110.550022px;}
.y28_c00096{bottom:125.325022px;}
.y27_c00096{bottom:141.150022px;}
.y26_c00096{bottom:155.925022px;}
.y25_c00096{bottom:171.375022px;}
.y24_c00096{bottom:186.525022px;}
.y23_c00096{bottom:201.975022px;}
.y22_c00096{bottom:217.425022px;}
.y21_c00096{bottom:232.575022px;}
.y20_c00096{bottom:247.725022px;}
.y1f_c00096{bottom:263.175022px;}
.y1e_c00096{bottom:278.625022px;}
.y1d_c00096{bottom:293.775022px;}
.y1c_c00096{bottom:309.225022px;}
.y1b_c00096{bottom:324.375022px;}
.y1a_c00096{bottom:339.525022px;}
.y19_c00096{bottom:355.350022px;}
.y17_c00096{bottom:417.225022px;}
.y16_c00096{bottom:437.100022px;}
.y15_c00096{bottom:456.525022px;}
.y14_c00096{bottom:475.950022px;}
.y13_c00096{bottom:495.375022px;}
.y12_c00096{bottom:514.425022px;}
.y11_c00096{bottom:533.925022px;}
.y10_c00096{bottom:553.725022px;}
.yf_c00096{bottom:573.150022px;}
.ye_c00096{bottom:592.575022px;}
.yd_c00096{bottom:611.625022px;}
.yc_c00096{bottom:631.125022px;}
.yb_c00096{bottom:650.925022px;}
.ya_c00096{bottom:670.350022px;}
.y9_c00096{bottom:689.400022px;}
.y8_c00096{bottom:708.825022px;}
.y7_c00096{bottom:728.325022px;}
.y6_c00096{bottom:748.125022px;}
.y5_c00096{bottom:767.550022px;}
.y4_c00096{bottom:786.225022px;}
.y3_c00096{bottom:805.725022px;}
.y2_c00096{bottom:825.525022px;}
.y1_c00096{bottom:844.575022px;}
.y18_c00096{bottom:886.725022px;}
.h3_c00096{height:50.028809px;}
.h4_c00096{height:50.053711px;}
.h2_c00096{height:58.886719px;}
.h1_c00096{height:957.750000px;}
.h0_c00096{height:957.975000px;}
.w1_c00096{width:643.500000px;}
.w0_c00096{width:643.650000px;}
.x0_c00096{left:0.000000px;}
.x2_c00096{left:90.375000px;}
.x1_c00096{left:91.425000px;}
.x4_c00096{left:96.150000px;}
.x3_c00096{left:107.250000px;}
.x5_c00096{left:123.825000px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls0_c00096{letter-spacing:0.000000pt;}
.ws0_c00096{word-spacing:-13.333333pt;}
.ws1_c00096{word-spacing:-11.333333pt;}
.ws2_c00096{word-spacing:0.000000pt;}
._9_c00096{margin-left:-9.760000pt;}
._4_c00096{margin-left:-8.640000pt;}
._e_c00096{margin-left:-7.626667pt;}
._16_c00096{margin-left:-5.866677pt;}
._f_c00096{margin-left:-4.160000pt;}
._12_c00096{margin-left:-3.093333pt;}
._5_c00096{margin-left:-2.133333pt;}
._2_c00096{margin-left:-0.960000pt;}
._1_c00096{width:1.280000pt;}
._3_c00096{width:2.506667pt;}
._7_c00096{width:3.733333pt;}
._0_c00096{width:4.693333pt;}
._6_c00096{width:6.346667pt;}
._11_c00096{width:7.520000pt;}
._8_c00096{width:9.066667pt;}
._10_c00096{width:10.293333pt;}
._c_c00096{width:11.306667pt;}
._13_c00096{width:12.426667pt;}
._a_c00096{width:14.400000pt;}
._b_c00096{width:16.053333pt;}
._d_c00096{width:17.066667pt;}
._17_c00096{width:18.960000pt;}
._14_c00096{width:22.533333pt;}
._15_c00096{width:23.599973pt;}
.fs1_c00096{font-size:45.333333pt;}
.fs0_c00096{font-size:53.333333pt;}
.y0_c00096{bottom:0.000000pt;}
.y2a_c00096{bottom:57.266686pt;}
.y29_c00096{bottom:98.266686pt;}
.y28_c00096{bottom:111.400020pt;}
.y27_c00096{bottom:125.466686pt;}
.y26_c00096{bottom:138.600020pt;}
.y25_c00096{bottom:152.333353pt;}
.y24_c00096{bottom:165.800020pt;}
.y23_c00096{bottom:179.533353pt;}
.y22_c00096{bottom:193.266686pt;}
.y21_c00096{bottom:206.733353pt;}
.y20_c00096{bottom:220.200020pt;}
.y1f_c00096{bottom:233.933353pt;}
.y1e_c00096{bottom:247.666686pt;}
.y1d_c00096{bottom:261.133353pt;}
.y1c_c00096{bottom:274.866686pt;}
.y1b_c00096{bottom:288.333353pt;}
.y1a_c00096{bottom:301.800020pt;}
.y19_c00096{bottom:315.866686pt;}
.y17_c00096{bottom:370.866686pt;}
.y16_c00096{bottom:388.533353pt;}
.y15_c00096{bottom:405.800020pt;}
.y14_c00096{bottom:423.066686pt;}
.y13_c00096{bottom:440.333353pt;}
.y12_c00096{bottom:457.266686pt;}
.y11_c00096{bottom:474.600020pt;}
.y10_c00096{bottom:492.200020pt;}
.yf_c00096{bottom:509.466686pt;}
.ye_c00096{bottom:526.733353pt;}
.yd_c00096{bottom:543.666686pt;}
.yc_c00096{bottom:561.000020pt;}
.yb_c00096{bottom:578.600020pt;}
.ya_c00096{bottom:595.866686pt;}
.y9_c00096{bottom:612.800020pt;}
.y8_c00096{bottom:630.066686pt;}
.y7_c00096{bottom:647.400020pt;}
.y6_c00096{bottom:665.000020pt;}
.y5_c00096{bottom:682.266686pt;}
.y4_c00096{bottom:698.866686pt;}
.y3_c00096{bottom:716.200020pt;}
.y2_c00096{bottom:733.800020pt;}
.y1_c00096{bottom:750.733353pt;}
.y18_c00096{bottom:788.200020pt;}
.h3_c00096{height:44.470052pt;}
.h4_c00096{height:44.492188pt;}
.h2_c00096{height:52.343750pt;}
.h1_c00096{height:851.333333pt;}
.h0_c00096{height:851.533333pt;}
.w1_c00096{width:572.000000pt;}
.w0_c00096{width:572.133333pt;}
.x0_c00096{left:0.000000pt;}
.x2_c00096{left:80.333333pt;}
.x1_c00096{left:81.266667pt;}
.x4_c00096{left:85.466667pt;}
.x3_c00096{left:95.333333pt;}
.x5_c00096{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aa2612d69dbe6dc5a062c8f5.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00097;src:url('chunks/assets/font_f3844a036ae4aa58e538e3e7.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00097{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00097{word-spacing:-15.000000px;}
.ws0_c00097{word-spacing:-12.750000px;}
.ws2_c00097{word-spacing:0.000000px;}
._3_c00097{margin-left:-13.140000px;}
._2_c00097{margin-left:-12.060000px;}
._11_c00097{margin-left:-10.860000px;}
._10_c00097{margin-left:-9.540000px;}
._12_c00097{margin-left:-8.400000px;}
._14_c00097{margin-left:-5.340000px;}
._c_c00097{margin-left:-3.360000px;}
._7_c00097{margin-left:-1.740000px;}
._1_c00097{width:1.740000px;}
._d_c00097{width:2.940000px;}
._f_c00097{width:4.200000px;}
._13_c00097{width:6.060000px;}
._e_c00097{width:7.200000px;}
._4_c00097{width:8.460000px;}
._5_c00097{width:10.440000px;}
._0_c00097{width:11.760000px;}
._6_c00097{width:13.320000px;}
._18_c00097{width:14.663982px;}
._17_c00097{width:15.671916px;}
._9_c00097{width:16.980000px;}
._a_c00097{width:18.300000px;}
._8_c00097{width:19.980000px;}
._b_c00097{width:21.960000px;}
._19_c00097{width:24.659718px;}
._16_c00097{width:26.430051px;}
._15_c00097{width:31.290000px;}
.fc1_c00097{color:transparent;}
.fc0_c00097{color:rgb(35,31,32);}
.fs1_c00097{font-size:51.000000px;}
.fs0_c00097{font-size:60.000000px;}
.y0_c00097{bottom:0.000000px;}
.y2a_c00097{bottom:64.425022px;}
.y29_c00097{bottom:110.550022px;}
.y28_c00097{bottom:125.325022px;}
.y27_c00097{bottom:140.775022px;}
.y26_c00097{bottom:156.225022px;}
.y25_c00097{bottom:171.375022px;}
.y24_c00097{bottom:186.825022px;}
.y23_c00097{bottom:201.975022px;}
.y22_c00097{bottom:217.425022px;}
.y21_c00097{bottom:232.575022px;}
.y20_c00097{bottom:247.725022px;}
.y1f_c00097{bottom:263.175022px;}
.y1e_c00097{bottom:278.325022px;}
.y1d_c00097{bottom:293.775022px;}
.y1c_c00097{bottom:308.925022px;}
.y1b_c00097{bottom:324.375022px;}
.y1a_c00097{bottom:339.525022px;}
.y18_c00097{bottom:397.800022px;}
.y17_c00097{bottom:417.600022px;}
.y16_c00097{bottom:436.725022px;}
.y15_c00097{bottom:456.525022px;}
.y14_c00097{bottom:475.575022px;}
.y13_c00097{bottom:495.375022px;}
.y12_c00097{bottom:514.425022px;}
.y11_c00097{bottom:534.225022px;}
.y10_c00097{bottom:553.725022px;}
.yf_c00097{bottom:572.775022px;}
.ye_c00097{bottom:592.575022px;}
.yd_c00097{bottom:611.625022px;}
.yc_c00097{bottom:631.425022px;}
.yb_c00097{bottom:650.550022px;}
.ya_c00097{bottom:669.975022px;}
.y9_c00097{bottom:689.400022px;}
.y8_c00097{bottom:708.825022px;}
.y7_c00097{bottom:728.625022px;}
.y6_c00097{bottom:747.750022px;}
.y5_c00097{bottom:767.550022px;}
.y4_c00097{bottom:786.600022px;}
.y3_c00097{bottom:806.025022px;}
.y2_c00097{bottom:825.525022px;}
.y1_c00097{bottom:844.950022px;}
.y19_c00097{bottom:886.725022px;}
.h3_c00097{height:50.028809px;}
.h4_c00097{height:50.053711px;}
.h2_c00097{height:58.886719px;}
.h1_c00097{height:957.750000px;}
.h0_c00097{height:957.975000px;}
.w0_c00097{width:641.850030px;}
.w1_c00097{width:642.000000px;}
.x0_c00097{left:0.000000px;}
.x1_c00097{left:81.000000px;}
.x4_c00097{left:86.025000px;}
.x2_c00097{left:96.825000px;}
.x6_c00097{left:113.025000px;}
.x5_c00097{left:114.450000px;}
.x3_c00097{left:162.750000px;}
.x7_c00097{left:538.575000px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls0_c00097{letter-spacing:0.000000pt;}
.ws1_c00097{word-spacing:-13.333333pt;}
.ws0_c00097{word-spacing:-11.333333pt;}
.ws2_c00097{word-spacing:0.000000pt;}
._3_c00097{margin-left:-11.680000pt;}
._2_c00097{margin-left:-10.720000pt;}
._11_c00097{margin-left:-9.653333pt;}
._10_c00097{margin-left:-8.480000pt;}
._12_c00097{margin-left:-7.466667pt;}
._14_c00097{margin-left:-4.746667pt;}
._c_c00097{margin-left:-2.986667pt;}
._7_c00097{margin-left:-1.546667pt;}
._1_c00097{width:1.546667pt;}
._d_c00097{width:2.613333pt;}
._f_c00097{width:3.733333pt;}
._13_c00097{width:5.386667pt;}
._e_c00097{width:6.400000pt;}
._4_c00097{width:7.520000pt;}
._5_c00097{width:9.280000pt;}
._0_c00097{width:10.453333pt;}
._6_c00097{width:11.840000pt;}
._18_c00097{width:13.034651pt;}
._17_c00097{width:13.930592pt;}
._9_c00097{width:15.093333pt;}
._a_c00097{width:16.266667pt;}
._8_c00097{width:17.760000pt;}
._b_c00097{width:19.520000pt;}
._19_c00097{width:21.919749pt;}
._16_c00097{width:23.493379pt;}
._15_c00097{width:27.813333pt;}
.fs1_c00097{font-size:45.333333pt;}
.fs0_c00097{font-size:53.333333pt;}
.y0_c00097{bottom:0.000000pt;}
.y2a_c00097{bottom:57.266686pt;}
.y29_c00097{bottom:98.266686pt;}
.y28_c00097{bottom:111.400020pt;}
.y27_c00097{bottom:125.133353pt;}
.y26_c00097{bottom:138.866686pt;}
.y25_c00097{bottom:152.333353pt;}
.y24_c00097{bottom:166.066686pt;}
.y23_c00097{bottom:179.533353pt;}
.y22_c00097{bottom:193.266686pt;}
.y21_c00097{bottom:206.733353pt;}
.y20_c00097{bottom:220.200020pt;}
.y1f_c00097{bottom:233.933353pt;}
.y1e_c00097{bottom:247.400020pt;}
.y1d_c00097{bottom:261.133353pt;}
.y1c_c00097{bottom:274.600020pt;}
.y1b_c00097{bottom:288.333353pt;}
.y1a_c00097{bottom:301.800020pt;}
.y18_c00097{bottom:353.600020pt;}
.y17_c00097{bottom:371.200020pt;}
.y16_c00097{bottom:388.200020pt;}
.y15_c00097{bottom:405.800020pt;}
.y14_c00097{bottom:422.733353pt;}
.y13_c00097{bottom:440.333353pt;}
.y12_c00097{bottom:457.266686pt;}
.y11_c00097{bottom:474.866686pt;}
.y10_c00097{bottom:492.200020pt;}
.yf_c00097{bottom:509.133353pt;}
.ye_c00097{bottom:526.733353pt;}
.yd_c00097{bottom:543.666686pt;}
.yc_c00097{bottom:561.266686pt;}
.yb_c00097{bottom:578.266686pt;}
.ya_c00097{bottom:595.533353pt;}
.y9_c00097{bottom:612.800020pt;}
.y8_c00097{bottom:630.066686pt;}
.y7_c00097{bottom:647.666686pt;}
.y6_c00097{bottom:664.666686pt;}
.y5_c00097{bottom:682.266686pt;}
.y4_c00097{bottom:699.200020pt;}
.y3_c00097{bottom:716.466686pt;}
.y2_c00097{bottom:733.800020pt;}
.y1_c00097{bottom:751.066686pt;}
.y19_c00097{bottom:788.200020pt;}
.h3_c00097{height:44.470052pt;}
.h4_c00097{height:44.492188pt;}
.h2_c00097{height:52.343750pt;}
.h1_c00097{height:851.333333pt;}
.h0_c00097{height:851.533333pt;}
.w0_c00097{width:570.533360pt;}
.w1_c00097{width:570.666667pt;}
.x0_c00097{left:0.000000pt;}
.x1_c00097{left:72.000000pt;}
.x4_c00097{left:76.466667pt;}
.x2_c00097{left:86.066667pt;}
.x6_c00097{left:100.466667pt;}
.x5_c00097{left:101.733333pt;}
.x3_c00097{left:144.666667pt;}
.x7_c00097{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3d176c957f01c51346885c6a.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00098;src:url('chunks/assets/font_da8d8ba23f2b2571e1cf3db1.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00098{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_c00098{vertical-align:0.000000px;}
.ls0_c00098{letter-spacing:0.000000px;}
.sc__c00098{text-shadow:none;}
.sc0_c00098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00098{-webkit-text-stroke:0px transparent;}
.sc0_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00098{word-spacing:-15.000000px;}
.ws0_c00098{word-spacing:-12.750000px;}
.ws2_c00098{word-spacing:0.000000px;}
._15_c00098{margin-left:-16.463724px;}
._16_c00098{margin-left:-15.304062px;}
._17_c00098{margin-left:-11.676639px;}
._7_c00098{margin-left:-10.307439px;}
._18_c00098{margin-left:-9.041709px;}
._f_c00098{margin-left:-8.041683px;}
._14_c00098{margin-left:-7.031376px;}
._a_c00098{margin-left:-5.988465px;}
._e_c00098{margin-left:-4.513662px;}
._6_c00098{margin-left:-3.336276px;}
._0_c00098{margin-left:-1.760979px;}
._2_c00098{width:1.115931px;}
._1_c00098{width:2.699991px;}
._8_c00098{width:3.816294px;}
._9_c00098{width:5.460699px;}
._3_c00098{width:6.720354px;}
._5_c00098{width:8.616630px;}
._4_c00098{width:10.022937px;}
._c_c00098{width:11.520345px;}
._b_c00098{width:13.009209px;}
._d_c00098{width:16.872243px;}
._11_c00098{width:18.732207px;}
._12_c00098{width:21.372225px;}
._13_c00098{width:22.412814px;}
._19_c00098{width:23.771958px;}
._10_c00098{width:24.804069px;}
._1a_c00098{width:26.471958px;}
.fc1_c00098{color:transparent;}
.fc0_c00098{color:rgb(35,31,32);}
.fs0_c00098{font-size:51.000000px;}
.fs1_c00098{font-size:60.000000px;}
.y0_c00098{bottom:0.000000px;}
.y26_c00098{bottom:64.425022px;}
.y25_c00098{bottom:110.175022px;}
.y24_c00098{bottom:125.325022px;}
.y23_c00098{bottom:140.775022px;}
.y22_c00098{bottom:156.225022px;}
.y21_c00098{bottom:171.375022px;}
.y20_c00098{bottom:186.825022px;}
.y1f_c00098{bottom:201.975022px;}
.y1e_c00098{bottom:217.125022px;}
.y1d_c00098{bottom:232.575022px;}
.y1c_c00098{bottom:247.725022px;}
.y1b_c00098{bottom:263.175022px;}
.y1a_c00098{bottom:278.625022px;}
.y19_c00098{bottom:293.775022px;}
.y18_c00098{bottom:367.575022px;}
.y17_c00098{bottom:386.925022px;}
.y16_c00098{bottom:406.425022px;}
.y15_c00098{bottom:425.925022px;}
.y14_c00098{bottom:444.975022px;}
.y13_c00098{bottom:464.775022px;}
.y12_c00098{bottom:484.200022px;}
.y11_c00098{bottom:503.325022px;}
.y10_c00098{bottom:522.750022px;}
.yf_c00098{bottom:542.550022px;}
.ye_c00098{bottom:561.525022px;}
.yd_c00098{bottom:581.025022px;}
.yc_c00098{bottom:600.525022px;}
.yb_c00098{bottom:619.950022px;}
.ya_c00098{bottom:639.375022px;}
.y9_c00098{bottom:658.800022px;}
.y8_c00098{bottom:697.350022px;}
.y7_c00098{bottom:748.125022px;}
.y6_c00098{bottom:767.175022px;}
.y5_c00098{bottom:786.600022px;}
.y4_c00098{bottom:806.025022px;}
.y3_c00098{bottom:825.525022px;}
.y2_c00098{bottom:844.575022px;}
.y1_c00098{bottom:886.725022px;}
.h2_c00098{height:50.028809px;}
.h4_c00098{height:50.053711px;}
.h3_c00098{height:58.886719px;}
.h1_c00098{height:957.750000px;}
.h0_c00098{height:957.975000px;}
.w1_c00098{width:643.500000px;}
.w0_c00098{width:643.650000px;}
.x0_c00098{left:0.000000px;}
.x1_c00098{left:90.750000px;}
.x2_c00098{left:91.800000px;}
.x3_c00098{left:96.150000px;}
.x4_c00098{left:123.825000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls0_c00098{letter-spacing:0.000000pt;}
.ws1_c00098{word-spacing:-13.333333pt;}
.ws0_c00098{word-spacing:-11.333333pt;}
.ws2_c00098{word-spacing:0.000000pt;}
._15_c00098{margin-left:-14.634421pt;}
._16_c00098{margin-left:-13.603611pt;}
._17_c00098{margin-left:-10.379235pt;}
._7_c00098{margin-left:-9.162168pt;}
._18_c00098{margin-left:-8.037075pt;}
._f_c00098{margin-left:-7.148163pt;}
._14_c00098{margin-left:-6.250112pt;}
._a_c00098{margin-left:-5.323080pt;}
._e_c00098{margin-left:-4.012144pt;}
._6_c00098{margin-left:-2.965579pt;}
._0_c00098{margin-left:-1.565315pt;}
._2_c00098{width:0.991939pt;}
._1_c00098{width:2.399992pt;}
._8_c00098{width:3.392261pt;}
._9_c00098{width:4.853955pt;}
._3_c00098{width:5.973648pt;}
._5_c00098{width:7.659227pt;}
._4_c00098{width:8.909277pt;}
._c_c00098{width:10.240307pt;}
._b_c00098{width:11.563741pt;}
._d_c00098{width:14.997549pt;}
._11_c00098{width:16.650851pt;}
._12_c00098{width:18.997533pt;}
._13_c00098{width:19.922501pt;}
._19_c00098{width:21.130629pt;}
._10_c00098{width:22.048061pt;}
._1a_c00098{width:23.530629pt;}
.fs0_c00098{font-size:45.333333pt;}
.fs1_c00098{font-size:53.333333pt;}
.y0_c00098{bottom:0.000000pt;}
.y26_c00098{bottom:57.266686pt;}
.y25_c00098{bottom:97.933353pt;}
.y24_c00098{bottom:111.400020pt;}
.y23_c00098{bottom:125.133353pt;}
.y22_c00098{bottom:138.866686pt;}
.y21_c00098{bottom:152.333353pt;}
.y20_c00098{bottom:166.066686pt;}
.y1f_c00098{bottom:179.533353pt;}
.y1e_c00098{bottom:193.000020pt;}
.y1d_c00098{bottom:206.733353pt;}
.y1c_c00098{bottom:220.200020pt;}
.y1b_c00098{bottom:233.933353pt;}
.y1a_c00098{bottom:247.666686pt;}
.y19_c00098{bottom:261.133353pt;}
.y18_c00098{bottom:326.733353pt;}
.y17_c00098{bottom:343.933353pt;}
.y16_c00098{bottom:361.266686pt;}
.y15_c00098{bottom:378.600020pt;}
.y14_c00098{bottom:395.533353pt;}
.y13_c00098{bottom:413.133353pt;}
.y12_c00098{bottom:430.400020pt;}
.y11_c00098{bottom:447.400020pt;}
.y10_c00098{bottom:464.666686pt;}
.yf_c00098{bottom:482.266686pt;}
.ye_c00098{bottom:499.133353pt;}
.yd_c00098{bottom:516.466686pt;}
.yc_c00098{bottom:533.800020pt;}
.yb_c00098{bottom:551.066686pt;}
.ya_c00098{bottom:568.333353pt;}
.y9_c00098{bottom:585.600020pt;}
.y8_c00098{bottom:619.866686pt;}
.y7_c00098{bottom:665.000020pt;}
.y6_c00098{bottom:681.933353pt;}
.y5_c00098{bottom:699.200020pt;}
.y4_c00098{bottom:716.466686pt;}
.y3_c00098{bottom:733.800020pt;}
.y2_c00098{bottom:750.733353pt;}
.y1_c00098{bottom:788.200020pt;}
.h2_c00098{height:44.470052pt;}
.h4_c00098{height:44.492188pt;}
.h3_c00098{height:52.343750pt;}
.h1_c00098{height:851.333333pt;}
.h0_c00098{height:851.533333pt;}
.w1_c00098{width:572.000000pt;}
.w0_c00098{width:572.133333pt;}
.x0_c00098{left:0.000000pt;}
.x1_c00098{left:80.666667pt;}
.x2_c00098{left:81.600000pt;}
.x3_c00098{left:85.466667pt;}
.x4_c00098{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_67dbe3b9af473e8581b72600.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00099;src:url('chunks/assets/font_29377b2b733d0bfb33cbd3b3.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.ls0_c00099{letter-spacing:0.000000px;}
.sc__c00099{text-shadow:none;}
.sc0_c00099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00099{-webkit-text-stroke:0px transparent;}
.sc0_c00099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00099{word-spacing:-15.000000px;}
.ws1_c00099{word-spacing:-12.750000px;}
.ws2_c00099{word-spacing:0.000000px;}
._12_c00099{margin-left:-14.646003px;}
._13_c00099{margin-left:-13.553997px;}
._e_c00099{margin-left:-11.106027px;}
._5_c00099{margin-left:-9.666003px;}
._7_c00099{margin-left:-8.400000px;}
._19_c00099{margin-left:-6.099087px;}
._10_c00099{margin-left:-5.042967px;}
._6_c00099{margin-left:-3.300000px;}
._2_c00099{margin-left:-1.895976px;}
._0_c00099{width:1.173000px;}
._1_c00099{width:2.531997px;}
._8_c00099{width:3.600000px;}
._14_c00099{width:4.691949px;}
._b_c00099{width:5.760009px;}
._4_c00099{width:7.350003px;}
._3_c00099{width:9.015003px;}
._a_c00099{width:10.455003px;}
._9_c00099{width:11.583000px;}
._f_c00099{width:13.299012px;}
._11_c00099{width:17.612919px;}
._d_c00099{width:18.731976px;}
._c_c00099{width:19.839009px;}
._18_c00099{width:22.950000px;}
._17_c00099{width:24.041952px;}
._16_c00099{width:25.541952px;}
._15_c00099{width:26.742003px;}
._1a_c00099{width:28.637928px;}
.fc1_c00099{color:transparent;}
.fc0_c00099{color:rgb(35,31,32);}
.fs0_c00099{font-size:51.000000px;}
.fs1_c00099{font-size:60.000000px;}
.y0_c00099{bottom:0.000000px;}
.y28_c00099{bottom:64.425022px;}
.y27_c00099{bottom:110.175022px;}
.y26_c00099{bottom:125.325022px;}
.y25_c00099{bottom:140.775022px;}
.y24_c00099{bottom:156.225022px;}
.y23_c00099{bottom:171.375022px;}
.y22_c00099{bottom:186.525022px;}
.y21_c00099{bottom:201.975022px;}
.y20_c00099{bottom:217.125022px;}
.y1f_c00099{bottom:232.575022px;}
.y1e_c00099{bottom:282.975022px;}
.y1d_c00099{bottom:302.025022px;}
.y1c_c00099{bottom:330.150022px;}
.y1b_c00099{bottom:349.950022px;}
.y1a_c00099{bottom:369.375022px;}
.y19_c00099{bottom:388.800022px;}
.y18_c00099{bottom:408.225022px;}
.y17_c00099{bottom:427.725022px;}
.y16_c00099{bottom:456.150022px;}
.y15_c00099{bottom:475.575022px;}
.y14_c00099{bottom:495.375022px;}
.y13_c00099{bottom:514.800022px;}
.y12_c00099{bottom:533.925022px;}
.y11_c00099{bottom:553.725022px;}
.y10_c00099{bottom:572.775022px;}
.yf_c00099{bottom:592.200022px;}
.ye_c00099{bottom:611.625022px;}
.yd_c00099{bottom:631.125022px;}
.yc_c00099{bottom:650.550022px;}
.yb_c00099{bottom:670.350022px;}
.ya_c00099{bottom:689.775022px;}
.y9_c00099{bottom:708.825022px;}
.y8_c00099{bottom:728.325022px;}
.y7_c00099{bottom:748.125022px;}
.y6_c00099{bottom:767.550022px;}
.y5_c00099{bottom:786.225022px;}
.y4_c00099{bottom:806.025022px;}
.y3_c00099{bottom:825.150022px;}
.y2_c00099{bottom:844.875022px;}
.y1_c00099{bottom:886.725022px;}
.h2_c00099{height:50.028809px;}
.h5_c00099{height:50.053711px;}
.h4_c00099{height:58.857422px;}
.h3_c00099{height:58.886719px;}
.h1_c00099{height:957.750000px;}
.h0_c00099{height:957.975000px;}
.w0_c00099{width:641.850030px;}
.w1_c00099{width:642.000000px;}
.x0_c00099{left:0.000000px;}
.x3_c00099{left:80.250000px;}
.x2_c00099{left:81.375000px;}
.x6_c00099{left:86.025000px;}
.x4_c00099{left:96.150000px;}
.x5_c00099{left:97.575000px;}
.x1_c00099{left:162.750000px;}
.x7_c00099{left:538.575000px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls0_c00099{letter-spacing:0.000000pt;}
.ws0_c00099{word-spacing:-13.333333pt;}
.ws1_c00099{word-spacing:-11.333333pt;}
.ws2_c00099{word-spacing:0.000000pt;}
._12_c00099{margin-left:-13.018669pt;}
._13_c00099{margin-left:-12.047997pt;}
._e_c00099{margin-left:-9.872024pt;}
._5_c00099{margin-left:-8.592003pt;}
._7_c00099{margin-left:-7.466667pt;}
._19_c00099{margin-left:-5.421411pt;}
._10_c00099{margin-left:-4.482637pt;}
._6_c00099{margin-left:-2.933333pt;}
._2_c00099{margin-left:-1.685312pt;}
._0_c00099{width:1.042667pt;}
._1_c00099{width:2.250664pt;}
._8_c00099{width:3.200000pt;}
._14_c00099{width:4.170621pt;}
._b_c00099{width:5.120008pt;}
._4_c00099{width:6.533336pt;}
._3_c00099{width:8.013336pt;}
._a_c00099{width:9.293336pt;}
._9_c00099{width:10.296000pt;}
._f_c00099{width:11.821344pt;}
._11_c00099{width:15.655928pt;}
._d_c00099{width:16.650645pt;}
._c_c00099{width:17.634675pt;}
._18_c00099{width:20.400000pt;}
._17_c00099{width:21.370624pt;}
._16_c00099{width:22.703957pt;}
._15_c00099{width:23.770669pt;}
._1a_c00099{width:25.455936pt;}
.fs0_c00099{font-size:45.333333pt;}
.fs1_c00099{font-size:53.333333pt;}
.y0_c00099{bottom:0.000000pt;}
.y28_c00099{bottom:57.266686pt;}
.y27_c00099{bottom:97.933353pt;}
.y26_c00099{bottom:111.400020pt;}
.y25_c00099{bottom:125.133353pt;}
.y24_c00099{bottom:138.866686pt;}
.y23_c00099{bottom:152.333353pt;}
.y22_c00099{bottom:165.800020pt;}
.y21_c00099{bottom:179.533353pt;}
.y20_c00099{bottom:193.000020pt;}
.y1f_c00099{bottom:206.733353pt;}
.y1e_c00099{bottom:251.533353pt;}
.y1d_c00099{bottom:268.466686pt;}
.y1c_c00099{bottom:293.466686pt;}
.y1b_c00099{bottom:311.066686pt;}
.y1a_c00099{bottom:328.333353pt;}
.y19_c00099{bottom:345.600020pt;}
.y18_c00099{bottom:362.866686pt;}
.y17_c00099{bottom:380.200020pt;}
.y16_c00099{bottom:405.466686pt;}
.y15_c00099{bottom:422.733353pt;}
.y14_c00099{bottom:440.333353pt;}
.y13_c00099{bottom:457.600020pt;}
.y12_c00099{bottom:474.600020pt;}
.y11_c00099{bottom:492.200020pt;}
.y10_c00099{bottom:509.133353pt;}
.yf_c00099{bottom:526.400020pt;}
.ye_c00099{bottom:543.666686pt;}
.yd_c00099{bottom:561.000020pt;}
.yc_c00099{bottom:578.266686pt;}
.yb_c00099{bottom:595.866686pt;}
.ya_c00099{bottom:613.133353pt;}
.y9_c00099{bottom:630.066686pt;}
.y8_c00099{bottom:647.400020pt;}
.y7_c00099{bottom:665.000020pt;}
.y6_c00099{bottom:682.266686pt;}
.y5_c00099{bottom:698.866686pt;}
.y4_c00099{bottom:716.466686pt;}
.y3_c00099{bottom:733.466686pt;}
.y2_c00099{bottom:751.000020pt;}
.y1_c00099{bottom:788.200020pt;}
.h2_c00099{height:44.470052pt;}
.h5_c00099{height:44.492188pt;}
.h4_c00099{height:52.317708pt;}
.h3_c00099{height:52.343750pt;}
.h1_c00099{height:851.333333pt;}
.h0_c00099{height:851.533333pt;}
.w0_c00099{width:570.533360pt;}
.w1_c00099{width:570.666667pt;}
.x0_c00099{left:0.000000pt;}
.x3_c00099{left:71.333333pt;}
.x2_c00099{left:72.333333pt;}
.x6_c00099{left:76.466667pt;}
.x4_c00099{left:85.466667pt;}
.x5_c00099{left:86.733333pt;}
.x1_c00099{left:144.666667pt;}
.x7_c00099{left:478.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3360840a1219ea7882105f2a.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00100;src:url('chunks/assets/font_ee62704ac907b5d48e068687.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00100{letter-spacing:0.000000px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00100{word-spacing:-15.000000px;}
.ws1_c00100{word-spacing:-12.750000px;}
.ws2_c00100{word-spacing:0.000000px;}
._14_c00100{margin-left:-14.760000px;}
._10_c00100{margin-left:-12.780000px;}
._f_c00100{margin-left:-11.040000px;}
._13_c00100{margin-left:-9.840000px;}
._e_c00100{margin-left:-8.280000px;}
._b_c00100{margin-left:-5.940000px;}
._d_c00100{margin-left:-4.080000px;}
._c_c00100{margin-left:-2.640000px;}
._7_c00100{margin-left:-1.080000px;}
._0_c00100{width:1.080000px;}
._2_c00100{width:2.220000px;}
._4_c00100{width:3.360000px;}
._8_c00100{width:4.860000px;}
._1_c00100{width:6.240000px;}
._12_c00100{width:7.440000px;}
._5_c00100{width:8.460000px;}
._3_c00100{width:10.020000px;}
._6_c00100{width:11.100000px;}
._9_c00100{width:13.020000px;}
._1a_c00100{width:15.116988px;}
._a_c00100{width:17.100000px;}
._11_c00100{width:18.360000px;}
._15_c00100{width:20.160000px;}
._17_c00100{width:21.900000px;}
._16_c00100{width:23.280000px;}
._1b_c00100{width:24.390000px;}
._19_c00100{width:25.590051px;}
._18_c00100{width:26.669949px;}
.fc1_c00100{color:transparent;}
.fc0_c00100{color:rgb(35,31,32);}
.fs1_c00100{font-size:51.000000px;}
.fs0_c00100{font-size:60.000000px;}
.y0_c00100{bottom:0.000000px;}
.y2b_c00100{bottom:64.425022px;}
.y2a_c00100{bottom:110.175022px;}
.y29_c00100{bottom:125.325022px;}
.y28_c00100{bottom:140.775022px;}
.y27_c00100{bottom:156.225022px;}
.y26_c00100{bottom:171.375022px;}
.y25_c00100{bottom:186.525022px;}
.y24_c00100{bottom:201.975022px;}
.y23_c00100{bottom:217.425022px;}
.y22_c00100{bottom:232.950022px;}
.y21_c00100{bottom:247.725022px;}
.y20_c00100{bottom:263.175022px;}
.y1f_c00100{bottom:278.325022px;}
.y1e_c00100{bottom:294.150022px;}
.y1d_c00100{bottom:308.925022px;}
.y1c_c00100{bottom:324.375022px;}
.y1b_c00100{bottom:339.825022px;}
.y1a_c00100{bottom:354.975022px;}
.y19_c00100{bottom:370.125022px;}
.y17_c00100{bottom:417.225022px;}
.y16_c00100{bottom:436.725022px;}
.y15_c00100{bottom:456.525022px;}
.y14_c00100{bottom:475.575022px;}
.y13_c00100{bottom:495.000022px;}
.y12_c00100{bottom:514.425022px;}
.y11_c00100{bottom:534.225022px;}
.y10_c00100{bottom:553.725022px;}
.yf_c00100{bottom:573.150022px;}
.ye_c00100{bottom:592.575022px;}
.yd_c00100{bottom:612.000022px;}
.yc_c00100{bottom:631.125022px;}
.yb_c00100{bottom:650.925022px;}
.ya_c00100{bottom:669.975022px;}
.y9_c00100{bottom:689.625022px;}
.y8_c00100{bottom:709.125022px;}
.y7_c00100{bottom:728.625022px;}
.y6_c00100{bottom:748.125022px;}
.y5_c00100{bottom:767.175022px;}
.y4_c00100{bottom:786.600022px;}
.y3_c00100{bottom:805.725022px;}
.y2_c00100{bottom:825.150022px;}
.y1_c00100{bottom:844.950022px;}
.y18_c00100{bottom:886.725022px;}
.h4_c00100{height:50.028809px;}
.h5_c00100{height:50.053711px;}
.h2_c00100{height:58.886719px;}
.h3_c00100{height:59.486719px;}
.h1_c00100{height:957.750000px;}
.h0_c00100{height:957.975000px;}
.w1_c00100{width:643.500000px;}
.w0_c00100{width:643.650000px;}
.x0_c00100{left:0.000000px;}
.x2_c00100{left:90.375000px;}
.x1_c00100{left:91.425000px;}
.x4_c00100{left:96.150000px;}
.x3_c00100{left:106.950000px;}
.x5_c00100{left:124.200000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls0_c00100{letter-spacing:0.000000pt;}
.ws0_c00100{word-spacing:-13.333333pt;}
.ws1_c00100{word-spacing:-11.333333pt;}
.ws2_c00100{word-spacing:0.000000pt;}
._14_c00100{margin-left:-13.120000pt;}
._10_c00100{margin-left:-11.360000pt;}
._f_c00100{margin-left:-9.813333pt;}
._13_c00100{margin-left:-8.746667pt;}
._e_c00100{margin-left:-7.360000pt;}
._b_c00100{margin-left:-5.280000pt;}
._d_c00100{margin-left:-3.626667pt;}
._c_c00100{margin-left:-2.346667pt;}
._7_c00100{margin-left:-0.960000pt;}
._0_c00100{width:0.960000pt;}
._2_c00100{width:1.973333pt;}
._4_c00100{width:2.986667pt;}
._8_c00100{width:4.320000pt;}
._1_c00100{width:5.546667pt;}
._12_c00100{width:6.613333pt;}
._5_c00100{width:7.520000pt;}
._3_c00100{width:8.906667pt;}
._6_c00100{width:9.866667pt;}
._9_c00100{width:11.573333pt;}
._1a_c00100{width:13.437323pt;}
._a_c00100{width:15.200000pt;}
._11_c00100{width:16.320000pt;}
._15_c00100{width:17.920000pt;}
._17_c00100{width:19.466667pt;}
._16_c00100{width:20.693333pt;}
._1b_c00100{width:21.680000pt;}
._19_c00100{width:22.746712pt;}
._18_c00100{width:23.706621pt;}
.fs1_c00100{font-size:45.333333pt;}
.fs0_c00100{font-size:53.333333pt;}
.y0_c00100{bottom:0.000000pt;}
.y2b_c00100{bottom:57.266686pt;}
.y2a_c00100{bottom:97.933353pt;}
.y29_c00100{bottom:111.400020pt;}
.y28_c00100{bottom:125.133353pt;}
.y27_c00100{bottom:138.866686pt;}
.y26_c00100{bottom:152.333353pt;}
.y25_c00100{bottom:165.800020pt;}
.y24_c00100{bottom:179.533353pt;}
.y23_c00100{bottom:193.266686pt;}
.y22_c00100{bottom:207.066686pt;}
.y21_c00100{bottom:220.200020pt;}
.y20_c00100{bottom:233.933353pt;}
.y1f_c00100{bottom:247.400020pt;}
.y1e_c00100{bottom:261.466686pt;}
.y1d_c00100{bottom:274.600020pt;}
.y1c_c00100{bottom:288.333353pt;}
.y1b_c00100{bottom:302.066686pt;}
.y1a_c00100{bottom:315.533353pt;}
.y19_c00100{bottom:329.000020pt;}
.y17_c00100{bottom:370.866686pt;}
.y16_c00100{bottom:388.200020pt;}
.y15_c00100{bottom:405.800020pt;}
.y14_c00100{bottom:422.733353pt;}
.y13_c00100{bottom:440.000020pt;}
.y12_c00100{bottom:457.266686pt;}
.y11_c00100{bottom:474.866686pt;}
.y10_c00100{bottom:492.200020pt;}
.yf_c00100{bottom:509.466686pt;}
.ye_c00100{bottom:526.733353pt;}
.yd_c00100{bottom:544.000020pt;}
.yc_c00100{bottom:561.000020pt;}
.yb_c00100{bottom:578.600020pt;}
.ya_c00100{bottom:595.533353pt;}
.y9_c00100{bottom:613.000020pt;}
.y8_c00100{bottom:630.333353pt;}
.y7_c00100{bottom:647.666686pt;}
.y6_c00100{bottom:665.000020pt;}
.y5_c00100{bottom:681.933353pt;}
.y4_c00100{bottom:699.200020pt;}
.y3_c00100{bottom:716.200020pt;}
.y2_c00100{bottom:733.466686pt;}
.y1_c00100{bottom:751.066686pt;}
.y18_c00100{bottom:788.200020pt;}
.h4_c00100{height:44.470052pt;}
.h5_c00100{height:44.492188pt;}
.h2_c00100{height:52.343750pt;}
.h3_c00100{height:52.877083pt;}
.h1_c00100{height:851.333333pt;}
.h0_c00100{height:851.533333pt;}
.w1_c00100{width:572.000000pt;}
.w0_c00100{width:572.133333pt;}
.x0_c00100{left:0.000000pt;}
.x2_c00100{left:80.333333pt;}
.x1_c00100{left:81.266667pt;}
.x4_c00100{left:85.466667pt;}
.x3_c00100{left:95.066667pt;}
.x5_c00100{left:110.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_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_c7a9b82e5ebc35bedbb8ea1a.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00101;src:url('chunks/assets/font_f9f8a6761f72ca0e07fa916d.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00101{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00101{vertical-align:0.000000px;}
.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;}
}
.ws1_c00101{word-spacing:-15.000000px;}
.ws0_c00101{word-spacing:-12.750000px;}
.ws2_c00101{word-spacing:0.000000px;}
._8_c00101{margin-left:-12.171063px;}
._16_c00101{margin-left:-11.132103px;}
._c_c00101{margin-left:-9.609042px;}
._f_c00101{margin-left:-7.814982px;}
._15_c00101{margin-left:-6.582117px;}
._13_c00101{margin-left:-5.226585px;}
._11_c00101{margin-left:-3.836826px;}
._2_c00101{margin-left:-1.895976px;}
._0_c00101{width:1.173000px;}
._1_c00101{width:2.531997px;}
._9_c00101{width:3.705003px;}
._5_c00101{width:4.902003px;}
._7_c00101{width:6.246102px;}
._3_c00101{width:7.271952px;}
._4_c00101{width:9.215976px;}
._d_c00101{width:10.277904px;}
._6_c00101{width:11.313024px;}
._10_c00101{width:12.560955px;}
._b_c00101{width:13.968024px;}
._a_c00101{width:16.254000px;}
._e_c00101{width:18.183000px;}
._18_c00101{width:21.750021px;}
._17_c00101{width:24.041952px;}
._14_c00101{width:25.541973px;}
._19_c00101{width:26.742003px;}
._12_c00101{width:28.637979px;}
.fc1_c00101{color:transparent;}
.fc0_c00101{color:rgb(35,31,32);}
.fs0_c00101{font-size:51.000000px;}
.fs1_c00101{font-size:60.000000px;}
.y0_c00101{bottom:0.000000px;}
.y2d_c00101{bottom:64.425022px;}
.y2c_c00101{bottom:110.175022px;}
.y2b_c00101{bottom:125.625022px;}
.y2a_c00101{bottom:140.775022px;}
.y29_c00101{bottom:156.225022px;}
.y28_c00101{bottom:171.375022px;}
.y27_c00101{bottom:186.525022px;}
.y26_c00101{bottom:201.975022px;}
.y25_c00101{bottom:217.425022px;}
.y24_c00101{bottom:232.575022px;}
.y23_c00101{bottom:247.725022px;}
.y22_c00101{bottom:263.175022px;}
.y21_c00101{bottom:278.325022px;}
.y20_c00101{bottom:294.675022px;}
.y1f_c00101{bottom:308.925022px;}
.y1e_c00101{bottom:324.750022px;}
.y1d_c00101{bottom:339.525022px;}
.y1c_c00101{bottom:354.975022px;}
.y1b_c00101{bottom:370.425022px;}
.y1a_c00101{bottom:385.575022px;}
.y19_c00101{bottom:400.725022px;}
.y18_c00101{bottom:416.175022px;}
.y17_c00101{bottom:431.325022px;}
.y16_c00101{bottom:446.775022px;}
.y15_c00101{bottom:462.225022px;}
.y14_c00101{bottom:477.375022px;}
.y13_c00101{bottom:492.525022px;}
.y12_c00101{bottom:507.975022px;}
.y11_c00101{bottom:553.350022px;}
.y10_c00101{bottom:573.150022px;}
.yf_c00101{bottom:592.575022px;}
.ye_c00101{bottom:611.625022px;}
.yd_c00101{bottom:631.425022px;}
.yc_c00101{bottom:650.550022px;}
.yb_c00101{bottom:670.275022px;}
.ya_c00101{bottom:689.400022px;}
.y9_c00101{bottom:708.825022px;}
.y8_c00101{bottom:728.325022px;}
.y7_c00101{bottom:747.750022px;}
.y6_c00101{bottom:767.175022px;}
.y5_c00101{bottom:786.600022px;}
.y4_c00101{bottom:806.025022px;}
.y3_c00101{bottom:825.150022px;}
.y2_c00101{bottom:844.950022px;}
.y1_c00101{bottom:886.725022px;}
.h2_c00101{height:50.028809px;}
.h4_c00101{height:50.053711px;}
.h3_c00101{height:58.886719px;}
.h1_c00101{height:957.750000px;}
.h0_c00101{height:957.975000px;}
.w0_c00101{width:641.850030px;}
.w1_c00101{width:642.000000px;}
.x0_c00101{left:0.000000px;}
.x2_c00101{left:81.375000px;}
.x4_c00101{left:86.025000px;}
.x3_c00101{left:96.825000px;}
.x5_c00101{left:113.775000px;}
.x1_c00101{left:162.750000px;}
.x6_c00101{left:532.050000px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls0_c00101{letter-spacing:0.000000pt;}
.ws1_c00101{word-spacing:-13.333333pt;}
.ws0_c00101{word-spacing:-11.333333pt;}
.ws2_c00101{word-spacing:0.000000pt;}
._8_c00101{margin-left:-10.818723pt;}
._16_c00101{margin-left:-9.895203pt;}
._c_c00101{margin-left:-8.541371pt;}
._f_c00101{margin-left:-6.946651pt;}
._15_c00101{margin-left:-5.850771pt;}
._13_c00101{margin-left:-4.645853pt;}
._11_c00101{margin-left:-3.410512pt;}
._2_c00101{margin-left:-1.685312pt;}
._0_c00101{width:1.042667pt;}
._1_c00101{width:2.250664pt;}
._9_c00101{width:3.293336pt;}
._5_c00101{width:4.357336pt;}
._7_c00101{width:5.552091pt;}
._3_c00101{width:6.463957pt;}
._4_c00101{width:8.191979pt;}
._d_c00101{width:9.135915pt;}
._6_c00101{width:10.056021pt;}
._10_c00101{width:11.165293pt;}
._b_c00101{width:12.416021pt;}
._a_c00101{width:14.448000pt;}
._e_c00101{width:16.162667pt;}
._18_c00101{width:19.333352pt;}
._17_c00101{width:21.370624pt;}
._14_c00101{width:22.703976pt;}
._19_c00101{width:23.770669pt;}
._12_c00101{width:25.455981pt;}
.fs0_c00101{font-size:45.333333pt;}
.fs1_c00101{font-size:53.333333pt;}
.y0_c00101{bottom:0.000000pt;}
.y2d_c00101{bottom:57.266686pt;}
.y2c_c00101{bottom:97.933353pt;}
.y2b_c00101{bottom:111.666686pt;}
.y2a_c00101{bottom:125.133353pt;}
.y29_c00101{bottom:138.866686pt;}
.y28_c00101{bottom:152.333353pt;}
.y27_c00101{bottom:165.800020pt;}
.y26_c00101{bottom:179.533353pt;}
.y25_c00101{bottom:193.266686pt;}
.y24_c00101{bottom:206.733353pt;}
.y23_c00101{bottom:220.200020pt;}
.y22_c00101{bottom:233.933353pt;}
.y21_c00101{bottom:247.400020pt;}
.y20_c00101{bottom:261.933353pt;}
.y1f_c00101{bottom:274.600020pt;}
.y1e_c00101{bottom:288.666686pt;}
.y1d_c00101{bottom:301.800020pt;}
.y1c_c00101{bottom:315.533353pt;}
.y1b_c00101{bottom:329.266686pt;}
.y1a_c00101{bottom:342.733353pt;}
.y19_c00101{bottom:356.200020pt;}
.y18_c00101{bottom:369.933353pt;}
.y17_c00101{bottom:383.400020pt;}
.y16_c00101{bottom:397.133353pt;}
.y15_c00101{bottom:410.866686pt;}
.y14_c00101{bottom:424.333353pt;}
.y13_c00101{bottom:437.800020pt;}
.y12_c00101{bottom:451.533353pt;}
.y11_c00101{bottom:491.866686pt;}
.y10_c00101{bottom:509.466686pt;}
.yf_c00101{bottom:526.733353pt;}
.ye_c00101{bottom:543.666686pt;}
.yd_c00101{bottom:561.266686pt;}
.yc_c00101{bottom:578.266686pt;}
.yb_c00101{bottom:595.800020pt;}
.ya_c00101{bottom:612.800020pt;}
.y9_c00101{bottom:630.066686pt;}
.y8_c00101{bottom:647.400020pt;}
.y7_c00101{bottom:664.666686pt;}
.y6_c00101{bottom:681.933353pt;}
.y5_c00101{bottom:699.200020pt;}
.y4_c00101{bottom:716.466686pt;}
.y3_c00101{bottom:733.466686pt;}
.y2_c00101{bottom:751.066686pt;}
.y1_c00101{bottom:788.200020pt;}
.h2_c00101{height:44.470052pt;}
.h4_c00101{height:44.492188pt;}
.h3_c00101{height:52.343750pt;}
.h1_c00101{height:851.333333pt;}
.h0_c00101{height:851.533333pt;}
.w0_c00101{width:570.533360pt;}
.w1_c00101{width:570.666667pt;}
.x0_c00101{left:0.000000pt;}
.x2_c00101{left:72.333333pt;}
.x4_c00101{left:76.466667pt;}
.x3_c00101{left:86.066667pt;}
.x5_c00101{left:101.133333pt;}
.x1_c00101{left:144.666667pt;}
.x6_c00101{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9e55835df6cbd9b240a00350.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00102;src:url('chunks/assets/font_bfa58b7895bee7a335d51996.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00102{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_c00102{vertical-align:0.000000px;}
.ls0_c00102{letter-spacing:0.000000px;}
.sc__c00102{text-shadow:none;}
.sc0_c00102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00102{-webkit-text-stroke:0px transparent;}
.sc0_c00102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00102{word-spacing:-15.000000px;}
.ws0_c00102{word-spacing:-12.750000px;}
.ws2_c00102{word-spacing:0.000000px;}
._12_c00102{margin-left:-12.793602px;}
._8_c00102{margin-left:-10.385445px;}
._d_c00102{margin-left:-8.386518px;}
._13_c00102{margin-left:-7.055931px;}
._16_c00102{margin-left:-5.810112px;}
._14_c00102{margin-left:-4.305012px;}
._f_c00102{margin-left:-2.786922px;}
._0_c00102{margin-left:-1.760979px;}
._2_c00102{width:1.115931px;}
._1_c00102{width:2.699991px;}
._b_c00102{width:3.927351px;}
._e_c00102{width:5.256276px;}
._5_c00102{width:6.960000px;}
._a_c00102{width:8.289798px;}
._7_c00102{width:9.695931px;}
._6_c00102{width:10.836276px;}
._9_c00102{width:12.600000px;}
._3_c00102{width:13.848510px;}
._15_c00102{width:14.856183px;}
._4_c00102{width:16.836276px;}
._c_c00102{width:18.108483px;}
._11_c00102{width:19.159254px;}
._10_c00102{width:20.605122px;}
._19_c00102{width:23.036922px;}
._17_c00102{width:25.736973px;}
._18_c00102{width:29.258931px;}
.fc1_c00102{color:transparent;}
.fc0_c00102{color:rgb(35,31,32);}
.fs0_c00102{font-size:51.000000px;}
.fs1_c00102{font-size:60.000000px;}
.y0_c00102{bottom:0.000000px;}
.y2c_c00102{bottom:64.800022px;}
.y2b_c00102{bottom:110.175022px;}
.y2a_c00102{bottom:125.625022px;}
.y29_c00102{bottom:140.775022px;}
.y28_c00102{bottom:155.925022px;}
.y27_c00102{bottom:171.750022px;}
.y26_c00102{bottom:186.825022px;}
.y25_c00102{bottom:201.975022px;}
.y24_c00102{bottom:217.425022px;}
.y23_c00102{bottom:232.575022px;}
.y22_c00102{bottom:248.025022px;}
.y21_c00102{bottom:263.550022px;}
.y20_c00102{bottom:278.325022px;}
.y1f_c00102{bottom:294.150022px;}
.y1e_c00102{bottom:308.925022px;}
.y1d_c00102{bottom:324.375022px;}
.y1c_c00102{bottom:339.825022px;}
.y1b_c00102{bottom:354.975022px;}
.y1a_c00102{bottom:370.125022px;}
.y19_c00102{bottom:385.575022px;}
.y18_c00102{bottom:400.725022px;}
.y17_c00102{bottom:416.550022px;}
.y16_c00102{bottom:431.625022px;}
.y15_c00102{bottom:446.775022px;}
.y14_c00102{bottom:461.925022px;}
.y13_c00102{bottom:477.750022px;}
.y12_c00102{bottom:492.525022px;}
.y11_c00102{bottom:507.975022px;}
.y10_c00102{bottom:523.125022px;}
.yf_c00102{bottom:538.575022px;}
.ye_c00102{bottom:612.000022px;}
.yd_c00102{bottom:631.125022px;}
.yc_c00102{bottom:650.925022px;}
.yb_c00102{bottom:669.975022px;}
.ya_c00102{bottom:689.400022px;}
.y9_c00102{bottom:708.825022px;}
.y8_c00102{bottom:728.325022px;}
.y7_c00102{bottom:747.750022px;}
.y6_c00102{bottom:767.550022px;}
.y5_c00102{bottom:786.225022px;}
.y4_c00102{bottom:805.725022px;}
.y3_c00102{bottom:825.525022px;}
.y2_c00102{bottom:844.950022px;}
.y1_c00102{bottom:886.725022px;}
.h2_c00102{height:50.028809px;}
.h4_c00102{height:50.053711px;}
.h3_c00102{height:58.886719px;}
.h1_c00102{height:957.750000px;}
.h0_c00102{height:957.975000px;}
.w1_c00102{width:643.500000px;}
.w0_c00102{width:643.650000px;}
.x0_c00102{left:0.000000px;}
.x1_c00102{left:90.750000px;}
.x5_c00102{left:92.175000px;}
.x4_c00102{left:96.150000px;}
.x3_c00102{left:123.150000px;}
.x2_c00102{left:124.200000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls0_c00102{letter-spacing:0.000000pt;}
.ws1_c00102{word-spacing:-13.333333pt;}
.ws0_c00102{word-spacing:-11.333333pt;}
.ws2_c00102{word-spacing:0.000000pt;}
._12_c00102{margin-left:-11.372091pt;}
._8_c00102{margin-left:-9.231507pt;}
._d_c00102{margin-left:-7.454683pt;}
._13_c00102{margin-left:-6.271939pt;}
._16_c00102{margin-left:-5.164544pt;}
._14_c00102{margin-left:-3.826677pt;}
._f_c00102{margin-left:-2.477264pt;}
._0_c00102{margin-left:-1.565315pt;}
._2_c00102{width:0.991939pt;}
._1_c00102{width:2.399992pt;}
._b_c00102{width:3.490979pt;}
._e_c00102{width:4.672245pt;}
._5_c00102{width:6.186667pt;}
._a_c00102{width:7.368709pt;}
._7_c00102{width:8.618605pt;}
._6_c00102{width:9.632245pt;}
._9_c00102{width:11.200000pt;}
._3_c00102{width:12.309787pt;}
._15_c00102{width:13.205496pt;}
._4_c00102{width:14.965579pt;}
._c_c00102{width:16.096429pt;}
._11_c00102{width:17.030448pt;}
._10_c00102{width:18.315664pt;}
._19_c00102{width:20.477264pt;}
._17_c00102{width:22.877309pt;}
._18_c00102{width:26.007939pt;}
.fs0_c00102{font-size:45.333333pt;}
.fs1_c00102{font-size:53.333333pt;}
.y0_c00102{bottom:0.000000pt;}
.y2c_c00102{bottom:57.600020pt;}
.y2b_c00102{bottom:97.933353pt;}
.y2a_c00102{bottom:111.666686pt;}
.y29_c00102{bottom:125.133353pt;}
.y28_c00102{bottom:138.600020pt;}
.y27_c00102{bottom:152.666686pt;}
.y26_c00102{bottom:166.066686pt;}
.y25_c00102{bottom:179.533353pt;}
.y24_c00102{bottom:193.266686pt;}
.y23_c00102{bottom:206.733353pt;}
.y22_c00102{bottom:220.466686pt;}
.y21_c00102{bottom:234.266686pt;}
.y20_c00102{bottom:247.400020pt;}
.y1f_c00102{bottom:261.466686pt;}
.y1e_c00102{bottom:274.600020pt;}
.y1d_c00102{bottom:288.333353pt;}
.y1c_c00102{bottom:302.066686pt;}
.y1b_c00102{bottom:315.533353pt;}
.y1a_c00102{bottom:329.000020pt;}
.y19_c00102{bottom:342.733353pt;}
.y18_c00102{bottom:356.200020pt;}
.y17_c00102{bottom:370.266686pt;}
.y16_c00102{bottom:383.666686pt;}
.y15_c00102{bottom:397.133353pt;}
.y14_c00102{bottom:410.600020pt;}
.y13_c00102{bottom:424.666686pt;}
.y12_c00102{bottom:437.800020pt;}
.y11_c00102{bottom:451.533353pt;}
.y10_c00102{bottom:465.000020pt;}
.yf_c00102{bottom:478.733353pt;}
.ye_c00102{bottom:544.000020pt;}
.yd_c00102{bottom:561.000020pt;}
.yc_c00102{bottom:578.600020pt;}
.yb_c00102{bottom:595.533353pt;}
.ya_c00102{bottom:612.800020pt;}
.y9_c00102{bottom:630.066686pt;}
.y8_c00102{bottom:647.400020pt;}
.y7_c00102{bottom:664.666686pt;}
.y6_c00102{bottom:682.266686pt;}
.y5_c00102{bottom:698.866686pt;}
.y4_c00102{bottom:716.200020pt;}
.y3_c00102{bottom:733.800020pt;}
.y2_c00102{bottom:751.066686pt;}
.y1_c00102{bottom:788.200020pt;}
.h2_c00102{height:44.470052pt;}
.h4_c00102{height:44.492188pt;}
.h3_c00102{height:52.343750pt;}
.h1_c00102{height:851.333333pt;}
.h0_c00102{height:851.533333pt;}
.w1_c00102{width:572.000000pt;}
.w0_c00102{width:572.133333pt;}
.x0_c00102{left:0.000000pt;}
.x1_c00102{left:80.666667pt;}
.x5_c00102{left:81.933333pt;}
.x4_c00102{left:85.466667pt;}
.x3_c00102{left:109.466667pt;}
.x2_c00102{left:110.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_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_8306825f31aab62212590e74.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00103;src:url('chunks/assets/font_964510597b16d6960423df13.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00103{letter-spacing:0.000000px;}
.ls0_c00103{letter-spacing:11.100000px;}
.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;}
}
.ws0_c00103{word-spacing:-15.000000px;}
.ws1_c00103{word-spacing:-12.750000px;}
.ws2_c00103{word-spacing:0.000000px;}
._11_c00103{margin-left:-10.973973px;}
._10_c00103{margin-left:-9.720000px;}
._f_c00103{margin-left:-8.280000px;}
._d_c00103{margin-left:-7.133988px;}
._15_c00103{margin-left:-5.928069px;}
._12_c00103{margin-left:-4.808883px;}
._17_c00103{margin-left:-3.563934px;}
._2_c00103{margin-left:-1.895976px;}
._0_c00103{width:1.173000px;}
._1_c00103{width:2.531997px;}
._b_c00103{width:3.713961px;}
._5_c00103{width:4.839012px;}
._6_c00103{width:5.901003px;}
._c_c00103{width:7.137006px;}
._13_c00103{width:8.145018px;}
._4_c00103{width:9.261000px;}
._3_c00103{width:10.371000px;}
._7_c00103{width:11.493000px;}
._a_c00103{width:13.512018px;}
._14_c00103{width:16.004982px;}
._9_c00103{width:17.090988px;}
._8_c00103{width:19.260000px;}
._e_c00103{width:21.000000px;}
._19_c00103{width:24.041952px;}
._18_c00103{width:25.541973px;}
._16_c00103{width:26.742003px;}
.fc2_c00103{color:transparent;}
.fc1_c00103{color:rgb(0,0,0);}
.fc0_c00103{color:rgb(35,31,32);}
.fs0_c00103{font-size:51.000000px;}
.fs1_c00103{font-size:60.000000px;}
.y0_c00103{bottom:0.000000px;}
.y27_c00103{bottom:64.425022px;}
.y26_c00103{bottom:110.175022px;}
.y25_c00103{bottom:125.325022px;}
.y24_c00103{bottom:141.150022px;}
.y23_c00103{bottom:155.925022px;}
.y22_c00103{bottom:171.375022px;}
.y21_c00103{bottom:186.525022px;}
.y20_c00103{bottom:201.975022px;}
.y1f_c00103{bottom:217.125022px;}
.y1e_c00103{bottom:232.575022px;}
.y1d_c00103{bottom:247.725022px;}
.y1c_c00103{bottom:287.625022px;}
.y1b_c00103{bottom:307.425022px;}
.y1a_c00103{bottom:326.550022px;}
.y19_c00103{bottom:346.350022px;}
.y18_c00103{bottom:365.775022px;}
.y17_c00103{bottom:384.825022px;}
.y16_c00103{bottom:404.700022px;}
.y15_c00103{bottom:424.125022px;}
.y14_c00103{bottom:443.550022px;}
.y13_c00103{bottom:462.600022px;}
.y12_c00103{bottom:482.400022px;}
.y11_c00103{bottom:501.825022px;}
.y10_c00103{bottom:521.325022px;}
.yf_c00103{bottom:540.375022px;}
.ye_c00103{bottom:560.175022px;}
.yd_c00103{bottom:579.600022px;}
.yc_c00103{bottom:598.350022px;}
.yb_c00103{bottom:618.150022px;}
.ya_c00103{bottom:637.200022px;}
.y9_c00103{bottom:657.000022px;}
.y8_c00103{bottom:676.425022px;}
.y7_c00103{bottom:695.925022px;}
.y6_c00103{bottom:715.350022px;}
.y5_c00103{bottom:734.775022px;}
.y4_c00103{bottom:773.325022px;}
.y3_c00103{bottom:825.525022px;}
.y2_c00103{bottom:844.950022px;}
.y1_c00103{bottom:886.725022px;}
.h2_c00103{height:50.028809px;}
.h4_c00103{height:50.053711px;}
.h3_c00103{height:58.886719px;}
.h1_c00103{height:957.750000px;}
.h0_c00103{height:957.975000px;}
.w0_c00103{width:641.850030px;}
.w1_c00103{width:642.000000px;}
.x0_c00103{left:0.000000px;}
.x3_c00103{left:80.250000px;}
.x2_c00103{left:81.375000px;}
.x5_c00103{left:86.025000px;}
.x4_c00103{left:97.200000px;}
.x6_c00103{left:113.400000px;}
.x1_c00103{left:162.750000px;}
.x7_c00103{left:532.050000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls1_c00103{letter-spacing:0.000000pt;}
.ls0_c00103{letter-spacing:9.866667pt;}
.ws0_c00103{word-spacing:-13.333333pt;}
.ws1_c00103{word-spacing:-11.333333pt;}
.ws2_c00103{word-spacing:0.000000pt;}
._11_c00103{margin-left:-9.754643pt;}
._10_c00103{margin-left:-8.640000pt;}
._f_c00103{margin-left:-7.360000pt;}
._d_c00103{margin-left:-6.341323pt;}
._15_c00103{margin-left:-5.269395pt;}
._12_c00103{margin-left:-4.274563pt;}
._17_c00103{margin-left:-3.167941pt;}
._2_c00103{margin-left:-1.685312pt;}
._0_c00103{width:1.042667pt;}
._1_c00103{width:2.250664pt;}
._b_c00103{width:3.301299pt;}
._5_c00103{width:4.301344pt;}
._6_c00103{width:5.245336pt;}
._c_c00103{width:6.344005pt;}
._13_c00103{width:7.240016pt;}
._4_c00103{width:8.232000pt;}
._3_c00103{width:9.218667pt;}
._7_c00103{width:10.216000pt;}
._a_c00103{width:12.010683pt;}
._14_c00103{width:14.226651pt;}
._9_c00103{width:15.191989pt;}
._8_c00103{width:17.120000pt;}
._e_c00103{width:18.666667pt;}
._19_c00103{width:21.370624pt;}
._18_c00103{width:22.703976pt;}
._16_c00103{width:23.770669pt;}
.fs0_c00103{font-size:45.333333pt;}
.fs1_c00103{font-size:53.333333pt;}
.y0_c00103{bottom:0.000000pt;}
.y27_c00103{bottom:57.266686pt;}
.y26_c00103{bottom:97.933353pt;}
.y25_c00103{bottom:111.400020pt;}
.y24_c00103{bottom:125.466686pt;}
.y23_c00103{bottom:138.600020pt;}
.y22_c00103{bottom:152.333353pt;}
.y21_c00103{bottom:165.800020pt;}
.y20_c00103{bottom:179.533353pt;}
.y1f_c00103{bottom:193.000020pt;}
.y1e_c00103{bottom:206.733353pt;}
.y1d_c00103{bottom:220.200020pt;}
.y1c_c00103{bottom:255.666686pt;}
.y1b_c00103{bottom:273.266686pt;}
.y1a_c00103{bottom:290.266686pt;}
.y19_c00103{bottom:307.866686pt;}
.y18_c00103{bottom:325.133353pt;}
.y17_c00103{bottom:342.066686pt;}
.y16_c00103{bottom:359.733353pt;}
.y15_c00103{bottom:377.000020pt;}
.y14_c00103{bottom:394.266686pt;}
.y13_c00103{bottom:411.200020pt;}
.y12_c00103{bottom:428.800020pt;}
.y11_c00103{bottom:446.066686pt;}
.y10_c00103{bottom:463.400020pt;}
.yf_c00103{bottom:480.333353pt;}
.ye_c00103{bottom:497.933353pt;}
.yd_c00103{bottom:515.200020pt;}
.yc_c00103{bottom:531.866686pt;}
.yb_c00103{bottom:549.466686pt;}
.ya_c00103{bottom:566.400020pt;}
.y9_c00103{bottom:584.000020pt;}
.y8_c00103{bottom:601.266686pt;}
.y7_c00103{bottom:618.600020pt;}
.y6_c00103{bottom:635.866686pt;}
.y5_c00103{bottom:653.133353pt;}
.y4_c00103{bottom:687.400020pt;}
.y3_c00103{bottom:733.800020pt;}
.y2_c00103{bottom:751.066686pt;}
.y1_c00103{bottom:788.200020pt;}
.h2_c00103{height:44.470052pt;}
.h4_c00103{height:44.492188pt;}
.h3_c00103{height:52.343750pt;}
.h1_c00103{height:851.333333pt;}
.h0_c00103{height:851.533333pt;}
.w0_c00103{width:570.533360pt;}
.w1_c00103{width:570.666667pt;}
.x0_c00103{left:0.000000pt;}
.x3_c00103{left:71.333333pt;}
.x2_c00103{left:72.333333pt;}
.x5_c00103{left:76.466667pt;}
.x4_c00103{left:86.400000pt;}
.x6_c00103{left:100.800000pt;}
.x1_c00103{left:144.666667pt;}
.x7_c00103{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0f76a2ecdf3b2472c2a6e8e4.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00104;src:url('chunks/assets/font_087f0a4827a1dee276f6482d.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00104{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_c00104{vertical-align:0.000000px;}
.ls0_c00104{letter-spacing:0.000000px;}
.sc__c00104{text-shadow:none;}
.sc0_c00104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00104{-webkit-text-stroke:0px transparent;}
.sc0_c00104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00104{word-spacing:-15.000000px;}
.ws0_c00104{word-spacing:-12.750000px;}
.ws2_c00104{word-spacing:0.000000px;}
._e_c00104{margin-left:-14.016258px;}
._14_c00104{margin-left:-11.098212px;}
._4_c00104{margin-left:-9.875214px;}
._11_c00104{margin-left:-8.111508px;}
._18_c00104{margin-left:-6.189807px;}
._f_c00104{margin-left:-5.100000px;}
._5_c00104{margin-left:-3.600000px;}
._0_c00104{margin-left:-1.760979px;}
._2_c00104{width:1.115931px;}
._1_c00104{width:2.699991px;}
._b_c00104{width:4.063074px;}
._6_c00104{width:5.325642px;}
._a_c00104{width:6.446001px;}
._7_c00104{width:7.511454px;}
._9_c00104{width:8.976693px;}
._3_c00104{width:10.500000px;}
._8_c00104{width:12.804768px;}
._13_c00104{width:13.965411px;}
._12_c00104{width:16.019265px;}
._10_c00104{width:17.280000px;}
._c_c00104{width:18.360708px;}
._d_c00104{width:20.027457px;}
._16_c00104{width:22.532937px;}
._15_c00104{width:23.771958px;}
._17_c00104{width:26.472009px;}
.fc1_c00104{color:transparent;}
.fc0_c00104{color:rgb(35,31,32);}
.fs0_c00104{font-size:51.000000px;}
.fs1_c00104{font-size:60.000000px;}
.y0_c00104{bottom:0.000000px;}
.y2c_c00104{bottom:64.800022px;}
.y2b_c00104{bottom:110.175022px;}
.y2a_c00104{bottom:125.325022px;}
.y29_c00104{bottom:140.775022px;}
.y28_c00104{bottom:155.925022px;}
.y27_c00104{bottom:171.375022px;}
.y26_c00104{bottom:186.825022px;}
.y25_c00104{bottom:201.975022px;}
.y24_c00104{bottom:217.425022px;}
.y23_c00104{bottom:232.950022px;}
.y22_c00104{bottom:248.025022px;}
.y21_c00104{bottom:263.175022px;}
.y20_c00104{bottom:278.325022px;}
.y1f_c00104{bottom:293.775022px;}
.y1e_c00104{bottom:308.925022px;}
.y1d_c00104{bottom:324.375022px;}
.y1c_c00104{bottom:339.525022px;}
.y1b_c00104{bottom:354.975022px;}
.y1a_c00104{bottom:370.125022px;}
.y19_c00104{bottom:385.575022px;}
.y18_c00104{bottom:400.725022px;}
.y17_c00104{bottom:416.175022px;}
.y16_c00104{bottom:431.325022px;}
.y15_c00104{bottom:475.950022px;}
.y14_c00104{bottom:495.000022px;}
.y13_c00104{bottom:514.425022px;}
.y12_c00104{bottom:534.225022px;}
.y11_c00104{bottom:553.725022px;}
.y10_c00104{bottom:572.775022px;}
.yf_c00104{bottom:592.575022px;}
.ye_c00104{bottom:612.000022px;}
.yd_c00104{bottom:631.500022px;}
.yc_c00104{bottom:650.925022px;}
.yb_c00104{bottom:670.350022px;}
.ya_c00104{bottom:689.775022px;}
.y9_c00104{bottom:708.825022px;}
.y8_c00104{bottom:728.325022px;}
.y7_c00104{bottom:748.125022px;}
.y6_c00104{bottom:767.175022px;}
.y5_c00104{bottom:786.225022px;}
.y4_c00104{bottom:805.725022px;}
.y3_c00104{bottom:825.525022px;}
.y2_c00104{bottom:844.950022px;}
.y1_c00104{bottom:886.725022px;}
.h2_c00104{height:50.028809px;}
.h4_c00104{height:50.053711px;}
.h3_c00104{height:58.886719px;}
.h1_c00104{height:957.750000px;}
.h0_c00104{height:957.975000px;}
.w1_c00104{width:643.500000px;}
.w0_c00104{width:643.650000px;}
.x0_c00104{left:0.000000px;}
.x1_c00104{left:90.750000px;}
.x6_c00104{left:92.175000px;}
.x3_c00104{left:96.150000px;}
.x2_c00104{left:106.950000px;}
.x5_c00104{left:122.775000px;}
.x4_c00104{left:123.825000px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls0_c00104{letter-spacing:0.000000pt;}
.ws1_c00104{word-spacing:-13.333333pt;}
.ws0_c00104{word-spacing:-11.333333pt;}
.ws2_c00104{word-spacing:0.000000pt;}
._e_c00104{margin-left:-12.458896pt;}
._14_c00104{margin-left:-9.865077pt;}
._4_c00104{margin-left:-8.777968pt;}
._11_c00104{margin-left:-7.210229pt;}
._18_c00104{margin-left:-5.502051pt;}
._f_c00104{margin-left:-4.533333pt;}
._5_c00104{margin-left:-3.200000pt;}
._0_c00104{margin-left:-1.565315pt;}
._2_c00104{width:0.991939pt;}
._1_c00104{width:2.399992pt;}
._b_c00104{width:3.611621pt;}
._6_c00104{width:4.733904pt;}
._a_c00104{width:5.729779pt;}
._7_c00104{width:6.676848pt;}
._9_c00104{width:7.979283pt;}
._3_c00104{width:9.333333pt;}
._8_c00104{width:11.382016pt;}
._13_c00104{width:12.413699pt;}
._12_c00104{width:14.239347pt;}
._10_c00104{width:15.360000pt;}
._c_c00104{width:16.320629pt;}
._d_c00104{width:17.802184pt;}
._16_c00104{width:20.029277pt;}
._15_c00104{width:21.130629pt;}
._17_c00104{width:23.530675pt;}
.fs0_c00104{font-size:45.333333pt;}
.fs1_c00104{font-size:53.333333pt;}
.y0_c00104{bottom:0.000000pt;}
.y2c_c00104{bottom:57.600020pt;}
.y2b_c00104{bottom:97.933353pt;}
.y2a_c00104{bottom:111.400020pt;}
.y29_c00104{bottom:125.133353pt;}
.y28_c00104{bottom:138.600020pt;}
.y27_c00104{bottom:152.333353pt;}
.y26_c00104{bottom:166.066686pt;}
.y25_c00104{bottom:179.533353pt;}
.y24_c00104{bottom:193.266686pt;}
.y23_c00104{bottom:207.066686pt;}
.y22_c00104{bottom:220.466686pt;}
.y21_c00104{bottom:233.933353pt;}
.y20_c00104{bottom:247.400020pt;}
.y1f_c00104{bottom:261.133353pt;}
.y1e_c00104{bottom:274.600020pt;}
.y1d_c00104{bottom:288.333353pt;}
.y1c_c00104{bottom:301.800020pt;}
.y1b_c00104{bottom:315.533353pt;}
.y1a_c00104{bottom:329.000020pt;}
.y19_c00104{bottom:342.733353pt;}
.y18_c00104{bottom:356.200020pt;}
.y17_c00104{bottom:369.933353pt;}
.y16_c00104{bottom:383.400020pt;}
.y15_c00104{bottom:423.066686pt;}
.y14_c00104{bottom:440.000020pt;}
.y13_c00104{bottom:457.266686pt;}
.y12_c00104{bottom:474.866686pt;}
.y11_c00104{bottom:492.200020pt;}
.y10_c00104{bottom:509.133353pt;}
.yf_c00104{bottom:526.733353pt;}
.ye_c00104{bottom:544.000020pt;}
.yd_c00104{bottom:561.333353pt;}
.yc_c00104{bottom:578.600020pt;}
.yb_c00104{bottom:595.866686pt;}
.ya_c00104{bottom:613.133353pt;}
.y9_c00104{bottom:630.066686pt;}
.y8_c00104{bottom:647.400020pt;}
.y7_c00104{bottom:665.000020pt;}
.y6_c00104{bottom:681.933353pt;}
.y5_c00104{bottom:698.866686pt;}
.y4_c00104{bottom:716.200020pt;}
.y3_c00104{bottom:733.800020pt;}
.y2_c00104{bottom:751.066686pt;}
.y1_c00104{bottom:788.200020pt;}
.h2_c00104{height:44.470052pt;}
.h4_c00104{height:44.492188pt;}
.h3_c00104{height:52.343750pt;}
.h1_c00104{height:851.333333pt;}
.h0_c00104{height:851.533333pt;}
.w1_c00104{width:572.000000pt;}
.w0_c00104{width:572.133333pt;}
.x0_c00104{left:0.000000pt;}
.x1_c00104{left:80.666667pt;}
.x6_c00104{left:81.933333pt;}
.x3_c00104{left:85.466667pt;}
.x2_c00104{left:95.066667pt;}
.x5_c00104{left:109.133333pt;}
.x4_c00104{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6201dced3f6666808abd5872.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00105;src:url('chunks/assets/font_1e6a550591f2e2c03bef8c42.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00105{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_c00105{vertical-align:0.000000px;}
.ls0_c00105{letter-spacing:0.000000px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00105{word-spacing:-15.000000px;}
.ws1_c00105{word-spacing:-12.750000px;}
.ws2_c00105{word-spacing:0.000000px;}
._12_c00105{margin-left:-15.540000px;}
._17_c00105{margin-left:-10.601970px;}
._5_c00105{margin-left:-9.300000px;}
._4_c00105{margin-left:-7.500000px;}
._10_c00105{margin-left:-5.400000px;}
._a_c00105{margin-left:-3.900000px;}
._7_c00105{margin-left:-2.160000px;}
._d_c00105{margin-left:-1.020000px;}
._0_c00105{width:1.980000px;}
._1_c00105{width:3.000000px;}
._9_c00105{width:4.080000px;}
._6_c00105{width:5.100000px;}
._8_c00105{width:6.360000px;}
._b_c00105{width:7.440000px;}
._e_c00105{width:8.760000px;}
._c_c00105{width:10.380000px;}
._f_c00105{width:11.640000px;}
._11_c00105{width:12.900000px;}
._2_c00105{width:16.920000px;}
._3_c00105{width:17.940000px;}
._13_c00105{width:19.080000px;}
._14_c00105{width:21.240000px;}
._15_c00105{width:23.910021px;}
._16_c00105{width:25.110051px;}
.fc1_c00105{color:transparent;}
.fc0_c00105{color:rgb(35,31,32);}
.fs1_c00105{font-size:51.000000px;}
.fs0_c00105{font-size:60.000000px;}
.y0_c00105{bottom:0.000000px;}
.y27_c00105{bottom:64.425022px;}
.y26_c00105{bottom:110.175022px;}
.y25_c00105{bottom:125.625022px;}
.y24_c00105{bottom:140.775022px;}
.y23_c00105{bottom:156.225022px;}
.y22_c00105{bottom:171.375022px;}
.y21_c00105{bottom:186.525022px;}
.y20_c00105{bottom:201.975022px;}
.y1f_c00105{bottom:217.125022px;}
.y1e_c00105{bottom:232.575022px;}
.y1c_c00105{bottom:320.400022px;}
.y1b_c00105{bottom:339.525022px;}
.y1a_c00105{bottom:358.950022px;}
.y19_c00105{bottom:378.300022px;}
.y18_c00105{bottom:397.800022px;}
.y17_c00105{bottom:417.300022px;}
.y16_c00105{bottom:436.725022px;}
.y15_c00105{bottom:456.150022px;}
.y14_c00105{bottom:475.575022px;}
.y13_c00105{bottom:495.000022px;}
.y12_c00105{bottom:514.800022px;}
.y11_c00105{bottom:533.925022px;}
.y10_c00105{bottom:553.350022px;}
.yf_c00105{bottom:572.775022px;}
.ye_c00105{bottom:592.200022px;}
.yd_c00105{bottom:611.625022px;}
.yc_c00105{bottom:631.125022px;}
.yb_c00105{bottom:650.925022px;}
.ya_c00105{bottom:669.975022px;}
.y9_c00105{bottom:689.400022px;}
.y8_c00105{bottom:708.825022px;}
.y7_c00105{bottom:728.625022px;}
.y6_c00105{bottom:747.750022px;}
.y5_c00105{bottom:767.175022px;}
.y4_c00105{bottom:786.600022px;}
.y3_c00105{bottom:806.025022px;}
.y2_c00105{bottom:825.150022px;}
.y1_c00105{bottom:844.950022px;}
.y1d_c00105{bottom:886.725022px;}
.h3_c00105{height:50.028809px;}
.h4_c00105{height:50.053711px;}
.h2_c00105{height:58.886719px;}
.h1_c00105{height:957.750000px;}
.h0_c00105{height:957.975000px;}
.w0_c00105{width:641.850030px;}
.w1_c00105{width:642.000000px;}
.x0_c00105{left:0.000000px;}
.x1_c00105{left:81.000000px;}
.x4_c00105{left:86.025000px;}
.x2_c00105{left:97.200000px;}
.x5_c00105{left:114.150000px;}
.x3_c00105{left:162.750000px;}
.x6_c00105{left:532.050000px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls0_c00105{letter-spacing:0.000000pt;}
.ws0_c00105{word-spacing:-13.333333pt;}
.ws1_c00105{word-spacing:-11.333333pt;}
.ws2_c00105{word-spacing:0.000000pt;}
._12_c00105{margin-left:-13.813333pt;}
._17_c00105{margin-left:-9.423973pt;}
._5_c00105{margin-left:-8.266667pt;}
._4_c00105{margin-left:-6.666667pt;}
._10_c00105{margin-left:-4.800000pt;}
._a_c00105{margin-left:-3.466667pt;}
._7_c00105{margin-left:-1.920000pt;}
._d_c00105{margin-left:-0.906667pt;}
._0_c00105{width:1.760000pt;}
._1_c00105{width:2.666667pt;}
._9_c00105{width:3.626667pt;}
._6_c00105{width:4.533333pt;}
._8_c00105{width:5.653333pt;}
._b_c00105{width:6.613333pt;}
._e_c00105{width:7.786667pt;}
._c_c00105{width:9.226667pt;}
._f_c00105{width:10.346667pt;}
._11_c00105{width:11.466667pt;}
._2_c00105{width:15.040000pt;}
._3_c00105{width:15.946667pt;}
._13_c00105{width:16.960000pt;}
._14_c00105{width:18.880000pt;}
._15_c00105{width:21.253352pt;}
._16_c00105{width:22.320045pt;}
.fs1_c00105{font-size:45.333333pt;}
.fs0_c00105{font-size:53.333333pt;}
.y0_c00105{bottom:0.000000pt;}
.y27_c00105{bottom:57.266686pt;}
.y26_c00105{bottom:97.933353pt;}
.y25_c00105{bottom:111.666686pt;}
.y24_c00105{bottom:125.133353pt;}
.y23_c00105{bottom:138.866686pt;}
.y22_c00105{bottom:152.333353pt;}
.y21_c00105{bottom:165.800020pt;}
.y20_c00105{bottom:179.533353pt;}
.y1f_c00105{bottom:193.000020pt;}
.y1e_c00105{bottom:206.733353pt;}
.y1c_c00105{bottom:284.800020pt;}
.y1b_c00105{bottom:301.800020pt;}
.y1a_c00105{bottom:319.066686pt;}
.y19_c00105{bottom:336.266686pt;}
.y18_c00105{bottom:353.600020pt;}
.y17_c00105{bottom:370.933353pt;}
.y16_c00105{bottom:388.200020pt;}
.y15_c00105{bottom:405.466686pt;}
.y14_c00105{bottom:422.733353pt;}
.y13_c00105{bottom:440.000020pt;}
.y12_c00105{bottom:457.600020pt;}
.y11_c00105{bottom:474.600020pt;}
.y10_c00105{bottom:491.866686pt;}
.yf_c00105{bottom:509.133353pt;}
.ye_c00105{bottom:526.400020pt;}
.yd_c00105{bottom:543.666686pt;}
.yc_c00105{bottom:561.000020pt;}
.yb_c00105{bottom:578.600020pt;}
.ya_c00105{bottom:595.533353pt;}
.y9_c00105{bottom:612.800020pt;}
.y8_c00105{bottom:630.066686pt;}
.y7_c00105{bottom:647.666686pt;}
.y6_c00105{bottom:664.666686pt;}
.y5_c00105{bottom:681.933353pt;}
.y4_c00105{bottom:699.200020pt;}
.y3_c00105{bottom:716.466686pt;}
.y2_c00105{bottom:733.466686pt;}
.y1_c00105{bottom:751.066686pt;}
.y1d_c00105{bottom:788.200020pt;}
.h3_c00105{height:44.470052pt;}
.h4_c00105{height:44.492188pt;}
.h2_c00105{height:52.343750pt;}
.h1_c00105{height:851.333333pt;}
.h0_c00105{height:851.533333pt;}
.w0_c00105{width:570.533360pt;}
.w1_c00105{width:570.666667pt;}
.x0_c00105{left:0.000000pt;}
.x1_c00105{left:72.000000pt;}
.x4_c00105{left:76.466667pt;}
.x2_c00105{left:86.400000pt;}
.x5_c00105{left:101.466667pt;}
.x3_c00105{left:144.666667pt;}
.x6_c00105{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0456e2825708698acd241f08.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00106;src:url('chunks/assets/font_20aad2015ba75948447aca6b.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00106{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_c00106{vertical-align:0.000000px;}
.ls2_c00106{letter-spacing:0.000000px;}
.ls1_c00106{letter-spacing:0.899997px;}
.ls0_c00106{letter-spacing:3.900000px;}
.sc__c00106{text-shadow:none;}
.sc0_c00106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00106{-webkit-text-stroke:0px transparent;}
.sc0_c00106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00106{word-spacing:-15.000000px;}
.ws1_c00106{word-spacing:-12.750000px;}
.ws2_c00106{word-spacing:0.000000px;}
._16_c00106{margin-left:-12.701571px;}
._14_c00106{margin-left:-11.394006px;}
._12_c00106{margin-left:-9.852570px;}
._4_c00106{margin-left:-8.700000px;}
._15_c00106{margin-left:-7.640535px;}
._d_c00106{margin-left:-5.543352px;}
._19_c00106{margin-left:-4.479090px;}
._3_c00106{margin-left:-3.227103px;}
._0_c00106{margin-left:-1.760979px;}
._2_c00106{width:1.115931px;}
._1_c00106{width:2.699991px;}
._5_c00106{width:4.320345px;}
._7_c00106{width:5.511297px;}
._6_c00106{width:7.261089px;}
._8_c00106{width:8.508846px;}
._13_c00106{width:9.927561px;}
._b_c00106{width:11.854539px;}
._9_c00106{width:13.280979px;}
._18_c00106{width:15.205614px;}
._a_c00106{width:16.430220px;}
._f_c00106{width:17.719251px;}
._c_c00106{width:18.803670px;}
._e_c00106{width:20.879673px;}
._11_c00106{width:22.080000px;}
._10_c00106{width:23.278983px;}
._17_c00106{width:26.472009px;}
._1a_c00106{width:91.521333px;}
.fc2_c00106{color:transparent;}
.fc1_c00106{color:rgb(0,0,0);}
.fc0_c00106{color:rgb(35,31,32);}
.fs0_c00106{font-size:51.000000px;}
.fs1_c00106{font-size:60.000000px;}
.y0_c00106{bottom:0.000000px;}
.y2a_c00106{bottom:64.425022px;}
.y29_c00106{bottom:110.175022px;}
.y28_c00106{bottom:125.325022px;}
.y27_c00106{bottom:141.150022px;}
.y26_c00106{bottom:156.225022px;}
.y25_c00106{bottom:171.675022px;}
.y24_c00106{bottom:186.825022px;}
.y23_c00106{bottom:201.975022px;}
.y22_c00106{bottom:217.125022px;}
.y21_c00106{bottom:232.950022px;}
.y20_c00106{bottom:247.725022px;}
.y1f_c00106{bottom:263.175022px;}
.y1e_c00106{bottom:278.625022px;}
.y1d_c00106{bottom:294.150022px;}
.y1c_c00106{bottom:308.925022px;}
.y1b_c00106{bottom:324.750022px;}
.y1a_c00106{bottom:339.525022px;}
.y19_c00106{bottom:355.350022px;}
.y18_c00106{bottom:370.125022px;}
.y17_c00106{bottom:385.575022px;}
.y16_c00106{bottom:400.725022px;}
.y15_c00106{bottom:416.550022px;}
.y14_c00106{bottom:431.325022px;}
.y13_c00106{bottom:446.775022px;}
.y12_c00106{bottom:461.925022px;}
.y11_c00106{bottom:501.825022px;}
.y10_c00106{bottom:521.625022px;}
.yf_c00106{bottom:541.125022px;}
.ye_c00106{bottom:579.225022px;}
.yd_c00106{bottom:631.125022px;}
.yc_c00106{bottom:650.550022px;}
.yb_c00106{bottom:669.975022px;}
.ya_c00106{bottom:689.775022px;}
.y9_c00106{bottom:708.825022px;}
.y8_c00106{bottom:728.625022px;}
.y7_c00106{bottom:747.750022px;}
.y6_c00106{bottom:767.175022px;}
.y5_c00106{bottom:786.600022px;}
.y4_c00106{bottom:805.725022px;}
.y3_c00106{bottom:825.525022px;}
.y2_c00106{bottom:844.575022px;}
.y1_c00106{bottom:886.725022px;}
.h2_c00106{height:50.028809px;}
.h4_c00106{height:50.053711px;}
.h5_c00106{height:50.353711px;}
.h3_c00106{height:58.886719px;}
.h1_c00106{height:957.750000px;}
.h0_c00106{height:957.975000px;}
.w1_c00106{width:643.500000px;}
.w0_c00106{width:643.650000px;}
.x0_c00106{left:0.000000px;}
.x3_c00106{left:88.575000px;}
.x1_c00106{left:90.750000px;}
.x2_c00106{left:91.800000px;}
.x4_c00106{left:96.150000px;}
.x5_c00106{left:123.825000px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls2_c00106{letter-spacing:0.000000pt;}
.ls1_c00106{letter-spacing:0.799997pt;}
.ls0_c00106{letter-spacing:3.466667pt;}
.ws0_c00106{word-spacing:-13.333333pt;}
.ws1_c00106{word-spacing:-11.333333pt;}
.ws2_c00106{word-spacing:0.000000pt;}
._16_c00106{margin-left:-11.290285pt;}
._14_c00106{margin-left:-10.128005pt;}
._12_c00106{margin-left:-8.757840pt;}
._4_c00106{margin-left:-7.733333pt;}
._15_c00106{margin-left:-6.791587pt;}
._d_c00106{margin-left:-4.927424pt;}
._19_c00106{margin-left:-3.981413pt;}
._3_c00106{margin-left:-2.868536pt;}
._0_c00106{margin-left:-1.565315pt;}
._2_c00106{width:0.991939pt;}
._1_c00106{width:2.399992pt;}
._5_c00106{width:3.840307pt;}
._7_c00106{width:4.898931pt;}
._6_c00106{width:6.454301pt;}
._8_c00106{width:7.563419pt;}
._13_c00106{width:8.824499pt;}
._b_c00106{width:10.537368pt;}
._9_c00106{width:11.805315pt;}
._18_c00106{width:13.516101pt;}
._a_c00106{width:14.604640pt;}
._f_c00106{width:15.750445pt;}
._c_c00106{width:16.714373pt;}
._e_c00106{width:18.559709pt;}
._11_c00106{width:19.626667pt;}
._10_c00106{width:20.692429pt;}
._17_c00106{width:23.530675pt;}
._1a_c00106{width:81.352296pt;}
.fs0_c00106{font-size:45.333333pt;}
.fs1_c00106{font-size:53.333333pt;}
.y0_c00106{bottom:0.000000pt;}
.y2a_c00106{bottom:57.266686pt;}
.y29_c00106{bottom:97.933353pt;}
.y28_c00106{bottom:111.400020pt;}
.y27_c00106{bottom:125.466686pt;}
.y26_c00106{bottom:138.866686pt;}
.y25_c00106{bottom:152.600020pt;}
.y24_c00106{bottom:166.066686pt;}
.y23_c00106{bottom:179.533353pt;}
.y22_c00106{bottom:193.000020pt;}
.y21_c00106{bottom:207.066686pt;}
.y20_c00106{bottom:220.200020pt;}
.y1f_c00106{bottom:233.933353pt;}
.y1e_c00106{bottom:247.666686pt;}
.y1d_c00106{bottom:261.466686pt;}
.y1c_c00106{bottom:274.600020pt;}
.y1b_c00106{bottom:288.666686pt;}
.y1a_c00106{bottom:301.800020pt;}
.y19_c00106{bottom:315.866686pt;}
.y18_c00106{bottom:329.000020pt;}
.y17_c00106{bottom:342.733353pt;}
.y16_c00106{bottom:356.200020pt;}
.y15_c00106{bottom:370.266686pt;}
.y14_c00106{bottom:383.400020pt;}
.y13_c00106{bottom:397.133353pt;}
.y12_c00106{bottom:410.600020pt;}
.y11_c00106{bottom:446.066686pt;}
.y10_c00106{bottom:463.666686pt;}
.yf_c00106{bottom:481.000020pt;}
.ye_c00106{bottom:514.866686pt;}
.yd_c00106{bottom:561.000020pt;}
.yc_c00106{bottom:578.266686pt;}
.yb_c00106{bottom:595.533353pt;}
.ya_c00106{bottom:613.133353pt;}
.y9_c00106{bottom:630.066686pt;}
.y8_c00106{bottom:647.666686pt;}
.y7_c00106{bottom:664.666686pt;}
.y6_c00106{bottom:681.933353pt;}
.y5_c00106{bottom:699.200020pt;}
.y4_c00106{bottom:716.200020pt;}
.y3_c00106{bottom:733.800020pt;}
.y2_c00106{bottom:750.733353pt;}
.y1_c00106{bottom:788.200020pt;}
.h2_c00106{height:44.470052pt;}
.h4_c00106{height:44.492188pt;}
.h5_c00106{height:44.758854pt;}
.h3_c00106{height:52.343750pt;}
.h1_c00106{height:851.333333pt;}
.h0_c00106{height:851.533333pt;}
.w1_c00106{width:572.000000pt;}
.w0_c00106{width:572.133333pt;}
.x0_c00106{left:0.000000pt;}
.x3_c00106{left:78.733333pt;}
.x1_c00106{left:80.666667pt;}
.x2_c00106{left:81.600000pt;}
.x4_c00106{left:85.466667pt;}
.x5_c00106{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4c4ed098f9034273fc04185b.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00107;src:url('chunks/assets/font_c8f66ea24bddcae0ea8a67aa.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00107{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_c00107{vertical-align:0.000000px;}
.ls0_c00107{letter-spacing:0.000000px;}
.sc__c00107{text-shadow:none;}
.sc0_c00107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00107{-webkit-text-stroke:0px transparent;}
.sc0_c00107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00107{word-spacing:-15.000000px;}
.ws0_c00107{word-spacing:-12.750000px;}
.ws2_c00107{word-spacing:0.000000px;}
._15_c00107{margin-left:-15.060000px;}
._10_c00107{margin-left:-11.100000px;}
._5_c00107{margin-left:-9.900000px;}
._4_c00107{margin-left:-8.400000px;}
._3_c00107{margin-left:-5.880000px;}
._14_c00107{margin-left:-4.620000px;}
._a_c00107{margin-left:-2.700000px;}
._6_c00107{margin-left:-1.140000px;}
._0_c00107{width:1.500000px;}
._1_c00107{width:2.640000px;}
._2_c00107{width:3.660000px;}
._7_c00107{width:5.460000px;}
._11_c00107{width:6.780000px;}
._8_c00107{width:7.800000px;}
._c_c00107{width:9.480000px;}
._9_c00107{width:11.280000px;}
._b_c00107{width:12.480000px;}
._f_c00107{width:13.980000px;}
._16_c00107{width:16.020000px;}
._12_c00107{width:17.280000px;}
._d_c00107{width:18.300000px;}
._e_c00107{width:19.380000px;}
._13_c00107{width:20.580000px;}
._17_c00107{width:25.590021px;}
._18_c00107{width:26.790051px;}
.fc1_c00107{color:transparent;}
.fc0_c00107{color:rgb(35,31,32);}
.fs1_c00107{font-size:51.000000px;}
.fs0_c00107{font-size:60.000000px;}
.y0_c00107{bottom:0.000000px;}
.y29_c00107{bottom:64.425022px;}
.y28_c00107{bottom:110.175022px;}
.y27_c00107{bottom:125.325022px;}
.y26_c00107{bottom:140.775022px;}
.y25_c00107{bottom:156.225022px;}
.y24_c00107{bottom:171.375022px;}
.y23_c00107{bottom:186.825022px;}
.y22_c00107{bottom:201.975022px;}
.y21_c00107{bottom:217.425022px;}
.y20_c00107{bottom:232.575022px;}
.y1f_c00107{bottom:247.725022px;}
.y1e_c00107{bottom:263.550022px;}
.y1d_c00107{bottom:278.325022px;}
.y1c_c00107{bottom:293.775022px;}
.y1a_c00107{bottom:358.950022px;}
.y19_c00107{bottom:378.375022px;}
.y18_c00107{bottom:397.800022px;}
.y17_c00107{bottom:417.225022px;}
.y16_c00107{bottom:436.725022px;}
.y15_c00107{bottom:456.150022px;}
.y14_c00107{bottom:475.950022px;}
.y13_c00107{bottom:495.000022px;}
.y12_c00107{bottom:514.800022px;}
.y11_c00107{bottom:534.225022px;}
.y10_c00107{bottom:553.350022px;}
.yf_c00107{bottom:573.150022px;}
.ye_c00107{bottom:592.200022px;}
.yd_c00107{bottom:612.000022px;}
.yc_c00107{bottom:631.125022px;}
.yb_c00107{bottom:650.550022px;}
.ya_c00107{bottom:669.975022px;}
.y9_c00107{bottom:689.400022px;}
.y8_c00107{bottom:709.200022px;}
.y7_c00107{bottom:728.325022px;}
.y6_c00107{bottom:747.750022px;}
.y5_c00107{bottom:767.475022px;}
.y4_c00107{bottom:786.600022px;}
.y3_c00107{bottom:805.725022px;}
.y2_c00107{bottom:825.525022px;}
.y1_c00107{bottom:844.950022px;}
.y1b_c00107{bottom:886.725022px;}
.h3_c00107{height:50.028809px;}
.h4_c00107{height:50.053711px;}
.h2_c00107{height:58.886719px;}
.h1_c00107{height:957.750000px;}
.h0_c00107{height:957.975000px;}
.w0_c00107{width:641.850030px;}
.w1_c00107{width:642.000000px;}
.x0_c00107{left:0.000000px;}
.x1_c00107{left:81.000000px;}
.x3_c00107{left:86.025000px;}
.x4_c00107{left:113.775000px;}
.x2_c00107{left:162.750000px;}
.x5_c00107{left:532.050000px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls0_c00107{letter-spacing:0.000000pt;}
.ws1_c00107{word-spacing:-13.333333pt;}
.ws0_c00107{word-spacing:-11.333333pt;}
.ws2_c00107{word-spacing:0.000000pt;}
._15_c00107{margin-left:-13.386667pt;}
._10_c00107{margin-left:-9.866667pt;}
._5_c00107{margin-left:-8.800000pt;}
._4_c00107{margin-left:-7.466667pt;}
._3_c00107{margin-left:-5.226667pt;}
._14_c00107{margin-left:-4.106667pt;}
._a_c00107{margin-left:-2.400000pt;}
._6_c00107{margin-left:-1.013333pt;}
._0_c00107{width:1.333333pt;}
._1_c00107{width:2.346667pt;}
._2_c00107{width:3.253333pt;}
._7_c00107{width:4.853333pt;}
._11_c00107{width:6.026667pt;}
._8_c00107{width:6.933333pt;}
._c_c00107{width:8.426667pt;}
._9_c00107{width:10.026667pt;}
._b_c00107{width:11.093333pt;}
._f_c00107{width:12.426667pt;}
._16_c00107{width:14.240000pt;}
._12_c00107{width:15.360000pt;}
._d_c00107{width:16.266667pt;}
._e_c00107{width:17.226667pt;}
._13_c00107{width:18.293333pt;}
._17_c00107{width:22.746685pt;}
._18_c00107{width:23.813379pt;}
.fs1_c00107{font-size:45.333333pt;}
.fs0_c00107{font-size:53.333333pt;}
.y0_c00107{bottom:0.000000pt;}
.y29_c00107{bottom:57.266686pt;}
.y28_c00107{bottom:97.933353pt;}
.y27_c00107{bottom:111.400020pt;}
.y26_c00107{bottom:125.133353pt;}
.y25_c00107{bottom:138.866686pt;}
.y24_c00107{bottom:152.333353pt;}
.y23_c00107{bottom:166.066686pt;}
.y22_c00107{bottom:179.533353pt;}
.y21_c00107{bottom:193.266686pt;}
.y20_c00107{bottom:206.733353pt;}
.y1f_c00107{bottom:220.200020pt;}
.y1e_c00107{bottom:234.266686pt;}
.y1d_c00107{bottom:247.400020pt;}
.y1c_c00107{bottom:261.133353pt;}
.y1a_c00107{bottom:319.066686pt;}
.y19_c00107{bottom:336.333353pt;}
.y18_c00107{bottom:353.600020pt;}
.y17_c00107{bottom:370.866686pt;}
.y16_c00107{bottom:388.200020pt;}
.y15_c00107{bottom:405.466686pt;}
.y14_c00107{bottom:423.066686pt;}
.y13_c00107{bottom:440.000020pt;}
.y12_c00107{bottom:457.600020pt;}
.y11_c00107{bottom:474.866686pt;}
.y10_c00107{bottom:491.866686pt;}
.yf_c00107{bottom:509.466686pt;}
.ye_c00107{bottom:526.400020pt;}
.yd_c00107{bottom:544.000020pt;}
.yc_c00107{bottom:561.000020pt;}
.yb_c00107{bottom:578.266686pt;}
.ya_c00107{bottom:595.533353pt;}
.y9_c00107{bottom:612.800020pt;}
.y8_c00107{bottom:630.400020pt;}
.y7_c00107{bottom:647.400020pt;}
.y6_c00107{bottom:664.666686pt;}
.y5_c00107{bottom:682.200020pt;}
.y4_c00107{bottom:699.200020pt;}
.y3_c00107{bottom:716.200020pt;}
.y2_c00107{bottom:733.800020pt;}
.y1_c00107{bottom:751.066686pt;}
.y1b_c00107{bottom:788.200020pt;}
.h3_c00107{height:44.470052pt;}
.h4_c00107{height:44.492188pt;}
.h2_c00107{height:52.343750pt;}
.h1_c00107{height:851.333333pt;}
.h0_c00107{height:851.533333pt;}
.w0_c00107{width:570.533360pt;}
.w1_c00107{width:570.666667pt;}
.x0_c00107{left:0.000000pt;}
.x1_c00107{left:72.000000pt;}
.x3_c00107{left:76.466667pt;}
.x4_c00107{left:101.133333pt;}
.x2_c00107{left:144.666667pt;}
.x5_c00107{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f8a82489b7608e22e268b923.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00108;src:url('chunks/assets/font_3abf4369627bebc6ca2525fd.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.ls0_c00108{letter-spacing:0.000000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00108{word-spacing:-15.000000px;}
.ws0_c00108{word-spacing:-12.750000px;}
.ws2_c00108{word-spacing:0.000000px;}
._2_c00108{margin-left:-10.140000px;}
._1_c00108{margin-left:-8.460000px;}
._10_c00108{margin-left:-6.300000px;}
._13_c00108{margin-left:-4.140000px;}
._f_c00108{margin-left:-3.060000px;}
._c_c00108{margin-left:-1.800000px;}
._0_c00108{width:1.080000px;}
._6_c00108{width:2.700000px;}
._8_c00108{width:4.200000px;}
._4_c00108{width:5.280000px;}
._5_c00108{width:6.840000px;}
._7_c00108{width:8.340000px;}
._3_c00108{width:9.600000px;}
._9_c00108{width:10.800000px;}
._a_c00108{width:12.360000px;}
._e_c00108{width:13.800000px;}
._b_c00108{width:16.140000px;}
._d_c00108{width:18.060000px;}
._12_c00108{width:19.260000px;}
._19_c00108{width:20.310000px;}
._11_c00108{width:21.720000px;}
._14_c00108{width:23.310000px;}
._18_c00108{width:24.983892px;}
._15_c00108{width:26.652024px;}
._16_c00108{width:30.188991px;}
._17_c00108{width:32.123985px;}
.fc1_c00108{color:transparent;}
.fc0_c00108{color:rgb(35,31,32);}
.fs1_c00108{font-size:51.000000px;}
.fs0_c00108{font-size:60.000000px;}
.y0_c00108{bottom:0.000000px;}
.y27_c00108{bottom:64.425022px;}
.y26_c00108{bottom:110.550022px;}
.y25_c00108{bottom:125.325022px;}
.y24_c00108{bottom:140.775022px;}
.y23_c00108{bottom:156.225022px;}
.y22_c00108{bottom:171.375022px;}
.y21_c00108{bottom:186.525022px;}
.y20_c00108{bottom:201.975022px;}
.y1f_c00108{bottom:217.125022px;}
.y1e_c00108{bottom:232.575022px;}
.y1c_c00108{bottom:311.025022px;}
.y1b_c00108{bottom:330.525022px;}
.y1a_c00108{bottom:349.950022px;}
.y19_c00108{bottom:369.375022px;}
.y18_c00108{bottom:398.175022px;}
.y17_c00108{bottom:417.225022px;}
.y16_c00108{bottom:436.725022px;}
.y15_c00108{bottom:456.150022px;}
.y14_c00108{bottom:475.950022px;}
.y13_c00108{bottom:495.375022px;}
.y12_c00108{bottom:514.425022px;}
.y11_c00108{bottom:533.925022px;}
.y10_c00108{bottom:553.350022px;}
.yf_c00108{bottom:572.775022px;}
.ye_c00108{bottom:592.200022px;}
.yd_c00108{bottom:612.000022px;}
.yc_c00108{bottom:631.425022px;}
.yb_c00108{bottom:650.550022px;}
.ya_c00108{bottom:670.350022px;}
.y9_c00108{bottom:689.400022px;}
.y8_c00108{bottom:709.200022px;}
.y7_c00108{bottom:728.700022px;}
.y6_c00108{bottom:748.125022px;}
.y5_c00108{bottom:767.550022px;}
.y4_c00108{bottom:786.225022px;}
.y3_c00108{bottom:806.025022px;}
.y2_c00108{bottom:825.150022px;}
.y1_c00108{bottom:844.950022px;}
.y1d_c00108{bottom:886.725022px;}
.h4_c00108{height:50.028809px;}
.h5_c00108{height:50.053711px;}
.h3_c00108{height:58.857422px;}
.h2_c00108{height:58.886719px;}
.h1_c00108{height:957.750000px;}
.h0_c00108{height:957.975000px;}
.w1_c00108{width:643.500000px;}
.w0_c00108{width:643.650000px;}
.x0_c00108{left:0.000000px;}
.x1_c00108{left:90.375000px;}
.x2_c00108{left:91.425000px;}
.x5_c00108{left:96.150000px;}
.x4_c00108{left:105.450000px;}
.x3_c00108{left:106.950000px;}
.x6_c00108{left:124.200000px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls0_c00108{letter-spacing:0.000000pt;}
.ws1_c00108{word-spacing:-13.333333pt;}
.ws0_c00108{word-spacing:-11.333333pt;}
.ws2_c00108{word-spacing:0.000000pt;}
._2_c00108{margin-left:-9.013333pt;}
._1_c00108{margin-left:-7.520000pt;}
._10_c00108{margin-left:-5.600000pt;}
._13_c00108{margin-left:-3.680000pt;}
._f_c00108{margin-left:-2.720000pt;}
._c_c00108{margin-left:-1.600000pt;}
._0_c00108{width:0.960000pt;}
._6_c00108{width:2.400000pt;}
._8_c00108{width:3.733333pt;}
._4_c00108{width:4.693333pt;}
._5_c00108{width:6.080000pt;}
._7_c00108{width:7.413333pt;}
._3_c00108{width:8.533333pt;}
._9_c00108{width:9.600000pt;}
._a_c00108{width:10.986667pt;}
._e_c00108{width:12.266667pt;}
._b_c00108{width:14.346667pt;}
._d_c00108{width:16.053333pt;}
._12_c00108{width:17.120000pt;}
._19_c00108{width:18.053333pt;}
._11_c00108{width:19.306667pt;}
._14_c00108{width:20.720000pt;}
._18_c00108{width:22.207904pt;}
._15_c00108{width:23.690688pt;}
._16_c00108{width:26.834659pt;}
._17_c00108{width:28.554653pt;}
.fs1_c00108{font-size:45.333333pt;}
.fs0_c00108{font-size:53.333333pt;}
.y0_c00108{bottom:0.000000pt;}
.y27_c00108{bottom:57.266686pt;}
.y26_c00108{bottom:98.266686pt;}
.y25_c00108{bottom:111.400020pt;}
.y24_c00108{bottom:125.133353pt;}
.y23_c00108{bottom:138.866686pt;}
.y22_c00108{bottom:152.333353pt;}
.y21_c00108{bottom:165.800020pt;}
.y20_c00108{bottom:179.533353pt;}
.y1f_c00108{bottom:193.000020pt;}
.y1e_c00108{bottom:206.733353pt;}
.y1c_c00108{bottom:276.466686pt;}
.y1b_c00108{bottom:293.800020pt;}
.y1a_c00108{bottom:311.066686pt;}
.y19_c00108{bottom:328.333353pt;}
.y18_c00108{bottom:353.933353pt;}
.y17_c00108{bottom:370.866686pt;}
.y16_c00108{bottom:388.200020pt;}
.y15_c00108{bottom:405.466686pt;}
.y14_c00108{bottom:423.066686pt;}
.y13_c00108{bottom:440.333353pt;}
.y12_c00108{bottom:457.266686pt;}
.y11_c00108{bottom:474.600020pt;}
.y10_c00108{bottom:491.866686pt;}
.yf_c00108{bottom:509.133353pt;}
.ye_c00108{bottom:526.400020pt;}
.yd_c00108{bottom:544.000020pt;}
.yc_c00108{bottom:561.266686pt;}
.yb_c00108{bottom:578.266686pt;}
.ya_c00108{bottom:595.866686pt;}
.y9_c00108{bottom:612.800020pt;}
.y8_c00108{bottom:630.400020pt;}
.y7_c00108{bottom:647.733353pt;}
.y6_c00108{bottom:665.000020pt;}
.y5_c00108{bottom:682.266686pt;}
.y4_c00108{bottom:698.866686pt;}
.y3_c00108{bottom:716.466686pt;}
.y2_c00108{bottom:733.466686pt;}
.y1_c00108{bottom:751.066686pt;}
.y1d_c00108{bottom:788.200020pt;}
.h4_c00108{height:44.470052pt;}
.h5_c00108{height:44.492188pt;}
.h3_c00108{height:52.317708pt;}
.h2_c00108{height:52.343750pt;}
.h1_c00108{height:851.333333pt;}
.h0_c00108{height:851.533333pt;}
.w1_c00108{width:572.000000pt;}
.w0_c00108{width:572.133333pt;}
.x0_c00108{left:0.000000pt;}
.x1_c00108{left:80.333333pt;}
.x2_c00108{left:81.266667pt;}
.x5_c00108{left:85.466667pt;}
.x4_c00108{left:93.733333pt;}
.x3_c00108{left:95.066667pt;}
.x6_c00108{left:110.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_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_f2ec9bd4fa941c0e33c578f9.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00109;src:url('chunks/assets/font_e7c86ba62673378fcabc6071.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00109{letter-spacing:0.000000px;}
.ls0_c00109{letter-spacing:11.100000px;}
.sc__c00109{text-shadow:none;}
.sc0_c00109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00109{-webkit-text-stroke:0px transparent;}
.sc0_c00109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00109{word-spacing:-15.000000px;}
.ws1_c00109{word-spacing:-12.750000px;}
.ws2_c00109{word-spacing:0.000000px;}
._5_c00109{margin-left:-15.369072px;}
._b_c00109{margin-left:-11.319126px;}
._6_c00109{margin-left:-9.300000px;}
._16_c00109{margin-left:-7.599009px;}
._1d_c00109{margin-left:-6.341925px;}
._18_c00109{margin-left:-5.195517px;}
._3_c00109{margin-left:-3.852165px;}
._2_c00109{margin-left:-1.895976px;}
._0_c00109{width:1.173000px;}
._1_c00109{width:2.531997px;}
._4_c00109{width:3.909168px;}
._7_c00109{width:5.160000px;}
._17_c00109{width:6.357009px;}
._d_c00109{width:7.419015px;}
._a_c00109{width:8.480985px;}
._c_c00109{width:9.861000px;}
._8_c00109{width:10.875000px;}
._9_c00109{width:12.165009px;}
._14_c00109{width:13.385982px;}
._1b_c00109{width:15.044976px;}
._12_c00109{width:16.143003px;}
._13_c00109{width:18.188853px;}
._15_c00109{width:20.082003px;}
._1c_c00109{width:24.041952px;}
._1a_c00109{width:25.541973px;}
._10_c00109{width:26.936949px;}
._19_c00109{width:28.241952px;}
._f_c00109{width:29.247000px;}
._e_c00109{width:30.696003px;}
._11_c00109{width:31.917099px;}
.fc2_c00109{color:transparent;}
.fc1_c00109{color:rgb(0,0,0);}
.fc0_c00109{color:rgb(35,31,32);}
.fs0_c00109{font-size:51.000000px;}
.fs1_c00109{font-size:60.000000px;}
.y0_c00109{bottom:0.000000px;}
.y28_c00109{bottom:64.425022px;}
.y27_c00109{bottom:110.550022px;}
.y26_c00109{bottom:125.325022px;}
.y25_c00109{bottom:140.775022px;}
.y24_c00109{bottom:155.925022px;}
.y23_c00109{bottom:171.375022px;}
.y22_c00109{bottom:186.825022px;}
.y21_c00109{bottom:201.975022px;}
.y20_c00109{bottom:217.425022px;}
.y1f_c00109{bottom:232.575022px;}
.y1e_c00109{bottom:248.025022px;}
.y1d_c00109{bottom:263.175022px;}
.y1c_c00109{bottom:278.325022px;}
.y1b_c00109{bottom:293.775022px;}
.y1a_c00109{bottom:308.925022px;}
.y19_c00109{bottom:324.375022px;}
.y18_c00109{bottom:339.825022px;}
.y17_c00109{bottom:354.975022px;}
.y16_c00109{bottom:395.325022px;}
.y15_c00109{bottom:414.375022px;}
.y14_c00109{bottom:434.175022px;}
.y13_c00109{bottom:453.300022px;}
.y12_c00109{bottom:472.725022px;}
.y11_c00109{bottom:492.150022px;}
.y10_c00109{bottom:511.200022px;}
.yf_c00109{bottom:531.000022px;}
.ye_c00109{bottom:550.425022px;}
.yd_c00109{bottom:569.925022px;}
.yc_c00109{bottom:589.350022px;}
.yb_c00109{bottom:608.775022px;}
.ya_c00109{bottom:628.200022px;}
.y9_c00109{bottom:647.325022px;}
.y8_c00109{bottom:686.550022px;}
.y7_c00109{bottom:738.750022px;}
.y6_c00109{bottom:758.550022px;}
.y5_c00109{bottom:777.600022px;}
.y4_c00109{bottom:797.025022px;}
.y3_c00109{bottom:825.150022px;}
.y2_c00109{bottom:844.575022px;}
.y1_c00109{bottom:886.725022px;}
.h2_c00109{height:50.028809px;}
.h5_c00109{height:50.053711px;}
.h4_c00109{height:58.857422px;}
.h3_c00109{height:58.886719px;}
.h1_c00109{height:957.750000px;}
.h0_c00109{height:957.975000px;}
.w0_c00109{width:641.850030px;}
.w1_c00109{width:642.000000px;}
.x0_c00109{left:0.000000px;}
.x4_c00109{left:80.250000px;}
.x3_c00109{left:81.375000px;}
.x5_c00109{left:86.025000px;}
.x2_c00109{left:97.200000px;}
.x6_c00109{left:114.150000px;}
.x1_c00109{left:162.750000px;}
.x7_c00109{left:532.050000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls1_c00109{letter-spacing:0.000000pt;}
.ls0_c00109{letter-spacing:9.866667pt;}
.ws0_c00109{word-spacing:-13.333333pt;}
.ws1_c00109{word-spacing:-11.333333pt;}
.ws2_c00109{word-spacing:0.000000pt;}
._5_c00109{margin-left:-13.661397pt;}
._b_c00109{margin-left:-10.061445pt;}
._6_c00109{margin-left:-8.266667pt;}
._16_c00109{margin-left:-6.754675pt;}
._1d_c00109{margin-left:-5.637267pt;}
._18_c00109{margin-left:-4.618237pt;}
._3_c00109{margin-left:-3.424147pt;}
._2_c00109{margin-left:-1.685312pt;}
._0_c00109{width:1.042667pt;}
._1_c00109{width:2.250664pt;}
._4_c00109{width:3.474816pt;}
._7_c00109{width:4.586667pt;}
._17_c00109{width:5.650675pt;}
._d_c00109{width:6.594680pt;}
._a_c00109{width:7.538653pt;}
._c_c00109{width:8.765333pt;}
._8_c00109{width:9.666667pt;}
._9_c00109{width:10.813341pt;}
._14_c00109{width:11.898651pt;}
._1b_c00109{width:13.373312pt;}
._12_c00109{width:14.349336pt;}
._13_c00109{width:16.167869pt;}
._15_c00109{width:17.850669pt;}
._1c_c00109{width:21.370624pt;}
._1a_c00109{width:22.703976pt;}
._10_c00109{width:23.943955pt;}
._19_c00109{width:25.103957pt;}
._f_c00109{width:25.997333pt;}
._e_c00109{width:27.285336pt;}
._11_c00109{width:28.370755pt;}
.fs0_c00109{font-size:45.333333pt;}
.fs1_c00109{font-size:53.333333pt;}
.y0_c00109{bottom:0.000000pt;}
.y28_c00109{bottom:57.266686pt;}
.y27_c00109{bottom:98.266686pt;}
.y26_c00109{bottom:111.400020pt;}
.y25_c00109{bottom:125.133353pt;}
.y24_c00109{bottom:138.600020pt;}
.y23_c00109{bottom:152.333353pt;}
.y22_c00109{bottom:166.066686pt;}
.y21_c00109{bottom:179.533353pt;}
.y20_c00109{bottom:193.266686pt;}
.y1f_c00109{bottom:206.733353pt;}
.y1e_c00109{bottom:220.466686pt;}
.y1d_c00109{bottom:233.933353pt;}
.y1c_c00109{bottom:247.400020pt;}
.y1b_c00109{bottom:261.133353pt;}
.y1a_c00109{bottom:274.600020pt;}
.y19_c00109{bottom:288.333353pt;}
.y18_c00109{bottom:302.066686pt;}
.y17_c00109{bottom:315.533353pt;}
.y16_c00109{bottom:351.400020pt;}
.y15_c00109{bottom:368.333353pt;}
.y14_c00109{bottom:385.933353pt;}
.y13_c00109{bottom:402.933353pt;}
.y12_c00109{bottom:420.200020pt;}
.y11_c00109{bottom:437.466686pt;}
.y10_c00109{bottom:454.400020pt;}
.yf_c00109{bottom:472.000020pt;}
.ye_c00109{bottom:489.266686pt;}
.yd_c00109{bottom:506.600020pt;}
.yc_c00109{bottom:523.866686pt;}
.yb_c00109{bottom:541.133353pt;}
.ya_c00109{bottom:558.400020pt;}
.y9_c00109{bottom:575.400020pt;}
.y8_c00109{bottom:610.266686pt;}
.y7_c00109{bottom:656.666686pt;}
.y6_c00109{bottom:674.266686pt;}
.y5_c00109{bottom:691.200020pt;}
.y4_c00109{bottom:708.466686pt;}
.y3_c00109{bottom:733.466686pt;}
.y2_c00109{bottom:750.733353pt;}
.y1_c00109{bottom:788.200020pt;}
.h2_c00109{height:44.470052pt;}
.h5_c00109{height:44.492188pt;}
.h4_c00109{height:52.317708pt;}
.h3_c00109{height:52.343750pt;}
.h1_c00109{height:851.333333pt;}
.h0_c00109{height:851.533333pt;}
.w0_c00109{width:570.533360pt;}
.w1_c00109{width:570.666667pt;}
.x0_c00109{left:0.000000pt;}
.x4_c00109{left:71.333333pt;}
.x3_c00109{left:72.333333pt;}
.x5_c00109{left:76.466667pt;}
.x2_c00109{left:86.400000pt;}
.x6_c00109{left:101.466667pt;}
.x1_c00109{left:144.666667pt;}
.x7_c00109{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_596f828fe5e3ffd2c61639cb.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00110;src:url('chunks/assets/font_1f3848a174fa7159b11a942c.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00110{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_c00110{vertical-align:0.000000px;}
.ls0_c00110{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws0_c00110{word-spacing:-12.750000px;}
.ws2_c00110{word-spacing:0.000000px;}
._16_c00110{margin-left:-13.080000px;}
._15_c00110{margin-left:-11.520000px;}
._13_c00110{margin-left:-10.200000px;}
._b_c00110{margin-left:-9.000000px;}
._a_c00110{margin-left:-7.980000px;}
._1f_c00110{margin-left:-6.408078px;}
._19_c00110{margin-left:-5.324964px;}
._12_c00110{margin-left:-4.140000px;}
._e_c00110{margin-left:-2.760000px;}
._9_c00110{margin-left:-1.380000px;}
._3_c00110{width:1.020000px;}
._0_c00110{width:2.100000px;}
._4_c00110{width:3.360000px;}
._7_c00110{width:4.380000px;}
._5_c00110{width:5.400000px;}
._6_c00110{width:7.260000px;}
._c_c00110{width:8.760000px;}
._1_c00110{width:10.020000px;}
._18_c00110{width:11.160000px;}
._f_c00110{width:12.240000px;}
._8_c00110{width:13.320000px;}
._1c_c00110{width:14.327991px;}
._1b_c00110{width:15.342039px;}
._2_c00110{width:16.920000px;}
._14_c00110{width:18.000000px;}
._d_c00110{width:19.020000px;}
._17_c00110{width:20.160000px;}
._10_c00110{width:21.360000px;}
._11_c00110{width:22.500000px;}
._1a_c00110{width:24.330000px;}
._1d_c00110{width:25.710051px;}
._1e_c00110{width:28.650072px;}
.fc1_c00110{color:transparent;}
.fc0_c00110{color:rgb(35,31,32);}
.fs1_c00110{font-size:51.000000px;}
.fs0_c00110{font-size:60.000000px;}
.y0_c00110{bottom:0.000000px;}
.y2b_c00110{bottom:64.425022px;}
.y2a_c00110{bottom:110.175022px;}
.y29_c00110{bottom:125.625022px;}
.y28_c00110{bottom:140.775022px;}
.y27_c00110{bottom:155.925022px;}
.y26_c00110{bottom:171.375022px;}
.y25_c00110{bottom:186.525022px;}
.y24_c00110{bottom:202.350022px;}
.y23_c00110{bottom:217.425022px;}
.y22_c00110{bottom:232.950022px;}
.y21_c00110{bottom:248.025022px;}
.y20_c00110{bottom:263.175022px;}
.y1f_c00110{bottom:278.325022px;}
.y1e_c00110{bottom:293.775022px;}
.y1d_c00110{bottom:308.925022px;}
.y1c_c00110{bottom:324.750022px;}
.y1b_c00110{bottom:339.525022px;}
.y1a_c00110{bottom:355.350022px;}
.y19_c00110{bottom:370.425022px;}
.y18_c00110{bottom:385.575022px;}
.y17_c00110{bottom:401.025022px;}
.y15_c00110{bottom:456.525022px;}
.y14_c00110{bottom:475.575022px;}
.y13_c00110{bottom:495.375022px;}
.y12_c00110{bottom:514.800022px;}
.y11_c00110{bottom:534.225022px;}
.y10_c00110{bottom:553.350022px;}
.yf_c00110{bottom:572.775022px;}
.ye_c00110{bottom:592.575022px;}
.yd_c00110{bottom:611.625022px;}
.yc_c00110{bottom:631.425022px;}
.yb_c00110{bottom:650.925022px;}
.ya_c00110{bottom:669.975022px;}
.y9_c00110{bottom:689.775022px;}
.y8_c00110{bottom:708.825022px;}
.y7_c00110{bottom:728.625022px;}
.y6_c00110{bottom:748.125022px;}
.y5_c00110{bottom:767.475022px;}
.y4_c00110{bottom:786.600022px;}
.y3_c00110{bottom:805.725022px;}
.y2_c00110{bottom:825.150022px;}
.y1_c00110{bottom:844.950022px;}
.y16_c00110{bottom:886.725022px;}
.h3_c00110{height:50.028809px;}
.h4_c00110{height:50.053711px;}
.h2_c00110{height:58.886719px;}
.h1_c00110{height:957.750000px;}
.h0_c00110{height:957.975000px;}
.w1_c00110{width:643.500000px;}
.w0_c00110{width:643.650000px;}
.x0_c00110{left:0.000000px;}
.x1_c00110{left:90.375000px;}
.x2_c00110{left:91.425000px;}
.x5_c00110{left:96.150000px;}
.x3_c00110{left:107.250000px;}
.x4_c00110{left:123.825000px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls0_c00110{letter-spacing:0.000000pt;}
.ws1_c00110{word-spacing:-13.333333pt;}
.ws0_c00110{word-spacing:-11.333333pt;}
.ws2_c00110{word-spacing:0.000000pt;}
._16_c00110{margin-left:-11.626667pt;}
._15_c00110{margin-left:-10.240000pt;}
._13_c00110{margin-left:-9.066667pt;}
._b_c00110{margin-left:-8.000000pt;}
._a_c00110{margin-left:-7.093333pt;}
._1f_c00110{margin-left:-5.696069pt;}
._19_c00110{margin-left:-4.733301pt;}
._12_c00110{margin-left:-3.680000pt;}
._e_c00110{margin-left:-2.453333pt;}
._9_c00110{margin-left:-1.226667pt;}
._3_c00110{width:0.906667pt;}
._0_c00110{width:1.866667pt;}
._4_c00110{width:2.986667pt;}
._7_c00110{width:3.893333pt;}
._5_c00110{width:4.800000pt;}
._6_c00110{width:6.453333pt;}
._c_c00110{width:7.786667pt;}
._1_c00110{width:8.906667pt;}
._18_c00110{width:9.920000pt;}
._f_c00110{width:10.880000pt;}
._8_c00110{width:11.840000pt;}
._1c_c00110{width:12.735992pt;}
._1b_c00110{width:13.637368pt;}
._2_c00110{width:15.040000pt;}
._14_c00110{width:16.000000pt;}
._d_c00110{width:16.906667pt;}
._17_c00110{width:17.920000pt;}
._10_c00110{width:18.986667pt;}
._11_c00110{width:20.000000pt;}
._1a_c00110{width:21.626667pt;}
._1d_c00110{width:22.853379pt;}
._1e_c00110{width:25.466731pt;}
.fs1_c00110{font-size:45.333333pt;}
.fs0_c00110{font-size:53.333333pt;}
.y0_c00110{bottom:0.000000pt;}
.y2b_c00110{bottom:57.266686pt;}
.y2a_c00110{bottom:97.933353pt;}
.y29_c00110{bottom:111.666686pt;}
.y28_c00110{bottom:125.133353pt;}
.y27_c00110{bottom:138.600020pt;}
.y26_c00110{bottom:152.333353pt;}
.y25_c00110{bottom:165.800020pt;}
.y24_c00110{bottom:179.866686pt;}
.y23_c00110{bottom:193.266686pt;}
.y22_c00110{bottom:207.066686pt;}
.y21_c00110{bottom:220.466686pt;}
.y20_c00110{bottom:233.933353pt;}
.y1f_c00110{bottom:247.400020pt;}
.y1e_c00110{bottom:261.133353pt;}
.y1d_c00110{bottom:274.600020pt;}
.y1c_c00110{bottom:288.666686pt;}
.y1b_c00110{bottom:301.800020pt;}
.y1a_c00110{bottom:315.866686pt;}
.y19_c00110{bottom:329.266686pt;}
.y18_c00110{bottom:342.733353pt;}
.y17_c00110{bottom:356.466686pt;}
.y15_c00110{bottom:405.800020pt;}
.y14_c00110{bottom:422.733353pt;}
.y13_c00110{bottom:440.333353pt;}
.y12_c00110{bottom:457.600020pt;}
.y11_c00110{bottom:474.866686pt;}
.y10_c00110{bottom:491.866686pt;}
.yf_c00110{bottom:509.133353pt;}
.ye_c00110{bottom:526.733353pt;}
.yd_c00110{bottom:543.666686pt;}
.yc_c00110{bottom:561.266686pt;}
.yb_c00110{bottom:578.600020pt;}
.ya_c00110{bottom:595.533353pt;}
.y9_c00110{bottom:613.133353pt;}
.y8_c00110{bottom:630.066686pt;}
.y7_c00110{bottom:647.666686pt;}
.y6_c00110{bottom:665.000020pt;}
.y5_c00110{bottom:682.200020pt;}
.y4_c00110{bottom:699.200020pt;}
.y3_c00110{bottom:716.200020pt;}
.y2_c00110{bottom:733.466686pt;}
.y1_c00110{bottom:751.066686pt;}
.y16_c00110{bottom:788.200020pt;}
.h3_c00110{height:44.470052pt;}
.h4_c00110{height:44.492188pt;}
.h2_c00110{height:52.343750pt;}
.h1_c00110{height:851.333333pt;}
.h0_c00110{height:851.533333pt;}
.w1_c00110{width:572.000000pt;}
.w0_c00110{width:572.133333pt;}
.x0_c00110{left:0.000000pt;}
.x1_c00110{left:80.333333pt;}
.x2_c00110{left:81.266667pt;}
.x5_c00110{left:85.466667pt;}
.x3_c00110{left:95.333333pt;}
.x4_c00110{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a0c6d98d735d308e37050ee5.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00111;src:url('chunks/assets/font_6b91b1fdd38b9ad951abf38a.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00111{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_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;}
}
.ws1_c00111{word-spacing:-15.000000px;}
.ws0_c00111{word-spacing:-12.750000px;}
.ws2_c00111{word-spacing:0.000000px;}
._11_c00111{margin-left:-10.020000px;}
._f_c00111{margin-left:-9.000000px;}
._e_c00111{margin-left:-7.800000px;}
._9_c00111{margin-left:-6.300000px;}
._d_c00111{margin-left:-4.800000px;}
._a_c00111{margin-left:-3.660000px;}
._0_c00111{margin-left:-1.800000px;}
._3_c00111{width:1.800000px;}
._2_c00111{width:3.300000px;}
._6_c00111{width:4.620000px;}
._8_c00111{width:6.540000px;}
._7_c00111{width:8.400000px;}
._b_c00111{width:9.420000px;}
._4_c00111{width:10.560000px;}
._c_c00111{width:11.580000px;}
._1_c00111{width:12.840000px;}
._5_c00111{width:13.980000px;}
._10_c00111{width:16.200000px;}
._14_c00111{width:17.340000px;}
._12_c00111{width:19.260000px;}
._13_c00111{width:20.340000px;}
._17_c00111{width:23.850000px;}
._16_c00111{width:25.350021px;}
._15_c00111{width:26.550000px;}
.fc1_c00111{color:transparent;}
.fc0_c00111{color:rgb(35,31,32);}
.fs1_c00111{font-size:51.000000px;}
.fs0_c00111{font-size:60.000000px;}
.y0_c00111{bottom:0.000000px;}
.y27_c00111{bottom:64.800022px;}
.y26_c00111{bottom:110.175022px;}
.y25_c00111{bottom:125.325022px;}
.y24_c00111{bottom:140.775022px;}
.y23_c00111{bottom:155.925022px;}
.y22_c00111{bottom:171.675022px;}
.y21_c00111{bottom:186.825022px;}
.y20_c00111{bottom:201.975022px;}
.y1f_c00111{bottom:217.425022px;}
.y1e_c00111{bottom:232.950022px;}
.y1d_c00111{bottom:248.025022px;}
.y1c_c00111{bottom:263.175022px;}
.y1b_c00111{bottom:278.325022px;}
.y1a_c00111{bottom:293.775022px;}
.y19_c00111{bottom:309.225022px;}
.y18_c00111{bottom:324.375022px;}
.y17_c00111{bottom:339.525022px;}
.y16_c00111{bottom:400.350022px;}
.y15_c00111{bottom:419.775022px;}
.y14_c00111{bottom:439.200022px;}
.y13_c00111{bottom:458.325022px;}
.y12_c00111{bottom:478.125022px;}
.y11_c00111{bottom:497.550022px;}
.y10_c00111{bottom:535.725022px;}
.ye_c00111{bottom:592.200022px;}
.yd_c00111{bottom:612.075022px;}
.yc_c00111{bottom:631.500022px;}
.yb_c00111{bottom:650.925022px;}
.ya_c00111{bottom:670.350022px;}
.y9_c00111{bottom:689.775022px;}
.y8_c00111{bottom:709.200022px;}
.y7_c00111{bottom:728.700022px;}
.y6_c00111{bottom:748.125022px;}
.y5_c00111{bottom:767.550022px;}
.y4_c00111{bottom:786.225022px;}
.y3_c00111{bottom:805.725022px;}
.y2_c00111{bottom:825.150022px;}
.y1_c00111{bottom:844.950022px;}
.yf_c00111{bottom:886.725022px;}
.h3_c00111{height:50.028809px;}
.h4_c00111{height:50.053711px;}
.h2_c00111{height:58.886719px;}
.h1_c00111{height:957.750000px;}
.h0_c00111{height:957.975000px;}
.w0_c00111{width:641.850030px;}
.w1_c00111{width:642.000000px;}
.x0_c00111{left:0.000000px;}
.x2_c00111{left:80.250000px;}
.x1_c00111{left:81.375000px;}
.x4_c00111{left:86.025000px;}
.x6_c00111{left:113.025000px;}
.x5_c00111{left:114.150000px;}
.x3_c00111{left:162.750000px;}
.x7_c00111{left:532.050000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls0_c00111{letter-spacing:0.000000pt;}
.ws1_c00111{word-spacing:-13.333333pt;}
.ws0_c00111{word-spacing:-11.333333pt;}
.ws2_c00111{word-spacing:0.000000pt;}
._11_c00111{margin-left:-8.906667pt;}
._f_c00111{margin-left:-8.000000pt;}
._e_c00111{margin-left:-6.933333pt;}
._9_c00111{margin-left:-5.600000pt;}
._d_c00111{margin-left:-4.266667pt;}
._a_c00111{margin-left:-3.253333pt;}
._0_c00111{margin-left:-1.600000pt;}
._3_c00111{width:1.600000pt;}
._2_c00111{width:2.933333pt;}
._6_c00111{width:4.106667pt;}
._8_c00111{width:5.813333pt;}
._7_c00111{width:7.466667pt;}
._b_c00111{width:8.373333pt;}
._4_c00111{width:9.386667pt;}
._c_c00111{width:10.293333pt;}
._1_c00111{width:11.413333pt;}
._5_c00111{width:12.426667pt;}
._10_c00111{width:14.400000pt;}
._14_c00111{width:15.413333pt;}
._12_c00111{width:17.120000pt;}
._13_c00111{width:18.080000pt;}
._17_c00111{width:21.200000pt;}
._16_c00111{width:22.533352pt;}
._15_c00111{width:23.600000pt;}
.fs1_c00111{font-size:45.333333pt;}
.fs0_c00111{font-size:53.333333pt;}
.y0_c00111{bottom:0.000000pt;}
.y27_c00111{bottom:57.600020pt;}
.y26_c00111{bottom:97.933353pt;}
.y25_c00111{bottom:111.400020pt;}
.y24_c00111{bottom:125.133353pt;}
.y23_c00111{bottom:138.600020pt;}
.y22_c00111{bottom:152.600020pt;}
.y21_c00111{bottom:166.066686pt;}
.y20_c00111{bottom:179.533353pt;}
.y1f_c00111{bottom:193.266686pt;}
.y1e_c00111{bottom:207.066686pt;}
.y1d_c00111{bottom:220.466686pt;}
.y1c_c00111{bottom:233.933353pt;}
.y1b_c00111{bottom:247.400020pt;}
.y1a_c00111{bottom:261.133353pt;}
.y19_c00111{bottom:274.866686pt;}
.y18_c00111{bottom:288.333353pt;}
.y17_c00111{bottom:301.800020pt;}
.y16_c00111{bottom:355.866686pt;}
.y15_c00111{bottom:373.133353pt;}
.y14_c00111{bottom:390.400020pt;}
.y13_c00111{bottom:407.400020pt;}
.y12_c00111{bottom:425.000020pt;}
.y11_c00111{bottom:442.266686pt;}
.y10_c00111{bottom:476.200020pt;}
.ye_c00111{bottom:526.400020pt;}
.yd_c00111{bottom:544.066686pt;}
.yc_c00111{bottom:561.333353pt;}
.yb_c00111{bottom:578.600020pt;}
.ya_c00111{bottom:595.866686pt;}
.y9_c00111{bottom:613.133353pt;}
.y8_c00111{bottom:630.400020pt;}
.y7_c00111{bottom:647.733353pt;}
.y6_c00111{bottom:665.000020pt;}
.y5_c00111{bottom:682.266686pt;}
.y4_c00111{bottom:698.866686pt;}
.y3_c00111{bottom:716.200020pt;}
.y2_c00111{bottom:733.466686pt;}
.y1_c00111{bottom:751.066686pt;}
.yf_c00111{bottom:788.200020pt;}
.h3_c00111{height:44.470052pt;}
.h4_c00111{height:44.492188pt;}
.h2_c00111{height:52.343750pt;}
.h1_c00111{height:851.333333pt;}
.h0_c00111{height:851.533333pt;}
.w0_c00111{width:570.533360pt;}
.w1_c00111{width:570.666667pt;}
.x0_c00111{left:0.000000pt;}
.x2_c00111{left:71.333333pt;}
.x1_c00111{left:72.333333pt;}
.x4_c00111{left:76.466667pt;}
.x6_c00111{left:100.466667pt;}
.x5_c00111{left:101.466667pt;}
.x3_c00111{left:144.666667pt;}
.x7_c00111{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c6c59bc4dd18c5b1031b7706.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00112;src:url('chunks/assets/font_dbb0b562496e6d2ffc186163.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00112{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_c00112{vertical-align:0.000000px;}
.ls1_c00112{letter-spacing:0.000000px;}
.ls0_c00112{letter-spacing:12.600000px;}
.sc__c00112{text-shadow:none;}
.sc0_c00112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00112{-webkit-text-stroke:0px transparent;}
.sc0_c00112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00112{word-spacing:-15.000000px;}
.ws1_c00112{word-spacing:-12.750000px;}
.ws2_c00112{word-spacing:0.000000px;}
._11_c00112{margin-left:-12.000000px;}
._5_c00112{margin-left:-9.900000px;}
._4_c00112{margin-left:-8.879310px;}
._b_c00112{margin-left:-7.091163px;}
._17_c00112{margin-left:-5.570187px;}
._10_c00112{margin-left:-4.476297px;}
._6_c00112{margin-left:-2.842962px;}
._0_c00112{margin-left:-1.760979px;}
._2_c00112{width:1.115931px;}
._1_c00112{width:2.699991px;}
._f_c00112{width:3.898428px;}
._3_c00112{width:5.423916px;}
._e_c00112{width:6.612897px;}
._9_c00112{width:8.648121px;}
._7_c00112{width:10.296285px;}
._12_c00112{width:11.351853px;}
._8_c00112{width:12.528174px;}
._13_c00112{width:13.783914px;}
._16_c00112{width:16.164705px;}
._d_c00112{width:17.616312px;}
._a_c00112{width:18.816276px;}
._c_c00112{width:20.098284px;}
._19_c00112{width:21.593010px;}
._15_c00112{width:22.851597px;}
._14_c00112{width:25.584078px;}
._18_c00112{width:28.114992px;}
.fc2_c00112{color:transparent;}
.fc1_c00112{color:rgb(0,0,0);}
.fc0_c00112{color:rgb(35,31,32);}
.fs0_c00112{font-size:51.000000px;}
.fs1_c00112{font-size:60.000000px;}
.y0_c00112{bottom:0.000000px;}
.y28_c00112{bottom:64.800022px;}
.y27_c00112{bottom:110.550022px;}
.y26_c00112{bottom:125.325022px;}
.y25_c00112{bottom:140.775022px;}
.y24_c00112{bottom:156.225022px;}
.y23_c00112{bottom:171.750022px;}
.y22_c00112{bottom:186.525022px;}
.y21_c00112{bottom:201.975022px;}
.y20_c00112{bottom:217.125022px;}
.y1f_c00112{bottom:232.950022px;}
.y1e_c00112{bottom:247.725022px;}
.y1d_c00112{bottom:263.175022px;}
.y1c_c00112{bottom:278.325022px;}
.y1b_c00112{bottom:293.775022px;}
.y1a_c00112{bottom:309.225022px;}
.y19_c00112{bottom:324.375022px;}
.y18_c00112{bottom:339.525022px;}
.y17_c00112{bottom:379.425022px;}
.y16_c00112{bottom:399.225022px;}
.y15_c00112{bottom:418.350022px;}
.y14_c00112{bottom:438.150022px;}
.y13_c00112{bottom:457.575022px;}
.y12_c00112{bottom:477.000022px;}
.y11_c00112{bottom:496.425022px;}
.y10_c00112{bottom:536.775022px;}
.yf_c00112{bottom:592.200022px;}
.ye_c00112{bottom:612.000022px;}
.yd_c00112{bottom:631.425022px;}
.yc_c00112{bottom:650.925022px;}
.yb_c00112{bottom:670.350022px;}
.ya_c00112{bottom:689.400022px;}
.y9_c00112{bottom:709.200022px;}
.y8_c00112{bottom:728.325022px;}
.y7_c00112{bottom:747.750022px;}
.y6_c00112{bottom:767.025022px;}
.y5_c00112{bottom:786.525022px;}
.y4_c00112{bottom:806.025022px;}
.y3_c00112{bottom:825.525022px;}
.y2_c00112{bottom:844.950022px;}
.y1_c00112{bottom:886.725022px;}
.h2_c00112{height:50.028809px;}
.h4_c00112{height:50.053711px;}
.h3_c00112{height:58.886719px;}
.h1_c00112{height:957.750000px;}
.h0_c00112{height:957.975000px;}
.w1_c00112{width:643.500000px;}
.w0_c00112{width:643.650000px;}
.x0_c00112{left:0.000000px;}
.x1_c00112{left:90.750000px;}
.x2_c00112{left:91.800000px;}
.x3_c00112{left:96.150000px;}
.x4_c00112{left:124.575000px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls1_c00112{letter-spacing:0.000000pt;}
.ls0_c00112{letter-spacing:11.200000pt;}
.ws0_c00112{word-spacing:-13.333333pt;}
.ws1_c00112{word-spacing:-11.333333pt;}
.ws2_c00112{word-spacing:0.000000pt;}
._11_c00112{margin-left:-10.666667pt;}
._5_c00112{margin-left:-8.800000pt;}
._4_c00112{margin-left:-7.892720pt;}
._b_c00112{margin-left:-6.303256pt;}
._17_c00112{margin-left:-4.951277pt;}
._10_c00112{margin-left:-3.978931pt;}
._6_c00112{margin-left:-2.527077pt;}
._0_c00112{margin-left:-1.565315pt;}
._2_c00112{width:0.991939pt;}
._1_c00112{width:2.399992pt;}
._f_c00112{width:3.465269pt;}
._3_c00112{width:4.821259pt;}
._e_c00112{width:5.878131pt;}
._9_c00112{width:7.687219pt;}
._7_c00112{width:9.152253pt;}
._12_c00112{width:10.090536pt;}
._8_c00112{width:11.136155pt;}
._13_c00112{width:12.252368pt;}
._16_c00112{width:14.368627pt;}
._d_c00112{width:15.658944pt;}
._a_c00112{width:16.725579pt;}
._c_c00112{width:17.865141pt;}
._19_c00112{width:19.193787pt;}
._15_c00112{width:20.312531pt;}
._14_c00112{width:22.741403pt;}
._18_c00112{width:24.991104pt;}
.fs0_c00112{font-size:45.333333pt;}
.fs1_c00112{font-size:53.333333pt;}
.y0_c00112{bottom:0.000000pt;}
.y28_c00112{bottom:57.600020pt;}
.y27_c00112{bottom:98.266686pt;}
.y26_c00112{bottom:111.400020pt;}
.y25_c00112{bottom:125.133353pt;}
.y24_c00112{bottom:138.866686pt;}
.y23_c00112{bottom:152.666686pt;}
.y22_c00112{bottom:165.800020pt;}
.y21_c00112{bottom:179.533353pt;}
.y20_c00112{bottom:193.000020pt;}
.y1f_c00112{bottom:207.066686pt;}
.y1e_c00112{bottom:220.200020pt;}
.y1d_c00112{bottom:233.933353pt;}
.y1c_c00112{bottom:247.400020pt;}
.y1b_c00112{bottom:261.133353pt;}
.y1a_c00112{bottom:274.866686pt;}
.y19_c00112{bottom:288.333353pt;}
.y18_c00112{bottom:301.800020pt;}
.y17_c00112{bottom:337.266686pt;}
.y16_c00112{bottom:354.866686pt;}
.y15_c00112{bottom:371.866686pt;}
.y14_c00112{bottom:389.466686pt;}
.y13_c00112{bottom:406.733353pt;}
.y12_c00112{bottom:424.000020pt;}
.y11_c00112{bottom:441.266686pt;}
.y10_c00112{bottom:477.133353pt;}
.yf_c00112{bottom:526.400020pt;}
.ye_c00112{bottom:544.000020pt;}
.yd_c00112{bottom:561.266686pt;}
.yc_c00112{bottom:578.600020pt;}
.yb_c00112{bottom:595.866686pt;}
.ya_c00112{bottom:612.800020pt;}
.y9_c00112{bottom:630.400020pt;}
.y8_c00112{bottom:647.400020pt;}
.y7_c00112{bottom:664.666686pt;}
.y6_c00112{bottom:681.800020pt;}
.y5_c00112{bottom:699.133353pt;}
.y4_c00112{bottom:716.466686pt;}
.y3_c00112{bottom:733.800020pt;}
.y2_c00112{bottom:751.066686pt;}
.y1_c00112{bottom:788.200020pt;}
.h2_c00112{height:44.470052pt;}
.h4_c00112{height:44.492188pt;}
.h3_c00112{height:52.343750pt;}
.h1_c00112{height:851.333333pt;}
.h0_c00112{height:851.533333pt;}
.w1_c00112{width:572.000000pt;}
.w0_c00112{width:572.133333pt;}
.x0_c00112{left:0.000000pt;}
.x1_c00112{left:80.666667pt;}
.x2_c00112{left:81.600000pt;}
.x3_c00112{left:85.466667pt;}
.x4_c00112{left:110.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_27fd938375ab74499d334dc4.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00113;src:url('chunks/assets/font_d05a2c7b78f06d6660ce468e.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00113{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00113{word-spacing:-15.000000px;}
.ws0_c00113{word-spacing:-12.750000px;}
.ws2_c00113{word-spacing:0.000000px;}
._13_c00113{margin-left:-13.140000px;}
._12_c00113{margin-left:-11.460000px;}
._d_c00113{margin-left:-10.080000px;}
._7_c00113{margin-left:-8.580000px;}
._10_c00113{margin-left:-7.080000px;}
._17_c00113{margin-left:-5.055039px;}
._11_c00113{margin-left:-3.960000px;}
._e_c00113{margin-left:-2.520000px;}
._0_c00113{margin-left:-1.020000px;}
._1_c00113{width:1.020000px;}
._2_c00113{width:2.220000px;}
._3_c00113{width:3.660000px;}
._8_c00113{width:5.100000px;}
._a_c00113{width:6.720000px;}
._b_c00113{width:8.580000px;}
._9_c00113{width:10.380000px;}
._c_c00113{width:11.640000px;}
._4_c00113{width:13.200000px;}
._19_c00113{width:15.347982px;}
._f_c00113{width:16.500000px;}
._5_c00113{width:17.520000px;}
._6_c00113{width:19.080000px;}
._18_c00113{width:23.790021px;}
._15_c00113{width:28.404018px;}
._14_c00113{width:30.765009px;}
._16_c00113{width:33.021021px;}
.fc1_c00113{color:transparent;}
.fc0_c00113{color:rgb(35,31,32);}
.fs1_c00113{font-size:51.000000px;}
.fs0_c00113{font-size:60.000000px;}
.y0_c00113{bottom:0.000000px;}
.y2a_c00113{bottom:64.425022px;}
.y29_c00113{bottom:110.550022px;}
.y28_c00113{bottom:125.325022px;}
.y27_c00113{bottom:140.775022px;}
.y26_c00113{bottom:155.925022px;}
.y25_c00113{bottom:171.375022px;}
.y24_c00113{bottom:186.525022px;}
.y23_c00113{bottom:201.975022px;}
.y22_c00113{bottom:217.125022px;}
.y21_c00113{bottom:232.950022px;}
.y20_c00113{bottom:248.025022px;}
.y1f_c00113{bottom:263.550022px;}
.y1e_c00113{bottom:278.325022px;}
.y1d_c00113{bottom:293.775022px;}
.y1c_c00113{bottom:308.925022px;}
.y1a_c00113{bottom:359.325022px;}
.y19_c00113{bottom:378.750022px;}
.y18_c00113{bottom:398.175022px;}
.y17_c00113{bottom:417.600022px;}
.y16_c00113{bottom:436.725022px;}
.y15_c00113{bottom:456.150022px;}
.y14_c00113{bottom:475.950022px;}
.y13_c00113{bottom:495.375022px;}
.y12_c00113{bottom:514.800022px;}
.y11_c00113{bottom:534.225022px;}
.y10_c00113{bottom:553.350022px;}
.yf_c00113{bottom:572.775022px;}
.ye_c00113{bottom:592.650022px;}
.yd_c00113{bottom:612.075022px;}
.yc_c00113{bottom:631.500022px;}
.yb_c00113{bottom:650.925022px;}
.ya_c00113{bottom:670.350022px;}
.y9_c00113{bottom:689.400022px;}
.y8_c00113{bottom:709.200022px;}
.y7_c00113{bottom:728.625022px;}
.y6_c00113{bottom:748.125022px;}
.y5_c00113{bottom:767.175022px;}
.y4_c00113{bottom:786.600022px;}
.y3_c00113{bottom:806.025022px;}
.y2_c00113{bottom:825.150022px;}
.y1_c00113{bottom:844.575022px;}
.y1b_c00113{bottom:886.725022px;}
.h3_c00113{height:50.028809px;}
.h4_c00113{height:50.053711px;}
.h2_c00113{height:58.886719px;}
.h1_c00113{height:957.750000px;}
.h0_c00113{height:957.975000px;}
.w0_c00113{width:641.850030px;}
.w1_c00113{width:642.000000px;}
.x0_c00113{left:0.000000px;}
.x1_c00113{left:81.375000px;}
.x4_c00113{left:86.025000px;}
.x2_c00113{left:96.150000px;}
.x5_c00113{left:114.450000px;}
.x3_c00113{left:162.750000px;}
.x6_c00113{left:532.050000px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls0_c00113{letter-spacing:0.000000pt;}
.ws1_c00113{word-spacing:-13.333333pt;}
.ws0_c00113{word-spacing:-11.333333pt;}
.ws2_c00113{word-spacing:0.000000pt;}
._13_c00113{margin-left:-11.680000pt;}
._12_c00113{margin-left:-10.186667pt;}
._d_c00113{margin-left:-8.960000pt;}
._7_c00113{margin-left:-7.626667pt;}
._10_c00113{margin-left:-6.293333pt;}
._17_c00113{margin-left:-4.493368pt;}
._11_c00113{margin-left:-3.520000pt;}
._e_c00113{margin-left:-2.240000pt;}
._0_c00113{margin-left:-0.906667pt;}
._1_c00113{width:0.906667pt;}
._2_c00113{width:1.973333pt;}
._3_c00113{width:3.253333pt;}
._8_c00113{width:4.533333pt;}
._a_c00113{width:5.973333pt;}
._b_c00113{width:7.626667pt;}
._9_c00113{width:9.226667pt;}
._c_c00113{width:10.346667pt;}
._4_c00113{width:11.733333pt;}
._19_c00113{width:13.642651pt;}
._f_c00113{width:14.666667pt;}
._5_c00113{width:15.573333pt;}
._6_c00113{width:16.960000pt;}
._18_c00113{width:21.146685pt;}
._15_c00113{width:25.248016pt;}
._14_c00113{width:27.346675pt;}
._16_c00113{width:29.352019pt;}
.fs1_c00113{font-size:45.333333pt;}
.fs0_c00113{font-size:53.333333pt;}
.y0_c00113{bottom:0.000000pt;}
.y2a_c00113{bottom:57.266686pt;}
.y29_c00113{bottom:98.266686pt;}
.y28_c00113{bottom:111.400020pt;}
.y27_c00113{bottom:125.133353pt;}
.y26_c00113{bottom:138.600020pt;}
.y25_c00113{bottom:152.333353pt;}
.y24_c00113{bottom:165.800020pt;}
.y23_c00113{bottom:179.533353pt;}
.y22_c00113{bottom:193.000020pt;}
.y21_c00113{bottom:207.066686pt;}
.y20_c00113{bottom:220.466686pt;}
.y1f_c00113{bottom:234.266686pt;}
.y1e_c00113{bottom:247.400020pt;}
.y1d_c00113{bottom:261.133353pt;}
.y1c_c00113{bottom:274.600020pt;}
.y1a_c00113{bottom:319.400020pt;}
.y19_c00113{bottom:336.666686pt;}
.y18_c00113{bottom:353.933353pt;}
.y17_c00113{bottom:371.200020pt;}
.y16_c00113{bottom:388.200020pt;}
.y15_c00113{bottom:405.466686pt;}
.y14_c00113{bottom:423.066686pt;}
.y13_c00113{bottom:440.333353pt;}
.y12_c00113{bottom:457.600020pt;}
.y11_c00113{bottom:474.866686pt;}
.y10_c00113{bottom:491.866686pt;}
.yf_c00113{bottom:509.133353pt;}
.ye_c00113{bottom:526.800020pt;}
.yd_c00113{bottom:544.066686pt;}
.yc_c00113{bottom:561.333353pt;}
.yb_c00113{bottom:578.600020pt;}
.ya_c00113{bottom:595.866686pt;}
.y9_c00113{bottom:612.800020pt;}
.y8_c00113{bottom:630.400020pt;}
.y7_c00113{bottom:647.666686pt;}
.y6_c00113{bottom:665.000020pt;}
.y5_c00113{bottom:681.933353pt;}
.y4_c00113{bottom:699.200020pt;}
.y3_c00113{bottom:716.466686pt;}
.y2_c00113{bottom:733.466686pt;}
.y1_c00113{bottom:750.733353pt;}
.y1b_c00113{bottom:788.200020pt;}
.h3_c00113{height:44.470052pt;}
.h4_c00113{height:44.492188pt;}
.h2_c00113{height:52.343750pt;}
.h1_c00113{height:851.333333pt;}
.h0_c00113{height:851.533333pt;}
.w0_c00113{width:570.533360pt;}
.w1_c00113{width:570.666667pt;}
.x0_c00113{left:0.000000pt;}
.x1_c00113{left:72.333333pt;}
.x4_c00113{left:76.466667pt;}
.x2_c00113{left:85.466667pt;}
.x5_c00113{left:101.733333pt;}
.x3_c00113{left:144.666667pt;}
.x6_c00113{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_611d2f20ea35f78ebec078bf.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00114;src:url('chunks/assets/font_bd0ca000a151c1654ffd31e8.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00114{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_c00114{vertical-align:0.000000px;}
.ls1_c00114{letter-spacing:0.000000px;}
.ls0_c00114{letter-spacing:13.800000px;}
.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:-15.000000px;}
.ws1_c00114{word-spacing:-12.750000px;}
.ws2_c00114{word-spacing:0.000000px;}
._f_c00114{margin-left:-10.818378px;}
._e_c00114{margin-left:-9.197163px;}
._d_c00114{margin-left:-7.415550px;}
._15_c00114{margin-left:-6.288864px;}
._14_c00114{margin-left:-4.295931px;}
._c_c00114{margin-left:-2.940000px;}
._0_c00114{margin-left:-1.760979px;}
._2_c00114{width:1.115931px;}
._1_c00114{width:2.699991px;}
._3_c00114{width:4.284423px;}
._5_c00114{width:5.340717px;}
._12_c00114{width:6.533964px;}
._4_c00114{width:7.560000px;}
._a_c00114{width:8.741958px;}
._9_c00114{width:9.948138px;}
._8_c00114{width:11.747793px;}
._b_c00114{width:12.804786px;}
._7_c00114{width:13.920372px;}
._17_c00114{width:15.331902px;}
._6_c00114{width:16.704069px;}
._13_c00114{width:18.025131px;}
._11_c00114{width:21.729843px;}
._10_c00114{width:23.760000px;}
._16_c00114{width:25.271928px;}
.fc2_c00114{color:transparent;}
.fc1_c00114{color:rgb(0,0,0);}
.fc0_c00114{color:rgb(35,31,32);}
.fs0_c00114{font-size:51.000000px;}
.fs1_c00114{font-size:60.000000px;}
.y0_c00114{bottom:0.000000px;}
.y28_c00114{bottom:64.800022px;}
.y27_c00114{bottom:110.175022px;}
.y26_c00114{bottom:125.325022px;}
.y25_c00114{bottom:140.775022px;}
.y24_c00114{bottom:156.225022px;}
.y23_c00114{bottom:171.375022px;}
.y22_c00114{bottom:186.825022px;}
.y21_c00114{bottom:202.350022px;}
.y20_c00114{bottom:217.125022px;}
.y1f_c00114{bottom:232.950022px;}
.y1e_c00114{bottom:248.025022px;}
.y1d_c00114{bottom:263.550022px;}
.y1c_c00114{bottom:278.325022px;}
.y1b_c00114{bottom:293.775022px;}
.y1a_c00114{bottom:308.925022px;}
.y19_c00114{bottom:324.375022px;}
.y18_c00114{bottom:364.725022px;}
.y17_c00114{bottom:383.775022px;}
.y16_c00114{bottom:403.200022px;}
.y15_c00114{bottom:422.625022px;}
.y14_c00114{bottom:441.750022px;}
.y13_c00114{bottom:461.550022px;}
.y12_c00114{bottom:480.975022px;}
.y11_c00114{bottom:500.400022px;}
.y10_c00114{bottom:519.525022px;}
.yf_c00114{bottom:538.950022px;}
.ye_c00114{bottom:558.750022px;}
.yd_c00114{bottom:578.175022px;}
.yc_c00114{bottom:617.025022px;}
.yb_c00114{bottom:670.350022px;}
.ya_c00114{bottom:689.400022px;}
.y9_c00114{bottom:709.200022px;}
.y8_c00114{bottom:728.325022px;}
.y7_c00114{bottom:747.750022px;}
.y6_c00114{bottom:767.550022px;}
.y5_c00114{bottom:786.525022px;}
.y4_c00114{bottom:806.025022px;}
.y3_c00114{bottom:825.525022px;}
.y2_c00114{bottom:844.950022px;}
.y1_c00114{bottom:886.725022px;}
.h2_c00114{height:50.028809px;}
.h4_c00114{height:50.053711px;}
.h3_c00114{height:58.886719px;}
.h1_c00114{height:957.750000px;}
.h0_c00114{height:957.975000px;}
.w1_c00114{width:643.500000px;}
.w0_c00114{width:643.650000px;}
.x0_c00114{left:0.000000px;}
.x1_c00114{left:90.750000px;}
.x2_c00114{left:91.800000px;}
.x4_c00114{left:96.150000px;}
.x3_c00114{left:107.250000px;}
.x5_c00114{left:123.825000px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls1_c00114{letter-spacing:0.000000pt;}
.ls0_c00114{letter-spacing:12.266667pt;}
.ws0_c00114{word-spacing:-13.333333pt;}
.ws1_c00114{word-spacing:-11.333333pt;}
.ws2_c00114{word-spacing:0.000000pt;}
._f_c00114{margin-left:-9.616336pt;}
._e_c00114{margin-left:-8.175256pt;}
._d_c00114{margin-left:-6.591600pt;}
._15_c00114{margin-left:-5.590101pt;}
._14_c00114{margin-left:-3.818605pt;}
._c_c00114{margin-left:-2.613333pt;}
._0_c00114{margin-left:-1.565315pt;}
._2_c00114{width:0.991939pt;}
._1_c00114{width:2.399992pt;}
._3_c00114{width:3.808376pt;}
._5_c00114{width:4.747304pt;}
._12_c00114{width:5.807968pt;}
._4_c00114{width:6.720000pt;}
._a_c00114{width:7.770629pt;}
._9_c00114{width:8.842789pt;}
._8_c00114{width:10.442483pt;}
._b_c00114{width:11.382032pt;}
._7_c00114{width:12.373664pt;}
._17_c00114{width:13.628357pt;}
._6_c00114{width:14.848061pt;}
._13_c00114{width:16.022339pt;}
._11_c00114{width:19.315416pt;}
._10_c00114{width:21.120000pt;}
._16_c00114{width:22.463936pt;}
.fs0_c00114{font-size:45.333333pt;}
.fs1_c00114{font-size:53.333333pt;}
.y0_c00114{bottom:0.000000pt;}
.y28_c00114{bottom:57.600020pt;}
.y27_c00114{bottom:97.933353pt;}
.y26_c00114{bottom:111.400020pt;}
.y25_c00114{bottom:125.133353pt;}
.y24_c00114{bottom:138.866686pt;}
.y23_c00114{bottom:152.333353pt;}
.y22_c00114{bottom:166.066686pt;}
.y21_c00114{bottom:179.866686pt;}
.y20_c00114{bottom:193.000020pt;}
.y1f_c00114{bottom:207.066686pt;}
.y1e_c00114{bottom:220.466686pt;}
.y1d_c00114{bottom:234.266686pt;}
.y1c_c00114{bottom:247.400020pt;}
.y1b_c00114{bottom:261.133353pt;}
.y1a_c00114{bottom:274.600020pt;}
.y19_c00114{bottom:288.333353pt;}
.y18_c00114{bottom:324.200020pt;}
.y17_c00114{bottom:341.133353pt;}
.y16_c00114{bottom:358.400020pt;}
.y15_c00114{bottom:375.666686pt;}
.y14_c00114{bottom:392.666686pt;}
.y13_c00114{bottom:410.266686pt;}
.y12_c00114{bottom:427.533353pt;}
.y11_c00114{bottom:444.800020pt;}
.y10_c00114{bottom:461.800020pt;}
.yf_c00114{bottom:479.066686pt;}
.ye_c00114{bottom:496.666686pt;}
.yd_c00114{bottom:513.933353pt;}
.yc_c00114{bottom:548.466686pt;}
.yb_c00114{bottom:595.866686pt;}
.ya_c00114{bottom:612.800020pt;}
.y9_c00114{bottom:630.400020pt;}
.y8_c00114{bottom:647.400020pt;}
.y7_c00114{bottom:664.666686pt;}
.y6_c00114{bottom:682.266686pt;}
.y5_c00114{bottom:699.133353pt;}
.y4_c00114{bottom:716.466686pt;}
.y3_c00114{bottom:733.800020pt;}
.y2_c00114{bottom:751.066686pt;}
.y1_c00114{bottom:788.200020pt;}
.h2_c00114{height:44.470052pt;}
.h4_c00114{height:44.492188pt;}
.h3_c00114{height:52.343750pt;}
.h1_c00114{height:851.333333pt;}
.h0_c00114{height:851.533333pt;}
.w1_c00114{width:572.000000pt;}
.w0_c00114{width:572.133333pt;}
.x0_c00114{left:0.000000pt;}
.x1_c00114{left:80.666667pt;}
.x2_c00114{left:81.600000pt;}
.x4_c00114{left:85.466667pt;}
.x3_c00114{left:95.333333pt;}
.x5_c00114{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a7cbd96af4e3757625ef02ff.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00115;src:url('chunks/assets/font_4381e81350d88793d407a98d.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00115{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_c00115{vertical-align:0.000000px;}
.ls0_c00115{letter-spacing:0.000000px;}
.sc__c00115{text-shadow:none;}
.sc0_c00115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00115{-webkit-text-stroke:0px transparent;}
.sc0_c00115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00115{word-spacing:-15.000000px;}
.ws0_c00115{word-spacing:-12.750000px;}
.ws2_c00115{word-spacing:0.000000px;}
._14_c00115{margin-left:-12.420000px;}
._15_c00115{margin-left:-10.980000px;}
._f_c00115{margin-left:-9.060000px;}
._19_c00115{margin-left:-7.061985px;}
._b_c00115{margin-left:-5.160000px;}
._a_c00115{margin-left:-3.840000px;}
._4_c00115{margin-left:-2.220000px;}
._5_c00115{margin-left:-1.080000px;}
._0_c00115{width:1.860000px;}
._1_c00115{width:3.780000px;}
._3_c00115{width:5.280000px;}
._6_c00115{width:6.360000px;}
._9_c00115{width:7.680000px;}
._2_c00115{width:9.540000px;}
._7_c00115{width:11.040000px;}
._d_c00115{width:12.180000px;}
._8_c00115{width:13.680000px;}
._e_c00115{width:16.020000px;}
._c_c00115{width:18.000000px;}
._11_c00115{width:19.080000px;}
._12_c00115{width:20.220000px;}
._10_c00115{width:21.360000px;}
._13_c00115{width:23.280000px;}
._16_c00115{width:25.110051px;}
._18_c00115{width:26.189970px;}
._17_c00115{width:30.029970px;}
.fc1_c00115{color:transparent;}
.fc0_c00115{color:rgb(35,31,32);}
.fs1_c00115{font-size:51.000000px;}
.fs0_c00115{font-size:60.000000px;}
.y0_c00115{bottom:0.000000px;}
.y2a_c00115{bottom:64.425022px;}
.y29_c00115{bottom:110.550022px;}
.y28_c00115{bottom:125.325022px;}
.y27_c00115{bottom:140.775022px;}
.y26_c00115{bottom:156.225022px;}
.y25_c00115{bottom:171.375022px;}
.y24_c00115{bottom:186.525022px;}
.y23_c00115{bottom:201.975022px;}
.y22_c00115{bottom:217.125022px;}
.y21_c00115{bottom:232.575022px;}
.y20_c00115{bottom:247.725022px;}
.y1f_c00115{bottom:263.550022px;}
.y1e_c00115{bottom:278.325022px;}
.y1d_c00115{bottom:293.775022px;}
.y1c_c00115{bottom:308.925022px;}
.y1b_c00115{bottom:324.375022px;}
.y1a_c00115{bottom:339.825022px;}
.y18_c00115{bottom:397.800022px;}
.y17_c00115{bottom:417.225022px;}
.y16_c00115{bottom:436.725022px;}
.y15_c00115{bottom:456.525022px;}
.y14_c00115{bottom:475.950022px;}
.y13_c00115{bottom:495.375022px;}
.y12_c00115{bottom:514.425022px;}
.y11_c00115{bottom:534.225022px;}
.y10_c00115{bottom:553.725022px;}
.yf_c00115{bottom:572.775022px;}
.ye_c00115{bottom:592.575022px;}
.yd_c00115{bottom:612.075022px;}
.yc_c00115{bottom:631.500022px;}
.yb_c00115{bottom:650.925022px;}
.ya_c00115{bottom:670.350022px;}
.y9_c00115{bottom:689.775022px;}
.y8_c00115{bottom:709.200022px;}
.y7_c00115{bottom:728.325022px;}
.y6_c00115{bottom:748.125022px;}
.y5_c00115{bottom:767.550022px;}
.y4_c00115{bottom:786.600022px;}
.y3_c00115{bottom:806.025022px;}
.y2_c00115{bottom:825.525022px;}
.y1_c00115{bottom:844.575022px;}
.y19_c00115{bottom:886.725022px;}
.h3_c00115{height:50.028809px;}
.h4_c00115{height:50.053711px;}
.h2_c00115{height:58.886719px;}
.h1_c00115{height:957.750000px;}
.h0_c00115{height:957.975000px;}
.w0_c00115{width:641.850030px;}
.w1_c00115{width:642.000000px;}
.x0_c00115{left:0.000000px;}
.x1_c00115{left:81.000000px;}
.x3_c00115{left:86.025000px;}
.x4_c00115{left:114.150000px;}
.x2_c00115{left:162.750000px;}
.x5_c00115{left:532.050000px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls0_c00115{letter-spacing:0.000000pt;}
.ws1_c00115{word-spacing:-13.333333pt;}
.ws0_c00115{word-spacing:-11.333333pt;}
.ws2_c00115{word-spacing:0.000000pt;}
._14_c00115{margin-left:-11.040000pt;}
._15_c00115{margin-left:-9.760000pt;}
._f_c00115{margin-left:-8.053333pt;}
._19_c00115{margin-left:-6.277320pt;}
._b_c00115{margin-left:-4.586667pt;}
._a_c00115{margin-left:-3.413333pt;}
._4_c00115{margin-left:-1.973333pt;}
._5_c00115{margin-left:-0.960000pt;}
._0_c00115{width:1.653333pt;}
._1_c00115{width:3.360000pt;}
._3_c00115{width:4.693333pt;}
._6_c00115{width:5.653333pt;}
._9_c00115{width:6.826667pt;}
._2_c00115{width:8.480000pt;}
._7_c00115{width:9.813333pt;}
._d_c00115{width:10.826667pt;}
._8_c00115{width:12.160000pt;}
._e_c00115{width:14.240000pt;}
._c_c00115{width:16.000000pt;}
._11_c00115{width:16.960000pt;}
._12_c00115{width:17.973333pt;}
._10_c00115{width:18.986667pt;}
._13_c00115{width:20.693333pt;}
._16_c00115{width:22.320045pt;}
._18_c00115{width:23.279973pt;}
._17_c00115{width:26.693307pt;}
.fs1_c00115{font-size:45.333333pt;}
.fs0_c00115{font-size:53.333333pt;}
.y0_c00115{bottom:0.000000pt;}
.y2a_c00115{bottom:57.266686pt;}
.y29_c00115{bottom:98.266686pt;}
.y28_c00115{bottom:111.400020pt;}
.y27_c00115{bottom:125.133353pt;}
.y26_c00115{bottom:138.866686pt;}
.y25_c00115{bottom:152.333353pt;}
.y24_c00115{bottom:165.800020pt;}
.y23_c00115{bottom:179.533353pt;}
.y22_c00115{bottom:193.000020pt;}
.y21_c00115{bottom:206.733353pt;}
.y20_c00115{bottom:220.200020pt;}
.y1f_c00115{bottom:234.266686pt;}
.y1e_c00115{bottom:247.400020pt;}
.y1d_c00115{bottom:261.133353pt;}
.y1c_c00115{bottom:274.600020pt;}
.y1b_c00115{bottom:288.333353pt;}
.y1a_c00115{bottom:302.066686pt;}
.y18_c00115{bottom:353.600020pt;}
.y17_c00115{bottom:370.866686pt;}
.y16_c00115{bottom:388.200020pt;}
.y15_c00115{bottom:405.800020pt;}
.y14_c00115{bottom:423.066686pt;}
.y13_c00115{bottom:440.333353pt;}
.y12_c00115{bottom:457.266686pt;}
.y11_c00115{bottom:474.866686pt;}
.y10_c00115{bottom:492.200020pt;}
.yf_c00115{bottom:509.133353pt;}
.ye_c00115{bottom:526.733353pt;}
.yd_c00115{bottom:544.066686pt;}
.yc_c00115{bottom:561.333353pt;}
.yb_c00115{bottom:578.600020pt;}
.ya_c00115{bottom:595.866686pt;}
.y9_c00115{bottom:613.133353pt;}
.y8_c00115{bottom:630.400020pt;}
.y7_c00115{bottom:647.400020pt;}
.y6_c00115{bottom:665.000020pt;}
.y5_c00115{bottom:682.266686pt;}
.y4_c00115{bottom:699.200020pt;}
.y3_c00115{bottom:716.466686pt;}
.y2_c00115{bottom:733.800020pt;}
.y1_c00115{bottom:750.733353pt;}
.y19_c00115{bottom:788.200020pt;}
.h3_c00115{height:44.470052pt;}
.h4_c00115{height:44.492188pt;}
.h2_c00115{height:52.343750pt;}
.h1_c00115{height:851.333333pt;}
.h0_c00115{height:851.533333pt;}
.w0_c00115{width:570.533360pt;}
.w1_c00115{width:570.666667pt;}
.x0_c00115{left:0.000000pt;}
.x1_c00115{left:72.000000pt;}
.x3_c00115{left:76.466667pt;}
.x4_c00115{left:101.466667pt;}
.x2_c00115{left:144.666667pt;}
.x5_c00115{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_03d851e875743e37b1b57cdd.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00116;src:url('chunks/assets/font_0550a2ec56c5bde1bc1c187d.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00116{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_c00116{vertical-align:0.000000px;}
.ls1_c00116{letter-spacing:0.000000px;}
.ls0_c00116{letter-spacing:12.600000px;}
.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:-15.000000px;}
.ws1_c00116{word-spacing:-12.750000px;}
.ws2_c00116{word-spacing:0.000000px;}
._8_c00116{margin-left:-10.260000px;}
._12_c00116{margin-left:-8.640000px;}
._7_c00116{margin-left:-7.260000px;}
._15_c00116{margin-left:-6.003024px;}
._10_c00116{margin-left:-4.020000px;}
._13_c00116{margin-left:-2.640000px;}
._6_c00116{margin-left:-1.440000px;}
._1_c00116{width:1.020000px;}
._0_c00116{width:2.280000px;}
._5_c00116{width:4.020000px;}
._2_c00116{width:5.220000px;}
._3_c00116{width:6.780000px;}
._4_c00116{width:8.580000px;}
._9_c00116{width:10.440000px;}
._a_c00116{width:11.700000px;}
._e_c00116{width:13.140000px;}
._17_c00116{width:14.724000px;}
._f_c00116{width:17.220000px;}
._b_c00116{width:19.260000px;}
._11_c00116{width:20.580000px;}
._d_c00116{width:22.320000px;}
._c_c00116{width:24.480000px;}
._16_c00116{width:26.069970px;}
._14_c00116{width:27.270021px;}
.fc2_c00116{color:transparent;}
.fc1_c00116{color:rgb(0,0,0);}
.fc0_c00116{color:rgb(35,31,32);}
.fs1_c00116{font-size:51.000000px;}
.fs0_c00116{font-size:60.000000px;}
.y0_c00116{bottom:0.000000px;}
.y28_c00116{bottom:64.425022px;}
.y27_c00116{bottom:110.550022px;}
.y26_c00116{bottom:125.325022px;}
.y25_c00116{bottom:140.775022px;}
.y24_c00116{bottom:156.225022px;}
.y23_c00116{bottom:171.375022px;}
.y22_c00116{bottom:186.525022px;}
.y21_c00116{bottom:201.975022px;}
.y20_c00116{bottom:217.125022px;}
.y1f_c00116{bottom:232.575022px;}
.y1e_c00116{bottom:247.725022px;}
.y1d_c00116{bottom:263.175022px;}
.y1c_c00116{bottom:278.325022px;}
.y1b_c00116{bottom:293.775022px;}
.y1a_c00116{bottom:309.225022px;}
.y19_c00116{bottom:324.375022px;}
.y18_c00116{bottom:364.350022px;}
.y17_c00116{bottom:384.150022px;}
.y16_c00116{bottom:403.575022px;}
.y15_c00116{bottom:423.000022px;}
.y14_c00116{bottom:441.750022px;}
.y13_c00116{bottom:461.550022px;}
.y12_c00116{bottom:500.400022px;}
.y10_c00116{bottom:553.725022px;}
.yf_c00116{bottom:572.775022px;}
.ye_c00116{bottom:592.200022px;}
.yd_c00116{bottom:611.625022px;}
.yc_c00116{bottom:631.500022px;}
.yb_c00116{bottom:650.925022px;}
.ya_c00116{bottom:670.350022px;}
.y9_c00116{bottom:689.400022px;}
.y8_c00116{bottom:709.200022px;}
.y7_c00116{bottom:728.625022px;}
.y6_c00116{bottom:747.750022px;}
.y5_c00116{bottom:767.175022px;}
.y4_c00116{bottom:786.600022px;}
.y3_c00116{bottom:806.025022px;}
.y2_c00116{bottom:825.150022px;}
.y1_c00116{bottom:844.950022px;}
.y11_c00116{bottom:886.725022px;}
.h3_c00116{height:50.028809px;}
.h4_c00116{height:50.053711px;}
.h2_c00116{height:58.886719px;}
.h1_c00116{height:957.750000px;}
.h0_c00116{height:957.975000px;}
.w1_c00116{width:643.500000px;}
.w0_c00116{width:643.650000px;}
.x0_c00116{left:0.000000px;}
.x1_c00116{left:90.750000px;}
.x3_c00116{left:91.800000px;}
.x4_c00116{left:96.450000px;}
.x2_c00116{left:107.250000px;}
.x5_c00116{left:123.825000px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls1_c00116{letter-spacing:0.000000pt;}
.ls0_c00116{letter-spacing:11.200000pt;}
.ws0_c00116{word-spacing:-13.333333pt;}
.ws1_c00116{word-spacing:-11.333333pt;}
.ws2_c00116{word-spacing:0.000000pt;}
._8_c00116{margin-left:-9.120000pt;}
._12_c00116{margin-left:-7.680000pt;}
._7_c00116{margin-left:-6.453333pt;}
._15_c00116{margin-left:-5.336021pt;}
._10_c00116{margin-left:-3.573333pt;}
._13_c00116{margin-left:-2.346667pt;}
._6_c00116{margin-left:-1.280000pt;}
._1_c00116{width:0.906667pt;}
._0_c00116{width:2.026667pt;}
._5_c00116{width:3.573333pt;}
._2_c00116{width:4.640000pt;}
._3_c00116{width:6.026667pt;}
._4_c00116{width:7.626667pt;}
._9_c00116{width:9.280000pt;}
._a_c00116{width:10.400000pt;}
._e_c00116{width:11.680000pt;}
._17_c00116{width:13.088000pt;}
._f_c00116{width:15.306667pt;}
._b_c00116{width:17.120000pt;}
._11_c00116{width:18.293333pt;}
._d_c00116{width:19.840000pt;}
._c_c00116{width:21.760000pt;}
._16_c00116{width:23.173307pt;}
._14_c00116{width:24.240019pt;}
.fs1_c00116{font-size:45.333333pt;}
.fs0_c00116{font-size:53.333333pt;}
.y0_c00116{bottom:0.000000pt;}
.y28_c00116{bottom:57.266686pt;}
.y27_c00116{bottom:98.266686pt;}
.y26_c00116{bottom:111.400020pt;}
.y25_c00116{bottom:125.133353pt;}
.y24_c00116{bottom:138.866686pt;}
.y23_c00116{bottom:152.333353pt;}
.y22_c00116{bottom:165.800020pt;}
.y21_c00116{bottom:179.533353pt;}
.y20_c00116{bottom:193.000020pt;}
.y1f_c00116{bottom:206.733353pt;}
.y1e_c00116{bottom:220.200020pt;}
.y1d_c00116{bottom:233.933353pt;}
.y1c_c00116{bottom:247.400020pt;}
.y1b_c00116{bottom:261.133353pt;}
.y1a_c00116{bottom:274.866686pt;}
.y19_c00116{bottom:288.333353pt;}
.y18_c00116{bottom:323.866686pt;}
.y17_c00116{bottom:341.466686pt;}
.y16_c00116{bottom:358.733353pt;}
.y15_c00116{bottom:376.000020pt;}
.y14_c00116{bottom:392.666686pt;}
.y13_c00116{bottom:410.266686pt;}
.y12_c00116{bottom:444.800020pt;}
.y10_c00116{bottom:492.200020pt;}
.yf_c00116{bottom:509.133353pt;}
.ye_c00116{bottom:526.400020pt;}
.yd_c00116{bottom:543.666686pt;}
.yc_c00116{bottom:561.333353pt;}
.yb_c00116{bottom:578.600020pt;}
.ya_c00116{bottom:595.866686pt;}
.y9_c00116{bottom:612.800020pt;}
.y8_c00116{bottom:630.400020pt;}
.y7_c00116{bottom:647.666686pt;}
.y6_c00116{bottom:664.666686pt;}
.y5_c00116{bottom:681.933353pt;}
.y4_c00116{bottom:699.200020pt;}
.y3_c00116{bottom:716.466686pt;}
.y2_c00116{bottom:733.466686pt;}
.y1_c00116{bottom:751.066686pt;}
.y11_c00116{bottom:788.200020pt;}
.h3_c00116{height:44.470052pt;}
.h4_c00116{height:44.492188pt;}
.h2_c00116{height:52.343750pt;}
.h1_c00116{height:851.333333pt;}
.h0_c00116{height:851.533333pt;}
.w1_c00116{width:572.000000pt;}
.w0_c00116{width:572.133333pt;}
.x0_c00116{left:0.000000pt;}
.x1_c00116{left:80.666667pt;}
.x3_c00116{left:81.600000pt;}
.x4_c00116{left:85.733333pt;}
.x2_c00116{left:95.333333pt;}
.x5_c00116{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b998e49c3c0d3e30c404639a.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00117;src:url('chunks/assets/font_b7ebbc9120e7369cc0bb4fb9.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00117{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_c00117{vertical-align:0.000000px;}
.ls0_c00117{letter-spacing:0.000000px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00117{word-spacing:-15.000000px;}
.ws0_c00117{word-spacing:-12.750000px;}
.ws2_c00117{word-spacing:0.000000px;}
._14_c00117{margin-left:-15.600000px;}
._f_c00117{margin-left:-13.560000px;}
._16_c00117{margin-left:-11.400000px;}
._c_c00117{margin-left:-9.900000px;}
._d_c00117{margin-left:-8.700000px;}
._b_c00117{margin-left:-7.320000px;}
._e_c00117{margin-left:-5.640000px;}
._15_c00117{margin-left:-4.620000px;}
._2_c00117{margin-left:-2.940000px;}
._3_c00117{margin-left:-1.320000px;}
._0_c00117{width:1.620000px;}
._6_c00117{width:2.820000px;}
._10_c00117{width:3.840000px;}
._8_c00117{width:4.920000px;}
._9_c00117{width:6.660000px;}
._5_c00117{width:7.800000px;}
._7_c00117{width:9.000000px;}
._4_c00117{width:11.040000px;}
._1_c00117{width:12.300000px;}
._a_c00117{width:13.860000px;}
._19_c00117{width:15.233997px;}
._13_c00117{width:16.680000px;}
._11_c00117{width:17.760000px;}
._12_c00117{width:20.280000px;}
._17_c00117{width:24.210000px;}
._18_c00117{width:25.709970px;}
.fc1_c00117{color:transparent;}
.fc0_c00117{color:rgb(35,31,32);}
.fs1_c00117{font-size:51.000000px;}
.fs0_c00117{font-size:60.000000px;}
.y0_c00117{bottom:0.000000px;}
.y26_c00117{bottom:64.425022px;}
.y25_c00117{bottom:110.550022px;}
.y24_c00117{bottom:125.325022px;}
.y23_c00117{bottom:140.775022px;}
.y22_c00117{bottom:156.225022px;}
.y21_c00117{bottom:171.375022px;}
.y20_c00117{bottom:186.525022px;}
.y1f_c00117{bottom:201.975022px;}
.y1e_c00117{bottom:241.950022px;}
.y1d_c00117{bottom:261.375022px;}
.y1c_c00117{bottom:281.175022px;}
.y1b_c00117{bottom:300.225022px;}
.y1a_c00117{bottom:319.350022px;}
.y19_c00117{bottom:359.325022px;}
.y17_c00117{bottom:417.225022px;}
.y16_c00117{bottom:437.025022px;}
.y15_c00117{bottom:456.150022px;}
.y14_c00117{bottom:475.950022px;}
.y13_c00117{bottom:495.375022px;}
.y12_c00117{bottom:514.425022px;}
.y11_c00117{bottom:533.925022px;}
.y10_c00117{bottom:553.350022px;}
.yf_c00117{bottom:573.150022px;}
.ye_c00117{bottom:592.575022px;}
.yd_c00117{bottom:612.000022px;}
.yc_c00117{bottom:631.425022px;}
.yb_c00117{bottom:650.550022px;}
.ya_c00117{bottom:669.975022px;}
.y9_c00117{bottom:689.400022px;}
.y8_c00117{bottom:708.825022px;}
.y7_c00117{bottom:728.625022px;}
.y6_c00117{bottom:747.750022px;}
.y5_c00117{bottom:767.475022px;}
.y4_c00117{bottom:786.600022px;}
.y3_c00117{bottom:805.725022px;}
.y2_c00117{bottom:825.525022px;}
.y1_c00117{bottom:844.950022px;}
.y18_c00117{bottom:886.725022px;}
.h3_c00117{height:50.028809px;}
.h4_c00117{height:50.053711px;}
.h2_c00117{height:58.886719px;}
.h1_c00117{height:957.750000px;}
.h0_c00117{height:957.975000px;}
.w0_c00117{width:641.850030px;}
.w1_c00117{width:642.000000px;}
.x0_c00117{left:0.000000px;}
.x1_c00117{left:81.000000px;}
.x4_c00117{left:86.400000px;}
.x2_c00117{left:97.200000px;}
.x5_c00117{left:113.775000px;}
.x3_c00117{left:162.750000px;}
.x6_c00117{left:532.050000px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls0_c00117{letter-spacing:0.000000pt;}
.ws1_c00117{word-spacing:-13.333333pt;}
.ws0_c00117{word-spacing:-11.333333pt;}
.ws2_c00117{word-spacing:0.000000pt;}
._14_c00117{margin-left:-13.866667pt;}
._f_c00117{margin-left:-12.053333pt;}
._16_c00117{margin-left:-10.133333pt;}
._c_c00117{margin-left:-8.800000pt;}
._d_c00117{margin-left:-7.733333pt;}
._b_c00117{margin-left:-6.506667pt;}
._e_c00117{margin-left:-5.013333pt;}
._15_c00117{margin-left:-4.106667pt;}
._2_c00117{margin-left:-2.613333pt;}
._3_c00117{margin-left:-1.173333pt;}
._0_c00117{width:1.440000pt;}
._6_c00117{width:2.506667pt;}
._10_c00117{width:3.413333pt;}
._8_c00117{width:4.373333pt;}
._9_c00117{width:5.920000pt;}
._5_c00117{width:6.933333pt;}
._7_c00117{width:8.000000pt;}
._4_c00117{width:9.813333pt;}
._1_c00117{width:10.933333pt;}
._a_c00117{width:12.320000pt;}
._19_c00117{width:13.541331pt;}
._13_c00117{width:14.826667pt;}
._11_c00117{width:15.786667pt;}
._12_c00117{width:18.026667pt;}
._17_c00117{width:21.520000pt;}
._18_c00117{width:22.853307pt;}
.fs1_c00117{font-size:45.333333pt;}
.fs0_c00117{font-size:53.333333pt;}
.y0_c00117{bottom:0.000000pt;}
.y26_c00117{bottom:57.266686pt;}
.y25_c00117{bottom:98.266686pt;}
.y24_c00117{bottom:111.400020pt;}
.y23_c00117{bottom:125.133353pt;}
.y22_c00117{bottom:138.866686pt;}
.y21_c00117{bottom:152.333353pt;}
.y20_c00117{bottom:165.800020pt;}
.y1f_c00117{bottom:179.533353pt;}
.y1e_c00117{bottom:215.066686pt;}
.y1d_c00117{bottom:232.333353pt;}
.y1c_c00117{bottom:249.933353pt;}
.y1b_c00117{bottom:266.866686pt;}
.y1a_c00117{bottom:283.866686pt;}
.y19_c00117{bottom:319.400020pt;}
.y17_c00117{bottom:370.866686pt;}
.y16_c00117{bottom:388.466686pt;}
.y15_c00117{bottom:405.466686pt;}
.y14_c00117{bottom:423.066686pt;}
.y13_c00117{bottom:440.333353pt;}
.y12_c00117{bottom:457.266686pt;}
.y11_c00117{bottom:474.600020pt;}
.y10_c00117{bottom:491.866686pt;}
.yf_c00117{bottom:509.466686pt;}
.ye_c00117{bottom:526.733353pt;}
.yd_c00117{bottom:544.000020pt;}
.yc_c00117{bottom:561.266686pt;}
.yb_c00117{bottom:578.266686pt;}
.ya_c00117{bottom:595.533353pt;}
.y9_c00117{bottom:612.800020pt;}
.y8_c00117{bottom:630.066686pt;}
.y7_c00117{bottom:647.666686pt;}
.y6_c00117{bottom:664.666686pt;}
.y5_c00117{bottom:682.200020pt;}
.y4_c00117{bottom:699.200020pt;}
.y3_c00117{bottom:716.200020pt;}
.y2_c00117{bottom:733.800020pt;}
.y1_c00117{bottom:751.066686pt;}
.y18_c00117{bottom:788.200020pt;}
.h3_c00117{height:44.470052pt;}
.h4_c00117{height:44.492188pt;}
.h2_c00117{height:52.343750pt;}
.h1_c00117{height:851.333333pt;}
.h0_c00117{height:851.533333pt;}
.w0_c00117{width:570.533360pt;}
.w1_c00117{width:570.666667pt;}
.x0_c00117{left:0.000000pt;}
.x1_c00117{left:72.000000pt;}
.x4_c00117{left:76.800000pt;}
.x2_c00117{left:86.400000pt;}
.x5_c00117{left:101.133333pt;}
.x3_c00117{left:144.666667pt;}
.x6_c00117{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9f778a73e1b364fc7c557483.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00118;src:url('chunks/assets/font_1fa3c2bce87c536084b9c66e.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00118{letter-spacing:0.000000px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00118{word-spacing:-15.000000px;}
.ws0_c00118{word-spacing:-12.750000px;}
.ws2_c00118{word-spacing:0.000000px;}
._a_c00118{margin-left:-13.560000px;}
._9_c00118{margin-left:-11.640000px;}
._c_c00118{margin-left:-7.500000px;}
._17_c00118{margin-left:-6.258012px;}
._d_c00118{margin-left:-4.920000px;}
._e_c00118{margin-left:-3.240000px;}
._b_c00118{margin-left:-1.680000px;}
._2_c00118{width:1.200000px;}
._0_c00118{width:2.220000px;}
._6_c00118{width:3.600000px;}
._3_c00118{width:5.400000px;}
._5_c00118{width:6.600000px;}
._15_c00118{width:7.620000px;}
._1_c00118{width:8.820000px;}
._4_c00118{width:10.860000px;}
._7_c00118{width:12.780000px;}
._10_c00118{width:13.860000px;}
._18_c00118{width:16.035000px;}
._8_c00118{width:17.220000px;}
._f_c00118{width:19.020000px;}
._13_c00118{width:20.160000px;}
._11_c00118{width:21.480000px;}
._12_c00118{width:22.980000px;}
._16_c00118{width:25.289958px;}
._19_c00118{width:26.789970px;}
._14_c00118{width:28.350021px;}
.fc1_c00118{color:transparent;}
.fc0_c00118{color:rgb(35,31,32);}
.fs1_c00118{font-size:51.000000px;}
.fs0_c00118{font-size:60.000000px;}
.y0_c00118{bottom:0.000000px;}
.y29_c00118{bottom:64.425022px;}
.y28_c00118{bottom:110.175022px;}
.y27_c00118{bottom:125.325022px;}
.y26_c00118{bottom:140.775022px;}
.y25_c00118{bottom:155.925022px;}
.y24_c00118{bottom:171.375022px;}
.y23_c00118{bottom:186.525022px;}
.y22_c00118{bottom:202.275022px;}
.y21_c00118{bottom:217.425022px;}
.y20_c00118{bottom:232.575022px;}
.y1f_c00118{bottom:247.725022px;}
.y1e_c00118{bottom:263.175022px;}
.y1d_c00118{bottom:278.625022px;}
.y1c_c00118{bottom:294.150022px;}
.y1b_c00118{bottom:309.225022px;}
.y1a_c00118{bottom:324.750022px;}
.y19_c00118{bottom:339.525022px;}
.y18_c00118{bottom:355.350022px;}
.y17_c00118{bottom:370.125022px;}
.y15_c00118{bottom:456.150022px;}
.y14_c00118{bottom:475.950022px;}
.y13_c00118{bottom:495.375022px;}
.y12_c00118{bottom:514.800022px;}
.y11_c00118{bottom:533.925022px;}
.y10_c00118{bottom:553.725022px;}
.yf_c00118{bottom:572.775022px;}
.ye_c00118{bottom:592.575022px;}
.yd_c00118{bottom:612.000022px;}
.yc_c00118{bottom:631.425022px;}
.yb_c00118{bottom:650.550022px;}
.ya_c00118{bottom:670.350022px;}
.y9_c00118{bottom:689.625022px;}
.y8_c00118{bottom:709.125022px;}
.y7_c00118{bottom:728.625022px;}
.y6_c00118{bottom:748.125022px;}
.y5_c00118{bottom:767.175022px;}
.y4_c00118{bottom:786.225022px;}
.y3_c00118{bottom:806.025022px;}
.y2_c00118{bottom:825.150022px;}
.y1_c00118{bottom:844.950022px;}
.y16_c00118{bottom:886.725022px;}
.h3_c00118{height:50.028809px;}
.h4_c00118{height:50.053711px;}
.h5_c00118{height:50.353711px;}
.h2_c00118{height:58.886719px;}
.h1_c00118{height:957.750000px;}
.h0_c00118{height:957.975000px;}
.w1_c00118{width:643.500000px;}
.w0_c00118{width:643.650000px;}
.x0_c00118{left:0.000000px;}
.x1_c00118{left:91.050000px;}
.x5_c00118{left:92.175000px;}
.x3_c00118{left:96.450000px;}
.x2_c00118{left:107.250000px;}
.x4_c00118{left:123.825000px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls0_c00118{letter-spacing:0.000000pt;}
.ws1_c00118{word-spacing:-13.333333pt;}
.ws0_c00118{word-spacing:-11.333333pt;}
.ws2_c00118{word-spacing:0.000000pt;}
._a_c00118{margin-left:-12.053333pt;}
._9_c00118{margin-left:-10.346667pt;}
._c_c00118{margin-left:-6.666667pt;}
._17_c00118{margin-left:-5.562677pt;}
._d_c00118{margin-left:-4.373333pt;}
._e_c00118{margin-left:-2.880000pt;}
._b_c00118{margin-left:-1.493333pt;}
._2_c00118{width:1.066667pt;}
._0_c00118{width:1.973333pt;}
._6_c00118{width:3.200000pt;}
._3_c00118{width:4.800000pt;}
._5_c00118{width:5.866667pt;}
._15_c00118{width:6.773333pt;}
._1_c00118{width:7.840000pt;}
._4_c00118{width:9.653333pt;}
._7_c00118{width:11.360000pt;}
._10_c00118{width:12.320000pt;}
._18_c00118{width:14.253333pt;}
._8_c00118{width:15.306667pt;}
._f_c00118{width:16.906667pt;}
._13_c00118{width:17.920000pt;}
._11_c00118{width:19.093333pt;}
._12_c00118{width:20.426667pt;}
._16_c00118{width:22.479963pt;}
._19_c00118{width:23.813307pt;}
._14_c00118{width:25.200019pt;}
.fs1_c00118{font-size:45.333333pt;}
.fs0_c00118{font-size:53.333333pt;}
.y0_c00118{bottom:0.000000pt;}
.y29_c00118{bottom:57.266686pt;}
.y28_c00118{bottom:97.933353pt;}
.y27_c00118{bottom:111.400020pt;}
.y26_c00118{bottom:125.133353pt;}
.y25_c00118{bottom:138.600020pt;}
.y24_c00118{bottom:152.333353pt;}
.y23_c00118{bottom:165.800020pt;}
.y22_c00118{bottom:179.800020pt;}
.y21_c00118{bottom:193.266686pt;}
.y20_c00118{bottom:206.733353pt;}
.y1f_c00118{bottom:220.200020pt;}
.y1e_c00118{bottom:233.933353pt;}
.y1d_c00118{bottom:247.666686pt;}
.y1c_c00118{bottom:261.466686pt;}
.y1b_c00118{bottom:274.866686pt;}
.y1a_c00118{bottom:288.666686pt;}
.y19_c00118{bottom:301.800020pt;}
.y18_c00118{bottom:315.866686pt;}
.y17_c00118{bottom:329.000020pt;}
.y15_c00118{bottom:405.466686pt;}
.y14_c00118{bottom:423.066686pt;}
.y13_c00118{bottom:440.333353pt;}
.y12_c00118{bottom:457.600020pt;}
.y11_c00118{bottom:474.600020pt;}
.y10_c00118{bottom:492.200020pt;}
.yf_c00118{bottom:509.133353pt;}
.ye_c00118{bottom:526.733353pt;}
.yd_c00118{bottom:544.000020pt;}
.yc_c00118{bottom:561.266686pt;}
.yb_c00118{bottom:578.266686pt;}
.ya_c00118{bottom:595.866686pt;}
.y9_c00118{bottom:613.000020pt;}
.y8_c00118{bottom:630.333353pt;}
.y7_c00118{bottom:647.666686pt;}
.y6_c00118{bottom:665.000020pt;}
.y5_c00118{bottom:681.933353pt;}
.y4_c00118{bottom:698.866686pt;}
.y3_c00118{bottom:716.466686pt;}
.y2_c00118{bottom:733.466686pt;}
.y1_c00118{bottom:751.066686pt;}
.y16_c00118{bottom:788.200020pt;}
.h3_c00118{height:44.470052pt;}
.h4_c00118{height:44.492188pt;}
.h5_c00118{height:44.758854pt;}
.h2_c00118{height:52.343750pt;}
.h1_c00118{height:851.333333pt;}
.h0_c00118{height:851.533333pt;}
.w1_c00118{width:572.000000pt;}
.w0_c00118{width:572.133333pt;}
.x0_c00118{left:0.000000pt;}
.x1_c00118{left:80.933333pt;}
.x5_c00118{left:81.933333pt;}
.x3_c00118{left:85.733333pt;}
.x2_c00118{left:95.333333pt;}
.x4_c00118{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_32810ad2a13a1ab000a8c67d.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00119;src:url('chunks/assets/font_6ead8e98592f6a3572b2dc4b.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00119{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_c00119{vertical-align:0.000000px;}
.ls0_c00119{letter-spacing:0.000000px;}
.sc__c00119{text-shadow:none;}
.sc0_c00119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00119{-webkit-text-stroke:0px transparent;}
.sc0_c00119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00119{word-spacing:-15.000000px;}
.ws0_c00119{word-spacing:-12.750000px;}
.ws2_c00119{word-spacing:0.000000px;}
._10_c00119{margin-left:-14.160000px;}
._6_c00119{margin-left:-12.900000px;}
._16_c00119{margin-left:-10.980000px;}
._d_c00119{margin-left:-9.900000px;}
._c_c00119{margin-left:-8.640000px;}
._18_c00119{margin-left:-5.025000px;}
._5_c00119{margin-left:-3.300000px;}
._3_c00119{margin-left:-1.620000px;}
._0_c00119{width:1.980000px;}
._7_c00119{width:3.420000px;}
._11_c00119{width:4.440000px;}
._f_c00119{width:5.700000px;}
._e_c00119{width:7.320000px;}
._8_c00119{width:8.940000px;}
._a_c00119{width:10.080000px;}
._17_c00119{width:11.160000px;}
._9_c00119{width:12.240000px;}
._b_c00119{width:13.560000px;}
._15_c00119{width:16.080000px;}
._13_c00119{width:17.400000px;}
._14_c00119{width:19.440000px;}
._12_c00119{width:20.700000px;}
._1_c00119{width:22.980000px;}
._2_c00119{width:24.300000px;}
._4_c00119{width:26.700000px;}
._1a_c00119{width:27.810000px;}
._19_c00119{width:29.969970px;}
.fc1_c00119{color:transparent;}
.fc0_c00119{color:rgb(35,31,32);}
.fs1_c00119{font-size:51.000000px;}
.fs0_c00119{font-size:60.000000px;}
.y0_c00119{bottom:0.000000px;}
.y26_c00119{bottom:64.425022px;}
.y25_c00119{bottom:110.175022px;}
.y24_c00119{bottom:125.325022px;}
.y23_c00119{bottom:140.775022px;}
.y22_c00119{bottom:155.925022px;}
.y21_c00119{bottom:171.750022px;}
.y20_c00119{bottom:186.525022px;}
.y1f_c00119{bottom:201.975022px;}
.y1e_c00119{bottom:217.125022px;}
.y1d_c00119{bottom:232.575022px;}
.y1b_c00119{bottom:339.825022px;}
.y1a_c00119{bottom:358.950022px;}
.y19_c00119{bottom:378.375022px;}
.y18_c00119{bottom:397.800022px;}
.y17_c00119{bottom:417.600022px;}
.y16_c00119{bottom:437.025022px;}
.y15_c00119{bottom:456.150022px;}
.y14_c00119{bottom:475.950022px;}
.y13_c00119{bottom:495.000022px;}
.y12_c00119{bottom:514.800022px;}
.y11_c00119{bottom:534.300022px;}
.y10_c00119{bottom:553.725022px;}
.yf_c00119{bottom:573.150022px;}
.ye_c00119{bottom:592.200022px;}
.yd_c00119{bottom:612.000022px;}
.yc_c00119{bottom:631.425022px;}
.yb_c00119{bottom:650.550022px;}
.ya_c00119{bottom:670.275022px;}
.y9_c00119{bottom:689.775022px;}
.y8_c00119{bottom:708.825022px;}
.y7_c00119{bottom:728.625022px;}
.y6_c00119{bottom:748.125022px;}
.y5_c00119{bottom:767.175022px;}
.y4_c00119{bottom:786.225022px;}
.y3_c00119{bottom:806.025022px;}
.y2_c00119{bottom:825.525022px;}
.y1_c00119{bottom:844.575022px;}
.y1c_c00119{bottom:886.725022px;}
.h3_c00119{height:50.028809px;}
.h4_c00119{height:50.053711px;}
.h2_c00119{height:58.886719px;}
.h1_c00119{height:957.750000px;}
.h0_c00119{height:957.975000px;}
.w0_c00119{width:641.850030px;}
.w1_c00119{width:642.000000px;}
.x0_c00119{left:0.000000px;}
.x2_c00119{left:80.250000px;}
.x1_c00119{left:81.375000px;}
.x4_c00119{left:86.400000px;}
.x5_c00119{left:113.775000px;}
.x3_c00119{left:162.750000px;}
.x6_c00119{left:532.050000px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls0_c00119{letter-spacing:0.000000pt;}
.ws1_c00119{word-spacing:-13.333333pt;}
.ws0_c00119{word-spacing:-11.333333pt;}
.ws2_c00119{word-spacing:0.000000pt;}
._10_c00119{margin-left:-12.586667pt;}
._6_c00119{margin-left:-11.466667pt;}
._16_c00119{margin-left:-9.760000pt;}
._d_c00119{margin-left:-8.800000pt;}
._c_c00119{margin-left:-7.680000pt;}
._18_c00119{margin-left:-4.466667pt;}
._5_c00119{margin-left:-2.933333pt;}
._3_c00119{margin-left:-1.440000pt;}
._0_c00119{width:1.760000pt;}
._7_c00119{width:3.040000pt;}
._11_c00119{width:3.946667pt;}
._f_c00119{width:5.066667pt;}
._e_c00119{width:6.506667pt;}
._8_c00119{width:7.946667pt;}
._a_c00119{width:8.960000pt;}
._17_c00119{width:9.920000pt;}
._9_c00119{width:10.880000pt;}
._b_c00119{width:12.053333pt;}
._15_c00119{width:14.293333pt;}
._13_c00119{width:15.466667pt;}
._14_c00119{width:17.280000pt;}
._12_c00119{width:18.400000pt;}
._1_c00119{width:20.426667pt;}
._2_c00119{width:21.600000pt;}
._4_c00119{width:23.733333pt;}
._1a_c00119{width:24.720000pt;}
._19_c00119{width:26.639973pt;}
.fs1_c00119{font-size:45.333333pt;}
.fs0_c00119{font-size:53.333333pt;}
.y0_c00119{bottom:0.000000pt;}
.y26_c00119{bottom:57.266686pt;}
.y25_c00119{bottom:97.933353pt;}
.y24_c00119{bottom:111.400020pt;}
.y23_c00119{bottom:125.133353pt;}
.y22_c00119{bottom:138.600020pt;}
.y21_c00119{bottom:152.666686pt;}
.y20_c00119{bottom:165.800020pt;}
.y1f_c00119{bottom:179.533353pt;}
.y1e_c00119{bottom:193.000020pt;}
.y1d_c00119{bottom:206.733353pt;}
.y1b_c00119{bottom:302.066686pt;}
.y1a_c00119{bottom:319.066686pt;}
.y19_c00119{bottom:336.333353pt;}
.y18_c00119{bottom:353.600020pt;}
.y17_c00119{bottom:371.200020pt;}
.y16_c00119{bottom:388.466686pt;}
.y15_c00119{bottom:405.466686pt;}
.y14_c00119{bottom:423.066686pt;}
.y13_c00119{bottom:440.000020pt;}
.y12_c00119{bottom:457.600020pt;}
.y11_c00119{bottom:474.933353pt;}
.y10_c00119{bottom:492.200020pt;}
.yf_c00119{bottom:509.466686pt;}
.ye_c00119{bottom:526.400020pt;}
.yd_c00119{bottom:544.000020pt;}
.yc_c00119{bottom:561.266686pt;}
.yb_c00119{bottom:578.266686pt;}
.ya_c00119{bottom:595.800020pt;}
.y9_c00119{bottom:613.133353pt;}
.y8_c00119{bottom:630.066686pt;}
.y7_c00119{bottom:647.666686pt;}
.y6_c00119{bottom:665.000020pt;}
.y5_c00119{bottom:681.933353pt;}
.y4_c00119{bottom:698.866686pt;}
.y3_c00119{bottom:716.466686pt;}
.y2_c00119{bottom:733.800020pt;}
.y1_c00119{bottom:750.733353pt;}
.y1c_c00119{bottom:788.200020pt;}
.h3_c00119{height:44.470052pt;}
.h4_c00119{height:44.492188pt;}
.h2_c00119{height:52.343750pt;}
.h1_c00119{height:851.333333pt;}
.h0_c00119{height:851.533333pt;}
.w0_c00119{width:570.533360pt;}
.w1_c00119{width:570.666667pt;}
.x0_c00119{left:0.000000pt;}
.x2_c00119{left:71.333333pt;}
.x1_c00119{left:72.333333pt;}
.x4_c00119{left:76.800000pt;}
.x5_c00119{left:101.133333pt;}
.x3_c00119{left:144.666667pt;}
.x6_c00119{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_84ae21b837478a6b3d01435a.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00120;src:url('chunks/assets/font_8852d28d826f194b41fdc5d8.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00120{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_c00120{vertical-align:0.000000px;}
.ls0_c00120{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00120{word-spacing:-15.000000px;}
.ws1_c00120{word-spacing:-12.750000px;}
.ws2_c00120{word-spacing:0.000000px;}
._14_c00120{margin-left:-9.660000px;}
._12_c00120{margin-left:-7.380000px;}
._16_c00120{margin-left:-4.811967px;}
._9_c00120{margin-left:-3.240000px;}
._0_c00120{margin-left:-2.040000px;}
._5_c00120{margin-left:-1.020000px;}
._2_c00120{width:1.020000px;}
._3_c00120{width:2.580000px;}
._13_c00120{width:3.660000px;}
._e_c00120{width:4.860000px;}
._11_c00120{width:6.540000px;}
._4_c00120{width:7.740000px;}
._1_c00120{width:8.760000px;}
._f_c00120{width:10.020000px;}
._d_c00120{width:11.520000px;}
._6_c00120{width:13.380000px;}
._7_c00120{width:16.080000px;}
._c_c00120{width:17.760000px;}
._10_c00120{width:18.780000px;}
._a_c00120{width:20.460000px;}
._b_c00120{width:21.660000px;}
._8_c00120{width:23.100000px;}
._15_c00120{width:25.529958px;}
.fc1_c00120{color:transparent;}
.fc0_c00120{color:rgb(35,31,32);}
.fs1_c00120{font-size:51.000000px;}
.fs0_c00120{font-size:60.000000px;}
.y0_c00120{bottom:0.000000px;}
.y25_c00120{bottom:64.425022px;}
.y24_c00120{bottom:110.175022px;}
.y23_c00120{bottom:125.625022px;}
.y22_c00120{bottom:140.775022px;}
.y21_c00120{bottom:155.925022px;}
.y20_c00120{bottom:171.375022px;}
.y1f_c00120{bottom:186.525022px;}
.y1d_c00120{bottom:281.925022px;}
.y1c_c00120{bottom:301.350022px;}
.y1b_c00120{bottom:321.150022px;}
.y1a_c00120{bottom:340.200022px;}
.y19_c00120{bottom:360.000022px;}
.y18_c00120{bottom:379.125022px;}
.y17_c00120{bottom:398.925022px;}
.y16_c00120{bottom:417.975022px;}
.y15_c00120{bottom:437.400022px;}
.y14_c00120{bottom:457.200022px;}
.y13_c00120{bottom:476.625022px;}
.y12_c00120{bottom:496.125022px;}
.y11_c00120{bottom:515.175022px;}
.y10_c00120{bottom:534.975022px;}
.yf_c00120{bottom:554.025022px;}
.ye_c00120{bottom:573.825022px;}
.yd_c00120{bottom:593.325022px;}
.yc_c00120{bottom:612.375022px;}
.yb_c00120{bottom:631.800022px;}
.ya_c00120{bottom:651.600022px;}
.y9_c00120{bottom:670.725022px;}
.y8_c00120{bottom:690.525022px;}
.y7_c00120{bottom:709.575022px;}
.y6_c00120{bottom:729.000022px;}
.y5_c00120{bottom:748.425022px;}
.y4_c00120{bottom:767.550022px;}
.y3_c00120{bottom:787.350022px;}
.y2_c00120{bottom:806.775022px;}
.y1_c00120{bottom:844.575022px;}
.y1e_c00120{bottom:886.725022px;}
.h3_c00120{height:50.028809px;}
.h4_c00120{height:50.053711px;}
.h2_c00120{height:58.886719px;}
.h1_c00120{height:957.750000px;}
.h0_c00120{height:957.975000px;}
.w1_c00120{width:643.500000px;}
.w0_c00120{width:643.650000px;}
.x0_c00120{left:0.000000px;}
.x2_c00120{left:90.375000px;}
.x1_c00120{left:91.425000px;}
.x4_c00120{left:96.450000px;}
.x3_c00120{left:107.250000px;}
.x5_c00120{left:123.450000px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls0_c00120{letter-spacing:0.000000pt;}
.ws0_c00120{word-spacing:-13.333333pt;}
.ws1_c00120{word-spacing:-11.333333pt;}
.ws2_c00120{word-spacing:0.000000pt;}
._14_c00120{margin-left:-8.586667pt;}
._12_c00120{margin-left:-6.560000pt;}
._16_c00120{margin-left:-4.277304pt;}
._9_c00120{margin-left:-2.880000pt;}
._0_c00120{margin-left:-1.813333pt;}
._5_c00120{margin-left:-0.906667pt;}
._2_c00120{width:0.906667pt;}
._3_c00120{width:2.293333pt;}
._13_c00120{width:3.253333pt;}
._e_c00120{width:4.320000pt;}
._11_c00120{width:5.813333pt;}
._4_c00120{width:6.880000pt;}
._1_c00120{width:7.786667pt;}
._f_c00120{width:8.906667pt;}
._d_c00120{width:10.240000pt;}
._6_c00120{width:11.893333pt;}
._7_c00120{width:14.293333pt;}
._c_c00120{width:15.786667pt;}
._10_c00120{width:16.693333pt;}
._a_c00120{width:18.186667pt;}
._b_c00120{width:19.253333pt;}
._8_c00120{width:20.533333pt;}
._15_c00120{width:22.693296pt;}
.fs1_c00120{font-size:45.333333pt;}
.fs0_c00120{font-size:53.333333pt;}
.y0_c00120{bottom:0.000000pt;}
.y25_c00120{bottom:57.266686pt;}
.y24_c00120{bottom:97.933353pt;}
.y23_c00120{bottom:111.666686pt;}
.y22_c00120{bottom:125.133353pt;}
.y21_c00120{bottom:138.600020pt;}
.y20_c00120{bottom:152.333353pt;}
.y1f_c00120{bottom:165.800020pt;}
.y1d_c00120{bottom:250.600020pt;}
.y1c_c00120{bottom:267.866686pt;}
.y1b_c00120{bottom:285.466686pt;}
.y1a_c00120{bottom:302.400020pt;}
.y19_c00120{bottom:320.000020pt;}
.y18_c00120{bottom:337.000020pt;}
.y17_c00120{bottom:354.600020pt;}
.y16_c00120{bottom:371.533353pt;}
.y15_c00120{bottom:388.800020pt;}
.y14_c00120{bottom:406.400020pt;}
.y13_c00120{bottom:423.666686pt;}
.y12_c00120{bottom:441.000020pt;}
.y11_c00120{bottom:457.933353pt;}
.y10_c00120{bottom:475.533353pt;}
.yf_c00120{bottom:492.466686pt;}
.ye_c00120{bottom:510.066686pt;}
.yd_c00120{bottom:527.400020pt;}
.yc_c00120{bottom:544.333353pt;}
.yb_c00120{bottom:561.600020pt;}
.ya_c00120{bottom:579.200020pt;}
.y9_c00120{bottom:596.200020pt;}
.y8_c00120{bottom:613.800020pt;}
.y7_c00120{bottom:630.733353pt;}
.y6_c00120{bottom:648.000020pt;}
.y5_c00120{bottom:665.266686pt;}
.y4_c00120{bottom:682.266686pt;}
.y3_c00120{bottom:699.866686pt;}
.y2_c00120{bottom:717.133353pt;}
.y1_c00120{bottom:750.733353pt;}
.y1e_c00120{bottom:788.200020pt;}
.h3_c00120{height:44.470052pt;}
.h4_c00120{height:44.492188pt;}
.h2_c00120{height:52.343750pt;}
.h1_c00120{height:851.333333pt;}
.h0_c00120{height:851.533333pt;}
.w1_c00120{width:572.000000pt;}
.w0_c00120{width:572.133333pt;}
.x0_c00120{left:0.000000pt;}
.x2_c00120{left:80.333333pt;}
.x1_c00120{left:81.266667pt;}
.x4_c00120{left:85.733333pt;}
.x3_c00120{left:95.333333pt;}
.x5_c00120{left:109.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4e2e08c82dddb412e409628e.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00121;src:url('chunks/assets/font_ea1f5b0c7dc74ce86a552538.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls1_c00121{letter-spacing:0.000000px;}
.ls0_c00121{letter-spacing:12.300000px;}
.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:-15.000000px;}
.ws1_c00121{word-spacing:0.000000px;}
._12_c00121{margin-left:-10.800000px;}
._11_c00121{margin-left:-4.725072px;}
._14_c00121{margin-left:-3.374928px;}
._4_c00121{margin-left:-2.340000px;}
._5_c00121{margin-left:-1.140000px;}
._0_c00121{width:1.020000px;}
._2_c00121{width:2.160000px;}
._10_c00121{width:3.180000px;}
._7_c00121{width:4.200000px;}
._3_c00121{width:6.060000px;}
._6_c00121{width:7.260000px;}
._1_c00121{width:8.820000px;}
._e_c00121{width:10.440000px;}
._d_c00121{width:11.460000px;}
._c_c00121{width:12.540000px;}
._8_c00121{width:13.860000px;}
._a_c00121{width:16.260000px;}
._f_c00121{width:17.460000px;}
._9_c00121{width:18.480000px;}
._b_c00121{width:19.680000px;}
._13_c00121{width:21.840000px;}
.fc2_c00121{color:transparent;}
.fc1_c00121{color:rgb(0,0,0);}
.fc0_c00121{color:rgb(35,31,32);}
.fs1_c00121{font-size:51.000000px;}
.fs0_c00121{font-size:60.000000px;}
.y0_c00121{bottom:0.000000px;}
.y20_c00121{bottom:64.800022px;}
.y1f_c00121{bottom:218.925022px;}
.y1e_c00121{bottom:237.975022px;}
.y1d_c00121{bottom:257.400022px;}
.y1c_c00121{bottom:277.200022px;}
.y1b_c00121{bottom:296.625022px;}
.y1a_c00121{bottom:315.750022px;}
.y19_c00121{bottom:335.175022px;}
.y18_c00121{bottom:354.975022px;}
.y17_c00121{bottom:374.025022px;}
.y16_c00121{bottom:393.525022px;}
.y15_c00121{bottom:412.950022px;}
.y14_c00121{bottom:432.750022px;}
.y13_c00121{bottom:451.800022px;}
.y12_c00121{bottom:486.000022px;}
.y10_c00121{bottom:535.725022px;}
.yf_c00121{bottom:555.150022px;}
.ye_c00121{bottom:573.825022px;}
.yd_c00121{bottom:593.700022px;}
.yc_c00121{bottom:613.125022px;}
.yb_c00121{bottom:632.550022px;}
.ya_c00121{bottom:651.975022px;}
.y9_c00121{bottom:671.400022px;}
.y8_c00121{bottom:690.825022px;}
.y7_c00121{bottom:709.950022px;}
.y6_c00121{bottom:729.375022px;}
.y5_c00121{bottom:749.175022px;}
.y4_c00121{bottom:768.600022px;}
.y3_c00121{bottom:787.725022px;}
.y2_c00121{bottom:825.825022px;}
.y1_c00121{bottom:845.325022px;}
.y11_c00121{bottom:886.725022px;}
.h3_c00121{height:50.028809px;}
.h2_c00121{height:58.886719px;}
.h1_c00121{height:957.750000px;}
.h0_c00121{height:957.975000px;}
.w0_c00121{width:641.850030px;}
.w1_c00121{width:642.000000px;}
.x0_c00121{left:0.000000px;}
.x1_c00121{left:81.375000px;}
.x2_c00121{left:106.200000px;}
.x3_c00121{left:155.850000px;}
.x4_c00121{left:532.050000px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls1_c00121{letter-spacing:0.000000pt;}
.ls0_c00121{letter-spacing:10.933333pt;}
.ws0_c00121{word-spacing:-13.333333pt;}
.ws1_c00121{word-spacing:0.000000pt;}
._12_c00121{margin-left:-9.600000pt;}
._11_c00121{margin-left:-4.200064pt;}
._14_c00121{margin-left:-2.999936pt;}
._4_c00121{margin-left:-2.080000pt;}
._5_c00121{margin-left:-1.013333pt;}
._0_c00121{width:0.906667pt;}
._2_c00121{width:1.920000pt;}
._10_c00121{width:2.826667pt;}
._7_c00121{width:3.733333pt;}
._3_c00121{width:5.386667pt;}
._6_c00121{width:6.453333pt;}
._1_c00121{width:7.840000pt;}
._e_c00121{width:9.280000pt;}
._d_c00121{width:10.186667pt;}
._c_c00121{width:11.146667pt;}
._8_c00121{width:12.320000pt;}
._a_c00121{width:14.453333pt;}
._f_c00121{width:15.520000pt;}
._9_c00121{width:16.426667pt;}
._b_c00121{width:17.493333pt;}
._13_c00121{width:19.413333pt;}
.fs1_c00121{font-size:45.333333pt;}
.fs0_c00121{font-size:53.333333pt;}
.y0_c00121{bottom:0.000000pt;}
.y20_c00121{bottom:57.600020pt;}
.y1f_c00121{bottom:194.600020pt;}
.y1e_c00121{bottom:211.533353pt;}
.y1d_c00121{bottom:228.800020pt;}
.y1c_c00121{bottom:246.400020pt;}
.y1b_c00121{bottom:263.666686pt;}
.y1a_c00121{bottom:280.666686pt;}
.y19_c00121{bottom:297.933353pt;}
.y18_c00121{bottom:315.533353pt;}
.y17_c00121{bottom:332.466686pt;}
.y16_c00121{bottom:349.800020pt;}
.y15_c00121{bottom:367.066686pt;}
.y14_c00121{bottom:384.666686pt;}
.y13_c00121{bottom:401.600020pt;}
.y12_c00121{bottom:432.000020pt;}
.y10_c00121{bottom:476.200020pt;}
.yf_c00121{bottom:493.466686pt;}
.ye_c00121{bottom:510.066686pt;}
.yd_c00121{bottom:527.733353pt;}
.yc_c00121{bottom:545.000020pt;}
.yb_c00121{bottom:562.266686pt;}
.ya_c00121{bottom:579.533353pt;}
.y9_c00121{bottom:596.800020pt;}
.y8_c00121{bottom:614.066686pt;}
.y7_c00121{bottom:631.066686pt;}
.y6_c00121{bottom:648.333353pt;}
.y5_c00121{bottom:665.933353pt;}
.y4_c00121{bottom:683.200020pt;}
.y3_c00121{bottom:700.200020pt;}
.y2_c00121{bottom:734.066686pt;}
.y1_c00121{bottom:751.400020pt;}
.y11_c00121{bottom:788.200020pt;}
.h3_c00121{height:44.470052pt;}
.h2_c00121{height:52.343750pt;}
.h1_c00121{height:851.333333pt;}
.h0_c00121{height:851.533333pt;}
.w0_c00121{width:570.533360pt;}
.w1_c00121{width:570.666667pt;}
.x0_c00121{left:0.000000pt;}
.x1_c00121{left:72.333333pt;}
.x2_c00121{left:94.400000pt;}
.x3_c00121{left:138.533333pt;}
.x4_c00121{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_50ef077111c32cf2e3f4df7a.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00122;src:url('chunks/assets/font_45e198c3a0cd17197e7fe4b2.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00122{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00122{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00122{word-spacing:-12.750000px;}
.ws2_c00122{word-spacing:0.000000px;}
._13_c00122{margin-left:-12.240000px;}
._11_c00122{margin-left:-10.800000px;}
._10_c00122{margin-left:-9.600000px;}
._15_c00122{margin-left:-5.765850px;}
._b_c00122{margin-left:-3.960000px;}
._7_c00122{margin-left:-2.160000px;}
._0_c00122{margin-left:-1.140000px;}
._2_c00122{width:1.140000px;}
._3_c00122{width:2.520000px;}
._4_c00122{width:3.540000px;}
._8_c00122{width:5.100000px;}
._12_c00122{width:6.300000px;}
._9_c00122{width:7.500000px;}
._1_c00122{width:8.820000px;}
._a_c00122{width:10.260000px;}
._6_c00122{width:11.640000px;}
._5_c00122{width:13.080000px;}
._17_c00122{width:14.598024px;}
._c_c00122{width:16.140000px;}
._f_c00122{width:17.520000px;}
._d_c00122{width:18.900000px;}
._e_c00122{width:20.280000px;}
._14_c00122{width:24.569958px;}
._16_c00122{width:26.069970px;}
.fc1_c00122{color:transparent;}
.fc0_c00122{color:rgb(35,31,32);}
.fs1_c00122{font-size:51.000000px;}
.fs0_c00122{font-size:60.000000px;}
.y0_c00122{bottom:0.000000px;}
.y26_c00122{bottom:64.800022px;}
.y25_c00122{bottom:110.175022px;}
.y24_c00122{bottom:125.625022px;}
.y23_c00122{bottom:140.775022px;}
.y22_c00122{bottom:155.925022px;}
.y21_c00122{bottom:171.375022px;}
.y20_c00122{bottom:186.525022px;}
.y1f_c00122{bottom:201.975022px;}
.y1e_c00122{bottom:217.125022px;}
.y1c_c00122{bottom:301.350022px;}
.y1b_c00122{bottom:320.775022px;}
.y1a_c00122{bottom:340.575022px;}
.y19_c00122{bottom:360.000022px;}
.y18_c00122{bottom:379.125022px;}
.y17_c00122{bottom:398.550022px;}
.y16_c00122{bottom:417.975022px;}
.y15_c00122{bottom:437.700022px;}
.y14_c00122{bottom:457.200022px;}
.y13_c00122{bottom:476.700022px;}
.y12_c00122{bottom:496.125022px;}
.y11_c00122{bottom:515.550022px;}
.y10_c00122{bottom:534.975022px;}
.yf_c00122{bottom:554.400022px;}
.ye_c00122{bottom:573.525022px;}
.yd_c00122{bottom:592.950022px;}
.yc_c00122{bottom:612.750022px;}
.yb_c00122{bottom:632.175022px;}
.ya_c00122{bottom:651.300022px;}
.y9_c00122{bottom:670.725022px;}
.y8_c00122{bottom:690.150022px;}
.y7_c00122{bottom:709.950022px;}
.y6_c00122{bottom:729.000022px;}
.y5_c00122{bottom:748.425022px;}
.y4_c00122{bottom:767.550022px;}
.y3_c00122{bottom:786.975022px;}
.y2_c00122{bottom:806.775022px;}
.y1_c00122{bottom:844.950022px;}
.y1d_c00122{bottom:886.725022px;}
.h3_c00122{height:50.028809px;}
.h4_c00122{height:50.053711px;}
.h2_c00122{height:58.886719px;}
.h1_c00122{height:957.750000px;}
.h0_c00122{height:957.975000px;}
.w1_c00122{width:643.500000px;}
.w0_c00122{width:643.650000px;}
.x0_c00122{left:0.000000px;}
.x2_c00122{left:90.375000px;}
.x1_c00122{left:91.425000px;}
.x3_c00122{left:96.450000px;}
.x4_c00122{left:123.450000px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls0_c00122{letter-spacing:0.000000pt;}
.ws0_c00122{word-spacing:-13.333333pt;}
.ws1_c00122{word-spacing:-11.333333pt;}
.ws2_c00122{word-spacing:0.000000pt;}
._13_c00122{margin-left:-10.880000pt;}
._11_c00122{margin-left:-9.600000pt;}
._10_c00122{margin-left:-8.533333pt;}
._15_c00122{margin-left:-5.125200pt;}
._b_c00122{margin-left:-3.520000pt;}
._7_c00122{margin-left:-1.920000pt;}
._0_c00122{margin-left:-1.013333pt;}
._2_c00122{width:1.013333pt;}
._3_c00122{width:2.240000pt;}
._4_c00122{width:3.146667pt;}
._8_c00122{width:4.533333pt;}
._12_c00122{width:5.600000pt;}
._9_c00122{width:6.666667pt;}
._1_c00122{width:7.840000pt;}
._a_c00122{width:9.120000pt;}
._6_c00122{width:10.346667pt;}
._5_c00122{width:11.626667pt;}
._17_c00122{width:12.976021pt;}
._c_c00122{width:14.346667pt;}
._f_c00122{width:15.573333pt;}
._d_c00122{width:16.800000pt;}
._e_c00122{width:18.026667pt;}
._14_c00122{width:21.839963pt;}
._16_c00122{width:23.173307pt;}
.fs1_c00122{font-size:45.333333pt;}
.fs0_c00122{font-size:53.333333pt;}
.y0_c00122{bottom:0.000000pt;}
.y26_c00122{bottom:57.600020pt;}
.y25_c00122{bottom:97.933353pt;}
.y24_c00122{bottom:111.666686pt;}
.y23_c00122{bottom:125.133353pt;}
.y22_c00122{bottom:138.600020pt;}
.y21_c00122{bottom:152.333353pt;}
.y20_c00122{bottom:165.800020pt;}
.y1f_c00122{bottom:179.533353pt;}
.y1e_c00122{bottom:193.000020pt;}
.y1c_c00122{bottom:267.866686pt;}
.y1b_c00122{bottom:285.133353pt;}
.y1a_c00122{bottom:302.733353pt;}
.y19_c00122{bottom:320.000020pt;}
.y18_c00122{bottom:337.000020pt;}
.y17_c00122{bottom:354.266686pt;}
.y16_c00122{bottom:371.533353pt;}
.y15_c00122{bottom:389.066686pt;}
.y14_c00122{bottom:406.400020pt;}
.y13_c00122{bottom:423.733353pt;}
.y12_c00122{bottom:441.000020pt;}
.y11_c00122{bottom:458.266686pt;}
.y10_c00122{bottom:475.533353pt;}
.yf_c00122{bottom:492.800020pt;}
.ye_c00122{bottom:509.800020pt;}
.yd_c00122{bottom:527.066686pt;}
.yc_c00122{bottom:544.666686pt;}
.yb_c00122{bottom:561.933353pt;}
.ya_c00122{bottom:578.933353pt;}
.y9_c00122{bottom:596.200020pt;}
.y8_c00122{bottom:613.466686pt;}
.y7_c00122{bottom:631.066686pt;}
.y6_c00122{bottom:648.000020pt;}
.y5_c00122{bottom:665.266686pt;}
.y4_c00122{bottom:682.266686pt;}
.y3_c00122{bottom:699.533353pt;}
.y2_c00122{bottom:717.133353pt;}
.y1_c00122{bottom:751.066686pt;}
.y1d_c00122{bottom:788.200020pt;}
.h3_c00122{height:44.470052pt;}
.h4_c00122{height:44.492188pt;}
.h2_c00122{height:52.343750pt;}
.h1_c00122{height:851.333333pt;}
.h0_c00122{height:851.533333pt;}
.w1_c00122{width:572.000000pt;}
.w0_c00122{width:572.133333pt;}
.x0_c00122{left:0.000000pt;}
.x2_c00122{left:80.333333pt;}
.x1_c00122{left:81.266667pt;}
.x3_c00122{left:85.733333pt;}
.x4_c00122{left:109.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f5e98b193f60c94675b49820.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00123;src:url('chunks/assets/font_5d41632782ea69fe34e33e21.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00123{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.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:-15.000000px;}
.ws1_c00123{word-spacing:-12.750000px;}
.ws2_c00123{word-spacing:0.000000px;}
._15_c00123{margin-left:-12.960000px;}
._6_c00123{margin-left:-10.800000px;}
._d_c00123{margin-left:-9.060000px;}
._14_c00123{margin-left:-7.260000px;}
._10_c00123{margin-left:-6.120000px;}
._13_c00123{margin-left:-4.680000px;}
._c_c00123{margin-left:-3.420000px;}
._3_c00123{margin-left:-2.100000px;}
._5_c00123{margin-left:-1.020000px;}
._0_c00123{width:1.860000px;}
._1_c00123{width:3.840000px;}
._2_c00123{width:5.100000px;}
._4_c00123{width:6.600000px;}
._e_c00123{width:7.740000px;}
._9_c00123{width:8.760000px;}
._a_c00123{width:10.320000px;}
._b_c00123{width:12.180000px;}
._8_c00123{width:13.800000px;}
._f_c00123{width:16.320000px;}
._7_c00123{width:17.760000px;}
._11_c00123{width:19.260000px;}
._18_c00123{width:20.850000px;}
._12_c00123{width:22.260000px;}
._16_c00123{width:24.450000px;}
._17_c00123{width:26.550000px;}
.fc1_c00123{color:transparent;}
.fc0_c00123{color:rgb(35,31,32);}
.fs1_c00123{font-size:51.000000px;}
.fs0_c00123{font-size:60.000000px;}
.y0_c00123{bottom:0.000000px;}
.y2a_c00123{bottom:64.425022px;}
.y29_c00123{bottom:110.175022px;}
.y28_c00123{bottom:125.625022px;}
.y27_c00123{bottom:140.775022px;}
.y26_c00123{bottom:155.925022px;}
.y25_c00123{bottom:171.375022px;}
.y24_c00123{bottom:186.825022px;}
.y23_c00123{bottom:201.975022px;}
.y22_c00123{bottom:217.125022px;}
.y21_c00123{bottom:232.950022px;}
.y20_c00123{bottom:247.725022px;}
.y1f_c00123{bottom:263.175022px;}
.y1e_c00123{bottom:278.325022px;}
.y1d_c00123{bottom:294.150022px;}
.y1c_c00123{bottom:308.925022px;}
.y1b_c00123{bottom:324.375022px;}
.y1a_c00123{bottom:339.525022px;}
.y18_c00123{bottom:397.800022px;}
.y17_c00123{bottom:417.600022px;}
.y16_c00123{bottom:436.725022px;}
.y15_c00123{bottom:456.150022px;}
.y14_c00123{bottom:475.575022px;}
.y13_c00123{bottom:495.375022px;}
.y12_c00123{bottom:514.800022px;}
.y11_c00123{bottom:533.925022px;}
.y10_c00123{bottom:553.350022px;}
.yf_c00123{bottom:573.150022px;}
.ye_c00123{bottom:592.200022px;}
.yd_c00123{bottom:611.625022px;}
.yc_c00123{bottom:631.425022px;}
.yb_c00123{bottom:650.550022px;}
.ya_c00123{bottom:670.350022px;}
.y9_c00123{bottom:689.400022px;}
.y8_c00123{bottom:708.825022px;}
.y7_c00123{bottom:728.625022px;}
.y6_c00123{bottom:748.125022px;}
.y5_c00123{bottom:767.175022px;}
.y4_c00123{bottom:786.225022px;}
.y3_c00123{bottom:805.725022px;}
.y2_c00123{bottom:825.525022px;}
.y1_c00123{bottom:844.575022px;}
.y19_c00123{bottom:886.725022px;}
.h3_c00123{height:50.028809px;}
.h4_c00123{height:50.053711px;}
.h2_c00123{height:58.886719px;}
.h1_c00123{height:957.750000px;}
.h0_c00123{height:957.975000px;}
.w0_c00123{width:641.850030px;}
.w1_c00123{width:642.000000px;}
.x0_c00123{left:0.000000px;}
.x3_c00123{left:80.250000px;}
.x1_c00123{left:81.375000px;}
.x5_c00123{left:86.400000px;}
.x2_c00123{left:96.150000px;}
.x6_c00123{left:113.775000px;}
.x4_c00123{left:155.850000px;}
.x7_c00123{left:532.050000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls0_c00123{letter-spacing:0.000000pt;}
.ws0_c00123{word-spacing:-13.333333pt;}
.ws1_c00123{word-spacing:-11.333333pt;}
.ws2_c00123{word-spacing:0.000000pt;}
._15_c00123{margin-left:-11.520000pt;}
._6_c00123{margin-left:-9.600000pt;}
._d_c00123{margin-left:-8.053333pt;}
._14_c00123{margin-left:-6.453333pt;}
._10_c00123{margin-left:-5.440000pt;}
._13_c00123{margin-left:-4.160000pt;}
._c_c00123{margin-left:-3.040000pt;}
._3_c00123{margin-left:-1.866667pt;}
._5_c00123{margin-left:-0.906667pt;}
._0_c00123{width:1.653333pt;}
._1_c00123{width:3.413333pt;}
._2_c00123{width:4.533333pt;}
._4_c00123{width:5.866667pt;}
._e_c00123{width:6.880000pt;}
._9_c00123{width:7.786667pt;}
._a_c00123{width:9.173333pt;}
._b_c00123{width:10.826667pt;}
._8_c00123{width:12.266667pt;}
._f_c00123{width:14.506667pt;}
._7_c00123{width:15.786667pt;}
._11_c00123{width:17.120000pt;}
._18_c00123{width:18.533333pt;}
._12_c00123{width:19.786667pt;}
._16_c00123{width:21.733333pt;}
._17_c00123{width:23.600000pt;}
.fs1_c00123{font-size:45.333333pt;}
.fs0_c00123{font-size:53.333333pt;}
.y0_c00123{bottom:0.000000pt;}
.y2a_c00123{bottom:57.266686pt;}
.y29_c00123{bottom:97.933353pt;}
.y28_c00123{bottom:111.666686pt;}
.y27_c00123{bottom:125.133353pt;}
.y26_c00123{bottom:138.600020pt;}
.y25_c00123{bottom:152.333353pt;}
.y24_c00123{bottom:166.066686pt;}
.y23_c00123{bottom:179.533353pt;}
.y22_c00123{bottom:193.000020pt;}
.y21_c00123{bottom:207.066686pt;}
.y20_c00123{bottom:220.200020pt;}
.y1f_c00123{bottom:233.933353pt;}
.y1e_c00123{bottom:247.400020pt;}
.y1d_c00123{bottom:261.466686pt;}
.y1c_c00123{bottom:274.600020pt;}
.y1b_c00123{bottom:288.333353pt;}
.y1a_c00123{bottom:301.800020pt;}
.y18_c00123{bottom:353.600020pt;}
.y17_c00123{bottom:371.200020pt;}
.y16_c00123{bottom:388.200020pt;}
.y15_c00123{bottom:405.466686pt;}
.y14_c00123{bottom:422.733353pt;}
.y13_c00123{bottom:440.333353pt;}
.y12_c00123{bottom:457.600020pt;}
.y11_c00123{bottom:474.600020pt;}
.y10_c00123{bottom:491.866686pt;}
.yf_c00123{bottom:509.466686pt;}
.ye_c00123{bottom:526.400020pt;}
.yd_c00123{bottom:543.666686pt;}
.yc_c00123{bottom:561.266686pt;}
.yb_c00123{bottom:578.266686pt;}
.ya_c00123{bottom:595.866686pt;}
.y9_c00123{bottom:612.800020pt;}
.y8_c00123{bottom:630.066686pt;}
.y7_c00123{bottom:647.666686pt;}
.y6_c00123{bottom:665.000020pt;}
.y5_c00123{bottom:681.933353pt;}
.y4_c00123{bottom:698.866686pt;}
.y3_c00123{bottom:716.200020pt;}
.y2_c00123{bottom:733.800020pt;}
.y1_c00123{bottom:750.733353pt;}
.y19_c00123{bottom:788.200020pt;}
.h3_c00123{height:44.470052pt;}
.h4_c00123{height:44.492188pt;}
.h2_c00123{height:52.343750pt;}
.h1_c00123{height:851.333333pt;}
.h0_c00123{height:851.533333pt;}
.w0_c00123{width:570.533360pt;}
.w1_c00123{width:570.666667pt;}
.x0_c00123{left:0.000000pt;}
.x3_c00123{left:71.333333pt;}
.x1_c00123{left:72.333333pt;}
.x5_c00123{left:76.800000pt;}
.x2_c00123{left:85.466667pt;}
.x6_c00123{left:101.133333pt;}
.x4_c00123{left:138.533333pt;}
.x7_c00123{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6330d88917151d7815dba686.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00124;src:url('chunks/assets/font_77c8a1a1f6194113133b3356.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00124{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_c00124{vertical-align:0.000000px;}
.ls0_c00124{letter-spacing:0.000000px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00124{word-spacing:-15.000000px;}
.ws1_c00124{word-spacing:-12.750000px;}
.ws2_c00124{word-spacing:0.000000px;}
._e_c00124{margin-left:-10.500000px;}
._d_c00124{margin-left:-8.783379px;}
._12_c00124{margin-left:-5.473032px;}
._11_c00124{margin-left:-3.775332px;}
._0_c00124{margin-left:-1.760979px;}
._2_c00124{width:1.115931px;}
._1_c00124{width:2.699991px;}
._c_c00124{width:4.320009px;}
._6_c00124{width:5.376285px;}
._7_c00124{width:6.804069px;}
._5_c00124{width:8.760000px;}
._8_c00124{width:10.034091px;}
._f_c00124{width:11.328138px;}
._4_c00124{width:12.361053px;}
._3_c00124{width:13.584087px;}
._b_c00124{width:16.219095px;}
._a_c00124{width:17.760000px;}
._9_c00124{width:19.121958px;}
._13_c00124{width:23.771916px;}
._10_c00124{width:27.032937px;}
.fc1_c00124{color:transparent;}
.fc0_c00124{color:rgb(35,31,32);}
.fs0_c00124{font-size:51.000000px;}
.fs1_c00124{font-size:60.000000px;}
.y0_c00124{bottom:0.000000px;}
.y26_c00124{bottom:64.800022px;}
.y25_c00124{bottom:110.175022px;}
.y24_c00124{bottom:125.325022px;}
.y23_c00124{bottom:141.150022px;}
.y22_c00124{bottom:155.925022px;}
.y21_c00124{bottom:171.675022px;}
.y20_c00124{bottom:186.825022px;}
.y1f_c00124{bottom:201.975022px;}
.y1e_c00124{bottom:217.425022px;}
.y1d_c00124{bottom:232.575022px;}
.y1c_c00124{bottom:248.025022px;}
.y1b_c00124{bottom:303.150022px;}
.y1a_c00124{bottom:322.950022px;}
.y19_c00124{bottom:341.625022px;}
.y18_c00124{bottom:361.425022px;}
.y17_c00124{bottom:380.925022px;}
.y16_c00124{bottom:400.350022px;}
.y15_c00124{bottom:419.775022px;}
.y14_c00124{bottom:438.825022px;}
.y13_c00124{bottom:458.625022px;}
.y12_c00124{bottom:478.125022px;}
.y11_c00124{bottom:497.550022px;}
.y10_c00124{bottom:516.975022px;}
.yf_c00124{bottom:536.400022px;}
.ye_c00124{bottom:574.575022px;}
.yd_c00124{bottom:631.425022px;}
.yc_c00124{bottom:650.925022px;}
.yb_c00124{bottom:670.350022px;}
.ya_c00124{bottom:689.400022px;}
.y9_c00124{bottom:709.200022px;}
.y8_c00124{bottom:728.625022px;}
.y7_c00124{bottom:748.125022px;}
.y6_c00124{bottom:767.175022px;}
.y5_c00124{bottom:786.525022px;}
.y4_c00124{bottom:806.025022px;}
.y3_c00124{bottom:825.525022px;}
.y2_c00124{bottom:844.950022px;}
.y1_c00124{bottom:886.725022px;}
.h2_c00124{height:50.028809px;}
.h4_c00124{height:50.053711px;}
.h5_c00124{height:50.353711px;}
.h3_c00124{height:58.886719px;}
.h1_c00124{height:957.750000px;}
.h0_c00124{height:957.975000px;}
.w1_c00124{width:643.500000px;}
.w0_c00124{width:643.650000px;}
.x0_c00124{left:0.000000px;}
.x1_c00124{left:90.750000px;}
.x4_c00124{left:92.175000px;}
.x2_c00124{left:96.450000px;}
.x3_c00124{left:124.575000px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls0_c00124{letter-spacing:0.000000pt;}
.ws0_c00124{word-spacing:-13.333333pt;}
.ws1_c00124{word-spacing:-11.333333pt;}
.ws2_c00124{word-spacing:0.000000pt;}
._e_c00124{margin-left:-9.333333pt;}
._d_c00124{margin-left:-7.807448pt;}
._12_c00124{margin-left:-4.864917pt;}
._11_c00124{margin-left:-3.355851pt;}
._0_c00124{margin-left:-1.565315pt;}
._2_c00124{width:0.991939pt;}
._1_c00124{width:2.399992pt;}
._c_c00124{width:3.840008pt;}
._6_c00124{width:4.778920pt;}
._7_c00124{width:6.048061pt;}
._5_c00124{width:7.786667pt;}
._8_c00124{width:8.919192pt;}
._f_c00124{width:10.069456pt;}
._4_c00124{width:10.987603pt;}
._3_c00124{width:12.074744pt;}
._b_c00124{width:14.416973pt;}
._a_c00124{width:15.786667pt;}
._9_c00124{width:16.997296pt;}
._13_c00124{width:21.130592pt;}
._10_c00124{width:24.029277pt;}
.fs0_c00124{font-size:45.333333pt;}
.fs1_c00124{font-size:53.333333pt;}
.y0_c00124{bottom:0.000000pt;}
.y26_c00124{bottom:57.600020pt;}
.y25_c00124{bottom:97.933353pt;}
.y24_c00124{bottom:111.400020pt;}
.y23_c00124{bottom:125.466686pt;}
.y22_c00124{bottom:138.600020pt;}
.y21_c00124{bottom:152.600020pt;}
.y20_c00124{bottom:166.066686pt;}
.y1f_c00124{bottom:179.533353pt;}
.y1e_c00124{bottom:193.266686pt;}
.y1d_c00124{bottom:206.733353pt;}
.y1c_c00124{bottom:220.466686pt;}
.y1b_c00124{bottom:269.466686pt;}
.y1a_c00124{bottom:287.066686pt;}
.y19_c00124{bottom:303.666686pt;}
.y18_c00124{bottom:321.266686pt;}
.y17_c00124{bottom:338.600020pt;}
.y16_c00124{bottom:355.866686pt;}
.y15_c00124{bottom:373.133353pt;}
.y14_c00124{bottom:390.066686pt;}
.y13_c00124{bottom:407.666686pt;}
.y12_c00124{bottom:425.000020pt;}
.y11_c00124{bottom:442.266686pt;}
.y10_c00124{bottom:459.533353pt;}
.yf_c00124{bottom:476.800020pt;}
.ye_c00124{bottom:510.733353pt;}
.yd_c00124{bottom:561.266686pt;}
.yc_c00124{bottom:578.600020pt;}
.yb_c00124{bottom:595.866686pt;}
.ya_c00124{bottom:612.800020pt;}
.y9_c00124{bottom:630.400020pt;}
.y8_c00124{bottom:647.666686pt;}
.y7_c00124{bottom:665.000020pt;}
.y6_c00124{bottom:681.933353pt;}
.y5_c00124{bottom:699.133353pt;}
.y4_c00124{bottom:716.466686pt;}
.y3_c00124{bottom:733.800020pt;}
.y2_c00124{bottom:751.066686pt;}
.y1_c00124{bottom:788.200020pt;}
.h2_c00124{height:44.470052pt;}
.h4_c00124{height:44.492188pt;}
.h5_c00124{height:44.758854pt;}
.h3_c00124{height:52.343750pt;}
.h1_c00124{height:851.333333pt;}
.h0_c00124{height:851.533333pt;}
.w1_c00124{width:572.000000pt;}
.w0_c00124{width:572.133333pt;}
.x0_c00124{left:0.000000pt;}
.x1_c00124{left:80.666667pt;}
.x4_c00124{left:81.933333pt;}
.x2_c00124{left:85.733333pt;}
.x3_c00124{left:110.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_de41b2733e3cc3ab90c63030.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00125;src:url('chunks/assets/font_7ee7d9f4360b79760de5c572.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00125{letter-spacing:0.000000px;}
.ls0_c00125{letter-spacing:13.800000px;}
.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;}
}
.ws0_c00125{word-spacing:-15.000000px;}
.ws1_c00125{word-spacing:-12.750000px;}
.ws2_c00125{word-spacing:0.000000px;}
._9_c00125{margin-left:-9.900000px;}
._8_c00125{margin-left:-8.336583px;}
._13_c00125{margin-left:-5.885967px;}
._2_c00125{margin-left:-4.661247px;}
._4_c00125{margin-left:-2.933673px;}
._1_c00125{margin-left:-1.005363px;}
._7_c00125{width:1.025967px;}
._0_c00125{width:2.034033px;}
._3_c00125{width:3.152922px;}
._6_c00125{width:4.479036px;}
._5_c00125{width:6.344979px;}
._10_c00125{width:8.210946px;}
._e_c00125{width:9.936132px;}
._f_c00125{width:11.007102px;}
._d_c00125{width:12.360123px;}
._11_c00125{width:13.392141px;}
._17_c00125{width:14.640009px;}
._12_c00125{width:16.050288px;}
._a_c00125{width:17.175144px;}
._b_c00125{width:18.278889px;}
._c_c00125{width:20.412264px;}
._16_c00125{width:21.542367px;}
._15_c00125{width:22.616928px;}
._14_c00125{width:24.189036px;}
.fc2_c00125{color:transparent;}
.fc1_c00125{color:rgb(0,0,0);}
.fc0_c00125{color:rgb(35,31,32);}
.fs0_c00125{font-size:51.000000px;}
.fs1_c00125{font-size:60.000000px;}
.y0_c00125{bottom:0.000000px;}
.y27_c00125{bottom:64.425022px;}
.y26_c00125{bottom:110.175022px;}
.y25_c00125{bottom:125.625022px;}
.y24_c00125{bottom:140.775022px;}
.y23_c00125{bottom:155.925022px;}
.y22_c00125{bottom:171.750022px;}
.y21_c00125{bottom:186.525022px;}
.y20_c00125{bottom:201.975022px;}
.y1f_c00125{bottom:217.425022px;}
.y1e_c00125{bottom:232.575022px;}
.y1d_c00125{bottom:272.550022px;}
.y1c_c00125{bottom:291.975022px;}
.y1b_c00125{bottom:311.700022px;}
.y1a_c00125{bottom:330.825022px;}
.y19_c00125{bottom:349.950022px;}
.y18_c00125{bottom:369.375022px;}
.y17_c00125{bottom:389.175022px;}
.y16_c00125{bottom:408.525022px;}
.y15_c00125{bottom:428.025022px;}
.y14_c00125{bottom:447.525022px;}
.y13_c00125{bottom:466.950022px;}
.y12_c00125{bottom:486.375022px;}
.y11_c00125{bottom:505.425022px;}
.y10_c00125{bottom:525.225022px;}
.yf_c00125{bottom:544.725022px;}
.ye_c00125{bottom:564.150022px;}
.yd_c00125{bottom:583.575022px;}
.yc_c00125{bottom:603.000022px;}
.yb_c00125{bottom:622.125022px;}
.ya_c00125{bottom:641.550022px;}
.y9_c00125{bottom:677.175022px;}
.y8_c00125{bottom:728.325022px;}
.y7_c00125{bottom:748.125022px;}
.y6_c00125{bottom:767.175022px;}
.y5_c00125{bottom:786.225022px;}
.y4_c00125{bottom:806.100022px;}
.y3_c00125{bottom:825.525022px;}
.y2_c00125{bottom:844.950022px;}
.y1_c00125{bottom:886.725022px;}
.h2_c00125{height:50.028809px;}
.h4_c00125{height:50.053711px;}
.h3_c00125{height:58.886719px;}
.h1_c00125{height:957.750000px;}
.h0_c00125{height:957.975000px;}
.w0_c00125{width:641.850030px;}
.w1_c00125{width:642.000000px;}
.x0_c00125{left:0.000000px;}
.x2_c00125{left:81.375000px;}
.x4_c00125{left:86.400000px;}
.x3_c00125{left:96.150000px;}
.x6_c00125{left:113.025000px;}
.x5_c00125{left:114.150000px;}
.x1_c00125{left:155.850000px;}
.x7_c00125{left:532.050000px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls1_c00125{letter-spacing:0.000000pt;}
.ls0_c00125{letter-spacing:12.266667pt;}
.ws0_c00125{word-spacing:-13.333333pt;}
.ws1_c00125{word-spacing:-11.333333pt;}
.ws2_c00125{word-spacing:0.000000pt;}
._9_c00125{margin-left:-8.800000pt;}
._8_c00125{margin-left:-7.410296pt;}
._13_c00125{margin-left:-5.231971pt;}
._2_c00125{margin-left:-4.143331pt;}
._4_c00125{margin-left:-2.607709pt;}
._1_c00125{margin-left:-0.893656pt;}
._7_c00125{width:0.911971pt;}
._0_c00125{width:1.808029pt;}
._3_c00125{width:2.802597pt;}
._6_c00125{width:3.981365pt;}
._5_c00125{width:5.639981pt;}
._10_c00125{width:7.298619pt;}
._e_c00125{width:8.832117pt;}
._f_c00125{width:9.784091pt;}
._d_c00125{width:10.986776pt;}
._11_c00125{width:11.904125pt;}
._17_c00125{width:13.013341pt;}
._12_c00125{width:14.266923pt;}
._a_c00125{width:15.266795pt;}
._b_c00125{width:16.247901pt;}
._c_c00125{width:18.144235pt;}
._16_c00125{width:19.148771pt;}
._15_c00125{width:20.103936pt;}
._14_c00125{width:21.501365pt;}
.fs0_c00125{font-size:45.333333pt;}
.fs1_c00125{font-size:53.333333pt;}
.y0_c00125{bottom:0.000000pt;}
.y27_c00125{bottom:57.266686pt;}
.y26_c00125{bottom:97.933353pt;}
.y25_c00125{bottom:111.666686pt;}
.y24_c00125{bottom:125.133353pt;}
.y23_c00125{bottom:138.600020pt;}
.y22_c00125{bottom:152.666686pt;}
.y21_c00125{bottom:165.800020pt;}
.y20_c00125{bottom:179.533353pt;}
.y1f_c00125{bottom:193.266686pt;}
.y1e_c00125{bottom:206.733353pt;}
.y1d_c00125{bottom:242.266686pt;}
.y1c_c00125{bottom:259.533353pt;}
.y1b_c00125{bottom:277.066686pt;}
.y1a_c00125{bottom:294.066686pt;}
.y19_c00125{bottom:311.066686pt;}
.y18_c00125{bottom:328.333353pt;}
.y17_c00125{bottom:345.933353pt;}
.y16_c00125{bottom:363.133353pt;}
.y15_c00125{bottom:380.466686pt;}
.y14_c00125{bottom:397.800020pt;}
.y13_c00125{bottom:415.066686pt;}
.y12_c00125{bottom:432.333353pt;}
.y11_c00125{bottom:449.266686pt;}
.y10_c00125{bottom:466.866686pt;}
.yf_c00125{bottom:484.200020pt;}
.ye_c00125{bottom:501.466686pt;}
.yd_c00125{bottom:518.733353pt;}
.yc_c00125{bottom:536.000020pt;}
.yb_c00125{bottom:553.000020pt;}
.ya_c00125{bottom:570.266686pt;}
.y9_c00125{bottom:601.933353pt;}
.y8_c00125{bottom:647.400020pt;}
.y7_c00125{bottom:665.000020pt;}
.y6_c00125{bottom:681.933353pt;}
.y5_c00125{bottom:698.866686pt;}
.y4_c00125{bottom:716.533353pt;}
.y3_c00125{bottom:733.800020pt;}
.y2_c00125{bottom:751.066686pt;}
.y1_c00125{bottom:788.200020pt;}
.h2_c00125{height:44.470052pt;}
.h4_c00125{height:44.492188pt;}
.h3_c00125{height:52.343750pt;}
.h1_c00125{height:851.333333pt;}
.h0_c00125{height:851.533333pt;}
.w0_c00125{width:570.533360pt;}
.w1_c00125{width:570.666667pt;}
.x0_c00125{left:0.000000pt;}
.x2_c00125{left:72.333333pt;}
.x4_c00125{left:76.800000pt;}
.x3_c00125{left:85.466667pt;}
.x6_c00125{left:100.466667pt;}
.x5_c00125{left:101.466667pt;}
.x1_c00125{left:138.533333pt;}
.x7_c00125{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9cfdbfa1e5bd600e4f165de0.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00126;src:url('chunks/assets/font_31eea2274b97f58bdb0a7f09.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00126{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00126{word-spacing:-15.000000px;}
.ws1_c00126{word-spacing:-12.750000px;}
.ws2_c00126{word-spacing:0.000000px;}
._14_c00126{margin-left:-12.900000px;}
._c_c00126{margin-left:-10.380000px;}
._b_c00126{margin-left:-8.280000px;}
._15_c00126{margin-left:-6.102030px;}
._13_c00126{margin-left:-4.680000px;}
._6_c00126{margin-left:-3.000000px;}
._2_c00126{margin-left:-1.500000px;}
._0_c00126{width:1.800000px;}
._4_c00126{width:3.360000px;}
._1_c00126{width:4.920000px;}
._11_c00126{width:6.060000px;}
._3_c00126{width:7.080000px;}
._5_c00126{width:9.060000px;}
._a_c00126{width:10.260000px;}
._9_c00126{width:12.300000px;}
._7_c00126{width:13.320000px;}
._17_c00126{width:15.123066px;}
._8_c00126{width:16.560000px;}
._e_c00126{width:17.820000px;}
._d_c00126{width:18.960000px;}
._f_c00126{width:19.980000px;}
._10_c00126{width:21.240000px;}
._12_c00126{width:23.460000px;}
._16_c00126{width:24.749958px;}
._18_c00126{width:26.249970px;}
.fc1_c00126{color:transparent;}
.fc0_c00126{color:rgb(35,31,32);}
.fs1_c00126{font-size:51.000000px;}
.fs0_c00126{font-size:60.000000px;}
.y0_c00126{bottom:0.000000px;}
.y26_c00126{bottom:64.425022px;}
.y25_c00126{bottom:110.175022px;}
.y24_c00126{bottom:125.325022px;}
.y23_c00126{bottom:141.150022px;}
.y22_c00126{bottom:155.925022px;}
.y21_c00126{bottom:171.375022px;}
.y20_c00126{bottom:186.525022px;}
.y1f_c00126{bottom:202.350022px;}
.y1e_c00126{bottom:217.425022px;}
.y1d_c00126{bottom:232.575022px;}
.y1c_c00126{bottom:277.950022px;}
.y1b_c00126{bottom:297.375022px;}
.y1a_c00126{bottom:316.800022px;}
.y19_c00126{bottom:335.925022px;}
.y18_c00126{bottom:355.350022px;}
.y17_c00126{bottom:375.150022px;}
.y16_c00126{bottom:394.200022px;}
.y15_c00126{bottom:414.000022px;}
.y14_c00126{bottom:433.425022px;}
.y13_c00126{bottom:474.150022px;}
.y11_c00126{bottom:533.925022px;}
.y10_c00126{bottom:553.350022px;}
.yf_c00126{bottom:572.775022px;}
.ye_c00126{bottom:592.200022px;}
.yd_c00126{bottom:612.000022px;}
.yc_c00126{bottom:631.425022px;}
.yb_c00126{bottom:650.550022px;}
.ya_c00126{bottom:670.350022px;}
.y9_c00126{bottom:689.775022px;}
.y8_c00126{bottom:708.825022px;}
.y7_c00126{bottom:728.625022px;}
.y6_c00126{bottom:748.125022px;}
.y5_c00126{bottom:767.550022px;}
.y4_c00126{bottom:786.600022px;}
.y3_c00126{bottom:806.025022px;}
.y2_c00126{bottom:825.150022px;}
.y1_c00126{bottom:844.950022px;}
.y12_c00126{bottom:886.725022px;}
.h3_c00126{height:50.028809px;}
.h4_c00126{height:50.053711px;}
.h2_c00126{height:58.886719px;}
.h1_c00126{height:957.750000px;}
.h0_c00126{height:957.975000px;}
.w1_c00126{width:643.500000px;}
.w0_c00126{width:643.650000px;}
.x0_c00126{left:0.000000px;}
.x2_c00126{left:90.375000px;}
.x1_c00126{left:91.425000px;}
.x4_c00126{left:96.450000px;}
.x3_c00126{left:106.950000px;}
.x5_c00126{left:123.825000px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls0_c00126{letter-spacing:0.000000pt;}
.ws0_c00126{word-spacing:-13.333333pt;}
.ws1_c00126{word-spacing:-11.333333pt;}
.ws2_c00126{word-spacing:0.000000pt;}
._14_c00126{margin-left:-11.466667pt;}
._c_c00126{margin-left:-9.226667pt;}
._b_c00126{margin-left:-7.360000pt;}
._15_c00126{margin-left:-5.424027pt;}
._13_c00126{margin-left:-4.160000pt;}
._6_c00126{margin-left:-2.666667pt;}
._2_c00126{margin-left:-1.333333pt;}
._0_c00126{width:1.600000pt;}
._4_c00126{width:2.986667pt;}
._1_c00126{width:4.373333pt;}
._11_c00126{width:5.386667pt;}
._3_c00126{width:6.293333pt;}
._5_c00126{width:8.053333pt;}
._a_c00126{width:9.120000pt;}
._9_c00126{width:10.933333pt;}
._7_c00126{width:11.840000pt;}
._17_c00126{width:13.442725pt;}
._8_c00126{width:14.720000pt;}
._e_c00126{width:15.840000pt;}
._d_c00126{width:16.853333pt;}
._f_c00126{width:17.760000pt;}
._10_c00126{width:18.880000pt;}
._12_c00126{width:20.853333pt;}
._16_c00126{width:21.999963pt;}
._18_c00126{width:23.333307pt;}
.fs1_c00126{font-size:45.333333pt;}
.fs0_c00126{font-size:53.333333pt;}
.y0_c00126{bottom:0.000000pt;}
.y26_c00126{bottom:57.266686pt;}
.y25_c00126{bottom:97.933353pt;}
.y24_c00126{bottom:111.400020pt;}
.y23_c00126{bottom:125.466686pt;}
.y22_c00126{bottom:138.600020pt;}
.y21_c00126{bottom:152.333353pt;}
.y20_c00126{bottom:165.800020pt;}
.y1f_c00126{bottom:179.866686pt;}
.y1e_c00126{bottom:193.266686pt;}
.y1d_c00126{bottom:206.733353pt;}
.y1c_c00126{bottom:247.066686pt;}
.y1b_c00126{bottom:264.333353pt;}
.y1a_c00126{bottom:281.600020pt;}
.y19_c00126{bottom:298.600020pt;}
.y18_c00126{bottom:315.866686pt;}
.y17_c00126{bottom:333.466686pt;}
.y16_c00126{bottom:350.400020pt;}
.y15_c00126{bottom:368.000020pt;}
.y14_c00126{bottom:385.266686pt;}
.y13_c00126{bottom:421.466686pt;}
.y11_c00126{bottom:474.600020pt;}
.y10_c00126{bottom:491.866686pt;}
.yf_c00126{bottom:509.133353pt;}
.ye_c00126{bottom:526.400020pt;}
.yd_c00126{bottom:544.000020pt;}
.yc_c00126{bottom:561.266686pt;}
.yb_c00126{bottom:578.266686pt;}
.ya_c00126{bottom:595.866686pt;}
.y9_c00126{bottom:613.133353pt;}
.y8_c00126{bottom:630.066686pt;}
.y7_c00126{bottom:647.666686pt;}
.y6_c00126{bottom:665.000020pt;}
.y5_c00126{bottom:682.266686pt;}
.y4_c00126{bottom:699.200020pt;}
.y3_c00126{bottom:716.466686pt;}
.y2_c00126{bottom:733.466686pt;}
.y1_c00126{bottom:751.066686pt;}
.y12_c00126{bottom:788.200020pt;}
.h3_c00126{height:44.470052pt;}
.h4_c00126{height:44.492188pt;}
.h2_c00126{height:52.343750pt;}
.h1_c00126{height:851.333333pt;}
.h0_c00126{height:851.533333pt;}
.w1_c00126{width:572.000000pt;}
.w0_c00126{width:572.133333pt;}
.x0_c00126{left:0.000000pt;}
.x2_c00126{left:80.333333pt;}
.x1_c00126{left:81.266667pt;}
.x4_c00126{left:85.733333pt;}
.x3_c00126{left:95.066667pt;}
.x5_c00126{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a73738d9e4aadb7cd24d26fe.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00127;src:url('chunks/assets/font_ce1c7e231bb8cde3eb813851.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00127{word-spacing:-15.000000px;}
.ws0_c00127{word-spacing:-12.750000px;}
.ws2_c00127{word-spacing:0.000000px;}
._9_c00127{margin-left:-11.657901px;}
._8_c00127{margin-left:-9.942099px;}
._11_c00127{margin-left:-7.380000px;}
._15_c00127{margin-left:-6.061557px;}
._2_c00127{margin-left:-4.661247px;}
._4_c00127{margin-left:-2.933673px;}
._1_c00127{margin-left:-1.005363px;}
._d_c00127{width:1.020000px;}
._0_c00127{width:2.034033px;}
._3_c00127{width:3.152922px;}
._5_c00127{width:4.740000px;}
._6_c00127{width:5.843868px;}
._b_c00127{width:6.984759px;}
._7_c00127{width:8.028066px;}
._a_c00127{width:9.300000px;}
._c_c00127{width:11.087736px;}
._e_c00127{width:12.497871px;}
._10_c00127{width:13.503435px;}
._f_c00127{width:16.717413px;}
._12_c00127{width:18.648096px;}
._13_c00127{width:20.409762px;}
._18_c00127{width:22.260735px;}
._17_c00127{width:24.188994px;}
._14_c00127{width:25.689006px;}
._16_c00127{width:26.889036px;}
.fc1_c00127{color:transparent;}
.fc0_c00127{color:rgb(35,31,32);}
.fs0_c00127{font-size:51.000000px;}
.fs1_c00127{font-size:60.000000px;}
.y0_c00127{bottom:0.000000px;}
.y26_c00127{bottom:64.425022px;}
.y25_c00127{bottom:110.175022px;}
.y24_c00127{bottom:125.325022px;}
.y23_c00127{bottom:140.775022px;}
.y22_c00127{bottom:155.925022px;}
.y21_c00127{bottom:171.375022px;}
.y20_c00127{bottom:186.525022px;}
.y1f_c00127{bottom:201.975022px;}
.y1e_c00127{bottom:217.125022px;}
.y1d_c00127{bottom:232.575022px;}
.y1c_c00127{bottom:248.025022px;}
.y1b_c00127{bottom:263.175022px;}
.y1a_c00127{bottom:322.575022px;}
.y19_c00127{bottom:341.625022px;}
.y18_c00127{bottom:361.425022px;}
.y17_c00127{bottom:380.550022px;}
.y16_c00127{bottom:400.350022px;}
.y15_c00127{bottom:419.775022px;}
.y14_c00127{bottom:438.825022px;}
.y13_c00127{bottom:458.625022px;}
.y12_c00127{bottom:477.750022px;}
.y11_c00127{bottom:497.550022px;}
.y10_c00127{bottom:516.600022px;}
.yf_c00127{bottom:536.025022px;}
.ye_c00127{bottom:555.525022px;}
.yd_c00127{bottom:575.325022px;}
.yc_c00127{bottom:613.125022px;}
.yb_c00127{bottom:669.975022px;}
.ya_c00127{bottom:689.775022px;}
.y9_c00127{bottom:708.825022px;}
.y8_c00127{bottom:728.325022px;}
.y7_c00127{bottom:748.125022px;}
.y6_c00127{bottom:767.550022px;}
.y5_c00127{bottom:786.225022px;}
.y4_c00127{bottom:806.025022px;}
.y3_c00127{bottom:825.150022px;}
.y2_c00127{bottom:844.875022px;}
.y1_c00127{bottom:886.725022px;}
.h2_c00127{height:50.028809px;}
.h4_c00127{height:50.053711px;}
.h3_c00127{height:58.886719px;}
.h1_c00127{height:957.750000px;}
.h0_c00127{height:957.975000px;}
.w0_c00127{width:641.850030px;}
.w1_c00127{width:642.000000px;}
.x0_c00127{left:0.000000px;}
.x3_c00127{left:80.250000px;}
.x2_c00127{left:81.375000px;}
.x4_c00127{left:86.400000px;}
.x5_c00127{left:113.400000px;}
.x1_c00127{left:155.850000px;}
.x6_c00127{left:532.050000px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls0_c00127{letter-spacing:0.000000pt;}
.ws1_c00127{word-spacing:-13.333333pt;}
.ws0_c00127{word-spacing:-11.333333pt;}
.ws2_c00127{word-spacing:0.000000pt;}
._9_c00127{margin-left:-10.362579pt;}
._8_c00127{margin-left:-8.837421pt;}
._11_c00127{margin-left:-6.560000pt;}
._15_c00127{margin-left:-5.388051pt;}
._2_c00127{margin-left:-4.143331pt;}
._4_c00127{margin-left:-2.607709pt;}
._1_c00127{margin-left:-0.893656pt;}
._d_c00127{width:0.906667pt;}
._0_c00127{width:1.808029pt;}
._3_c00127{width:2.802597pt;}
._5_c00127{width:4.213333pt;}
._6_c00127{width:5.194549pt;}
._b_c00127{width:6.208675pt;}
._7_c00127{width:7.136059pt;}
._a_c00127{width:8.266667pt;}
._c_c00127{width:9.855765pt;}
._e_c00127{width:11.109219pt;}
._10_c00127{width:12.003053pt;}
._f_c00127{width:14.859923pt;}
._12_c00127{width:16.576085pt;}
._13_c00127{width:18.142011pt;}
._18_c00127{width:19.787320pt;}
._17_c00127{width:21.501328pt;}
._14_c00127{width:22.834672pt;}
._16_c00127{width:23.901365pt;}
.fs0_c00127{font-size:45.333333pt;}
.fs1_c00127{font-size:53.333333pt;}
.y0_c00127{bottom:0.000000pt;}
.y26_c00127{bottom:57.266686pt;}
.y25_c00127{bottom:97.933353pt;}
.y24_c00127{bottom:111.400020pt;}
.y23_c00127{bottom:125.133353pt;}
.y22_c00127{bottom:138.600020pt;}
.y21_c00127{bottom:152.333353pt;}
.y20_c00127{bottom:165.800020pt;}
.y1f_c00127{bottom:179.533353pt;}
.y1e_c00127{bottom:193.000020pt;}
.y1d_c00127{bottom:206.733353pt;}
.y1c_c00127{bottom:220.466686pt;}
.y1b_c00127{bottom:233.933353pt;}
.y1a_c00127{bottom:286.733353pt;}
.y19_c00127{bottom:303.666686pt;}
.y18_c00127{bottom:321.266686pt;}
.y17_c00127{bottom:338.266686pt;}
.y16_c00127{bottom:355.866686pt;}
.y15_c00127{bottom:373.133353pt;}
.y14_c00127{bottom:390.066686pt;}
.y13_c00127{bottom:407.666686pt;}
.y12_c00127{bottom:424.666686pt;}
.y11_c00127{bottom:442.266686pt;}
.y10_c00127{bottom:459.200020pt;}
.yf_c00127{bottom:476.466686pt;}
.ye_c00127{bottom:493.800020pt;}
.yd_c00127{bottom:511.400020pt;}
.yc_c00127{bottom:545.000020pt;}
.yb_c00127{bottom:595.533353pt;}
.ya_c00127{bottom:613.133353pt;}
.y9_c00127{bottom:630.066686pt;}
.y8_c00127{bottom:647.400020pt;}
.y7_c00127{bottom:665.000020pt;}
.y6_c00127{bottom:682.266686pt;}
.y5_c00127{bottom:698.866686pt;}
.y4_c00127{bottom:716.466686pt;}
.y3_c00127{bottom:733.466686pt;}
.y2_c00127{bottom:751.000020pt;}
.y1_c00127{bottom:788.200020pt;}
.h2_c00127{height:44.470052pt;}
.h4_c00127{height:44.492188pt;}
.h3_c00127{height:52.343750pt;}
.h1_c00127{height:851.333333pt;}
.h0_c00127{height:851.533333pt;}
.w0_c00127{width:570.533360pt;}
.w1_c00127{width:570.666667pt;}
.x0_c00127{left:0.000000pt;}
.x3_c00127{left:71.333333pt;}
.x2_c00127{left:72.333333pt;}
.x4_c00127{left:76.800000pt;}
.x5_c00127{left:100.800000pt;}
.x1_c00127{left:138.533333pt;}
.x6_c00127{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_72ef2e501bc453f5f7852a7a.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00128;src:url('chunks/assets/font_eb7ca7459bfe1c7d0e45c0bc.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00128{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00128{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00128{word-spacing:-12.750000px;}
.ws2_c00128{word-spacing:0.000000px;}
._10_c00128{margin-left:-12.960000px;}
._6_c00128{margin-left:-10.500000px;}
._b_c00128{margin-left:-9.300000px;}
._5_c00128{margin-left:-5.100000px;}
._a_c00128{margin-left:-3.600000px;}
._7_c00128{margin-left:-2.460000px;}
._1_c00128{margin-left:-1.140000px;}
._2_c00128{width:1.080000px;}
._3_c00128{width:2.100000px;}
._0_c00128{width:3.180000px;}
._4_c00128{width:4.500000px;}
._8_c00128{width:5.640000px;}
._9_c00128{width:6.840000px;}
._f_c00128{width:8.520000px;}
._16_c00128{width:9.600000px;}
._e_c00128{width:10.860000px;}
._d_c00128{width:12.780000px;}
._c_c00128{width:16.500000px;}
._11_c00128{width:17.520000px;}
._15_c00128{width:18.780000px;}
._13_c00128{width:19.860000px;}
._12_c00128{width:21.000000px;}
._14_c00128{width:22.320000px;}
._17_c00128{width:23.670000px;}
._18_c00128{width:27.630000px;}
.fc1_c00128{color:transparent;}
.fc0_c00128{color:rgb(35,31,32);}
.fs1_c00128{font-size:51.000000px;}
.fs0_c00128{font-size:60.000000px;}
.y0_c00128{bottom:0.000000px;}
.y24_c00128{bottom:64.425022px;}
.y23_c00128{bottom:110.175022px;}
.y22_c00128{bottom:125.325022px;}
.y21_c00128{bottom:140.775022px;}
.y20_c00128{bottom:155.925022px;}
.y1f_c00128{bottom:171.375022px;}
.y1e_c00128{bottom:186.825022px;}
.y1d_c00128{bottom:264.600022px;}
.y1c_c00128{bottom:283.725022px;}
.y1b_c00128{bottom:303.150022px;}
.y1a_c00128{bottom:322.950022px;}
.y19_c00128{bottom:342.075022px;}
.y18_c00128{bottom:361.500022px;}
.y17_c00128{bottom:380.925022px;}
.y16_c00128{bottom:400.350022px;}
.y15_c00128{bottom:419.775022px;}
.y14_c00128{bottom:439.200022px;}
.y13_c00128{bottom:458.625022px;}
.y12_c00128{bottom:478.125022px;}
.y11_c00128{bottom:516.225022px;}
.yf_c00128{bottom:572.775022px;}
.ye_c00128{bottom:592.575022px;}
.yd_c00128{bottom:612.000022px;}
.yc_c00128{bottom:631.425022px;}
.yb_c00128{bottom:650.550022px;}
.ya_c00128{bottom:669.975022px;}
.y9_c00128{bottom:689.775022px;}
.y8_c00128{bottom:709.200022px;}
.y7_c00128{bottom:728.325022px;}
.y6_c00128{bottom:747.750022px;}
.y5_c00128{bottom:767.175022px;}
.y4_c00128{bottom:786.600022px;}
.y3_c00128{bottom:806.025022px;}
.y2_c00128{bottom:825.150022px;}
.y1_c00128{bottom:844.575022px;}
.y10_c00128{bottom:886.725022px;}
.h3_c00128{height:50.028809px;}
.h4_c00128{height:50.053711px;}
.h2_c00128{height:58.886719px;}
.h1_c00128{height:957.750000px;}
.h0_c00128{height:957.975000px;}
.w1_c00128{width:643.500000px;}
.w0_c00128{width:643.650000px;}
.x0_c00128{left:0.000000px;}
.x1_c00128{left:91.050000px;}
.x5_c00128{left:92.175000px;}
.x3_c00128{left:96.450000px;}
.x2_c00128{left:107.250000px;}
.x4_c00128{left:123.825000px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls0_c00128{letter-spacing:0.000000pt;}
.ws0_c00128{word-spacing:-13.333333pt;}
.ws1_c00128{word-spacing:-11.333333pt;}
.ws2_c00128{word-spacing:0.000000pt;}
._10_c00128{margin-left:-11.520000pt;}
._6_c00128{margin-left:-9.333333pt;}
._b_c00128{margin-left:-8.266667pt;}
._5_c00128{margin-left:-4.533333pt;}
._a_c00128{margin-left:-3.200000pt;}
._7_c00128{margin-left:-2.186667pt;}
._1_c00128{margin-left:-1.013333pt;}
._2_c00128{width:0.960000pt;}
._3_c00128{width:1.866667pt;}
._0_c00128{width:2.826667pt;}
._4_c00128{width:4.000000pt;}
._8_c00128{width:5.013333pt;}
._9_c00128{width:6.080000pt;}
._f_c00128{width:7.573333pt;}
._16_c00128{width:8.533333pt;}
._e_c00128{width:9.653333pt;}
._d_c00128{width:11.360000pt;}
._c_c00128{width:14.666667pt;}
._11_c00128{width:15.573333pt;}
._15_c00128{width:16.693333pt;}
._13_c00128{width:17.653333pt;}
._12_c00128{width:18.666667pt;}
._14_c00128{width:19.840000pt;}
._17_c00128{width:21.040000pt;}
._18_c00128{width:24.560000pt;}
.fs1_c00128{font-size:45.333333pt;}
.fs0_c00128{font-size:53.333333pt;}
.y0_c00128{bottom:0.000000pt;}
.y24_c00128{bottom:57.266686pt;}
.y23_c00128{bottom:97.933353pt;}
.y22_c00128{bottom:111.400020pt;}
.y21_c00128{bottom:125.133353pt;}
.y20_c00128{bottom:138.600020pt;}
.y1f_c00128{bottom:152.333353pt;}
.y1e_c00128{bottom:166.066686pt;}
.y1d_c00128{bottom:235.200020pt;}
.y1c_c00128{bottom:252.200020pt;}
.y1b_c00128{bottom:269.466686pt;}
.y1a_c00128{bottom:287.066686pt;}
.y19_c00128{bottom:304.066686pt;}
.y18_c00128{bottom:321.333353pt;}
.y17_c00128{bottom:338.600020pt;}
.y16_c00128{bottom:355.866686pt;}
.y15_c00128{bottom:373.133353pt;}
.y14_c00128{bottom:390.400020pt;}
.y13_c00128{bottom:407.666686pt;}
.y12_c00128{bottom:425.000020pt;}
.y11_c00128{bottom:458.866686pt;}
.yf_c00128{bottom:509.133353pt;}
.ye_c00128{bottom:526.733353pt;}
.yd_c00128{bottom:544.000020pt;}
.yc_c00128{bottom:561.266686pt;}
.yb_c00128{bottom:578.266686pt;}
.ya_c00128{bottom:595.533353pt;}
.y9_c00128{bottom:613.133353pt;}
.y8_c00128{bottom:630.400020pt;}
.y7_c00128{bottom:647.400020pt;}
.y6_c00128{bottom:664.666686pt;}
.y5_c00128{bottom:681.933353pt;}
.y4_c00128{bottom:699.200020pt;}
.y3_c00128{bottom:716.466686pt;}
.y2_c00128{bottom:733.466686pt;}
.y1_c00128{bottom:750.733353pt;}
.y10_c00128{bottom:788.200020pt;}
.h3_c00128{height:44.470052pt;}
.h4_c00128{height:44.492188pt;}
.h2_c00128{height:52.343750pt;}
.h1_c00128{height:851.333333pt;}
.h0_c00128{height:851.533333pt;}
.w1_c00128{width:572.000000pt;}
.w0_c00128{width:572.133333pt;}
.x0_c00128{left:0.000000pt;}
.x1_c00128{left:80.933333pt;}
.x5_c00128{left:81.933333pt;}
.x3_c00128{left:85.733333pt;}
.x2_c00128{left:95.333333pt;}
.x4_c00128{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b2c7b8d453c68994b9689229.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00129;src:url('chunks/assets/font_bb9c240aca66cf1eb882bc72.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.ls0_c00129{letter-spacing:0.000000px;}
.sc__c00129{text-shadow:none;}
.sc0_c00129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00129{-webkit-text-stroke:0px transparent;}
.sc0_c00129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00129{word-spacing:-15.000000px;}
.ws1_c00129{word-spacing:-12.750000px;}
.ws2_c00129{word-spacing:0.000000px;}
._11_c00129{margin-left:-11.700000px;}
._3_c00129{margin-left:-10.200000px;}
._2_c00129{margin-left:-8.400000px;}
._16_c00129{margin-left:-5.489967px;}
._13_c00129{margin-left:-3.900000px;}
._14_c00129{margin-left:-2.511003px;}
._4_c00129{margin-left:-1.440000px;}
._0_c00129{width:1.080000px;}
._1_c00129{width:2.880000px;}
._6_c00129{width:3.900000px;}
._7_c00129{width:5.280000px;}
._5_c00129{width:6.780000px;}
._a_c00129{width:7.980000px;}
._8_c00129{width:9.060000px;}
._9_c00129{width:10.740000px;}
._b_c00129{width:12.300000px;}
._12_c00129{width:13.440000px;}
._c_c00129{width:16.680000px;}
._d_c00129{width:18.000000px;}
._e_c00129{width:19.080000px;}
._f_c00129{width:21.420000px;}
._10_c00129{width:22.440000px;}
._15_c00129{width:25.701003px;}
._17_c00129{width:26.901003px;}
.fc1_c00129{color:transparent;}
.fc0_c00129{color:rgb(35,31,32);}
.fs1_c00129{font-size:51.000000px;}
.fs0_c00129{font-size:60.000000px;}
.y0_c00129{bottom:0.000000px;}
.y23_c00129{bottom:64.425022px;}
.y22_c00129{bottom:110.175022px;}
.y21_c00129{bottom:125.325022px;}
.y20_c00129{bottom:140.025022px;}
.y1f_c00129{bottom:155.925022px;}
.y1e_c00129{bottom:245.175022px;}
.y1d_c00129{bottom:264.225022px;}
.y1c_c00129{bottom:283.725022px;}
.y1b_c00129{bottom:303.525022px;}
.y1a_c00129{bottom:322.950022px;}
.y19_c00129{bottom:341.625022px;}
.y18_c00129{bottom:380.175022px;}
.y16_c00129{bottom:437.025022px;}
.y15_c00129{bottom:456.450022px;}
.y14_c00129{bottom:475.950022px;}
.y13_c00129{bottom:495.375022px;}
.y12_c00129{bottom:514.800022px;}
.y11_c00129{bottom:534.300022px;}
.y10_c00129{bottom:553.725022px;}
.yf_c00129{bottom:573.150022px;}
.ye_c00129{bottom:592.575022px;}
.yd_c00129{bottom:612.000022px;}
.yc_c00129{bottom:631.425022px;}
.yb_c00129{bottom:650.925022px;}
.ya_c00129{bottom:670.350022px;}
.y9_c00129{bottom:689.775022px;}
.y8_c00129{bottom:709.200022px;}
.y7_c00129{bottom:728.325022px;}
.y6_c00129{bottom:748.125022px;}
.y5_c00129{bottom:767.475022px;}
.y4_c00129{bottom:786.600022px;}
.y3_c00129{bottom:805.725022px;}
.y2_c00129{bottom:825.525022px;}
.y1_c00129{bottom:844.950022px;}
.y17_c00129{bottom:886.725022px;}
.h3_c00129{height:50.028809px;}
.h4_c00129{height:50.053711px;}
.h2_c00129{height:58.886719px;}
.h1_c00129{height:957.750000px;}
.h0_c00129{height:957.975000px;}
.w0_c00129{width:641.850030px;}
.w1_c00129{width:642.000000px;}
.x0_c00129{left:0.000000px;}
.x1_c00129{left:80.250000px;}
.x2_c00129{left:81.375000px;}
.x5_c00129{left:86.400000px;}
.x3_c00129{left:96.150000px;}
.x6_c00129{left:114.450000px;}
.x4_c00129{left:155.850000px;}
.x7_c00129{left:532.050000px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls0_c00129{letter-spacing:0.000000pt;}
.ws0_c00129{word-spacing:-13.333333pt;}
.ws1_c00129{word-spacing:-11.333333pt;}
.ws2_c00129{word-spacing:0.000000pt;}
._11_c00129{margin-left:-10.400000pt;}
._3_c00129{margin-left:-9.066667pt;}
._2_c00129{margin-left:-7.466667pt;}
._16_c00129{margin-left:-4.879971pt;}
._13_c00129{margin-left:-3.466667pt;}
._14_c00129{margin-left:-2.232003pt;}
._4_c00129{margin-left:-1.280000pt;}
._0_c00129{width:0.960000pt;}
._1_c00129{width:2.560000pt;}
._6_c00129{width:3.466667pt;}
._7_c00129{width:4.693333pt;}
._5_c00129{width:6.026667pt;}
._a_c00129{width:7.093333pt;}
._8_c00129{width:8.053333pt;}
._9_c00129{width:9.546667pt;}
._b_c00129{width:10.933333pt;}
._12_c00129{width:11.946667pt;}
._c_c00129{width:14.826667pt;}
._d_c00129{width:16.000000pt;}
._e_c00129{width:16.960000pt;}
._f_c00129{width:19.040000pt;}
._10_c00129{width:19.946667pt;}
._15_c00129{width:22.845336pt;}
._17_c00129{width:23.912003pt;}
.fs1_c00129{font-size:45.333333pt;}
.fs0_c00129{font-size:53.333333pt;}
.y0_c00129{bottom:0.000000pt;}
.y23_c00129{bottom:57.266686pt;}
.y22_c00129{bottom:97.933353pt;}
.y21_c00129{bottom:111.400020pt;}
.y20_c00129{bottom:124.466686pt;}
.y1f_c00129{bottom:138.600020pt;}
.y1e_c00129{bottom:217.933353pt;}
.y1d_c00129{bottom:234.866686pt;}
.y1c_c00129{bottom:252.200020pt;}
.y1b_c00129{bottom:269.800020pt;}
.y1a_c00129{bottom:287.066686pt;}
.y19_c00129{bottom:303.666686pt;}
.y18_c00129{bottom:337.933353pt;}
.y16_c00129{bottom:388.466686pt;}
.y15_c00129{bottom:405.733353pt;}
.y14_c00129{bottom:423.066686pt;}
.y13_c00129{bottom:440.333353pt;}
.y12_c00129{bottom:457.600020pt;}
.y11_c00129{bottom:474.933353pt;}
.y10_c00129{bottom:492.200020pt;}
.yf_c00129{bottom:509.466686pt;}
.ye_c00129{bottom:526.733353pt;}
.yd_c00129{bottom:544.000020pt;}
.yc_c00129{bottom:561.266686pt;}
.yb_c00129{bottom:578.600020pt;}
.ya_c00129{bottom:595.866686pt;}
.y9_c00129{bottom:613.133353pt;}
.y8_c00129{bottom:630.400020pt;}
.y7_c00129{bottom:647.400020pt;}
.y6_c00129{bottom:665.000020pt;}
.y5_c00129{bottom:682.200020pt;}
.y4_c00129{bottom:699.200020pt;}
.y3_c00129{bottom:716.200020pt;}
.y2_c00129{bottom:733.800020pt;}
.y1_c00129{bottom:751.066686pt;}
.y17_c00129{bottom:788.200020pt;}
.h3_c00129{height:44.470052pt;}
.h4_c00129{height:44.492188pt;}
.h2_c00129{height:52.343750pt;}
.h1_c00129{height:851.333333pt;}
.h0_c00129{height:851.533333pt;}
.w0_c00129{width:570.533360pt;}
.w1_c00129{width:570.666667pt;}
.x0_c00129{left:0.000000pt;}
.x1_c00129{left:71.333333pt;}
.x2_c00129{left:72.333333pt;}
.x5_c00129{left:76.800000pt;}
.x3_c00129{left:85.466667pt;}
.x6_c00129{left:101.733333pt;}
.x4_c00129{left:138.533333pt;}
.x7_c00129{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_87f61189040e0de06d659460.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00130;src:url('chunks/assets/font_9ebe33dc5c442811b302df80.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.ls0_c00130{letter-spacing:0.000000px;}
.sc__c00130{text-shadow:none;}
.sc0_c00130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00130{-webkit-text-stroke:0px transparent;}
.sc0_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00130{word-spacing:-15.000000px;}
.ws1_c00130{word-spacing:-12.750000px;}
.ws2_c00130{word-spacing:0.000000px;}
._e_c00130{margin-left:-12.900000px;}
._7_c00130{margin-left:-9.996984px;}
._6_c00130{margin-left:-8.603016px;}
._b_c00130{margin-left:-7.599510px;}
._d_c00130{margin-left:-5.759154px;}
._11_c00130{margin-left:-3.887055px;}
._10_c00130{margin-left:-2.880000px;}
._0_c00130{margin-left:-1.760979px;}
._2_c00130{width:1.115931px;}
._1_c00130{width:2.699991px;}
._5_c00130{width:3.900018px;}
._8_c00130{width:5.760000px;}
._c_c00130{width:7.658214px;}
._f_c00130{width:8.688156px;}
._a_c00130{width:9.828147px;}
._15_c00130{width:10.866666px;}
._9_c00130{width:11.974365px;}
._4_c00130{width:17.773305px;}
._3_c00130{width:19.428138px;}
._12_c00130{width:20.771958px;}
._14_c00130{width:23.771916px;}
._13_c00130{width:25.271958px;}
.fc1_c00130{color:transparent;}
.fc0_c00130{color:rgb(35,31,32);}
.fs0_c00130{font-size:51.000000px;}
.fs1_c00130{font-size:60.000000px;}
.y0_c00130{bottom:0.000000px;}
.y28_c00130{bottom:64.425022px;}
.y27_c00130{bottom:110.175022px;}
.y26_c00130{bottom:125.325022px;}
.y25_c00130{bottom:140.775022px;}
.y24_c00130{bottom:156.225022px;}
.y23_c00130{bottom:171.375022px;}
.y22_c00130{bottom:186.525022px;}
.y21_c00130{bottom:202.350022px;}
.y20_c00130{bottom:217.125022px;}
.y1f_c00130{bottom:232.575022px;}
.y1e_c00130{bottom:248.025022px;}
.y1d_c00130{bottom:263.175022px;}
.y1c_c00130{bottom:278.625022px;}
.y1b_c00130{bottom:293.775022px;}
.y1a_c00130{bottom:308.925022px;}
.y19_c00130{bottom:349.200022px;}
.y18_c00130{bottom:368.325022px;}
.y17_c00130{bottom:387.750022px;}
.y16_c00130{bottom:407.175022px;}
.y15_c00130{bottom:426.975022px;}
.y14_c00130{bottom:446.025022px;}
.y13_c00130{bottom:465.525022px;}
.y12_c00130{bottom:484.575022px;}
.y11_c00130{bottom:504.000022px;}
.y10_c00130{bottom:523.425022px;}
.yf_c00130{bottom:543.225022px;}
.ye_c00130{bottom:562.350022px;}
.yd_c00130{bottom:600.525022px;}
.yc_c00130{bottom:650.925022px;}
.yb_c00130{bottom:670.350022px;}
.ya_c00130{bottom:689.400022px;}
.y9_c00130{bottom:708.825022px;}
.y8_c00130{bottom:728.625022px;}
.y7_c00130{bottom:747.750022px;}
.y6_c00130{bottom:767.550022px;}
.y5_c00130{bottom:786.600022px;}
.y4_c00130{bottom:806.400022px;}
.y3_c00130{bottom:825.525022px;}
.y2_c00130{bottom:844.950022px;}
.y1_c00130{bottom:886.725022px;}
.h2_c00130{height:50.028809px;}
.h4_c00130{height:50.053711px;}
.h3_c00130{height:58.886719px;}
.h1_c00130{height:957.750000px;}
.h0_c00130{height:957.975000px;}
.w1_c00130{width:643.500000px;}
.w0_c00130{width:643.650000px;}
.x0_c00130{left:0.000000px;}
.x1_c00130{left:90.750000px;}
.x2_c00130{left:91.800000px;}
.x4_c00130{left:96.450000px;}
.x3_c00130{left:107.250000px;}
.x5_c00130{left:124.200000px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls0_c00130{letter-spacing:0.000000pt;}
.ws0_c00130{word-spacing:-13.333333pt;}
.ws1_c00130{word-spacing:-11.333333pt;}
.ws2_c00130{word-spacing:0.000000pt;}
._e_c00130{margin-left:-11.466667pt;}
._7_c00130{margin-left:-8.886208pt;}
._6_c00130{margin-left:-7.647125pt;}
._b_c00130{margin-left:-6.755120pt;}
._d_c00130{margin-left:-5.119248pt;}
._11_c00130{margin-left:-3.455160pt;}
._10_c00130{margin-left:-2.560000pt;}
._0_c00130{margin-left:-1.565315pt;}
._2_c00130{width:0.991939pt;}
._1_c00130{width:2.399992pt;}
._5_c00130{width:3.466683pt;}
._8_c00130{width:5.120000pt;}
._c_c00130{width:6.807301pt;}
._f_c00130{width:7.722805pt;}
._a_c00130{width:8.736131pt;}
._15_c00130{width:9.659259pt;}
._9_c00130{width:10.643880pt;}
._4_c00130{width:15.798493pt;}
._3_c00130{width:17.269456pt;}
._12_c00130{width:18.463963pt;}
._14_c00130{width:21.130592pt;}
._13_c00130{width:22.463963pt;}
.fs0_c00130{font-size:45.333333pt;}
.fs1_c00130{font-size:53.333333pt;}
.y0_c00130{bottom:0.000000pt;}
.y28_c00130{bottom:57.266686pt;}
.y27_c00130{bottom:97.933353pt;}
.y26_c00130{bottom:111.400020pt;}
.y25_c00130{bottom:125.133353pt;}
.y24_c00130{bottom:138.866686pt;}
.y23_c00130{bottom:152.333353pt;}
.y22_c00130{bottom:165.800020pt;}
.y21_c00130{bottom:179.866686pt;}
.y20_c00130{bottom:193.000020pt;}
.y1f_c00130{bottom:206.733353pt;}
.y1e_c00130{bottom:220.466686pt;}
.y1d_c00130{bottom:233.933353pt;}
.y1c_c00130{bottom:247.666686pt;}
.y1b_c00130{bottom:261.133353pt;}
.y1a_c00130{bottom:274.600020pt;}
.y19_c00130{bottom:310.400020pt;}
.y18_c00130{bottom:327.400020pt;}
.y17_c00130{bottom:344.666686pt;}
.y16_c00130{bottom:361.933353pt;}
.y15_c00130{bottom:379.533353pt;}
.y14_c00130{bottom:396.466686pt;}
.y13_c00130{bottom:413.800020pt;}
.y12_c00130{bottom:430.733353pt;}
.y11_c00130{bottom:448.000020pt;}
.y10_c00130{bottom:465.266686pt;}
.yf_c00130{bottom:482.866686pt;}
.ye_c00130{bottom:499.866686pt;}
.yd_c00130{bottom:533.800020pt;}
.yc_c00130{bottom:578.600020pt;}
.yb_c00130{bottom:595.866686pt;}
.ya_c00130{bottom:612.800020pt;}
.y9_c00130{bottom:630.066686pt;}
.y8_c00130{bottom:647.666686pt;}
.y7_c00130{bottom:664.666686pt;}
.y6_c00130{bottom:682.266686pt;}
.y5_c00130{bottom:699.200020pt;}
.y4_c00130{bottom:716.800020pt;}
.y3_c00130{bottom:733.800020pt;}
.y2_c00130{bottom:751.066686pt;}
.y1_c00130{bottom:788.200020pt;}
.h2_c00130{height:44.470052pt;}
.h4_c00130{height:44.492188pt;}
.h3_c00130{height:52.343750pt;}
.h1_c00130{height:851.333333pt;}
.h0_c00130{height:851.533333pt;}
.w1_c00130{width:572.000000pt;}
.w0_c00130{width:572.133333pt;}
.x0_c00130{left:0.000000pt;}
.x1_c00130{left:80.666667pt;}
.x2_c00130{left:81.600000pt;}
.x4_c00130{left:85.733333pt;}
.x3_c00130{left:95.333333pt;}
.x5_c00130{left:110.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_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_2c76031452bc7b6d378697b3.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00131;src:url('chunks/assets/font_d304cd69e28e87efef4b9500.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00131{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_c00131{vertical-align:0.000000px;}
.ls0_c00131{letter-spacing:0.000000px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00131{word-spacing:-15.000000px;}
.ws1_c00131{word-spacing:-12.750000px;}
.ws2_c00131{word-spacing:0.000000px;}
._10_c00131{margin-left:-11.640000px;}
._d_c00131{margin-left:-10.560000px;}
._e_c00131{margin-left:-9.240000px;}
._15_c00131{margin-left:-6.632976px;}
._f_c00131{margin-left:-4.800000px;}
._14_c00131{margin-left:-3.540000px;}
._c_c00131{margin-left:-2.460000px;}
._3_c00131{margin-left:-1.380000px;}
._0_c00131{width:1.920000px;}
._5_c00131{width:3.180000px;}
._a_c00131{width:4.380000px;}
._b_c00131{width:5.940000px;}
._1_c00131{width:7.680000px;}
._2_c00131{width:9.000000px;}
._7_c00131{width:10.560000px;}
._6_c00131{width:12.060000px;}
._4_c00131{width:13.500000px;}
._17_c00131{width:14.547027px;}
._9_c00131{width:16.740000px;}
._18_c00131{width:17.807976px;}
._8_c00131{width:18.840000px;}
._11_c00131{width:19.980000px;}
._12_c00131{width:22.440000px;}
._13_c00131{width:23.580000px;}
._16_c00131{width:26.669970px;}
._19_c00131{width:27.870000px;}
.fc1_c00131{color:transparent;}
.fc0_c00131{color:rgb(35,31,32);}
.fs1_c00131{font-size:51.000000px;}
.fs0_c00131{font-size:60.000000px;}
.y0_c00131{bottom:0.000000px;}
.y28_c00131{bottom:64.425022px;}
.y27_c00131{bottom:110.175022px;}
.y26_c00131{bottom:125.325022px;}
.y25_c00131{bottom:140.775022px;}
.y24_c00131{bottom:155.925022px;}
.y23_c00131{bottom:171.375022px;}
.y22_c00131{bottom:186.525022px;}
.y21_c00131{bottom:202.350022px;}
.y20_c00131{bottom:217.125022px;}
.y1f_c00131{bottom:232.575022px;}
.y1d_c00131{bottom:301.350022px;}
.y1c_c00131{bottom:320.400022px;}
.y1b_c00131{bottom:339.825022px;}
.y1a_c00131{bottom:358.950022px;}
.y19_c00131{bottom:378.750022px;}
.y18_c00131{bottom:397.800022px;}
.y17_c00131{bottom:417.600022px;}
.y16_c00131{bottom:437.025022px;}
.y15_c00131{bottom:456.525022px;}
.y14_c00131{bottom:475.575022px;}
.y13_c00131{bottom:495.375022px;}
.y12_c00131{bottom:514.800022px;}
.y11_c00131{bottom:533.925022px;}
.y10_c00131{bottom:553.725022px;}
.yf_c00131{bottom:573.150022px;}
.ye_c00131{bottom:592.200022px;}
.yd_c00131{bottom:611.625022px;}
.yc_c00131{bottom:631.125022px;}
.yb_c00131{bottom:650.550022px;}
.ya_c00131{bottom:669.975022px;}
.y9_c00131{bottom:689.775022px;}
.y8_c00131{bottom:709.200022px;}
.y7_c00131{bottom:728.325022px;}
.y6_c00131{bottom:748.125022px;}
.y5_c00131{bottom:767.550022px;}
.y4_c00131{bottom:786.225022px;}
.y3_c00131{bottom:805.725022px;}
.y2_c00131{bottom:825.150022px;}
.y1_c00131{bottom:844.950022px;}
.y1e_c00131{bottom:886.725022px;}
.h3_c00131{height:50.028809px;}
.h4_c00131{height:50.053711px;}
.h2_c00131{height:58.886719px;}
.h1_c00131{height:957.750000px;}
.h0_c00131{height:957.975000px;}
.w0_c00131{width:641.850030px;}
.w1_c00131{width:642.000000px;}
.x0_c00131{left:0.000000px;}
.x1_c00131{left:81.000000px;}
.x4_c00131{left:86.400000px;}
.x2_c00131{left:96.150000px;}
.x5_c00131{left:113.775000px;}
.x3_c00131{left:155.850000px;}
.x6_c00131{left:532.050000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls0_c00131{letter-spacing:0.000000pt;}
.ws0_c00131{word-spacing:-13.333333pt;}
.ws1_c00131{word-spacing:-11.333333pt;}
.ws2_c00131{word-spacing:0.000000pt;}
._10_c00131{margin-left:-10.346667pt;}
._d_c00131{margin-left:-9.386667pt;}
._e_c00131{margin-left:-8.213333pt;}
._15_c00131{margin-left:-5.895979pt;}
._f_c00131{margin-left:-4.266667pt;}
._14_c00131{margin-left:-3.146667pt;}
._c_c00131{margin-left:-2.186667pt;}
._3_c00131{margin-left:-1.226667pt;}
._0_c00131{width:1.706667pt;}
._5_c00131{width:2.826667pt;}
._a_c00131{width:3.893333pt;}
._b_c00131{width:5.280000pt;}
._1_c00131{width:6.826667pt;}
._2_c00131{width:8.000000pt;}
._7_c00131{width:9.386667pt;}
._6_c00131{width:10.720000pt;}
._4_c00131{width:12.000000pt;}
._17_c00131{width:12.930691pt;}
._9_c00131{width:14.880000pt;}
._18_c00131{width:15.829312pt;}
._8_c00131{width:16.746667pt;}
._11_c00131{width:17.760000pt;}
._12_c00131{width:19.946667pt;}
._13_c00131{width:20.960000pt;}
._16_c00131{width:23.706640pt;}
._19_c00131{width:24.773333pt;}
.fs1_c00131{font-size:45.333333pt;}
.fs0_c00131{font-size:53.333333pt;}
.y0_c00131{bottom:0.000000pt;}
.y28_c00131{bottom:57.266686pt;}
.y27_c00131{bottom:97.933353pt;}
.y26_c00131{bottom:111.400020pt;}
.y25_c00131{bottom:125.133353pt;}
.y24_c00131{bottom:138.600020pt;}
.y23_c00131{bottom:152.333353pt;}
.y22_c00131{bottom:165.800020pt;}
.y21_c00131{bottom:179.866686pt;}
.y20_c00131{bottom:193.000020pt;}
.y1f_c00131{bottom:206.733353pt;}
.y1d_c00131{bottom:267.866686pt;}
.y1c_c00131{bottom:284.800020pt;}
.y1b_c00131{bottom:302.066686pt;}
.y1a_c00131{bottom:319.066686pt;}
.y19_c00131{bottom:336.666686pt;}
.y18_c00131{bottom:353.600020pt;}
.y17_c00131{bottom:371.200020pt;}
.y16_c00131{bottom:388.466686pt;}
.y15_c00131{bottom:405.800020pt;}
.y14_c00131{bottom:422.733353pt;}
.y13_c00131{bottom:440.333353pt;}
.y12_c00131{bottom:457.600020pt;}
.y11_c00131{bottom:474.600020pt;}
.y10_c00131{bottom:492.200020pt;}
.yf_c00131{bottom:509.466686pt;}
.ye_c00131{bottom:526.400020pt;}
.yd_c00131{bottom:543.666686pt;}
.yc_c00131{bottom:561.000020pt;}
.yb_c00131{bottom:578.266686pt;}
.ya_c00131{bottom:595.533353pt;}
.y9_c00131{bottom:613.133353pt;}
.y8_c00131{bottom:630.400020pt;}
.y7_c00131{bottom:647.400020pt;}
.y6_c00131{bottom:665.000020pt;}
.y5_c00131{bottom:682.266686pt;}
.y4_c00131{bottom:698.866686pt;}
.y3_c00131{bottom:716.200020pt;}
.y2_c00131{bottom:733.466686pt;}
.y1_c00131{bottom:751.066686pt;}
.y1e_c00131{bottom:788.200020pt;}
.h3_c00131{height:44.470052pt;}
.h4_c00131{height:44.492188pt;}
.h2_c00131{height:52.343750pt;}
.h1_c00131{height:851.333333pt;}
.h0_c00131{height:851.533333pt;}
.w0_c00131{width:570.533360pt;}
.w1_c00131{width:570.666667pt;}
.x0_c00131{left:0.000000pt;}
.x1_c00131{left:72.000000pt;}
.x4_c00131{left:76.800000pt;}
.x2_c00131{left:85.466667pt;}
.x5_c00131{left:101.133333pt;}
.x3_c00131{left:138.533333pt;}
.x6_c00131{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_50df65f2368042141fde326c.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00132;src:url('chunks/assets/font_fa34ea26f9c3c69c8513c80a.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00132{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_c00132{vertical-align:0.000000px;}
.ls1_c00132{letter-spacing:0.000000px;}
.ls0_c00132{letter-spacing:16.050000px;}
.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:-15.000000px;}
.ws0_c00132{word-spacing:-12.750000px;}
.ws2_c00132{word-spacing:0.000000px;}
._12_c00132{margin-left:-10.200000px;}
._d_c00132{margin-left:-8.460000px;}
._13_c00132{margin-left:-6.840000px;}
._11_c00132{margin-left:-4.020000px;}
._8_c00132{margin-left:-2.700000px;}
._0_c00132{margin-left:-1.680000px;}
._2_c00132{width:1.740000px;}
._3_c00132{width:3.660000px;}
._7_c00132{width:5.580000px;}
._e_c00132{width:6.600000px;}
._10_c00132{width:7.800000px;}
._1_c00132{width:8.820000px;}
._5_c00132{width:10.080000px;}
._a_c00132{width:11.280000px;}
._6_c00132{width:12.600000px;}
._4_c00132{width:13.980000px;}
._c_c00132{width:16.260000px;}
._9_c00132{width:17.340000px;}
._b_c00132{width:18.900000px;}
._f_c00132{width:19.980000px;}
.fc2_c00132{color:transparent;}
.fc1_c00132{color:rgb(0,0,0);}
.fc0_c00132{color:rgb(35,31,32);}
.fs1_c00132{font-size:51.000000px;}
.fs0_c00132{font-size:60.000000px;}
.y0_c00132{bottom:0.000000px;}
.y27_c00132{bottom:64.800022px;}
.y26_c00132{bottom:110.175022px;}
.y25_c00132{bottom:125.325022px;}
.y24_c00132{bottom:141.150022px;}
.y22_c00132{bottom:181.800022px;}
.y21_c00132{bottom:201.225022px;}
.y20_c00132{bottom:221.025022px;}
.y1f_c00132{bottom:240.525022px;}
.y1e_c00132{bottom:259.950022px;}
.y1d_c00132{bottom:279.000022px;}
.y1c_c00132{bottom:298.800022px;}
.y1b_c00132{bottom:317.925022px;}
.y1a_c00132{bottom:337.725022px;}
.y19_c00132{bottom:356.775022px;}
.y18_c00132{bottom:376.200022px;}
.y17_c00132{bottom:396.075022px;}
.y16_c00132{bottom:415.500022px;}
.y15_c00132{bottom:434.925022px;}
.y14_c00132{bottom:454.350022px;}
.y13_c00132{bottom:473.400022px;}
.y12_c00132{bottom:493.200022px;}
.y11_c00132{bottom:512.325022px;}
.y10_c00132{bottom:532.125022px;}
.yf_c00132{bottom:551.550022px;}
.ye_c00132{bottom:570.225022px;}
.yd_c00132{bottom:589.725022px;}
.yc_c00132{bottom:609.525022px;}
.yb_c00132{bottom:628.575022px;}
.ya_c00132{bottom:648.375022px;}
.y9_c00132{bottom:667.425022px;}
.y8_c00132{bottom:687.225022px;}
.y7_c00132{bottom:706.725022px;}
.y6_c00132{bottom:725.775022px;}
.y5_c00132{bottom:745.575022px;}
.y4_c00132{bottom:765.000022px;}
.y3_c00132{bottom:784.425022px;}
.y2_c00132{bottom:803.550022px;}
.y1_c00132{bottom:844.950022px;}
.y23_c00132{bottom:886.725022px;}
.h3_c00132{height:50.028809px;}
.h4_c00132{height:50.053711px;}
.h2_c00132{height:58.886719px;}
.h1_c00132{height:957.750000px;}
.h0_c00132{height:957.975000px;}
.w1_c00132{width:643.500000px;}
.w0_c00132{width:643.650000px;}
.x0_c00132{left:0.000000px;}
.x3_c00132{left:90.375000px;}
.x1_c00132{left:91.800000px;}
.x4_c00132{left:96.450000px;}
.x2_c00132{left:107.250000px;}
.x5_c00132{left:124.200000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls1_c00132{letter-spacing:0.000000pt;}
.ls0_c00132{letter-spacing:14.266667pt;}
.ws1_c00132{word-spacing:-13.333333pt;}
.ws0_c00132{word-spacing:-11.333333pt;}
.ws2_c00132{word-spacing:0.000000pt;}
._12_c00132{margin-left:-9.066667pt;}
._d_c00132{margin-left:-7.520000pt;}
._13_c00132{margin-left:-6.080000pt;}
._11_c00132{margin-left:-3.573333pt;}
._8_c00132{margin-left:-2.400000pt;}
._0_c00132{margin-left:-1.493333pt;}
._2_c00132{width:1.546667pt;}
._3_c00132{width:3.253333pt;}
._7_c00132{width:4.960000pt;}
._e_c00132{width:5.866667pt;}
._10_c00132{width:6.933333pt;}
._1_c00132{width:7.840000pt;}
._5_c00132{width:8.960000pt;}
._a_c00132{width:10.026667pt;}
._6_c00132{width:11.200000pt;}
._4_c00132{width:12.426667pt;}
._c_c00132{width:14.453333pt;}
._9_c00132{width:15.413333pt;}
._b_c00132{width:16.800000pt;}
._f_c00132{width:17.760000pt;}
.fs1_c00132{font-size:45.333333pt;}
.fs0_c00132{font-size:53.333333pt;}
.y0_c00132{bottom:0.000000pt;}
.y27_c00132{bottom:57.600020pt;}
.y26_c00132{bottom:97.933353pt;}
.y25_c00132{bottom:111.400020pt;}
.y24_c00132{bottom:125.466686pt;}
.y22_c00132{bottom:161.600020pt;}
.y21_c00132{bottom:178.866686pt;}
.y20_c00132{bottom:196.466686pt;}
.y1f_c00132{bottom:213.800020pt;}
.y1e_c00132{bottom:231.066686pt;}
.y1d_c00132{bottom:248.000020pt;}
.y1c_c00132{bottom:265.600020pt;}
.y1b_c00132{bottom:282.600020pt;}
.y1a_c00132{bottom:300.200020pt;}
.y19_c00132{bottom:317.133353pt;}
.y18_c00132{bottom:334.400020pt;}
.y17_c00132{bottom:352.066686pt;}
.y16_c00132{bottom:369.333353pt;}
.y15_c00132{bottom:386.600020pt;}
.y14_c00132{bottom:403.866686pt;}
.y13_c00132{bottom:420.800020pt;}
.y12_c00132{bottom:438.400020pt;}
.y11_c00132{bottom:455.400020pt;}
.y10_c00132{bottom:473.000020pt;}
.yf_c00132{bottom:490.266686pt;}
.ye_c00132{bottom:506.866686pt;}
.yd_c00132{bottom:524.200020pt;}
.yc_c00132{bottom:541.800020pt;}
.yb_c00132{bottom:558.733353pt;}
.ya_c00132{bottom:576.333353pt;}
.y9_c00132{bottom:593.266686pt;}
.y8_c00132{bottom:610.866686pt;}
.y7_c00132{bottom:628.200020pt;}
.y6_c00132{bottom:645.133353pt;}
.y5_c00132{bottom:662.733353pt;}
.y4_c00132{bottom:680.000020pt;}
.y3_c00132{bottom:697.266686pt;}
.y2_c00132{bottom:714.266686pt;}
.y1_c00132{bottom:751.066686pt;}
.y23_c00132{bottom:788.200020pt;}
.h3_c00132{height:44.470052pt;}
.h4_c00132{height:44.492188pt;}
.h2_c00132{height:52.343750pt;}
.h1_c00132{height:851.333333pt;}
.h0_c00132{height:851.533333pt;}
.w1_c00132{width:572.000000pt;}
.w0_c00132{width:572.133333pt;}
.x0_c00132{left:0.000000pt;}
.x3_c00132{left:80.333333pt;}
.x1_c00132{left:81.600000pt;}
.x4_c00132{left:85.733333pt;}
.x2_c00132{left:95.333333pt;}
.x5_c00132{left:110.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_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_9d0717ea3bf963636f189a1d.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00133;src:url('chunks/assets/font_bb43f89c3df7db766530272a.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00133{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00133{word-spacing:-12.750000px;}
.ws2_c00133{word-spacing:0.000000px;}
._e_c00133{margin-left:-10.800000px;}
._d_c00133{margin-left:-9.600000px;}
._15_c00133{margin-left:-7.874928px;}
._17_c00133{margin-left:-6.116931px;}
._9_c00133{margin-left:-4.905072px;}
._16_c00133{margin-left:-3.900012px;}
._3_c00133{margin-left:-2.700000px;}
._5_c00133{margin-left:-1.080000px;}
._0_c00133{width:1.620000px;}
._1_c00133{width:2.940000px;}
._2_c00133{width:4.140000px;}
._4_c00133{width:5.700000px;}
._7_c00133{width:7.440000px;}
._8_c00133{width:9.240000px;}
._6_c00133{width:10.440000px;}
._14_c00133{width:11.640000px;}
._c_c00133{width:13.560000px;}
._f_c00133{width:16.140000px;}
._b_c00133{width:17.220000px;}
._13_c00133{width:18.780000px;}
._a_c00133{width:20.100000px;}
._10_c00133{width:21.600000px;}
._11_c00133{width:23.460000px;}
._12_c00133{width:25.320000px;}
.fc1_c00133{color:transparent;}
.fc0_c00133{color:rgb(35,31,32);}
.fs1_c00133{font-size:51.000000px;}
.fs0_c00133{font-size:60.000000px;}
.y0_c00133{bottom:0.000000px;}
.y26_c00133{bottom:64.425022px;}
.y25_c00133{bottom:110.175022px;}
.y24_c00133{bottom:125.625022px;}
.y23_c00133{bottom:140.775022px;}
.y22_c00133{bottom:155.925022px;}
.y21_c00133{bottom:171.750022px;}
.y20_c00133{bottom:186.825022px;}
.y1f_c00133{bottom:202.350022px;}
.y1e_c00133{bottom:217.425022px;}
.y1d_c00133{bottom:232.575022px;}
.y1c_c00133{bottom:247.725022px;}
.y1b_c00133{bottom:303.150022px;}
.y1a_c00133{bottom:322.650022px;}
.y19_c00133{bottom:342.075022px;}
.y18_c00133{bottom:361.500022px;}
.y17_c00133{bottom:380.925022px;}
.y16_c00133{bottom:400.350022px;}
.y15_c00133{bottom:419.775022px;}
.y14_c00133{bottom:438.825022px;}
.y13_c00133{bottom:458.625022px;}
.y12_c00133{bottom:478.125022px;}
.y11_c00133{bottom:497.550022px;}
.y10_c00133{bottom:516.975022px;}
.yf_c00133{bottom:536.400022px;}
.ye_c00133{bottom:555.825022px;}
.yd_c00133{bottom:575.325022px;}
.yc_c00133{bottom:594.750022px;}
.yb_c00133{bottom:614.175022px;}
.ya_c00133{bottom:633.225022px;}
.y9_c00133{bottom:653.025022px;}
.y8_c00133{bottom:672.525022px;}
.y7_c00133{bottom:710.625022px;}
.y5_c00133{bottom:767.550022px;}
.y4_c00133{bottom:786.600022px;}
.y3_c00133{bottom:805.725022px;}
.y2_c00133{bottom:825.525022px;}
.y1_c00133{bottom:844.575022px;}
.y6_c00133{bottom:886.725022px;}
.h3_c00133{height:50.028809px;}
.h4_c00133{height:50.053711px;}
.h2_c00133{height:58.886719px;}
.h1_c00133{height:957.750000px;}
.h0_c00133{height:957.975000px;}
.w0_c00133{width:641.850030px;}
.w1_c00133{width:642.000000px;}
.x0_c00133{left:0.000000px;}
.x2_c00133{left:80.250000px;}
.x1_c00133{left:81.375000px;}
.x5_c00133{left:86.400000px;}
.x4_c00133{left:96.825000px;}
.x6_c00133{left:113.775000px;}
.x3_c00133{left:155.850000px;}
.x7_c00133{left:532.050000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls0_c00133{letter-spacing:0.000000pt;}
.ws0_c00133{word-spacing:-13.333333pt;}
.ws1_c00133{word-spacing:-11.333333pt;}
.ws2_c00133{word-spacing:0.000000pt;}
._e_c00133{margin-left:-9.600000pt;}
._d_c00133{margin-left:-8.533333pt;}
._15_c00133{margin-left:-6.999936pt;}
._17_c00133{margin-left:-5.437272pt;}
._9_c00133{margin-left:-4.360064pt;}
._16_c00133{margin-left:-3.466677pt;}
._3_c00133{margin-left:-2.400000pt;}
._5_c00133{margin-left:-0.960000pt;}
._0_c00133{width:1.440000pt;}
._1_c00133{width:2.613333pt;}
._2_c00133{width:3.680000pt;}
._4_c00133{width:5.066667pt;}
._7_c00133{width:6.613333pt;}
._8_c00133{width:8.213333pt;}
._6_c00133{width:9.280000pt;}
._14_c00133{width:10.346667pt;}
._c_c00133{width:12.053333pt;}
._f_c00133{width:14.346667pt;}
._b_c00133{width:15.306667pt;}
._13_c00133{width:16.693333pt;}
._a_c00133{width:17.866667pt;}
._10_c00133{width:19.200000pt;}
._11_c00133{width:20.853333pt;}
._12_c00133{width:22.506667pt;}
.fs1_c00133{font-size:45.333333pt;}
.fs0_c00133{font-size:53.333333pt;}
.y0_c00133{bottom:0.000000pt;}
.y26_c00133{bottom:57.266686pt;}
.y25_c00133{bottom:97.933353pt;}
.y24_c00133{bottom:111.666686pt;}
.y23_c00133{bottom:125.133353pt;}
.y22_c00133{bottom:138.600020pt;}
.y21_c00133{bottom:152.666686pt;}
.y20_c00133{bottom:166.066686pt;}
.y1f_c00133{bottom:179.866686pt;}
.y1e_c00133{bottom:193.266686pt;}
.y1d_c00133{bottom:206.733353pt;}
.y1c_c00133{bottom:220.200020pt;}
.y1b_c00133{bottom:269.466686pt;}
.y1a_c00133{bottom:286.800020pt;}
.y19_c00133{bottom:304.066686pt;}
.y18_c00133{bottom:321.333353pt;}
.y17_c00133{bottom:338.600020pt;}
.y16_c00133{bottom:355.866686pt;}
.y15_c00133{bottom:373.133353pt;}
.y14_c00133{bottom:390.066686pt;}
.y13_c00133{bottom:407.666686pt;}
.y12_c00133{bottom:425.000020pt;}
.y11_c00133{bottom:442.266686pt;}
.y10_c00133{bottom:459.533353pt;}
.yf_c00133{bottom:476.800020pt;}
.ye_c00133{bottom:494.066686pt;}
.yd_c00133{bottom:511.400020pt;}
.yc_c00133{bottom:528.666686pt;}
.yb_c00133{bottom:545.933353pt;}
.ya_c00133{bottom:562.866686pt;}
.y9_c00133{bottom:580.466686pt;}
.y8_c00133{bottom:597.800020pt;}
.y7_c00133{bottom:631.666686pt;}
.y5_c00133{bottom:682.266686pt;}
.y4_c00133{bottom:699.200020pt;}
.y3_c00133{bottom:716.200020pt;}
.y2_c00133{bottom:733.800020pt;}
.y1_c00133{bottom:750.733353pt;}
.y6_c00133{bottom:788.200020pt;}
.h3_c00133{height:44.470052pt;}
.h4_c00133{height:44.492188pt;}
.h2_c00133{height:52.343750pt;}
.h1_c00133{height:851.333333pt;}
.h0_c00133{height:851.533333pt;}
.w0_c00133{width:570.533360pt;}
.w1_c00133{width:570.666667pt;}
.x0_c00133{left:0.000000pt;}
.x2_c00133{left:71.333333pt;}
.x1_c00133{left:72.333333pt;}
.x5_c00133{left:76.800000pt;}
.x4_c00133{left:86.066667pt;}
.x6_c00133{left:101.133333pt;}
.x3_c00133{left:138.533333pt;}
.x7_c00133{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_714f7c2284fdd9becab00170.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00134;src:url('chunks/assets/font_005a1862ff70aed8e3b8c14d.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00134{letter-spacing:0.000000px;}
.sc__c00134{text-shadow:none;}
.sc0_c00134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00134{-webkit-text-stroke:0px transparent;}
.sc0_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00134{word-spacing:-15.000000px;}
.ws0_c00134{word-spacing:-12.750000px;}
.ws2_c00134{word-spacing:0.000000px;}
._10_c00134{margin-left:-13.140000px;}
._f_c00134{margin-left:-11.460000px;}
._12_c00134{margin-left:-10.380000px;}
._13_c00134{margin-left:-9.300000px;}
._15_c00134{margin-left:-7.980000px;}
._1a_c00134{margin-left:-6.822099px;}
._14_c00134{margin-left:-4.800000px;}
._18_c00134{margin-left:-3.527985px;}
._a_c00134{margin-left:-2.520000px;}
._5_c00134{margin-left:-1.500000px;}
._0_c00134{width:1.560000px;}
._1_c00134{width:3.180000px;}
._2_c00134{width:4.860000px;}
._b_c00134{width:6.120000px;}
._3_c00134{width:7.440000px;}
._9_c00134{width:8.880000px;}
._8_c00134{width:10.800000px;}
._7_c00134{width:12.060000px;}
._6_c00134{width:13.440000px;}
._11_c00134{width:16.140000px;}
._4_c00134{width:17.160000px;}
._16_c00134{width:18.300000px;}
._c_c00134{width:20.460000px;}
._e_c00134{width:21.540000px;}
._d_c00134{width:23.460000px;}
._19_c00134{width:24.750000px;}
._17_c00134{width:29.310000px;}
.fc1_c00134{color:transparent;}
.fc0_c00134{color:rgb(35,31,32);}
.fs1_c00134{font-size:51.000000px;}
.fs0_c00134{font-size:60.000000px;}
.y0_c00134{bottom:0.000000px;}
.y24_c00134{bottom:64.800022px;}
.y23_c00134{bottom:110.175022px;}
.y22_c00134{bottom:125.325022px;}
.y21_c00134{bottom:141.150022px;}
.y20_c00134{bottom:155.925022px;}
.y1f_c00134{bottom:171.375022px;}
.y1e_c00134{bottom:186.525022px;}
.y1c_c00134{bottom:320.400022px;}
.y1b_c00134{bottom:339.525022px;}
.y1a_c00134{bottom:359.325022px;}
.y19_c00134{bottom:378.750022px;}
.y18_c00134{bottom:398.175022px;}
.y17_c00134{bottom:417.225022px;}
.y16_c00134{bottom:437.025022px;}
.y15_c00134{bottom:456.525022px;}
.y14_c00134{bottom:475.950022px;}
.y13_c00134{bottom:495.375022px;}
.y12_c00134{bottom:514.425022px;}
.y11_c00134{bottom:534.225022px;}
.y10_c00134{bottom:553.350022px;}
.yf_c00134{bottom:573.150022px;}
.ye_c00134{bottom:592.575022px;}
.yd_c00134{bottom:611.625022px;}
.yc_c00134{bottom:631.425022px;}
.yb_c00134{bottom:650.925022px;}
.ya_c00134{bottom:669.975022px;}
.y9_c00134{bottom:689.775022px;}
.y8_c00134{bottom:709.125022px;}
.y7_c00134{bottom:728.625022px;}
.y6_c00134{bottom:748.125022px;}
.y5_c00134{bottom:767.550022px;}
.y4_c00134{bottom:786.225022px;}
.y3_c00134{bottom:806.025022px;}
.y2_c00134{bottom:825.525022px;}
.y1_c00134{bottom:844.575022px;}
.y1d_c00134{bottom:886.725022px;}
.h3_c00134{height:50.028809px;}
.h4_c00134{height:50.053711px;}
.h2_c00134{height:58.886719px;}
.h1_c00134{height:957.750000px;}
.h0_c00134{height:957.975000px;}
.w1_c00134{width:643.500000px;}
.w0_c00134{width:643.650000px;}
.x0_c00134{left:0.000000px;}
.x1_c00134{left:91.050000px;}
.x5_c00134{left:92.175000px;}
.x3_c00134{left:96.450000px;}
.x2_c00134{left:107.250000px;}
.x4_c00134{left:124.200000px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls0_c00134{letter-spacing:0.000000pt;}
.ws1_c00134{word-spacing:-13.333333pt;}
.ws0_c00134{word-spacing:-11.333333pt;}
.ws2_c00134{word-spacing:0.000000pt;}
._10_c00134{margin-left:-11.680000pt;}
._f_c00134{margin-left:-10.186667pt;}
._12_c00134{margin-left:-9.226667pt;}
._13_c00134{margin-left:-8.266667pt;}
._15_c00134{margin-left:-7.093333pt;}
._1a_c00134{margin-left:-6.064088pt;}
._14_c00134{margin-left:-4.266667pt;}
._18_c00134{margin-left:-3.135987pt;}
._a_c00134{margin-left:-2.240000pt;}
._5_c00134{margin-left:-1.333333pt;}
._0_c00134{width:1.386667pt;}
._1_c00134{width:2.826667pt;}
._2_c00134{width:4.320000pt;}
._b_c00134{width:5.440000pt;}
._3_c00134{width:6.613333pt;}
._9_c00134{width:7.893333pt;}
._8_c00134{width:9.600000pt;}
._7_c00134{width:10.720000pt;}
._6_c00134{width:11.946667pt;}
._11_c00134{width:14.346667pt;}
._4_c00134{width:15.253333pt;}
._16_c00134{width:16.266667pt;}
._c_c00134{width:18.186667pt;}
._e_c00134{width:19.146667pt;}
._d_c00134{width:20.853333pt;}
._19_c00134{width:22.000000pt;}
._17_c00134{width:26.053333pt;}
.fs1_c00134{font-size:45.333333pt;}
.fs0_c00134{font-size:53.333333pt;}
.y0_c00134{bottom:0.000000pt;}
.y24_c00134{bottom:57.600020pt;}
.y23_c00134{bottom:97.933353pt;}
.y22_c00134{bottom:111.400020pt;}
.y21_c00134{bottom:125.466686pt;}
.y20_c00134{bottom:138.600020pt;}
.y1f_c00134{bottom:152.333353pt;}
.y1e_c00134{bottom:165.800020pt;}
.y1c_c00134{bottom:284.800020pt;}
.y1b_c00134{bottom:301.800020pt;}
.y1a_c00134{bottom:319.400020pt;}
.y19_c00134{bottom:336.666686pt;}
.y18_c00134{bottom:353.933353pt;}
.y17_c00134{bottom:370.866686pt;}
.y16_c00134{bottom:388.466686pt;}
.y15_c00134{bottom:405.800020pt;}
.y14_c00134{bottom:423.066686pt;}
.y13_c00134{bottom:440.333353pt;}
.y12_c00134{bottom:457.266686pt;}
.y11_c00134{bottom:474.866686pt;}
.y10_c00134{bottom:491.866686pt;}
.yf_c00134{bottom:509.466686pt;}
.ye_c00134{bottom:526.733353pt;}
.yd_c00134{bottom:543.666686pt;}
.yc_c00134{bottom:561.266686pt;}
.yb_c00134{bottom:578.600020pt;}
.ya_c00134{bottom:595.533353pt;}
.y9_c00134{bottom:613.133353pt;}
.y8_c00134{bottom:630.333353pt;}
.y7_c00134{bottom:647.666686pt;}
.y6_c00134{bottom:665.000020pt;}
.y5_c00134{bottom:682.266686pt;}
.y4_c00134{bottom:698.866686pt;}
.y3_c00134{bottom:716.466686pt;}
.y2_c00134{bottom:733.800020pt;}
.y1_c00134{bottom:750.733353pt;}
.y1d_c00134{bottom:788.200020pt;}
.h3_c00134{height:44.470052pt;}
.h4_c00134{height:44.492188pt;}
.h2_c00134{height:52.343750pt;}
.h1_c00134{height:851.333333pt;}
.h0_c00134{height:851.533333pt;}
.w1_c00134{width:572.000000pt;}
.w0_c00134{width:572.133333pt;}
.x0_c00134{left:0.000000pt;}
.x1_c00134{left:80.933333pt;}
.x5_c00134{left:81.933333pt;}
.x3_c00134{left:85.733333pt;}
.x2_c00134{left:95.333333pt;}
.x4_c00134{left:110.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_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_c9663e0c74c593b69b4a6a90.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00135;src:url('chunks/assets/font_ddc493545f2c3c0f767f5075.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00135{letter-spacing:0.000000px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00135{word-spacing:-15.000000px;}
.ws1_c00135{word-spacing:-12.750000px;}
.ws2_c00135{word-spacing:0.000000px;}
._10_c00135{margin-left:-10.920000px;}
._11_c00135{margin-left:-9.480000px;}
._12_c00135{margin-left:-8.400000px;}
._17_c00135{margin-left:-5.376060px;}
._0_c00135{margin-left:-3.900000px;}
._1_c00135{margin-left:-2.100000px;}
._5_c00135{margin-left:-1.080000px;}
._3_c00135{width:1.080000px;}
._4_c00135{width:2.520000px;}
._6_c00135{width:3.540000px;}
._7_c00135{width:4.980000px;}
._8_c00135{width:6.180000px;}
._2_c00135{width:7.800000px;}
._9_c00135{width:9.060000px;}
._e_c00135{width:10.080000px;}
._b_c00135{width:11.280000px;}
._a_c00135{width:12.720000px;}
._d_c00135{width:13.800000px;}
._c_c00135{width:16.380000px;}
._f_c00135{width:18.060000px;}
._13_c00135{width:20.160000px;}
._16_c00135{width:21.201054px;}
._15_c00135{width:22.458021px;}
._18_c00135{width:23.850021px;}
._14_c00135{width:27.150000px;}
.fc1_c00135{color:transparent;}
.fc0_c00135{color:rgb(35,31,32);}
.fs1_c00135{font-size:51.000000px;}
.fs0_c00135{font-size:60.000000px;}
.y0_c00135{bottom:0.000000px;}
.y27_c00135{bottom:64.425022px;}
.y26_c00135{bottom:110.175022px;}
.y25_c00135{bottom:125.325022px;}
.y24_c00135{bottom:140.775022px;}
.y23_c00135{bottom:155.925022px;}
.y21_c00135{bottom:209.175022px;}
.y20_c00135{bottom:228.225022px;}
.y1f_c00135{bottom:248.025022px;}
.y1e_c00135{bottom:267.525022px;}
.y1d_c00135{bottom:286.575022px;}
.y1c_c00135{bottom:305.625022px;}
.y1b_c00135{bottom:325.125022px;}
.y1a_c00135{bottom:344.925022px;}
.y19_c00135{bottom:364.350022px;}
.y18_c00135{bottom:383.775022px;}
.y17_c00135{bottom:403.200022px;}
.y16_c00135{bottom:422.625022px;}
.y15_c00135{bottom:442.125022px;}
.y14_c00135{bottom:461.175022px;}
.y13_c00135{bottom:480.975022px;}
.y12_c00135{bottom:500.025022px;}
.y11_c00135{bottom:519.825022px;}
.y10_c00135{bottom:539.325022px;}
.yf_c00135{bottom:558.750022px;}
.ye_c00135{bottom:578.175022px;}
.yd_c00135{bottom:597.600022px;}
.yc_c00135{bottom:616.725022px;}
.yb_c00135{bottom:636.150022px;}
.ya_c00135{bottom:655.575022px;}
.y9_c00135{bottom:675.375022px;}
.y8_c00135{bottom:694.425022px;}
.y7_c00135{bottom:713.925022px;}
.y6_c00135{bottom:733.725022px;}
.y5_c00135{bottom:753.150022px;}
.y4_c00135{bottom:772.200022px;}
.y3_c00135{bottom:791.325022px;}
.y2_c00135{bottom:825.825022px;}
.y1_c00135{bottom:845.325022px;}
.y22_c00135{bottom:886.725022px;}
.h3_c00135{height:50.028809px;}
.h4_c00135{height:50.053711px;}
.h2_c00135{height:58.886719px;}
.h1_c00135{height:957.750000px;}
.h0_c00135{height:957.975000px;}
.w0_c00135{width:641.850030px;}
.w1_c00135{width:642.000000px;}
.x0_c00135{left:0.000000px;}
.x1_c00135{left:81.000000px;}
.x5_c00135{left:86.400000px;}
.x2_c00135{left:96.150000px;}
.x3_c00135{left:97.200000px;}
.x6_c00135{left:114.450000px;}
.x4_c00135{left:155.850000px;}
.x7_c00135{left:532.050000px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls0_c00135{letter-spacing:0.000000pt;}
.ws0_c00135{word-spacing:-13.333333pt;}
.ws1_c00135{word-spacing:-11.333333pt;}
.ws2_c00135{word-spacing:0.000000pt;}
._10_c00135{margin-left:-9.706667pt;}
._11_c00135{margin-left:-8.426667pt;}
._12_c00135{margin-left:-7.466667pt;}
._17_c00135{margin-left:-4.778720pt;}
._0_c00135{margin-left:-3.466667pt;}
._1_c00135{margin-left:-1.866667pt;}
._5_c00135{margin-left:-0.960000pt;}
._3_c00135{width:0.960000pt;}
._4_c00135{width:2.240000pt;}
._6_c00135{width:3.146667pt;}
._7_c00135{width:4.426667pt;}
._8_c00135{width:5.493333pt;}
._2_c00135{width:6.933333pt;}
._9_c00135{width:8.053333pt;}
._e_c00135{width:8.960000pt;}
._b_c00135{width:10.026667pt;}
._a_c00135{width:11.306667pt;}
._d_c00135{width:12.266667pt;}
._c_c00135{width:14.560000pt;}
._f_c00135{width:16.053333pt;}
._13_c00135{width:17.920000pt;}
._16_c00135{width:18.845381pt;}
._15_c00135{width:19.962685pt;}
._18_c00135{width:21.200019pt;}
._14_c00135{width:24.133333pt;}
.fs1_c00135{font-size:45.333333pt;}
.fs0_c00135{font-size:53.333333pt;}
.y0_c00135{bottom:0.000000pt;}
.y27_c00135{bottom:57.266686pt;}
.y26_c00135{bottom:97.933353pt;}
.y25_c00135{bottom:111.400020pt;}
.y24_c00135{bottom:125.133353pt;}
.y23_c00135{bottom:138.600020pt;}
.y21_c00135{bottom:185.933353pt;}
.y20_c00135{bottom:202.866686pt;}
.y1f_c00135{bottom:220.466686pt;}
.y1e_c00135{bottom:237.800020pt;}
.y1d_c00135{bottom:254.733353pt;}
.y1c_c00135{bottom:271.666686pt;}
.y1b_c00135{bottom:289.000020pt;}
.y1a_c00135{bottom:306.600020pt;}
.y19_c00135{bottom:323.866686pt;}
.y18_c00135{bottom:341.133353pt;}
.y17_c00135{bottom:358.400020pt;}
.y16_c00135{bottom:375.666686pt;}
.y15_c00135{bottom:393.000020pt;}
.y14_c00135{bottom:409.933353pt;}
.y13_c00135{bottom:427.533353pt;}
.y12_c00135{bottom:444.466686pt;}
.y11_c00135{bottom:462.066686pt;}
.y10_c00135{bottom:479.400020pt;}
.yf_c00135{bottom:496.666686pt;}
.ye_c00135{bottom:513.933353pt;}
.yd_c00135{bottom:531.200020pt;}
.yc_c00135{bottom:548.200020pt;}
.yb_c00135{bottom:565.466686pt;}
.ya_c00135{bottom:582.733353pt;}
.y9_c00135{bottom:600.333353pt;}
.y8_c00135{bottom:617.266686pt;}
.y7_c00135{bottom:634.600020pt;}
.y6_c00135{bottom:652.200020pt;}
.y5_c00135{bottom:669.466686pt;}
.y4_c00135{bottom:686.400020pt;}
.y3_c00135{bottom:703.400020pt;}
.y2_c00135{bottom:734.066686pt;}
.y1_c00135{bottom:751.400020pt;}
.y22_c00135{bottom:788.200020pt;}
.h3_c00135{height:44.470052pt;}
.h4_c00135{height:44.492188pt;}
.h2_c00135{height:52.343750pt;}
.h1_c00135{height:851.333333pt;}
.h0_c00135{height:851.533333pt;}
.w0_c00135{width:570.533360pt;}
.w1_c00135{width:570.666667pt;}
.x0_c00135{left:0.000000pt;}
.x1_c00135{left:72.000000pt;}
.x5_c00135{left:76.800000pt;}
.x2_c00135{left:85.466667pt;}
.x3_c00135{left:86.400000pt;}
.x6_c00135{left:101.733333pt;}
.x4_c00135{left:138.533333pt;}
.x7_c00135{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_61d0060d84eda210637c5778.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00136;src:url('chunks/assets/font_a7165e61ba300ad8c038ba45.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00136{letter-spacing:0.000000px;}
.sc__c00136{text-shadow:none;}
.sc0_c00136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00136{-webkit-text-stroke:0px transparent;}
.sc0_c00136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00136{word-spacing:-15.000000px;}
.ws0_c00136{word-spacing:-12.750000px;}
.ws2_c00136{word-spacing:0.000000px;}
._b_c00136{margin-left:-11.232198px;}
._4_c00136{margin-left:-9.900000px;}
._3_c00136{margin-left:-8.027448px;}
._14_c00136{margin-left:-4.467552px;}
._15_c00136{margin-left:-3.150015px;}
._0_c00136{margin-left:-1.760979px;}
._2_c00136{width:1.115931px;}
._1_c00136{width:2.699991px;}
._6_c00136{width:3.764145px;}
._5_c00136{width:5.100000px;}
._12_c00136{width:6.538287px;}
._f_c00136{width:7.612494px;}
._11_c00136{width:8.801040px;}
._a_c00136{width:9.948147px;}
._10_c00136{width:11.527479px;}
._c_c00136{width:12.549099px;}
._d_c00136{width:13.760979px;}
._e_c00136{width:16.172991px;}
._7_c00136{width:17.220354px;}
._8_c00136{width:18.483294px;}
._9_c00136{width:19.956276px;}
._13_c00136{width:23.771916px;}
.fc1_c00136{color:transparent;}
.fc0_c00136{color:rgb(35,31,32);}
.fs0_c00136{font-size:51.000000px;}
.fs1_c00136{font-size:60.000000px;}
.y0_c00136{bottom:0.000000px;}
.y18_c00136{bottom:64.425022px;}
.y17_c00136{bottom:110.550022px;}
.y16_c00136{bottom:125.325022px;}
.y15_c00136{bottom:140.775022px;}
.y14_c00136{bottom:156.225022px;}
.y13_c00136{bottom:514.800022px;}
.y12_c00136{bottom:534.225022px;}
.y11_c00136{bottom:553.725022px;}
.y10_c00136{bottom:573.150022px;}
.yf_c00136{bottom:592.200022px;}
.ye_c00136{bottom:611.625022px;}
.yd_c00136{bottom:631.425022px;}
.yc_c00136{bottom:650.550022px;}
.yb_c00136{bottom:670.350022px;}
.ya_c00136{bottom:689.775022px;}
.y9_c00136{bottom:709.200022px;}
.y8_c00136{bottom:728.625022px;}
.y7_c00136{bottom:748.125022px;}
.y6_c00136{bottom:767.175022px;}
.y5_c00136{bottom:786.600022px;}
.y4_c00136{bottom:805.725022px;}
.y3_c00136{bottom:825.525022px;}
.y2_c00136{bottom:844.575022px;}
.y1_c00136{bottom:886.725022px;}
.h2_c00136{height:50.028809px;}
.h4_c00136{height:50.053711px;}
.h3_c00136{height:58.886719px;}
.h1_c00136{height:957.750000px;}
.h0_c00136{height:957.975000px;}
.w1_c00136{width:643.500000px;}
.w0_c00136{width:643.650000px;}
.x0_c00136{left:0.000000px;}
.x1_c00136{left:90.750000px;}
.x4_c00136{left:92.175000px;}
.x2_c00136{left:96.450000px;}
.x3_c00136{left:123.825000px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls0_c00136{letter-spacing:0.000000pt;}
.ws1_c00136{word-spacing:-13.333333pt;}
.ws0_c00136{word-spacing:-11.333333pt;}
.ws2_c00136{word-spacing:0.000000pt;}
._b_c00136{margin-left:-9.984176pt;}
._4_c00136{margin-left:-8.800000pt;}
._3_c00136{margin-left:-7.135509pt;}
._14_c00136{margin-left:-3.971157pt;}
._15_c00136{margin-left:-2.800013pt;}
._0_c00136{margin-left:-1.565315pt;}
._2_c00136{width:0.991939pt;}
._1_c00136{width:2.399992pt;}
._6_c00136{width:3.345907pt;}
._5_c00136{width:4.533333pt;}
._12_c00136{width:5.811811pt;}
._f_c00136{width:6.766661pt;}
._11_c00136{width:7.823147pt;}
._a_c00136{width:8.842797pt;}
._10_c00136{width:10.246648pt;}
._c_c00136{width:11.154755pt;}
._d_c00136{width:12.231981pt;}
._e_c00136{width:14.375992pt;}
._7_c00136{width:15.306981pt;}
._8_c00136{width:16.429595pt;}
._9_c00136{width:17.738912pt;}
._13_c00136{width:21.130592pt;}
.fs0_c00136{font-size:45.333333pt;}
.fs1_c00136{font-size:53.333333pt;}
.y0_c00136{bottom:0.000000pt;}
.y18_c00136{bottom:57.266686pt;}
.y17_c00136{bottom:98.266686pt;}
.y16_c00136{bottom:111.400020pt;}
.y15_c00136{bottom:125.133353pt;}
.y14_c00136{bottom:138.866686pt;}
.y13_c00136{bottom:457.600020pt;}
.y12_c00136{bottom:474.866686pt;}
.y11_c00136{bottom:492.200020pt;}
.y10_c00136{bottom:509.466686pt;}
.yf_c00136{bottom:526.400020pt;}
.ye_c00136{bottom:543.666686pt;}
.yd_c00136{bottom:561.266686pt;}
.yc_c00136{bottom:578.266686pt;}
.yb_c00136{bottom:595.866686pt;}
.ya_c00136{bottom:613.133353pt;}
.y9_c00136{bottom:630.400020pt;}
.y8_c00136{bottom:647.666686pt;}
.y7_c00136{bottom:665.000020pt;}
.y6_c00136{bottom:681.933353pt;}
.y5_c00136{bottom:699.200020pt;}
.y4_c00136{bottom:716.200020pt;}
.y3_c00136{bottom:733.800020pt;}
.y2_c00136{bottom:750.733353pt;}
.y1_c00136{bottom:788.200020pt;}
.h2_c00136{height:44.470052pt;}
.h4_c00136{height:44.492188pt;}
.h3_c00136{height:52.343750pt;}
.h1_c00136{height:851.333333pt;}
.h0_c00136{height:851.533333pt;}
.w1_c00136{width:572.000000pt;}
.w0_c00136{width:572.133333pt;}
.x0_c00136{left:0.000000pt;}
.x1_c00136{left:80.666667pt;}
.x4_c00136{left:81.933333pt;}
.x2_c00136{left:85.733333pt;}
.x3_c00136{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ac8a9a31b3d6fa160eba5485.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00137;src:url('chunks/assets/font_aa8fd61132b7698dfe4fc48a.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls1_c00137{letter-spacing:0.000000px;}
.ls0_c00137{letter-spacing:15.300000px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00137{word-spacing:-25.500000px;}
.ws0_c00137{word-spacing:-16.500000px;}
.ws2_c00137{word-spacing:-15.000000px;}
.ws3_c00137{word-spacing:0.000000px;}
._f_c00137{margin-left:-14.150190px;}
._10_c00137{margin-left:-12.600000px;}
._b_c00137{margin-left:-10.422810px;}
._14_c00137{margin-left:-9.077190px;}
._11_c00137{margin-left:-7.680360px;}
._13_c00137{margin-left:-4.777920px;}
._6_c00137{margin-left:-2.707050px;}
._7_c00137{margin-left:-1.380000px;}
._4_c00137{width:1.290090px;}
._0_c00137{width:2.352000px;}
._1_c00137{width:3.528060px;}
._2_c00137{width:5.213970px;}
._3_c00137{width:6.233880px;}
._9_c00137{width:7.451730px;}
._5_c00137{width:8.729910px;}
._8_c00137{width:10.567050px;}
._d_c00137{width:11.640000px;}
._12_c00137{width:12.659640px;}
._e_c00137{width:13.775640px;}
._a_c00137{width:16.920000px;}
._c_c00137{width:18.892890px;}
._15_c00137{width:25.717050px;}
._16_c00137{width:29.871120px;}
.fc2_c00137{color:transparent;}
.fc1_c00137{color:rgb(0,0,0);}
.fc0_c00137{color:rgb(35,31,32);}
.fs2_c00137{font-size:51.000000px;}
.fs1_c00137{font-size:60.000000px;}
.fs0_c00137{font-size:66.000000px;}
.y0_c00137{bottom:0.000000px;}
.y25_c00137{bottom:64.425022px;}
.y24_c00137{bottom:110.175022px;}
.y23_c00137{bottom:125.625022px;}
.y22_c00137{bottom:141.075022px;}
.y21_c00137{bottom:156.225022px;}
.y20_c00137{bottom:171.375022px;}
.y1f_c00137{bottom:186.825022px;}
.y1e_c00137{bottom:202.350022px;}
.y1d_c00137{bottom:217.125022px;}
.y1c_c00137{bottom:232.575022px;}
.y1b_c00137{bottom:272.550022px;}
.y1a_c00137{bottom:291.975022px;}
.y19_c00137{bottom:311.025022px;}
.y18_c00137{bottom:329.775022px;}
.y17_c00137{bottom:349.575022px;}
.y16_c00137{bottom:368.325022px;}
.y15_c00137{bottom:387.750022px;}
.y14_c00137{bottom:406.800022px;}
.y13_c00137{bottom:426.225022px;}
.y12_c00137{bottom:444.975022px;}
.y11_c00137{bottom:464.400022px;}
.y10_c00137{bottom:483.525022px;}
.yf_c00137{bottom:502.575022px;}
.ye_c00137{bottom:522.000022px;}
.yd_c00137{bottom:541.425022px;}
.yc_c00137{bottom:560.175022px;}
.yb_c00137{bottom:579.225022px;}
.ya_c00137{bottom:599.025022px;}
.y9_c00137{bottom:618.150022px;}
.y8_c00137{bottom:636.825022px;}
.y7_c00137{bottom:656.700022px;}
.y6_c00137{bottom:675.750022px;}
.y5_c00137{bottom:694.800022px;}
.y4_c00137{bottom:714.225022px;}
.y3_c00137{bottom:733.350022px;}
.y2_c00137{bottom:752.025022px;}
.y1_c00137{bottom:842.775022px;}
.h4_c00137{height:50.053711px;}
.h3_c00137{height:58.886719px;}
.h2_c00137{height:64.775391px;}
.h1_c00137{height:957.750000px;}
.h0_c00137{height:957.975000px;}
.w0_c00137{width:641.850030px;}
.w1_c00137{width:642.000000px;}
.x0_c00137{left:0.000000px;}
.x1_c00137{left:81.375000px;}
.x2_c00137{left:86.400000px;}
.x3_c00137{left:114.150000px;}
.x4_c00137{left:532.050000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls1_c00137{letter-spacing:0.000000pt;}
.ls0_c00137{letter-spacing:13.600000pt;}
.ws1_c00137{word-spacing:-22.666667pt;}
.ws0_c00137{word-spacing:-14.666667pt;}
.ws2_c00137{word-spacing:-13.333333pt;}
.ws3_c00137{word-spacing:0.000000pt;}
._f_c00137{margin-left:-12.577947pt;}
._10_c00137{margin-left:-11.200000pt;}
._b_c00137{margin-left:-9.264720pt;}
._14_c00137{margin-left:-8.068613pt;}
._11_c00137{margin-left:-6.826987pt;}
._13_c00137{margin-left:-4.247040pt;}
._6_c00137{margin-left:-2.406267pt;}
._7_c00137{margin-left:-1.226667pt;}
._4_c00137{width:1.146747pt;}
._0_c00137{width:2.090667pt;}
._1_c00137{width:3.136053pt;}
._2_c00137{width:4.634640pt;}
._3_c00137{width:5.541227pt;}
._9_c00137{width:6.623760pt;}
._5_c00137{width:7.759920pt;}
._8_c00137{width:9.392933pt;}
._d_c00137{width:10.346667pt;}
._12_c00137{width:11.253013pt;}
._e_c00137{width:12.245013pt;}
._a_c00137{width:15.040000pt;}
._c_c00137{width:16.793680pt;}
._15_c00137{width:22.859600pt;}
._16_c00137{width:26.552107pt;}
.fs2_c00137{font-size:45.333333pt;}
.fs1_c00137{font-size:53.333333pt;}
.fs0_c00137{font-size:58.666667pt;}
.y0_c00137{bottom:0.000000pt;}
.y25_c00137{bottom:57.266686pt;}
.y24_c00137{bottom:97.933353pt;}
.y23_c00137{bottom:111.666686pt;}
.y22_c00137{bottom:125.400020pt;}
.y21_c00137{bottom:138.866686pt;}
.y20_c00137{bottom:152.333353pt;}
.y1f_c00137{bottom:166.066686pt;}
.y1e_c00137{bottom:179.866686pt;}
.y1d_c00137{bottom:193.000020pt;}
.y1c_c00137{bottom:206.733353pt;}
.y1b_c00137{bottom:242.266686pt;}
.y1a_c00137{bottom:259.533353pt;}
.y19_c00137{bottom:276.466686pt;}
.y18_c00137{bottom:293.133353pt;}
.y17_c00137{bottom:310.733353pt;}
.y16_c00137{bottom:327.400020pt;}
.y15_c00137{bottom:344.666686pt;}
.y14_c00137{bottom:361.600020pt;}
.y13_c00137{bottom:378.866686pt;}
.y12_c00137{bottom:395.533353pt;}
.y11_c00137{bottom:412.800020pt;}
.y10_c00137{bottom:429.800020pt;}
.yf_c00137{bottom:446.733353pt;}
.ye_c00137{bottom:464.000020pt;}
.yd_c00137{bottom:481.266686pt;}
.yc_c00137{bottom:497.933353pt;}
.yb_c00137{bottom:514.866686pt;}
.ya_c00137{bottom:532.466686pt;}
.y9_c00137{bottom:549.466686pt;}
.y8_c00137{bottom:566.066686pt;}
.y7_c00137{bottom:583.733353pt;}
.y6_c00137{bottom:600.666686pt;}
.y5_c00137{bottom:617.600020pt;}
.y4_c00137{bottom:634.866686pt;}
.y3_c00137{bottom:651.866686pt;}
.y2_c00137{bottom:668.466686pt;}
.y1_c00137{bottom:749.133353pt;}
.h4_c00137{height:44.492188pt;}
.h3_c00137{height:52.343750pt;}
.h2_c00137{height:57.578125pt;}
.h1_c00137{height:851.333333pt;}
.h0_c00137{height:851.533333pt;}
.w0_c00137{width:570.533360pt;}
.w1_c00137{width:570.666667pt;}
.x0_c00137{left:0.000000pt;}
.x1_c00137{left:72.333333pt;}
.x2_c00137{left:76.800000pt;}
.x3_c00137{left:101.466667pt;}
.x4_c00137{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0f22996eddad5558e0057a51.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00138;src:url('chunks/assets/font_7bdfde31261aead31ec2cb51.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00138{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_c00138{vertical-align:0.000000px;}
.ls0_c00138{letter-spacing:0.000000px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00138{word-spacing:-15.000000px;}
.ws0_c00138{word-spacing:-12.750000px;}
.ws2_c00138{word-spacing:0.000000px;}
._b_c00138{margin-left:-15.722259px;}
._e_c00138{margin-left:-10.508874px;}
._12_c00138{margin-left:-9.366741px;}
._d_c00138{margin-left:-8.291925px;}
._13_c00138{margin-left:-6.255045px;}
._0_c00138{margin-left:-4.917012px;}
._c_c00138{margin-left:-2.904033px;}
._1_c00138{margin-left:-1.650003px;}
._2_c00138{width:1.644039px;}
._3_c00138{width:3.284796px;}
._4_c00138{width:5.184156px;}
._a_c00138{width:6.551721px;}
._9_c00138{width:8.220006px;}
._6_c00138{width:9.695766px;}
._14_c00138{width:10.764612px;}
._5_c00138{width:11.846931px;}
._8_c00138{width:13.784796px;}
._18_c00138{width:14.876745px;}
._7_c00138{width:16.043844px;}
._10_c00138{width:18.107883px;}
._f_c00138{width:19.151922px;}
._11_c00138{width:21.743649px;}
._16_c00138{width:23.700009px;}
._17_c00138{width:25.199967px;}
._15_c00138{width:28.758066px;}
.fc1_c00138{color:transparent;}
.fc0_c00138{color:rgb(35,31,32);}
.fs0_c00138{font-size:51.000000px;}
.fs1_c00138{font-size:60.000000px;}
.y0_c00138{bottom:0.000000px;}
.y27_c00138{bottom:64.425022px;}
.y26_c00138{bottom:110.175022px;}
.y25_c00138{bottom:125.625022px;}
.y24_c00138{bottom:140.775022px;}
.y23_c00138{bottom:155.925022px;}
.y22_c00138{bottom:171.375022px;}
.y21_c00138{bottom:186.525022px;}
.y20_c00138{bottom:201.975022px;}
.y1f_c00138{bottom:217.125022px;}
.y1e_c00138{bottom:232.950022px;}
.y1d_c00138{bottom:247.725022px;}
.y1c_c00138{bottom:263.175022px;}
.y1b_c00138{bottom:303.525022px;}
.y1a_c00138{bottom:322.575022px;}
.y19_c00138{bottom:342.000022px;}
.y18_c00138{bottom:361.425022px;}
.y17_c00138{bottom:380.550022px;}
.y16_c00138{bottom:399.975022px;}
.y15_c00138{bottom:419.775022px;}
.y14_c00138{bottom:439.200022px;}
.y13_c00138{bottom:458.325022px;}
.y12_c00138{bottom:478.125022px;}
.y11_c00138{bottom:497.550022px;}
.y10_c00138{bottom:516.975022px;}
.yf_c00138{bottom:536.025022px;}
.ye_c00138{bottom:555.825022px;}
.yd_c00138{bottom:575.325022px;}
.yc_c00138{bottom:594.375022px;}
.yb_c00138{bottom:614.175022px;}
.ya_c00138{bottom:633.600022px;}
.y9_c00138{bottom:652.725022px;}
.y8_c00138{bottom:672.525022px;}
.y7_c00138{bottom:691.575022px;}
.y6_c00138{bottom:711.000022px;}
.y5_c00138{bottom:730.800022px;}
.y4_c00138{bottom:768.600022px;}
.y3_c00138{bottom:825.150022px;}
.y2_c00138{bottom:844.575022px;}
.y1_c00138{bottom:886.725022px;}
.h2_c00138{height:50.053711px;}
.h3_c00138{height:58.886719px;}
.h1_c00138{height:957.750000px;}
.h0_c00138{height:957.975000px;}
.w1_c00138{width:643.500000px;}
.w0_c00138{width:643.650000px;}
.x0_c00138{left:0.000000px;}
.x2_c00138{left:90.375000px;}
.x1_c00138{left:91.800000px;}
.x3_c00138{left:96.450000px;}
.x4_c00138{left:123.825000px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls0_c00138{letter-spacing:0.000000pt;}
.ws1_c00138{word-spacing:-13.333333pt;}
.ws0_c00138{word-spacing:-11.333333pt;}
.ws2_c00138{word-spacing:0.000000pt;}
._b_c00138{margin-left:-13.975341pt;}
._e_c00138{margin-left:-9.341221pt;}
._12_c00138{margin-left:-8.325992pt;}
._d_c00138{margin-left:-7.370600pt;}
._13_c00138{margin-left:-5.560040pt;}
._0_c00138{margin-left:-4.370677pt;}
._c_c00138{margin-left:-2.581363pt;}
._1_c00138{margin-left:-1.466669pt;}
._2_c00138{width:1.461368pt;}
._3_c00138{width:2.919819pt;}
._4_c00138{width:4.608139pt;}
._a_c00138{width:5.823752pt;}
._9_c00138{width:7.306672pt;}
._6_c00138{width:8.618459pt;}
._14_c00138{width:9.568544pt;}
._5_c00138{width:10.530605pt;}
._8_c00138{width:12.253152pt;}
._18_c00138{width:13.223773pt;}
._7_c00138{width:14.261195pt;}
._10_c00138{width:16.095896pt;}
._f_c00138{width:17.023931pt;}
._11_c00138{width:19.327688pt;}
._16_c00138{width:21.066675pt;}
._17_c00138{width:22.399971pt;}
._15_c00138{width:25.562725pt;}
.fs0_c00138{font-size:45.333333pt;}
.fs1_c00138{font-size:53.333333pt;}
.y0_c00138{bottom:0.000000pt;}
.y27_c00138{bottom:57.266686pt;}
.y26_c00138{bottom:97.933353pt;}
.y25_c00138{bottom:111.666686pt;}
.y24_c00138{bottom:125.133353pt;}
.y23_c00138{bottom:138.600020pt;}
.y22_c00138{bottom:152.333353pt;}
.y21_c00138{bottom:165.800020pt;}
.y20_c00138{bottom:179.533353pt;}
.y1f_c00138{bottom:193.000020pt;}
.y1e_c00138{bottom:207.066686pt;}
.y1d_c00138{bottom:220.200020pt;}
.y1c_c00138{bottom:233.933353pt;}
.y1b_c00138{bottom:269.800020pt;}
.y1a_c00138{bottom:286.733353pt;}
.y19_c00138{bottom:304.000020pt;}
.y18_c00138{bottom:321.266686pt;}
.y17_c00138{bottom:338.266686pt;}
.y16_c00138{bottom:355.533353pt;}
.y15_c00138{bottom:373.133353pt;}
.y14_c00138{bottom:390.400020pt;}
.y13_c00138{bottom:407.400020pt;}
.y12_c00138{bottom:425.000020pt;}
.y11_c00138{bottom:442.266686pt;}
.y10_c00138{bottom:459.533353pt;}
.yf_c00138{bottom:476.466686pt;}
.ye_c00138{bottom:494.066686pt;}
.yd_c00138{bottom:511.400020pt;}
.yc_c00138{bottom:528.333353pt;}
.yb_c00138{bottom:545.933353pt;}
.ya_c00138{bottom:563.200020pt;}
.y9_c00138{bottom:580.200020pt;}
.y8_c00138{bottom:597.800020pt;}
.y7_c00138{bottom:614.733353pt;}
.y6_c00138{bottom:632.000020pt;}
.y5_c00138{bottom:649.600020pt;}
.y4_c00138{bottom:683.200020pt;}
.y3_c00138{bottom:733.466686pt;}
.y2_c00138{bottom:750.733353pt;}
.y1_c00138{bottom:788.200020pt;}
.h2_c00138{height:44.492188pt;}
.h3_c00138{height:52.343750pt;}
.h1_c00138{height:851.333333pt;}
.h0_c00138{height:851.533333pt;}
.w1_c00138{width:572.000000pt;}
.w0_c00138{width:572.133333pt;}
.x0_c00138{left:0.000000pt;}
.x2_c00138{left:80.333333pt;}
.x1_c00138{left:81.600000pt;}
.x3_c00138{left:85.733333pt;}
.x4_c00138{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_07dd2bc96140fc1a72dfdb1d.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00139;src:url('chunks/assets/font_9421eb13c3e602b89a2ac17b.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00139{letter-spacing:0.000000px;}
.sc__c00139{text-shadow:none;}
.sc0_c00139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00139{-webkit-text-stroke:0px transparent;}
.sc0_c00139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00139{word-spacing:-15.000000px;}
.ws1_c00139{word-spacing:-12.750000px;}
.ws2_c00139{word-spacing:0.000000px;}
._17_c00139{margin-left:-11.278425px;}
._b_c00139{margin-left:-9.900000px;}
._a_c00139{margin-left:-8.814027px;}
._d_c00139{margin-left:-6.300000px;}
._10_c00139{margin-left:-4.250439px;}
._3_c00139{margin-left:-2.916078px;}
._0_c00139{margin-left:-1.383018px;}
._2_c00139{width:1.278009px;}
._6_c00139{width:2.502003px;}
._1_c00139{width:3.599988px;}
._f_c00139{width:5.207850px;}
._4_c00139{width:6.924006px;}
._5_c00139{width:8.093937px;}
._e_c00139{width:9.137985px;}
._8_c00139{width:10.715802px;}
._9_c00139{width:12.227964px;}
._c_c00139{width:13.800000px;}
._7_c00139{width:16.241991px;}
._11_c00139{width:17.477895px;}
._12_c00139{width:18.899910px;}
._14_c00139{width:20.132964px;}
._15_c00139{width:21.156135px;}
._16_c00139{width:22.440102px;}
._13_c00139{width:24.399012px;}
._18_c00139{width:25.899024px;}
.fc1_c00139{color:transparent;}
.fc0_c00139{color:rgb(35,31,32);}
.fs0_c00139{font-size:51.000000px;}
.fs1_c00139{font-size:60.000000px;}
.y0_c00139{bottom:0.000000px;}
.y25_c00139{bottom:64.425022px;}
.y24_c00139{bottom:110.175022px;}
.y23_c00139{bottom:125.325022px;}
.y22_c00139{bottom:141.150022px;}
.y21_c00139{bottom:155.925022px;}
.y20_c00139{bottom:171.750022px;}
.y1f_c00139{bottom:186.825022px;}
.y1e_c00139{bottom:202.350022px;}
.y1d_c00139{bottom:217.425022px;}
.y1c_c00139{bottom:232.950022px;}
.y1b_c00139{bottom:247.725022px;}
.y1a_c00139{bottom:263.550022px;}
.y19_c00139{bottom:278.325022px;}
.y18_c00139{bottom:293.775022px;}
.y17_c00139{bottom:308.925022px;}
.y16_c00139{bottom:324.375022px;}
.y15_c00139{bottom:339.825022px;}
.y14_c00139{bottom:355.350022px;}
.y13_c00139{bottom:398.550022px;}
.y12_c00139{bottom:417.975022px;}
.y11_c00139{bottom:437.400022px;}
.y10_c00139{bottom:456.825022px;}
.yf_c00139{bottom:476.325022px;}
.ye_c00139{bottom:496.125022px;}
.yd_c00139{bottom:515.175022px;}
.yc_c00139{bottom:534.975022px;}
.yb_c00139{bottom:575.625022px;}
.ya_c00139{bottom:636.150022px;}
.y9_c00139{bottom:655.200022px;}
.y8_c00139{bottom:674.325022px;}
.y7_c00139{bottom:694.125022px;}
.y6_c00139{bottom:713.550022px;}
.y5_c00139{bottom:750.600022px;}
.y4_c00139{bottom:805.725022px;}
.y3_c00139{bottom:825.525022px;}
.y2_c00139{bottom:844.950022px;}
.y1_c00139{bottom:886.725022px;}
.h2_c00139{height:50.028809px;}
.h4_c00139{height:50.053711px;}
.h3_c00139{height:58.886719px;}
.h1_c00139{height:957.750000px;}
.h0_c00139{height:957.975000px;}
.w0_c00139{width:641.850030px;}
.w1_c00139{width:642.000000px;}
.x0_c00139{left:0.000000px;}
.x3_c00139{left:80.250000px;}
.x2_c00139{left:81.375000px;}
.x4_c00139{left:86.400000px;}
.x5_c00139{left:113.025000px;}
.x6_c00139{left:114.150000px;}
.x1_c00139{left:289.050000px;}
.x7_c00139{left:532.050000px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls0_c00139{letter-spacing:0.000000pt;}
.ws0_c00139{word-spacing:-13.333333pt;}
.ws1_c00139{word-spacing:-11.333333pt;}
.ws2_c00139{word-spacing:0.000000pt;}
._17_c00139{margin-left:-10.025267pt;}
._b_c00139{margin-left:-8.800000pt;}
._a_c00139{margin-left:-7.834691pt;}
._d_c00139{margin-left:-5.600000pt;}
._10_c00139{margin-left:-3.778168pt;}
._3_c00139{margin-left:-2.592069pt;}
._0_c00139{margin-left:-1.229349pt;}
._2_c00139{width:1.136008pt;}
._6_c00139{width:2.224003pt;}
._1_c00139{width:3.199989pt;}
._f_c00139{width:4.629200pt;}
._4_c00139{width:6.154672pt;}
._5_c00139{width:7.194611pt;}
._e_c00139{width:8.122653pt;}
._8_c00139{width:9.525157pt;}
._9_c00139{width:10.869301pt;}
._c_c00139{width:12.266667pt;}
._7_c00139{width:14.437325pt;}
._11_c00139{width:15.535907pt;}
._12_c00139{width:16.799920pt;}
._14_c00139{width:17.895968pt;}
._15_c00139{width:18.805453pt;}
._16_c00139{width:19.946757pt;}
._13_c00139{width:21.688011pt;}
._18_c00139{width:23.021355pt;}
.fs0_c00139{font-size:45.333333pt;}
.fs1_c00139{font-size:53.333333pt;}
.y0_c00139{bottom:0.000000pt;}
.y25_c00139{bottom:57.266686pt;}
.y24_c00139{bottom:97.933353pt;}
.y23_c00139{bottom:111.400020pt;}
.y22_c00139{bottom:125.466686pt;}
.y21_c00139{bottom:138.600020pt;}
.y20_c00139{bottom:152.666686pt;}
.y1f_c00139{bottom:166.066686pt;}
.y1e_c00139{bottom:179.866686pt;}
.y1d_c00139{bottom:193.266686pt;}
.y1c_c00139{bottom:207.066686pt;}
.y1b_c00139{bottom:220.200020pt;}
.y1a_c00139{bottom:234.266686pt;}
.y19_c00139{bottom:247.400020pt;}
.y18_c00139{bottom:261.133353pt;}
.y17_c00139{bottom:274.600020pt;}
.y16_c00139{bottom:288.333353pt;}
.y15_c00139{bottom:302.066686pt;}
.y14_c00139{bottom:315.866686pt;}
.y13_c00139{bottom:354.266686pt;}
.y12_c00139{bottom:371.533353pt;}
.y11_c00139{bottom:388.800020pt;}
.y10_c00139{bottom:406.066686pt;}
.yf_c00139{bottom:423.400020pt;}
.ye_c00139{bottom:441.000020pt;}
.yd_c00139{bottom:457.933353pt;}
.yc_c00139{bottom:475.533353pt;}
.yb_c00139{bottom:511.666686pt;}
.ya_c00139{bottom:565.466686pt;}
.y9_c00139{bottom:582.400020pt;}
.y8_c00139{bottom:599.400020pt;}
.y7_c00139{bottom:617.000020pt;}
.y6_c00139{bottom:634.266686pt;}
.y5_c00139{bottom:667.200020pt;}
.y4_c00139{bottom:716.200020pt;}
.y3_c00139{bottom:733.800020pt;}
.y2_c00139{bottom:751.066686pt;}
.y1_c00139{bottom:788.200020pt;}
.h2_c00139{height:44.470052pt;}
.h4_c00139{height:44.492188pt;}
.h3_c00139{height:52.343750pt;}
.h1_c00139{height:851.333333pt;}
.h0_c00139{height:851.533333pt;}
.w0_c00139{width:570.533360pt;}
.w1_c00139{width:570.666667pt;}
.x0_c00139{left:0.000000pt;}
.x3_c00139{left:71.333333pt;}
.x2_c00139{left:72.333333pt;}
.x4_c00139{left:76.800000pt;}
.x5_c00139{left:100.466667pt;}
.x6_c00139{left:101.466667pt;}
.x1_c00139{left:256.933333pt;}
.x7_c00139{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8dcbba1174d042d300dc6c5f.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00140;src:url('chunks/assets/font_8c7799af048d29b0f9123e3b.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00140{letter-spacing:0.000000px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00140{word-spacing:-15.000000px;}
.ws0_c00140{word-spacing:-12.750000px;}
.ws2_c00140{word-spacing:0.000000px;}
._17_c00140{margin-left:-13.800000px;}
._16_c00140{margin-left:-11.700000px;}
._15_c00140{margin-left:-10.680000px;}
._d_c00140{margin-left:-9.300000px;}
._c_c00140{margin-left:-7.980000px;}
._10_c00140{margin-left:-5.940000px;}
._8_c00140{margin-left:-4.020000px;}
._11_c00140{margin-left:-2.880000px;}
._0_c00140{margin-left:-1.560000px;}
._1_c00140{width:1.080000px;}
._2_c00140{width:2.280000px;}
._e_c00140{width:3.300000px;}
._f_c00140{width:4.380000px;}
._b_c00140{width:5.460000px;}
._5_c00140{width:6.660000px;}
._6_c00140{width:8.520000px;}
._14_c00140{width:9.720000px;}
._7_c00140{width:10.800000px;}
._9_c00140{width:12.300000px;}
._a_c00140{width:13.800000px;}
._19_c00140{width:15.051165px;}
._3_c00140{width:16.920000px;}
._4_c00140{width:18.960000px;}
._13_c00140{width:21.180000px;}
._12_c00140{width:22.260000px;}
._18_c00140{width:25.830051px;}
._1a_c00140{width:28.950051px;}
.fc1_c00140{color:transparent;}
.fc0_c00140{color:rgb(35,31,32);}
.fs1_c00140{font-size:51.000000px;}
.fs0_c00140{font-size:60.000000px;}
.y0_c00140{bottom:0.000000px;}
.y26_c00140{bottom:64.425022px;}
.y25_c00140{bottom:110.175022px;}
.y24_c00140{bottom:125.325022px;}
.y23_c00140{bottom:141.150022px;}
.y22_c00140{bottom:155.925022px;}
.y21_c00140{bottom:171.375022px;}
.y20_c00140{bottom:186.525022px;}
.y1f_c00140{bottom:201.975022px;}
.y1e_c00140{bottom:217.425022px;}
.y1d_c00140{bottom:232.575022px;}
.y1c_c00140{bottom:248.025022px;}
.y1b_c00140{bottom:303.525022px;}
.y1a_c00140{bottom:322.950022px;}
.y19_c00140{bottom:341.625022px;}
.y18_c00140{bottom:361.425022px;}
.y17_c00140{bottom:380.550022px;}
.y16_c00140{bottom:400.350022px;}
.y15_c00140{bottom:419.775022px;}
.y14_c00140{bottom:438.825022px;}
.y13_c00140{bottom:458.325022px;}
.y12_c00140{bottom:478.125022px;}
.y11_c00140{bottom:497.175022px;}
.y10_c00140{bottom:516.975022px;}
.yf_c00140{bottom:536.400022px;}
.ye_c00140{bottom:555.825022px;}
.yd_c00140{bottom:594.000022px;}
.yb_c00140{bottom:650.550022px;}
.ya_c00140{bottom:670.350022px;}
.y9_c00140{bottom:689.775022px;}
.y8_c00140{bottom:709.200022px;}
.y7_c00140{bottom:728.325022px;}
.y6_c00140{bottom:747.750022px;}
.y5_c00140{bottom:767.550022px;}
.y4_c00140{bottom:786.675022px;}
.y3_c00140{bottom:806.100022px;}
.y2_c00140{bottom:825.525022px;}
.y1_c00140{bottom:844.950022px;}
.yc_c00140{bottom:886.725022px;}
.h3_c00140{height:50.053711px;}
.h2_c00140{height:58.886719px;}
.h1_c00140{height:957.750000px;}
.h0_c00140{height:957.975000px;}
.w1_c00140{width:643.500000px;}
.w0_c00140{width:643.650000px;}
.x0_c00140{left:0.000000px;}
.x1_c00140{left:91.050000px;}
.x4_c00140{left:92.175000px;}
.x2_c00140{left:96.150000px;}
.x3_c00140{left:123.825000px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls0_c00140{letter-spacing:0.000000pt;}
.ws1_c00140{word-spacing:-13.333333pt;}
.ws0_c00140{word-spacing:-11.333333pt;}
.ws2_c00140{word-spacing:0.000000pt;}
._17_c00140{margin-left:-12.266667pt;}
._16_c00140{margin-left:-10.400000pt;}
._15_c00140{margin-left:-9.493333pt;}
._d_c00140{margin-left:-8.266667pt;}
._c_c00140{margin-left:-7.093333pt;}
._10_c00140{margin-left:-5.280000pt;}
._8_c00140{margin-left:-3.573333pt;}
._11_c00140{margin-left:-2.560000pt;}
._0_c00140{margin-left:-1.386667pt;}
._1_c00140{width:0.960000pt;}
._2_c00140{width:2.026667pt;}
._e_c00140{width:2.933333pt;}
._f_c00140{width:3.893333pt;}
._b_c00140{width:4.853333pt;}
._5_c00140{width:5.920000pt;}
._6_c00140{width:7.573333pt;}
._14_c00140{width:8.640000pt;}
._7_c00140{width:9.600000pt;}
._9_c00140{width:10.933333pt;}
._a_c00140{width:12.266667pt;}
._19_c00140{width:13.378813pt;}
._3_c00140{width:15.040000pt;}
._4_c00140{width:16.853333pt;}
._13_c00140{width:18.826667pt;}
._12_c00140{width:19.786667pt;}
._18_c00140{width:22.960045pt;}
._1a_c00140{width:25.733379pt;}
.fs1_c00140{font-size:45.333333pt;}
.fs0_c00140{font-size:53.333333pt;}
.y0_c00140{bottom:0.000000pt;}
.y26_c00140{bottom:57.266686pt;}
.y25_c00140{bottom:97.933353pt;}
.y24_c00140{bottom:111.400020pt;}
.y23_c00140{bottom:125.466686pt;}
.y22_c00140{bottom:138.600020pt;}
.y21_c00140{bottom:152.333353pt;}
.y20_c00140{bottom:165.800020pt;}
.y1f_c00140{bottom:179.533353pt;}
.y1e_c00140{bottom:193.266686pt;}
.y1d_c00140{bottom:206.733353pt;}
.y1c_c00140{bottom:220.466686pt;}
.y1b_c00140{bottom:269.800020pt;}
.y1a_c00140{bottom:287.066686pt;}
.y19_c00140{bottom:303.666686pt;}
.y18_c00140{bottom:321.266686pt;}
.y17_c00140{bottom:338.266686pt;}
.y16_c00140{bottom:355.866686pt;}
.y15_c00140{bottom:373.133353pt;}
.y14_c00140{bottom:390.066686pt;}
.y13_c00140{bottom:407.400020pt;}
.y12_c00140{bottom:425.000020pt;}
.y11_c00140{bottom:441.933353pt;}
.y10_c00140{bottom:459.533353pt;}
.yf_c00140{bottom:476.800020pt;}
.ye_c00140{bottom:494.066686pt;}
.yd_c00140{bottom:528.000020pt;}
.yb_c00140{bottom:578.266686pt;}
.ya_c00140{bottom:595.866686pt;}
.y9_c00140{bottom:613.133353pt;}
.y8_c00140{bottom:630.400020pt;}
.y7_c00140{bottom:647.400020pt;}
.y6_c00140{bottom:664.666686pt;}
.y5_c00140{bottom:682.266686pt;}
.y4_c00140{bottom:699.266686pt;}
.y3_c00140{bottom:716.533353pt;}
.y2_c00140{bottom:733.800020pt;}
.y1_c00140{bottom:751.066686pt;}
.yc_c00140{bottom:788.200020pt;}
.h3_c00140{height:44.492188pt;}
.h2_c00140{height:52.343750pt;}
.h1_c00140{height:851.333333pt;}
.h0_c00140{height:851.533333pt;}
.w1_c00140{width:572.000000pt;}
.w0_c00140{width:572.133333pt;}
.x0_c00140{left:0.000000pt;}
.x1_c00140{left:80.933333pt;}
.x4_c00140{left:81.933333pt;}
.x2_c00140{left:85.466667pt;}
.x3_c00140{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_40c31532a332f6c5eed4634c.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00141;src:url('chunks/assets/font_08da8635b97c599ea16a4db9.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.ls0_c00141{letter-spacing:0.000000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00141{word-spacing:-15.000000px;}
.ws0_c00141{word-spacing:-12.750000px;}
.ws2_c00141{word-spacing:0.000000px;}
._7_c00141{margin-left:-9.543099px;}
._12_c00141{margin-left:-8.505225px;}
._c_c00141{margin-left:-7.367817px;}
._d_c00141{margin-left:-5.064366px;}
._17_c00141{margin-left:-3.929049px;}
._3_c00141{margin-left:-2.916078px;}
._0_c00141{margin-left:-1.383018px;}
._2_c00141{width:1.278009px;}
._4_c00141{width:2.493009px;}
._1_c00141{width:3.599988px;}
._e_c00141{width:4.862931px;}
._9_c00141{width:6.029865px;}
._15_c00141{width:7.329504px;}
._a_c00141{width:8.432964px;}
._5_c00141{width:9.662919px;}
._8_c00141{width:10.947036px;}
._6_c00141{width:12.083982px;}
._18_c00141{width:14.760063px;}
._19_c00141{width:16.096308px;}
._b_c00141{width:17.447964px;}
._f_c00141{width:18.780000px;}
._10_c00141{width:19.937919px;}
._1a_c00141{width:21.750021px;}
._11_c00141{width:23.765973px;}
._16_c00141{width:25.716087px;}
._13_c00141{width:29.580000px;}
._14_c00141{width:31.031811px;}
.fc1_c00141{color:transparent;}
.fc0_c00141{color:rgb(35,31,32);}
.fs0_c00141{font-size:51.000000px;}
.fs1_c00141{font-size:60.000000px;}
.y0_c00141{bottom:0.000000px;}
.y27_c00141{bottom:64.800022px;}
.y26_c00141{bottom:110.100022px;}
.y25_c00141{bottom:125.625022px;}
.y24_c00141{bottom:141.150022px;}
.y23_c00141{bottom:156.225022px;}
.y22_c00141{bottom:171.750022px;}
.y21_c00141{bottom:186.825022px;}
.y20_c00141{bottom:202.350022px;}
.y1f_c00141{bottom:217.125022px;}
.y1e_c00141{bottom:232.950022px;}
.y1d_c00141{bottom:248.025022px;}
.y1c_c00141{bottom:263.175022px;}
.y1b_c00141{bottom:278.325022px;}
.y1a_c00141{bottom:293.775022px;}
.y19_c00141{bottom:308.925022px;}
.y18_c00141{bottom:324.375022px;}
.y17_c00141{bottom:339.525022px;}
.y16_c00141{bottom:354.975022px;}
.y15_c00141{bottom:370.125022px;}
.y14_c00141{bottom:385.575022px;}
.y13_c00141{bottom:400.725022px;}
.y12_c00141{bottom:416.550022px;}
.y11_c00141{bottom:431.625022px;}
.y10_c00141{bottom:447.150022px;}
.yf_c00141{bottom:462.225022px;}
.ye_c00141{bottom:477.375022px;}
.yd_c00141{bottom:492.825022px;}
.yc_c00141{bottom:650.925022px;}
.yb_c00141{bottom:670.350022px;}
.ya_c00141{bottom:689.400022px;}
.y9_c00141{bottom:709.200022px;}
.y8_c00141{bottom:728.625022px;}
.y7_c00141{bottom:748.125022px;}
.y6_c00141{bottom:767.550022px;}
.y5_c00141{bottom:786.600022px;}
.y4_c00141{bottom:805.725022px;}
.y3_c00141{bottom:825.150022px;}
.y2_c00141{bottom:844.950022px;}
.y1_c00141{bottom:886.725022px;}
.h2_c00141{height:50.028809px;}
.h4_c00141{height:50.053711px;}
.h3_c00141{height:58.886719px;}
.h1_c00141{height:957.750000px;}
.h0_c00141{height:957.975000px;}
.w0_c00141{width:641.850030px;}
.w1_c00141{width:642.000000px;}
.x0_c00141{left:0.000000px;}
.x2_c00141{left:81.375000px;}
.x4_c00141{left:86.025000px;}
.x3_c00141{left:96.150000px;}
.x5_c00141{left:114.150000px;}
.x1_c00141{left:289.050000px;}
.x6_c00141{left:532.050000px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls0_c00141{letter-spacing:0.000000pt;}
.ws1_c00141{word-spacing:-13.333333pt;}
.ws0_c00141{word-spacing:-11.333333pt;}
.ws2_c00141{word-spacing:0.000000pt;}
._7_c00141{margin-left:-8.482755pt;}
._12_c00141{margin-left:-7.560200pt;}
._c_c00141{margin-left:-6.549171pt;}
._d_c00141{margin-left:-4.501659pt;}
._17_c00141{margin-left:-3.492488pt;}
._3_c00141{margin-left:-2.592069pt;}
._0_c00141{margin-left:-1.229349pt;}
._2_c00141{width:1.136008pt;}
._4_c00141{width:2.216008pt;}
._1_c00141{width:3.199989pt;}
._e_c00141{width:4.322605pt;}
._9_c00141{width:5.359880pt;}
._15_c00141{width:6.515115pt;}
._a_c00141{width:7.495968pt;}
._5_c00141{width:8.589261pt;}
._8_c00141{width:9.730699pt;}
._6_c00141{width:10.741317pt;}
._18_c00141{width:13.120056pt;}
._19_c00141{width:14.307829pt;}
._b_c00141{width:15.509301pt;}
._f_c00141{width:16.693333pt;}
._10_c00141{width:17.722595pt;}
._1a_c00141{width:19.333352pt;}
._11_c00141{width:21.125309pt;}
._16_c00141{width:22.858744pt;}
._13_c00141{width:26.293333pt;}
._14_c00141{width:27.583832pt;}
.fs0_c00141{font-size:45.333333pt;}
.fs1_c00141{font-size:53.333333pt;}
.y0_c00141{bottom:0.000000pt;}
.y27_c00141{bottom:57.600020pt;}
.y26_c00141{bottom:97.866686pt;}
.y25_c00141{bottom:111.666686pt;}
.y24_c00141{bottom:125.466686pt;}
.y23_c00141{bottom:138.866686pt;}
.y22_c00141{bottom:152.666686pt;}
.y21_c00141{bottom:166.066686pt;}
.y20_c00141{bottom:179.866686pt;}
.y1f_c00141{bottom:193.000020pt;}
.y1e_c00141{bottom:207.066686pt;}
.y1d_c00141{bottom:220.466686pt;}
.y1c_c00141{bottom:233.933353pt;}
.y1b_c00141{bottom:247.400020pt;}
.y1a_c00141{bottom:261.133353pt;}
.y19_c00141{bottom:274.600020pt;}
.y18_c00141{bottom:288.333353pt;}
.y17_c00141{bottom:301.800020pt;}
.y16_c00141{bottom:315.533353pt;}
.y15_c00141{bottom:329.000020pt;}
.y14_c00141{bottom:342.733353pt;}
.y13_c00141{bottom:356.200020pt;}
.y12_c00141{bottom:370.266686pt;}
.y11_c00141{bottom:383.666686pt;}
.y10_c00141{bottom:397.466686pt;}
.yf_c00141{bottom:410.866686pt;}
.ye_c00141{bottom:424.333353pt;}
.yd_c00141{bottom:438.066686pt;}
.yc_c00141{bottom:578.600020pt;}
.yb_c00141{bottom:595.866686pt;}
.ya_c00141{bottom:612.800020pt;}
.y9_c00141{bottom:630.400020pt;}
.y8_c00141{bottom:647.666686pt;}
.y7_c00141{bottom:665.000020pt;}
.y6_c00141{bottom:682.266686pt;}
.y5_c00141{bottom:699.200020pt;}
.y4_c00141{bottom:716.200020pt;}
.y3_c00141{bottom:733.466686pt;}
.y2_c00141{bottom:751.066686pt;}
.y1_c00141{bottom:788.200020pt;}
.h2_c00141{height:44.470052pt;}
.h4_c00141{height:44.492188pt;}
.h3_c00141{height:52.343750pt;}
.h1_c00141{height:851.333333pt;}
.h0_c00141{height:851.533333pt;}
.w0_c00141{width:570.533360pt;}
.w1_c00141{width:570.666667pt;}
.x0_c00141{left:0.000000pt;}
.x2_c00141{left:72.333333pt;}
.x4_c00141{left:76.466667pt;}
.x3_c00141{left:85.466667pt;}
.x5_c00141{left:101.466667pt;}
.x1_c00141{left:256.933333pt;}
.x6_c00141{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_89036ae9b6900627509cb1d0.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00142;src:url('chunks/assets/font_e9628c7981a50e492cd193f3.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.ls0_c00142{letter-spacing:0.000000px;}
.sc__c00142{text-shadow:none;}
.sc0_c00142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00142{-webkit-text-stroke:0px transparent;}
.sc0_c00142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00142{word-spacing:-15.000000px;}
.ws1_c00142{word-spacing:-12.750000px;}
.ws2_c00142{word-spacing:0.000000px;}
._15_c00142{margin-left:-15.600000px;}
._7_c00142{margin-left:-12.000000px;}
._3_c00142{margin-left:-10.260000px;}
._2_c00142{margin-left:-8.340000px;}
._5_c00142{margin-left:-6.900000px;}
._12_c00142{margin-left:-4.917012px;}
._18_c00142{margin-left:-3.158907px;}
._6_c00142{margin-left:-2.100000px;}
._e_c00142{margin-left:-1.020000px;}
._0_c00142{width:1.620000px;}
._1_c00142{width:3.540000px;}
._f_c00142{width:4.680000px;}
._10_c00142{width:6.240000px;}
._13_c00142{width:7.434024px;}
._11_c00142{width:8.640000px;}
._8_c00142{width:10.380000px;}
._4_c00142{width:12.300000px;}
._c_c00142{width:13.680000px;}
._17_c00142{width:14.900886px;}
._d_c00142{width:16.500000px;}
._9_c00142{width:17.940000px;}
._14_c00142{width:19.020000px;}
._a_c00142{width:20.040000px;}
._b_c00142{width:21.180000px;}
._16_c00142{width:25.950021px;}
._19_c00142{width:27.150051px;}
.fc1_c00142{color:transparent;}
.fc0_c00142{color:rgb(35,31,32);}
.fs1_c00142{font-size:51.000000px;}
.fs0_c00142{font-size:60.000000px;}
.y0_c00142{bottom:0.000000px;}
.y27_c00142{bottom:64.800022px;}
.y26_c00142{bottom:110.175022px;}
.y25_c00142{bottom:125.325022px;}
.y24_c00142{bottom:140.775022px;}
.y23_c00142{bottom:155.925022px;}
.y22_c00142{bottom:171.750022px;}
.y21_c00142{bottom:186.825022px;}
.y20_c00142{bottom:201.975022px;}
.y1f_c00142{bottom:217.125022px;}
.y1e_c00142{bottom:232.575022px;}
.y1d_c00142{bottom:247.725022px;}
.y1c_c00142{bottom:263.175022px;}
.y1b_c00142{bottom:278.325022px;}
.y1a_c00142{bottom:294.150022px;}
.y19_c00142{bottom:308.925022px;}
.y18_c00142{bottom:324.750022px;}
.y17_c00142{bottom:339.525022px;}
.y16_c00142{bottom:354.975022px;}
.y15_c00142{bottom:370.425022px;}
.y14_c00142{bottom:385.575022px;}
.y13_c00142{bottom:401.025022px;}
.y12_c00142{bottom:416.175022px;}
.y11_c00142{bottom:431.325022px;}
.y10_c00142{bottom:516.600022px;}
.yf_c00142{bottom:536.025022px;}
.ye_c00142{bottom:555.825022px;}
.yd_c00142{bottom:575.325022px;}
.yc_c00142{bottom:594.375022px;}
.yb_c00142{bottom:613.800022px;}
.ya_c00142{bottom:633.225022px;}
.y9_c00142{bottom:653.025022px;}
.y8_c00142{bottom:690.825022px;}
.y6_c00142{bottom:747.750022px;}
.y5_c00142{bottom:767.175022px;}
.y4_c00142{bottom:786.600022px;}
.y3_c00142{bottom:806.025022px;}
.y2_c00142{bottom:825.525022px;}
.y1_c00142{bottom:844.950022px;}
.y7_c00142{bottom:886.725022px;}
.h3_c00142{height:50.053711px;}
.h2_c00142{height:58.886719px;}
.h1_c00142{height:957.750000px;}
.h0_c00142{height:957.975000px;}
.w1_c00142{width:643.500000px;}
.w0_c00142{width:643.650000px;}
.x0_c00142{left:0.000000px;}
.x2_c00142{left:90.750000px;}
.x1_c00142{left:91.800000px;}
.x3_c00142{left:96.150000px;}
.x4_c00142{left:123.825000px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls0_c00142{letter-spacing:0.000000pt;}
.ws0_c00142{word-spacing:-13.333333pt;}
.ws1_c00142{word-spacing:-11.333333pt;}
.ws2_c00142{word-spacing:0.000000pt;}
._15_c00142{margin-left:-13.866667pt;}
._7_c00142{margin-left:-10.666667pt;}
._3_c00142{margin-left:-9.120000pt;}
._2_c00142{margin-left:-7.413333pt;}
._5_c00142{margin-left:-6.133333pt;}
._12_c00142{margin-left:-4.370677pt;}
._18_c00142{margin-left:-2.807917pt;}
._6_c00142{margin-left:-1.866667pt;}
._e_c00142{margin-left:-0.906667pt;}
._0_c00142{width:1.440000pt;}
._1_c00142{width:3.146667pt;}
._f_c00142{width:4.160000pt;}
._10_c00142{width:5.546667pt;}
._13_c00142{width:6.608021pt;}
._11_c00142{width:7.680000pt;}
._8_c00142{width:9.226667pt;}
._4_c00142{width:10.933333pt;}
._c_c00142{width:12.160000pt;}
._17_c00142{width:13.245232pt;}
._d_c00142{width:14.666667pt;}
._9_c00142{width:15.946667pt;}
._14_c00142{width:16.906667pt;}
._a_c00142{width:17.813333pt;}
._b_c00142{width:18.826667pt;}
._16_c00142{width:23.066685pt;}
._19_c00142{width:24.133379pt;}
.fs1_c00142{font-size:45.333333pt;}
.fs0_c00142{font-size:53.333333pt;}
.y0_c00142{bottom:0.000000pt;}
.y27_c00142{bottom:57.600020pt;}
.y26_c00142{bottom:97.933353pt;}
.y25_c00142{bottom:111.400020pt;}
.y24_c00142{bottom:125.133353pt;}
.y23_c00142{bottom:138.600020pt;}
.y22_c00142{bottom:152.666686pt;}
.y21_c00142{bottom:166.066686pt;}
.y20_c00142{bottom:179.533353pt;}
.y1f_c00142{bottom:193.000020pt;}
.y1e_c00142{bottom:206.733353pt;}
.y1d_c00142{bottom:220.200020pt;}
.y1c_c00142{bottom:233.933353pt;}
.y1b_c00142{bottom:247.400020pt;}
.y1a_c00142{bottom:261.466686pt;}
.y19_c00142{bottom:274.600020pt;}
.y18_c00142{bottom:288.666686pt;}
.y17_c00142{bottom:301.800020pt;}
.y16_c00142{bottom:315.533353pt;}
.y15_c00142{bottom:329.266686pt;}
.y14_c00142{bottom:342.733353pt;}
.y13_c00142{bottom:356.466686pt;}
.y12_c00142{bottom:369.933353pt;}
.y11_c00142{bottom:383.400020pt;}
.y10_c00142{bottom:459.200020pt;}
.yf_c00142{bottom:476.466686pt;}
.ye_c00142{bottom:494.066686pt;}
.yd_c00142{bottom:511.400020pt;}
.yc_c00142{bottom:528.333353pt;}
.yb_c00142{bottom:545.600020pt;}
.ya_c00142{bottom:562.866686pt;}
.y9_c00142{bottom:580.466686pt;}
.y8_c00142{bottom:614.066686pt;}
.y6_c00142{bottom:664.666686pt;}
.y5_c00142{bottom:681.933353pt;}
.y4_c00142{bottom:699.200020pt;}
.y3_c00142{bottom:716.466686pt;}
.y2_c00142{bottom:733.800020pt;}
.y1_c00142{bottom:751.066686pt;}
.y7_c00142{bottom:788.200020pt;}
.h3_c00142{height:44.492188pt;}
.h2_c00142{height:52.343750pt;}
.h1_c00142{height:851.333333pt;}
.h0_c00142{height:851.533333pt;}
.w1_c00142{width:572.000000pt;}
.w0_c00142{width:572.133333pt;}
.x0_c00142{left:0.000000pt;}
.x2_c00142{left:80.666667pt;}
.x1_c00142{left:81.600000pt;}
.x3_c00142{left:85.466667pt;}
.x4_c00142{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a295e6ed149255a0cf580233.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00143;src:url('chunks/assets/font_8833f37befa32e20988d18b0.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00143{vertical-align:0.000000px;}
.ls1_c00143{letter-spacing:0.000000px;}
.ls0_c00143{letter-spacing:11.550000px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00143{word-spacing:-15.000000px;}
.ws0_c00143{word-spacing:-12.750000px;}
.ws2_c00143{word-spacing:0.000000px;}
._1c_c00143{margin-left:-17.100000px;}
._e_c00143{margin-left:-14.886330px;}
._7_c00143{margin-left:-13.376526px;}
._d_c00143{margin-left:-11.969526px;}
._16_c00143{margin-left:-10.721256px;}
._c_c00143{margin-left:-7.866522px;}
._6_c00143{margin-left:-6.233478px;}
._15_c00143{margin-left:-5.153844px;}
._14_c00143{margin-left:-3.974454px;}
._3_c00143{margin-left:-2.916078px;}
._0_c00143{margin-left:-1.383018px;}
._2_c00143{width:1.278009px;}
._5_c00143{width:2.588913px;}
._1_c00143{width:3.599988px;}
._4_c00143{width:5.063904px;}
._13_c00143{width:6.352533px;}
._17_c00143{width:7.434231px;}
._b_c00143{width:8.520183px;}
._9_c00143{width:9.669111px;}
._8_c00143{width:11.558946px;}
._a_c00143{width:12.747027px;}
._1f_c00143{width:13.994886px;}
._20_c00143{width:16.068192px;}
._1e_c00143{width:17.124165px;}
._f_c00143{width:18.315069px;}
._10_c00143{width:19.985973px;}
._12_c00143{width:21.863982px;}
._11_c00143{width:23.190078px;}
._1d_c00143{width:25.012821px;}
._19_c00143{width:26.973201px;}
._18_c00143{width:28.500000px;}
._1b_c00143{width:29.615958px;}
._1a_c00143{width:31.193814px;}
._21_c00143{width:33.076407px;}
.fc2_c00143{color:transparent;}
.fc1_c00143{color:rgb(0,0,0);}
.fc0_c00143{color:rgb(35,31,32);}
.fs0_c00143{font-size:51.000000px;}
.fs1_c00143{font-size:60.000000px;}
.y0_c00143{bottom:0.000000px;}
.y2a_c00143{bottom:64.425022px;}
.y29_c00143{bottom:110.175022px;}
.y28_c00143{bottom:125.325022px;}
.y27_c00143{bottom:141.150022px;}
.y26_c00143{bottom:155.925022px;}
.y25_c00143{bottom:171.375022px;}
.y24_c00143{bottom:186.525022px;}
.y23_c00143{bottom:201.975022px;}
.y22_c00143{bottom:217.425022px;}
.y21_c00143{bottom:232.575022px;}
.y20_c00143{bottom:247.725022px;}
.y1f_c00143{bottom:263.175022px;}
.y1e_c00143{bottom:278.625022px;}
.y1d_c00143{bottom:294.150022px;}
.y1c_c00143{bottom:309.225022px;}
.y1b_c00143{bottom:324.750022px;}
.y1a_c00143{bottom:378.750022px;}
.y19_c00143{bottom:397.800022px;}
.y18_c00143{bottom:417.600022px;}
.y17_c00143{bottom:436.725022px;}
.y16_c00143{bottom:456.150022px;}
.y15_c00143{bottom:475.950022px;}
.y14_c00143{bottom:495.375022px;}
.y13_c00143{bottom:514.425022px;}
.y12_c00143{bottom:533.925022px;}
.y11_c00143{bottom:553.725022px;}
.y10_c00143{bottom:572.775022px;}
.yf_c00143{bottom:592.575022px;}
.ye_c00143{bottom:611.625022px;}
.yd_c00143{bottom:631.125022px;}
.yc_c00143{bottom:650.550022px;}
.yb_c00143{bottom:669.975022px;}
.ya_c00143{bottom:689.400022px;}
.y9_c00143{bottom:709.200022px;}
.y8_c00143{bottom:728.625022px;}
.y7_c00143{bottom:748.125022px;}
.y6_c00143{bottom:767.175022px;}
.y5_c00143{bottom:786.600022px;}
.y4_c00143{bottom:806.025022px;}
.y3_c00143{bottom:825.525022px;}
.y2_c00143{bottom:844.575022px;}
.y1_c00143{bottom:886.725022px;}
.h2_c00143{height:50.028809px;}
.h4_c00143{height:50.053711px;}
.h3_c00143{height:58.886719px;}
.h1_c00143{height:957.750000px;}
.h0_c00143{height:957.975000px;}
.w0_c00143{width:641.850030px;}
.w1_c00143{width:642.000000px;}
.x0_c00143{left:0.000000px;}
.x2_c00143{left:81.000000px;}
.x5_c00143{left:86.025000px;}
.x3_c00143{left:96.150000px;}
.x4_c00143{left:97.200000px;}
.x7_c00143{left:113.025000px;}
.x6_c00143{left:114.150000px;}
.x1_c00143{left:289.050000px;}
.x8_c00143{left:532.050000px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls1_c00143{letter-spacing:0.000000pt;}
.ls0_c00143{letter-spacing:10.266667pt;}
.ws1_c00143{word-spacing:-13.333333pt;}
.ws0_c00143{word-spacing:-11.333333pt;}
.ws2_c00143{word-spacing:0.000000pt;}
._1c_c00143{margin-left:-15.200000pt;}
._e_c00143{margin-left:-13.232293pt;}
._7_c00143{margin-left:-11.890245pt;}
._d_c00143{margin-left:-10.639579pt;}
._16_c00143{margin-left:-9.530005pt;}
._c_c00143{margin-left:-6.992464pt;}
._6_c00143{margin-left:-5.540869pt;}
._15_c00143{margin-left:-4.581195pt;}
._14_c00143{margin-left:-3.532848pt;}
._3_c00143{margin-left:-2.592069pt;}
._0_c00143{margin-left:-1.229349pt;}
._2_c00143{width:1.136008pt;}
._5_c00143{width:2.301256pt;}
._1_c00143{width:3.199989pt;}
._4_c00143{width:4.501248pt;}
._13_c00143{width:5.646696pt;}
._17_c00143{width:6.608205pt;}
._b_c00143{width:7.573496pt;}
._9_c00143{width:8.594765pt;}
._8_c00143{width:10.274619pt;}
._a_c00143{width:11.330691pt;}
._1f_c00143{width:12.439899pt;}
._20_c00143{width:14.282837pt;}
._1e_c00143{width:15.221480pt;}
._f_c00143{width:16.280061pt;}
._10_c00143{width:17.765309pt;}
._12_c00143{width:19.434651pt;}
._11_c00143{width:20.613403pt;}
._1d_c00143{width:22.233619pt;}
._19_c00143{width:23.976179pt;}
._18_c00143{width:25.333333pt;}
._1b_c00143{width:26.325296pt;}
._1a_c00143{width:27.727835pt;}
._21_c00143{width:29.401251pt;}
.fs0_c00143{font-size:45.333333pt;}
.fs1_c00143{font-size:53.333333pt;}
.y0_c00143{bottom:0.000000pt;}
.y2a_c00143{bottom:57.266686pt;}
.y29_c00143{bottom:97.933353pt;}
.y28_c00143{bottom:111.400020pt;}
.y27_c00143{bottom:125.466686pt;}
.y26_c00143{bottom:138.600020pt;}
.y25_c00143{bottom:152.333353pt;}
.y24_c00143{bottom:165.800020pt;}
.y23_c00143{bottom:179.533353pt;}
.y22_c00143{bottom:193.266686pt;}
.y21_c00143{bottom:206.733353pt;}
.y20_c00143{bottom:220.200020pt;}
.y1f_c00143{bottom:233.933353pt;}
.y1e_c00143{bottom:247.666686pt;}
.y1d_c00143{bottom:261.466686pt;}
.y1c_c00143{bottom:274.866686pt;}
.y1b_c00143{bottom:288.666686pt;}
.y1a_c00143{bottom:336.666686pt;}
.y19_c00143{bottom:353.600020pt;}
.y18_c00143{bottom:371.200020pt;}
.y17_c00143{bottom:388.200020pt;}
.y16_c00143{bottom:405.466686pt;}
.y15_c00143{bottom:423.066686pt;}
.y14_c00143{bottom:440.333353pt;}
.y13_c00143{bottom:457.266686pt;}
.y12_c00143{bottom:474.600020pt;}
.y11_c00143{bottom:492.200020pt;}
.y10_c00143{bottom:509.133353pt;}
.yf_c00143{bottom:526.733353pt;}
.ye_c00143{bottom:543.666686pt;}
.yd_c00143{bottom:561.000020pt;}
.yc_c00143{bottom:578.266686pt;}
.yb_c00143{bottom:595.533353pt;}
.ya_c00143{bottom:612.800020pt;}
.y9_c00143{bottom:630.400020pt;}
.y8_c00143{bottom:647.666686pt;}
.y7_c00143{bottom:665.000020pt;}
.y6_c00143{bottom:681.933353pt;}
.y5_c00143{bottom:699.200020pt;}
.y4_c00143{bottom:716.466686pt;}
.y3_c00143{bottom:733.800020pt;}
.y2_c00143{bottom:750.733353pt;}
.y1_c00143{bottom:788.200020pt;}
.h2_c00143{height:44.470052pt;}
.h4_c00143{height:44.492188pt;}
.h3_c00143{height:52.343750pt;}
.h1_c00143{height:851.333333pt;}
.h0_c00143{height:851.533333pt;}
.w0_c00143{width:570.533360pt;}
.w1_c00143{width:570.666667pt;}
.x0_c00143{left:0.000000pt;}
.x2_c00143{left:72.000000pt;}
.x5_c00143{left:76.466667pt;}
.x3_c00143{left:85.466667pt;}
.x4_c00143{left:86.400000pt;}
.x7_c00143{left:100.466667pt;}
.x6_c00143{left:101.466667pt;}
.x1_c00143{left:256.933333pt;}
.x8_c00143{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eacf3c3084768bdb5d493a8d.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00144;src:url('chunks/assets/font_953aa1e6adff5a21ca198626.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00144{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls1_c00144{letter-spacing:0.000000px;}
.ls0_c00144{letter-spacing:11.100000px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00144{word-spacing:-15.000000px;}
.ws1_c00144{word-spacing:-12.750000px;}
.ws2_c00144{word-spacing:0.000000px;}
._c_c00144{margin-left:-15.833835px;}
._11_c00144{margin-left:-14.603997px;}
._12_c00144{margin-left:-12.285129px;}
._7_c00144{margin-left:-10.467126px;}
._6_c00144{margin-left:-9.332874px;}
._a_c00144{margin-left:-7.812039px;}
._e_c00144{margin-left:-6.360000px;}
._0_c00144{margin-left:-4.917012px;}
._f_c00144{margin-left:-3.000000px;}
._1_c00144{margin-left:-1.650003px;}
._2_c00144{width:1.644039px;}
._3_c00144{width:3.284796px;}
._4_c00144{width:5.184156px;}
._b_c00144{width:6.912039px;}
._10_c00144{width:7.914057px;}
._9_c00144{width:9.059493px;}
._d_c00144{width:10.800000px;}
._5_c00144{width:12.623844px;}
._16_c00144{width:14.327991px;}
._13_c00144{width:16.271763px;}
._8_c00144{width:17.567883px;}
._14_c00144{width:23.250000px;}
._15_c00144{width:25.050054px;}
.fc2_c00144{color:transparent;}
.fc1_c00144{color:rgb(0,0,0);}
.fc0_c00144{color:rgb(35,31,32);}
.fs0_c00144{font-size:51.000000px;}
.fs1_c00144{font-size:60.000000px;}
.y0_c00144{bottom:0.000000px;}
.y24_c00144{bottom:64.800022px;}
.y23_c00144{bottom:110.175022px;}
.y22_c00144{bottom:125.625022px;}
.y21_c00144{bottom:141.150022px;}
.y20_c00144{bottom:155.925022px;}
.y1f_c00144{bottom:171.750022px;}
.y1e_c00144{bottom:186.525022px;}
.y1d_c00144{bottom:201.975022px;}
.y1c_c00144{bottom:217.125022px;}
.y1b_c00144{bottom:232.950022px;}
.y1a_c00144{bottom:247.725022px;}
.y19_c00144{bottom:288.000022px;}
.y18_c00144{bottom:307.125022px;}
.y17_c00144{bottom:326.925022px;}
.y16_c00144{bottom:345.975022px;}
.y15_c00144{bottom:365.400022px;}
.y14_c00144{bottom:384.825022px;}
.y13_c00144{bottom:404.625022px;}
.y12_c00144{bottom:424.125022px;}
.y11_c00144{bottom:462.975022px;}
.y10_c00144{bottom:515.550022px;}
.yf_c00144{bottom:534.975022px;}
.ye_c00144{bottom:554.400022px;}
.yd_c00144{bottom:573.525022px;}
.yc_c00144{bottom:592.950022px;}
.yb_c00144{bottom:612.375022px;}
.ya_c00144{bottom:651.225022px;}
.y9_c00144{bottom:708.825022px;}
.y8_c00144{bottom:728.325022px;}
.y7_c00144{bottom:748.050022px;}
.y6_c00144{bottom:767.550022px;}
.y5_c00144{bottom:786.600022px;}
.y4_c00144{bottom:806.025022px;}
.y3_c00144{bottom:825.525022px;}
.y2_c00144{bottom:844.875022px;}
.y1_c00144{bottom:886.725022px;}
.h2_c00144{height:50.053711px;}
.h3_c00144{height:58.886719px;}
.h1_c00144{height:957.750000px;}
.h0_c00144{height:957.975000px;}
.w1_c00144{width:643.500000px;}
.w0_c00144{width:643.650000px;}
.x0_c00144{left:0.000000px;}
.x2_c00144{left:90.375000px;}
.x1_c00144{left:91.800000px;}
.x3_c00144{left:96.150000px;}
.x4_c00144{left:124.200000px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls1_c00144{letter-spacing:0.000000pt;}
.ls0_c00144{letter-spacing:9.866667pt;}
.ws0_c00144{word-spacing:-13.333333pt;}
.ws1_c00144{word-spacing:-11.333333pt;}
.ws2_c00144{word-spacing:0.000000pt;}
._c_c00144{margin-left:-14.074520pt;}
._11_c00144{margin-left:-12.981331pt;}
._12_c00144{margin-left:-10.920115pt;}
._7_c00144{margin-left:-9.304112pt;}
._6_c00144{margin-left:-8.295888pt;}
._a_c00144{margin-left:-6.944035pt;}
._e_c00144{margin-left:-5.653333pt;}
._0_c00144{margin-left:-4.370677pt;}
._f_c00144{margin-left:-2.666667pt;}
._1_c00144{margin-left:-1.466669pt;}
._2_c00144{width:1.461368pt;}
._3_c00144{width:2.919819pt;}
._4_c00144{width:4.608139pt;}
._b_c00144{width:6.144035pt;}
._10_c00144{width:7.034717pt;}
._9_c00144{width:8.052883pt;}
._d_c00144{width:9.600000pt;}
._5_c00144{width:11.221195pt;}
._16_c00144{width:12.735992pt;}
._13_c00144{width:14.463789pt;}
._8_c00144{width:15.615896pt;}
._14_c00144{width:20.666667pt;}
._15_c00144{width:22.266715pt;}
.fs0_c00144{font-size:45.333333pt;}
.fs1_c00144{font-size:53.333333pt;}
.y0_c00144{bottom:0.000000pt;}
.y24_c00144{bottom:57.600020pt;}
.y23_c00144{bottom:97.933353pt;}
.y22_c00144{bottom:111.666686pt;}
.y21_c00144{bottom:125.466686pt;}
.y20_c00144{bottom:138.600020pt;}
.y1f_c00144{bottom:152.666686pt;}
.y1e_c00144{bottom:165.800020pt;}
.y1d_c00144{bottom:179.533353pt;}
.y1c_c00144{bottom:193.000020pt;}
.y1b_c00144{bottom:207.066686pt;}
.y1a_c00144{bottom:220.200020pt;}
.y19_c00144{bottom:256.000020pt;}
.y18_c00144{bottom:273.000020pt;}
.y17_c00144{bottom:290.600020pt;}
.y16_c00144{bottom:307.533353pt;}
.y15_c00144{bottom:324.800020pt;}
.y14_c00144{bottom:342.066686pt;}
.y13_c00144{bottom:359.666686pt;}
.y12_c00144{bottom:377.000020pt;}
.y11_c00144{bottom:411.533353pt;}
.y10_c00144{bottom:458.266686pt;}
.yf_c00144{bottom:475.533353pt;}
.ye_c00144{bottom:492.800020pt;}
.yd_c00144{bottom:509.800020pt;}
.yc_c00144{bottom:527.066686pt;}
.yb_c00144{bottom:544.333353pt;}
.ya_c00144{bottom:578.866686pt;}
.y9_c00144{bottom:630.066686pt;}
.y8_c00144{bottom:647.400020pt;}
.y7_c00144{bottom:664.933353pt;}
.y6_c00144{bottom:682.266686pt;}
.y5_c00144{bottom:699.200020pt;}
.y4_c00144{bottom:716.466686pt;}
.y3_c00144{bottom:733.800020pt;}
.y2_c00144{bottom:751.000020pt;}
.y1_c00144{bottom:788.200020pt;}
.h2_c00144{height:44.492188pt;}
.h3_c00144{height:52.343750pt;}
.h1_c00144{height:851.333333pt;}
.h0_c00144{height:851.533333pt;}
.w1_c00144{width:572.000000pt;}
.w0_c00144{width:572.133333pt;}
.x0_c00144{left:0.000000pt;}
.x2_c00144{left:80.333333pt;}
.x1_c00144{left:81.600000pt;}
.x3_c00144{left:85.466667pt;}
.x4_c00144{left:110.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_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_a9200cfdd1a3bae2b5b535dc.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00145;src:url('chunks/assets/font_678eacaa4f82e17c3010658d.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.sc__c00145{text-shadow:none;}
.sc0_c00145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00145{-webkit-text-stroke:0px transparent;}
.sc0_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00145{word-spacing:-15.000000px;}
.ws0_c00145{word-spacing:-12.750000px;}
.ws2_c00145{word-spacing:0.000000px;}
._b_c00145{margin-left:-10.800000px;}
._a_c00145{margin-left:-9.425997px;}
._10_c00145{margin-left:-7.128234px;}
._14_c00145{margin-left:-5.400000px;}
._5_c00145{margin-left:-4.227150px;}
._3_c00145{margin-left:-2.916078px;}
._0_c00145{margin-left:-1.383018px;}
._2_c00145{width:1.278009px;}
._4_c00145{width:2.489991px;}
._1_c00145{width:3.599988px;}
._7_c00145{width:5.603892px;}
._15_c00145{width:6.684426px;}
._8_c00145{width:7.703916px;}
._6_c00145{width:8.820030px;}
._19_c00145{width:9.828375px;}
._9_c00145{width:10.829925px;}
._13_c00145{width:12.137901px;}
._f_c00145{width:13.841961px;}
._18_c00145{width:14.850027px;}
._11_c00145{width:16.884024px;}
._d_c00145{width:18.245973px;}
._c_c00145{width:21.192012px;}
._e_c00145{width:23.033961px;}
._12_c00145{width:24.198069px;}
._17_c00145{width:25.716087px;}
._16_c00145{width:28.599054px;}
.fc1_c00145{color:transparent;}
.fc0_c00145{color:rgb(35,31,32);}
.fs0_c00145{font-size:51.000000px;}
.fs1_c00145{font-size:60.000000px;}
.y0_c00145{bottom:0.000000px;}
.y2a_c00145{bottom:64.425022px;}
.y29_c00145{bottom:110.175022px;}
.y28_c00145{bottom:125.325022px;}
.y27_c00145{bottom:140.775022px;}
.y26_c00145{bottom:155.925022px;}
.y25_c00145{bottom:171.375022px;}
.y24_c00145{bottom:186.525022px;}
.y23_c00145{bottom:201.975022px;}
.y22_c00145{bottom:217.425022px;}
.y21_c00145{bottom:232.575022px;}
.y20_c00145{bottom:248.025022px;}
.y1f_c00145{bottom:263.175022px;}
.y1e_c00145{bottom:278.325022px;}
.y1d_c00145{bottom:294.150022px;}
.y1c_c00145{bottom:309.225022px;}
.y1b_c00145{bottom:324.750022px;}
.y1a_c00145{bottom:339.825022px;}
.y19_c00145{bottom:398.175022px;}
.y18_c00145{bottom:417.225022px;}
.y17_c00145{bottom:437.025022px;}
.y16_c00145{bottom:456.525022px;}
.y15_c00145{bottom:475.950022px;}
.y14_c00145{bottom:495.375022px;}
.y13_c00145{bottom:514.425022px;}
.y12_c00145{bottom:534.225022px;}
.y11_c00145{bottom:553.350022px;}
.y10_c00145{bottom:572.775022px;}
.yf_c00145{bottom:592.575022px;}
.ye_c00145{bottom:612.000022px;}
.yd_c00145{bottom:631.125022px;}
.yc_c00145{bottom:650.925022px;}
.yb_c00145{bottom:670.350022px;}
.ya_c00145{bottom:689.775022px;}
.y9_c00145{bottom:708.825022px;}
.y8_c00145{bottom:728.625022px;}
.y7_c00145{bottom:747.750022px;}
.y6_c00145{bottom:767.550022px;}
.y5_c00145{bottom:786.600022px;}
.y4_c00145{bottom:806.025022px;}
.y3_c00145{bottom:825.525022px;}
.y2_c00145{bottom:844.575022px;}
.y1_c00145{bottom:886.725022px;}
.h2_c00145{height:50.028809px;}
.h4_c00145{height:50.053711px;}
.h3_c00145{height:58.886719px;}
.h1_c00145{height:957.750000px;}
.h0_c00145{height:957.975000px;}
.w0_c00145{width:641.850030px;}
.w1_c00145{width:642.000000px;}
.x0_c00145{left:0.000000px;}
.x2_c00145{left:80.250000px;}
.x3_c00145{left:81.375000px;}
.x5_c00145{left:86.025000px;}
.x4_c00145{left:96.825000px;}
.x6_c00145{left:113.775000px;}
.x1_c00145{left:289.050000px;}
.x7_c00145{left:532.050000px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls0_c00145{letter-spacing:0.000000pt;}
.ws1_c00145{word-spacing:-13.333333pt;}
.ws0_c00145{word-spacing:-11.333333pt;}
.ws2_c00145{word-spacing:0.000000pt;}
._b_c00145{margin-left:-9.600000pt;}
._a_c00145{margin-left:-8.378664pt;}
._10_c00145{margin-left:-6.336208pt;}
._14_c00145{margin-left:-4.800000pt;}
._5_c00145{margin-left:-3.757467pt;}
._3_c00145{margin-left:-2.592069pt;}
._0_c00145{margin-left:-1.229349pt;}
._2_c00145{width:1.136008pt;}
._4_c00145{width:2.213325pt;}
._1_c00145{width:3.199989pt;}
._7_c00145{width:4.981237pt;}
._15_c00145{width:5.941712pt;}
._8_c00145{width:6.847925pt;}
._6_c00145{width:7.840027pt;}
._19_c00145{width:8.736333pt;}
._9_c00145{width:9.626600pt;}
._13_c00145{width:10.789245pt;}
._f_c00145{width:12.303965pt;}
._18_c00145{width:13.200024pt;}
._11_c00145{width:15.008021pt;}
._d_c00145{width:16.218643pt;}
._c_c00145{width:18.837344pt;}
._e_c00145{width:20.474632pt;}
._12_c00145{width:21.509395pt;}
._17_c00145{width:22.858744pt;}
._16_c00145{width:25.421381pt;}
.fs0_c00145{font-size:45.333333pt;}
.fs1_c00145{font-size:53.333333pt;}
.y0_c00145{bottom:0.000000pt;}
.y2a_c00145{bottom:57.266686pt;}
.y29_c00145{bottom:97.933353pt;}
.y28_c00145{bottom:111.400020pt;}
.y27_c00145{bottom:125.133353pt;}
.y26_c00145{bottom:138.600020pt;}
.y25_c00145{bottom:152.333353pt;}
.y24_c00145{bottom:165.800020pt;}
.y23_c00145{bottom:179.533353pt;}
.y22_c00145{bottom:193.266686pt;}
.y21_c00145{bottom:206.733353pt;}
.y20_c00145{bottom:220.466686pt;}
.y1f_c00145{bottom:233.933353pt;}
.y1e_c00145{bottom:247.400020pt;}
.y1d_c00145{bottom:261.466686pt;}
.y1c_c00145{bottom:274.866686pt;}
.y1b_c00145{bottom:288.666686pt;}
.y1a_c00145{bottom:302.066686pt;}
.y19_c00145{bottom:353.933353pt;}
.y18_c00145{bottom:370.866686pt;}
.y17_c00145{bottom:388.466686pt;}
.y16_c00145{bottom:405.800020pt;}
.y15_c00145{bottom:423.066686pt;}
.y14_c00145{bottom:440.333353pt;}
.y13_c00145{bottom:457.266686pt;}
.y12_c00145{bottom:474.866686pt;}
.y11_c00145{bottom:491.866686pt;}
.y10_c00145{bottom:509.133353pt;}
.yf_c00145{bottom:526.733353pt;}
.ye_c00145{bottom:544.000020pt;}
.yd_c00145{bottom:561.000020pt;}
.yc_c00145{bottom:578.600020pt;}
.yb_c00145{bottom:595.866686pt;}
.ya_c00145{bottom:613.133353pt;}
.y9_c00145{bottom:630.066686pt;}
.y8_c00145{bottom:647.666686pt;}
.y7_c00145{bottom:664.666686pt;}
.y6_c00145{bottom:682.266686pt;}
.y5_c00145{bottom:699.200020pt;}
.y4_c00145{bottom:716.466686pt;}
.y3_c00145{bottom:733.800020pt;}
.y2_c00145{bottom:750.733353pt;}
.y1_c00145{bottom:788.200020pt;}
.h2_c00145{height:44.470052pt;}
.h4_c00145{height:44.492188pt;}
.h3_c00145{height:52.343750pt;}
.h1_c00145{height:851.333333pt;}
.h0_c00145{height:851.533333pt;}
.w0_c00145{width:570.533360pt;}
.w1_c00145{width:570.666667pt;}
.x0_c00145{left:0.000000pt;}
.x2_c00145{left:71.333333pt;}
.x3_c00145{left:72.333333pt;}
.x5_c00145{left:76.466667pt;}
.x4_c00145{left:86.066667pt;}
.x6_c00145{left:101.133333pt;}
.x1_c00145{left:256.933333pt;}
.x7_c00145{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a4268b5554477bf22f64592f.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00146;src:url('chunks/assets/font_f758ff5e66e242222d3ba778.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00146{letter-spacing:0.000000px;}
.ls0_c00146{letter-spacing:10.800000px;}
.sc__c00146{text-shadow:none;}
.sc0_c00146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00146{-webkit-text-stroke:0px transparent;}
.sc0_c00146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00146{word-spacing:-15.000000px;}
.ws1_c00146{word-spacing:-12.750000px;}
.ws2_c00146{word-spacing:0.000000px;}
._11_c00146{margin-left:-15.600000px;}
._14_c00146{margin-left:-13.440012px;}
._18_c00146{margin-left:-11.429997px;}
._3_c00146{margin-left:-10.140000px;}
._f_c00146{margin-left:-7.800000px;}
._1c_c00146{margin-left:-6.524988px;}
._9_c00146{margin-left:-4.917012px;}
._8_c00146{margin-left:-3.900000px;}
._1d_c00146{margin-left:-2.873967px;}
._a_c00146{margin-left:-1.650003px;}
._0_c00146{width:1.800000px;}
._7_c00146{width:3.180000px;}
._6_c00146{width:4.560000px;}
._4_c00146{width:5.880000px;}
._5_c00146{width:7.140000px;}
._1_c00146{width:8.340000px;}
._c_c00146{width:9.480000px;}
._2_c00146{width:10.620000px;}
._d_c00146{width:11.640006px;}
._b_c00146{width:13.140000px;}
._1a_c00146{width:14.375991px;}
._1b_c00146{width:15.468057px;}
._13_c00146{width:16.529991px;}
._19_c00146{width:17.550027px;}
._12_c00146{width:18.630003px;}
._10_c00146{width:19.740006px;}
._e_c00146{width:21.720000px;}
._16_c00146{width:24.717012px;}
._15_c00146{width:26.520000px;}
._17_c00146{width:28.830003px;}
.fc2_c00146{color:transparent;}
.fc1_c00146{color:rgb(0,0,0);}
.fc0_c00146{color:rgb(35,31,32);}
.fs1_c00146{font-size:51.000000px;}
.fs0_c00146{font-size:60.000000px;}
.y0_c00146{bottom:0.000000px;}
.y28_c00146{bottom:64.425022px;}
.y27_c00146{bottom:110.175022px;}
.y26_c00146{bottom:125.325022px;}
.y25_c00146{bottom:141.150022px;}
.y24_c00146{bottom:156.225022px;}
.y23_c00146{bottom:171.375022px;}
.y22_c00146{bottom:186.825022px;}
.y21_c00146{bottom:201.975022px;}
.y20_c00146{bottom:217.125022px;}
.y1f_c00146{bottom:232.950022px;}
.y1e_c00146{bottom:247.725022px;}
.y1d_c00146{bottom:263.550022px;}
.y1c_c00146{bottom:278.625022px;}
.y1b_c00146{bottom:293.775022px;}
.y1a_c00146{bottom:308.925022px;}
.y19_c00146{bottom:324.375022px;}
.y18_c00146{bottom:339.525022px;}
.y17_c00146{bottom:354.975022px;}
.y16_c00146{bottom:370.425022px;}
.y15_c00146{bottom:385.575022px;}
.y14_c00146{bottom:400.725022px;}
.y13_c00146{bottom:416.175022px;}
.y12_c00146{bottom:484.200022px;}
.y11_c00146{bottom:503.700022px;}
.y10_c00146{bottom:523.125022px;}
.yf_c00146{bottom:542.550022px;}
.ye_c00146{bottom:561.975022px;}
.yd_c00146{bottom:581.400022px;}
.yc_c00146{bottom:600.825022px;}
.yb_c00146{bottom:619.950022px;}
.ya_c00146{bottom:639.375022px;}
.y9_c00146{bottom:658.800022px;}
.y8_c00146{bottom:678.225022px;}
.y7_c00146{bottom:697.350022px;}
.y6_c00146{bottom:735.825022px;}
.y4_c00146{bottom:786.600022px;}
.y3_c00146{bottom:806.025022px;}
.y2_c00146{bottom:825.150022px;}
.y1_c00146{bottom:844.575022px;}
.y5_c00146{bottom:886.725022px;}
.h3_c00146{height:50.053711px;}
.h2_c00146{height:58.886719px;}
.h1_c00146{height:957.750000px;}
.h0_c00146{height:957.975000px;}
.w1_c00146{width:643.500000px;}
.w0_c00146{width:643.650000px;}
.x0_c00146{left:0.000000px;}
.x2_c00146{left:90.375000px;}
.x1_c00146{left:91.425000px;}
.x3_c00146{left:96.150000px;}
.x5_c00146{left:123.150000px;}
.x4_c00146{left:124.200000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls1_c00146{letter-spacing:0.000000pt;}
.ls0_c00146{letter-spacing:9.600000pt;}
.ws0_c00146{word-spacing:-13.333333pt;}
.ws1_c00146{word-spacing:-11.333333pt;}
.ws2_c00146{word-spacing:0.000000pt;}
._11_c00146{margin-left:-13.866667pt;}
._14_c00146{margin-left:-11.946677pt;}
._18_c00146{margin-left:-10.159997pt;}
._3_c00146{margin-left:-9.013333pt;}
._f_c00146{margin-left:-6.933333pt;}
._1c_c00146{margin-left:-5.799989pt;}
._9_c00146{margin-left:-4.370677pt;}
._8_c00146{margin-left:-3.466667pt;}
._1d_c00146{margin-left:-2.554637pt;}
._a_c00146{margin-left:-1.466669pt;}
._0_c00146{width:1.600000pt;}
._7_c00146{width:2.826667pt;}
._6_c00146{width:4.053333pt;}
._4_c00146{width:5.226667pt;}
._5_c00146{width:6.346667pt;}
._1_c00146{width:7.413333pt;}
._c_c00146{width:8.426667pt;}
._2_c00146{width:9.440000pt;}
._d_c00146{width:10.346672pt;}
._b_c00146{width:11.680000pt;}
._1a_c00146{width:12.778659pt;}
._1b_c00146{width:13.749384pt;}
._13_c00146{width:14.693325pt;}
._19_c00146{width:15.600024pt;}
._12_c00146{width:16.560003pt;}
._10_c00146{width:17.546672pt;}
._e_c00146{width:19.306667pt;}
._16_c00146{width:21.970677pt;}
._15_c00146{width:23.573333pt;}
._17_c00146{width:25.626669pt;}
.fs1_c00146{font-size:45.333333pt;}
.fs0_c00146{font-size:53.333333pt;}
.y0_c00146{bottom:0.000000pt;}
.y28_c00146{bottom:57.266686pt;}
.y27_c00146{bottom:97.933353pt;}
.y26_c00146{bottom:111.400020pt;}
.y25_c00146{bottom:125.466686pt;}
.y24_c00146{bottom:138.866686pt;}
.y23_c00146{bottom:152.333353pt;}
.y22_c00146{bottom:166.066686pt;}
.y21_c00146{bottom:179.533353pt;}
.y20_c00146{bottom:193.000020pt;}
.y1f_c00146{bottom:207.066686pt;}
.y1e_c00146{bottom:220.200020pt;}
.y1d_c00146{bottom:234.266686pt;}
.y1c_c00146{bottom:247.666686pt;}
.y1b_c00146{bottom:261.133353pt;}
.y1a_c00146{bottom:274.600020pt;}
.y19_c00146{bottom:288.333353pt;}
.y18_c00146{bottom:301.800020pt;}
.y17_c00146{bottom:315.533353pt;}
.y16_c00146{bottom:329.266686pt;}
.y15_c00146{bottom:342.733353pt;}
.y14_c00146{bottom:356.200020pt;}
.y13_c00146{bottom:369.933353pt;}
.y12_c00146{bottom:430.400020pt;}
.y11_c00146{bottom:447.733353pt;}
.y10_c00146{bottom:465.000020pt;}
.yf_c00146{bottom:482.266686pt;}
.ye_c00146{bottom:499.533353pt;}
.yd_c00146{bottom:516.800020pt;}
.yc_c00146{bottom:534.066686pt;}
.yb_c00146{bottom:551.066686pt;}
.ya_c00146{bottom:568.333353pt;}
.y9_c00146{bottom:585.600020pt;}
.y8_c00146{bottom:602.866686pt;}
.y7_c00146{bottom:619.866686pt;}
.y6_c00146{bottom:654.066686pt;}
.y4_c00146{bottom:699.200020pt;}
.y3_c00146{bottom:716.466686pt;}
.y2_c00146{bottom:733.466686pt;}
.y1_c00146{bottom:750.733353pt;}
.y5_c00146{bottom:788.200020pt;}
.h3_c00146{height:44.492188pt;}
.h2_c00146{height:52.343750pt;}
.h1_c00146{height:851.333333pt;}
.h0_c00146{height:851.533333pt;}
.w1_c00146{width:572.000000pt;}
.w0_c00146{width:572.133333pt;}
.x0_c00146{left:0.000000pt;}
.x2_c00146{left:80.333333pt;}
.x1_c00146{left:81.266667pt;}
.x3_c00146{left:85.466667pt;}
.x5_c00146{left:109.466667pt;}
.x4_c00146{left:110.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_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_09b5987c02cad724811823be.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00147;src:url('chunks/assets/font_9a1e269a6cf56404fbbcce99.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.ls1_c00147{letter-spacing:0.000000px;}
.ls0_c00147{letter-spacing:1.650000px;}
.sc__c00147{text-shadow:none;}
.sc0_c00147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00147{-webkit-text-stroke:0px transparent;}
.sc0_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00147{word-spacing:-15.000000px;}
.ws1_c00147{word-spacing:-12.750000px;}
.ws2_c00147{word-spacing:0.000000px;}
._8_c00147{margin-left:-11.760060px;}
._7_c00147{margin-left:-9.839940px;}
._d_c00147{margin-left:-7.625871px;}
._5_c00147{margin-left:-5.700000px;}
._17_c00147{margin-left:-4.538775px;}
._3_c00147{margin-left:-2.916078px;}
._0_c00147{margin-left:-1.383018px;}
._2_c00147{width:1.278009px;}
._b_c00147{width:2.351946px;}
._1_c00147{width:3.599988px;}
._a_c00147{width:5.400123px;}
._e_c00147{width:6.623856px;}
._9_c00147{width:7.800000px;}
._c_c00147{width:9.353937px;}
._6_c00147{width:11.100000px;}
._4_c00147{width:12.761991px;}
._12_c00147{width:13.769955px;}
._f_c00147{width:16.163982px;}
._11_c00147{width:17.465973px;}
._10_c00147{width:18.989955px;}
._13_c00147{width:20.381901px;}
._15_c00147{width:21.617829px;}
._14_c00147{width:22.721901px;}
._18_c00147{width:24.516057px;}
._16_c00147{width:25.899024px;}
.fc2_c00147{color:transparent;}
.fc1_c00147{color:rgb(0,0,0);}
.fc0_c00147{color:rgb(35,31,32);}
.fs0_c00147{font-size:51.000000px;}
.fs1_c00147{font-size:60.000000px;}
.y0_c00147{bottom:0.000000px;}
.y2a_c00147{bottom:64.425022px;}
.y29_c00147{bottom:110.175022px;}
.y28_c00147{bottom:125.325022px;}
.y27_c00147{bottom:140.775022px;}
.y26_c00147{bottom:155.925022px;}
.y25_c00147{bottom:171.375022px;}
.y24_c00147{bottom:186.825022px;}
.y23_c00147{bottom:201.975022px;}
.y22_c00147{bottom:217.125022px;}
.y21_c00147{bottom:232.575022px;}
.y20_c00147{bottom:248.025022px;}
.y1f_c00147{bottom:263.550022px;}
.y1e_c00147{bottom:278.325022px;}
.y1d_c00147{bottom:294.150022px;}
.y1c_c00147{bottom:308.925022px;}
.y1b_c00147{bottom:324.375022px;}
.y1a_c00147{bottom:378.375022px;}
.y19_c00147{bottom:397.800022px;}
.y18_c00147{bottom:417.225022px;}
.y17_c00147{bottom:437.025022px;}
.y16_c00147{bottom:456.150022px;}
.y15_c00147{bottom:475.950022px;}
.y14_c00147{bottom:495.000022px;}
.y13_c00147{bottom:514.800022px;}
.y12_c00147{bottom:533.925022px;}
.y11_c00147{bottom:553.725022px;}
.y10_c00147{bottom:572.775022px;}
.yf_c00147{bottom:592.575022px;}
.ye_c00147{bottom:612.000022px;}
.yd_c00147{bottom:631.425022px;}
.yc_c00147{bottom:650.550022px;}
.yb_c00147{bottom:669.975022px;}
.ya_c00147{bottom:689.400022px;}
.y9_c00147{bottom:708.825022px;}
.y8_c00147{bottom:728.325022px;}
.y7_c00147{bottom:748.125022px;}
.y6_c00147{bottom:767.550022px;}
.y5_c00147{bottom:786.225022px;}
.y4_c00147{bottom:806.025022px;}
.y3_c00147{bottom:825.525022px;}
.y2_c00147{bottom:844.950022px;}
.y1_c00147{bottom:886.725022px;}
.h2_c00147{height:50.028809px;}
.h4_c00147{height:50.053711px;}
.h3_c00147{height:58.886719px;}
.h1_c00147{height:957.750000px;}
.h0_c00147{height:957.975000px;}
.w0_c00147{width:641.850030px;}
.w1_c00147{width:642.000000px;}
.x0_c00147{left:0.000000px;}
.x3_c00147{left:80.250000px;}
.x2_c00147{left:81.750000px;}
.x5_c00147{left:86.025000px;}
.x4_c00147{left:97.200000px;}
.x6_c00147{left:114.150000px;}
.x1_c00147{left:289.050000px;}
.x7_c00147{left:532.050000px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls1_c00147{letter-spacing:0.000000pt;}
.ls0_c00147{letter-spacing:1.466667pt;}
.ws0_c00147{word-spacing:-13.333333pt;}
.ws1_c00147{word-spacing:-11.333333pt;}
.ws2_c00147{word-spacing:0.000000pt;}
._8_c00147{margin-left:-10.453387pt;}
._7_c00147{margin-left:-8.746613pt;}
._d_c00147{margin-left:-6.778552pt;}
._5_c00147{margin-left:-5.066667pt;}
._17_c00147{margin-left:-4.034467pt;}
._3_c00147{margin-left:-2.592069pt;}
._0_c00147{margin-left:-1.229349pt;}
._2_c00147{width:1.136008pt;}
._b_c00147{width:2.090619pt;}
._1_c00147{width:3.199989pt;}
._a_c00147{width:4.800109pt;}
._e_c00147{width:5.887872pt;}
._9_c00147{width:6.933333pt;}
._c_c00147{width:8.314611pt;}
._6_c00147{width:9.866667pt;}
._4_c00147{width:11.343992pt;}
._12_c00147{width:12.239960pt;}
._f_c00147{width:14.367984pt;}
._11_c00147{width:15.525309pt;}
._10_c00147{width:16.879960pt;}
._13_c00147{width:18.117245pt;}
._15_c00147{width:19.215848pt;}
._14_c00147{width:20.197245pt;}
._18_c00147{width:21.792051pt;}
._16_c00147{width:23.021355pt;}
.fs0_c00147{font-size:45.333333pt;}
.fs1_c00147{font-size:53.333333pt;}
.y0_c00147{bottom:0.000000pt;}
.y2a_c00147{bottom:57.266686pt;}
.y29_c00147{bottom:97.933353pt;}
.y28_c00147{bottom:111.400020pt;}
.y27_c00147{bottom:125.133353pt;}
.y26_c00147{bottom:138.600020pt;}
.y25_c00147{bottom:152.333353pt;}
.y24_c00147{bottom:166.066686pt;}
.y23_c00147{bottom:179.533353pt;}
.y22_c00147{bottom:193.000020pt;}
.y21_c00147{bottom:206.733353pt;}
.y20_c00147{bottom:220.466686pt;}
.y1f_c00147{bottom:234.266686pt;}
.y1e_c00147{bottom:247.400020pt;}
.y1d_c00147{bottom:261.466686pt;}
.y1c_c00147{bottom:274.600020pt;}
.y1b_c00147{bottom:288.333353pt;}
.y1a_c00147{bottom:336.333353pt;}
.y19_c00147{bottom:353.600020pt;}
.y18_c00147{bottom:370.866686pt;}
.y17_c00147{bottom:388.466686pt;}
.y16_c00147{bottom:405.466686pt;}
.y15_c00147{bottom:423.066686pt;}
.y14_c00147{bottom:440.000020pt;}
.y13_c00147{bottom:457.600020pt;}
.y12_c00147{bottom:474.600020pt;}
.y11_c00147{bottom:492.200020pt;}
.y10_c00147{bottom:509.133353pt;}
.yf_c00147{bottom:526.733353pt;}
.ye_c00147{bottom:544.000020pt;}
.yd_c00147{bottom:561.266686pt;}
.yc_c00147{bottom:578.266686pt;}
.yb_c00147{bottom:595.533353pt;}
.ya_c00147{bottom:612.800020pt;}
.y9_c00147{bottom:630.066686pt;}
.y8_c00147{bottom:647.400020pt;}
.y7_c00147{bottom:665.000020pt;}
.y6_c00147{bottom:682.266686pt;}
.y5_c00147{bottom:698.866686pt;}
.y4_c00147{bottom:716.466686pt;}
.y3_c00147{bottom:733.800020pt;}
.y2_c00147{bottom:751.066686pt;}
.y1_c00147{bottom:788.200020pt;}
.h2_c00147{height:44.470052pt;}
.h4_c00147{height:44.492188pt;}
.h3_c00147{height:52.343750pt;}
.h1_c00147{height:851.333333pt;}
.h0_c00147{height:851.533333pt;}
.w0_c00147{width:570.533360pt;}
.w1_c00147{width:570.666667pt;}
.x0_c00147{left:0.000000pt;}
.x3_c00147{left:71.333333pt;}
.x2_c00147{left:72.666667pt;}
.x5_c00147{left:76.466667pt;}
.x4_c00147{left:86.400000pt;}
.x6_c00147{left:101.466667pt;}
.x1_c00147{left:256.933333pt;}
.x7_c00147{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a09569a3d001cdbb48fa6a3a.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00148;src:url('chunks/assets/font_748e30b195ba26740fa9cf15.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00148{letter-spacing:0.000000px;}
.ls0_c00148{letter-spacing:11.100000px;}
.sc__c00148{text-shadow:none;}
.sc0_c00148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00148{-webkit-text-stroke:0px transparent;}
.sc0_c00148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00148{word-spacing:-15.000000px;}
.ws1_c00148{word-spacing:-12.750000px;}
.ws2_c00148{word-spacing:0.000000px;}
._1b_c00148{margin-left:-14.700000px;}
._8_c00148{margin-left:-12.240000px;}
._4_c00148{margin-left:-10.800000px;}
._3_c00148{margin-left:-9.300000px;}
._d_c00148{margin-left:-8.040000px;}
._9_c00148{margin-left:-6.300000px;}
._14_c00148{margin-left:-4.917012px;}
._15_c00148{margin-left:-3.605976px;}
._12_c00148{margin-left:-2.400000px;}
._6_c00148{margin-left:-1.380000px;}
._0_c00148{width:1.380000px;}
._2_c00148{width:2.460000px;}
._7_c00148{width:4.320000px;}
._1_c00148{width:5.340000px;}
._5_c00148{width:6.600000px;}
._11_c00148{width:8.040000px;}
._1c_c00148{width:9.060000px;}
._c_c00148{width:10.080000px;}
._b_c00148{width:11.280000px;}
._a_c00148{width:12.540000px;}
._13_c00148{width:13.860000px;}
._f_c00148{width:16.800000px;}
._10_c00148{width:18.840000px;}
._16_c00148{width:20.217012px;}
._e_c00148{width:21.480000px;}
._1e_c00148{width:23.927976px;}
._1d_c00148{width:25.350051px;}
._19_c00148{width:26.880000px;}
._17_c00148{width:28.380000px;}
._18_c00148{width:30.240000px;}
._1a_c00148{width:32.880000px;}
.fc2_c00148{color:transparent;}
.fc1_c00148{color:rgb(0,0,0);}
.fc0_c00148{color:rgb(35,31,32);}
.fs1_c00148{font-size:51.000000px;}
.fs0_c00148{font-size:60.000000px;}
.y0_c00148{bottom:0.000000px;}
.y27_c00148{bottom:64.425022px;}
.y26_c00148{bottom:110.175022px;}
.y25_c00148{bottom:125.325022px;}
.y24_c00148{bottom:141.150022px;}
.y23_c00148{bottom:155.925022px;}
.y22_c00148{bottom:171.375022px;}
.y21_c00148{bottom:186.525022px;}
.y20_c00148{bottom:202.350022px;}
.y1f_c00148{bottom:217.125022px;}
.y1e_c00148{bottom:232.575022px;}
.y1d_c00148{bottom:247.725022px;}
.y1c_c00148{bottom:263.175022px;}
.y1b_c00148{bottom:278.325022px;}
.y1a_c00148{bottom:293.400022px;}
.y19_c00148{bottom:308.550022px;}
.y18_c00148{bottom:367.575022px;}
.y17_c00148{bottom:387.000022px;}
.y16_c00148{bottom:406.425022px;}
.y15_c00148{bottom:425.550022px;}
.y14_c00148{bottom:445.350022px;}
.y13_c00148{bottom:464.775022px;}
.y12_c00148{bottom:483.825022px;}
.y11_c00148{bottom:522.375022px;}
.yf_c00148{bottom:572.775022px;}
.ye_c00148{bottom:592.575022px;}
.yd_c00148{bottom:612.000022px;}
.yc_c00148{bottom:631.425022px;}
.yb_c00148{bottom:650.925022px;}
.ya_c00148{bottom:669.975022px;}
.y9_c00148{bottom:689.400022px;}
.y8_c00148{bottom:709.200022px;}
.y7_c00148{bottom:728.625022px;}
.y6_c00148{bottom:747.750022px;}
.y5_c00148{bottom:767.550022px;}
.y4_c00148{bottom:786.600022px;}
.y3_c00148{bottom:805.725022px;}
.y2_c00148{bottom:825.525022px;}
.y1_c00148{bottom:844.575022px;}
.y10_c00148{bottom:886.725022px;}
.h3_c00148{height:50.053711px;}
.h2_c00148{height:58.886719px;}
.h1_c00148{height:957.750000px;}
.h0_c00148{height:957.975000px;}
.w1_c00148{width:643.500000px;}
.w0_c00148{width:643.650000px;}
.x0_c00148{left:0.000000px;}
.x2_c00148{left:89.625000px;}
.x1_c00148{left:91.425000px;}
.x4_c00148{left:96.150000px;}
.x3_c00148{left:106.575000px;}
.x5_c00148{left:123.150000px;}
.x6_c00148{left:124.200000px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls1_c00148{letter-spacing:0.000000pt;}
.ls0_c00148{letter-spacing:9.866667pt;}
.ws0_c00148{word-spacing:-13.333333pt;}
.ws1_c00148{word-spacing:-11.333333pt;}
.ws2_c00148{word-spacing:0.000000pt;}
._1b_c00148{margin-left:-13.066667pt;}
._8_c00148{margin-left:-10.880000pt;}
._4_c00148{margin-left:-9.600000pt;}
._3_c00148{margin-left:-8.266667pt;}
._d_c00148{margin-left:-7.146667pt;}
._9_c00148{margin-left:-5.600000pt;}
._14_c00148{margin-left:-4.370677pt;}
._15_c00148{margin-left:-3.205312pt;}
._12_c00148{margin-left:-2.133333pt;}
._6_c00148{margin-left:-1.226667pt;}
._0_c00148{width:1.226667pt;}
._2_c00148{width:2.186667pt;}
._7_c00148{width:3.840000pt;}
._1_c00148{width:4.746667pt;}
._5_c00148{width:5.866667pt;}
._11_c00148{width:7.146667pt;}
._1c_c00148{width:8.053333pt;}
._c_c00148{width:8.960000pt;}
._b_c00148{width:10.026667pt;}
._a_c00148{width:11.146667pt;}
._13_c00148{width:12.320000pt;}
._f_c00148{width:14.933333pt;}
._10_c00148{width:16.746667pt;}
._16_c00148{width:17.970677pt;}
._e_c00148{width:19.093333pt;}
._1e_c00148{width:21.269312pt;}
._1d_c00148{width:22.533379pt;}
._19_c00148{width:23.893333pt;}
._17_c00148{width:25.226667pt;}
._18_c00148{width:26.880000pt;}
._1a_c00148{width:29.226667pt;}
.fs1_c00148{font-size:45.333333pt;}
.fs0_c00148{font-size:53.333333pt;}
.y0_c00148{bottom:0.000000pt;}
.y27_c00148{bottom:57.266686pt;}
.y26_c00148{bottom:97.933353pt;}
.y25_c00148{bottom:111.400020pt;}
.y24_c00148{bottom:125.466686pt;}
.y23_c00148{bottom:138.600020pt;}
.y22_c00148{bottom:152.333353pt;}
.y21_c00148{bottom:165.800020pt;}
.y20_c00148{bottom:179.866686pt;}
.y1f_c00148{bottom:193.000020pt;}
.y1e_c00148{bottom:206.733353pt;}
.y1d_c00148{bottom:220.200020pt;}
.y1c_c00148{bottom:233.933353pt;}
.y1b_c00148{bottom:247.400020pt;}
.y1a_c00148{bottom:260.800020pt;}
.y19_c00148{bottom:274.266686pt;}
.y18_c00148{bottom:326.733353pt;}
.y17_c00148{bottom:344.000020pt;}
.y16_c00148{bottom:361.266686pt;}
.y15_c00148{bottom:378.266686pt;}
.y14_c00148{bottom:395.866686pt;}
.y13_c00148{bottom:413.133353pt;}
.y12_c00148{bottom:430.066686pt;}
.y11_c00148{bottom:464.333353pt;}
.yf_c00148{bottom:509.133353pt;}
.ye_c00148{bottom:526.733353pt;}
.yd_c00148{bottom:544.000020pt;}
.yc_c00148{bottom:561.266686pt;}
.yb_c00148{bottom:578.600020pt;}
.ya_c00148{bottom:595.533353pt;}
.y9_c00148{bottom:612.800020pt;}
.y8_c00148{bottom:630.400020pt;}
.y7_c00148{bottom:647.666686pt;}
.y6_c00148{bottom:664.666686pt;}
.y5_c00148{bottom:682.266686pt;}
.y4_c00148{bottom:699.200020pt;}
.y3_c00148{bottom:716.200020pt;}
.y2_c00148{bottom:733.800020pt;}
.y1_c00148{bottom:750.733353pt;}
.y10_c00148{bottom:788.200020pt;}
.h3_c00148{height:44.492188pt;}
.h2_c00148{height:52.343750pt;}
.h1_c00148{height:851.333333pt;}
.h0_c00148{height:851.533333pt;}
.w1_c00148{width:572.000000pt;}
.w0_c00148{width:572.133333pt;}
.x0_c00148{left:0.000000pt;}
.x2_c00148{left:79.666667pt;}
.x1_c00148{left:81.266667pt;}
.x4_c00148{left:85.466667pt;}
.x3_c00148{left:94.733333pt;}
.x5_c00148{left:109.466667pt;}
.x6_c00148{left:110.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_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_07e7a98fc5d4c55742831cd6.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00149;src:url('chunks/assets/font_d2b9aa2d50f5a3e771599694.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00149{letter-spacing:0.000000px;}
.ls0_c00149{letter-spacing:13.800000px;}
.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:-15.000000px;}
.ws1_c00149{word-spacing:-12.750000px;}
.ws2_c00149{word-spacing:0.000000px;}
._14_c00149{margin-left:-12.855027px;}
._13_c00149{margin-left:-11.640099px;}
._11_c00149{margin-left:-9.816108px;}
._a_c00149{margin-left:-8.760036px;}
._15_c00149{margin-left:-7.410135px;}
._17_c00149{margin-left:-6.246240px;}
._12_c00149{margin-left:-4.973817px;}
._3_c00149{margin-left:-2.916078px;}
._0_c00149{margin-left:-1.383018px;}
._2_c00149{width:1.278009px;}
._4_c00149{width:2.411982px;}
._1_c00149{width:3.599988px;}
._6_c00149{width:5.040000px;}
._5_c00149{width:6.287964px;}
._10_c00149{width:7.307928px;}
._8_c00149{width:8.562273px;}
._7_c00149{width:10.145847px;}
._c_c00149{width:11.633991px;}
._d_c00149{width:13.625973px;}
._e_c00149{width:16.680000px;}
._f_c00149{width:17.897919px;}
._9_c00149{width:18.935946px;}
._b_c00149{width:20.520072px;}
._16_c00149{width:24.516057px;}
._19_c00149{width:25.716087px;}
._18_c00149{width:28.632165px;}
.fc2_c00149{color:transparent;}
.fc1_c00149{color:rgb(0,0,0);}
.fc0_c00149{color:rgb(35,31,32);}
.fs0_c00149{font-size:51.000000px;}
.fs1_c00149{font-size:60.000000px;}
.y0_c00149{bottom:0.000000px;}
.y29_c00149{bottom:64.425022px;}
.y28_c00149{bottom:110.175022px;}
.y27_c00149{bottom:125.325022px;}
.y26_c00149{bottom:140.775022px;}
.y25_c00149{bottom:155.925022px;}
.y24_c00149{bottom:171.750022px;}
.y23_c00149{bottom:186.525022px;}
.y22_c00149{bottom:202.350022px;}
.y21_c00149{bottom:217.125022px;}
.y20_c00149{bottom:232.950022px;}
.y1f_c00149{bottom:247.875022px;}
.y1e_c00149{bottom:263.550022px;}
.y1d_c00149{bottom:278.625022px;}
.y1c_c00149{bottom:293.775022px;}
.y1b_c00149{bottom:309.225022px;}
.y1a_c00149{bottom:324.375022px;}
.y19_c00149{bottom:339.525022px;}
.y18_c00149{bottom:354.975022px;}
.y17_c00149{bottom:370.125022px;}
.y16_c00149{bottom:385.575022px;}
.y15_c00149{bottom:425.550022px;}
.y14_c00149{bottom:444.975022px;}
.y13_c00149{bottom:464.700022px;}
.y12_c00149{bottom:483.825022px;}
.y11_c00149{bottom:502.950022px;}
.y10_c00149{bottom:522.750022px;}
.yf_c00149{bottom:541.800022px;}
.ye_c00149{bottom:561.225022px;}
.yd_c00149{bottom:581.025022px;}
.yc_c00149{bottom:619.200022px;}
.yb_c00149{bottom:670.350022px;}
.ya_c00149{bottom:689.400022px;}
.y9_c00149{bottom:708.825022px;}
.y8_c00149{bottom:728.625022px;}
.y7_c00149{bottom:748.125022px;}
.y6_c00149{bottom:767.475022px;}
.y5_c00149{bottom:786.600022px;}
.y4_c00149{bottom:805.725022px;}
.y3_c00149{bottom:825.525022px;}
.y2_c00149{bottom:844.575022px;}
.y1_c00149{bottom:886.725022px;}
.h2_c00149{height:50.028809px;}
.h4_c00149{height:50.053711px;}
.h3_c00149{height:58.886719px;}
.h1_c00149{height:957.750000px;}
.h0_c00149{height:957.975000px;}
.w0_c00149{width:641.850030px;}
.w1_c00149{width:642.000000px;}
.x0_c00149{left:0.000000px;}
.x3_c00149{left:80.250000px;}
.x2_c00149{left:81.375000px;}
.x4_c00149{left:86.025000px;}
.x5_c00149{left:113.400000px;}
.x1_c00149{left:289.050000px;}
.x6_c00149{left:532.050000px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls1_c00149{letter-spacing:0.000000pt;}
.ls0_c00149{letter-spacing:12.266667pt;}
.ws0_c00149{word-spacing:-13.333333pt;}
.ws1_c00149{word-spacing:-11.333333pt;}
.ws2_c00149{word-spacing:0.000000pt;}
._14_c00149{margin-left:-11.426691pt;}
._13_c00149{margin-left:-10.346755pt;}
._11_c00149{margin-left:-8.725429pt;}
._a_c00149{margin-left:-7.786699pt;}
._15_c00149{margin-left:-6.586787pt;}
._17_c00149{margin-left:-5.552213pt;}
._12_c00149{margin-left:-4.421171pt;}
._3_c00149{margin-left:-2.592069pt;}
._0_c00149{margin-left:-1.229349pt;}
._2_c00149{width:1.136008pt;}
._4_c00149{width:2.143984pt;}
._1_c00149{width:3.199989pt;}
._6_c00149{width:4.480000pt;}
._5_c00149{width:5.589301pt;}
._10_c00149{width:6.495936pt;}
._8_c00149{width:7.610909pt;}
._7_c00149{width:9.018531pt;}
._c_c00149{width:10.341325pt;}
._d_c00149{width:12.111976pt;}
._e_c00149{width:14.826667pt;}
._f_c00149{width:15.909261pt;}
._9_c00149{width:16.831952pt;}
._b_c00149{width:18.240064pt;}
._16_c00149{width:21.792051pt;}
._19_c00149{width:22.858744pt;}
._18_c00149{width:25.450813pt;}
.fs0_c00149{font-size:45.333333pt;}
.fs1_c00149{font-size:53.333333pt;}
.y0_c00149{bottom:0.000000pt;}
.y29_c00149{bottom:57.266686pt;}
.y28_c00149{bottom:97.933353pt;}
.y27_c00149{bottom:111.400020pt;}
.y26_c00149{bottom:125.133353pt;}
.y25_c00149{bottom:138.600020pt;}
.y24_c00149{bottom:152.666686pt;}
.y23_c00149{bottom:165.800020pt;}
.y22_c00149{bottom:179.866686pt;}
.y21_c00149{bottom:193.000020pt;}
.y20_c00149{bottom:207.066686pt;}
.y1f_c00149{bottom:220.333353pt;}
.y1e_c00149{bottom:234.266686pt;}
.y1d_c00149{bottom:247.666686pt;}
.y1c_c00149{bottom:261.133353pt;}
.y1b_c00149{bottom:274.866686pt;}
.y1a_c00149{bottom:288.333353pt;}
.y19_c00149{bottom:301.800020pt;}
.y18_c00149{bottom:315.533353pt;}
.y17_c00149{bottom:329.000020pt;}
.y16_c00149{bottom:342.733353pt;}
.y15_c00149{bottom:378.266686pt;}
.y14_c00149{bottom:395.533353pt;}
.y13_c00149{bottom:413.066686pt;}
.y12_c00149{bottom:430.066686pt;}
.y11_c00149{bottom:447.066686pt;}
.y10_c00149{bottom:464.666686pt;}
.yf_c00149{bottom:481.600020pt;}
.ye_c00149{bottom:498.866686pt;}
.yd_c00149{bottom:516.466686pt;}
.yc_c00149{bottom:550.400020pt;}
.yb_c00149{bottom:595.866686pt;}
.ya_c00149{bottom:612.800020pt;}
.y9_c00149{bottom:630.066686pt;}
.y8_c00149{bottom:647.666686pt;}
.y7_c00149{bottom:665.000020pt;}
.y6_c00149{bottom:682.200020pt;}
.y5_c00149{bottom:699.200020pt;}
.y4_c00149{bottom:716.200020pt;}
.y3_c00149{bottom:733.800020pt;}
.y2_c00149{bottom:750.733353pt;}
.y1_c00149{bottom:788.200020pt;}
.h2_c00149{height:44.470052pt;}
.h4_c00149{height:44.492188pt;}
.h3_c00149{height:52.343750pt;}
.h1_c00149{height:851.333333pt;}
.h0_c00149{height:851.533333pt;}
.w0_c00149{width:570.533360pt;}
.w1_c00149{width:570.666667pt;}
.x0_c00149{left:0.000000pt;}
.x3_c00149{left:71.333333pt;}
.x2_c00149{left:72.333333pt;}
.x4_c00149{left:76.466667pt;}
.x5_c00149{left:100.800000pt;}
.x1_c00149{left:256.933333pt;}
.x6_c00149{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b9c710aeb89ec8d6ae84622d.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00150;src:url('chunks/assets/font_42307c7813fc57cdd6907d38.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00150{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00150{word-spacing:-15.000000px;}
.ws0_c00150{word-spacing:-12.750000px;}
.ws2_c00150{word-spacing:0.000000px;}
._d_c00150{margin-left:-15.830256px;}
._5_c00150{margin-left:-11.126910px;}
._6_c00150{margin-left:-9.873090px;}
._f_c00150{margin-left:-8.309283px;}
._8_c00150{margin-left:-7.200195px;}
._1a_c00150{margin-left:-6.123495px;}
._0_c00150{margin-left:-4.917012px;}
._13_c00150{margin-left:-3.830676px;}
._16_c00150{margin-left:-2.675469px;}
._1_c00150{margin-left:-1.650003px;}
._2_c00150{width:1.644039px;}
._3_c00150{width:3.284796px;}
._4_c00150{width:5.184156px;}
._7_c00150{width:6.464286px;}
._11_c00150{width:7.545612px;}
._e_c00150{width:8.894520px;}
._14_c00150{width:10.067883px;}
._a_c00150{width:11.183844px;}
._9_c00150{width:12.450003px;}
._10_c00150{width:13.881978px;}
._18_c00150{width:15.078669px;}
._12_c00150{width:17.010120px;}
._b_c00150{width:18.491532px;}
._15_c00150{width:20.100000px;}
._c_c00150{width:21.525870px;}
._1b_c00150{width:23.400024px;}
._19_c00150{width:24.425490px;}
._1c_c00150{width:25.625520px;}
._17_c00150{width:27.899958px;}
.fc1_c00150{color:transparent;}
.fc0_c00150{color:rgb(35,31,32);}
.fs0_c00150{font-size:51.000000px;}
.fs1_c00150{font-size:60.000000px;}
.y0_c00150{bottom:0.000000px;}
.y2c_c00150{bottom:64.425022px;}
.y2b_c00150{bottom:110.550022px;}
.y2a_c00150{bottom:125.325022px;}
.y29_c00150{bottom:141.150022px;}
.y28_c00150{bottom:156.225022px;}
.y27_c00150{bottom:171.375022px;}
.y26_c00150{bottom:186.825022px;}
.y25_c00150{bottom:201.975022px;}
.y24_c00150{bottom:217.425022px;}
.y23_c00150{bottom:232.575022px;}
.y22_c00150{bottom:248.025022px;}
.y21_c00150{bottom:263.175022px;}
.y20_c00150{bottom:278.325022px;}
.y1f_c00150{bottom:293.775022px;}
.y1e_c00150{bottom:308.925022px;}
.y1d_c00150{bottom:324.375022px;}
.y1c_c00150{bottom:339.525022px;}
.y1b_c00150{bottom:354.975022px;}
.y1a_c00150{bottom:370.425022px;}
.y19_c00150{bottom:385.575022px;}
.y18_c00150{bottom:401.025022px;}
.y17_c00150{bottom:416.550022px;}
.y16_c00150{bottom:431.625022px;}
.y15_c00150{bottom:475.950022px;}
.y14_c00150{bottom:495.375022px;}
.y13_c00150{bottom:514.425022px;}
.y12_c00150{bottom:534.225022px;}
.y11_c00150{bottom:553.725022px;}
.y10_c00150{bottom:572.775022px;}
.yf_c00150{bottom:592.575022px;}
.ye_c00150{bottom:612.000022px;}
.yd_c00150{bottom:631.125022px;}
.yc_c00150{bottom:650.925022px;}
.yb_c00150{bottom:669.975022px;}
.ya_c00150{bottom:689.850022px;}
.y9_c00150{bottom:709.275022px;}
.y8_c00150{bottom:728.700022px;}
.y7_c00150{bottom:748.125022px;}
.y6_c00150{bottom:767.550022px;}
.y5_c00150{bottom:786.600022px;}
.y4_c00150{bottom:806.025022px;}
.y3_c00150{bottom:825.525022px;}
.y2_c00150{bottom:844.950022px;}
.y1_c00150{bottom:886.725022px;}
.h2_c00150{height:50.053711px;}
.h3_c00150{height:58.886719px;}
.h1_c00150{height:957.750000px;}
.h0_c00150{height:957.975000px;}
.w1_c00150{width:643.500000px;}
.w0_c00150{width:643.650000px;}
.x0_c00150{left:0.000000px;}
.x3_c00150{left:90.375000px;}
.x1_c00150{left:91.800000px;}
.x4_c00150{left:96.150000px;}
.x2_c00150{left:107.250000px;}
.x5_c00150{left:123.150000px;}
.x6_c00150{left:124.200000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls0_c00150{letter-spacing:0.000000pt;}
.ws1_c00150{word-spacing:-13.333333pt;}
.ws0_c00150{word-spacing:-11.333333pt;}
.ws2_c00150{word-spacing:0.000000pt;}
._d_c00150{margin-left:-14.071339pt;}
._5_c00150{margin-left:-9.890587pt;}
._6_c00150{margin-left:-8.776080pt;}
._f_c00150{margin-left:-7.386029pt;}
._8_c00150{margin-left:-6.400173pt;}
._1a_c00150{margin-left:-5.443107pt;}
._0_c00150{margin-left:-4.370677pt;}
._13_c00150{margin-left:-3.405045pt;}
._16_c00150{margin-left:-2.378195pt;}
._1_c00150{margin-left:-1.466669pt;}
._2_c00150{width:1.461368pt;}
._3_c00150{width:2.919819pt;}
._4_c00150{width:4.608139pt;}
._7_c00150{width:5.746032pt;}
._11_c00150{width:6.707211pt;}
._e_c00150{width:7.906240pt;}
._14_c00150{width:8.949229pt;}
._a_c00150{width:9.941195pt;}
._9_c00150{width:11.066669pt;}
._10_c00150{width:12.339536pt;}
._18_c00150{width:13.403261pt;}
._12_c00150{width:15.120107pt;}
._b_c00150{width:16.436917pt;}
._15_c00150{width:17.866667pt;}
._c_c00150{width:19.134107pt;}
._1b_c00150{width:20.800021pt;}
._19_c00150{width:21.711547pt;}
._1c_c00150{width:22.778240pt;}
._17_c00150{width:24.799963pt;}
.fs0_c00150{font-size:45.333333pt;}
.fs1_c00150{font-size:53.333333pt;}
.y0_c00150{bottom:0.000000pt;}
.y2c_c00150{bottom:57.266686pt;}
.y2b_c00150{bottom:98.266686pt;}
.y2a_c00150{bottom:111.400020pt;}
.y29_c00150{bottom:125.466686pt;}
.y28_c00150{bottom:138.866686pt;}
.y27_c00150{bottom:152.333353pt;}
.y26_c00150{bottom:166.066686pt;}
.y25_c00150{bottom:179.533353pt;}
.y24_c00150{bottom:193.266686pt;}
.y23_c00150{bottom:206.733353pt;}
.y22_c00150{bottom:220.466686pt;}
.y21_c00150{bottom:233.933353pt;}
.y20_c00150{bottom:247.400020pt;}
.y1f_c00150{bottom:261.133353pt;}
.y1e_c00150{bottom:274.600020pt;}
.y1d_c00150{bottom:288.333353pt;}
.y1c_c00150{bottom:301.800020pt;}
.y1b_c00150{bottom:315.533353pt;}
.y1a_c00150{bottom:329.266686pt;}
.y19_c00150{bottom:342.733353pt;}
.y18_c00150{bottom:356.466686pt;}
.y17_c00150{bottom:370.266686pt;}
.y16_c00150{bottom:383.666686pt;}
.y15_c00150{bottom:423.066686pt;}
.y14_c00150{bottom:440.333353pt;}
.y13_c00150{bottom:457.266686pt;}
.y12_c00150{bottom:474.866686pt;}
.y11_c00150{bottom:492.200020pt;}
.y10_c00150{bottom:509.133353pt;}
.yf_c00150{bottom:526.733353pt;}
.ye_c00150{bottom:544.000020pt;}
.yd_c00150{bottom:561.000020pt;}
.yc_c00150{bottom:578.600020pt;}
.yb_c00150{bottom:595.533353pt;}
.ya_c00150{bottom:613.200020pt;}
.y9_c00150{bottom:630.466686pt;}
.y8_c00150{bottom:647.733353pt;}
.y7_c00150{bottom:665.000020pt;}
.y6_c00150{bottom:682.266686pt;}
.y5_c00150{bottom:699.200020pt;}
.y4_c00150{bottom:716.466686pt;}
.y3_c00150{bottom:733.800020pt;}
.y2_c00150{bottom:751.066686pt;}
.y1_c00150{bottom:788.200020pt;}
.h2_c00150{height:44.492188pt;}
.h3_c00150{height:52.343750pt;}
.h1_c00150{height:851.333333pt;}
.h0_c00150{height:851.533333pt;}
.w1_c00150{width:572.000000pt;}
.w0_c00150{width:572.133333pt;}
.x0_c00150{left:0.000000pt;}
.x3_c00150{left:80.333333pt;}
.x1_c00150{left:81.600000pt;}
.x4_c00150{left:85.466667pt;}
.x2_c00150{left:95.333333pt;}
.x5_c00150{left:109.466667pt;}
.x6_c00150{left:110.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_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_238debb172c50890a8c275bb.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00151;src:url('chunks/assets/font_8fa42f175caaa3524b718006.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00151{letter-spacing:0.000000px;}
.sc__c00151{text-shadow:none;}
.sc0_c00151{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00151{-webkit-text-stroke:0px transparent;}
.sc0_c00151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00151{word-spacing:-15.000000px;}
.ws0_c00151{word-spacing:-12.750000px;}
.ws2_c00151{word-spacing:0.000000px;}
._f_c00151{margin-left:-15.764808px;}
._11_c00151{margin-left:-13.078881px;}
._1b_c00151{margin-left:-11.232381px;}
._10_c00151{margin-left:-10.203186px;}
._e_c00151{margin-left:-9.128988px;}
._a_c00151{margin-left:-7.302081px;}
._1a_c00151{margin-left:-6.148824px;}
._5_c00151{margin-left:-4.937997px;}
._3_c00151{margin-left:-2.916078px;}
._0_c00151{margin-left:-1.383018px;}
._2_c00151{width:1.278009px;}
._6_c00151{width:2.310075px;}
._1_c00151{width:3.599988px;}
._4_c00151{width:5.315910px;}
._7_c00151{width:7.001991px;}
._9_c00151{width:8.591928px;}
._15_c00151{width:10.031946px;}
._b_c00151{width:11.292036px;}
._8_c00151{width:12.767964px;}
._17_c00151{width:14.411997px;}
._19_c00151{width:15.443796px;}
._d_c00151{width:16.539096px;}
._c_c00151{width:18.353217px;}
._12_c00151{width:20.578881px;}
._13_c00151{width:22.466340px;}
._14_c00151{width:23.705883px;}
._16_c00151{width:25.716087px;}
._18_c00151{width:28.632165px;}
.fc1_c00151{color:transparent;}
.fc0_c00151{color:rgb(35,31,32);}
.fs0_c00151{font-size:51.000000px;}
.fs1_c00151{font-size:60.000000px;}
.y0_c00151{bottom:0.000000px;}
.y2c_c00151{bottom:64.425022px;}
.y2b_c00151{bottom:110.550022px;}
.y2a_c00151{bottom:125.325022px;}
.y29_c00151{bottom:141.150022px;}
.y28_c00151{bottom:155.925022px;}
.y27_c00151{bottom:171.375022px;}
.y26_c00151{bottom:186.525022px;}
.y25_c00151{bottom:202.350022px;}
.y24_c00151{bottom:217.425022px;}
.y23_c00151{bottom:232.950022px;}
.y22_c00151{bottom:248.025022px;}
.y21_c00151{bottom:263.550022px;}
.y20_c00151{bottom:278.625022px;}
.y1f_c00151{bottom:294.150022px;}
.y1e_c00151{bottom:309.225022px;}
.y1d_c00151{bottom:324.375022px;}
.y1c_c00151{bottom:339.525022px;}
.y1b_c00151{bottom:355.350022px;}
.y1a_c00151{bottom:370.125022px;}
.y19_c00151{bottom:385.575022px;}
.y18_c00151{bottom:401.025022px;}
.y17_c00151{bottom:416.175022px;}
.y16_c00151{bottom:431.625022px;}
.y15_c00151{bottom:447.150022px;}
.y14_c00151{bottom:461.925022px;}
.y13_c00151{bottom:477.375022px;}
.y12_c00151{bottom:492.525022px;}
.y11_c00151{bottom:507.975022px;}
.y10_c00151{bottom:573.150022px;}
.yf_c00151{bottom:592.575022px;}
.ye_c00151{bottom:612.000022px;}
.yd_c00151{bottom:631.425022px;}
.yc_c00151{bottom:650.550022px;}
.yb_c00151{bottom:669.975022px;}
.ya_c00151{bottom:689.625022px;}
.y9_c00151{bottom:709.125022px;}
.y8_c00151{bottom:728.625022px;}
.y7_c00151{bottom:748.125022px;}
.y6_c00151{bottom:767.550022px;}
.y5_c00151{bottom:786.225022px;}
.y4_c00151{bottom:805.725022px;}
.y3_c00151{bottom:825.150022px;}
.y2_c00151{bottom:844.950022px;}
.y1_c00151{bottom:886.725022px;}
.h2_c00151{height:50.028809px;}
.h4_c00151{height:50.053711px;}
.h3_c00151{height:58.886719px;}
.h1_c00151{height:957.750000px;}
.h0_c00151{height:957.975000px;}
.w0_c00151{width:641.850030px;}
.w1_c00151{width:642.000000px;}
.x0_c00151{left:0.000000px;}
.x4_c00151{left:80.250000px;}
.x2_c00151{left:81.375000px;}
.x6_c00151{left:86.025000px;}
.x3_c00151{left:96.450000px;}
.x5_c00151{left:113.400000px;}
.x1_c00151{left:289.050000px;}
.x7_c00151{left:532.050000px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls0_c00151{letter-spacing:0.000000pt;}
.ws1_c00151{word-spacing:-13.333333pt;}
.ws0_c00151{word-spacing:-11.333333pt;}
.ws2_c00151{word-spacing:0.000000pt;}
._f_c00151{margin-left:-14.013163pt;}
._11_c00151{margin-left:-11.625672pt;}
._1b_c00151{margin-left:-9.984339pt;}
._10_c00151{margin-left:-9.069499pt;}
._e_c00151{margin-left:-8.114656pt;}
._a_c00151{margin-left:-6.490739pt;}
._1a_c00151{margin-left:-5.465621pt;}
._5_c00151{margin-left:-4.389331pt;}
._3_c00151{margin-left:-2.592069pt;}
._0_c00151{margin-left:-1.229349pt;}
._2_c00151{width:1.136008pt;}
._6_c00151{width:2.053400pt;}
._1_c00151{width:3.199989pt;}
._4_c00151{width:4.725253pt;}
._7_c00151{width:6.223992pt;}
._9_c00151{width:7.637269pt;}
._15_c00151{width:8.917285pt;}
._b_c00151{width:10.037365pt;}
._8_c00151{width:11.349301pt;}
._17_c00151{width:12.810664pt;}
._19_c00151{width:13.727819pt;}
._d_c00151{width:14.701419pt;}
._c_c00151{width:16.313971pt;}
._12_c00151{width:18.292339pt;}
._13_c00151{width:19.970080pt;}
._14_c00151{width:21.071896pt;}
._16_c00151{width:22.858744pt;}
._18_c00151{width:25.450813pt;}
.fs0_c00151{font-size:45.333333pt;}
.fs1_c00151{font-size:53.333333pt;}
.y0_c00151{bottom:0.000000pt;}
.y2c_c00151{bottom:57.266686pt;}
.y2b_c00151{bottom:98.266686pt;}
.y2a_c00151{bottom:111.400020pt;}
.y29_c00151{bottom:125.466686pt;}
.y28_c00151{bottom:138.600020pt;}
.y27_c00151{bottom:152.333353pt;}
.y26_c00151{bottom:165.800020pt;}
.y25_c00151{bottom:179.866686pt;}
.y24_c00151{bottom:193.266686pt;}
.y23_c00151{bottom:207.066686pt;}
.y22_c00151{bottom:220.466686pt;}
.y21_c00151{bottom:234.266686pt;}
.y20_c00151{bottom:247.666686pt;}
.y1f_c00151{bottom:261.466686pt;}
.y1e_c00151{bottom:274.866686pt;}
.y1d_c00151{bottom:288.333353pt;}
.y1c_c00151{bottom:301.800020pt;}
.y1b_c00151{bottom:315.866686pt;}
.y1a_c00151{bottom:329.000020pt;}
.y19_c00151{bottom:342.733353pt;}
.y18_c00151{bottom:356.466686pt;}
.y17_c00151{bottom:369.933353pt;}
.y16_c00151{bottom:383.666686pt;}
.y15_c00151{bottom:397.466686pt;}
.y14_c00151{bottom:410.600020pt;}
.y13_c00151{bottom:424.333353pt;}
.y12_c00151{bottom:437.800020pt;}
.y11_c00151{bottom:451.533353pt;}
.y10_c00151{bottom:509.466686pt;}
.yf_c00151{bottom:526.733353pt;}
.ye_c00151{bottom:544.000020pt;}
.yd_c00151{bottom:561.266686pt;}
.yc_c00151{bottom:578.266686pt;}
.yb_c00151{bottom:595.533353pt;}
.ya_c00151{bottom:613.000020pt;}
.y9_c00151{bottom:630.333353pt;}
.y8_c00151{bottom:647.666686pt;}
.y7_c00151{bottom:665.000020pt;}
.y6_c00151{bottom:682.266686pt;}
.y5_c00151{bottom:698.866686pt;}
.y4_c00151{bottom:716.200020pt;}
.y3_c00151{bottom:733.466686pt;}
.y2_c00151{bottom:751.066686pt;}
.y1_c00151{bottom:788.200020pt;}
.h2_c00151{height:44.470052pt;}
.h4_c00151{height:44.492188pt;}
.h3_c00151{height:52.343750pt;}
.h1_c00151{height:851.333333pt;}
.h0_c00151{height:851.533333pt;}
.w0_c00151{width:570.533360pt;}
.w1_c00151{width:570.666667pt;}
.x0_c00151{left:0.000000pt;}
.x4_c00151{left:71.333333pt;}
.x2_c00151{left:72.333333pt;}
.x6_c00151{left:76.466667pt;}
.x3_c00151{left:85.733333pt;}
.x5_c00151{left:100.800000pt;}
.x1_c00151{left:256.933333pt;}
.x7_c00151{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f8ac6ea338671c863e5a3907.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00152;src:url('chunks/assets/font_2dde815ba81507436fdfbea8.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00152{letter-spacing:0.000000px;}
.sc__c00152{text-shadow:none;}
.sc0_c00152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00152{-webkit-text-stroke:0px transparent;}
.sc0_c00152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00152{word-spacing:-15.000000px;}
.ws0_c00152{word-spacing:-12.750000px;}
.ws2_c00152{word-spacing:0.000000px;}
._a_c00152{margin-left:-12.240000px;}
._6_c00152{margin-left:-10.920000px;}
._7_c00152{margin-left:-9.480000px;}
._10_c00152{margin-left:-8.160000px;}
._17_c00152{margin-left:-7.106892px;}
._11_c00152{margin-left:-6.060000px;}
._b_c00152{margin-left:-4.800000px;}
._d_c00152{margin-left:-3.120000px;}
._5_c00152{margin-left:-1.860000px;}
._0_c00152{width:1.620000px;}
._1_c00152{width:2.640000px;}
._c_c00152{width:4.500000px;}
._f_c00152{width:5.820000px;}
._9_c00152{width:7.200000px;}
._e_c00152{width:8.220000px;}
._2_c00152{width:9.720000px;}
._8_c00152{width:10.800000px;}
._4_c00152{width:12.060000px;}
._3_c00152{width:13.380000px;}
._12_c00152{width:16.320000px;}
._13_c00152{width:18.300000px;}
._14_c00152{width:20.220000px;}
._15_c00152{width:21.420000px;}
._1a_c00152{width:22.437102px;}
._18_c00152{width:23.970000px;}
._19_c00152{width:25.470021px;}
._16_c00152{width:26.670051px;}
.fc1_c00152{color:transparent;}
.fc0_c00152{color:rgb(35,31,32);}
.fs1_c00152{font-size:51.000000px;}
.fs0_c00152{font-size:60.000000px;}
.y0_c00152{bottom:0.000000px;}
.y27_c00152{bottom:64.800022px;}
.y26_c00152{bottom:110.550022px;}
.y25_c00152{bottom:125.625022px;}
.y24_c00152{bottom:141.150022px;}
.y23_c00152{bottom:155.925022px;}
.y22_c00152{bottom:171.750022px;}
.y21_c00152{bottom:186.525022px;}
.y20_c00152{bottom:202.350022px;}
.y1f_c00152{bottom:217.125022px;}
.y1e_c00152{bottom:232.950022px;}
.y1d_c00152{bottom:248.025022px;}
.y1c_c00152{bottom:263.175022px;}
.y1b_c00152{bottom:305.325022px;}
.y1a_c00152{bottom:324.750022px;}
.y19_c00152{bottom:344.175022px;}
.y18_c00152{bottom:363.600022px;}
.y17_c00152{bottom:401.400022px;}
.y15_c00152{bottom:456.525022px;}
.y14_c00152{bottom:475.950022px;}
.y13_c00152{bottom:495.375022px;}
.y12_c00152{bottom:514.425022px;}
.y11_c00152{bottom:534.300022px;}
.y10_c00152{bottom:553.725022px;}
.yf_c00152{bottom:573.150022px;}
.ye_c00152{bottom:592.575022px;}
.yd_c00152{bottom:612.000022px;}
.yc_c00152{bottom:631.125022px;}
.yb_c00152{bottom:650.925022px;}
.ya_c00152{bottom:669.975022px;}
.y9_c00152{bottom:689.775022px;}
.y8_c00152{bottom:708.825022px;}
.y7_c00152{bottom:728.625022px;}
.y6_c00152{bottom:748.125022px;}
.y5_c00152{bottom:767.175022px;}
.y4_c00152{bottom:786.600022px;}
.y3_c00152{bottom:805.725022px;}
.y2_c00152{bottom:825.525022px;}
.y1_c00152{bottom:844.950022px;}
.y16_c00152{bottom:886.725022px;}
.h3_c00152{height:50.053711px;}
.h2_c00152{height:58.886719px;}
.h1_c00152{height:957.750000px;}
.h0_c00152{height:957.975000px;}
.w1_c00152{width:643.500000px;}
.w0_c00152{width:643.650000px;}
.x0_c00152{left:0.000000px;}
.x1_c00152{left:91.050000px;}
.x5_c00152{left:92.175000px;}
.x3_c00152{left:96.150000px;}
.x2_c00152{left:107.250000px;}
.x4_c00152{left:123.825000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls0_c00152{letter-spacing:0.000000pt;}
.ws1_c00152{word-spacing:-13.333333pt;}
.ws0_c00152{word-spacing:-11.333333pt;}
.ws2_c00152{word-spacing:0.000000pt;}
._a_c00152{margin-left:-10.880000pt;}
._6_c00152{margin-left:-9.706667pt;}
._7_c00152{margin-left:-8.426667pt;}
._10_c00152{margin-left:-7.253333pt;}
._17_c00152{margin-left:-6.317237pt;}
._11_c00152{margin-left:-5.386667pt;}
._b_c00152{margin-left:-4.266667pt;}
._d_c00152{margin-left:-2.773333pt;}
._5_c00152{margin-left:-1.653333pt;}
._0_c00152{width:1.440000pt;}
._1_c00152{width:2.346667pt;}
._c_c00152{width:4.000000pt;}
._f_c00152{width:5.173333pt;}
._9_c00152{width:6.400000pt;}
._e_c00152{width:7.306667pt;}
._2_c00152{width:8.640000pt;}
._8_c00152{width:9.600000pt;}
._4_c00152{width:10.720000pt;}
._3_c00152{width:11.893333pt;}
._12_c00152{width:14.506667pt;}
._13_c00152{width:16.266667pt;}
._14_c00152{width:17.973333pt;}
._15_c00152{width:19.040000pt;}
._1a_c00152{width:19.944091pt;}
._18_c00152{width:21.306667pt;}
._19_c00152{width:22.640019pt;}
._16_c00152{width:23.706712pt;}
.fs1_c00152{font-size:45.333333pt;}
.fs0_c00152{font-size:53.333333pt;}
.y0_c00152{bottom:0.000000pt;}
.y27_c00152{bottom:57.600020pt;}
.y26_c00152{bottom:98.266686pt;}
.y25_c00152{bottom:111.666686pt;}
.y24_c00152{bottom:125.466686pt;}
.y23_c00152{bottom:138.600020pt;}
.y22_c00152{bottom:152.666686pt;}
.y21_c00152{bottom:165.800020pt;}
.y20_c00152{bottom:179.866686pt;}
.y1f_c00152{bottom:193.000020pt;}
.y1e_c00152{bottom:207.066686pt;}
.y1d_c00152{bottom:220.466686pt;}
.y1c_c00152{bottom:233.933353pt;}
.y1b_c00152{bottom:271.400020pt;}
.y1a_c00152{bottom:288.666686pt;}
.y19_c00152{bottom:305.933353pt;}
.y18_c00152{bottom:323.200020pt;}
.y17_c00152{bottom:356.800020pt;}
.y15_c00152{bottom:405.800020pt;}
.y14_c00152{bottom:423.066686pt;}
.y13_c00152{bottom:440.333353pt;}
.y12_c00152{bottom:457.266686pt;}
.y11_c00152{bottom:474.933353pt;}
.y10_c00152{bottom:492.200020pt;}
.yf_c00152{bottom:509.466686pt;}
.ye_c00152{bottom:526.733353pt;}
.yd_c00152{bottom:544.000020pt;}
.yc_c00152{bottom:561.000020pt;}
.yb_c00152{bottom:578.600020pt;}
.ya_c00152{bottom:595.533353pt;}
.y9_c00152{bottom:613.133353pt;}
.y8_c00152{bottom:630.066686pt;}
.y7_c00152{bottom:647.666686pt;}
.y6_c00152{bottom:665.000020pt;}
.y5_c00152{bottom:681.933353pt;}
.y4_c00152{bottom:699.200020pt;}
.y3_c00152{bottom:716.200020pt;}
.y2_c00152{bottom:733.800020pt;}
.y1_c00152{bottom:751.066686pt;}
.y16_c00152{bottom:788.200020pt;}
.h3_c00152{height:44.492188pt;}
.h2_c00152{height:52.343750pt;}
.h1_c00152{height:851.333333pt;}
.h0_c00152{height:851.533333pt;}
.w1_c00152{width:572.000000pt;}
.w0_c00152{width:572.133333pt;}
.x0_c00152{left:0.000000pt;}
.x1_c00152{left:80.933333pt;}
.x5_c00152{left:81.933333pt;}
.x3_c00152{left:85.466667pt;}
.x2_c00152{left:95.333333pt;}
.x4_c00152{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f6cdf509970cfb4ee8735970.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00153;src:url('chunks/assets/font_7bccef0687b81d207659b13b.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00153{letter-spacing:0.000000px;}
.ls0_c00153{letter-spacing:15.300000px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00153{word-spacing:-15.000000px;}
.ws1_c00153{word-spacing:0.000000px;}
._8_c00153{margin-left:-12.827334px;}
._e_c00153{margin-left:-10.865883px;}
._d_c00153{margin-left:-9.534117px;}
._15_c00153{margin-left:-6.260865px;}
._17_c00153{margin-left:-5.141997px;}
._7_c00153{margin-left:-3.992820px;}
._3_c00153{margin-left:-2.916078px;}
._0_c00153{margin-left:-1.383018px;}
._2_c00153{width:1.278009px;}
._5_c00153{width:2.495928px;}
._1_c00153{width:3.599988px;}
._f_c00153{width:5.100000px;}
._11_c00153{width:6.101991px;}
._c_c00153{width:7.152228px;}
._10_c00153{width:8.879526px;}
._4_c00153{width:10.667964px;}
._13_c00153{width:12.480000px;}
._6_c00153{width:13.914027px;}
._14_c00153{width:14.915817px;}
._12_c00153{width:16.140000px;}
._a_c00153{width:17.645973px;}
._19_c00153{width:19.632063px;}
._9_c00153{width:21.563982px;}
._b_c00153{width:24.602928px;}
._18_c00153{width:27.099003px;}
._16_c00153{width:28.632165px;}
.fc2_c00153{color:transparent;}
.fc1_c00153{color:rgb(0,0,0);}
.fc0_c00153{color:rgb(35,31,32);}
.fs0_c00153{font-size:51.000000px;}
.fs1_c00153{font-size:60.000000px;}
.y0_c00153{bottom:0.000000px;}
.y26_c00153{bottom:64.425022px;}
.y25_c00153{bottom:110.175022px;}
.y24_c00153{bottom:125.625022px;}
.y23_c00153{bottom:140.775022px;}
.y22_c00153{bottom:155.925022px;}
.y21_c00153{bottom:171.375022px;}
.y20_c00153{bottom:186.525022px;}
.y1f_c00153{bottom:201.975022px;}
.y1e_c00153{bottom:217.125022px;}
.y1d_c00153{bottom:232.575022px;}
.y1c_c00153{bottom:247.725022px;}
.y1b_c00153{bottom:263.175022px;}
.y1a_c00153{bottom:278.325022px;}
.y19_c00153{bottom:293.775022px;}
.y18_c00153{bottom:308.925022px;}
.y17_c00153{bottom:324.375022px;}
.y16_c00153{bottom:339.825022px;}
.y15_c00153{bottom:355.350022px;}
.y14_c00153{bottom:370.125022px;}
.y13_c00153{bottom:385.950022px;}
.y12_c00153{bottom:401.025022px;}
.y11_c00153{bottom:441.000022px;}
.y10_c00153{bottom:460.125022px;}
.yf_c00153{bottom:498.225022px;}
.ye_c00153{bottom:555.525022px;}
.yd_c00153{bottom:574.950022px;}
.yc_c00153{bottom:594.375022px;}
.yb_c00153{bottom:613.800022px;}
.ya_c00153{bottom:632.925022px;}
.y9_c00153{bottom:652.350022px;}
.y8_c00153{bottom:672.150022px;}
.y7_c00153{bottom:691.200022px;}
.y6_c00153{bottom:711.000022px;}
.y5_c00153{bottom:730.125022px;}
.y4_c00153{bottom:768.225022px;}
.y3_c00153{bottom:825.150022px;}
.y2_c00153{bottom:844.950022px;}
.y1_c00153{bottom:886.725022px;}
.h2_c00153{height:50.028809px;}
.h4_c00153{height:50.053711px;}
.h3_c00153{height:58.886719px;}
.h1_c00153{height:957.750000px;}
.h0_c00153{height:957.975000px;}
.w0_c00153{width:641.850030px;}
.w1_c00153{width:642.000000px;}
.x0_c00153{left:0.000000px;}
.x2_c00153{left:81.375000px;}
.x4_c00153{left:86.025000px;}
.x5_c00153{left:113.025000px;}
.x3_c00153{left:114.150000px;}
.x1_c00153{left:289.050000px;}
.x6_c00153{left:532.050000px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls1_c00153{letter-spacing:0.000000pt;}
.ls0_c00153{letter-spacing:13.600000pt;}
.ws0_c00153{word-spacing:-13.333333pt;}
.ws1_c00153{word-spacing:0.000000pt;}
._8_c00153{margin-left:-11.402075pt;}
._e_c00153{margin-left:-9.658563pt;}
._d_c00153{margin-left:-8.474771pt;}
._15_c00153{margin-left:-5.565213pt;}
._17_c00153{margin-left:-4.570664pt;}
._7_c00153{margin-left:-3.549173pt;}
._3_c00153{margin-left:-2.592069pt;}
._0_c00153{margin-left:-1.229349pt;}
._2_c00153{width:1.136008pt;}
._5_c00153{width:2.218603pt;}
._1_c00153{width:3.199989pt;}
._f_c00153{width:4.533333pt;}
._11_c00153{width:5.423992pt;}
._c_c00153{width:6.357536pt;}
._10_c00153{width:7.892912pt;}
._4_c00153{width:9.482635pt;}
._13_c00153{width:11.093333pt;}
._6_c00153{width:12.368024pt;}
._14_c00153{width:13.258504pt;}
._12_c00153{width:14.346667pt;}
._a_c00153{width:15.685309pt;}
._19_c00153{width:17.450723pt;}
._9_c00153{width:19.167984pt;}
._b_c00153{width:21.869269pt;}
._18_c00153{width:24.088003pt;}
._16_c00153{width:25.450813pt;}
.fs0_c00153{font-size:45.333333pt;}
.fs1_c00153{font-size:53.333333pt;}
.y0_c00153{bottom:0.000000pt;}
.y26_c00153{bottom:57.266686pt;}
.y25_c00153{bottom:97.933353pt;}
.y24_c00153{bottom:111.666686pt;}
.y23_c00153{bottom:125.133353pt;}
.y22_c00153{bottom:138.600020pt;}
.y21_c00153{bottom:152.333353pt;}
.y20_c00153{bottom:165.800020pt;}
.y1f_c00153{bottom:179.533353pt;}
.y1e_c00153{bottom:193.000020pt;}
.y1d_c00153{bottom:206.733353pt;}
.y1c_c00153{bottom:220.200020pt;}
.y1b_c00153{bottom:233.933353pt;}
.y1a_c00153{bottom:247.400020pt;}
.y19_c00153{bottom:261.133353pt;}
.y18_c00153{bottom:274.600020pt;}
.y17_c00153{bottom:288.333353pt;}
.y16_c00153{bottom:302.066686pt;}
.y15_c00153{bottom:315.866686pt;}
.y14_c00153{bottom:329.000020pt;}
.y13_c00153{bottom:343.066686pt;}
.y12_c00153{bottom:356.466686pt;}
.y11_c00153{bottom:392.000020pt;}
.y10_c00153{bottom:409.000020pt;}
.yf_c00153{bottom:442.866686pt;}
.ye_c00153{bottom:493.800020pt;}
.yd_c00153{bottom:511.066686pt;}
.yc_c00153{bottom:528.333353pt;}
.yb_c00153{bottom:545.600020pt;}
.ya_c00153{bottom:562.600020pt;}
.y9_c00153{bottom:579.866686pt;}
.y8_c00153{bottom:597.466686pt;}
.y7_c00153{bottom:614.400020pt;}
.y6_c00153{bottom:632.000020pt;}
.y5_c00153{bottom:649.000020pt;}
.y4_c00153{bottom:682.866686pt;}
.y3_c00153{bottom:733.466686pt;}
.y2_c00153{bottom:751.066686pt;}
.y1_c00153{bottom:788.200020pt;}
.h2_c00153{height:44.470052pt;}
.h4_c00153{height:44.492188pt;}
.h3_c00153{height:52.343750pt;}
.h1_c00153{height:851.333333pt;}
.h0_c00153{height:851.533333pt;}
.w0_c00153{width:570.533360pt;}
.w1_c00153{width:570.666667pt;}
.x0_c00153{left:0.000000pt;}
.x2_c00153{left:72.333333pt;}
.x4_c00153{left:76.466667pt;}
.x5_c00153{left:100.466667pt;}
.x3_c00153{left:101.466667pt;}
.x1_c00153{left:256.933333pt;}
.x6_c00153{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_129970b99e911183f1c6ad15.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00154;src:url('chunks/assets/font_42ed92fcb4569cd004630932.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00154{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws0_c00154{word-spacing:-12.750000px;}
.ws2_c00154{word-spacing:0.000000px;}
._12_c00154{margin-left:-15.540000px;}
._16_c00154{margin-left:-12.240000px;}
._c_c00154{margin-left:-10.680000px;}
._d_c00154{margin-left:-9.480000px;}
._4_c00154{margin-left:-8.400000px;}
._11_c00154{margin-left:-7.140000px;}
._e_c00154{margin-left:-5.760000px;}
._1b_c00154{margin-left:-4.560057px;}
._f_c00154{margin-left:-3.540000px;}
._18_c00154{margin-left:-2.528901px;}
._0_c00154{margin-left:-1.380000px;}
._2_c00154{width:1.620000px;}
._a_c00154{width:2.700000px;}
._9_c00154{width:4.380000px;}
._19_c00154{width:5.424048px;}
._b_c00154{width:6.660000px;}
._1c_c00154{width:7.715769px;}
._7_c00154{width:8.760000px;}
._6_c00154{width:10.260000px;}
._1_c00154{width:11.520000px;}
._8_c00154{width:13.140000px;}
._1a_c00154{width:14.159796px;}
._17_c00154{width:15.567024px;}
._5_c00154{width:16.800000px;}
._3_c00154{width:18.000000px;}
._10_c00154{width:19.500000px;}
._14_c00154{width:21.060000px;}
._15_c00154{width:22.740000px;}
._13_c00154{width:24.660000px;}
._1d_c00154{width:26.687862px;}
.fc1_c00154{color:transparent;}
.fc0_c00154{color:rgb(35,31,32);}
.fs1_c00154{font-size:51.000000px;}
.fs0_c00154{font-size:60.000000px;}
.y0_c00154{bottom:0.000000px;}
.y2d_c00154{bottom:64.800022px;}
.y2c_c00154{bottom:110.550022px;}
.y2b_c00154{bottom:125.625022px;}
.y2a_c00154{bottom:141.150022px;}
.y29_c00154{bottom:155.925022px;}
.y28_c00154{bottom:171.375022px;}
.y27_c00154{bottom:186.525022px;}
.y26_c00154{bottom:201.975022px;}
.y25_c00154{bottom:217.425022px;}
.y24_c00154{bottom:232.575022px;}
.y23_c00154{bottom:248.025022px;}
.y22_c00154{bottom:263.175022px;}
.y21_c00154{bottom:278.325022px;}
.y20_c00154{bottom:293.775022px;}
.y1f_c00154{bottom:308.925022px;}
.y1e_c00154{bottom:324.375022px;}
.y1d_c00154{bottom:339.525022px;}
.y1c_c00154{bottom:354.975022px;}
.y1b_c00154{bottom:370.125022px;}
.y1a_c00154{bottom:385.575022px;}
.y19_c00154{bottom:400.725022px;}
.y18_c00154{bottom:416.175022px;}
.y17_c00154{bottom:431.625022px;}
.y16_c00154{bottom:447.150022px;}
.y15_c00154{bottom:461.925022px;}
.y14_c00154{bottom:477.375022px;}
.y13_c00154{bottom:492.825022px;}
.y12_c00154{bottom:508.350022px;}
.y11_c00154{bottom:523.425022px;}
.y10_c00154{bottom:538.950022px;}
.ye_c00154{bottom:592.575022px;}
.yd_c00154{bottom:612.000022px;}
.yc_c00154{bottom:631.125022px;}
.yb_c00154{bottom:650.925022px;}
.ya_c00154{bottom:669.975022px;}
.y9_c00154{bottom:689.775022px;}
.y8_c00154{bottom:708.825022px;}
.y7_c00154{bottom:728.625022px;}
.y6_c00154{bottom:748.125022px;}
.y5_c00154{bottom:767.025022px;}
.y4_c00154{bottom:786.525022px;}
.y3_c00154{bottom:806.025022px;}
.y2_c00154{bottom:825.525022px;}
.y1_c00154{bottom:844.575022px;}
.yf_c00154{bottom:886.725022px;}
.h3_c00154{height:50.053711px;}
.h2_c00154{height:58.886719px;}
.h1_c00154{height:957.750000px;}
.h0_c00154{height:957.975000px;}
.w1_c00154{width:643.500000px;}
.w0_c00154{width:643.650000px;}
.x0_c00154{left:0.000000px;}
.x2_c00154{left:90.375000px;}
.x1_c00154{left:91.425000px;}
.x4_c00154{left:96.150000px;}
.x3_c00154{left:107.250000px;}
.x5_c00154{left:123.825000px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls0_c00154{letter-spacing:0.000000pt;}
.ws1_c00154{word-spacing:-13.333333pt;}
.ws0_c00154{word-spacing:-11.333333pt;}
.ws2_c00154{word-spacing:0.000000pt;}
._12_c00154{margin-left:-13.813333pt;}
._16_c00154{margin-left:-10.880000pt;}
._c_c00154{margin-left:-9.493333pt;}
._d_c00154{margin-left:-8.426667pt;}
._4_c00154{margin-left:-7.466667pt;}
._11_c00154{margin-left:-6.346667pt;}
._e_c00154{margin-left:-5.120000pt;}
._1b_c00154{margin-left:-4.053384pt;}
._f_c00154{margin-left:-3.146667pt;}
._18_c00154{margin-left:-2.247912pt;}
._0_c00154{margin-left:-1.226667pt;}
._2_c00154{width:1.440000pt;}
._a_c00154{width:2.400000pt;}
._9_c00154{width:3.893333pt;}
._19_c00154{width:4.821376pt;}
._b_c00154{width:5.920000pt;}
._1c_c00154{width:6.858461pt;}
._7_c00154{width:7.786667pt;}
._6_c00154{width:9.120000pt;}
._1_c00154{width:10.240000pt;}
._8_c00154{width:11.680000pt;}
._1a_c00154{width:12.586485pt;}
._17_c00154{width:13.837355pt;}
._5_c00154{width:14.933333pt;}
._3_c00154{width:16.000000pt;}
._10_c00154{width:17.333333pt;}
._14_c00154{width:18.720000pt;}
._15_c00154{width:20.213333pt;}
._13_c00154{width:21.920000pt;}
._1d_c00154{width:23.722544pt;}
.fs1_c00154{font-size:45.333333pt;}
.fs0_c00154{font-size:53.333333pt;}
.y0_c00154{bottom:0.000000pt;}
.y2d_c00154{bottom:57.600020pt;}
.y2c_c00154{bottom:98.266686pt;}
.y2b_c00154{bottom:111.666686pt;}
.y2a_c00154{bottom:125.466686pt;}
.y29_c00154{bottom:138.600020pt;}
.y28_c00154{bottom:152.333353pt;}
.y27_c00154{bottom:165.800020pt;}
.y26_c00154{bottom:179.533353pt;}
.y25_c00154{bottom:193.266686pt;}
.y24_c00154{bottom:206.733353pt;}
.y23_c00154{bottom:220.466686pt;}
.y22_c00154{bottom:233.933353pt;}
.y21_c00154{bottom:247.400020pt;}
.y20_c00154{bottom:261.133353pt;}
.y1f_c00154{bottom:274.600020pt;}
.y1e_c00154{bottom:288.333353pt;}
.y1d_c00154{bottom:301.800020pt;}
.y1c_c00154{bottom:315.533353pt;}
.y1b_c00154{bottom:329.000020pt;}
.y1a_c00154{bottom:342.733353pt;}
.y19_c00154{bottom:356.200020pt;}
.y18_c00154{bottom:369.933353pt;}
.y17_c00154{bottom:383.666686pt;}
.y16_c00154{bottom:397.466686pt;}
.y15_c00154{bottom:410.600020pt;}
.y14_c00154{bottom:424.333353pt;}
.y13_c00154{bottom:438.066686pt;}
.y12_c00154{bottom:451.866686pt;}
.y11_c00154{bottom:465.266686pt;}
.y10_c00154{bottom:479.066686pt;}
.ye_c00154{bottom:526.733353pt;}
.yd_c00154{bottom:544.000020pt;}
.yc_c00154{bottom:561.000020pt;}
.yb_c00154{bottom:578.600020pt;}
.ya_c00154{bottom:595.533353pt;}
.y9_c00154{bottom:613.133353pt;}
.y8_c00154{bottom:630.066686pt;}
.y7_c00154{bottom:647.666686pt;}
.y6_c00154{bottom:665.000020pt;}
.y5_c00154{bottom:681.800020pt;}
.y4_c00154{bottom:699.133353pt;}
.y3_c00154{bottom:716.466686pt;}
.y2_c00154{bottom:733.800020pt;}
.y1_c00154{bottom:750.733353pt;}
.yf_c00154{bottom:788.200020pt;}
.h3_c00154{height:44.492188pt;}
.h2_c00154{height:52.343750pt;}
.h1_c00154{height:851.333333pt;}
.h0_c00154{height:851.533333pt;}
.w1_c00154{width:572.000000pt;}
.w0_c00154{width:572.133333pt;}
.x0_c00154{left:0.000000pt;}
.x2_c00154{left:80.333333pt;}
.x1_c00154{left:81.266667pt;}
.x4_c00154{left:85.466667pt;}
.x3_c00154{left:95.333333pt;}
.x5_c00154{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_49827a873dfc51725a916f0b.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00155;src:url('chunks/assets/font_7e3db99fe7f5328f7f9c8fb6.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.sc__c00155{text-shadow:none;}
.sc0_c00155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00155{-webkit-text-stroke:0px transparent;}
.sc0_c00155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00155{word-spacing:-15.000000px;}
.ws0_c00155{word-spacing:-12.750000px;}
.ws2_c00155{word-spacing:0.000000px;}
._11_c00155{margin-left:-16.223688px;}
._b_c00155{margin-left:-14.894649px;}
._d_c00155{margin-left:-10.593099px;}
._a_c00155{margin-left:-8.712126px;}
._c_c00155{margin-left:-6.365907px;}
._e_c00155{margin-left:-4.622883px;}
._3_c00155{margin-left:-2.916078px;}
._0_c00155{margin-left:-1.383018px;}
._2_c00155{width:1.278009px;}
._5_c00155{width:2.400000px;}
._1_c00155{width:3.599988px;}
._4_c00155{width:5.105907px;}
._6_c00155{width:6.737985px;}
._10_c00155{width:8.115363px;}
._8_c00155{width:9.623982px;}
._f_c00155{width:11.237919px;}
._7_c00155{width:12.989955px;}
._16_c00155{width:14.523444px;}
._9_c00155{width:16.241991px;}
._18_c00155{width:18.597249px;}
._19_c00155{width:19.772841px;}
._12_c00155{width:24.516057px;}
._13_c00155{width:26.078901px;}
._17_c00155{width:27.099003px;}
._14_c00155{width:28.316970px;}
._15_c00155{width:29.910123px;}
.fc1_c00155{color:transparent;}
.fc0_c00155{color:rgb(35,31,32);}
.fs0_c00155{font-size:51.000000px;}
.fs1_c00155{font-size:60.000000px;}
.y0_c00155{bottom:0.000000px;}
.y2d_c00155{bottom:64.425022px;}
.y2c_c00155{bottom:110.550022px;}
.y2b_c00155{bottom:125.325022px;}
.y2a_c00155{bottom:140.775022px;}
.y29_c00155{bottom:156.225022px;}
.y28_c00155{bottom:171.750022px;}
.y27_c00155{bottom:186.825022px;}
.y26_c00155{bottom:202.350022px;}
.y25_c00155{bottom:217.425022px;}
.y24_c00155{bottom:232.575022px;}
.y23_c00155{bottom:248.025022px;}
.y22_c00155{bottom:263.175022px;}
.y21_c00155{bottom:278.625022px;}
.y20_c00155{bottom:294.150022px;}
.y1f_c00155{bottom:309.225022px;}
.y1e_c00155{bottom:324.750022px;}
.y1d_c00155{bottom:339.525022px;}
.y1c_c00155{bottom:354.975022px;}
.y1b_c00155{bottom:370.425022px;}
.y1a_c00155{bottom:385.950022px;}
.y19_c00155{bottom:400.725022px;}
.y18_c00155{bottom:416.175022px;}
.y17_c00155{bottom:431.325022px;}
.y16_c00155{bottom:447.150022px;}
.y15_c00155{bottom:461.925022px;}
.y14_c00155{bottom:477.375022px;}
.y13_c00155{bottom:492.825022px;}
.y12_c00155{bottom:508.350022px;}
.y11_c00155{bottom:523.125022px;}
.y10_c00155{bottom:538.950022px;}
.yf_c00155{bottom:592.575022px;}
.ye_c00155{bottom:611.625022px;}
.yd_c00155{bottom:631.425022px;}
.yc_c00155{bottom:650.925022px;}
.yb_c00155{bottom:670.350022px;}
.ya_c00155{bottom:689.775022px;}
.y9_c00155{bottom:709.200022px;}
.y8_c00155{bottom:728.325022px;}
.y7_c00155{bottom:747.750022px;}
.y6_c00155{bottom:767.550022px;}
.y5_c00155{bottom:786.225022px;}
.y4_c00155{bottom:805.725022px;}
.y3_c00155{bottom:825.525022px;}
.y2_c00155{bottom:844.950022px;}
.y1_c00155{bottom:886.725022px;}
.h2_c00155{height:50.028809px;}
.h4_c00155{height:50.053711px;}
.h3_c00155{height:58.886719px;}
.h1_c00155{height:957.750000px;}
.h0_c00155{height:957.975000px;}
.w0_c00155{width:641.850030px;}
.w1_c00155{width:642.000000px;}
.x0_c00155{left:0.000000px;}
.x3_c00155{left:80.250000px;}
.x2_c00155{left:81.375000px;}
.x7_c00155{left:86.025000px;}
.x4_c00155{left:97.200000px;}
.x5_c00155{left:113.025000px;}
.x6_c00155{left:114.150000px;}
.x1_c00155{left:289.050000px;}
.x8_c00155{left:532.050000px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls0_c00155{letter-spacing:0.000000pt;}
.ws1_c00155{word-spacing:-13.333333pt;}
.ws0_c00155{word-spacing:-11.333333pt;}
.ws2_c00155{word-spacing:0.000000pt;}
._11_c00155{margin-left:-14.421056pt;}
._b_c00155{margin-left:-13.239688pt;}
._d_c00155{margin-left:-9.416088pt;}
._a_c00155{margin-left:-7.744112pt;}
._c_c00155{margin-left:-5.658584pt;}
._e_c00155{margin-left:-4.109229pt;}
._3_c00155{margin-left:-2.592069pt;}
._0_c00155{margin-left:-1.229349pt;}
._2_c00155{width:1.136008pt;}
._5_c00155{width:2.133333pt;}
._1_c00155{width:3.199989pt;}
._4_c00155{width:4.538584pt;}
._6_c00155{width:5.989320pt;}
._10_c00155{width:7.213656pt;}
._8_c00155{width:8.554651pt;}
._f_c00155{width:9.989261pt;}
._7_c00155{width:11.546627pt;}
._16_c00155{width:12.909728pt;}
._9_c00155{width:14.437325pt;}
._18_c00155{width:16.530888pt;}
._19_c00155{width:17.575859pt;}
._12_c00155{width:21.792051pt;}
._13_c00155{width:23.181245pt;}
._17_c00155{width:24.088003pt;}
._14_c00155{width:25.170640pt;}
._15_c00155{width:26.586776pt;}
.fs0_c00155{font-size:45.333333pt;}
.fs1_c00155{font-size:53.333333pt;}
.y0_c00155{bottom:0.000000pt;}
.y2d_c00155{bottom:57.266686pt;}
.y2c_c00155{bottom:98.266686pt;}
.y2b_c00155{bottom:111.400020pt;}
.y2a_c00155{bottom:125.133353pt;}
.y29_c00155{bottom:138.866686pt;}
.y28_c00155{bottom:152.666686pt;}
.y27_c00155{bottom:166.066686pt;}
.y26_c00155{bottom:179.866686pt;}
.y25_c00155{bottom:193.266686pt;}
.y24_c00155{bottom:206.733353pt;}
.y23_c00155{bottom:220.466686pt;}
.y22_c00155{bottom:233.933353pt;}
.y21_c00155{bottom:247.666686pt;}
.y20_c00155{bottom:261.466686pt;}
.y1f_c00155{bottom:274.866686pt;}
.y1e_c00155{bottom:288.666686pt;}
.y1d_c00155{bottom:301.800020pt;}
.y1c_c00155{bottom:315.533353pt;}
.y1b_c00155{bottom:329.266686pt;}
.y1a_c00155{bottom:343.066686pt;}
.y19_c00155{bottom:356.200020pt;}
.y18_c00155{bottom:369.933353pt;}
.y17_c00155{bottom:383.400020pt;}
.y16_c00155{bottom:397.466686pt;}
.y15_c00155{bottom:410.600020pt;}
.y14_c00155{bottom:424.333353pt;}
.y13_c00155{bottom:438.066686pt;}
.y12_c00155{bottom:451.866686pt;}
.y11_c00155{bottom:465.000020pt;}
.y10_c00155{bottom:479.066686pt;}
.yf_c00155{bottom:526.733353pt;}
.ye_c00155{bottom:543.666686pt;}
.yd_c00155{bottom:561.266686pt;}
.yc_c00155{bottom:578.600020pt;}
.yb_c00155{bottom:595.866686pt;}
.ya_c00155{bottom:613.133353pt;}
.y9_c00155{bottom:630.400020pt;}
.y8_c00155{bottom:647.400020pt;}
.y7_c00155{bottom:664.666686pt;}
.y6_c00155{bottom:682.266686pt;}
.y5_c00155{bottom:698.866686pt;}
.y4_c00155{bottom:716.200020pt;}
.y3_c00155{bottom:733.800020pt;}
.y2_c00155{bottom:751.066686pt;}
.y1_c00155{bottom:788.200020pt;}
.h2_c00155{height:44.470052pt;}
.h4_c00155{height:44.492188pt;}
.h3_c00155{height:52.343750pt;}
.h1_c00155{height:851.333333pt;}
.h0_c00155{height:851.533333pt;}
.w0_c00155{width:570.533360pt;}
.w1_c00155{width:570.666667pt;}
.x0_c00155{left:0.000000pt;}
.x3_c00155{left:71.333333pt;}
.x2_c00155{left:72.333333pt;}
.x7_c00155{left:76.466667pt;}
.x4_c00155{left:86.400000pt;}
.x5_c00155{left:100.466667pt;}
.x6_c00155{left:101.466667pt;}
.x1_c00155{left:256.933333pt;}
.x8_c00155{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d806f34a09f54877d0350ec5.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00156;src:url('chunks/assets/font_96c892488b6f541f1c497ea2.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00156{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00156{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00156{word-spacing:-15.000000px;}
.ws0_c00156{word-spacing:-12.750000px;}
.ws2_c00156{word-spacing:0.000000px;}
._c_c00156{margin-left:-9.480000px;}
._7_c00156{margin-left:-7.320000px;}
._10_c00156{margin-left:-6.000000px;}
._d_c00156{margin-left:-4.917012px;}
._11_c00156{margin-left:-3.660000px;}
._15_c00156{margin-left:-2.628084px;}
._3_c00156{margin-left:-1.620000px;}
._1_c00156{width:1.740000px;}
._0_c00156{width:3.120000px;}
._4_c00156{width:4.620000px;}
._5_c00156{width:5.880000px;}
._2_c00156{width:6.960000px;}
._e_c00156{width:8.220000px;}
._6_c00156{width:9.540000px;}
._9_c00156{width:11.220000px;}
._f_c00156{width:12.600000px;}
._8_c00156{width:13.800000px;}
._a_c00156{width:16.020000px;}
._b_c00156{width:17.520000px;}
._12_c00156{width:19.080000px;}
._13_c00156{width:25.380000px;}
._14_c00156{width:27.960000px;}
.fc1_c00156{color:transparent;}
.fc0_c00156{color:rgb(35,31,32);}
.fs1_c00156{font-size:51.000000px;}
.fs0_c00156{font-size:60.000000px;}
.y0_c00156{bottom:0.000000px;}
.y27_c00156{bottom:64.425022px;}
.y26_c00156{bottom:110.550022px;}
.y25_c00156{bottom:125.325022px;}
.y24_c00156{bottom:141.150022px;}
.y23_c00156{bottom:156.225022px;}
.y22_c00156{bottom:171.375022px;}
.y21_c00156{bottom:186.825022px;}
.y20_c00156{bottom:201.900022px;}
.y1f_c00156{bottom:217.425022px;}
.y1e_c00156{bottom:232.950022px;}
.y1d_c00156{bottom:247.725022px;}
.y1c_c00156{bottom:263.175022px;}
.y1b_c00156{bottom:278.625022px;}
.y1a_c00156{bottom:318.225022px;}
.y19_c00156{bottom:338.100022px;}
.y18_c00156{bottom:357.525022px;}
.y17_c00156{bottom:376.950022px;}
.y16_c00156{bottom:396.375022px;}
.y15_c00156{bottom:415.500022px;}
.y14_c00156{bottom:434.925022px;}
.y13_c00156{bottom:454.350022px;}
.y12_c00156{bottom:473.775022px;}
.y11_c00156{bottom:493.425022px;}
.y10_c00156{bottom:512.925022px;}
.yf_c00156{bottom:532.425022px;}
.ye_c00156{bottom:551.925022px;}
.yd_c00156{bottom:571.350022px;}
.yc_c00156{bottom:590.775022px;}
.yb_c00156{bottom:610.200022px;}
.ya_c00156{bottom:629.325022px;}
.y9_c00156{bottom:669.600022px;}
.y7_c00156{bottom:728.325022px;}
.y6_c00156{bottom:747.750022px;}
.y5_c00156{bottom:767.175022px;}
.y4_c00156{bottom:786.225022px;}
.y3_c00156{bottom:805.725022px;}
.y2_c00156{bottom:825.525022px;}
.y1_c00156{bottom:844.950022px;}
.y8_c00156{bottom:886.725022px;}
.h3_c00156{height:50.053711px;}
.h4_c00156{height:50.353711px;}
.h2_c00156{height:58.886719px;}
.h1_c00156{height:957.750000px;}
.h0_c00156{height:957.975000px;}
.w1_c00156{width:643.500000px;}
.w0_c00156{width:643.650000px;}
.x0_c00156{left:0.000000px;}
.x2_c00156{left:90.375000px;}
.x1_c00156{left:91.425000px;}
.x4_c00156{left:96.150000px;}
.x3_c00156{left:124.200000px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls0_c00156{letter-spacing:0.000000pt;}
.ws1_c00156{word-spacing:-13.333333pt;}
.ws0_c00156{word-spacing:-11.333333pt;}
.ws2_c00156{word-spacing:0.000000pt;}
._c_c00156{margin-left:-8.426667pt;}
._7_c00156{margin-left:-6.506667pt;}
._10_c00156{margin-left:-5.333333pt;}
._d_c00156{margin-left:-4.370677pt;}
._11_c00156{margin-left:-3.253333pt;}
._15_c00156{margin-left:-2.336075pt;}
._3_c00156{margin-left:-1.440000pt;}
._1_c00156{width:1.546667pt;}
._0_c00156{width:2.773333pt;}
._4_c00156{width:4.106667pt;}
._5_c00156{width:5.226667pt;}
._2_c00156{width:6.186667pt;}
._e_c00156{width:7.306667pt;}
._6_c00156{width:8.480000pt;}
._9_c00156{width:9.973333pt;}
._f_c00156{width:11.200000pt;}
._8_c00156{width:12.266667pt;}
._a_c00156{width:14.240000pt;}
._b_c00156{width:15.573333pt;}
._12_c00156{width:16.960000pt;}
._13_c00156{width:22.560000pt;}
._14_c00156{width:24.853333pt;}
.fs1_c00156{font-size:45.333333pt;}
.fs0_c00156{font-size:53.333333pt;}
.y0_c00156{bottom:0.000000pt;}
.y27_c00156{bottom:57.266686pt;}
.y26_c00156{bottom:98.266686pt;}
.y25_c00156{bottom:111.400020pt;}
.y24_c00156{bottom:125.466686pt;}
.y23_c00156{bottom:138.866686pt;}
.y22_c00156{bottom:152.333353pt;}
.y21_c00156{bottom:166.066686pt;}
.y20_c00156{bottom:179.466686pt;}
.y1f_c00156{bottom:193.266686pt;}
.y1e_c00156{bottom:207.066686pt;}
.y1d_c00156{bottom:220.200020pt;}
.y1c_c00156{bottom:233.933353pt;}
.y1b_c00156{bottom:247.666686pt;}
.y1a_c00156{bottom:282.866686pt;}
.y19_c00156{bottom:300.533353pt;}
.y18_c00156{bottom:317.800020pt;}
.y17_c00156{bottom:335.066686pt;}
.y16_c00156{bottom:352.333353pt;}
.y15_c00156{bottom:369.333353pt;}
.y14_c00156{bottom:386.600020pt;}
.y13_c00156{bottom:403.866686pt;}
.y12_c00156{bottom:421.133353pt;}
.y11_c00156{bottom:438.600020pt;}
.y10_c00156{bottom:455.933353pt;}
.yf_c00156{bottom:473.266686pt;}
.ye_c00156{bottom:490.600020pt;}
.yd_c00156{bottom:507.866686pt;}
.yc_c00156{bottom:525.133353pt;}
.yb_c00156{bottom:542.400020pt;}
.ya_c00156{bottom:559.400020pt;}
.y9_c00156{bottom:595.200020pt;}
.y7_c00156{bottom:647.400020pt;}
.y6_c00156{bottom:664.666686pt;}
.y5_c00156{bottom:681.933353pt;}
.y4_c00156{bottom:698.866686pt;}
.y3_c00156{bottom:716.200020pt;}
.y2_c00156{bottom:733.800020pt;}
.y1_c00156{bottom:751.066686pt;}
.y8_c00156{bottom:788.200020pt;}
.h3_c00156{height:44.492188pt;}
.h4_c00156{height:44.758854pt;}
.h2_c00156{height:52.343750pt;}
.h1_c00156{height:851.333333pt;}
.h0_c00156{height:851.533333pt;}
.w1_c00156{width:572.000000pt;}
.w0_c00156{width:572.133333pt;}
.x0_c00156{left:0.000000pt;}
.x2_c00156{left:80.333333pt;}
.x1_c00156{left:81.266667pt;}
.x4_c00156{left:85.466667pt;}
.x3_c00156{left:110.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_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_c10e82720691812a38279e71.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00157;src:url('chunks/assets/font_ad9837e8f5560329a757425d.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.ls1_c00157{letter-spacing:0.000000px;}
.ls0_c00157{letter-spacing:14.100000px;}
.sc__c00157{text-shadow:none;}
.sc0_c00157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00157{-webkit-text-stroke:0px transparent;}
.sc0_c00157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00157{word-spacing:-15.000000px;}
.ws1_c00157{word-spacing:-12.750000px;}
.ws2_c00157{word-spacing:0.000000px;}
._e_c00157{margin-left:-15.302970px;}
._10_c00157{margin-left:-12.810582px;}
._f_c00157{margin-left:-11.789418px;}
._12_c00157{margin-left:-10.703982px;}
._11_c00157{margin-left:-9.096018px;}
._d_c00157{margin-left:-7.800000px;}
._14_c00157{margin-left:-5.867595px;}
._18_c00157{margin-left:-4.674012px;}
._3_c00157{margin-left:-2.916078px;}
._0_c00157{margin-left:-1.383018px;}
._2_c00157{width:1.278009px;}
._8_c00157{width:2.282886px;}
._1_c00157{width:3.599988px;}
._7_c00157{width:4.805973px;}
._4_c00157{width:6.227964px;}
._5_c00157{width:7.320000px;}
._6_c00157{width:8.592036px;}
._c_c00157{width:9.863982px;}
._9_c00157{width:11.592147px;}
._a_c00157{width:13.355742px;}
._1a_c00157{width:14.820198px;}
._b_c00157{width:16.611237px;}
._16_c00157{width:17.648733px;}
._13_c00157{width:19.647069px;}
._17_c00157{width:23.153688px;}
._1b_c00157{width:24.516057px;}
._19_c00157{width:25.716087px;}
._15_c00157{width:27.432186px;}
.fc2_c00157{color:transparent;}
.fc1_c00157{color:rgb(0,0,0);}
.fc0_c00157{color:rgb(35,31,32);}
.fs0_c00157{font-size:51.000000px;}
.fs1_c00157{font-size:60.000000px;}
.y0_c00157{bottom:0.000000px;}
.y28_c00157{bottom:64.425022px;}
.y27_c00157{bottom:110.550022px;}
.y26_c00157{bottom:125.625022px;}
.y25_c00157{bottom:140.775022px;}
.y24_c00157{bottom:156.225022px;}
.y23_c00157{bottom:171.750022px;}
.y22_c00157{bottom:186.825022px;}
.y21_c00157{bottom:202.350022px;}
.y20_c00157{bottom:217.425022px;}
.y1f_c00157{bottom:232.950022px;}
.y1e_c00157{bottom:248.025022px;}
.y1d_c00157{bottom:263.550022px;}
.y1c_c00157{bottom:278.625022px;}
.y1b_c00157{bottom:293.700022px;}
.y1a_c00157{bottom:309.225022px;}
.y19_c00157{bottom:324.750022px;}
.y18_c00157{bottom:339.525022px;}
.y17_c00157{bottom:355.350022px;}
.y16_c00157{bottom:394.950022px;}
.y15_c00157{bottom:414.750022px;}
.y14_c00157{bottom:434.175022px;}
.y13_c00157{bottom:453.225022px;}
.y12_c00157{bottom:472.350022px;}
.y11_c00157{bottom:492.150022px;}
.y10_c00157{bottom:511.575022px;}
.yf_c00157{bottom:530.625022px;}
.ye_c00157{bottom:550.125022px;}
.yd_c00157{bottom:569.925022px;}
.yc_c00157{bottom:589.350022px;}
.yb_c00157{bottom:608.400022px;}
.ya_c00157{bottom:627.825022px;}
.y9_c00157{bottom:647.625022px;}
.y8_c00157{bottom:666.750022px;}
.y7_c00157{bottom:686.550022px;}
.y6_c00157{bottom:705.600022px;}
.y5_c00157{bottom:725.025022px;}
.y4_c00157{bottom:765.750022px;}
.y3_c00157{bottom:825.525022px;}
.y2_c00157{bottom:844.950022px;}
.y1_c00157{bottom:886.725022px;}
.h2_c00157{height:50.028809px;}
.h4_c00157{height:50.053711px;}
.h3_c00157{height:58.886719px;}
.h1_c00157{height:957.750000px;}
.h0_c00157{height:957.975000px;}
.w0_c00157{width:641.850030px;}
.w1_c00157{width:642.000000px;}
.x0_c00157{left:0.000000px;}
.x3_c00157{left:80.250000px;}
.x2_c00157{left:81.375000px;}
.x4_c00157{left:86.025000px;}
.x5_c00157{left:113.775000px;}
.x1_c00157{left:289.050000px;}
.x6_c00157{left:532.050000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls1_c00157{letter-spacing:0.000000pt;}
.ls0_c00157{letter-spacing:12.533333pt;}
.ws0_c00157{word-spacing:-13.333333pt;}
.ws1_c00157{word-spacing:-11.333333pt;}
.ws2_c00157{word-spacing:0.000000pt;}
._e_c00157{margin-left:-13.602640pt;}
._10_c00157{margin-left:-11.387184pt;}
._f_c00157{margin-left:-10.479483pt;}
._12_c00157{margin-left:-9.514651pt;}
._11_c00157{margin-left:-8.085349pt;}
._d_c00157{margin-left:-6.933333pt;}
._14_c00157{margin-left:-5.215640pt;}
._18_c00157{margin-left:-4.154677pt;}
._3_c00157{margin-left:-2.592069pt;}
._0_c00157{margin-left:-1.229349pt;}
._2_c00157{width:1.136008pt;}
._8_c00157{width:2.029232pt;}
._1_c00157{width:3.199989pt;}
._7_c00157{width:4.271976pt;}
._4_c00157{width:5.535968pt;}
._5_c00157{width:6.506667pt;}
._6_c00157{width:7.637365pt;}
._c_c00157{width:8.767984pt;}
._9_c00157{width:10.304131pt;}
._a_c00157{width:11.871771pt;}
._1a_c00157{width:13.173509pt;}
._b_c00157{width:14.765544pt;}
._16_c00157{width:15.687763pt;}
._13_c00157{width:17.464061pt;}
._17_c00157{width:20.581056pt;}
._1b_c00157{width:21.792051pt;}
._19_c00157{width:22.858744pt;}
._15_c00157{width:24.384165pt;}
.fs0_c00157{font-size:45.333333pt;}
.fs1_c00157{font-size:53.333333pt;}
.y0_c00157{bottom:0.000000pt;}
.y28_c00157{bottom:57.266686pt;}
.y27_c00157{bottom:98.266686pt;}
.y26_c00157{bottom:111.666686pt;}
.y25_c00157{bottom:125.133353pt;}
.y24_c00157{bottom:138.866686pt;}
.y23_c00157{bottom:152.666686pt;}
.y22_c00157{bottom:166.066686pt;}
.y21_c00157{bottom:179.866686pt;}
.y20_c00157{bottom:193.266686pt;}
.y1f_c00157{bottom:207.066686pt;}
.y1e_c00157{bottom:220.466686pt;}
.y1d_c00157{bottom:234.266686pt;}
.y1c_c00157{bottom:247.666686pt;}
.y1b_c00157{bottom:261.066686pt;}
.y1a_c00157{bottom:274.866686pt;}
.y19_c00157{bottom:288.666686pt;}
.y18_c00157{bottom:301.800020pt;}
.y17_c00157{bottom:315.866686pt;}
.y16_c00157{bottom:351.066686pt;}
.y15_c00157{bottom:368.666686pt;}
.y14_c00157{bottom:385.933353pt;}
.y13_c00157{bottom:402.866686pt;}
.y12_c00157{bottom:419.866686pt;}
.y11_c00157{bottom:437.466686pt;}
.y10_c00157{bottom:454.733353pt;}
.yf_c00157{bottom:471.666686pt;}
.ye_c00157{bottom:489.000020pt;}
.yd_c00157{bottom:506.600020pt;}
.yc_c00157{bottom:523.866686pt;}
.yb_c00157{bottom:540.800020pt;}
.ya_c00157{bottom:558.066686pt;}
.y9_c00157{bottom:575.666686pt;}
.y8_c00157{bottom:592.666686pt;}
.y7_c00157{bottom:610.266686pt;}
.y6_c00157{bottom:627.200020pt;}
.y5_c00157{bottom:644.466686pt;}
.y4_c00157{bottom:680.666686pt;}
.y3_c00157{bottom:733.800020pt;}
.y2_c00157{bottom:751.066686pt;}
.y1_c00157{bottom:788.200020pt;}
.h2_c00157{height:44.470052pt;}
.h4_c00157{height:44.492188pt;}
.h3_c00157{height:52.343750pt;}
.h1_c00157{height:851.333333pt;}
.h0_c00157{height:851.533333pt;}
.w0_c00157{width:570.533360pt;}
.w1_c00157{width:570.666667pt;}
.x0_c00157{left:0.000000pt;}
.x3_c00157{left:71.333333pt;}
.x2_c00157{left:72.333333pt;}
.x4_c00157{left:76.466667pt;}
.x5_c00157{left:101.133333pt;}
.x1_c00157{left:256.933333pt;}
.x6_c00157{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_805440b9c61496004fe6467b.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00158;src:url('chunks/assets/font_bd89c8bc302c2988e9e6da3b.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls1_c00158{letter-spacing:0.000000px;}
.ls0_c00158{letter-spacing:12.600000px;}
.sc__c00158{text-shadow:none;}
.sc0_c00158{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00158{-webkit-text-stroke:0px transparent;}
.sc0_c00158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00158{word-spacing:-15.000000px;}
.ws1_c00158{word-spacing:-12.750000px;}
.ws2_c00158{word-spacing:0.000000px;}
._7_c00158{margin-left:-15.600000px;}
._18_c00158{margin-left:-12.540000px;}
._17_c00158{margin-left:-10.740000px;}
._c_c00158{margin-left:-9.720000px;}
._19_c00158{margin-left:-7.359027px;}
._16_c00158{margin-left:-5.700000px;}
._2_c00158{margin-left:-4.200000px;}
._4_c00158{margin-left:-2.220000px;}
._5_c00158{margin-left:-1.200000px;}
._0_c00158{width:1.320000px;}
._9_c00158{width:2.400000px;}
._a_c00158{width:3.540000px;}
._15_c00158{width:5.280000px;}
._3_c00158{width:6.600000px;}
._8_c00158{width:8.220000px;}
._1_c00158{width:9.600000px;}
._6_c00158{width:11.580000px;}
._b_c00158{width:13.320000px;}
._1a_c00158{width:15.543006px;}
._11_c00158{width:16.800000px;}
._12_c00158{width:18.300000px;}
._14_c00158{width:19.620000px;}
._10_c00158{width:21.000000px;}
._13_c00158{width:23.040000px;}
._1b_c00158{width:24.105102px;}
._f_c00158{width:25.500000px;}
._1c_c00158{width:26.909958px;}
._e_c00158{width:41.400000px;}
._d_c00158{width:42.600000px;}
.fc2_c00158{color:transparent;}
.fc1_c00158{color:rgb(0,0,0);}
.fc0_c00158{color:rgb(35,31,32);}
.fs1_c00158{font-size:51.000000px;}
.fs0_c00158{font-size:60.000000px;}
.y0_c00158{bottom:0.000000px;}
.y27_c00158{bottom:64.425022px;}
.y26_c00158{bottom:110.100022px;}
.y25_c00158{bottom:125.625022px;}
.y24_c00158{bottom:141.150022px;}
.y23_c00158{bottom:155.925022px;}
.y22_c00158{bottom:171.375022px;}
.y21_c00158{bottom:186.825022px;}
.y20_c00158{bottom:202.350022px;}
.y1f_c00158{bottom:217.125022px;}
.y1e_c00158{bottom:232.575022px;}
.y1d_c00158{bottom:247.725022px;}
.y1c_c00158{bottom:263.550022px;}
.y1b_c00158{bottom:278.625022px;}
.y1a_c00158{bottom:294.150022px;}
.y19_c00158{bottom:309.225022px;}
.y18_c00158{bottom:324.750022px;}
.y17_c00158{bottom:339.525022px;}
.y16_c00158{bottom:354.975022px;}
.y15_c00158{bottom:419.400022px;}
.y14_c00158{bottom:439.200022px;}
.y13_c00158{bottom:458.325022px;}
.y12_c00158{bottom:478.125022px;}
.y11_c00158{bottom:516.225022px;}
.yf_c00158{bottom:573.150022px;}
.ye_c00158{bottom:592.575022px;}
.yd_c00158{bottom:612.000022px;}
.yc_c00158{bottom:631.425022px;}
.yb_c00158{bottom:650.550022px;}
.ya_c00158{bottom:669.975022px;}
.y9_c00158{bottom:689.400022px;}
.y8_c00158{bottom:709.200022px;}
.y7_c00158{bottom:728.625022px;}
.y6_c00158{bottom:747.750022px;}
.y5_c00158{bottom:767.175022px;}
.y4_c00158{bottom:786.225022px;}
.y3_c00158{bottom:806.025022px;}
.y2_c00158{bottom:825.150022px;}
.y1_c00158{bottom:844.575022px;}
.y10_c00158{bottom:886.725022px;}
.h3_c00158{height:50.053711px;}
.h2_c00158{height:58.886719px;}
.h1_c00158{height:957.750000px;}
.h0_c00158{height:957.975000px;}
.w1_c00158{width:643.500000px;}
.w0_c00158{width:643.650000px;}
.x0_c00158{left:0.000000px;}
.x1_c00158{left:90.375000px;}
.x2_c00158{left:91.425000px;}
.x4_c00158{left:96.150000px;}
.x3_c00158{left:106.950000px;}
.x5_c00158{left:123.825000px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls1_c00158{letter-spacing:0.000000pt;}
.ls0_c00158{letter-spacing:11.200000pt;}
.ws0_c00158{word-spacing:-13.333333pt;}
.ws1_c00158{word-spacing:-11.333333pt;}
.ws2_c00158{word-spacing:0.000000pt;}
._7_c00158{margin-left:-13.866667pt;}
._18_c00158{margin-left:-11.146667pt;}
._17_c00158{margin-left:-9.546667pt;}
._c_c00158{margin-left:-8.640000pt;}
._19_c00158{margin-left:-6.541357pt;}
._16_c00158{margin-left:-5.066667pt;}
._2_c00158{margin-left:-3.733333pt;}
._4_c00158{margin-left:-1.973333pt;}
._5_c00158{margin-left:-1.066667pt;}
._0_c00158{width:1.173333pt;}
._9_c00158{width:2.133333pt;}
._a_c00158{width:3.146667pt;}
._15_c00158{width:4.693333pt;}
._3_c00158{width:5.866667pt;}
._8_c00158{width:7.306667pt;}
._1_c00158{width:8.533333pt;}
._6_c00158{width:10.293333pt;}
._b_c00158{width:11.840000pt;}
._1a_c00158{width:13.816005pt;}
._11_c00158{width:14.933333pt;}
._12_c00158{width:16.266667pt;}
._14_c00158{width:17.440000pt;}
._10_c00158{width:18.666667pt;}
._13_c00158{width:20.480000pt;}
._1b_c00158{width:21.426757pt;}
._f_c00158{width:22.666667pt;}
._1c_c00158{width:23.919963pt;}
._e_c00158{width:36.800000pt;}
._d_c00158{width:37.866667pt;}
.fs1_c00158{font-size:45.333333pt;}
.fs0_c00158{font-size:53.333333pt;}
.y0_c00158{bottom:0.000000pt;}
.y27_c00158{bottom:57.266686pt;}
.y26_c00158{bottom:97.866686pt;}
.y25_c00158{bottom:111.666686pt;}
.y24_c00158{bottom:125.466686pt;}
.y23_c00158{bottom:138.600020pt;}
.y22_c00158{bottom:152.333353pt;}
.y21_c00158{bottom:166.066686pt;}
.y20_c00158{bottom:179.866686pt;}
.y1f_c00158{bottom:193.000020pt;}
.y1e_c00158{bottom:206.733353pt;}
.y1d_c00158{bottom:220.200020pt;}
.y1c_c00158{bottom:234.266686pt;}
.y1b_c00158{bottom:247.666686pt;}
.y1a_c00158{bottom:261.466686pt;}
.y19_c00158{bottom:274.866686pt;}
.y18_c00158{bottom:288.666686pt;}
.y17_c00158{bottom:301.800020pt;}
.y16_c00158{bottom:315.533353pt;}
.y15_c00158{bottom:372.800020pt;}
.y14_c00158{bottom:390.400020pt;}
.y13_c00158{bottom:407.400020pt;}
.y12_c00158{bottom:425.000020pt;}
.y11_c00158{bottom:458.866686pt;}
.yf_c00158{bottom:509.466686pt;}
.ye_c00158{bottom:526.733353pt;}
.yd_c00158{bottom:544.000020pt;}
.yc_c00158{bottom:561.266686pt;}
.yb_c00158{bottom:578.266686pt;}
.ya_c00158{bottom:595.533353pt;}
.y9_c00158{bottom:612.800020pt;}
.y8_c00158{bottom:630.400020pt;}
.y7_c00158{bottom:647.666686pt;}
.y6_c00158{bottom:664.666686pt;}
.y5_c00158{bottom:681.933353pt;}
.y4_c00158{bottom:698.866686pt;}
.y3_c00158{bottom:716.466686pt;}
.y2_c00158{bottom:733.466686pt;}
.y1_c00158{bottom:750.733353pt;}
.y10_c00158{bottom:788.200020pt;}
.h3_c00158{height:44.492188pt;}
.h2_c00158{height:52.343750pt;}
.h1_c00158{height:851.333333pt;}
.h0_c00158{height:851.533333pt;}
.w1_c00158{width:572.000000pt;}
.w0_c00158{width:572.133333pt;}
.x0_c00158{left:0.000000pt;}
.x1_c00158{left:80.333333pt;}
.x2_c00158{left:81.266667pt;}
.x4_c00158{left:85.466667pt;}
.x3_c00158{left:95.066667pt;}
.x5_c00158{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_de715c2884a26ce12bf1e16b.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00159;src:url('chunks/assets/font_fdb67f9cc0b1d5640ee51181.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00159{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00159{vertical-align:0.000000px;}
.ls0_c00159{letter-spacing:0.000000px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00159{word-spacing:-15.000000px;}
.ws0_c00159{word-spacing:-12.750000px;}
.ws2_c00159{word-spacing:0.000000px;}
._6_c00159{margin-left:-10.673991px;}
._5_c00159{margin-left:-9.126009px;}
._11_c00159{margin-left:-7.728048px;}
._13_c00159{margin-left:-6.468042px;}
._15_c00159{margin-left:-5.111754px;}
._12_c00159{margin-left:-4.074171px;}
._3_c00159{margin-left:-2.916078px;}
._0_c00159{margin-left:-1.383018px;}
._2_c00159{width:1.278009px;}
._4_c00159{width:2.501937px;}
._1_c00159{width:3.599988px;}
._7_c00159{width:5.100000px;}
._8_c00159{width:6.120000px;}
._a_c00159{width:7.155396px;}
._9_c00159{width:8.525973px;}
._14_c00159{width:9.660414px;}
._b_c00159{width:10.698063px;}
._d_c00159{width:11.849901px;}
._c_c00159{width:13.470099px;}
._18_c00159{width:14.589009px;}
._16_c00159{width:16.025853px;}
._f_c00159{width:17.316138px;}
._e_c00159{width:19.571964px;}
._10_c00159{width:21.767964px;}
._1a_c00159{width:22.899054px;}
._1b_c00159{width:24.399012px;}
._17_c00159{width:25.899024px;}
._19_c00159{width:27.432186px;}
.fc1_c00159{color:transparent;}
.fc0_c00159{color:rgb(35,31,32);}
.fs0_c00159{font-size:51.000000px;}
.fs1_c00159{font-size:60.000000px;}
.y0_c00159{bottom:0.000000px;}
.y2c_c00159{bottom:64.425022px;}
.y2b_c00159{bottom:110.175022px;}
.y2a_c00159{bottom:125.325022px;}
.y29_c00159{bottom:141.150022px;}
.y28_c00159{bottom:156.225022px;}
.y27_c00159{bottom:171.750022px;}
.y26_c00159{bottom:186.525022px;}
.y25_c00159{bottom:202.350022px;}
.y24_c00159{bottom:217.425022px;}
.y23_c00159{bottom:232.950022px;}
.y22_c00159{bottom:248.025022px;}
.y21_c00159{bottom:263.175022px;}
.y20_c00159{bottom:278.325022px;}
.y1f_c00159{bottom:293.775022px;}
.y1e_c00159{bottom:308.925022px;}
.y1d_c00159{bottom:324.750022px;}
.y1c_c00159{bottom:339.825022px;}
.y1b_c00159{bottom:355.350022px;}
.y1a_c00159{bottom:370.125022px;}
.y19_c00159{bottom:385.950022px;}
.y18_c00159{bottom:400.875022px;}
.y17_c00159{bottom:416.475022px;}
.y16_c00159{bottom:431.625022px;}
.y15_c00159{bottom:446.775022px;}
.y14_c00159{bottom:495.375022px;}
.y13_c00159{bottom:514.800022px;}
.y12_c00159{bottom:534.225022px;}
.y11_c00159{bottom:553.725022px;}
.y10_c00159{bottom:573.000022px;}
.yf_c00159{bottom:592.500022px;}
.ye_c00159{bottom:612.000022px;}
.yd_c00159{bottom:631.500022px;}
.yc_c00159{bottom:650.925022px;}
.yb_c00159{bottom:670.350022px;}
.ya_c00159{bottom:689.775022px;}
.y9_c00159{bottom:709.200022px;}
.y8_c00159{bottom:728.625022px;}
.y7_c00159{bottom:748.125022px;}
.y6_c00159{bottom:767.175022px;}
.y5_c00159{bottom:786.225022px;}
.y4_c00159{bottom:806.100022px;}
.y3_c00159{bottom:825.525022px;}
.y2_c00159{bottom:844.950022px;}
.y1_c00159{bottom:886.725022px;}
.h2_c00159{height:50.028809px;}
.h4_c00159{height:50.053711px;}
.h3_c00159{height:58.886719px;}
.h1_c00159{height:957.750000px;}
.h0_c00159{height:957.975000px;}
.w0_c00159{width:641.850030px;}
.w1_c00159{width:642.000000px;}
.x0_c00159{left:0.000000px;}
.x2_c00159{left:80.625000px;}
.x3_c00159{left:86.400000px;}
.x4_c00159{left:113.775000px;}
.x1_c00159{left:289.050000px;}
.x5_c00159{left:532.050000px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls0_c00159{letter-spacing:0.000000pt;}
.ws1_c00159{word-spacing:-13.333333pt;}
.ws0_c00159{word-spacing:-11.333333pt;}
.ws2_c00159{word-spacing:0.000000pt;}
._6_c00159{margin-left:-9.487992pt;}
._5_c00159{margin-left:-8.112008pt;}
._11_c00159{margin-left:-6.869376pt;}
._13_c00159{margin-left:-5.749371pt;}
._15_c00159{margin-left:-4.543781pt;}
._12_c00159{margin-left:-3.621485pt;}
._3_c00159{margin-left:-2.592069pt;}
._0_c00159{margin-left:-1.229349pt;}
._2_c00159{width:1.136008pt;}
._4_c00159{width:2.223944pt;}
._1_c00159{width:3.199989pt;}
._7_c00159{width:4.533333pt;}
._8_c00159{width:5.440000pt;}
._a_c00159{width:6.360352pt;}
._9_c00159{width:7.578643pt;}
._14_c00159{width:8.587035pt;}
._b_c00159{width:9.509389pt;}
._d_c00159{width:10.533245pt;}
._c_c00159{width:11.973421pt;}
._18_c00159{width:12.968008pt;}
._16_c00159{width:14.245203pt;}
._f_c00159{width:15.392123pt;}
._e_c00159{width:17.397301pt;}
._10_c00159{width:19.349301pt;}
._1a_c00159{width:20.354715pt;}
._1b_c00159{width:21.688011pt;}
._17_c00159{width:23.021355pt;}
._19_c00159{width:24.384165pt;}
.fs0_c00159{font-size:45.333333pt;}
.fs1_c00159{font-size:53.333333pt;}
.y0_c00159{bottom:0.000000pt;}
.y2c_c00159{bottom:57.266686pt;}
.y2b_c00159{bottom:97.933353pt;}
.y2a_c00159{bottom:111.400020pt;}
.y29_c00159{bottom:125.466686pt;}
.y28_c00159{bottom:138.866686pt;}
.y27_c00159{bottom:152.666686pt;}
.y26_c00159{bottom:165.800020pt;}
.y25_c00159{bottom:179.866686pt;}
.y24_c00159{bottom:193.266686pt;}
.y23_c00159{bottom:207.066686pt;}
.y22_c00159{bottom:220.466686pt;}
.y21_c00159{bottom:233.933353pt;}
.y20_c00159{bottom:247.400020pt;}
.y1f_c00159{bottom:261.133353pt;}
.y1e_c00159{bottom:274.600020pt;}
.y1d_c00159{bottom:288.666686pt;}
.y1c_c00159{bottom:302.066686pt;}
.y1b_c00159{bottom:315.866686pt;}
.y1a_c00159{bottom:329.000020pt;}
.y19_c00159{bottom:343.066686pt;}
.y18_c00159{bottom:356.333353pt;}
.y17_c00159{bottom:370.200020pt;}
.y16_c00159{bottom:383.666686pt;}
.y15_c00159{bottom:397.133353pt;}
.y14_c00159{bottom:440.333353pt;}
.y13_c00159{bottom:457.600020pt;}
.y12_c00159{bottom:474.866686pt;}
.y11_c00159{bottom:492.200020pt;}
.y10_c00159{bottom:509.333353pt;}
.yf_c00159{bottom:526.666686pt;}
.ye_c00159{bottom:544.000020pt;}
.yd_c00159{bottom:561.333353pt;}
.yc_c00159{bottom:578.600020pt;}
.yb_c00159{bottom:595.866686pt;}
.ya_c00159{bottom:613.133353pt;}
.y9_c00159{bottom:630.400020pt;}
.y8_c00159{bottom:647.666686pt;}
.y7_c00159{bottom:665.000020pt;}
.y6_c00159{bottom:681.933353pt;}
.y5_c00159{bottom:698.866686pt;}
.y4_c00159{bottom:716.533353pt;}
.y3_c00159{bottom:733.800020pt;}
.y2_c00159{bottom:751.066686pt;}
.y1_c00159{bottom:788.200020pt;}
.h2_c00159{height:44.470052pt;}
.h4_c00159{height:44.492188pt;}
.h3_c00159{height:52.343750pt;}
.h1_c00159{height:851.333333pt;}
.h0_c00159{height:851.533333pt;}
.w0_c00159{width:570.533360pt;}
.w1_c00159{width:570.666667pt;}
.x0_c00159{left:0.000000pt;}
.x2_c00159{left:71.666667pt;}
.x3_c00159{left:76.800000pt;}
.x4_c00159{left:101.133333pt;}
.x1_c00159{left:256.933333pt;}
.x5_c00159{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c00e0ed6730d9953ee8951e5.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00160;src:url('chunks/assets/font_3792007c10f940fe3d682e09.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00160{letter-spacing:0.000000px;}
.sc__c00160{text-shadow:none;}
.sc0_c00160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00160{-webkit-text-stroke:0px transparent;}
.sc0_c00160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00160{word-spacing:-15.000000px;}
.ws0_c00160{word-spacing:-12.750000px;}
.ws2_c00160{word-spacing:0.000000px;}
._14_c00160{margin-left:-14.769738px;}
._a_c00160{margin-left:-12.288390px;}
._12_c00160{margin-left:-9.900000px;}
._11_c00160{margin-left:-8.508468px;}
._7_c00160{margin-left:-7.173069px;}
._17_c00160{margin-left:-6.050013px;}
._0_c00160{margin-left:-4.917012px;}
._10_c00160{margin-left:-3.213357px;}
._1_c00160{margin-left:-1.650003px;}
._2_c00160{width:1.644039px;}
._3_c00160{width:3.284796px;}
._4_c00160{width:5.184156px;}
._5_c00160{width:6.218460px;}
._18_c00160{width:7.376883px;}
._6_c00160{width:8.387688px;}
._9_c00160{width:9.636156px;}
._8_c00160{width:11.100000px;}
._c_c00160{width:12.407493px;}
._b_c00160{width:13.508739px;}
._1a_c00160{width:15.108324px;}
._15_c00160{width:16.590009px;}
._d_c00160{width:17.820000px;}
._f_c00160{width:19.415766px;}
._e_c00160{width:20.567883px;}
._13_c00160{width:21.689808px;}
._16_c00160{width:23.693841px;}
._19_c00160{width:26.700009px;}
.fc1_c00160{color:transparent;}
.fc0_c00160{color:rgb(35,31,32);}
.fs0_c00160{font-size:51.000000px;}
.fs1_c00160{font-size:60.000000px;}
.y0_c00160{bottom:0.000000px;}
.y26_c00160{bottom:64.425022px;}
.y25_c00160{bottom:110.175022px;}
.y24_c00160{bottom:125.325022px;}
.y23_c00160{bottom:141.150022px;}
.y22_c00160{bottom:155.925022px;}
.y21_c00160{bottom:171.375022px;}
.y20_c00160{bottom:186.525022px;}
.y1f_c00160{bottom:202.350022px;}
.y1e_c00160{bottom:217.425022px;}
.y1d_c00160{bottom:275.400022px;}
.y1c_c00160{bottom:295.200022px;}
.y1b_c00160{bottom:314.625022px;}
.y1a_c00160{bottom:334.125022px;}
.y19_c00160{bottom:353.550022px;}
.y18_c00160{bottom:372.600022px;}
.y17_c00160{bottom:406.800022px;}
.y16_c00160{bottom:456.150022px;}
.y15_c00160{bottom:475.875022px;}
.y14_c00160{bottom:495.375022px;}
.y13_c00160{bottom:514.875022px;}
.y12_c00160{bottom:534.300022px;}
.y11_c00160{bottom:553.725022px;}
.y10_c00160{bottom:573.150022px;}
.yf_c00160{bottom:592.575022px;}
.ye_c00160{bottom:611.625022px;}
.yd_c00160{bottom:631.125022px;}
.yc_c00160{bottom:650.925022px;}
.yb_c00160{bottom:670.350022px;}
.ya_c00160{bottom:689.775022px;}
.y9_c00160{bottom:708.825022px;}
.y8_c00160{bottom:728.325022px;}
.y7_c00160{bottom:748.125022px;}
.y6_c00160{bottom:767.550022px;}
.y5_c00160{bottom:786.600022px;}
.y4_c00160{bottom:806.025022px;}
.y3_c00160{bottom:825.525022px;}
.y2_c00160{bottom:844.950022px;}
.y1_c00160{bottom:886.725022px;}
.h2_c00160{height:50.053711px;}
.h3_c00160{height:58.886719px;}
.h1_c00160{height:957.750000px;}
.h0_c00160{height:957.975000px;}
.w1_c00160{width:643.500000px;}
.w0_c00160{width:643.650000px;}
.x0_c00160{left:0.000000px;}
.x2_c00160{left:90.375000px;}
.x1_c00160{left:91.800000px;}
.x4_c00160{left:96.450000px;}
.x3_c00160{left:107.250000px;}
.x5_c00160{left:123.150000px;}
.x6_c00160{left:124.200000px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls0_c00160{letter-spacing:0.000000pt;}
.ws1_c00160{word-spacing:-13.333333pt;}
.ws0_c00160{word-spacing:-11.333333pt;}
.ws2_c00160{word-spacing:0.000000pt;}
._14_c00160{margin-left:-13.128656pt;}
._a_c00160{margin-left:-10.923013pt;}
._12_c00160{margin-left:-8.800000pt;}
._11_c00160{margin-left:-7.563083pt;}
._7_c00160{margin-left:-6.376061pt;}
._17_c00160{margin-left:-5.377789pt;}
._0_c00160{margin-left:-4.370677pt;}
._10_c00160{margin-left:-2.856317pt;}
._1_c00160{margin-left:-1.466669pt;}
._2_c00160{width:1.461368pt;}
._3_c00160{width:2.919819pt;}
._4_c00160{width:4.608139pt;}
._5_c00160{width:5.527520pt;}
._18_c00160{width:6.557229pt;}
._6_c00160{width:7.455723pt;}
._9_c00160{width:8.565472pt;}
._8_c00160{width:9.866667pt;}
._c_c00160{width:11.028883pt;}
._b_c00160{width:12.007768pt;}
._1a_c00160{width:13.429621pt;}
._15_c00160{width:14.746675pt;}
._d_c00160{width:15.840000pt;}
._f_c00160{width:17.258459pt;}
._e_c00160{width:18.282563pt;}
._13_c00160{width:19.279829pt;}
._16_c00160{width:21.061192pt;}
._19_c00160{width:23.733341pt;}
.fs0_c00160{font-size:45.333333pt;}
.fs1_c00160{font-size:53.333333pt;}
.y0_c00160{bottom:0.000000pt;}
.y26_c00160{bottom:57.266686pt;}
.y25_c00160{bottom:97.933353pt;}
.y24_c00160{bottom:111.400020pt;}
.y23_c00160{bottom:125.466686pt;}
.y22_c00160{bottom:138.600020pt;}
.y21_c00160{bottom:152.333353pt;}
.y20_c00160{bottom:165.800020pt;}
.y1f_c00160{bottom:179.866686pt;}
.y1e_c00160{bottom:193.266686pt;}
.y1d_c00160{bottom:244.800020pt;}
.y1c_c00160{bottom:262.400020pt;}
.y1b_c00160{bottom:279.666686pt;}
.y1a_c00160{bottom:297.000020pt;}
.y19_c00160{bottom:314.266686pt;}
.y18_c00160{bottom:331.200020pt;}
.y17_c00160{bottom:361.600020pt;}
.y16_c00160{bottom:405.466686pt;}
.y15_c00160{bottom:423.000020pt;}
.y14_c00160{bottom:440.333353pt;}
.y13_c00160{bottom:457.666686pt;}
.y12_c00160{bottom:474.933353pt;}
.y11_c00160{bottom:492.200020pt;}
.y10_c00160{bottom:509.466686pt;}
.yf_c00160{bottom:526.733353pt;}
.ye_c00160{bottom:543.666686pt;}
.yd_c00160{bottom:561.000020pt;}
.yc_c00160{bottom:578.600020pt;}
.yb_c00160{bottom:595.866686pt;}
.ya_c00160{bottom:613.133353pt;}
.y9_c00160{bottom:630.066686pt;}
.y8_c00160{bottom:647.400020pt;}
.y7_c00160{bottom:665.000020pt;}
.y6_c00160{bottom:682.266686pt;}
.y5_c00160{bottom:699.200020pt;}
.y4_c00160{bottom:716.466686pt;}
.y3_c00160{bottom:733.800020pt;}
.y2_c00160{bottom:751.066686pt;}
.y1_c00160{bottom:788.200020pt;}
.h2_c00160{height:44.492188pt;}
.h3_c00160{height:52.343750pt;}
.h1_c00160{height:851.333333pt;}
.h0_c00160{height:851.533333pt;}
.w1_c00160{width:572.000000pt;}
.w0_c00160{width:572.133333pt;}
.x0_c00160{left:0.000000pt;}
.x2_c00160{left:80.333333pt;}
.x1_c00160{left:81.600000pt;}
.x4_c00160{left:85.733333pt;}
.x3_c00160{left:95.333333pt;}
.x5_c00160{left:109.466667pt;}
.x6_c00160{left:110.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_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_41d57aa8cd257f3ad60ed69c.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00161;src:url('chunks/assets/font_7fc387d555bc3a05dc449186.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00161{letter-spacing:0.000000px;}
.sc__c00161{text-shadow:none;}
.sc0_c00161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00161{-webkit-text-stroke:0px transparent;}
.sc0_c00161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00161{word-spacing:-15.000000px;}
.ws0_c00161{word-spacing:-12.750000px;}
.ws2_c00161{word-spacing:0.000000px;}
._9_c00161{margin-left:-15.650859px;}
._12_c00161{margin-left:-12.527694px;}
._11_c00161{margin-left:-10.872306px;}
._d_c00161{margin-left:-9.779805px;}
._7_c00161{margin-left:-7.866063px;}
._c_c00161{margin-left:-6.816276px;}
._a_c00161{margin-left:-4.980000px;}
._16_c00161{margin-left:-3.944964px;}
._3_c00161{margin-left:-2.916078px;}
._0_c00161{margin-left:-1.383018px;}
._2_c00161{width:1.278009px;}
._5_c00161{width:2.381991px;}
._1_c00161{width:3.599988px;}
._8_c00161{width:5.502261px;}
._4_c00161{width:7.320000px;}
._6_c00161{width:8.789955px;}
._b_c00161{width:10.866123px;}
._10_c00161{width:12.299850px;}
._f_c00161{width:13.971135px;}
._17_c00161{width:14.993835px;}
._e_c00161{width:16.745973px;}
._14_c00161{width:18.951156px;}
._13_c00161{width:20.409051px;}
._18_c00161{width:24.399012px;}
._15_c00161{width:25.899024px;}
.fc1_c00161{color:transparent;}
.fc0_c00161{color:rgb(35,31,32);}
.fs0_c00161{font-size:51.000000px;}
.fs1_c00161{font-size:60.000000px;}
.y0_c00161{bottom:0.000000px;}
.y24_c00161{bottom:64.425022px;}
.y23_c00161{bottom:110.175022px;}
.y22_c00161{bottom:125.625022px;}
.y21_c00161{bottom:140.775022px;}
.y20_c00161{bottom:156.225022px;}
.y1f_c00161{bottom:171.375022px;}
.y1e_c00161{bottom:186.825022px;}
.y1d_c00161{bottom:201.975022px;}
.y1c_c00161{bottom:217.425022px;}
.y1b_c00161{bottom:232.950022px;}
.y1a_c00161{bottom:247.725022px;}
.y19_c00161{bottom:263.550022px;}
.y18_c00161{bottom:278.325022px;}
.y17_c00161{bottom:293.775022px;}
.y16_c00161{bottom:308.925022px;}
.y15_c00161{bottom:324.375022px;}
.y14_c00161{bottom:339.825022px;}
.y13_c00161{bottom:354.900022px;}
.y12_c00161{bottom:370.425022px;}
.y11_c00161{bottom:385.950022px;}
.y10_c00161{bottom:400.725022px;}
.yf_c00161{bottom:416.550022px;}
.ye_c00161{bottom:555.525022px;}
.yd_c00161{bottom:575.325022px;}
.yc_c00161{bottom:594.375022px;}
.yb_c00161{bottom:614.175022px;}
.ya_c00161{bottom:633.225022px;}
.y9_c00161{bottom:652.725022px;}
.y8_c00161{bottom:672.150022px;}
.y7_c00161{bottom:691.575022px;}
.y6_c00161{bottom:729.750022px;}
.y5_c00161{bottom:786.225022px;}
.y4_c00161{bottom:806.025022px;}
.y3_c00161{bottom:825.150022px;}
.y2_c00161{bottom:844.575022px;}
.y1_c00161{bottom:886.725022px;}
.h2_c00161{height:50.028809px;}
.h4_c00161{height:50.053711px;}
.h3_c00161{height:58.886719px;}
.h1_c00161{height:957.750000px;}
.h0_c00161{height:957.975000px;}
.w0_c00161{width:641.850030px;}
.w1_c00161{width:642.000000px;}
.x0_c00161{left:0.000000px;}
.x3_c00161{left:80.250000px;}
.x2_c00161{left:81.375000px;}
.x4_c00161{left:86.400000px;}
.x5_c00161{left:113.775000px;}
.x1_c00161{left:289.050000px;}
.x6_c00161{left:532.050000px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls0_c00161{letter-spacing:0.000000pt;}
.ws1_c00161{word-spacing:-13.333333pt;}
.ws0_c00161{word-spacing:-11.333333pt;}
.ws2_c00161{word-spacing:0.000000pt;}
._9_c00161{margin-left:-13.911875pt;}
._12_c00161{margin-left:-11.135728pt;}
._11_c00161{margin-left:-9.664272pt;}
._d_c00161{margin-left:-8.693160pt;}
._7_c00161{margin-left:-6.992056pt;}
._c_c00161{margin-left:-6.058912pt;}
._a_c00161{margin-left:-4.426667pt;}
._16_c00161{margin-left:-3.506635pt;}
._3_c00161{margin-left:-2.592069pt;}
._0_c00161{margin-left:-1.229349pt;}
._2_c00161{width:1.136008pt;}
._5_c00161{width:2.117325pt;}
._1_c00161{width:3.199989pt;}
._8_c00161{width:4.890899pt;}
._4_c00161{width:6.506667pt;}
._6_c00161{width:7.813293pt;}
._b_c00161{width:9.658776pt;}
._10_c00161{width:10.933200pt;}
._f_c00161{width:12.418787pt;}
._17_c00161{width:13.327853pt;}
._e_c00161{width:14.885309pt;}
._14_c00161{width:16.845472pt;}
._13_c00161{width:18.141379pt;}
._18_c00161{width:21.688011pt;}
._15_c00161{width:23.021355pt;}
.fs0_c00161{font-size:45.333333pt;}
.fs1_c00161{font-size:53.333333pt;}
.y0_c00161{bottom:0.000000pt;}
.y24_c00161{bottom:57.266686pt;}
.y23_c00161{bottom:97.933353pt;}
.y22_c00161{bottom:111.666686pt;}
.y21_c00161{bottom:125.133353pt;}
.y20_c00161{bottom:138.866686pt;}
.y1f_c00161{bottom:152.333353pt;}
.y1e_c00161{bottom:166.066686pt;}
.y1d_c00161{bottom:179.533353pt;}
.y1c_c00161{bottom:193.266686pt;}
.y1b_c00161{bottom:207.066686pt;}
.y1a_c00161{bottom:220.200020pt;}
.y19_c00161{bottom:234.266686pt;}
.y18_c00161{bottom:247.400020pt;}
.y17_c00161{bottom:261.133353pt;}
.y16_c00161{bottom:274.600020pt;}
.y15_c00161{bottom:288.333353pt;}
.y14_c00161{bottom:302.066686pt;}
.y13_c00161{bottom:315.466686pt;}
.y12_c00161{bottom:329.266686pt;}
.y11_c00161{bottom:343.066686pt;}
.y10_c00161{bottom:356.200020pt;}
.yf_c00161{bottom:370.266686pt;}
.ye_c00161{bottom:493.800020pt;}
.yd_c00161{bottom:511.400020pt;}
.yc_c00161{bottom:528.333353pt;}
.yb_c00161{bottom:545.933353pt;}
.ya_c00161{bottom:562.866686pt;}
.y9_c00161{bottom:580.200020pt;}
.y8_c00161{bottom:597.466686pt;}
.y7_c00161{bottom:614.733353pt;}
.y6_c00161{bottom:648.666686pt;}
.y5_c00161{bottom:698.866686pt;}
.y4_c00161{bottom:716.466686pt;}
.y3_c00161{bottom:733.466686pt;}
.y2_c00161{bottom:750.733353pt;}
.y1_c00161{bottom:788.200020pt;}
.h2_c00161{height:44.470052pt;}
.h4_c00161{height:44.492188pt;}
.h3_c00161{height:52.343750pt;}
.h1_c00161{height:851.333333pt;}
.h0_c00161{height:851.533333pt;}
.w0_c00161{width:570.533360pt;}
.w1_c00161{width:570.666667pt;}
.x0_c00161{left:0.000000pt;}
.x3_c00161{left:71.333333pt;}
.x2_c00161{left:72.333333pt;}
.x4_c00161{left:76.800000pt;}
.x5_c00161{left:101.133333pt;}
.x1_c00161{left:256.933333pt;}
.x6_c00161{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2a0330b37e4d7fa18a7bb293.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00162;src:url('chunks/assets/font_c9065a7f90644adf3d927998.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00162{letter-spacing:0.000000px;}
.sc__c00162{text-shadow:none;}
.sc0_c00162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00162{-webkit-text-stroke:0px transparent;}
.sc0_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00162{word-spacing:-15.000000px;}
.ws0_c00162{word-spacing:-12.750000px;}
.ws2_c00162{word-spacing:0.000000px;}
._2_c00162{margin-left:-12.600000px;}
._6_c00162{margin-left:-10.980000px;}
._1b_c00162{margin-left:-9.620649px;}
._b_c00162{margin-left:-7.500000px;}
._17_c00162{margin-left:-6.123021px;}
._14_c00162{margin-left:-4.917012px;}
._19_c00162{margin-left:-3.900021px;}
._15_c00162{margin-left:-2.526054px;}
._7_c00162{margin-left:-1.200000px;}
._1_c00162{width:1.080000px;}
._0_c00162{width:2.100000px;}
._4_c00162{width:3.300000px;}
._13_c00162{width:5.160000px;}
._18_c00162{width:6.749994px;}
._c_c00162{width:8.100000px;}
._f_c00162{width:9.660000px;}
._e_c00162{width:10.980000px;}
._d_c00162{width:12.600000px;}
._1a_c00162{width:14.189937px;}
._1d_c00162{width:15.363312px;}
._3_c00162{width:16.500000px;}
._1c_c00162{width:17.637000px;}
._5_c00162{width:18.900000px;}
._8_c00162{width:21.000000px;}
._a_c00162{width:22.860000px;}
._9_c00162{width:24.060000px;}
._12_c00162{width:25.680000px;}
._10_c00162{width:27.780000px;}
._11_c00162{width:30.000000px;}
._16_c00162{width:31.728165px;}
.fc1_c00162{color:transparent;}
.fc0_c00162{color:rgb(35,31,32);}
.fs1_c00162{font-size:51.000000px;}
.fs0_c00162{font-size:60.000000px;}
.y0_c00162{bottom:0.000000px;}
.y2f_c00162{bottom:64.800022px;}
.y2e_c00162{bottom:110.550022px;}
.y2d_c00162{bottom:125.325022px;}
.y2c_c00162{bottom:140.775022px;}
.y2b_c00162{bottom:156.225022px;}
.y2a_c00162{bottom:171.750022px;}
.y29_c00162{bottom:186.525022px;}
.y28_c00162{bottom:201.975022px;}
.y27_c00162{bottom:217.125022px;}
.y26_c00162{bottom:232.575022px;}
.y25_c00162{bottom:248.025022px;}
.y24_c00162{bottom:263.100022px;}
.y23_c00162{bottom:278.625022px;}
.y22_c00162{bottom:294.150022px;}
.y21_c00162{bottom:309.225022px;}
.y20_c00162{bottom:324.375022px;}
.y1f_c00162{bottom:339.525022px;}
.y1e_c00162{bottom:354.975022px;}
.y1d_c00162{bottom:370.425022px;}
.y1c_c00162{bottom:385.950022px;}
.y1b_c00162{bottom:400.725022px;}
.y1a_c00162{bottom:416.175022px;}
.y19_c00162{bottom:431.625022px;}
.y18_c00162{bottom:446.775022px;}
.y17_c00162{bottom:462.225022px;}
.y16_c00162{bottom:477.375022px;}
.y15_c00162{bottom:492.825022px;}
.y14_c00162{bottom:507.975022px;}
.y13_c00162{bottom:523.125022px;}
.y12_c00162{bottom:538.950022px;}
.y11_c00162{bottom:553.725022px;}
.y10_c00162{bottom:569.550022px;}
.yf_c00162{bottom:584.325022px;}
.ye_c00162{bottom:599.775022px;}
.yd_c00162{bottom:615.225022px;}
.yc_c00162{bottom:630.375022px;}
.yb_c00162{bottom:645.525022px;}
.ya_c00162{bottom:660.975022px;}
.y9_c00162{bottom:676.125022px;}
.y8_c00162{bottom:691.575022px;}
.y6_c00162{bottom:747.750022px;}
.y5_c00162{bottom:767.475022px;}
.y4_c00162{bottom:786.600022px;}
.y3_c00162{bottom:805.725022px;}
.y2_c00162{bottom:825.150022px;}
.y1_c00162{bottom:844.950022px;}
.y7_c00162{bottom:886.725022px;}
.h3_c00162{height:50.053711px;}
.h2_c00162{height:58.886719px;}
.h1_c00162{height:957.750000px;}
.h0_c00162{height:957.975000px;}
.w1_c00162{width:643.500000px;}
.w0_c00162{width:643.650000px;}
.x0_c00162{left:0.000000px;}
.x1_c00162{left:91.425000px;}
.x3_c00162{left:96.450000px;}
.x2_c00162{left:106.575000px;}
.x4_c00162{left:123.150000px;}
.x5_c00162{left:124.200000px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls0_c00162{letter-spacing:0.000000pt;}
.ws1_c00162{word-spacing:-13.333333pt;}
.ws0_c00162{word-spacing:-11.333333pt;}
.ws2_c00162{word-spacing:0.000000pt;}
._2_c00162{margin-left:-11.200000pt;}
._6_c00162{margin-left:-9.760000pt;}
._1b_c00162{margin-left:-8.551688pt;}
._b_c00162{margin-left:-6.666667pt;}
._17_c00162{margin-left:-5.442685pt;}
._14_c00162{margin-left:-4.370677pt;}
._19_c00162{margin-left:-3.466685pt;}
._15_c00162{margin-left:-2.245381pt;}
._7_c00162{margin-left:-1.066667pt;}
._1_c00162{width:0.960000pt;}
._0_c00162{width:1.866667pt;}
._4_c00162{width:2.933333pt;}
._13_c00162{width:4.586667pt;}
._18_c00162{width:5.999995pt;}
._c_c00162{width:7.200000pt;}
._f_c00162{width:8.586667pt;}
._e_c00162{width:9.760000pt;}
._d_c00162{width:11.200000pt;}
._1a_c00162{width:12.613277pt;}
._1d_c00162{width:13.656277pt;}
._3_c00162{width:14.666667pt;}
._1c_c00162{width:15.677333pt;}
._5_c00162{width:16.800000pt;}
._8_c00162{width:18.666667pt;}
._a_c00162{width:20.320000pt;}
._9_c00162{width:21.386667pt;}
._12_c00162{width:22.826667pt;}
._10_c00162{width:24.693333pt;}
._11_c00162{width:26.666667pt;}
._16_c00162{width:28.202813pt;}
.fs1_c00162{font-size:45.333333pt;}
.fs0_c00162{font-size:53.333333pt;}
.y0_c00162{bottom:0.000000pt;}
.y2f_c00162{bottom:57.600020pt;}
.y2e_c00162{bottom:98.266686pt;}
.y2d_c00162{bottom:111.400020pt;}
.y2c_c00162{bottom:125.133353pt;}
.y2b_c00162{bottom:138.866686pt;}
.y2a_c00162{bottom:152.666686pt;}
.y29_c00162{bottom:165.800020pt;}
.y28_c00162{bottom:179.533353pt;}
.y27_c00162{bottom:193.000020pt;}
.y26_c00162{bottom:206.733353pt;}
.y25_c00162{bottom:220.466686pt;}
.y24_c00162{bottom:233.866686pt;}
.y23_c00162{bottom:247.666686pt;}
.y22_c00162{bottom:261.466686pt;}
.y21_c00162{bottom:274.866686pt;}
.y20_c00162{bottom:288.333353pt;}
.y1f_c00162{bottom:301.800020pt;}
.y1e_c00162{bottom:315.533353pt;}
.y1d_c00162{bottom:329.266686pt;}
.y1c_c00162{bottom:343.066686pt;}
.y1b_c00162{bottom:356.200020pt;}
.y1a_c00162{bottom:369.933353pt;}
.y19_c00162{bottom:383.666686pt;}
.y18_c00162{bottom:397.133353pt;}
.y17_c00162{bottom:410.866686pt;}
.y16_c00162{bottom:424.333353pt;}
.y15_c00162{bottom:438.066686pt;}
.y14_c00162{bottom:451.533353pt;}
.y13_c00162{bottom:465.000020pt;}
.y12_c00162{bottom:479.066686pt;}
.y11_c00162{bottom:492.200020pt;}
.y10_c00162{bottom:506.266686pt;}
.yf_c00162{bottom:519.400020pt;}
.ye_c00162{bottom:533.133353pt;}
.yd_c00162{bottom:546.866686pt;}
.yc_c00162{bottom:560.333353pt;}
.yb_c00162{bottom:573.800020pt;}
.ya_c00162{bottom:587.533353pt;}
.y9_c00162{bottom:601.000020pt;}
.y8_c00162{bottom:614.733353pt;}
.y6_c00162{bottom:664.666686pt;}
.y5_c00162{bottom:682.200020pt;}
.y4_c00162{bottom:699.200020pt;}
.y3_c00162{bottom:716.200020pt;}
.y2_c00162{bottom:733.466686pt;}
.y1_c00162{bottom:751.066686pt;}
.y7_c00162{bottom:788.200020pt;}
.h3_c00162{height:44.492188pt;}
.h2_c00162{height:52.343750pt;}
.h1_c00162{height:851.333333pt;}
.h0_c00162{height:851.533333pt;}
.w1_c00162{width:572.000000pt;}
.w0_c00162{width:572.133333pt;}
.x0_c00162{left:0.000000pt;}
.x1_c00162{left:81.266667pt;}
.x3_c00162{left:85.733333pt;}
.x2_c00162{left:94.733333pt;}
.x4_c00162{left:109.466667pt;}
.x5_c00162{left:110.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_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_0eaf9030ea3dc96cf4931a70.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00163;src:url('chunks/assets/font_c7a84e2641f0fdfa9d65a37e.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00163{letter-spacing:0.000000px;}
.sc__c00163{text-shadow:none;}
.sc0_c00163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00163{-webkit-text-stroke:0px transparent;}
.sc0_c00163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00163{word-spacing:-15.000000px;}
.ws0_c00163{word-spacing:-12.750000px;}
.ws2_c00163{word-spacing:0.000000px;}
._13_c00163{margin-left:-16.524531px;}
._14_c00163{margin-left:-14.775264px;}
._f_c00163{margin-left:-12.300000px;}
._e_c00163{margin-left:-11.093883px;}
._19_c00163{margin-left:-9.810177px;}
._d_c00163{margin-left:-8.700000px;}
._17_c00163{margin-left:-6.843084px;}
._8_c00163{margin-left:-5.279604px;}
._1c_c00163{margin-left:-4.160319px;}
._3_c00163{margin-left:-2.916078px;}
._0_c00163{margin-left:-1.383018px;}
._2_c00163{width:1.278009px;}
._b_c00163{width:2.477943px;}
._1_c00163{width:3.599988px;}
._18_c00163{width:5.003829px;}
._12_c00163{width:6.183018px;}
._10_c00163{width:8.100000px;}
._11_c00163{width:9.420000px;}
._c_c00163{width:11.352156px;}
._16_c00163{width:12.522327px;}
._15_c00163{width:13.911384px;}
._a_c00163{width:16.277583px;}
._7_c00163{width:18.138009px;}
._9_c00163{width:19.500000px;}
._4_c00163{width:20.909955px;}
._5_c00163{width:22.229955px;}
._6_c00163{width:23.856078px;}
._1b_c00163{width:26.207889px;}
._1a_c00163{width:27.209976px;}
._1d_c00163{width:28.965144px;}
.fc1_c00163{color:transparent;}
.fc0_c00163{color:rgb(35,31,32);}
.fs0_c00163{font-size:51.000000px;}
.fs1_c00163{font-size:60.000000px;}
.y0_c00163{bottom:0.000000px;}
.y2c_c00163{bottom:64.425022px;}
.y2b_c00163{bottom:110.175022px;}
.y2a_c00163{bottom:125.325022px;}
.y29_c00163{bottom:141.150022px;}
.y28_c00163{bottom:156.225022px;}
.y27_c00163{bottom:171.375022px;}
.y26_c00163{bottom:186.525022px;}
.y25_c00163{bottom:201.975022px;}
.y24_c00163{bottom:217.125022px;}
.y23_c00163{bottom:232.950022px;}
.y22_c00163{bottom:247.725022px;}
.y21_c00163{bottom:263.175022px;}
.y20_c00163{bottom:278.325022px;}
.y1f_c00163{bottom:293.775022px;}
.y1e_c00163{bottom:308.925022px;}
.y1d_c00163{bottom:324.375022px;}
.y1c_c00163{bottom:339.825022px;}
.y1b_c00163{bottom:355.350022px;}
.y1a_c00163{bottom:370.125022px;}
.y19_c00163{bottom:385.575022px;}
.y18_c00163{bottom:401.025022px;}
.y17_c00163{bottom:416.550022px;}
.y16_c00163{bottom:431.625022px;}
.y15_c00163{bottom:446.775022px;}
.y14_c00163{bottom:461.925022px;}
.y13_c00163{bottom:514.425022px;}
.y12_c00163{bottom:533.925022px;}
.y11_c00163{bottom:553.725022px;}
.y10_c00163{bottom:573.150022px;}
.yf_c00163{bottom:592.575022px;}
.ye_c00163{bottom:612.000022px;}
.yd_c00163{bottom:631.425022px;}
.yc_c00163{bottom:650.550022px;}
.yb_c00163{bottom:669.975022px;}
.ya_c00163{bottom:689.775022px;}
.y9_c00163{bottom:709.200022px;}
.y8_c00163{bottom:728.325022px;}
.y7_c00163{bottom:747.750022px;}
.y6_c00163{bottom:767.175022px;}
.y5_c00163{bottom:786.600022px;}
.y4_c00163{bottom:805.725022px;}
.y3_c00163{bottom:825.150022px;}
.y2_c00163{bottom:844.575022px;}
.y1_c00163{bottom:886.725022px;}
.h2_c00163{height:50.028809px;}
.h4_c00163{height:50.053711px;}
.h3_c00163{height:58.886719px;}
.h1_c00163{height:957.750000px;}
.h0_c00163{height:957.975000px;}
.w0_c00163{width:641.850030px;}
.w1_c00163{width:642.000000px;}
.x0_c00163{left:0.000000px;}
.x2_c00163{left:81.000000px;}
.x5_c00163{left:86.400000px;}
.x3_c00163{left:97.200000px;}
.x4_c00163{left:114.150000px;}
.x1_c00163{left:289.050000px;}
.x6_c00163{left:532.050000px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls0_c00163{letter-spacing:0.000000pt;}
.ws1_c00163{word-spacing:-13.333333pt;}
.ws0_c00163{word-spacing:-11.333333pt;}
.ws2_c00163{word-spacing:0.000000pt;}
._13_c00163{margin-left:-14.688472pt;}
._14_c00163{margin-left:-13.133568pt;}
._f_c00163{margin-left:-10.933333pt;}
._e_c00163{margin-left:-9.861229pt;}
._19_c00163{margin-left:-8.720157pt;}
._d_c00163{margin-left:-7.733333pt;}
._17_c00163{margin-left:-6.082741pt;}
._8_c00163{margin-left:-4.692981pt;}
._1c_c00163{margin-left:-3.698061pt;}
._3_c00163{margin-left:-2.592069pt;}
._0_c00163{margin-left:-1.229349pt;}
._2_c00163{width:1.136008pt;}
._b_c00163{width:2.202616pt;}
._1_c00163{width:3.199989pt;}
._18_c00163{width:4.447848pt;}
._12_c00163{width:5.496016pt;}
._10_c00163{width:7.200000pt;}
._11_c00163{width:8.373333pt;}
._c_c00163{width:10.090805pt;}
._16_c00163{width:11.130957pt;}
._15_c00163{width:12.365675pt;}
._a_c00163{width:14.468963pt;}
._7_c00163{width:16.122675pt;}
._9_c00163{width:17.333333pt;}
._4_c00163{width:18.586627pt;}
._5_c00163{width:19.759960pt;}
._6_c00163{width:21.205403pt;}
._1b_c00163{width:23.295901pt;}
._1a_c00163{width:24.186645pt;}
._1d_c00163{width:25.746795pt;}
.fs0_c00163{font-size:45.333333pt;}
.fs1_c00163{font-size:53.333333pt;}
.y0_c00163{bottom:0.000000pt;}
.y2c_c00163{bottom:57.266686pt;}
.y2b_c00163{bottom:97.933353pt;}
.y2a_c00163{bottom:111.400020pt;}
.y29_c00163{bottom:125.466686pt;}
.y28_c00163{bottom:138.866686pt;}
.y27_c00163{bottom:152.333353pt;}
.y26_c00163{bottom:165.800020pt;}
.y25_c00163{bottom:179.533353pt;}
.y24_c00163{bottom:193.000020pt;}
.y23_c00163{bottom:207.066686pt;}
.y22_c00163{bottom:220.200020pt;}
.y21_c00163{bottom:233.933353pt;}
.y20_c00163{bottom:247.400020pt;}
.y1f_c00163{bottom:261.133353pt;}
.y1e_c00163{bottom:274.600020pt;}
.y1d_c00163{bottom:288.333353pt;}
.y1c_c00163{bottom:302.066686pt;}
.y1b_c00163{bottom:315.866686pt;}
.y1a_c00163{bottom:329.000020pt;}
.y19_c00163{bottom:342.733353pt;}
.y18_c00163{bottom:356.466686pt;}
.y17_c00163{bottom:370.266686pt;}
.y16_c00163{bottom:383.666686pt;}
.y15_c00163{bottom:397.133353pt;}
.y14_c00163{bottom:410.600020pt;}
.y13_c00163{bottom:457.266686pt;}
.y12_c00163{bottom:474.600020pt;}
.y11_c00163{bottom:492.200020pt;}
.y10_c00163{bottom:509.466686pt;}
.yf_c00163{bottom:526.733353pt;}
.ye_c00163{bottom:544.000020pt;}
.yd_c00163{bottom:561.266686pt;}
.yc_c00163{bottom:578.266686pt;}
.yb_c00163{bottom:595.533353pt;}
.ya_c00163{bottom:613.133353pt;}
.y9_c00163{bottom:630.400020pt;}
.y8_c00163{bottom:647.400020pt;}
.y7_c00163{bottom:664.666686pt;}
.y6_c00163{bottom:681.933353pt;}
.y5_c00163{bottom:699.200020pt;}
.y4_c00163{bottom:716.200020pt;}
.y3_c00163{bottom:733.466686pt;}
.y2_c00163{bottom:750.733353pt;}
.y1_c00163{bottom:788.200020pt;}
.h2_c00163{height:44.470052pt;}
.h4_c00163{height:44.492188pt;}
.h3_c00163{height:52.343750pt;}
.h1_c00163{height:851.333333pt;}
.h0_c00163{height:851.533333pt;}
.w0_c00163{width:570.533360pt;}
.w1_c00163{width:570.666667pt;}
.x0_c00163{left:0.000000pt;}
.x2_c00163{left:72.000000pt;}
.x5_c00163{left:76.800000pt;}
.x3_c00163{left:86.400000pt;}
.x4_c00163{left:101.466667pt;}
.x1_c00163{left:256.933333pt;}
.x6_c00163{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2c1dfc227f4b11fc7535468b.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00164;src:url('chunks/assets/font_450e06dbd26e7b7d5bc9c392.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00164{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00164{word-spacing:-15.000000px;}
.ws0_c00164{word-spacing:-12.750000px;}
.ws2_c00164{word-spacing:0.000000px;}
._11_c00164{margin-left:-15.720000px;}
._12_c00164{margin-left:-11.460000px;}
._8_c00164{margin-left:-10.200000px;}
._7_c00164{margin-left:-9.180000px;}
._c_c00164{margin-left:-7.800000px;}
._f_c00164{margin-left:-6.660000px;}
._1b_c00164{margin-left:-5.442039px;}
._1a_c00164{margin-left:-4.080000px;}
._10_c00164{margin-left:-3.000000px;}
._d_c00164{margin-left:-1.920000px;}
._3_c00164{width:1.200000px;}
._0_c00164{width:2.460000px;}
._5_c00164{width:3.480000px;}
._e_c00164{width:4.920000px;}
._13_c00164{width:6.120000px;}
._17_c00164{width:7.200000px;}
._b_c00164{width:8.220000px;}
._16_c00164{width:9.960000px;}
._15_c00164{width:11.400000px;}
._14_c00164{width:13.740000px;}
._1c_c00164{width:14.937000px;}
._19_c00164{width:16.200000px;}
._1_c00164{width:17.700000px;}
._a_c00164{width:20.160000px;}
._18_c00164{width:21.540000px;}
._9_c00164{width:22.740000px;}
._4_c00164{width:24.720000px;}
._6_c00164{width:26.400000px;}
._2_c00164{width:27.540000px;}
.fc1_c00164{color:transparent;}
.fc0_c00164{color:rgb(35,31,32);}
.fs1_c00164{font-size:51.000000px;}
.fs0_c00164{font-size:60.000000px;}
.y0_c00164{bottom:0.000000px;}
.y2a_c00164{bottom:64.800022px;}
.y29_c00164{bottom:110.175022px;}
.y28_c00164{bottom:125.325022px;}
.y27_c00164{bottom:140.775022px;}
.y26_c00164{bottom:155.925022px;}
.y25_c00164{bottom:171.375022px;}
.y24_c00164{bottom:186.825022px;}
.y23_c00164{bottom:202.350022px;}
.y22_c00164{bottom:217.125022px;}
.y21_c00164{bottom:232.950022px;}
.y20_c00164{bottom:247.725022px;}
.y1f_c00164{bottom:263.175022px;}
.y1e_c00164{bottom:278.325022px;}
.y1d_c00164{bottom:294.150022px;}
.y1c_c00164{bottom:308.925022px;}
.y1b_c00164{bottom:324.375022px;}
.y1a_c00164{bottom:339.525022px;}
.y19_c00164{bottom:355.350022px;}
.y18_c00164{bottom:370.125022px;}
.y17_c00164{bottom:385.575022px;}
.y16_c00164{bottom:400.725022px;}
.y15_c00164{bottom:416.175022px;}
.y14_c00164{bottom:431.325022px;}
.y13_c00164{bottom:447.150022px;}
.y12_c00164{bottom:461.925022px;}
.y11_c00164{bottom:477.375022px;}
.yf_c00164{bottom:572.775022px;}
.ye_c00164{bottom:592.575022px;}
.yd_c00164{bottom:612.000022px;}
.yc_c00164{bottom:631.125022px;}
.yb_c00164{bottom:650.925022px;}
.ya_c00164{bottom:670.350022px;}
.y9_c00164{bottom:689.325022px;}
.y8_c00164{bottom:708.825022px;}
.y7_c00164{bottom:728.325022px;}
.y6_c00164{bottom:748.125022px;}
.y5_c00164{bottom:767.475022px;}
.y4_c00164{bottom:786.600022px;}
.y3_c00164{bottom:805.725022px;}
.y2_c00164{bottom:825.150022px;}
.y1_c00164{bottom:844.575022px;}
.y10_c00164{bottom:886.725022px;}
.h3_c00164{height:50.053711px;}
.h2_c00164{height:58.886719px;}
.h1_c00164{height:957.750000px;}
.h0_c00164{height:957.975000px;}
.w1_c00164{width:643.500000px;}
.w0_c00164{width:643.650000px;}
.x0_c00164{left:0.000000px;}
.x2_c00164{left:90.375000px;}
.x1_c00164{left:91.425000px;}
.x3_c00164{left:96.450000px;}
.x5_c00164{left:123.150000px;}
.x4_c00164{left:124.200000px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls0_c00164{letter-spacing:0.000000pt;}
.ws1_c00164{word-spacing:-13.333333pt;}
.ws0_c00164{word-spacing:-11.333333pt;}
.ws2_c00164{word-spacing:0.000000pt;}
._11_c00164{margin-left:-13.973333pt;}
._12_c00164{margin-left:-10.186667pt;}
._8_c00164{margin-left:-9.066667pt;}
._7_c00164{margin-left:-8.160000pt;}
._c_c00164{margin-left:-6.933333pt;}
._f_c00164{margin-left:-5.920000pt;}
._1b_c00164{margin-left:-4.837368pt;}
._1a_c00164{margin-left:-3.626667pt;}
._10_c00164{margin-left:-2.666667pt;}
._d_c00164{margin-left:-1.706667pt;}
._3_c00164{width:1.066667pt;}
._0_c00164{width:2.186667pt;}
._5_c00164{width:3.093333pt;}
._e_c00164{width:4.373333pt;}
._13_c00164{width:5.440000pt;}
._17_c00164{width:6.400000pt;}
._b_c00164{width:7.306667pt;}
._16_c00164{width:8.853333pt;}
._15_c00164{width:10.133333pt;}
._14_c00164{width:12.213333pt;}
._1c_c00164{width:13.277333pt;}
._19_c00164{width:14.400000pt;}
._1_c00164{width:15.733333pt;}
._a_c00164{width:17.920000pt;}
._18_c00164{width:19.146667pt;}
._9_c00164{width:20.213333pt;}
._4_c00164{width:21.973333pt;}
._6_c00164{width:23.466667pt;}
._2_c00164{width:24.480000pt;}
.fs1_c00164{font-size:45.333333pt;}
.fs0_c00164{font-size:53.333333pt;}
.y0_c00164{bottom:0.000000pt;}
.y2a_c00164{bottom:57.600020pt;}
.y29_c00164{bottom:97.933353pt;}
.y28_c00164{bottom:111.400020pt;}
.y27_c00164{bottom:125.133353pt;}
.y26_c00164{bottom:138.600020pt;}
.y25_c00164{bottom:152.333353pt;}
.y24_c00164{bottom:166.066686pt;}
.y23_c00164{bottom:179.866686pt;}
.y22_c00164{bottom:193.000020pt;}
.y21_c00164{bottom:207.066686pt;}
.y20_c00164{bottom:220.200020pt;}
.y1f_c00164{bottom:233.933353pt;}
.y1e_c00164{bottom:247.400020pt;}
.y1d_c00164{bottom:261.466686pt;}
.y1c_c00164{bottom:274.600020pt;}
.y1b_c00164{bottom:288.333353pt;}
.y1a_c00164{bottom:301.800020pt;}
.y19_c00164{bottom:315.866686pt;}
.y18_c00164{bottom:329.000020pt;}
.y17_c00164{bottom:342.733353pt;}
.y16_c00164{bottom:356.200020pt;}
.y15_c00164{bottom:369.933353pt;}
.y14_c00164{bottom:383.400020pt;}
.y13_c00164{bottom:397.466686pt;}
.y12_c00164{bottom:410.600020pt;}
.y11_c00164{bottom:424.333353pt;}
.yf_c00164{bottom:509.133353pt;}
.ye_c00164{bottom:526.733353pt;}
.yd_c00164{bottom:544.000020pt;}
.yc_c00164{bottom:561.000020pt;}
.yb_c00164{bottom:578.600020pt;}
.ya_c00164{bottom:595.866686pt;}
.y9_c00164{bottom:612.733353pt;}
.y8_c00164{bottom:630.066686pt;}
.y7_c00164{bottom:647.400020pt;}
.y6_c00164{bottom:665.000020pt;}
.y5_c00164{bottom:682.200020pt;}
.y4_c00164{bottom:699.200020pt;}
.y3_c00164{bottom:716.200020pt;}
.y2_c00164{bottom:733.466686pt;}
.y1_c00164{bottom:750.733353pt;}
.y10_c00164{bottom:788.200020pt;}
.h3_c00164{height:44.492188pt;}
.h2_c00164{height:52.343750pt;}
.h1_c00164{height:851.333333pt;}
.h0_c00164{height:851.533333pt;}
.w1_c00164{width:572.000000pt;}
.w0_c00164{width:572.133333pt;}
.x0_c00164{left:0.000000pt;}
.x2_c00164{left:80.333333pt;}
.x1_c00164{left:81.266667pt;}
.x3_c00164{left:85.733333pt;}
.x5_c00164{left:109.466667pt;}
.x4_c00164{left:110.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_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_a57c7386772dbfbf7c71c46e.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00165;src:url('chunks/assets/font_155ae60b854d6dc3335c4877.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00165{letter-spacing:0.000000px;}
.sc__c00165{text-shadow:none;}
.sc0_c00165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00165{-webkit-text-stroke:0px transparent;}
.sc0_c00165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00165{word-spacing:-15.000000px;}
.ws0_c00165{word-spacing:-12.750000px;}
.ws2_c00165{word-spacing:0.000000px;}
._f_c00165{margin-left:-12.900000px;}
._16_c00165{margin-left:-11.739402px;}
._6_c00165{margin-left:-10.566063px;}
._8_c00165{margin-left:-9.276246px;}
._d_c00165{margin-left:-7.812036px;}
._18_c00165{margin-left:-6.771015px;}
._13_c00165{margin-left:-5.718561px;}
._e_c00165{margin-left:-4.537050px;}
._3_c00165{margin-left:-2.916078px;}
._0_c00165{margin-left:-1.383018px;}
._2_c00165{width:1.278009px;}
._7_c00165{width:2.586291px;}
._1_c00165{width:3.599988px;}
._c_c00165{width:4.962456px;}
._b_c00165{width:6.099108px;}
._14_c00165{width:7.757322px;}
._a_c00165{width:9.623994px;}
._11_c00165{width:11.285325px;}
._9_c00165{width:12.724224px;}
._10_c00165{width:13.901661px;}
._17_c00165{width:15.457245px;}
._4_c00165{width:16.607976px;}
._5_c00165{width:18.071946px;}
._1c_c00165{width:19.307613px;}
._1b_c00165{width:20.904255px;}
._19_c00165{width:22.899054px;}
._12_c00165{width:24.516057px;}
._15_c00165{width:25.899024px;}
._1d_c00165{width:27.432186px;}
._1a_c00165{width:28.599054px;}
.fc1_c00165{color:transparent;}
.fc0_c00165{color:rgb(35,31,32);}
.fs0_c00165{font-size:51.000000px;}
.fs1_c00165{font-size:60.000000px;}
.y0_c00165{bottom:0.000000px;}
.y2f_c00165{bottom:64.425022px;}
.y2e_c00165{bottom:110.175022px;}
.y2d_c00165{bottom:125.625022px;}
.y2c_c00165{bottom:140.775022px;}
.y2b_c00165{bottom:156.225022px;}
.y2a_c00165{bottom:171.375022px;}
.y29_c00165{bottom:186.825022px;}
.y28_c00165{bottom:201.975022px;}
.y27_c00165{bottom:217.125022px;}
.y26_c00165{bottom:232.575022px;}
.y25_c00165{bottom:248.025022px;}
.y24_c00165{bottom:263.175022px;}
.y23_c00165{bottom:278.625022px;}
.y22_c00165{bottom:293.775022px;}
.y21_c00165{bottom:308.925022px;}
.y20_c00165{bottom:324.375022px;}
.y1f_c00165{bottom:339.525022px;}
.y1e_c00165{bottom:354.975022px;}
.y1d_c00165{bottom:370.125022px;}
.y1c_c00165{bottom:385.950022px;}
.y1b_c00165{bottom:400.725022px;}
.y1a_c00165{bottom:416.175022px;}
.y19_c00165{bottom:431.625022px;}
.y18_c00165{bottom:446.775022px;}
.y17_c00165{bottom:461.925022px;}
.y16_c00165{bottom:477.375022px;}
.y15_c00165{bottom:492.825022px;}
.y14_c00165{bottom:507.975022px;}
.y13_c00165{bottom:523.125022px;}
.y12_c00165{bottom:538.950022px;}
.y11_c00165{bottom:553.725022px;}
.y10_c00165{bottom:569.175022px;}
.yf_c00165{bottom:584.625022px;}
.ye_c00165{bottom:599.775022px;}
.yd_c00165{bottom:615.225022px;}
.yc_c00165{bottom:630.375022px;}
.yb_c00165{bottom:645.525022px;}
.ya_c00165{bottom:660.975022px;}
.y9_c00165{bottom:709.200022px;}
.y8_c00165{bottom:728.625022px;}
.y7_c00165{bottom:747.750022px;}
.y6_c00165{bottom:767.550022px;}
.y5_c00165{bottom:786.225022px;}
.y4_c00165{bottom:806.025022px;}
.y3_c00165{bottom:825.525022px;}
.y2_c00165{bottom:844.575022px;}
.y1_c00165{bottom:886.725022px;}
.h2_c00165{height:50.028809px;}
.h4_c00165{height:50.053711px;}
.h3_c00165{height:58.886719px;}
.h1_c00165{height:957.750000px;}
.h0_c00165{height:957.975000px;}
.w0_c00165{width:641.850030px;}
.w1_c00165{width:642.000000px;}
.x0_c00165{left:0.000000px;}
.x2_c00165{left:80.625000px;}
.x4_c00165{left:86.400000px;}
.x3_c00165{left:97.200000px;}
.x5_c00165{left:113.400000px;}
.x1_c00165{left:289.050000px;}
.x6_c00165{left:532.050000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls0_c00165{letter-spacing:0.000000pt;}
.ws1_c00165{word-spacing:-13.333333pt;}
.ws0_c00165{word-spacing:-11.333333pt;}
.ws2_c00165{word-spacing:0.000000pt;}
._f_c00165{margin-left:-11.466667pt;}
._16_c00165{margin-left:-10.435024pt;}
._6_c00165{margin-left:-9.392056pt;}
._8_c00165{margin-left:-8.245552pt;}
._d_c00165{margin-left:-6.944032pt;}
._18_c00165{margin-left:-6.018680pt;}
._13_c00165{margin-left:-5.083165pt;}
._e_c00165{margin-left:-4.032933pt;}
._3_c00165{margin-left:-2.592069pt;}
._0_c00165{margin-left:-1.229349pt;}
._2_c00165{width:1.136008pt;}
._7_c00165{width:2.298925pt;}
._1_c00165{width:3.199989pt;}
._c_c00165{width:4.411072pt;}
._b_c00165{width:5.421429pt;}
._14_c00165{width:6.895397pt;}
._a_c00165{width:8.554661pt;}
._11_c00165{width:10.031400pt;}
._9_c00165{width:11.310421pt;}
._10_c00165{width:12.357032pt;}
._17_c00165{width:13.739773pt;}
._4_c00165{width:14.762645pt;}
._5_c00165{width:16.063952pt;}
._1c_c00165{width:17.162323pt;}
._1b_c00165{width:18.581560pt;}
._19_c00165{width:20.354715pt;}
._12_c00165{width:21.792051pt;}
._15_c00165{width:23.021355pt;}
._1d_c00165{width:24.384165pt;}
._1a_c00165{width:25.421381pt;}
.fs0_c00165{font-size:45.333333pt;}
.fs1_c00165{font-size:53.333333pt;}
.y0_c00165{bottom:0.000000pt;}
.y2f_c00165{bottom:57.266686pt;}
.y2e_c00165{bottom:97.933353pt;}
.y2d_c00165{bottom:111.666686pt;}
.y2c_c00165{bottom:125.133353pt;}
.y2b_c00165{bottom:138.866686pt;}
.y2a_c00165{bottom:152.333353pt;}
.y29_c00165{bottom:166.066686pt;}
.y28_c00165{bottom:179.533353pt;}
.y27_c00165{bottom:193.000020pt;}
.y26_c00165{bottom:206.733353pt;}
.y25_c00165{bottom:220.466686pt;}
.y24_c00165{bottom:233.933353pt;}
.y23_c00165{bottom:247.666686pt;}
.y22_c00165{bottom:261.133353pt;}
.y21_c00165{bottom:274.600020pt;}
.y20_c00165{bottom:288.333353pt;}
.y1f_c00165{bottom:301.800020pt;}
.y1e_c00165{bottom:315.533353pt;}
.y1d_c00165{bottom:329.000020pt;}
.y1c_c00165{bottom:343.066686pt;}
.y1b_c00165{bottom:356.200020pt;}
.y1a_c00165{bottom:369.933353pt;}
.y19_c00165{bottom:383.666686pt;}
.y18_c00165{bottom:397.133353pt;}
.y17_c00165{bottom:410.600020pt;}
.y16_c00165{bottom:424.333353pt;}
.y15_c00165{bottom:438.066686pt;}
.y14_c00165{bottom:451.533353pt;}
.y13_c00165{bottom:465.000020pt;}
.y12_c00165{bottom:479.066686pt;}
.y11_c00165{bottom:492.200020pt;}
.y10_c00165{bottom:505.933353pt;}
.yf_c00165{bottom:519.666686pt;}
.ye_c00165{bottom:533.133353pt;}
.yd_c00165{bottom:546.866686pt;}
.yc_c00165{bottom:560.333353pt;}
.yb_c00165{bottom:573.800020pt;}
.ya_c00165{bottom:587.533353pt;}
.y9_c00165{bottom:630.400020pt;}
.y8_c00165{bottom:647.666686pt;}
.y7_c00165{bottom:664.666686pt;}
.y6_c00165{bottom:682.266686pt;}
.y5_c00165{bottom:698.866686pt;}
.y4_c00165{bottom:716.466686pt;}
.y3_c00165{bottom:733.800020pt;}
.y2_c00165{bottom:750.733353pt;}
.y1_c00165{bottom:788.200020pt;}
.h2_c00165{height:44.470052pt;}
.h4_c00165{height:44.492188pt;}
.h3_c00165{height:52.343750pt;}
.h1_c00165{height:851.333333pt;}
.h0_c00165{height:851.533333pt;}
.w0_c00165{width:570.533360pt;}
.w1_c00165{width:570.666667pt;}
.x0_c00165{left:0.000000pt;}
.x2_c00165{left:71.666667pt;}
.x4_c00165{left:76.800000pt;}
.x3_c00165{left:86.400000pt;}
.x5_c00165{left:100.800000pt;}
.x1_c00165{left:256.933333pt;}
.x6_c00165{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_13292a1a14535569c095639c.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00166;src:url('chunks/assets/font_07cdc97e987411e5f05a55cf.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00166{letter-spacing:0.000000px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00166{word-spacing:-15.000000px;}
.ws0_c00166{word-spacing:-12.750000px;}
.ws2_c00166{word-spacing:0.000000px;}
._f_c00166{margin-left:-16.560000px;}
._15_c00166{margin-left:-15.300000px;}
._17_c00166{margin-left:-13.080000px;}
._3_c00166{margin-left:-11.940000px;}
._2_c00166{margin-left:-10.860000px;}
._13_c00166{margin-left:-9.840000px;}
._8_c00166{margin-left:-8.640000px;}
._14_c00166{margin-left:-7.500000px;}
._e_c00166{margin-left:-6.120000px;}
._11_c00166{margin-left:-4.500000px;}
._d_c00166{margin-left:-3.240000px;}
._7_c00166{margin-left:-2.040000px;}
._1b_c00166{margin-left:-1.001994px;}
._1_c00166{width:1.380000px;}
._0_c00166{width:3.000000px;}
._16_c00166{width:4.380000px;}
._10_c00166{width:6.240000px;}
._12_c00166{width:8.340000px;}
._c_c00166{width:10.020000px;}
._19_c00166{width:11.043051px;}
._b_c00166{width:12.060000px;}
._a_c00166{width:13.500000px;}
._1a_c00166{width:14.765994px;}
._9_c00166{width:16.560000px;}
._6_c00166{width:17.940000px;}
._5_c00166{width:20.040000px;}
._4_c00166{width:22.500000px;}
._1c_c00166{width:24.030000px;}
._18_c00166{width:27.029970px;}
.fc1_c00166{color:transparent;}
.fc0_c00166{color:rgb(35,31,32);}
.fs1_c00166{font-size:51.000000px;}
.fs0_c00166{font-size:60.000000px;}
.y0_c00166{bottom:0.000000px;}
.y2d_c00166{bottom:64.425022px;}
.y2c_c00166{bottom:110.550022px;}
.y2b_c00166{bottom:125.325022px;}
.y2a_c00166{bottom:140.775022px;}
.y29_c00166{bottom:155.925022px;}
.y28_c00166{bottom:171.750022px;}
.y27_c00166{bottom:186.525022px;}
.y26_c00166{bottom:201.975022px;}
.y25_c00166{bottom:217.425022px;}
.y24_c00166{bottom:232.950022px;}
.y23_c00166{bottom:247.725022px;}
.y22_c00166{bottom:263.175022px;}
.y21_c00166{bottom:278.325022px;}
.y20_c00166{bottom:293.775022px;}
.y1f_c00166{bottom:308.925022px;}
.y1e_c00166{bottom:324.375022px;}
.y1d_c00166{bottom:339.525022px;}
.y1c_c00166{bottom:354.975022px;}
.y1b_c00166{bottom:370.125022px;}
.y1a_c00166{bottom:385.575022px;}
.y19_c00166{bottom:400.725022px;}
.y18_c00166{bottom:416.175022px;}
.y17_c00166{bottom:431.325022px;}
.y16_c00166{bottom:446.775022px;}
.y15_c00166{bottom:462.225022px;}
.y14_c00166{bottom:477.375022px;}
.y13_c00166{bottom:492.525022px;}
.y12_c00166{bottom:507.975022px;}
.y11_c00166{bottom:523.125022px;}
.y10_c00166{bottom:538.575022px;}
.yf_c00166{bottom:554.025022px;}
.yd_c00166{bottom:612.000022px;}
.yc_c00166{bottom:631.125022px;}
.yb_c00166{bottom:650.925022px;}
.ya_c00166{bottom:670.350022px;}
.y9_c00166{bottom:689.775022px;}
.y8_c00166{bottom:708.825022px;}
.y7_c00166{bottom:728.625022px;}
.y6_c00166{bottom:747.750022px;}
.y5_c00166{bottom:767.175022px;}
.y4_c00166{bottom:786.225022px;}
.y3_c00166{bottom:805.725022px;}
.y2_c00166{bottom:825.150022px;}
.y1_c00166{bottom:844.950022px;}
.ye_c00166{bottom:886.725022px;}
.h3_c00166{height:50.053711px;}
.h2_c00166{height:58.886719px;}
.h1_c00166{height:957.750000px;}
.h0_c00166{height:957.975000px;}
.w1_c00166{width:643.500000px;}
.w0_c00166{width:643.650000px;}
.x0_c00166{left:0.000000px;}
.x1_c00166{left:91.050000px;}
.x5_c00166{left:92.175000px;}
.x3_c00166{left:96.450000px;}
.x2_c00166{left:107.250000px;}
.x4_c00166{left:124.200000px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls0_c00166{letter-spacing:0.000000pt;}
.ws1_c00166{word-spacing:-13.333333pt;}
.ws0_c00166{word-spacing:-11.333333pt;}
.ws2_c00166{word-spacing:0.000000pt;}
._f_c00166{margin-left:-14.720000pt;}
._15_c00166{margin-left:-13.600000pt;}
._17_c00166{margin-left:-11.626667pt;}
._3_c00166{margin-left:-10.613333pt;}
._2_c00166{margin-left:-9.653333pt;}
._13_c00166{margin-left:-8.746667pt;}
._8_c00166{margin-left:-7.680000pt;}
._14_c00166{margin-left:-6.666667pt;}
._e_c00166{margin-left:-5.440000pt;}
._11_c00166{margin-left:-4.000000pt;}
._d_c00166{margin-left:-2.880000pt;}
._7_c00166{margin-left:-1.813333pt;}
._1b_c00166{margin-left:-0.890661pt;}
._1_c00166{width:1.226667pt;}
._0_c00166{width:2.666667pt;}
._16_c00166{width:3.893333pt;}
._10_c00166{width:5.546667pt;}
._12_c00166{width:7.413333pt;}
._c_c00166{width:8.906667pt;}
._19_c00166{width:9.816045pt;}
._b_c00166{width:10.720000pt;}
._a_c00166{width:12.000000pt;}
._1a_c00166{width:13.125328pt;}
._9_c00166{width:14.720000pt;}
._6_c00166{width:15.946667pt;}
._5_c00166{width:17.813333pt;}
._4_c00166{width:20.000000pt;}
._1c_c00166{width:21.360000pt;}
._18_c00166{width:24.026640pt;}
.fs1_c00166{font-size:45.333333pt;}
.fs0_c00166{font-size:53.333333pt;}
.y0_c00166{bottom:0.000000pt;}
.y2d_c00166{bottom:57.266686pt;}
.y2c_c00166{bottom:98.266686pt;}
.y2b_c00166{bottom:111.400020pt;}
.y2a_c00166{bottom:125.133353pt;}
.y29_c00166{bottom:138.600020pt;}
.y28_c00166{bottom:152.666686pt;}
.y27_c00166{bottom:165.800020pt;}
.y26_c00166{bottom:179.533353pt;}
.y25_c00166{bottom:193.266686pt;}
.y24_c00166{bottom:207.066686pt;}
.y23_c00166{bottom:220.200020pt;}
.y22_c00166{bottom:233.933353pt;}
.y21_c00166{bottom:247.400020pt;}
.y20_c00166{bottom:261.133353pt;}
.y1f_c00166{bottom:274.600020pt;}
.y1e_c00166{bottom:288.333353pt;}
.y1d_c00166{bottom:301.800020pt;}
.y1c_c00166{bottom:315.533353pt;}
.y1b_c00166{bottom:329.000020pt;}
.y1a_c00166{bottom:342.733353pt;}
.y19_c00166{bottom:356.200020pt;}
.y18_c00166{bottom:369.933353pt;}
.y17_c00166{bottom:383.400020pt;}
.y16_c00166{bottom:397.133353pt;}
.y15_c00166{bottom:410.866686pt;}
.y14_c00166{bottom:424.333353pt;}
.y13_c00166{bottom:437.800020pt;}
.y12_c00166{bottom:451.533353pt;}
.y11_c00166{bottom:465.000020pt;}
.y10_c00166{bottom:478.733353pt;}
.yf_c00166{bottom:492.466686pt;}
.yd_c00166{bottom:544.000020pt;}
.yc_c00166{bottom:561.000020pt;}
.yb_c00166{bottom:578.600020pt;}
.ya_c00166{bottom:595.866686pt;}
.y9_c00166{bottom:613.133353pt;}
.y8_c00166{bottom:630.066686pt;}
.y7_c00166{bottom:647.666686pt;}
.y6_c00166{bottom:664.666686pt;}
.y5_c00166{bottom:681.933353pt;}
.y4_c00166{bottom:698.866686pt;}
.y3_c00166{bottom:716.200020pt;}
.y2_c00166{bottom:733.466686pt;}
.y1_c00166{bottom:751.066686pt;}
.ye_c00166{bottom:788.200020pt;}
.h3_c00166{height:44.492188pt;}
.h2_c00166{height:52.343750pt;}
.h1_c00166{height:851.333333pt;}
.h0_c00166{height:851.533333pt;}
.w1_c00166{width:572.000000pt;}
.w0_c00166{width:572.133333pt;}
.x0_c00166{left:0.000000pt;}
.x1_c00166{left:80.933333pt;}
.x5_c00166{left:81.933333pt;}
.x3_c00166{left:85.733333pt;}
.x2_c00166{left:95.333333pt;}
.x4_c00166{left:110.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_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_afc3c244d16e9a30e01a9e26.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00167;src:url('chunks/assets/font_e28b59fd1c705657039dc18e.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00167{letter-spacing:0.000000px;}
.ls0_c00167{letter-spacing:14.100000px;}
.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:-15.000000px;}
.ws1_c00167{word-spacing:-12.750000px;}
.ws2_c00167{word-spacing:0.000000px;}
._f_c00167{margin-left:-15.528009px;}
._e_c00167{margin-left:-12.569325px;}
._16_c00167{margin-left:-11.074719px;}
._d_c00167{margin-left:-9.809955px;}
._a_c00167{margin-left:-7.793781px;}
._c_c00167{margin-left:-6.746217px;}
._10_c00167{margin-left:-5.459988px;}
._1a_c00167{margin-left:-4.213089px;}
._3_c00167{margin-left:-2.916078px;}
._0_c00167{margin-left:-1.383018px;}
._2_c00167{width:1.278009px;}
._5_c00167{width:2.393907px;}
._1_c00167{width:3.599988px;}
._17_c00167{width:4.622790px;}
._4_c00167{width:5.795940px;}
._9_c00167{width:7.302177px;}
._7_c00167{width:8.664132px;}
._b_c00167{width:10.545636px;}
._8_c00167{width:11.918766px;}
._6_c00167{width:13.200000px;}
._19_c00167{width:15.253059px;}
._13_c00167{width:16.481343px;}
._11_c00167{width:18.287994px;}
._15_c00167{width:19.841772px;}
._14_c00167{width:21.522114px;}
._12_c00167{width:22.541991px;}
._1b_c00167{width:24.432114px;}
._18_c00167{width:25.899024px;}
.fc2_c00167{color:transparent;}
.fc1_c00167{color:rgb(0,0,0);}
.fc0_c00167{color:rgb(35,31,32);}
.fs0_c00167{font-size:51.000000px;}
.fs1_c00167{font-size:60.000000px;}
.y0_c00167{bottom:0.000000px;}
.y27_c00167{bottom:64.425022px;}
.y26_c00167{bottom:110.550022px;}
.y25_c00167{bottom:125.625022px;}
.y24_c00167{bottom:141.150022px;}
.y23_c00167{bottom:155.925022px;}
.y22_c00167{bottom:171.375022px;}
.y21_c00167{bottom:186.525022px;}
.y20_c00167{bottom:201.975022px;}
.y1f_c00167{bottom:217.125022px;}
.y1e_c00167{bottom:232.575022px;}
.y1d_c00167{bottom:247.725022px;}
.y1c_c00167{bottom:263.550022px;}
.y1b_c00167{bottom:278.625022px;}
.y1a_c00167{bottom:293.775022px;}
.y19_c00167{bottom:308.925022px;}
.y18_c00167{bottom:324.375022px;}
.y17_c00167{bottom:380.925022px;}
.y16_c00167{bottom:399.975022px;}
.y15_c00167{bottom:419.400022px;}
.y14_c00167{bottom:439.200022px;}
.y13_c00167{bottom:458.625022px;}
.y12_c00167{bottom:477.750022px;}
.y11_c00167{bottom:497.175022px;}
.y10_c00167{bottom:516.975022px;}
.yf_c00167{bottom:536.025022px;}
.ye_c00167{bottom:555.825022px;}
.yd_c00167{bottom:574.950022px;}
.yc_c00167{bottom:594.375022px;}
.yb_c00167{bottom:614.175022px;}
.ya_c00167{bottom:651.975022px;}
.y9_c00167{bottom:708.825022px;}
.y8_c00167{bottom:728.625022px;}
.y7_c00167{bottom:747.750022px;}
.y6_c00167{bottom:767.550022px;}
.y5_c00167{bottom:786.600022px;}
.y4_c00167{bottom:806.025022px;}
.y3_c00167{bottom:825.150022px;}
.y2_c00167{bottom:844.950022px;}
.y1_c00167{bottom:886.725022px;}
.h2_c00167{height:50.028809px;}
.h4_c00167{height:50.053711px;}
.h3_c00167{height:58.886719px;}
.h1_c00167{height:957.750000px;}
.h0_c00167{height:957.975000px;}
.w0_c00167{width:641.850030px;}
.w1_c00167{width:642.000000px;}
.x0_c00167{left:0.000000px;}
.x3_c00167{left:80.250000px;}
.x2_c00167{left:81.375000px;}
.x5_c00167{left:86.400000px;}
.x4_c00167{left:97.200000px;}
.x7_c00167{left:113.400000px;}
.x6_c00167{left:114.450000px;}
.x1_c00167{left:289.050000px;}
.x8_c00167{left:532.050000px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls1_c00167{letter-spacing:0.000000pt;}
.ls0_c00167{letter-spacing:12.533333pt;}
.ws0_c00167{word-spacing:-13.333333pt;}
.ws1_c00167{word-spacing:-11.333333pt;}
.ws2_c00167{word-spacing:0.000000pt;}
._f_c00167{margin-left:-13.802675pt;}
._e_c00167{margin-left:-11.172733pt;}
._16_c00167{margin-left:-9.844195pt;}
._d_c00167{margin-left:-8.719960pt;}
._a_c00167{margin-left:-6.927805pt;}
._c_c00167{margin-left:-5.996637pt;}
._10_c00167{margin-left:-4.853323pt;}
._1a_c00167{margin-left:-3.744968pt;}
._3_c00167{margin-left:-2.592069pt;}
._0_c00167{margin-left:-1.229349pt;}
._2_c00167{width:1.136008pt;}
._5_c00167{width:2.127917pt;}
._1_c00167{width:3.199989pt;}
._17_c00167{width:4.109147pt;}
._4_c00167{width:5.151947pt;}
._9_c00167{width:6.490824pt;}
._7_c00167{width:7.701451pt;}
._b_c00167{width:9.373899pt;}
._8_c00167{width:10.594459pt;}
._6_c00167{width:11.733333pt;}
._19_c00167{width:13.558275pt;}
._13_c00167{width:14.650083pt;}
._11_c00167{width:16.255995pt;}
._15_c00167{width:17.637131pt;}
._14_c00167{width:19.130768pt;}
._12_c00167{width:20.037325pt;}
._1b_c00167{width:21.717435pt;}
._18_c00167{width:23.021355pt;}
.fs0_c00167{font-size:45.333333pt;}
.fs1_c00167{font-size:53.333333pt;}
.y0_c00167{bottom:0.000000pt;}
.y27_c00167{bottom:57.266686pt;}
.y26_c00167{bottom:98.266686pt;}
.y25_c00167{bottom:111.666686pt;}
.y24_c00167{bottom:125.466686pt;}
.y23_c00167{bottom:138.600020pt;}
.y22_c00167{bottom:152.333353pt;}
.y21_c00167{bottom:165.800020pt;}
.y20_c00167{bottom:179.533353pt;}
.y1f_c00167{bottom:193.000020pt;}
.y1e_c00167{bottom:206.733353pt;}
.y1d_c00167{bottom:220.200020pt;}
.y1c_c00167{bottom:234.266686pt;}
.y1b_c00167{bottom:247.666686pt;}
.y1a_c00167{bottom:261.133353pt;}
.y19_c00167{bottom:274.600020pt;}
.y18_c00167{bottom:288.333353pt;}
.y17_c00167{bottom:338.600020pt;}
.y16_c00167{bottom:355.533353pt;}
.y15_c00167{bottom:372.800020pt;}
.y14_c00167{bottom:390.400020pt;}
.y13_c00167{bottom:407.666686pt;}
.y12_c00167{bottom:424.666686pt;}
.y11_c00167{bottom:441.933353pt;}
.y10_c00167{bottom:459.533353pt;}
.yf_c00167{bottom:476.466686pt;}
.ye_c00167{bottom:494.066686pt;}
.yd_c00167{bottom:511.066686pt;}
.yc_c00167{bottom:528.333353pt;}
.yb_c00167{bottom:545.933353pt;}
.ya_c00167{bottom:579.533353pt;}
.y9_c00167{bottom:630.066686pt;}
.y8_c00167{bottom:647.666686pt;}
.y7_c00167{bottom:664.666686pt;}
.y6_c00167{bottom:682.266686pt;}
.y5_c00167{bottom:699.200020pt;}
.y4_c00167{bottom:716.466686pt;}
.y3_c00167{bottom:733.466686pt;}
.y2_c00167{bottom:751.066686pt;}
.y1_c00167{bottom:788.200020pt;}
.h2_c00167{height:44.470052pt;}
.h4_c00167{height:44.492188pt;}
.h3_c00167{height:52.343750pt;}
.h1_c00167{height:851.333333pt;}
.h0_c00167{height:851.533333pt;}
.w0_c00167{width:570.533360pt;}
.w1_c00167{width:570.666667pt;}
.x0_c00167{left:0.000000pt;}
.x3_c00167{left:71.333333pt;}
.x2_c00167{left:72.333333pt;}
.x5_c00167{left:76.800000pt;}
.x4_c00167{left:86.400000pt;}
.x7_c00167{left:100.800000pt;}
.x6_c00167{left:101.733333pt;}
.x1_c00167{left:256.933333pt;}
.x8_c00167{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_56282a843a1bb05e771a2e27.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00168;src:url('chunks/assets/font_d2c27af2fd9eb8c67b927b6f.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00168{letter-spacing:0.000000px;}
.ls0_c00168{letter-spacing:12.600000px;}
.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:-15.000000px;}
.ws1_c00168{word-spacing:-12.750000px;}
.ws2_c00168{word-spacing:0.000000px;}
._9_c00168{margin-left:-14.760000px;}
._14_c00168{margin-left:-13.260000px;}
._d_c00168{margin-left:-11.340000px;}
._c_c00168{margin-left:-10.260000px;}
._1b_c00168{margin-left:-9.224919px;}
._7_c00168{margin-left:-8.100000px;}
._a_c00168{margin-left:-6.360000px;}
._b_c00168{margin-left:-5.280000px;}
._12_c00168{margin-left:-3.960000px;}
._8_c00168{margin-left:-2.820000px;}
._4_c00168{margin-left:-1.140000px;}
._0_c00168{width:1.620000px;}
._1_c00168{width:2.640000px;}
._e_c00168{width:4.320000px;}
._f_c00168{width:5.400000px;}
._2_c00168{width:6.600000px;}
._10_c00168{width:8.040000px;}
._11_c00168{width:9.300000px;}
._13_c00168{width:11.220000px;}
._5_c00168{width:12.300000px;}
._3_c00168{width:13.860000px;}
._1a_c00168{width:15.245970px;}
._6_c00168{width:16.500000px;}
._15_c00168{width:18.240000px;}
._18_c00168{width:21.209985px;}
._1c_c00168{width:24.209958px;}
._16_c00168{width:25.710021px;}
._17_c00168{width:26.910000px;}
._19_c00168{width:28.529970px;}
.fc2_c00168{color:transparent;}
.fc1_c00168{color:rgb(0,0,0);}
.fc0_c00168{color:rgb(35,31,32);}
.fs1_c00168{font-size:51.000000px;}
.fs0_c00168{font-size:60.000000px;}
.y0_c00168{bottom:0.000000px;}
.y27_c00168{bottom:64.425022px;}
.y26_c00168{bottom:110.550022px;}
.y25_c00168{bottom:125.625022px;}
.y24_c00168{bottom:141.150022px;}
.y23_c00168{bottom:155.925022px;}
.y22_c00168{bottom:171.750022px;}
.y21_c00168{bottom:186.825022px;}
.y20_c00168{bottom:202.350022px;}
.y1f_c00168{bottom:217.425022px;}
.y1e_c00168{bottom:232.950022px;}
.y1d_c00168{bottom:247.725022px;}
.y1c_c00168{bottom:263.175022px;}
.y1b_c00168{bottom:278.325022px;}
.y1a_c00168{bottom:294.150022px;}
.y19_c00168{bottom:308.925022px;}
.y18_c00168{bottom:324.375022px;}
.y17_c00168{bottom:339.525022px;}
.y16_c00168{bottom:354.975022px;}
.y15_c00168{bottom:370.425022px;}
.y14_c00168{bottom:385.950022px;}
.y13_c00168{bottom:400.725022px;}
.y12_c00168{bottom:416.175022px;}
.y11_c00168{bottom:431.325022px;}
.y10_c00168{bottom:516.600022px;}
.yf_c00168{bottom:536.025022px;}
.ye_c00168{bottom:555.825022px;}
.yd_c00168{bottom:574.950022px;}
.yc_c00168{bottom:594.375022px;}
.yb_c00168{bottom:632.550022px;}
.y9_c00168{bottom:689.400022px;}
.y8_c00168{bottom:709.125022px;}
.y7_c00168{bottom:728.625022px;}
.y6_c00168{bottom:748.125022px;}
.y5_c00168{bottom:767.550022px;}
.y4_c00168{bottom:786.225022px;}
.y3_c00168{bottom:805.725022px;}
.y2_c00168{bottom:825.525022px;}
.y1_c00168{bottom:844.575022px;}
.ya_c00168{bottom:886.725022px;}
.h3_c00168{height:50.053711px;}
.h2_c00168{height:58.886719px;}
.h1_c00168{height:957.750000px;}
.h0_c00168{height:957.975000px;}
.w1_c00168{width:643.500000px;}
.w0_c00168{width:643.650000px;}
.x0_c00168{left:0.000000px;}
.x2_c00168{left:90.375000px;}
.x1_c00168{left:91.425000px;}
.x3_c00168{left:96.450000px;}
.x5_c00168{left:123.150000px;}
.x4_c00168{left:124.200000px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls1_c00168{letter-spacing:0.000000pt;}
.ls0_c00168{letter-spacing:11.200000pt;}
.ws0_c00168{word-spacing:-13.333333pt;}
.ws1_c00168{word-spacing:-11.333333pt;}
.ws2_c00168{word-spacing:0.000000pt;}
._9_c00168{margin-left:-13.120000pt;}
._14_c00168{margin-left:-11.786667pt;}
._d_c00168{margin-left:-10.080000pt;}
._c_c00168{margin-left:-9.120000pt;}
._1b_c00168{margin-left:-8.199928pt;}
._7_c00168{margin-left:-7.200000pt;}
._a_c00168{margin-left:-5.653333pt;}
._b_c00168{margin-left:-4.693333pt;}
._12_c00168{margin-left:-3.520000pt;}
._8_c00168{margin-left:-2.506667pt;}
._4_c00168{margin-left:-1.013333pt;}
._0_c00168{width:1.440000pt;}
._1_c00168{width:2.346667pt;}
._e_c00168{width:3.840000pt;}
._f_c00168{width:4.800000pt;}
._2_c00168{width:5.866667pt;}
._10_c00168{width:7.146667pt;}
._11_c00168{width:8.266667pt;}
._13_c00168{width:9.973333pt;}
._5_c00168{width:10.933333pt;}
._3_c00168{width:12.320000pt;}
._1a_c00168{width:13.551973pt;}
._6_c00168{width:14.666667pt;}
._15_c00168{width:16.213333pt;}
._18_c00168{width:18.853320pt;}
._1c_c00168{width:21.519963pt;}
._16_c00168{width:22.853352pt;}
._17_c00168{width:23.920000pt;}
._19_c00168{width:25.359973pt;}
.fs1_c00168{font-size:45.333333pt;}
.fs0_c00168{font-size:53.333333pt;}
.y0_c00168{bottom:0.000000pt;}
.y27_c00168{bottom:57.266686pt;}
.y26_c00168{bottom:98.266686pt;}
.y25_c00168{bottom:111.666686pt;}
.y24_c00168{bottom:125.466686pt;}
.y23_c00168{bottom:138.600020pt;}
.y22_c00168{bottom:152.666686pt;}
.y21_c00168{bottom:166.066686pt;}
.y20_c00168{bottom:179.866686pt;}
.y1f_c00168{bottom:193.266686pt;}
.y1e_c00168{bottom:207.066686pt;}
.y1d_c00168{bottom:220.200020pt;}
.y1c_c00168{bottom:233.933353pt;}
.y1b_c00168{bottom:247.400020pt;}
.y1a_c00168{bottom:261.466686pt;}
.y19_c00168{bottom:274.600020pt;}
.y18_c00168{bottom:288.333353pt;}
.y17_c00168{bottom:301.800020pt;}
.y16_c00168{bottom:315.533353pt;}
.y15_c00168{bottom:329.266686pt;}
.y14_c00168{bottom:343.066686pt;}
.y13_c00168{bottom:356.200020pt;}
.y12_c00168{bottom:369.933353pt;}
.y11_c00168{bottom:383.400020pt;}
.y10_c00168{bottom:459.200020pt;}
.yf_c00168{bottom:476.466686pt;}
.ye_c00168{bottom:494.066686pt;}
.yd_c00168{bottom:511.066686pt;}
.yc_c00168{bottom:528.333353pt;}
.yb_c00168{bottom:562.266686pt;}
.y9_c00168{bottom:612.800020pt;}
.y8_c00168{bottom:630.333353pt;}
.y7_c00168{bottom:647.666686pt;}
.y6_c00168{bottom:665.000020pt;}
.y5_c00168{bottom:682.266686pt;}
.y4_c00168{bottom:698.866686pt;}
.y3_c00168{bottom:716.200020pt;}
.y2_c00168{bottom:733.800020pt;}
.y1_c00168{bottom:750.733353pt;}
.ya_c00168{bottom:788.200020pt;}
.h3_c00168{height:44.492188pt;}
.h2_c00168{height:52.343750pt;}
.h1_c00168{height:851.333333pt;}
.h0_c00168{height:851.533333pt;}
.w1_c00168{width:572.000000pt;}
.w0_c00168{width:572.133333pt;}
.x0_c00168{left:0.000000pt;}
.x2_c00168{left:80.333333pt;}
.x1_c00168{left:81.266667pt;}
.x3_c00168{left:85.733333pt;}
.x5_c00168{left:109.466667pt;}
.x4_c00168{left:110.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_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_78f3ac5e2a81e669c6c23b1f.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00169;src:url('chunks/assets/font_c809d4405139f751683e464e.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00169{letter-spacing:0.000000px;}
.sc__c00169{text-shadow:none;}
.sc0_c00169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00169{-webkit-text-stroke:0px transparent;}
.sc0_c00169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00169{word-spacing:-15.000000px;}
.ws1_c00169{word-spacing:-12.750000px;}
.ws2_c00169{word-spacing:0.000000px;}
._13_c00169{margin-left:-15.542802px;}
._5_c00169{margin-left:-11.669877px;}
._4_c00169{margin-left:-10.530123px;}
._e_c00169{margin-left:-9.234027px;}
._f_c00169{margin-left:-7.469811px;}
._12_c00169{margin-left:-5.700000px;}
._7_c00169{margin-left:-4.397997px;}
._3_c00169{margin-left:-2.916078px;}
._0_c00169{margin-left:-1.383018px;}
._2_c00169{width:1.278009px;}
._8_c00169{width:2.309997px;}
._1_c00169{width:3.599988px;}
._6_c00169{width:4.937967px;}
._c_c00169{width:5.999910px;}
._a_c00169{width:7.487964px;}
._9_c00169{width:8.543982px;}
._d_c00169{width:10.032018px;}
._10_c00169{width:11.723892px;}
._b_c00169{width:12.887874px;}
._11_c00169{width:13.992312px;}
._19_c00169{width:16.338177px;}
._18_c00169{width:17.849955px;}
._17_c00169{width:19.680000px;}
._14_c00169{width:20.709054px;}
._15_c00169{width:21.809955px;}
._16_c00169{width:22.880901px;}
._1b_c00169{width:24.399012px;}
._1c_c00169{width:25.899024px;}
._1a_c00169{width:27.432186px;}
.fc1_c00169{color:transparent;}
.fc0_c00169{color:rgb(35,31,32);}
.fs0_c00169{font-size:51.000000px;}
.fs1_c00169{font-size:60.000000px;}
.y0_c00169{bottom:0.000000px;}
.y2a_c00169{bottom:64.425022px;}
.y29_c00169{bottom:110.550022px;}
.y28_c00169{bottom:125.325022px;}
.y27_c00169{bottom:140.775022px;}
.y26_c00169{bottom:155.925022px;}
.y25_c00169{bottom:171.375022px;}
.y24_c00169{bottom:186.525022px;}
.y23_c00169{bottom:201.975022px;}
.y22_c00169{bottom:217.125022px;}
.y21_c00169{bottom:232.950022px;}
.y20_c00169{bottom:247.725022px;}
.y1f_c00169{bottom:263.175022px;}
.y1e_c00169{bottom:278.625022px;}
.y1d_c00169{bottom:293.775022px;}
.y1c_c00169{bottom:308.925022px;}
.y1b_c00169{bottom:324.375022px;}
.y1a_c00169{bottom:339.825022px;}
.y19_c00169{bottom:354.975022px;}
.y18_c00169{bottom:370.125022px;}
.y17_c00169{bottom:437.025022px;}
.y16_c00169{bottom:456.150022px;}
.y15_c00169{bottom:475.575022px;}
.y14_c00169{bottom:495.000022px;}
.y13_c00169{bottom:514.425022px;}
.y12_c00169{bottom:534.225022px;}
.y11_c00169{bottom:553.350022px;}
.y10_c00169{bottom:572.775022px;}
.yf_c00169{bottom:592.575022px;}
.ye_c00169{bottom:611.625022px;}
.yd_c00169{bottom:631.125022px;}
.yc_c00169{bottom:650.925022px;}
.yb_c00169{bottom:669.975022px;}
.ya_c00169{bottom:689.775022px;}
.y9_c00169{bottom:708.825022px;}
.y8_c00169{bottom:728.625022px;}
.y7_c00169{bottom:747.750022px;}
.y6_c00169{bottom:767.550022px;}
.y5_c00169{bottom:786.600022px;}
.y4_c00169{bottom:805.725022px;}
.y3_c00169{bottom:825.150022px;}
.y2_c00169{bottom:844.575022px;}
.y1_c00169{bottom:886.725022px;}
.h2_c00169{height:50.028809px;}
.h4_c00169{height:50.053711px;}
.h3_c00169{height:58.886719px;}
.h1_c00169{height:957.750000px;}
.h0_c00169{height:957.975000px;}
.w0_c00169{width:641.850030px;}
.w1_c00169{width:642.000000px;}
.x0_c00169{left:0.000000px;}
.x3_c00169{left:80.250000px;}
.x2_c00169{left:81.375000px;}
.x5_c00169{left:86.400000px;}
.x4_c00169{left:96.825000px;}
.x6_c00169{left:113.400000px;}
.x7_c00169{left:114.450000px;}
.x1_c00169{left:289.050000px;}
.x8_c00169{left:532.050000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls0_c00169{letter-spacing:0.000000pt;}
.ws0_c00169{word-spacing:-13.333333pt;}
.ws1_c00169{word-spacing:-11.333333pt;}
.ws2_c00169{word-spacing:0.000000pt;}
._13_c00169{margin-left:-13.815824pt;}
._5_c00169{margin-left:-10.373224pt;}
._4_c00169{margin-left:-9.360109pt;}
._e_c00169{margin-left:-8.208024pt;}
._f_c00169{margin-left:-6.639832pt;}
._12_c00169{margin-left:-5.066667pt;}
._7_c00169{margin-left:-3.909331pt;}
._3_c00169{margin-left:-2.592069pt;}
._0_c00169{margin-left:-1.229349pt;}
._2_c00169{width:1.136008pt;}
._8_c00169{width:2.053331pt;}
._1_c00169{width:3.199989pt;}
._6_c00169{width:4.389304pt;}
._c_c00169{width:5.333253pt;}
._a_c00169{width:6.655968pt;}
._9_c00169{width:7.594651pt;}
._d_c00169{width:8.917349pt;}
._10_c00169{width:10.421237pt;}
._b_c00169{width:11.455888pt;}
._11_c00169{width:12.437611pt;}
._19_c00169{width:14.522824pt;}
._18_c00169{width:15.866627pt;}
._17_c00169{width:17.493333pt;}
._14_c00169{width:18.408048pt;}
._15_c00169{width:19.386627pt;}
._16_c00169{width:20.338579pt;}
._1b_c00169{width:21.688011pt;}
._1c_c00169{width:23.021355pt;}
._1a_c00169{width:24.384165pt;}
.fs0_c00169{font-size:45.333333pt;}
.fs1_c00169{font-size:53.333333pt;}
.y0_c00169{bottom:0.000000pt;}
.y2a_c00169{bottom:57.266686pt;}
.y29_c00169{bottom:98.266686pt;}
.y28_c00169{bottom:111.400020pt;}
.y27_c00169{bottom:125.133353pt;}
.y26_c00169{bottom:138.600020pt;}
.y25_c00169{bottom:152.333353pt;}
.y24_c00169{bottom:165.800020pt;}
.y23_c00169{bottom:179.533353pt;}
.y22_c00169{bottom:193.000020pt;}
.y21_c00169{bottom:207.066686pt;}
.y20_c00169{bottom:220.200020pt;}
.y1f_c00169{bottom:233.933353pt;}
.y1e_c00169{bottom:247.666686pt;}
.y1d_c00169{bottom:261.133353pt;}
.y1c_c00169{bottom:274.600020pt;}
.y1b_c00169{bottom:288.333353pt;}
.y1a_c00169{bottom:302.066686pt;}
.y19_c00169{bottom:315.533353pt;}
.y18_c00169{bottom:329.000020pt;}
.y17_c00169{bottom:388.466686pt;}
.y16_c00169{bottom:405.466686pt;}
.y15_c00169{bottom:422.733353pt;}
.y14_c00169{bottom:440.000020pt;}
.y13_c00169{bottom:457.266686pt;}
.y12_c00169{bottom:474.866686pt;}
.y11_c00169{bottom:491.866686pt;}
.y10_c00169{bottom:509.133353pt;}
.yf_c00169{bottom:526.733353pt;}
.ye_c00169{bottom:543.666686pt;}
.yd_c00169{bottom:561.000020pt;}
.yc_c00169{bottom:578.600020pt;}
.yb_c00169{bottom:595.533353pt;}
.ya_c00169{bottom:613.133353pt;}
.y9_c00169{bottom:630.066686pt;}
.y8_c00169{bottom:647.666686pt;}
.y7_c00169{bottom:664.666686pt;}
.y6_c00169{bottom:682.266686pt;}
.y5_c00169{bottom:699.200020pt;}
.y4_c00169{bottom:716.200020pt;}
.y3_c00169{bottom:733.466686pt;}
.y2_c00169{bottom:750.733353pt;}
.y1_c00169{bottom:788.200020pt;}
.h2_c00169{height:44.470052pt;}
.h4_c00169{height:44.492188pt;}
.h3_c00169{height:52.343750pt;}
.h1_c00169{height:851.333333pt;}
.h0_c00169{height:851.533333pt;}
.w0_c00169{width:570.533360pt;}
.w1_c00169{width:570.666667pt;}
.x0_c00169{left:0.000000pt;}
.x3_c00169{left:71.333333pt;}
.x2_c00169{left:72.333333pt;}
.x5_c00169{left:76.800000pt;}
.x4_c00169{left:86.066667pt;}
.x6_c00169{left:100.800000pt;}
.x7_c00169{left:101.733333pt;}
.x1_c00169{left:256.933333pt;}
.x8_c00169{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a96b80dd0973e14836191f7c.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00170;src:url('chunks/assets/font_c07d532b022626f639d53d22.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00170{letter-spacing:0.000000px;}
.ls0_c00170{letter-spacing:12.600000px;}
.sc__c00170{text-shadow:none;}
.sc0_c00170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00170{-webkit-text-stroke:0px transparent;}
.sc0_c00170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00170{word-spacing:-15.000000px;}
.ws1_c00170{word-spacing:-12.750000px;}
.ws2_c00170{word-spacing:0.000000px;}
._15_c00170{margin-left:-16.219509px;}
._a_c00170{margin-left:-14.946459px;}
._6_c00170{margin-left:-12.876156px;}
._10_c00170{margin-left:-11.553075px;}
._b_c00170{margin-left:-10.200195px;}
._13_c00170{margin-left:-8.851752px;}
._1a_c00170{margin-left:-7.518567px;}
._9_c00170{margin-left:-6.240012px;}
._0_c00170{margin-left:-4.917012px;}
._f_c00170{margin-left:-3.023802px;}
._1_c00170{margin-left:-1.650003px;}
._2_c00170{width:1.644039px;}
._3_c00170{width:3.284796px;}
._4_c00170{width:5.184156px;}
._e_c00170{width:6.488832px;}
._5_c00170{width:7.619493px;}
._8_c00170{width:9.011922px;}
._7_c00170{width:10.152312px;}
._12_c00170{width:11.230953px;}
._11_c00170{width:12.503265px;}
._14_c00170{width:13.935978px;}
._c_c00170{width:16.290393px;}
._d_c00170{width:17.507883px;}
._1c_c00170{width:20.700009px;}
._1b_c00170{width:22.199994px;}
._17_c00170{width:25.200009px;}
._19_c00170{width:26.699979px;}
._18_c00170{width:27.797625px;}
._16_c00170{width:29.447577px;}
.fc2_c00170{color:transparent;}
.fc1_c00170{color:rgb(0,0,0);}
.fc0_c00170{color:rgb(35,31,32);}
.fs0_c00170{font-size:51.000000px;}
.fs1_c00170{font-size:60.000000px;}
.y0_c00170{bottom:0.000000px;}
.y29_c00170{bottom:64.425022px;}
.y28_c00170{bottom:110.175022px;}
.y27_c00170{bottom:125.325022px;}
.y26_c00170{bottom:140.775022px;}
.y25_c00170{bottom:155.925022px;}
.y24_c00170{bottom:171.375022px;}
.y23_c00170{bottom:186.525022px;}
.y22_c00170{bottom:201.975022px;}
.y21_c00170{bottom:217.125022px;}
.y20_c00170{bottom:232.575022px;}
.y1f_c00170{bottom:247.725022px;}
.y1e_c00170{bottom:263.550022px;}
.y1d_c00170{bottom:278.325022px;}
.y1c_c00170{bottom:293.775022px;}
.y1b_c00170{bottom:309.225022px;}
.y1a_c00170{bottom:324.375022px;}
.y19_c00170{bottom:339.525022px;}
.y18_c00170{bottom:354.975022px;}
.y17_c00170{bottom:370.125022px;}
.y16_c00170{bottom:385.575022px;}
.y15_c00170{bottom:400.725022px;}
.y14_c00170{bottom:416.550022px;}
.y13_c00170{bottom:431.325022px;}
.y12_c00170{bottom:446.775022px;}
.y11_c00170{bottom:491.025022px;}
.y10_c00170{bottom:510.525022px;}
.yf_c00170{bottom:530.025022px;}
.ye_c00170{bottom:549.375022px;}
.yd_c00170{bottom:568.725022px;}
.yc_c00170{bottom:588.225022px;}
.yb_c00170{bottom:607.725022px;}
.ya_c00170{bottom:627.150022px;}
.y9_c00170{bottom:646.950022px;}
.y8_c00170{bottom:666.375022px;}
.y7_c00170{bottom:707.400022px;}
.y6_c00170{bottom:767.175022px;}
.y5_c00170{bottom:786.600022px;}
.y4_c00170{bottom:805.725022px;}
.y3_c00170{bottom:825.150022px;}
.y2_c00170{bottom:844.575022px;}
.y1_c00170{bottom:886.725022px;}
.h2_c00170{height:50.053711px;}
.h3_c00170{height:58.886719px;}
.h1_c00170{height:957.750000px;}
.h0_c00170{height:957.975000px;}
.w1_c00170{width:643.500000px;}
.w0_c00170{width:643.650000px;}
.x0_c00170{left:0.000000px;}
.x2_c00170{left:90.750000px;}
.x1_c00170{left:91.800000px;}
.x3_c00170{left:96.450000px;}
.x4_c00170{left:123.825000px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls1_c00170{letter-spacing:0.000000pt;}
.ls0_c00170{letter-spacing:11.200000pt;}
.ws0_c00170{word-spacing:-13.333333pt;}
.ws1_c00170{word-spacing:-11.333333pt;}
.ws2_c00170{word-spacing:0.000000pt;}
._15_c00170{margin-left:-14.417341pt;}
._a_c00170{margin-left:-13.285741pt;}
._6_c00170{margin-left:-11.445472pt;}
._10_c00170{margin-left:-10.269400pt;}
._b_c00170{margin-left:-9.066840pt;}
._13_c00170{margin-left:-7.868224pt;}
._1a_c00170{margin-left:-6.683171pt;}
._9_c00170{margin-left:-5.546677pt;}
._0_c00170{margin-left:-4.370677pt;}
._f_c00170{margin-left:-2.687824pt;}
._1_c00170{margin-left:-1.466669pt;}
._2_c00170{width:1.461368pt;}
._3_c00170{width:2.919819pt;}
._4_c00170{width:4.608139pt;}
._e_c00170{width:5.767851pt;}
._5_c00170{width:6.772883pt;}
._8_c00170{width:8.010597pt;}
._7_c00170{width:9.024277pt;}
._12_c00170{width:9.983069pt;}
._11_c00170{width:11.114013pt;}
._14_c00170{width:12.387536pt;}
._c_c00170{width:14.480349pt;}
._d_c00170{width:15.562563pt;}
._1c_c00170{width:18.400008pt;}
._1b_c00170{width:19.733328pt;}
._17_c00170{width:22.400008pt;}
._19_c00170{width:23.733315pt;}
._18_c00170{width:24.709000pt;}
._16_c00170{width:26.175624pt;}
.fs0_c00170{font-size:45.333333pt;}
.fs1_c00170{font-size:53.333333pt;}
.y0_c00170{bottom:0.000000pt;}
.y29_c00170{bottom:57.266686pt;}
.y28_c00170{bottom:97.933353pt;}
.y27_c00170{bottom:111.400020pt;}
.y26_c00170{bottom:125.133353pt;}
.y25_c00170{bottom:138.600020pt;}
.y24_c00170{bottom:152.333353pt;}
.y23_c00170{bottom:165.800020pt;}
.y22_c00170{bottom:179.533353pt;}
.y21_c00170{bottom:193.000020pt;}
.y20_c00170{bottom:206.733353pt;}
.y1f_c00170{bottom:220.200020pt;}
.y1e_c00170{bottom:234.266686pt;}
.y1d_c00170{bottom:247.400020pt;}
.y1c_c00170{bottom:261.133353pt;}
.y1b_c00170{bottom:274.866686pt;}
.y1a_c00170{bottom:288.333353pt;}
.y19_c00170{bottom:301.800020pt;}
.y18_c00170{bottom:315.533353pt;}
.y17_c00170{bottom:329.000020pt;}
.y16_c00170{bottom:342.733353pt;}
.y15_c00170{bottom:356.200020pt;}
.y14_c00170{bottom:370.266686pt;}
.y13_c00170{bottom:383.400020pt;}
.y12_c00170{bottom:397.133353pt;}
.y11_c00170{bottom:436.466686pt;}
.y10_c00170{bottom:453.800020pt;}
.yf_c00170{bottom:471.133353pt;}
.ye_c00170{bottom:488.333353pt;}
.yd_c00170{bottom:505.533353pt;}
.yc_c00170{bottom:522.866686pt;}
.yb_c00170{bottom:540.200020pt;}
.ya_c00170{bottom:557.466686pt;}
.y9_c00170{bottom:575.066686pt;}
.y8_c00170{bottom:592.333353pt;}
.y7_c00170{bottom:628.800020pt;}
.y6_c00170{bottom:681.933353pt;}
.y5_c00170{bottom:699.200020pt;}
.y4_c00170{bottom:716.200020pt;}
.y3_c00170{bottom:733.466686pt;}
.y2_c00170{bottom:750.733353pt;}
.y1_c00170{bottom:788.200020pt;}
.h2_c00170{height:44.492188pt;}
.h3_c00170{height:52.343750pt;}
.h1_c00170{height:851.333333pt;}
.h0_c00170{height:851.533333pt;}
.w1_c00170{width:572.000000pt;}
.w0_c00170{width:572.133333pt;}
.x0_c00170{left:0.000000pt;}
.x2_c00170{left:80.666667pt;}
.x1_c00170{left:81.600000pt;}
.x3_c00170{left:85.733333pt;}
.x4_c00170{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eb697d4ae7df0a61b1b2131d.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00171;src:url('chunks/assets/font_ed5680a56f1d5f95e3cf9c80.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.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;}
}
.ws1_c00171{word-spacing:-15.000000px;}
.ws0_c00171{word-spacing:-12.750000px;}
.ws2_c00171{word-spacing:0.000000px;}
._9_c00171{margin-left:-10.710135px;}
._10_c00171{margin-left:-9.581631px;}
._13_c00171{margin-left:-6.745734px;}
._12_c00171{margin-left:-4.553667px;}
._3_c00171{margin-left:-2.916078px;}
._0_c00171{margin-left:-1.383018px;}
._2_c00171{width:1.278009px;}
._8_c00171{width:2.423622px;}
._1_c00171{width:3.599988px;}
._4_c00171{width:5.681901px;}
._6_c00171{width:7.578045px;}
._5_c00171{width:8.964006px;}
._7_c00171{width:10.877883px;}
._d_c00171{width:11.926041px;}
._e_c00171{width:13.599021px;}
._15_c00171{width:14.606937px;}
._14_c00171{width:15.645015px;}
._11_c00171{width:16.673937px;}
._f_c00171{width:18.240000px;}
._b_c00171{width:19.938729px;}
._a_c00171{width:21.305973px;}
._c_c00171{width:22.831035px;}
._16_c00171{width:24.399012px;}
.fc1_c00171{color:transparent;}
.fc0_c00171{color:rgb(35,31,32);}
.fs0_c00171{font-size:51.000000px;}
.fs1_c00171{font-size:60.000000px;}
.y0_c00171{bottom:0.000000px;}
.y25_c00171{bottom:64.425022px;}
.y24_c00171{bottom:110.175022px;}
.y23_c00171{bottom:125.325022px;}
.y22_c00171{bottom:140.775022px;}
.y21_c00171{bottom:155.925022px;}
.y20_c00171{bottom:171.375022px;}
.y1f_c00171{bottom:186.525022px;}
.y1e_c00171{bottom:202.350022px;}
.y1d_c00171{bottom:217.425022px;}
.y1c_c00171{bottom:232.575022px;}
.y1b_c00171{bottom:247.725022px;}
.y1a_c00171{bottom:263.175022px;}
.y19_c00171{bottom:278.625022px;}
.y18_c00171{bottom:293.775022px;}
.y17_c00171{bottom:309.225022px;}
.y16_c00171{bottom:324.375022px;}
.y15_c00171{bottom:339.525022px;}
.y14_c00171{bottom:354.975022px;}
.y13_c00171{bottom:370.425022px;}
.y12_c00171{bottom:385.575022px;}
.y11_c00171{bottom:400.725022px;}
.y10_c00171{bottom:573.150022px;}
.yf_c00171{bottom:592.575022px;}
.ye_c00171{bottom:611.625022px;}
.yd_c00171{bottom:631.425022px;}
.yc_c00171{bottom:650.925022px;}
.yb_c00171{bottom:669.975022px;}
.ya_c00171{bottom:689.400022px;}
.y9_c00171{bottom:708.825022px;}
.y8_c00171{bottom:728.625022px;}
.y7_c00171{bottom:747.750022px;}
.y6_c00171{bottom:767.550022px;}
.y5_c00171{bottom:786.225022px;}
.y4_c00171{bottom:806.025022px;}
.y3_c00171{bottom:825.150022px;}
.y2_c00171{bottom:844.950022px;}
.y1_c00171{bottom:886.725022px;}
.h2_c00171{height:50.028809px;}
.h4_c00171{height:50.053711px;}
.h3_c00171{height:58.886719px;}
.h1_c00171{height:957.750000px;}
.h0_c00171{height:957.975000px;}
.w0_c00171{width:641.850030px;}
.w1_c00171{width:642.000000px;}
.x0_c00171{left:0.000000px;}
.x2_c00171{left:80.250000px;}
.x3_c00171{left:81.375000px;}
.x6_c00171{left:86.400000px;}
.x4_c00171{left:96.825000px;}
.x5_c00171{left:113.775000px;}
.x1_c00171{left:289.050000px;}
.x7_c00171{left:532.050000px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls0_c00171{letter-spacing:0.000000pt;}
.ws1_c00171{word-spacing:-13.333333pt;}
.ws0_c00171{word-spacing:-11.333333pt;}
.ws2_c00171{word-spacing:0.000000pt;}
._9_c00171{margin-left:-9.520120pt;}
._10_c00171{margin-left:-8.517005pt;}
._13_c00171{margin-left:-5.996208pt;}
._12_c00171{margin-left:-4.047704pt;}
._3_c00171{margin-left:-2.592069pt;}
._0_c00171{margin-left:-1.229349pt;}
._2_c00171{width:1.136008pt;}
._8_c00171{width:2.154331pt;}
._1_c00171{width:3.199989pt;}
._4_c00171{width:5.050579pt;}
._6_c00171{width:6.736040pt;}
._5_c00171{width:7.968005pt;}
._7_c00171{width:9.669229pt;}
._d_c00171{width:10.600925pt;}
._e_c00171{width:12.088019pt;}
._15_c00171{width:12.983944pt;}
._14_c00171{width:13.906680pt;}
._11_c00171{width:14.821277pt;}
._f_c00171{width:16.213333pt;}
._b_c00171{width:17.723315pt;}
._a_c00171{width:18.938643pt;}
._c_c00171{width:20.294253pt;}
._16_c00171{width:21.688011pt;}
.fs0_c00171{font-size:45.333333pt;}
.fs1_c00171{font-size:53.333333pt;}
.y0_c00171{bottom:0.000000pt;}
.y25_c00171{bottom:57.266686pt;}
.y24_c00171{bottom:97.933353pt;}
.y23_c00171{bottom:111.400020pt;}
.y22_c00171{bottom:125.133353pt;}
.y21_c00171{bottom:138.600020pt;}
.y20_c00171{bottom:152.333353pt;}
.y1f_c00171{bottom:165.800020pt;}
.y1e_c00171{bottom:179.866686pt;}
.y1d_c00171{bottom:193.266686pt;}
.y1c_c00171{bottom:206.733353pt;}
.y1b_c00171{bottom:220.200020pt;}
.y1a_c00171{bottom:233.933353pt;}
.y19_c00171{bottom:247.666686pt;}
.y18_c00171{bottom:261.133353pt;}
.y17_c00171{bottom:274.866686pt;}
.y16_c00171{bottom:288.333353pt;}
.y15_c00171{bottom:301.800020pt;}
.y14_c00171{bottom:315.533353pt;}
.y13_c00171{bottom:329.266686pt;}
.y12_c00171{bottom:342.733353pt;}
.y11_c00171{bottom:356.200020pt;}
.y10_c00171{bottom:509.466686pt;}
.yf_c00171{bottom:526.733353pt;}
.ye_c00171{bottom:543.666686pt;}
.yd_c00171{bottom:561.266686pt;}
.yc_c00171{bottom:578.600020pt;}
.yb_c00171{bottom:595.533353pt;}
.ya_c00171{bottom:612.800020pt;}
.y9_c00171{bottom:630.066686pt;}
.y8_c00171{bottom:647.666686pt;}
.y7_c00171{bottom:664.666686pt;}
.y6_c00171{bottom:682.266686pt;}
.y5_c00171{bottom:698.866686pt;}
.y4_c00171{bottom:716.466686pt;}
.y3_c00171{bottom:733.466686pt;}
.y2_c00171{bottom:751.066686pt;}
.y1_c00171{bottom:788.200020pt;}
.h2_c00171{height:44.470052pt;}
.h4_c00171{height:44.492188pt;}
.h3_c00171{height:52.343750pt;}
.h1_c00171{height:851.333333pt;}
.h0_c00171{height:851.533333pt;}
.w0_c00171{width:570.533360pt;}
.w1_c00171{width:570.666667pt;}
.x0_c00171{left:0.000000pt;}
.x2_c00171{left:71.333333pt;}
.x3_c00171{left:72.333333pt;}
.x6_c00171{left:76.800000pt;}
.x4_c00171{left:86.066667pt;}
.x5_c00171{left:101.133333pt;}
.x1_c00171{left:256.933333pt;}
.x7_c00171{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_15139799d157af7e9cafff01.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00172;src:url('chunks/assets/font_f6900cb8dced92ab93bb5da7.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls1_c00172{letter-spacing:0.000000px;}
.ls0_c00172{letter-spacing:1.500012px;}
.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;}
}
.ws1_c00172{word-spacing:-15.000000px;}
.ws0_c00172{word-spacing:-12.750000px;}
.ws2_c00172{word-spacing:0.000000px;}
._13_c00172{margin-left:-16.140000px;}
._14_c00172{margin-left:-14.760000px;}
._f_c00172{margin-left:-12.000000px;}
._a_c00172{margin-left:-10.080000px;}
._10_c00172{margin-left:-9.000000px;}
._19_c00172{margin-left:-7.457754px;}
._e_c00172{margin-left:-5.580000px;}
._15_c00172{margin-left:-4.380000px;}
._b_c00172{margin-left:-2.460000px;}
._0_c00172{margin-left:-1.080000px;}
._2_c00172{width:1.140000px;}
._4_c00172{width:3.000000px;}
._3_c00172{width:4.020000px;}
._d_c00172{width:5.340000px;}
._c_c00172{width:6.480000px;}
._11_c00172{width:8.400000px;}
._1_c00172{width:9.420000px;}
._1b_c00172{width:10.599000px;}
._6_c00172{width:11.760000px;}
._9_c00172{width:12.780000px;}
._12_c00172{width:13.860000px;}
._17_c00172{width:15.503847px;}
._7_c00172{width:17.040000px;}
._8_c00172{width:18.180000px;}
._5_c00172{width:19.800000px;}
._16_c00172{width:26.669970px;}
._1a_c00172{width:27.750021px;}
._18_c00172{width:29.129970px;}
.fc1_c00172{color:transparent;}
.fc0_c00172{color:rgb(35,31,32);}
.fs1_c00172{font-size:51.000000px;}
.fs0_c00172{font-size:60.000000px;}
.y0_c00172{bottom:0.000000px;}
.y2a_c00172{bottom:64.800022px;}
.y29_c00172{bottom:110.175022px;}
.y28_c00172{bottom:125.325022px;}
.y27_c00172{bottom:140.775022px;}
.y26_c00172{bottom:155.925022px;}
.y25_c00172{bottom:171.375022px;}
.y24_c00172{bottom:186.525022px;}
.y23_c00172{bottom:202.350022px;}
.y22_c00172{bottom:217.425022px;}
.y21_c00172{bottom:232.575022px;}
.y20_c00172{bottom:247.725022px;}
.y1f_c00172{bottom:263.400022px;}
.y1e_c00172{bottom:278.475022px;}
.y1d_c00172{bottom:293.775022px;}
.y1c_c00172{bottom:308.925022px;}
.y1b_c00172{bottom:324.375022px;}
.y1a_c00172{bottom:339.825022px;}
.y19_c00172{bottom:354.975022px;}
.y18_c00172{bottom:370.125022px;}
.y17_c00172{bottom:385.575022px;}
.y16_c00172{bottom:400.725022px;}
.y15_c00172{bottom:416.550022px;}
.y14_c00172{bottom:431.325022px;}
.y13_c00172{bottom:446.775022px;}
.y12_c00172{bottom:461.925022px;}
.y10_c00172{bottom:534.600022px;}
.yf_c00172{bottom:554.025022px;}
.ye_c00172{bottom:573.825022px;}
.yd_c00172{bottom:593.325022px;}
.yc_c00172{bottom:612.375022px;}
.yb_c00172{bottom:631.800022px;}
.ya_c00172{bottom:651.225022px;}
.y9_c00172{bottom:671.025022px;}
.y8_c00172{bottom:690.525022px;}
.y7_c00172{bottom:709.575022px;}
.y6_c00172{bottom:729.000022px;}
.y5_c00172{bottom:748.425022px;}
.y4_c00172{bottom:767.550022px;}
.y3_c00172{bottom:786.975022px;}
.y2_c00172{bottom:806.400022px;}
.y1_c00172{bottom:844.575022px;}
.y11_c00172{bottom:886.725022px;}
.h3_c00172{height:50.053711px;}
.h2_c00172{height:58.886719px;}
.h1_c00172{height:957.750000px;}
.h0_c00172{height:957.975000px;}
.w1_c00172{width:643.500000px;}
.w0_c00172{width:643.650000px;}
.x0_c00172{left:0.000000px;}
.x2_c00172{left:90.375000px;}
.x1_c00172{left:91.425000px;}
.x3_c00172{left:96.450000px;}
.x4_c00172{left:123.825000px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls1_c00172{letter-spacing:0.000000pt;}
.ls0_c00172{letter-spacing:1.333344pt;}
.ws1_c00172{word-spacing:-13.333333pt;}
.ws0_c00172{word-spacing:-11.333333pt;}
.ws2_c00172{word-spacing:0.000000pt;}
._13_c00172{margin-left:-14.346667pt;}
._14_c00172{margin-left:-13.120000pt;}
._f_c00172{margin-left:-10.666667pt;}
._a_c00172{margin-left:-8.960000pt;}
._10_c00172{margin-left:-8.000000pt;}
._19_c00172{margin-left:-6.629115pt;}
._e_c00172{margin-left:-4.960000pt;}
._15_c00172{margin-left:-3.893333pt;}
._b_c00172{margin-left:-2.186667pt;}
._0_c00172{margin-left:-0.960000pt;}
._2_c00172{width:1.013333pt;}
._4_c00172{width:2.666667pt;}
._3_c00172{width:3.573333pt;}
._d_c00172{width:4.746667pt;}
._c_c00172{width:5.760000pt;}
._11_c00172{width:7.466667pt;}
._1_c00172{width:8.373333pt;}
._1b_c00172{width:9.421333pt;}
._6_c00172{width:10.453333pt;}
._9_c00172{width:11.360000pt;}
._12_c00172{width:12.320000pt;}
._17_c00172{width:13.781197pt;}
._7_c00172{width:15.146667pt;}
._8_c00172{width:16.160000pt;}
._5_c00172{width:17.600000pt;}
._16_c00172{width:23.706640pt;}
._1a_c00172{width:24.666685pt;}
._18_c00172{width:25.893307pt;}
.fs1_c00172{font-size:45.333333pt;}
.fs0_c00172{font-size:53.333333pt;}
.y0_c00172{bottom:0.000000pt;}
.y2a_c00172{bottom:57.600020pt;}
.y29_c00172{bottom:97.933353pt;}
.y28_c00172{bottom:111.400020pt;}
.y27_c00172{bottom:125.133353pt;}
.y26_c00172{bottom:138.600020pt;}
.y25_c00172{bottom:152.333353pt;}
.y24_c00172{bottom:165.800020pt;}
.y23_c00172{bottom:179.866686pt;}
.y22_c00172{bottom:193.266686pt;}
.y21_c00172{bottom:206.733353pt;}
.y20_c00172{bottom:220.200020pt;}
.y1f_c00172{bottom:234.133353pt;}
.y1e_c00172{bottom:247.533353pt;}
.y1d_c00172{bottom:261.133353pt;}
.y1c_c00172{bottom:274.600020pt;}
.y1b_c00172{bottom:288.333353pt;}
.y1a_c00172{bottom:302.066686pt;}
.y19_c00172{bottom:315.533353pt;}
.y18_c00172{bottom:329.000020pt;}
.y17_c00172{bottom:342.733353pt;}
.y16_c00172{bottom:356.200020pt;}
.y15_c00172{bottom:370.266686pt;}
.y14_c00172{bottom:383.400020pt;}
.y13_c00172{bottom:397.133353pt;}
.y12_c00172{bottom:410.600020pt;}
.y10_c00172{bottom:475.200020pt;}
.yf_c00172{bottom:492.466686pt;}
.ye_c00172{bottom:510.066686pt;}
.yd_c00172{bottom:527.400020pt;}
.yc_c00172{bottom:544.333353pt;}
.yb_c00172{bottom:561.600020pt;}
.ya_c00172{bottom:578.866686pt;}
.y9_c00172{bottom:596.466686pt;}
.y8_c00172{bottom:613.800020pt;}
.y7_c00172{bottom:630.733353pt;}
.y6_c00172{bottom:648.000020pt;}
.y5_c00172{bottom:665.266686pt;}
.y4_c00172{bottom:682.266686pt;}
.y3_c00172{bottom:699.533353pt;}
.y2_c00172{bottom:716.800020pt;}
.y1_c00172{bottom:750.733353pt;}
.y11_c00172{bottom:788.200020pt;}
.h3_c00172{height:44.492188pt;}
.h2_c00172{height:52.343750pt;}
.h1_c00172{height:851.333333pt;}
.h0_c00172{height:851.533333pt;}
.w1_c00172{width:572.000000pt;}
.w0_c00172{width:572.133333pt;}
.x0_c00172{left:0.000000pt;}
.x2_c00172{left:80.333333pt;}
.x1_c00172{left:81.266667pt;}
.x3_c00172{left:85.733333pt;}
.x4_c00172{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dc5b81864ecc8a6617187206.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00173;src:url('chunks/assets/font_ea5ac79e7253a1bce73d277d.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00173{letter-spacing:0.000000px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00173{word-spacing:-15.000000px;}
.ws0_c00173{word-spacing:-12.750000px;}
.ws2_c00173{word-spacing:0.000000px;}
._13_c00173{margin-left:-15.764691px;}
._c_c00173{margin-left:-12.180525px;}
._8_c00173{margin-left:-10.686063px;}
._7_c00173{margin-left:-8.912952px;}
._17_c00173{margin-left:-7.646631px;}
._d_c00173{margin-left:-6.300000px;}
._11_c00173{margin-left:-5.207685px;}
._16_c00173{margin-left:-4.046823px;}
._3_c00173{margin-left:-2.916078px;}
._0_c00173{margin-left:-1.383018px;}
._2_c00173{width:1.278009px;}
._5_c00173{width:2.295039px;}
._1_c00173{width:3.599988px;}
._9_c00173{width:5.309922px;}
._6_c00173{width:6.950934px;}
._15_c00173{width:8.027682px;}
._4_c00173{width:9.123018px;}
._14_c00173{width:10.329018px;}
._e_c00173{width:11.441868px;}
._f_c00173{width:12.632973px;}
._1a_c00173{width:14.211336px;}
._19_c00173{width:15.264180px;}
._b_c00173{width:16.580889px;}
._a_c00173{width:18.197949px;}
._10_c00173{width:19.484994px;}
._12_c00173{width:21.737604px;}
._1c_c00173{width:22.899054px;}
._1b_c00173{width:24.399012px;}
._18_c00173{width:25.899024px;}
.fc1_c00173{color:transparent;}
.fc0_c00173{color:rgb(35,31,32);}
.fs0_c00173{font-size:51.000000px;}
.fs1_c00173{font-size:60.000000px;}
.y0_c00173{bottom:0.000000px;}
.y2c_c00173{bottom:64.425022px;}
.y2b_c00173{bottom:110.550022px;}
.y2a_c00173{bottom:125.325022px;}
.y29_c00173{bottom:140.775022px;}
.y28_c00173{bottom:155.925022px;}
.y27_c00173{bottom:171.375022px;}
.y26_c00173{bottom:186.525022px;}
.y25_c00173{bottom:201.975022px;}
.y24_c00173{bottom:217.425022px;}
.y23_c00173{bottom:232.575022px;}
.y22_c00173{bottom:247.725022px;}
.y21_c00173{bottom:263.175022px;}
.y20_c00173{bottom:278.325022px;}
.y1f_c00173{bottom:293.775022px;}
.y1e_c00173{bottom:308.925022px;}
.y1d_c00173{bottom:324.375022px;}
.y1c_c00173{bottom:339.825022px;}
.y1b_c00173{bottom:354.975022px;}
.y1a_c00173{bottom:370.425022px;}
.y19_c00173{bottom:385.575022px;}
.y18_c00173{bottom:401.025022px;}
.y17_c00173{bottom:416.175022px;}
.y16_c00173{bottom:456.150022px;}
.y15_c00173{bottom:475.575022px;}
.y14_c00173{bottom:495.000022px;}
.y13_c00173{bottom:514.800022px;}
.y12_c00173{bottom:533.925022px;}
.y11_c00173{bottom:553.725022px;}
.y10_c00173{bottom:573.150022px;}
.yf_c00173{bottom:592.575022px;}
.ye_c00173{bottom:612.000022px;}
.yd_c00173{bottom:631.425022px;}
.yc_c00173{bottom:650.550022px;}
.yb_c00173{bottom:670.350022px;}
.ya_c00173{bottom:689.400022px;}
.y9_c00173{bottom:708.825022px;}
.y8_c00173{bottom:728.625022px;}
.y7_c00173{bottom:748.125022px;}
.y6_c00173{bottom:767.550022px;}
.y5_c00173{bottom:786.225022px;}
.y4_c00173{bottom:806.025022px;}
.y3_c00173{bottom:825.150022px;}
.y2_c00173{bottom:844.575022px;}
.y1_c00173{bottom:886.725022px;}
.h2_c00173{height:50.028809px;}
.h4_c00173{height:50.053711px;}
.h3_c00173{height:58.886719px;}
.h1_c00173{height:957.750000px;}
.h0_c00173{height:957.975000px;}
.w0_c00173{width:641.850030px;}
.w1_c00173{width:642.000000px;}
.x0_c00173{left:0.000000px;}
.x3_c00173{left:80.250000px;}
.x2_c00173{left:81.375000px;}
.x5_c00173{left:86.400000px;}
.x4_c00173{left:97.200000px;}
.x7_c00173{left:113.025000px;}
.x6_c00173{left:114.450000px;}
.x1_c00173{left:289.050000px;}
.x8_c00173{left:532.050000px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls0_c00173{letter-spacing:0.000000pt;}
.ws1_c00173{word-spacing:-13.333333pt;}
.ws0_c00173{word-spacing:-11.333333pt;}
.ws2_c00173{word-spacing:0.000000pt;}
._13_c00173{margin-left:-14.013059pt;}
._c_c00173{margin-left:-10.827133pt;}
._8_c00173{margin-left:-9.498723pt;}
._7_c00173{margin-left:-7.922624pt;}
._17_c00173{margin-left:-6.797005pt;}
._d_c00173{margin-left:-5.600000pt;}
._11_c00173{margin-left:-4.629053pt;}
._16_c00173{margin-left:-3.597176pt;}
._3_c00173{margin-left:-2.592069pt;}
._0_c00173{margin-left:-1.229349pt;}
._2_c00173{width:1.136008pt;}
._5_c00173{width:2.040035pt;}
._1_c00173{width:3.199989pt;}
._9_c00173{width:4.719931pt;}
._6_c00173{width:6.178608pt;}
._15_c00173{width:7.135717pt;}
._4_c00173{width:8.109349pt;}
._14_c00173{width:9.181349pt;}
._e_c00173{width:10.170549pt;}
._f_c00173{width:11.229309pt;}
._1a_c00173{width:12.632299pt;}
._19_c00173{width:13.568160pt;}
._b_c00173{width:14.738568pt;}
._a_c00173{width:16.175955pt;}
._10_c00173{width:17.319995pt;}
._12_c00173{width:19.322315pt;}
._1c_c00173{width:20.354715pt;}
._1b_c00173{width:21.688011pt;}
._18_c00173{width:23.021355pt;}
.fs0_c00173{font-size:45.333333pt;}
.fs1_c00173{font-size:53.333333pt;}
.y0_c00173{bottom:0.000000pt;}
.y2c_c00173{bottom:57.266686pt;}
.y2b_c00173{bottom:98.266686pt;}
.y2a_c00173{bottom:111.400020pt;}
.y29_c00173{bottom:125.133353pt;}
.y28_c00173{bottom:138.600020pt;}
.y27_c00173{bottom:152.333353pt;}
.y26_c00173{bottom:165.800020pt;}
.y25_c00173{bottom:179.533353pt;}
.y24_c00173{bottom:193.266686pt;}
.y23_c00173{bottom:206.733353pt;}
.y22_c00173{bottom:220.200020pt;}
.y21_c00173{bottom:233.933353pt;}
.y20_c00173{bottom:247.400020pt;}
.y1f_c00173{bottom:261.133353pt;}
.y1e_c00173{bottom:274.600020pt;}
.y1d_c00173{bottom:288.333353pt;}
.y1c_c00173{bottom:302.066686pt;}
.y1b_c00173{bottom:315.533353pt;}
.y1a_c00173{bottom:329.266686pt;}
.y19_c00173{bottom:342.733353pt;}
.y18_c00173{bottom:356.466686pt;}
.y17_c00173{bottom:369.933353pt;}
.y16_c00173{bottom:405.466686pt;}
.y15_c00173{bottom:422.733353pt;}
.y14_c00173{bottom:440.000020pt;}
.y13_c00173{bottom:457.600020pt;}
.y12_c00173{bottom:474.600020pt;}
.y11_c00173{bottom:492.200020pt;}
.y10_c00173{bottom:509.466686pt;}
.yf_c00173{bottom:526.733353pt;}
.ye_c00173{bottom:544.000020pt;}
.yd_c00173{bottom:561.266686pt;}
.yc_c00173{bottom:578.266686pt;}
.yb_c00173{bottom:595.866686pt;}
.ya_c00173{bottom:612.800020pt;}
.y9_c00173{bottom:630.066686pt;}
.y8_c00173{bottom:647.666686pt;}
.y7_c00173{bottom:665.000020pt;}
.y6_c00173{bottom:682.266686pt;}
.y5_c00173{bottom:698.866686pt;}
.y4_c00173{bottom:716.466686pt;}
.y3_c00173{bottom:733.466686pt;}
.y2_c00173{bottom:750.733353pt;}
.y1_c00173{bottom:788.200020pt;}
.h2_c00173{height:44.470052pt;}
.h4_c00173{height:44.492188pt;}
.h3_c00173{height:52.343750pt;}
.h1_c00173{height:851.333333pt;}
.h0_c00173{height:851.533333pt;}
.w0_c00173{width:570.533360pt;}
.w1_c00173{width:570.666667pt;}
.x0_c00173{left:0.000000pt;}
.x3_c00173{left:71.333333pt;}
.x2_c00173{left:72.333333pt;}
.x5_c00173{left:76.800000pt;}
.x4_c00173{left:86.400000pt;}
.x7_c00173{left:100.466667pt;}
.x6_c00173{left:101.733333pt;}
.x1_c00173{left:256.933333pt;}
.x8_c00173{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d7a79cfb4d6cfb9a49a11bdd.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00174;src:url('chunks/assets/font_05ac2e0671f098f6bbe62212.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00174{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.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;}
}
.ws1_c00174{word-spacing:-15.000000px;}
.ws0_c00174{word-spacing:-12.750000px;}
.ws2_c00174{word-spacing:0.000000px;}
._c_c00174{margin-left:-30.000000px;}
._b_c00174{margin-left:-15.000000px;}
._9_c00174{margin-left:-13.389030px;}
._a_c00174{margin-left:-11.810970px;}
._17_c00174{margin-left:-9.840390px;}
._7_c00174{margin-left:-8.136546px;}
._f_c00174{margin-left:-6.182988px;}
._0_c00174{margin-left:-4.917012px;}
._16_c00174{margin-left:-3.402813px;}
._1_c00174{margin-left:-1.650003px;}
._2_c00174{width:1.644039px;}
._3_c00174{width:3.284796px;}
._4_c00174{width:5.184156px;}
._5_c00174{width:6.393090px;}
._14_c00174{width:7.463763px;}
._6_c00174{width:8.531811px;}
._10_c00174{width:9.782784px;}
._12_c00174{width:10.931922px;}
._13_c00174{width:12.758751px;}
._d_c00174{width:13.800000px;}
._8_c00174{width:16.800000px;}
._11_c00174{width:18.437622px;}
._e_c00174{width:19.715976px;}
._15_c00174{width:21.807846px;}
._19_c00174{width:25.199967px;}
._18_c00174{width:26.952777px;}
.fc1_c00174{color:transparent;}
.fc0_c00174{color:rgb(35,31,32);}
.fs0_c00174{font-size:51.000000px;}
.fs1_c00174{font-size:60.000000px;}
.y0_c00174{bottom:0.000000px;}
.y25_c00174{bottom:64.800022px;}
.y24_c00174{bottom:110.175022px;}
.y23_c00174{bottom:125.325022px;}
.y22_c00174{bottom:141.150022px;}
.y21_c00174{bottom:156.225022px;}
.y20_c00174{bottom:171.375022px;}
.y1f_c00174{bottom:186.525022px;}
.y1e_c00174{bottom:201.975022px;}
.y1d_c00174{bottom:217.125022px;}
.y1c_c00174{bottom:232.950022px;}
.y1b_c00174{bottom:247.725022px;}
.y1a_c00174{bottom:303.525022px;}
.y19_c00174{bottom:322.875022px;}
.y18_c00174{bottom:342.000022px;}
.y17_c00174{bottom:361.125022px;}
.y16_c00174{bottom:380.550022px;}
.y15_c00174{bottom:399.975022px;}
.y14_c00174{bottom:419.775022px;}
.y13_c00174{bottom:439.200022px;}
.y12_c00174{bottom:458.625022px;}
.y11_c00174{bottom:478.125022px;}
.y10_c00174{bottom:516.225022px;}
.yf_c00174{bottom:592.200022px;}
.ye_c00174{bottom:611.625022px;}
.yd_c00174{bottom:631.125022px;}
.yc_c00174{bottom:650.925022px;}
.yb_c00174{bottom:670.350022px;}
.ya_c00174{bottom:689.400022px;}
.y9_c00174{bottom:709.275022px;}
.y8_c00174{bottom:728.700022px;}
.y7_c00174{bottom:748.125022px;}
.y6_c00174{bottom:767.550022px;}
.y5_c00174{bottom:786.225022px;}
.y4_c00174{bottom:806.025022px;}
.y3_c00174{bottom:825.525022px;}
.y2_c00174{bottom:844.575022px;}
.y1_c00174{bottom:886.725022px;}
.h2_c00174{height:50.053711px;}
.h3_c00174{height:58.886719px;}
.h1_c00174{height:957.750000px;}
.h0_c00174{height:957.975000px;}
.w1_c00174{width:643.500000px;}
.w0_c00174{width:643.650000px;}
.x0_c00174{left:0.000000px;}
.x2_c00174{left:90.375000px;}
.x1_c00174{left:91.800000px;}
.x3_c00174{left:96.450000px;}
.x4_c00174{left:123.825000px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls0_c00174{letter-spacing:0.000000pt;}
.ws1_c00174{word-spacing:-13.333333pt;}
.ws0_c00174{word-spacing:-11.333333pt;}
.ws2_c00174{word-spacing:0.000000pt;}
._c_c00174{margin-left:-26.666667pt;}
._b_c00174{margin-left:-13.333333pt;}
._9_c00174{margin-left:-11.901360pt;}
._a_c00174{margin-left:-10.498640pt;}
._17_c00174{margin-left:-8.747013pt;}
._7_c00174{margin-left:-7.232485pt;}
._f_c00174{margin-left:-5.495989pt;}
._0_c00174{margin-left:-4.370677pt;}
._16_c00174{margin-left:-3.024723pt;}
._1_c00174{margin-left:-1.466669pt;}
._2_c00174{width:1.461368pt;}
._3_c00174{width:2.919819pt;}
._4_c00174{width:4.608139pt;}
._5_c00174{width:5.682747pt;}
._14_c00174{width:6.634456pt;}
._6_c00174{width:7.583832pt;}
._10_c00174{width:8.695808pt;}
._12_c00174{width:9.717264pt;}
._13_c00174{width:11.341112pt;}
._d_c00174{width:12.266667pt;}
._8_c00174{width:14.933333pt;}
._11_c00174{width:16.388997pt;}
._e_c00174{width:17.525312pt;}
._15_c00174{width:19.384752pt;}
._19_c00174{width:22.399971pt;}
._18_c00174{width:23.958024pt;}
.fs0_c00174{font-size:45.333333pt;}
.fs1_c00174{font-size:53.333333pt;}
.y0_c00174{bottom:0.000000pt;}
.y25_c00174{bottom:57.600020pt;}
.y24_c00174{bottom:97.933353pt;}
.y23_c00174{bottom:111.400020pt;}
.y22_c00174{bottom:125.466686pt;}
.y21_c00174{bottom:138.866686pt;}
.y20_c00174{bottom:152.333353pt;}
.y1f_c00174{bottom:165.800020pt;}
.y1e_c00174{bottom:179.533353pt;}
.y1d_c00174{bottom:193.000020pt;}
.y1c_c00174{bottom:207.066686pt;}
.y1b_c00174{bottom:220.200020pt;}
.y1a_c00174{bottom:269.800020pt;}
.y19_c00174{bottom:287.000020pt;}
.y18_c00174{bottom:304.000020pt;}
.y17_c00174{bottom:321.000020pt;}
.y16_c00174{bottom:338.266686pt;}
.y15_c00174{bottom:355.533353pt;}
.y14_c00174{bottom:373.133353pt;}
.y13_c00174{bottom:390.400020pt;}
.y12_c00174{bottom:407.666686pt;}
.y11_c00174{bottom:425.000020pt;}
.y10_c00174{bottom:458.866686pt;}
.yf_c00174{bottom:526.400020pt;}
.ye_c00174{bottom:543.666686pt;}
.yd_c00174{bottom:561.000020pt;}
.yc_c00174{bottom:578.600020pt;}
.yb_c00174{bottom:595.866686pt;}
.ya_c00174{bottom:612.800020pt;}
.y9_c00174{bottom:630.466686pt;}
.y8_c00174{bottom:647.733353pt;}
.y7_c00174{bottom:665.000020pt;}
.y6_c00174{bottom:682.266686pt;}
.y5_c00174{bottom:698.866686pt;}
.y4_c00174{bottom:716.466686pt;}
.y3_c00174{bottom:733.800020pt;}
.y2_c00174{bottom:750.733353pt;}
.y1_c00174{bottom:788.200020pt;}
.h2_c00174{height:44.492188pt;}
.h3_c00174{height:52.343750pt;}
.h1_c00174{height:851.333333pt;}
.h0_c00174{height:851.533333pt;}
.w1_c00174{width:572.000000pt;}
.w0_c00174{width:572.133333pt;}
.x0_c00174{left:0.000000pt;}
.x2_c00174{left:80.333333pt;}
.x1_c00174{left:81.600000pt;}
.x3_c00174{left:85.733333pt;}
.x4_c00174{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c147b2d05a313659bec898ba.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00175;src:url('chunks/assets/font_8e4060af448fc5c53b9da867.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00175{letter-spacing:0.000000px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00175{word-spacing:-15.000000px;}
.ws0_c00175{word-spacing:-12.750000px;}
.ws2_c00175{word-spacing:0.000000px;}
._14_c00175{margin-left:-16.316730px;}
._f_c00175{margin-left:-11.309709px;}
._d_c00175{margin-left:-10.122159px;}
._11_c00175{margin-left:-8.801979px;}
._10_c00175{margin-left:-7.548054px;}
._18_c00175{margin-left:-6.305412px;}
._16_c00175{margin-left:-4.200003px;}
._3_c00175{margin-left:-2.916078px;}
._0_c00175{margin-left:-1.383018px;}
._2_c00175{width:1.278009px;}
._7_c00175{width:2.297919px;}
._1_c00175{width:3.599988px;}
._e_c00175{width:4.727964px;}
._12_c00175{width:6.780000px;}
._a_c00175{width:7.908054px;}
._b_c00175{width:9.876018px;}
._6_c00175{width:11.723994px;}
._c_c00175{width:13.026063px;}
._1a_c00175{width:14.122275px;}
._8_c00175{width:16.379910px;}
._9_c00175{width:17.385123px;}
._13_c00175{width:18.632769px;}
._4_c00175{width:19.800000px;}
._5_c00175{width:20.820000px;}
._17_c00175{width:22.899054px;}
._15_c00175{width:24.399012px;}
._19_c00175{width:25.899024px;}
.fc1_c00175{color:transparent;}
.fc0_c00175{color:rgb(35,31,32);}
.fs0_c00175{font-size:51.000000px;}
.fs1_c00175{font-size:60.000000px;}
.y0_c00175{bottom:0.000000px;}
.y27_c00175{bottom:64.425022px;}
.y26_c00175{bottom:110.175022px;}
.y25_c00175{bottom:125.625022px;}
.y24_c00175{bottom:140.775022px;}
.y23_c00175{bottom:155.925022px;}
.y22_c00175{bottom:171.375022px;}
.y21_c00175{bottom:186.525022px;}
.y20_c00175{bottom:201.975022px;}
.y1f_c00175{bottom:217.125022px;}
.y1e_c00175{bottom:232.575022px;}
.y1d_c00175{bottom:248.025022px;}
.y1c_c00175{bottom:263.175022px;}
.y1b_c00175{bottom:278.625022px;}
.y1a_c00175{bottom:293.775022px;}
.y19_c00175{bottom:309.225022px;}
.y18_c00175{bottom:324.375022px;}
.y17_c00175{bottom:339.525022px;}
.y16_c00175{bottom:354.975022px;}
.y15_c00175{bottom:370.125022px;}
.y14_c00175{bottom:385.575022px;}
.y13_c00175{bottom:401.025022px;}
.y12_c00175{bottom:478.125022px;}
.y11_c00175{bottom:497.175022px;}
.y10_c00175{bottom:516.975022px;}
.yf_c00175{bottom:554.775022px;}
.ye_c00175{bottom:612.000022px;}
.yd_c00175{bottom:631.500022px;}
.yc_c00175{bottom:650.925022px;}
.yb_c00175{bottom:670.350022px;}
.ya_c00175{bottom:689.400022px;}
.y9_c00175{bottom:709.200022px;}
.y8_c00175{bottom:728.325022px;}
.y7_c00175{bottom:747.750022px;}
.y6_c00175{bottom:767.550022px;}
.y5_c00175{bottom:786.300022px;}
.y4_c00175{bottom:805.725022px;}
.y3_c00175{bottom:825.150022px;}
.y2_c00175{bottom:844.575022px;}
.y1_c00175{bottom:886.725022px;}
.h2_c00175{height:50.028809px;}
.h4_c00175{height:50.053711px;}
.h3_c00175{height:58.886719px;}
.h1_c00175{height:957.750000px;}
.h0_c00175{height:957.975000px;}
.w0_c00175{width:641.850030px;}
.w1_c00175{width:642.000000px;}
.x0_c00175{left:0.000000px;}
.x4_c00175{left:80.250000px;}
.x3_c00175{left:81.375000px;}
.x5_c00175{left:86.400000px;}
.x2_c00175{left:97.200000px;}
.x6_c00175{left:113.025000px;}
.x7_c00175{left:114.150000px;}
.x1_c00175{left:289.050000px;}
.x8_c00175{left:532.050000px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls0_c00175{letter-spacing:0.000000pt;}
.ws1_c00175{word-spacing:-13.333333pt;}
.ws0_c00175{word-spacing:-11.333333pt;}
.ws2_c00175{word-spacing:0.000000pt;}
._14_c00175{margin-left:-14.503760pt;}
._f_c00175{margin-left:-10.053075pt;}
._d_c00175{margin-left:-8.997475pt;}
._11_c00175{margin-left:-7.823981pt;}
._10_c00175{margin-left:-6.709381pt;}
._18_c00175{margin-left:-5.604811pt;}
._16_c00175{margin-left:-3.733336pt;}
._3_c00175{margin-left:-2.592069pt;}
._0_c00175{margin-left:-1.229349pt;}
._2_c00175{width:1.136008pt;}
._7_c00175{width:2.042595pt;}
._1_c00175{width:3.199989pt;}
._e_c00175{width:4.202635pt;}
._12_c00175{width:6.026667pt;}
._a_c00175{width:7.029381pt;}
._b_c00175{width:8.778683pt;}
._6_c00175{width:10.421328pt;}
._c_c00175{width:11.578723pt;}
._1a_c00175{width:12.553133pt;}
._8_c00175{width:14.559920pt;}
._9_c00175{width:15.453443pt;}
._13_c00175{width:16.562461pt;}
._4_c00175{width:17.600000pt;}
._5_c00175{width:18.506667pt;}
._17_c00175{width:20.354715pt;}
._15_c00175{width:21.688011pt;}
._19_c00175{width:23.021355pt;}
.fs0_c00175{font-size:45.333333pt;}
.fs1_c00175{font-size:53.333333pt;}
.y0_c00175{bottom:0.000000pt;}
.y27_c00175{bottom:57.266686pt;}
.y26_c00175{bottom:97.933353pt;}
.y25_c00175{bottom:111.666686pt;}
.y24_c00175{bottom:125.133353pt;}
.y23_c00175{bottom:138.600020pt;}
.y22_c00175{bottom:152.333353pt;}
.y21_c00175{bottom:165.800020pt;}
.y20_c00175{bottom:179.533353pt;}
.y1f_c00175{bottom:193.000020pt;}
.y1e_c00175{bottom:206.733353pt;}
.y1d_c00175{bottom:220.466686pt;}
.y1c_c00175{bottom:233.933353pt;}
.y1b_c00175{bottom:247.666686pt;}
.y1a_c00175{bottom:261.133353pt;}
.y19_c00175{bottom:274.866686pt;}
.y18_c00175{bottom:288.333353pt;}
.y17_c00175{bottom:301.800020pt;}
.y16_c00175{bottom:315.533353pt;}
.y15_c00175{bottom:329.000020pt;}
.y14_c00175{bottom:342.733353pt;}
.y13_c00175{bottom:356.466686pt;}
.y12_c00175{bottom:425.000020pt;}
.y11_c00175{bottom:441.933353pt;}
.y10_c00175{bottom:459.533353pt;}
.yf_c00175{bottom:493.133353pt;}
.ye_c00175{bottom:544.000020pt;}
.yd_c00175{bottom:561.333353pt;}
.yc_c00175{bottom:578.600020pt;}
.yb_c00175{bottom:595.866686pt;}
.ya_c00175{bottom:612.800020pt;}
.y9_c00175{bottom:630.400020pt;}
.y8_c00175{bottom:647.400020pt;}
.y7_c00175{bottom:664.666686pt;}
.y6_c00175{bottom:682.266686pt;}
.y5_c00175{bottom:698.933353pt;}
.y4_c00175{bottom:716.200020pt;}
.y3_c00175{bottom:733.466686pt;}
.y2_c00175{bottom:750.733353pt;}
.y1_c00175{bottom:788.200020pt;}
.h2_c00175{height:44.470052pt;}
.h4_c00175{height:44.492188pt;}
.h3_c00175{height:52.343750pt;}
.h1_c00175{height:851.333333pt;}
.h0_c00175{height:851.533333pt;}
.w0_c00175{width:570.533360pt;}
.w1_c00175{width:570.666667pt;}
.x0_c00175{left:0.000000pt;}
.x4_c00175{left:71.333333pt;}
.x3_c00175{left:72.333333pt;}
.x5_c00175{left:76.800000pt;}
.x2_c00175{left:86.400000pt;}
.x6_c00175{left:100.466667pt;}
.x7_c00175{left:101.466667pt;}
.x1_c00175{left:256.933333pt;}
.x8_c00175{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ca3fb58a704b3878370f5d8e.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00176;src:url('chunks/assets/font_feccbe52733d8ccd65863300.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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.000000px;}
.ls0_c00176{letter-spacing:0.677994px;}
.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:-15.000000px;}
.ws0_c00176{word-spacing:-12.750000px;}
.ws2_c00176{word-spacing:0.000000px;}
._b_c00176{margin-left:-13.020000px;}
._a_c00176{margin-left:-11.580000px;}
._6_c00176{margin-left:-9.540000px;}
._9_c00176{margin-left:-7.620000px;}
._17_c00176{margin-left:-6.555156px;}
._14_c00176{margin-left:-4.917012px;}
._16_c00176{margin-left:-3.341958px;}
._7_c00176{margin-left:-2.160000px;}
._c_c00176{margin-left:-1.020000px;}
._1_c00176{width:1.680000px;}
._5_c00176{width:3.000000px;}
._13_c00176{width:4.080000px;}
._4_c00176{width:5.160000px;}
._12_c00176{width:7.080000px;}
._3_c00176{width:8.160000px;}
._2_c00176{width:9.840000px;}
._0_c00176{width:10.980000px;}
._8_c00176{width:12.060000px;}
._d_c00176{width:13.080000px;}
._19_c00176{width:14.220006px;}
._1b_c00176{width:15.954045px;}
._e_c00176{width:16.980000px;}
._10_c00176{width:19.320000px;}
._f_c00176{width:22.080000px;}
._11_c00176{width:23.280000px;}
._15_c00176{width:26.069970px;}
._1a_c00176{width:28.230021px;}
._18_c00176{width:29.411928px;}
.fc1_c00176{color:transparent;}
.fc0_c00176{color:rgb(35,31,32);}
.fs1_c00176{font-size:51.000000px;}
.fs0_c00176{font-size:60.000000px;}
.y0_c00176{bottom:0.000000px;}
.y2d_c00176{bottom:64.425022px;}
.y2c_c00176{bottom:110.175022px;}
.y2b_c00176{bottom:125.325022px;}
.y2a_c00176{bottom:141.150022px;}
.y29_c00176{bottom:156.225022px;}
.y28_c00176{bottom:171.750022px;}
.y27_c00176{bottom:186.525022px;}
.y26_c00176{bottom:201.975022px;}
.y25_c00176{bottom:217.125022px;}
.y24_c00176{bottom:232.950022px;}
.y23_c00176{bottom:247.725022px;}
.y22_c00176{bottom:263.175022px;}
.y21_c00176{bottom:278.325022px;}
.y20_c00176{bottom:293.775022px;}
.y1f_c00176{bottom:309.225022px;}
.y1e_c00176{bottom:324.750022px;}
.y1d_c00176{bottom:339.825022px;}
.y1c_c00176{bottom:355.350022px;}
.y1b_c00176{bottom:370.125022px;}
.y1a_c00176{bottom:385.575022px;}
.y19_c00176{bottom:401.025022px;}
.y18_c00176{bottom:416.175022px;}
.y17_c00176{bottom:431.325022px;}
.y16_c00176{bottom:446.775022px;}
.y15_c00176{bottom:461.925022px;}
.y14_c00176{bottom:477.375022px;}
.y13_c00176{bottom:492.525022px;}
.y12_c00176{bottom:508.350022px;}
.y11_c00176{bottom:523.125022px;}
.yf_c00176{bottom:573.150022px;}
.ye_c00176{bottom:592.575022px;}
.yd_c00176{bottom:612.000022px;}
.yc_c00176{bottom:631.500022px;}
.yb_c00176{bottom:650.925022px;}
.ya_c00176{bottom:670.350022px;}
.y9_c00176{bottom:689.325022px;}
.y8_c00176{bottom:708.825022px;}
.y7_c00176{bottom:728.325022px;}
.y6_c00176{bottom:748.125022px;}
.y5_c00176{bottom:767.175022px;}
.y4_c00176{bottom:786.600022px;}
.y3_c00176{bottom:806.025022px;}
.y2_c00176{bottom:825.150022px;}
.y1_c00176{bottom:844.950022px;}
.y10_c00176{bottom:886.725022px;}
.h3_c00176{height:50.053711px;}
.h2_c00176{height:58.886719px;}
.h1_c00176{height:957.750000px;}
.h0_c00176{height:957.975000px;}
.w1_c00176{width:643.500000px;}
.w0_c00176{width:643.650000px;}
.x0_c00176{left:0.000000px;}
.x2_c00176{left:90.375000px;}
.x1_c00176{left:91.425000px;}
.x4_c00176{left:96.450000px;}
.x3_c00176{left:107.250000px;}
.x5_c00176{left:123.825000px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls1_c00176{letter-spacing:0.000000pt;}
.ls0_c00176{letter-spacing:0.602661pt;}
.ws1_c00176{word-spacing:-13.333333pt;}
.ws0_c00176{word-spacing:-11.333333pt;}
.ws2_c00176{word-spacing:0.000000pt;}
._b_c00176{margin-left:-11.573333pt;}
._a_c00176{margin-left:-10.293333pt;}
._6_c00176{margin-left:-8.480000pt;}
._9_c00176{margin-left:-6.773333pt;}
._17_c00176{margin-left:-5.826805pt;}
._14_c00176{margin-left:-4.370677pt;}
._16_c00176{margin-left:-2.970629pt;}
._7_c00176{margin-left:-1.920000pt;}
._c_c00176{margin-left:-0.906667pt;}
._1_c00176{width:1.493333pt;}
._5_c00176{width:2.666667pt;}
._13_c00176{width:3.626667pt;}
._4_c00176{width:4.586667pt;}
._12_c00176{width:6.293333pt;}
._3_c00176{width:7.253333pt;}
._2_c00176{width:8.746667pt;}
._0_c00176{width:9.760000pt;}
._8_c00176{width:10.720000pt;}
._d_c00176{width:11.626667pt;}
._19_c00176{width:12.640005pt;}
._1b_c00176{width:14.181373pt;}
._e_c00176{width:15.093333pt;}
._10_c00176{width:17.173333pt;}
._f_c00176{width:19.626667pt;}
._11_c00176{width:20.693333pt;}
._15_c00176{width:23.173307pt;}
._1a_c00176{width:25.093352pt;}
._18_c00176{width:26.143936pt;}
.fs1_c00176{font-size:45.333333pt;}
.fs0_c00176{font-size:53.333333pt;}
.y0_c00176{bottom:0.000000pt;}
.y2d_c00176{bottom:57.266686pt;}
.y2c_c00176{bottom:97.933353pt;}
.y2b_c00176{bottom:111.400020pt;}
.y2a_c00176{bottom:125.466686pt;}
.y29_c00176{bottom:138.866686pt;}
.y28_c00176{bottom:152.666686pt;}
.y27_c00176{bottom:165.800020pt;}
.y26_c00176{bottom:179.533353pt;}
.y25_c00176{bottom:193.000020pt;}
.y24_c00176{bottom:207.066686pt;}
.y23_c00176{bottom:220.200020pt;}
.y22_c00176{bottom:233.933353pt;}
.y21_c00176{bottom:247.400020pt;}
.y20_c00176{bottom:261.133353pt;}
.y1f_c00176{bottom:274.866686pt;}
.y1e_c00176{bottom:288.666686pt;}
.y1d_c00176{bottom:302.066686pt;}
.y1c_c00176{bottom:315.866686pt;}
.y1b_c00176{bottom:329.000020pt;}
.y1a_c00176{bottom:342.733353pt;}
.y19_c00176{bottom:356.466686pt;}
.y18_c00176{bottom:369.933353pt;}
.y17_c00176{bottom:383.400020pt;}
.y16_c00176{bottom:397.133353pt;}
.y15_c00176{bottom:410.600020pt;}
.y14_c00176{bottom:424.333353pt;}
.y13_c00176{bottom:437.800020pt;}
.y12_c00176{bottom:451.866686pt;}
.y11_c00176{bottom:465.000020pt;}
.yf_c00176{bottom:509.466686pt;}
.ye_c00176{bottom:526.733353pt;}
.yd_c00176{bottom:544.000020pt;}
.yc_c00176{bottom:561.333353pt;}
.yb_c00176{bottom:578.600020pt;}
.ya_c00176{bottom:595.866686pt;}
.y9_c00176{bottom:612.733353pt;}
.y8_c00176{bottom:630.066686pt;}
.y7_c00176{bottom:647.400020pt;}
.y6_c00176{bottom:665.000020pt;}
.y5_c00176{bottom:681.933353pt;}
.y4_c00176{bottom:699.200020pt;}
.y3_c00176{bottom:716.466686pt;}
.y2_c00176{bottom:733.466686pt;}
.y1_c00176{bottom:751.066686pt;}
.y10_c00176{bottom:788.200020pt;}
.h3_c00176{height:44.492188pt;}
.h2_c00176{height:52.343750pt;}
.h1_c00176{height:851.333333pt;}
.h0_c00176{height:851.533333pt;}
.w1_c00176{width:572.000000pt;}
.w0_c00176{width:572.133333pt;}
.x0_c00176{left:0.000000pt;}
.x2_c00176{left:80.333333pt;}
.x1_c00176{left:81.266667pt;}
.x4_c00176{left:85.733333pt;}
.x3_c00176{left:95.333333pt;}
.x5_c00176{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5329c050ce93450a19b03361.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00177;src:url('chunks/assets/font_a11eb085e24c2e091e0c4c76.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.sc__c00177{text-shadow:none;}
.sc0_c00177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00177{-webkit-text-stroke:0px transparent;}
.sc0_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00177{word-spacing:-15.000000px;}
.ws0_c00177{word-spacing:-12.750000px;}
.ws2_c00177{word-spacing:0.000000px;}
._15_c00177{margin-left:-14.864886px;}
._18_c00177{margin-left:-12.840000px;}
._17_c00177{margin-left:-11.760000px;}
._a_c00177{margin-left:-9.900000px;}
._9_c00177{margin-left:-8.316018px;}
._10_c00177{margin-left:-6.221991px;}
._f_c00177{margin-left:-4.302021px;}
._3_c00177{margin-left:-2.916078px;}
._0_c00177{margin-left:-1.383018px;}
._2_c00177{width:1.278009px;}
._5_c00177{width:2.381991px;}
._1_c00177{width:3.599988px;}
._11_c00177{width:5.034117px;}
._e_c00177{width:6.623994px;}
._d_c00177{width:8.111856px;}
._1b_c00177{width:9.114651px;}
._6_c00177{width:10.121991px;}
._c_c00177{width:11.435838px;}
._4_c00177{width:12.660000px;}
._16_c00177{width:13.850970px;}
._13_c00177{width:16.158021px;}
._14_c00177{width:17.723865px;}
._b_c00177{width:19.728234px;}
._12_c00177{width:21.383982px;}
._7_c00177{width:22.403982px;}
._8_c00177{width:24.185883px;}
._19_c00177{width:25.899024px;}
._1a_c00177{width:27.465183px;}
.fc1_c00177{color:transparent;}
.fc0_c00177{color:rgb(35,31,32);}
.fs0_c00177{font-size:51.000000px;}
.fs1_c00177{font-size:60.000000px;}
.y0_c00177{bottom:0.000000px;}
.y2b_c00177{bottom:64.425022px;}
.y2a_c00177{bottom:110.175022px;}
.y29_c00177{bottom:125.325022px;}
.y28_c00177{bottom:140.775022px;}
.y27_c00177{bottom:155.925022px;}
.y26_c00177{bottom:171.375022px;}
.y25_c00177{bottom:186.525022px;}
.y24_c00177{bottom:202.350022px;}
.y23_c00177{bottom:217.425022px;}
.y22_c00177{bottom:232.950022px;}
.y21_c00177{bottom:247.725022px;}
.y20_c00177{bottom:263.175022px;}
.y1f_c00177{bottom:278.325022px;}
.y1e_c00177{bottom:293.775022px;}
.y1d_c00177{bottom:308.925022px;}
.y1c_c00177{bottom:324.375022px;}
.y1b_c00177{bottom:339.525022px;}
.y1a_c00177{bottom:354.975022px;}
.y19_c00177{bottom:397.800022px;}
.y18_c00177{bottom:417.600022px;}
.y17_c00177{bottom:437.025022px;}
.y16_c00177{bottom:456.150022px;}
.y15_c00177{bottom:475.950022px;}
.y14_c00177{bottom:495.375022px;}
.y13_c00177{bottom:514.800022px;}
.y12_c00177{bottom:534.225022px;}
.y11_c00177{bottom:553.350022px;}
.y10_c00177{bottom:573.150022px;}
.yf_c00177{bottom:592.200022px;}
.ye_c00177{bottom:612.000022px;}
.yd_c00177{bottom:631.425022px;}
.yc_c00177{bottom:650.925022px;}
.yb_c00177{bottom:669.975022px;}
.ya_c00177{bottom:689.400022px;}
.y9_c00177{bottom:708.825022px;}
.y8_c00177{bottom:728.625022px;}
.y7_c00177{bottom:748.125022px;}
.y6_c00177{bottom:767.550022px;}
.y5_c00177{bottom:786.225022px;}
.y4_c00177{bottom:806.100022px;}
.y3_c00177{bottom:825.525022px;}
.y2_c00177{bottom:844.950022px;}
.y1_c00177{bottom:886.725022px;}
.h2_c00177{height:50.028809px;}
.h4_c00177{height:50.053711px;}
.h3_c00177{height:58.886719px;}
.h1_c00177{height:957.750000px;}
.h0_c00177{height:957.975000px;}
.w0_c00177{width:641.850030px;}
.w1_c00177{width:642.000000px;}
.x0_c00177{left:0.000000px;}
.x2_c00177{left:81.000000px;}
.x4_c00177{left:86.400000px;}
.x3_c00177{left:96.150000px;}
.x5_c00177{left:113.025000px;}
.x6_c00177{left:114.150000px;}
.x1_c00177{left:289.050000px;}
.x7_c00177{left:532.050000px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls0_c00177{letter-spacing:0.000000pt;}
.ws1_c00177{word-spacing:-13.333333pt;}
.ws0_c00177{word-spacing:-11.333333pt;}
.ws2_c00177{word-spacing:0.000000pt;}
._15_c00177{margin-left:-13.213232pt;}
._18_c00177{margin-left:-11.413333pt;}
._17_c00177{margin-left:-10.453333pt;}
._a_c00177{margin-left:-8.800000pt;}
._9_c00177{margin-left:-7.392016pt;}
._10_c00177{margin-left:-5.530659pt;}
._f_c00177{margin-left:-3.824019pt;}
._3_c00177{margin-left:-2.592069pt;}
._0_c00177{margin-left:-1.229349pt;}
._2_c00177{width:1.136008pt;}
._5_c00177{width:2.117325pt;}
._1_c00177{width:3.199989pt;}
._11_c00177{width:4.474771pt;}
._e_c00177{width:5.887995pt;}
._d_c00177{width:7.210539pt;}
._1b_c00177{width:8.101912pt;}
._6_c00177{width:8.997325pt;}
._c_c00177{width:10.165189pt;}
._4_c00177{width:11.253333pt;}
._16_c00177{width:12.311973pt;}
._13_c00177{width:14.362685pt;}
._14_c00177{width:15.754547pt;}
._b_c00177{width:17.536208pt;}
._12_c00177{width:19.007984pt;}
._7_c00177{width:19.914651pt;}
._8_c00177{width:21.498563pt;}
._19_c00177{width:23.021355pt;}
._1a_c00177{width:24.413496pt;}
.fs0_c00177{font-size:45.333333pt;}
.fs1_c00177{font-size:53.333333pt;}
.y0_c00177{bottom:0.000000pt;}
.y2b_c00177{bottom:57.266686pt;}
.y2a_c00177{bottom:97.933353pt;}
.y29_c00177{bottom:111.400020pt;}
.y28_c00177{bottom:125.133353pt;}
.y27_c00177{bottom:138.600020pt;}
.y26_c00177{bottom:152.333353pt;}
.y25_c00177{bottom:165.800020pt;}
.y24_c00177{bottom:179.866686pt;}
.y23_c00177{bottom:193.266686pt;}
.y22_c00177{bottom:207.066686pt;}
.y21_c00177{bottom:220.200020pt;}
.y20_c00177{bottom:233.933353pt;}
.y1f_c00177{bottom:247.400020pt;}
.y1e_c00177{bottom:261.133353pt;}
.y1d_c00177{bottom:274.600020pt;}
.y1c_c00177{bottom:288.333353pt;}
.y1b_c00177{bottom:301.800020pt;}
.y1a_c00177{bottom:315.533353pt;}
.y19_c00177{bottom:353.600020pt;}
.y18_c00177{bottom:371.200020pt;}
.y17_c00177{bottom:388.466686pt;}
.y16_c00177{bottom:405.466686pt;}
.y15_c00177{bottom:423.066686pt;}
.y14_c00177{bottom:440.333353pt;}
.y13_c00177{bottom:457.600020pt;}
.y12_c00177{bottom:474.866686pt;}
.y11_c00177{bottom:491.866686pt;}
.y10_c00177{bottom:509.466686pt;}
.yf_c00177{bottom:526.400020pt;}
.ye_c00177{bottom:544.000020pt;}
.yd_c00177{bottom:561.266686pt;}
.yc_c00177{bottom:578.600020pt;}
.yb_c00177{bottom:595.533353pt;}
.ya_c00177{bottom:612.800020pt;}
.y9_c00177{bottom:630.066686pt;}
.y8_c00177{bottom:647.666686pt;}
.y7_c00177{bottom:665.000020pt;}
.y6_c00177{bottom:682.266686pt;}
.y5_c00177{bottom:698.866686pt;}
.y4_c00177{bottom:716.533353pt;}
.y3_c00177{bottom:733.800020pt;}
.y2_c00177{bottom:751.066686pt;}
.y1_c00177{bottom:788.200020pt;}
.h2_c00177{height:44.470052pt;}
.h4_c00177{height:44.492188pt;}
.h3_c00177{height:52.343750pt;}
.h1_c00177{height:851.333333pt;}
.h0_c00177{height:851.533333pt;}
.w0_c00177{width:570.533360pt;}
.w1_c00177{width:570.666667pt;}
.x0_c00177{left:0.000000pt;}
.x2_c00177{left:72.000000pt;}
.x4_c00177{left:76.800000pt;}
.x3_c00177{left:85.466667pt;}
.x5_c00177{left:100.466667pt;}
.x6_c00177{left:101.466667pt;}
.x1_c00177{left:256.933333pt;}
.x7_c00177{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_09a33fb5e0b2ca4018dbe0c0.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00178;src:url('chunks/assets/font_180f7d4c34650374483b9c27.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00178{letter-spacing:0.000000px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00178{word-spacing:-15.000000px;}
.ws0_c00178{word-spacing:-12.750000px;}
.ws2_c00178{word-spacing:0.000000px;}
._15_c00178{margin-left:-15.600000px;}
._f_c00178{margin-left:-10.860000px;}
._9_c00178{margin-left:-9.480000px;}
._d_c00178{margin-left:-8.040000px;}
._2_c00178{margin-left:-6.600000px;}
._0_c00178{margin-left:-5.400000px;}
._13_c00178{margin-left:-3.900000px;}
._b_c00178{margin-left:-1.920000px;}
._4_c00178{width:1.560000px;}
._6_c00178{width:2.700000px;}
._c_c00178{width:3.900000px;}
._5_c00178{width:5.700000px;}
._8_c00178{width:7.740000px;}
._3_c00178{width:9.120000px;}
._7_c00178{width:10.260000px;}
._19_c00178{width:11.283048px;}
._a_c00178{width:12.300000px;}
._1_c00178{width:13.800000px;}
._16_c00178{width:14.927997px;}
._e_c00178{width:16.800000px;}
._10_c00178{width:18.660000px;}
._11_c00178{width:20.760000px;}
._14_c00178{width:22.140000px;}
._12_c00178{width:24.060000px;}
._18_c00178{width:25.589970px;}
._17_c00178{width:27.510021px;}
._1a_c00178{width:29.057895px;}
._1b_c00178{width:30.992982px;}
.fc1_c00178{color:transparent;}
.fc0_c00178{color:rgb(35,31,32);}
.fs1_c00178{font-size:51.000000px;}
.fs0_c00178{font-size:60.000000px;}
.y0_c00178{bottom:0.000000px;}
.y2b_c00178{bottom:64.425022px;}
.y2a_c00178{bottom:110.175022px;}
.y29_c00178{bottom:125.625022px;}
.y28_c00178{bottom:141.150022px;}
.y27_c00178{bottom:155.925022px;}
.y26_c00178{bottom:171.375022px;}
.y25_c00178{bottom:186.525022px;}
.y24_c00178{bottom:202.350022px;}
.y23_c00178{bottom:217.125022px;}
.y22_c00178{bottom:232.575022px;}
.y21_c00178{bottom:247.725022px;}
.y20_c00178{bottom:263.175022px;}
.y1f_c00178{bottom:278.325022px;}
.y1e_c00178{bottom:293.775022px;}
.y1d_c00178{bottom:308.925022px;}
.y1c_c00178{bottom:324.375022px;}
.y1b_c00178{bottom:339.525022px;}
.y1a_c00178{bottom:354.975022px;}
.y19_c00178{bottom:370.125022px;}
.y18_c00178{bottom:385.575022px;}
.y17_c00178{bottom:400.725022px;}
.y16_c00178{bottom:416.175022px;}
.y15_c00178{bottom:431.625022px;}
.y14_c00178{bottom:447.150022px;}
.y12_c00178{bottom:514.425022px;}
.y11_c00178{bottom:534.225022px;}
.y10_c00178{bottom:553.725022px;}
.yf_c00178{bottom:572.775022px;}
.ye_c00178{bottom:592.200022px;}
.yd_c00178{bottom:612.000022px;}
.yc_c00178{bottom:631.425022px;}
.yb_c00178{bottom:650.925022px;}
.ya_c00178{bottom:669.975022px;}
.y9_c00178{bottom:689.400022px;}
.y8_c00178{bottom:708.825022px;}
.y7_c00178{bottom:728.625022px;}
.y6_c00178{bottom:747.750022px;}
.y5_c00178{bottom:767.550022px;}
.y4_c00178{bottom:786.525022px;}
.y3_c00178{bottom:806.025022px;}
.y2_c00178{bottom:825.525022px;}
.y1_c00178{bottom:844.575022px;}
.y13_c00178{bottom:886.725022px;}
.h3_c00178{height:50.053711px;}
.h2_c00178{height:58.886719px;}
.h1_c00178{height:957.750000px;}
.h0_c00178{height:957.975000px;}
.w1_c00178{width:643.500000px;}
.w0_c00178{width:643.650000px;}
.x0_c00178{left:0.000000px;}
.x1_c00178{left:91.050000px;}
.x4_c00178{left:92.175000px;}
.x2_c00178{left:96.450000px;}
.x3_c00178{left:123.825000px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls0_c00178{letter-spacing:0.000000pt;}
.ws1_c00178{word-spacing:-13.333333pt;}
.ws0_c00178{word-spacing:-11.333333pt;}
.ws2_c00178{word-spacing:0.000000pt;}
._15_c00178{margin-left:-13.866667pt;}
._f_c00178{margin-left:-9.653333pt;}
._9_c00178{margin-left:-8.426667pt;}
._d_c00178{margin-left:-7.146667pt;}
._2_c00178{margin-left:-5.866667pt;}
._0_c00178{margin-left:-4.800000pt;}
._13_c00178{margin-left:-3.466667pt;}
._b_c00178{margin-left:-1.706667pt;}
._4_c00178{width:1.386667pt;}
._6_c00178{width:2.400000pt;}
._c_c00178{width:3.466667pt;}
._5_c00178{width:5.066667pt;}
._8_c00178{width:6.880000pt;}
._3_c00178{width:8.106667pt;}
._7_c00178{width:9.120000pt;}
._19_c00178{width:10.029376pt;}
._a_c00178{width:10.933333pt;}
._1_c00178{width:12.266667pt;}
._16_c00178{width:13.269331pt;}
._e_c00178{width:14.933333pt;}
._10_c00178{width:16.586667pt;}
._11_c00178{width:18.453333pt;}
._14_c00178{width:19.680000pt;}
._12_c00178{width:21.386667pt;}
._18_c00178{width:22.746640pt;}
._17_c00178{width:24.453352pt;}
._1a_c00178{width:25.829240pt;}
._1b_c00178{width:27.549317pt;}
.fs1_c00178{font-size:45.333333pt;}
.fs0_c00178{font-size:53.333333pt;}
.y0_c00178{bottom:0.000000pt;}
.y2b_c00178{bottom:57.266686pt;}
.y2a_c00178{bottom:97.933353pt;}
.y29_c00178{bottom:111.666686pt;}
.y28_c00178{bottom:125.466686pt;}
.y27_c00178{bottom:138.600020pt;}
.y26_c00178{bottom:152.333353pt;}
.y25_c00178{bottom:165.800020pt;}
.y24_c00178{bottom:179.866686pt;}
.y23_c00178{bottom:193.000020pt;}
.y22_c00178{bottom:206.733353pt;}
.y21_c00178{bottom:220.200020pt;}
.y20_c00178{bottom:233.933353pt;}
.y1f_c00178{bottom:247.400020pt;}
.y1e_c00178{bottom:261.133353pt;}
.y1d_c00178{bottom:274.600020pt;}
.y1c_c00178{bottom:288.333353pt;}
.y1b_c00178{bottom:301.800020pt;}
.y1a_c00178{bottom:315.533353pt;}
.y19_c00178{bottom:329.000020pt;}
.y18_c00178{bottom:342.733353pt;}
.y17_c00178{bottom:356.200020pt;}
.y16_c00178{bottom:369.933353pt;}
.y15_c00178{bottom:383.666686pt;}
.y14_c00178{bottom:397.466686pt;}
.y12_c00178{bottom:457.266686pt;}
.y11_c00178{bottom:474.866686pt;}
.y10_c00178{bottom:492.200020pt;}
.yf_c00178{bottom:509.133353pt;}
.ye_c00178{bottom:526.400020pt;}
.yd_c00178{bottom:544.000020pt;}
.yc_c00178{bottom:561.266686pt;}
.yb_c00178{bottom:578.600020pt;}
.ya_c00178{bottom:595.533353pt;}
.y9_c00178{bottom:612.800020pt;}
.y8_c00178{bottom:630.066686pt;}
.y7_c00178{bottom:647.666686pt;}
.y6_c00178{bottom:664.666686pt;}
.y5_c00178{bottom:682.266686pt;}
.y4_c00178{bottom:699.133353pt;}
.y3_c00178{bottom:716.466686pt;}
.y2_c00178{bottom:733.800020pt;}
.y1_c00178{bottom:750.733353pt;}
.y13_c00178{bottom:788.200020pt;}
.h3_c00178{height:44.492188pt;}
.h2_c00178{height:52.343750pt;}
.h1_c00178{height:851.333333pt;}
.h0_c00178{height:851.533333pt;}
.w1_c00178{width:572.000000pt;}
.w0_c00178{width:572.133333pt;}
.x0_c00178{left:0.000000pt;}
.x1_c00178{left:80.933333pt;}
.x4_c00178{left:81.933333pt;}
.x2_c00178{left:85.733333pt;}
.x3_c00178{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_de85dc03cd1c95d0297aea08.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00179;src:url('chunks/assets/font_80263a191d69773dc858176b.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00179{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00179{vertical-align:0.000000px;}
.ls1_c00179{letter-spacing:0.000000px;}
.ls0_c00179{letter-spacing:13.800000px;}
.sc__c00179{text-shadow:none;}
.sc0_c00179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00179{-webkit-text-stroke:0px transparent;}
.sc0_c00179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00179{word-spacing:-15.000000px;}
.ws1_c00179{word-spacing:-12.750000px;}
.ws2_c00179{word-spacing:0.000000px;}
._11_c00179{margin-left:-16.145913px;}
._16_c00179{margin-left:-12.672126px;}
._8_c00179{margin-left:-10.500000px;}
._7_c00179{margin-left:-8.946243px;}
._10_c00179{margin-left:-6.359472px;}
._1b_c00179{margin-left:-5.034132px;}
._3_c00179{margin-left:-2.916078px;}
._0_c00179{margin-left:-1.383018px;}
._2_c00179{width:1.278009px;}
._5_c00179{width:2.580000px;}
._1_c00179{width:3.599988px;}
._6_c00179{width:5.513949px;}
._4_c00179{width:7.061991px;}
._13_c00179{width:8.249955px;}
._18_c00179{width:9.558087px;}
._12_c00179{width:10.637919px;}
._17_c00179{width:12.299910px;}
._14_c00179{width:13.380000px;}
._1c_c00179{width:15.125925px;}
._15_c00179{width:16.127964px;}
._1a_c00179{width:17.610045px;}
._19_c00179{width:18.797919px;}
._a_c00179{width:23.123892px;}
._9_c00179{width:25.359096px;}
._b_c00179{width:27.488868px;}
._c_c00179{width:28.613937px;}
._d_c00179{width:29.681991px;}
._e_c00179{width:31.829955px;}
._f_c00179{width:33.323982px;}
.fc2_c00179{color:transparent;}
.fc1_c00179{color:rgb(0,0,0);}
.fc0_c00179{color:rgb(35,31,32);}
.fs0_c00179{font-size:51.000000px;}
.fs1_c00179{font-size:60.000000px;}
.y0_c00179{bottom:0.000000px;}
.y24_c00179{bottom:64.425022px;}
.y23_c00179{bottom:110.175022px;}
.y22_c00179{bottom:125.625022px;}
.y21_c00179{bottom:140.775022px;}
.y20_c00179{bottom:155.925022px;}
.y1f_c00179{bottom:171.750022px;}
.y1e_c00179{bottom:186.525022px;}
.y1d_c00179{bottom:201.975022px;}
.y1c_c00179{bottom:217.125022px;}
.y1b_c00179{bottom:232.575022px;}
.y1a_c00179{bottom:272.925022px;}
.y19_c00179{bottom:291.975022px;}
.y18_c00179{bottom:311.775022px;}
.y17_c00179{bottom:330.825022px;}
.y16_c00179{bottom:350.325022px;}
.y15_c00179{bottom:389.175022px;}
.y14_c00179{bottom:447.150022px;}
.y13_c00179{bottom:466.575022px;}
.y12_c00179{bottom:486.375022px;}
.y11_c00179{bottom:505.425022px;}
.y10_c00179{bottom:525.225022px;}
.yf_c00179{bottom:544.725022px;}
.ye_c00179{bottom:564.150022px;}
.yd_c00179{bottom:583.200022px;}
.yc_c00179{bottom:618.825022px;}
.yb_c00179{bottom:669.975022px;}
.ya_c00179{bottom:689.400022px;}
.y9_c00179{bottom:708.825022px;}
.y8_c00179{bottom:728.325022px;}
.y7_c00179{bottom:747.750022px;}
.y6_c00179{bottom:767.175022px;}
.y5_c00179{bottom:786.600022px;}
.y4_c00179{bottom:806.025022px;}
.y3_c00179{bottom:825.150022px;}
.y2_c00179{bottom:844.950022px;}
.y1_c00179{bottom:886.725022px;}
.h2_c00179{height:50.028809px;}
.h4_c00179{height:50.053711px;}
.h3_c00179{height:58.886719px;}
.h1_c00179{height:957.750000px;}
.h0_c00179{height:957.975000px;}
.w0_c00179{width:641.850030px;}
.w1_c00179{width:642.000000px;}
.x0_c00179{left:0.000000px;}
.x4_c00179{left:80.250000px;}
.x2_c00179{left:81.375000px;}
.x6_c00179{left:86.400000px;}
.x3_c00179{left:97.200000px;}
.x5_c00179{left:113.775000px;}
.x1_c00179{left:289.050000px;}
.x7_c00179{left:532.050000px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls1_c00179{letter-spacing:0.000000pt;}
.ls0_c00179{letter-spacing:12.266667pt;}
.ws0_c00179{word-spacing:-13.333333pt;}
.ws1_c00179{word-spacing:-11.333333pt;}
.ws2_c00179{word-spacing:0.000000pt;}
._11_c00179{margin-left:-14.351923pt;}
._16_c00179{margin-left:-11.264112pt;}
._8_c00179{margin-left:-9.333333pt;}
._7_c00179{margin-left:-7.952216pt;}
._10_c00179{margin-left:-5.652864pt;}
._1b_c00179{margin-left:-4.474784pt;}
._3_c00179{margin-left:-2.592069pt;}
._0_c00179{margin-left:-1.229349pt;}
._2_c00179{width:1.136008pt;}
._5_c00179{width:2.293333pt;}
._1_c00179{width:3.199989pt;}
._6_c00179{width:4.901288pt;}
._4_c00179{width:6.277325pt;}
._13_c00179{width:7.333293pt;}
._18_c00179{width:8.496077pt;}
._12_c00179{width:9.455928pt;}
._17_c00179{width:10.933253pt;}
._14_c00179{width:11.893333pt;}
._1c_c00179{width:13.445267pt;}
._15_c00179{width:14.335968pt;}
._1a_c00179{width:15.653373pt;}
._19_c00179{width:16.709261pt;}
._a_c00179{width:20.554571pt;}
._9_c00179{width:22.541419pt;}
._b_c00179{width:24.434549pt;}
._c_c00179{width:25.434611pt;}
._d_c00179{width:26.383992pt;}
._e_c00179{width:28.293293pt;}
._f_c00179{width:29.621317pt;}
.fs0_c00179{font-size:45.333333pt;}
.fs1_c00179{font-size:53.333333pt;}
.y0_c00179{bottom:0.000000pt;}
.y24_c00179{bottom:57.266686pt;}
.y23_c00179{bottom:97.933353pt;}
.y22_c00179{bottom:111.666686pt;}
.y21_c00179{bottom:125.133353pt;}
.y20_c00179{bottom:138.600020pt;}
.y1f_c00179{bottom:152.666686pt;}
.y1e_c00179{bottom:165.800020pt;}
.y1d_c00179{bottom:179.533353pt;}
.y1c_c00179{bottom:193.000020pt;}
.y1b_c00179{bottom:206.733353pt;}
.y1a_c00179{bottom:242.600020pt;}
.y19_c00179{bottom:259.533353pt;}
.y18_c00179{bottom:277.133353pt;}
.y17_c00179{bottom:294.066686pt;}
.y16_c00179{bottom:311.400020pt;}
.y15_c00179{bottom:345.933353pt;}
.y14_c00179{bottom:397.466686pt;}
.y13_c00179{bottom:414.733353pt;}
.y12_c00179{bottom:432.333353pt;}
.y11_c00179{bottom:449.266686pt;}
.y10_c00179{bottom:466.866686pt;}
.yf_c00179{bottom:484.200020pt;}
.ye_c00179{bottom:501.466686pt;}
.yd_c00179{bottom:518.400020pt;}
.yc_c00179{bottom:550.066686pt;}
.yb_c00179{bottom:595.533353pt;}
.ya_c00179{bottom:612.800020pt;}
.y9_c00179{bottom:630.066686pt;}
.y8_c00179{bottom:647.400020pt;}
.y7_c00179{bottom:664.666686pt;}
.y6_c00179{bottom:681.933353pt;}
.y5_c00179{bottom:699.200020pt;}
.y4_c00179{bottom:716.466686pt;}
.y3_c00179{bottom:733.466686pt;}
.y2_c00179{bottom:751.066686pt;}
.y1_c00179{bottom:788.200020pt;}
.h2_c00179{height:44.470052pt;}
.h4_c00179{height:44.492188pt;}
.h3_c00179{height:52.343750pt;}
.h1_c00179{height:851.333333pt;}
.h0_c00179{height:851.533333pt;}
.w0_c00179{width:570.533360pt;}
.w1_c00179{width:570.666667pt;}
.x0_c00179{left:0.000000pt;}
.x4_c00179{left:71.333333pt;}
.x2_c00179{left:72.333333pt;}
.x6_c00179{left:76.800000pt;}
.x3_c00179{left:86.400000pt;}
.x5_c00179{left:101.133333pt;}
.x1_c00179{left:256.933333pt;}
.x7_c00179{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0f323d06904938a1c9b07c9e.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00180;src:url('chunks/assets/font_e35bed1fc4aa9d5e543d02ef.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00180{letter-spacing:0.000000px;}
.sc__c00180{text-shadow:none;}
.sc0_c00180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00180{-webkit-text-stroke:0px transparent;}
.sc0_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00180{word-spacing:-15.000000px;}
.ws0_c00180{word-spacing:-12.750000px;}
.ws2_c00180{word-spacing:0.000000px;}
._7_c00180{margin-left:-14.700000px;}
._6_c00180{margin-left:-13.605498px;}
._a_c00180{margin-left:-12.399228px;}
._15_c00180{margin-left:-10.803264px;}
._c_c00180{margin-left:-8.099994px;}
._12_c00180{margin-left:-7.052955px;}
._10_c00180{margin-left:-5.939982px;}
._0_c00180{margin-left:-4.917012px;}
._f_c00180{margin-left:-2.910015px;}
._1_c00180{margin-left:-1.650003px;}
._2_c00180{width:1.644039px;}
._3_c00180{width:3.284796px;}
._4_c00180{width:5.184156px;}
._11_c00180{width:6.834117px;}
._d_c00180{width:8.843649px;}
._9_c00180{width:10.547688px;}
._5_c00180{width:12.390003px;}
._8_c00180{width:13.800000px;}
._1a_c00180{width:14.807157px;}
._b_c00180{width:16.149471px;}
._e_c00180{width:17.975961px;}
._13_c00180{width:20.068746px;}
._14_c00180{width:21.271266px;}
._18_c00180{width:23.199021px;}
._19_c00180{width:25.199967px;}
._1b_c00180{width:26.700009px;}
._17_c00180{width:27.900009px;}
._16_c00180{width:29.220003px;}
.fc1_c00180{color:transparent;}
.fc0_c00180{color:rgb(35,31,32);}
.fs0_c00180{font-size:51.000000px;}
.fs1_c00180{font-size:60.000000px;}
.y0_c00180{bottom:0.000000px;}
.y2d_c00180{bottom:64.425022px;}
.y2c_c00180{bottom:110.175022px;}
.y2b_c00180{bottom:125.325022px;}
.y2a_c00180{bottom:140.775022px;}
.y29_c00180{bottom:155.925022px;}
.y28_c00180{bottom:171.375022px;}
.y27_c00180{bottom:186.525022px;}
.y26_c00180{bottom:202.350022px;}
.y25_c00180{bottom:217.125022px;}
.y24_c00180{bottom:232.950022px;}
.y23_c00180{bottom:248.025022px;}
.y22_c00180{bottom:263.175022px;}
.y21_c00180{bottom:278.325022px;}
.y20_c00180{bottom:294.150022px;}
.y1f_c00180{bottom:308.925022px;}
.y1e_c00180{bottom:324.750022px;}
.y1d_c00180{bottom:339.525022px;}
.y1c_c00180{bottom:355.350022px;}
.y1b_c00180{bottom:370.125022px;}
.y1a_c00180{bottom:385.950022px;}
.y19_c00180{bottom:401.025022px;}
.y18_c00180{bottom:416.175022px;}
.y17_c00180{bottom:431.325022px;}
.y16_c00180{bottom:446.775022px;}
.y15_c00180{bottom:461.925022px;}
.y14_c00180{bottom:477.375022px;}
.y13_c00180{bottom:492.525022px;}
.y12_c00180{bottom:508.350022px;}
.y11_c00180{bottom:553.725022px;}
.y10_c00180{bottom:573.150022px;}
.yf_c00180{bottom:592.575022px;}
.ye_c00180{bottom:612.000022px;}
.yd_c00180{bottom:631.125022px;}
.yc_c00180{bottom:650.550022px;}
.yb_c00180{bottom:670.350022px;}
.ya_c00180{bottom:689.400022px;}
.y9_c00180{bottom:708.900022px;}
.y8_c00180{bottom:728.325022px;}
.y7_c00180{bottom:747.750022px;}
.y6_c00180{bottom:767.550022px;}
.y5_c00180{bottom:786.225022px;}
.y4_c00180{bottom:806.025022px;}
.y3_c00180{bottom:825.525022px;}
.y2_c00180{bottom:844.575022px;}
.y1_c00180{bottom:886.725022px;}
.h2_c00180{height:50.053711px;}
.h3_c00180{height:58.886719px;}
.h1_c00180{height:957.750000px;}
.h0_c00180{height:957.975000px;}
.w1_c00180{width:643.500000px;}
.w0_c00180{width:643.650000px;}
.x0_c00180{left:0.000000px;}
.x2_c00180{left:90.375000px;}
.x1_c00180{left:91.800000px;}
.x4_c00180{left:96.450000px;}
.x3_c00180{left:107.250000px;}
.x5_c00180{left:124.200000px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls0_c00180{letter-spacing:0.000000pt;}
.ws1_c00180{word-spacing:-13.333333pt;}
.ws0_c00180{word-spacing:-11.333333pt;}
.ws2_c00180{word-spacing:0.000000pt;}
._7_c00180{margin-left:-13.066667pt;}
._6_c00180{margin-left:-12.093776pt;}
._a_c00180{margin-left:-11.021536pt;}
._15_c00180{margin-left:-9.602901pt;}
._c_c00180{margin-left:-7.199995pt;}
._12_c00180{margin-left:-6.269293pt;}
._10_c00180{margin-left:-5.279984pt;}
._0_c00180{margin-left:-4.370677pt;}
._f_c00180{margin-left:-2.586680pt;}
._1_c00180{margin-left:-1.466669pt;}
._2_c00180{width:1.461368pt;}
._3_c00180{width:2.919819pt;}
._4_c00180{width:4.608139pt;}
._11_c00180{width:6.074771pt;}
._d_c00180{width:7.861021pt;}
._9_c00180{width:9.375723pt;}
._5_c00180{width:11.013336pt;}
._8_c00180{width:12.266667pt;}
._1a_c00180{width:13.161917pt;}
._b_c00180{width:14.355085pt;}
._e_c00180{width:15.978632pt;}
._13_c00180{width:17.838885pt;}
._14_c00180{width:18.907792pt;}
._18_c00180{width:20.621352pt;}
._19_c00180{width:22.399971pt;}
._1b_c00180{width:23.733341pt;}
._17_c00180{width:24.800008pt;}
._16_c00180{width:25.973336pt;}
.fs0_c00180{font-size:45.333333pt;}
.fs1_c00180{font-size:53.333333pt;}
.y0_c00180{bottom:0.000000pt;}
.y2d_c00180{bottom:57.266686pt;}
.y2c_c00180{bottom:97.933353pt;}
.y2b_c00180{bottom:111.400020pt;}
.y2a_c00180{bottom:125.133353pt;}
.y29_c00180{bottom:138.600020pt;}
.y28_c00180{bottom:152.333353pt;}
.y27_c00180{bottom:165.800020pt;}
.y26_c00180{bottom:179.866686pt;}
.y25_c00180{bottom:193.000020pt;}
.y24_c00180{bottom:207.066686pt;}
.y23_c00180{bottom:220.466686pt;}
.y22_c00180{bottom:233.933353pt;}
.y21_c00180{bottom:247.400020pt;}
.y20_c00180{bottom:261.466686pt;}
.y1f_c00180{bottom:274.600020pt;}
.y1e_c00180{bottom:288.666686pt;}
.y1d_c00180{bottom:301.800020pt;}
.y1c_c00180{bottom:315.866686pt;}
.y1b_c00180{bottom:329.000020pt;}
.y1a_c00180{bottom:343.066686pt;}
.y19_c00180{bottom:356.466686pt;}
.y18_c00180{bottom:369.933353pt;}
.y17_c00180{bottom:383.400020pt;}
.y16_c00180{bottom:397.133353pt;}
.y15_c00180{bottom:410.600020pt;}
.y14_c00180{bottom:424.333353pt;}
.y13_c00180{bottom:437.800020pt;}
.y12_c00180{bottom:451.866686pt;}
.y11_c00180{bottom:492.200020pt;}
.y10_c00180{bottom:509.466686pt;}
.yf_c00180{bottom:526.733353pt;}
.ye_c00180{bottom:544.000020pt;}
.yd_c00180{bottom:561.000020pt;}
.yc_c00180{bottom:578.266686pt;}
.yb_c00180{bottom:595.866686pt;}
.ya_c00180{bottom:612.800020pt;}
.y9_c00180{bottom:630.133353pt;}
.y8_c00180{bottom:647.400020pt;}
.y7_c00180{bottom:664.666686pt;}
.y6_c00180{bottom:682.266686pt;}
.y5_c00180{bottom:698.866686pt;}
.y4_c00180{bottom:716.466686pt;}
.y3_c00180{bottom:733.800020pt;}
.y2_c00180{bottom:750.733353pt;}
.y1_c00180{bottom:788.200020pt;}
.h2_c00180{height:44.492188pt;}
.h3_c00180{height:52.343750pt;}
.h1_c00180{height:851.333333pt;}
.h0_c00180{height:851.533333pt;}
.w1_c00180{width:572.000000pt;}
.w0_c00180{width:572.133333pt;}
.x0_c00180{left:0.000000pt;}
.x2_c00180{left:80.333333pt;}
.x1_c00180{left:81.600000pt;}
.x4_c00180{left:85.733333pt;}
.x3_c00180{left:95.333333pt;}
.x5_c00180{left:110.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_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_ddf221f72d052f3519019440.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00181;src:url('chunks/assets/font_e23a3b8aef0c2128d00bb959.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.sc__c00181{text-shadow:none;}
.sc0_c00181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00181{-webkit-text-stroke:0px transparent;}
.sc0_c00181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00181{word-spacing:-15.000000px;}
.ws0_c00181{word-spacing:-12.750000px;}
.ws2_c00181{word-spacing:0.000000px;}
._8_c00181{margin-left:-13.758039px;}
._9_c00181{margin-left:-12.600000px;}
._a_c00181{margin-left:-10.514991px;}
._14_c00181{margin-left:-9.213117px;}
._19_c00181{margin-left:-6.899994px;}
._d_c00181{margin-left:-5.685009px;}
._f_c00181{margin-left:-4.466913px;}
._3_c00181{margin-left:-2.916078px;}
._0_c00181{margin-left:-1.383018px;}
._2_c00181{width:1.278009px;}
._6_c00181{width:2.400000px;}
._1_c00181{width:3.599988px;}
._7_c00181{width:5.123982px;}
._15_c00181{width:6.341925px;}
._10_c00181{width:7.367964px;}
._c_c00181{width:8.447964px;}
._b_c00181{width:9.629982px;}
._5_c00181{width:10.955928px;}
._4_c00181{width:12.557943px;}
._12_c00181{width:13.905039px;}
._1c_c00181{width:15.179790px;}
._11_c00181{width:16.314027px;}
._e_c00181{width:18.000000px;}
._18_c00181{width:19.143405px;}
._13_c00181{width:20.615928px;}
._17_c00181{width:21.816144px;}
._1b_c00181{width:22.932150px;}
._1a_c00181{width:24.465159px;}
._16_c00181{width:25.899054px;}
.fc1_c00181{color:transparent;}
.fc0_c00181{color:rgb(35,31,32);}
.fs0_c00181{font-size:51.000000px;}
.fs1_c00181{font-size:60.000000px;}
.fs2_c00181{font-size:72.000000px;}
.y0_c00181{bottom:0.000000px;}
.y2c_c00181{bottom:64.425022px;}
.y2b_c00181{bottom:110.175022px;}
.y2a_c00181{bottom:125.325022px;}
.y29_c00181{bottom:141.150022px;}
.y28_c00181{bottom:156.225022px;}
.y27_c00181{bottom:171.375022px;}
.y26_c00181{bottom:186.525022px;}
.y25_c00181{bottom:201.975022px;}
.y24_c00181{bottom:217.125022px;}
.y23_c00181{bottom:232.950022px;}
.y22_c00181{bottom:248.025022px;}
.y21_c00181{bottom:263.550022px;}
.y20_c00181{bottom:278.625022px;}
.y1f_c00181{bottom:294.150022px;}
.y1e_c00181{bottom:308.925022px;}
.y1d_c00181{bottom:324.750022px;}
.y1c_c00181{bottom:339.825022px;}
.y1b_c00181{bottom:355.350022px;}
.y1a_c00181{bottom:370.125022px;}
.y19_c00181{bottom:385.575022px;}
.y18_c00181{bottom:400.725022px;}
.y17_c00181{bottom:416.550022px;}
.y16_c00181{bottom:431.325022px;}
.y15_c00181{bottom:447.150022px;}
.y14_c00181{bottom:461.925022px;}
.y13_c00181{bottom:477.750022px;}
.y12_c00181{bottom:525.300022px;}
.y11_c00181{bottom:544.725022px;}
.y10_c00181{bottom:564.150022px;}
.yf_c00181{bottom:583.200022px;}
.ye_c00181{bottom:602.625022px;}
.yd_c00181{bottom:622.425022px;}
.yc_c00181{bottom:641.550022px;}
.yb_c00181{bottom:661.350022px;}
.ya_c00181{bottom:680.775022px;}
.y9_c00181{bottom:700.200022px;}
.y8_c00181{bottom:719.325022px;}
.y7_c00181{bottom:738.750022px;}
.y6_c00181{bottom:767.175022px;}
.y5_c00181{bottom:786.600022px;}
.y4_c00181{bottom:805.725022px;}
.y3_c00181{bottom:825.525022px;}
.y2_c00181{bottom:844.575022px;}
.y1_c00181{bottom:886.725022px;}
.h2_c00181{height:50.028809px;}
.h5_c00181{height:50.053711px;}
.h3_c00181{height:58.886719px;}
.h4_c00181{height:70.664062px;}
.h1_c00181{height:957.750000px;}
.h0_c00181{height:957.975000px;}
.w0_c00181{width:641.850030px;}
.w1_c00181{width:642.000000px;}
.x0_c00181{left:0.000000px;}
.x2_c00181{left:81.375000px;}
.x5_c00181{left:86.400000px;}
.x3_c00181{left:97.200000px;}
.x4_c00181{left:113.775000px;}
.x1_c00181{left:289.050000px;}
.x6_c00181{left:532.050000px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls0_c00181{letter-spacing:0.000000pt;}
.ws1_c00181{word-spacing:-13.333333pt;}
.ws0_c00181{word-spacing:-11.333333pt;}
.ws2_c00181{word-spacing:0.000000pt;}
._8_c00181{margin-left:-12.229368pt;}
._9_c00181{margin-left:-11.200000pt;}
._a_c00181{margin-left:-9.346659pt;}
._14_c00181{margin-left:-8.189437pt;}
._19_c00181{margin-left:-6.133328pt;}
._d_c00181{margin-left:-5.053341pt;}
._f_c00181{margin-left:-3.970589pt;}
._3_c00181{margin-left:-2.592069pt;}
._0_c00181{margin-left:-1.229349pt;}
._2_c00181{width:1.136008pt;}
._6_c00181{width:2.133333pt;}
._1_c00181{width:3.199989pt;}
._7_c00181{width:4.554651pt;}
._15_c00181{width:5.637267pt;}
._10_c00181{width:6.549301pt;}
._c_c00181{width:7.509301pt;}
._b_c00181{width:8.559984pt;}
._5_c00181{width:9.738603pt;}
._4_c00181{width:11.162616pt;}
._12_c00181{width:12.360035pt;}
._1c_c00181{width:13.493147pt;}
._11_c00181{width:14.501357pt;}
._e_c00181{width:16.000000pt;}
._18_c00181{width:17.016360pt;}
._13_c00181{width:18.325269pt;}
._17_c00181{width:19.392128pt;}
._1b_c00181{width:20.384133pt;}
._1a_c00181{width:21.746808pt;}
._16_c00181{width:23.021381pt;}
.fs0_c00181{font-size:45.333333pt;}
.fs1_c00181{font-size:53.333333pt;}
.fs2_c00181{font-size:64.000000pt;}
.y0_c00181{bottom:0.000000pt;}
.y2c_c00181{bottom:57.266686pt;}
.y2b_c00181{bottom:97.933353pt;}
.y2a_c00181{bottom:111.400020pt;}
.y29_c00181{bottom:125.466686pt;}
.y28_c00181{bottom:138.866686pt;}
.y27_c00181{bottom:152.333353pt;}
.y26_c00181{bottom:165.800020pt;}
.y25_c00181{bottom:179.533353pt;}
.y24_c00181{bottom:193.000020pt;}
.y23_c00181{bottom:207.066686pt;}
.y22_c00181{bottom:220.466686pt;}
.y21_c00181{bottom:234.266686pt;}
.y20_c00181{bottom:247.666686pt;}
.y1f_c00181{bottom:261.466686pt;}
.y1e_c00181{bottom:274.600020pt;}
.y1d_c00181{bottom:288.666686pt;}
.y1c_c00181{bottom:302.066686pt;}
.y1b_c00181{bottom:315.866686pt;}
.y1a_c00181{bottom:329.000020pt;}
.y19_c00181{bottom:342.733353pt;}
.y18_c00181{bottom:356.200020pt;}
.y17_c00181{bottom:370.266686pt;}
.y16_c00181{bottom:383.400020pt;}
.y15_c00181{bottom:397.466686pt;}
.y14_c00181{bottom:410.600020pt;}
.y13_c00181{bottom:424.666686pt;}
.y12_c00181{bottom:466.933353pt;}
.y11_c00181{bottom:484.200020pt;}
.y10_c00181{bottom:501.466686pt;}
.yf_c00181{bottom:518.400020pt;}
.ye_c00181{bottom:535.666686pt;}
.yd_c00181{bottom:553.266686pt;}
.yc_c00181{bottom:570.266686pt;}
.yb_c00181{bottom:587.866686pt;}
.ya_c00181{bottom:605.133353pt;}
.y9_c00181{bottom:622.400020pt;}
.y8_c00181{bottom:639.400020pt;}
.y7_c00181{bottom:656.666686pt;}
.y6_c00181{bottom:681.933353pt;}
.y5_c00181{bottom:699.200020pt;}
.y4_c00181{bottom:716.200020pt;}
.y3_c00181{bottom:733.800020pt;}
.y2_c00181{bottom:750.733353pt;}
.y1_c00181{bottom:788.200020pt;}
.h2_c00181{height:44.470052pt;}
.h5_c00181{height:44.492188pt;}
.h3_c00181{height:52.343750pt;}
.h4_c00181{height:62.812500pt;}
.h1_c00181{height:851.333333pt;}
.h0_c00181{height:851.533333pt;}
.w0_c00181{width:570.533360pt;}
.w1_c00181{width:570.666667pt;}
.x0_c00181{left:0.000000pt;}
.x2_c00181{left:72.333333pt;}
.x5_c00181{left:76.800000pt;}
.x3_c00181{left:86.400000pt;}
.x4_c00181{left:101.133333pt;}
.x1_c00181{left:256.933333pt;}
.x6_c00181{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c7f90c17b92cb5b44a80ed52.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00182;src:url('chunks/assets/font_be3d1a7978988a4684d51475.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00182{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00182{word-spacing:-15.000000px;}
.ws0_c00182{word-spacing:-12.750000px;}
.ws2_c00182{word-spacing:0.000000px;}
._8_c00182{margin-left:-12.382947px;}
._7_c00182{margin-left:-10.417053px;}
._10_c00182{margin-left:-9.416133px;}
._14_c00182{margin-left:-7.452156px;}
._19_c00182{margin-left:-6.339075px;}
._0_c00182{margin-left:-4.917012px;}
._f_c00182{margin-left:-3.900000px;}
._15_c00182{margin-left:-2.741997px;}
._1_c00182{margin-left:-1.650003px;}
._2_c00182{width:1.644039px;}
._3_c00182{width:3.284796px;}
._4_c00182{width:5.184156px;}
._5_c00182{width:6.360000px;}
._6_c00182{width:8.222970px;}
._11_c00182{width:9.774168px;}
._b_c00182{width:10.787883px;}
._9_c00182{width:12.323844px;}
._a_c00182{width:13.547805px;}
._1a_c00182{width:14.754078px;}
._d_c00182{width:16.043844px;}
._c_c00182{width:17.700000px;}
._e_c00182{width:18.846180px;}
._16_c00182{width:20.291922px;}
._13_c00182{width:21.323649px;}
._12_c00182{width:22.991532px;}
._18_c00182{width:25.251633px;}
._17_c00182{width:27.221997px;}
._1b_c00182{width:28.432698px;}
.fc1_c00182{color:transparent;}
.fc0_c00182{color:rgb(35,31,32);}
.fs0_c00182{font-size:51.000000px;}
.fs1_c00182{font-size:60.000000px;}
.fs2_c00182{font-size:72.000000px;}
.y0_c00182{bottom:0.000000px;}
.y2d_c00182{bottom:64.800022px;}
.y2c_c00182{bottom:110.175022px;}
.y2b_c00182{bottom:125.325022px;}
.y2a_c00182{bottom:141.150022px;}
.y29_c00182{bottom:156.225022px;}
.y28_c00182{bottom:171.750022px;}
.y27_c00182{bottom:186.525022px;}
.y26_c00182{bottom:201.975022px;}
.y25_c00182{bottom:217.125022px;}
.y24_c00182{bottom:232.575022px;}
.y23_c00182{bottom:248.025022px;}
.y22_c00182{bottom:263.175022px;}
.y21_c00182{bottom:278.325022px;}
.y20_c00182{bottom:293.775022px;}
.y1f_c00182{bottom:308.925022px;}
.y1e_c00182{bottom:324.375022px;}
.y1d_c00182{bottom:339.525022px;}
.y1c_c00182{bottom:355.350022px;}
.y1b_c00182{bottom:370.125022px;}
.y1a_c00182{bottom:385.950022px;}
.y19_c00182{bottom:401.025022px;}
.y18_c00182{bottom:416.550022px;}
.y17_c00182{bottom:431.325022px;}
.y16_c00182{bottom:447.150022px;}
.y15_c00182{bottom:462.225022px;}
.y14_c00182{bottom:477.375022px;}
.y13_c00182{bottom:492.525022px;}
.y12_c00182{bottom:534.225022px;}
.y11_c00182{bottom:553.725022px;}
.y10_c00182{bottom:573.150022px;}
.yf_c00182{bottom:592.575022px;}
.ye_c00182{bottom:612.000022px;}
.yd_c00182{bottom:631.125022px;}
.yc_c00182{bottom:650.550022px;}
.yb_c00182{bottom:670.350022px;}
.ya_c00182{bottom:689.775022px;}
.y9_c00182{bottom:709.200022px;}
.y8_c00182{bottom:728.325022px;}
.y7_c00182{bottom:748.125022px;}
.y6_c00182{bottom:767.550022px;}
.y5_c00182{bottom:786.600022px;}
.y4_c00182{bottom:805.725022px;}
.y3_c00182{bottom:825.525022px;}
.y2_c00182{bottom:844.950022px;}
.y1_c00182{bottom:886.725022px;}
.h2_c00182{height:50.053711px;}
.h3_c00182{height:58.886719px;}
.h4_c00182{height:70.664062px;}
.h1_c00182{height:957.750000px;}
.h0_c00182{height:957.975000px;}
.w1_c00182{width:643.500000px;}
.w0_c00182{width:643.650000px;}
.x0_c00182{left:0.000000px;}
.x1_c00182{left:91.800000px;}
.x4_c00182{left:96.450000px;}
.x2_c00182{left:106.950000px;}
.x3_c00182{left:123.150000px;}
.x5_c00182{left:124.200000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls0_c00182{letter-spacing:0.000000pt;}
.ws1_c00182{word-spacing:-13.333333pt;}
.ws0_c00182{word-spacing:-11.333333pt;}
.ws2_c00182{word-spacing:0.000000pt;}
._8_c00182{margin-left:-11.007064pt;}
._7_c00182{margin-left:-9.259603pt;}
._10_c00182{margin-left:-8.369896pt;}
._14_c00182{margin-left:-6.624139pt;}
._19_c00182{margin-left:-5.634733pt;}
._0_c00182{margin-left:-4.370677pt;}
._f_c00182{margin-left:-3.466667pt;}
._15_c00182{margin-left:-2.437331pt;}
._1_c00182{margin-left:-1.466669pt;}
._2_c00182{width:1.461368pt;}
._3_c00182{width:2.919819pt;}
._4_c00182{width:4.608139pt;}
._5_c00182{width:5.653333pt;}
._6_c00182{width:7.309307pt;}
._11_c00182{width:8.688149pt;}
._b_c00182{width:9.589229pt;}
._9_c00182{width:10.954528pt;}
._a_c00182{width:12.042493pt;}
._1a_c00182{width:13.114736pt;}
._d_c00182{width:14.261195pt;}
._c_c00182{width:15.733333pt;}
._e_c00182{width:16.752160pt;}
._16_c00182{width:18.037264pt;}
._13_c00182{width:18.954355pt;}
._12_c00182{width:20.436917pt;}
._18_c00182{width:22.445896pt;}
._17_c00182{width:24.197331pt;}
._1b_c00182{width:25.273509pt;}
.fs0_c00182{font-size:45.333333pt;}
.fs1_c00182{font-size:53.333333pt;}
.fs2_c00182{font-size:64.000000pt;}
.y0_c00182{bottom:0.000000pt;}
.y2d_c00182{bottom:57.600020pt;}
.y2c_c00182{bottom:97.933353pt;}
.y2b_c00182{bottom:111.400020pt;}
.y2a_c00182{bottom:125.466686pt;}
.y29_c00182{bottom:138.866686pt;}
.y28_c00182{bottom:152.666686pt;}
.y27_c00182{bottom:165.800020pt;}
.y26_c00182{bottom:179.533353pt;}
.y25_c00182{bottom:193.000020pt;}
.y24_c00182{bottom:206.733353pt;}
.y23_c00182{bottom:220.466686pt;}
.y22_c00182{bottom:233.933353pt;}
.y21_c00182{bottom:247.400020pt;}
.y20_c00182{bottom:261.133353pt;}
.y1f_c00182{bottom:274.600020pt;}
.y1e_c00182{bottom:288.333353pt;}
.y1d_c00182{bottom:301.800020pt;}
.y1c_c00182{bottom:315.866686pt;}
.y1b_c00182{bottom:329.000020pt;}
.y1a_c00182{bottom:343.066686pt;}
.y19_c00182{bottom:356.466686pt;}
.y18_c00182{bottom:370.266686pt;}
.y17_c00182{bottom:383.400020pt;}
.y16_c00182{bottom:397.466686pt;}
.y15_c00182{bottom:410.866686pt;}
.y14_c00182{bottom:424.333353pt;}
.y13_c00182{bottom:437.800020pt;}
.y12_c00182{bottom:474.866686pt;}
.y11_c00182{bottom:492.200020pt;}
.y10_c00182{bottom:509.466686pt;}
.yf_c00182{bottom:526.733353pt;}
.ye_c00182{bottom:544.000020pt;}
.yd_c00182{bottom:561.000020pt;}
.yc_c00182{bottom:578.266686pt;}
.yb_c00182{bottom:595.866686pt;}
.ya_c00182{bottom:613.133353pt;}
.y9_c00182{bottom:630.400020pt;}
.y8_c00182{bottom:647.400020pt;}
.y7_c00182{bottom:665.000020pt;}
.y6_c00182{bottom:682.266686pt;}
.y5_c00182{bottom:699.200020pt;}
.y4_c00182{bottom:716.200020pt;}
.y3_c00182{bottom:733.800020pt;}
.y2_c00182{bottom:751.066686pt;}
.y1_c00182{bottom:788.200020pt;}
.h2_c00182{height:44.492188pt;}
.h3_c00182{height:52.343750pt;}
.h4_c00182{height:62.812500pt;}
.h1_c00182{height:851.333333pt;}
.h0_c00182{height:851.533333pt;}
.w1_c00182{width:572.000000pt;}
.w0_c00182{width:572.133333pt;}
.x0_c00182{left:0.000000pt;}
.x1_c00182{left:81.600000pt;}
.x4_c00182{left:85.733333pt;}
.x2_c00182{left:95.066667pt;}
.x3_c00182{left:109.466667pt;}
.x5_c00182{left:110.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_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_f6cdf509970cfb4ee8735970.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00183;src:url('chunks/assets/font_c35aec3d1cb62b025279f981.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00183{vertical-align:0.000000px;}
.ls1_c00183{letter-spacing:0.000000px;}
.ls0_c00183{letter-spacing:16.800000px;}
.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:-15.000000px;}
.ws1_c00183{word-spacing:-12.750000px;}
.ws2_c00183{word-spacing:0.000000px;}
._d_c00183{margin-left:-13.436865px;}
._b_c00183{margin-left:-10.980000px;}
._c_c00183{margin-left:-9.420000px;}
._f_c00183{margin-left:-6.449859px;}
._6_c00183{margin-left:-5.100000px;}
._18_c00183{margin-left:-4.001766px;}
._3_c00183{margin-left:-2.916078px;}
._0_c00183{margin-left:-1.383018px;}
._2_c00183{width:1.278009px;}
._5_c00183{width:2.508114px;}
._1_c00183{width:3.599988px;}
._12_c00183{width:4.703460px;}
._4_c00183{width:5.711946px;}
._a_c00183{width:7.019910px;}
._9_c00183{width:8.102385px;}
._11_c00183{width:9.378825px;}
._7_c00183{width:10.383018px;}
._8_c00183{width:11.403018px;}
._e_c00183{width:13.904946px;}
._10_c00183{width:15.254676px;}
._13_c00183{width:21.399039px;}
._19_c00183{width:22.932150px;}
._14_c00183{width:24.465159px;}
._15_c00183{width:38.472003px;}
._17_c00183{width:39.966099px;}
._16_c00183{width:44.849961px;}
.fc2_c00183{color:transparent;}
.fc1_c00183{color:rgb(0,0,0);}
.fc0_c00183{color:rgb(35,31,32);}
.fs0_c00183{font-size:51.000000px;}
.fs1_c00183{font-size:60.000000px;}
.fs2_c00183{font-size:72.000000px;}
.y0_c00183{bottom:0.000000px;}
.y2e_c00183{bottom:64.425022px;}
.y2d_c00183{bottom:110.550022px;}
.y2c_c00183{bottom:125.625022px;}
.y2b_c00183{bottom:141.150022px;}
.y2a_c00183{bottom:156.225022px;}
.y29_c00183{bottom:171.750022px;}
.y28_c00183{bottom:186.825022px;}
.y27_c00183{bottom:201.975022px;}
.y26_c00183{bottom:217.425022px;}
.y25_c00183{bottom:232.875022px;}
.y24_c00183{bottom:248.025022px;}
.y23_c00183{bottom:263.175022px;}
.y22_c00183{bottom:278.625022px;}
.y21_c00183{bottom:293.775022px;}
.y20_c00183{bottom:308.925022px;}
.y1f_c00183{bottom:324.375022px;}
.y1e_c00183{bottom:339.525022px;}
.y1d_c00183{bottom:355.350022px;}
.y1c_c00183{bottom:370.425022px;}
.y1b_c00183{bottom:385.950022px;}
.y1a_c00183{bottom:401.025022px;}
.y19_c00183{bottom:416.550022px;}
.y18_c00183{bottom:431.325022px;}
.y17_c00183{bottom:446.775022px;}
.y16_c00183{bottom:462.225022px;}
.y15_c00183{bottom:477.750022px;}
.y14_c00183{bottom:492.825022px;}
.y13_c00183{bottom:508.275022px;}
.y12_c00183{bottom:523.425022px;}
.y11_c00183{bottom:538.575022px;}
.y10_c00183{bottom:554.025022px;}
.yf_c00183{bottom:569.175022px;}
.ye_c00183{bottom:584.625022px;}
.yd_c00183{bottom:600.075022px;}
.yc_c00183{bottom:615.225022px;}
.yb_c00183{bottom:630.375022px;}
.ya_c00183{bottom:689.775022px;}
.y9_c00183{bottom:709.125022px;}
.y8_c00183{bottom:728.625022px;}
.y7_c00183{bottom:748.125022px;}
.y6_c00183{bottom:767.175022px;}
.y5_c00183{bottom:786.600022px;}
.y4_c00183{bottom:805.725022px;}
.y3_c00183{bottom:825.150022px;}
.y2_c00183{bottom:844.575022px;}
.y1_c00183{bottom:886.725022px;}
.h2_c00183{height:50.028809px;}
.h5_c00183{height:50.053711px;}
.h3_c00183{height:58.886719px;}
.h4_c00183{height:70.664062px;}
.h1_c00183{height:957.750000px;}
.h0_c00183{height:957.975000px;}
.w0_c00183{width:641.850030px;}
.w1_c00183{width:642.000000px;}
.x0_c00183{left:0.000000px;}
.x3_c00183{left:81.375000px;}
.x5_c00183{left:86.400000px;}
.x2_c00183{left:97.200000px;}
.x6_c00183{left:113.025000px;}
.x4_c00183{left:114.150000px;}
.x1_c00183{left:289.050000px;}
.x7_c00183{left:532.050000px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls1_c00183{letter-spacing:0.000000pt;}
.ls0_c00183{letter-spacing:14.933333pt;}
.ws0_c00183{word-spacing:-13.333333pt;}
.ws1_c00183{word-spacing:-11.333333pt;}
.ws2_c00183{word-spacing:0.000000pt;}
._d_c00183{margin-left:-11.943880pt;}
._b_c00183{margin-left:-9.760000pt;}
._c_c00183{margin-left:-8.373333pt;}
._f_c00183{margin-left:-5.733208pt;}
._6_c00183{margin-left:-4.533333pt;}
._18_c00183{margin-left:-3.557125pt;}
._3_c00183{margin-left:-2.592069pt;}
._0_c00183{margin-left:-1.229349pt;}
._2_c00183{width:1.136008pt;}
._5_c00183{width:2.229435pt;}
._1_c00183{width:3.199989pt;}
._12_c00183{width:4.180853pt;}
._4_c00183{width:5.077285pt;}
._a_c00183{width:6.239920pt;}
._9_c00183{width:7.202120pt;}
._11_c00183{width:8.336733pt;}
._7_c00183{width:9.229349pt;}
._8_c00183{width:10.136016pt;}
._e_c00183{width:12.359952pt;}
._10_c00183{width:13.559712pt;}
._13_c00183{width:19.021368pt;}
._19_c00183{width:20.384133pt;}
._14_c00183{width:21.746808pt;}
._15_c00183{width:34.197336pt;}
._17_c00183{width:35.525421pt;}
._16_c00183{width:39.866632pt;}
.fs0_c00183{font-size:45.333333pt;}
.fs1_c00183{font-size:53.333333pt;}
.fs2_c00183{font-size:64.000000pt;}
.y0_c00183{bottom:0.000000pt;}
.y2e_c00183{bottom:57.266686pt;}
.y2d_c00183{bottom:98.266686pt;}
.y2c_c00183{bottom:111.666686pt;}
.y2b_c00183{bottom:125.466686pt;}
.y2a_c00183{bottom:138.866686pt;}
.y29_c00183{bottom:152.666686pt;}
.y28_c00183{bottom:166.066686pt;}
.y27_c00183{bottom:179.533353pt;}
.y26_c00183{bottom:193.266686pt;}
.y25_c00183{bottom:207.000020pt;}
.y24_c00183{bottom:220.466686pt;}
.y23_c00183{bottom:233.933353pt;}
.y22_c00183{bottom:247.666686pt;}
.y21_c00183{bottom:261.133353pt;}
.y20_c00183{bottom:274.600020pt;}
.y1f_c00183{bottom:288.333353pt;}
.y1e_c00183{bottom:301.800020pt;}
.y1d_c00183{bottom:315.866686pt;}
.y1c_c00183{bottom:329.266686pt;}
.y1b_c00183{bottom:343.066686pt;}
.y1a_c00183{bottom:356.466686pt;}
.y19_c00183{bottom:370.266686pt;}
.y18_c00183{bottom:383.400020pt;}
.y17_c00183{bottom:397.133353pt;}
.y16_c00183{bottom:410.866686pt;}
.y15_c00183{bottom:424.666686pt;}
.y14_c00183{bottom:438.066686pt;}
.y13_c00183{bottom:451.800020pt;}
.y12_c00183{bottom:465.266686pt;}
.y11_c00183{bottom:478.733353pt;}
.y10_c00183{bottom:492.466686pt;}
.yf_c00183{bottom:505.933353pt;}
.ye_c00183{bottom:519.666686pt;}
.yd_c00183{bottom:533.400020pt;}
.yc_c00183{bottom:546.866686pt;}
.yb_c00183{bottom:560.333353pt;}
.ya_c00183{bottom:613.133353pt;}
.y9_c00183{bottom:630.333353pt;}
.y8_c00183{bottom:647.666686pt;}
.y7_c00183{bottom:665.000020pt;}
.y6_c00183{bottom:681.933353pt;}
.y5_c00183{bottom:699.200020pt;}
.y4_c00183{bottom:716.200020pt;}
.y3_c00183{bottom:733.466686pt;}
.y2_c00183{bottom:750.733353pt;}
.y1_c00183{bottom:788.200020pt;}
.h2_c00183{height:44.470052pt;}
.h5_c00183{height:44.492188pt;}
.h3_c00183{height:52.343750pt;}
.h4_c00183{height:62.812500pt;}
.h1_c00183{height:851.333333pt;}
.h0_c00183{height:851.533333pt;}
.w0_c00183{width:570.533360pt;}
.w1_c00183{width:570.666667pt;}
.x0_c00183{left:0.000000pt;}
.x3_c00183{left:72.333333pt;}
.x5_c00183{left:76.800000pt;}
.x2_c00183{left:86.400000pt;}
.x6_c00183{left:100.466667pt;}
.x4_c00183{left:101.466667pt;}
.x1_c00183{left:256.933333pt;}
.x7_c00183{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_40e70614a551d1aed8fee4d4.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00184;src:url('chunks/assets/font_be3d1a7978988a4684d51475.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00184{letter-spacing:0.000000px;}
.sc__c00184{text-shadow:none;}
.sc0_c00184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00184{-webkit-text-stroke:0px transparent;}
.sc0_c00184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00184{word-spacing:-15.000000px;}
.ws0_c00184{word-spacing:-12.750000px;}
.ws2_c00184{word-spacing:0.000000px;}
._b_c00184{margin-left:-11.628000px;}
._7_c00184{margin-left:-10.572000px;}
._8_c00184{margin-left:-9.228000px;}
._e_c00184{margin-left:-6.900000px;}
._15_c00184{margin-left:-5.490069px;}
._10_c00184{margin-left:-4.427976px;}
._0_c00184{margin-left:-3.000000px;}
._1_c00184{margin-left:-1.500000px;}
._4_c00184{width:1.680000px;}
._5_c00184{width:2.700000px;}
._a_c00184{width:4.080000px;}
._3_c00184{width:5.292000px;}
._2_c00184{width:6.300000px;}
._9_c00184{width:7.560000px;}
._6_c00184{width:9.000000px;}
._13_c00184{width:10.169994px;}
._12_c00184{width:11.336985px;}
._f_c00184{width:12.540000px;}
._d_c00184{width:13.560000px;}
._14_c00184{width:15.138024px;}
._c_c00184{width:16.728000px;}
._11_c00184{width:21.749985px;}
._16_c00184{width:23.250009px;}
._17_c00184{width:26.249970px;}
.fc1_c00184{color:transparent;}
.fc0_c00184{color:rgb(35,31,32);}
.fs2_c00184{font-size:51.000000px;}
.fs0_c00184{font-size:60.000000px;}
.fs1_c00184{font-size:72.000000px;}
.y0_c00184{bottom:0.000000px;}
.y29_c00184{bottom:64.800022px;}
.y28_c00184{bottom:110.550022px;}
.y27_c00184{bottom:125.625022px;}
.y26_c00184{bottom:141.075022px;}
.y25_c00184{bottom:156.225022px;}
.y24_c00184{bottom:171.375022px;}
.y23_c00184{bottom:186.525022px;}
.y22_c00184{bottom:201.975022px;}
.y21_c00184{bottom:217.125022px;}
.y20_c00184{bottom:232.575022px;}
.y1f_c00184{bottom:247.725022px;}
.y1e_c00184{bottom:263.550022px;}
.y1d_c00184{bottom:278.625022px;}
.y1c_c00184{bottom:293.775022px;}
.y1b_c00184{bottom:309.225022px;}
.y1a_c00184{bottom:324.750022px;}
.y19_c00184{bottom:339.525022px;}
.y18_c00184{bottom:354.975022px;}
.y17_c00184{bottom:370.425022px;}
.y16_c00184{bottom:385.950022px;}
.y15_c00184{bottom:400.725022px;}
.y14_c00184{bottom:416.175022px;}
.y13_c00184{bottom:431.325022px;}
.y12_c00184{bottom:447.150022px;}
.y11_c00184{bottom:461.925022px;}
.yf_c00184{bottom:572.775022px;}
.ye_c00184{bottom:592.575022px;}
.yd_c00184{bottom:612.000022px;}
.yc_c00184{bottom:631.425022px;}
.yb_c00184{bottom:650.550022px;}
.ya_c00184{bottom:670.350022px;}
.y9_c00184{bottom:689.775022px;}
.y8_c00184{bottom:708.825022px;}
.y7_c00184{bottom:728.625022px;}
.y6_c00184{bottom:747.750022px;}
.y5_c00184{bottom:767.550022px;}
.y4_c00184{bottom:786.225022px;}
.y3_c00184{bottom:806.025022px;}
.y2_c00184{bottom:825.150022px;}
.y1_c00184{bottom:844.950022px;}
.y10_c00184{bottom:886.725022px;}
.h4_c00184{height:50.053711px;}
.h3_c00184{height:58.886719px;}
.h2_c00184{height:70.664062px;}
.h1_c00184{height:957.750000px;}
.h0_c00184{height:957.975000px;}
.w1_c00184{width:643.500000px;}
.w0_c00184{width:643.650000px;}
.x0_c00184{left:0.000000px;}
.x1_c00184{left:91.425000px;}
.x3_c00184{left:96.450000px;}
.x2_c00184{left:106.950000px;}
.x5_c00184{left:123.150000px;}
.x4_c00184{left:124.200000px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls0_c00184{letter-spacing:0.000000pt;}
.ws1_c00184{word-spacing:-13.333333pt;}
.ws0_c00184{word-spacing:-11.333333pt;}
.ws2_c00184{word-spacing:0.000000pt;}
._b_c00184{margin-left:-10.336000pt;}
._7_c00184{margin-left:-9.397333pt;}
._8_c00184{margin-left:-8.202667pt;}
._e_c00184{margin-left:-6.133333pt;}
._15_c00184{margin-left:-4.880061pt;}
._10_c00184{margin-left:-3.935979pt;}
._0_c00184{margin-left:-2.666667pt;}
._1_c00184{margin-left:-1.333333pt;}
._4_c00184{width:1.493333pt;}
._5_c00184{width:2.400000pt;}
._a_c00184{width:3.626667pt;}
._3_c00184{width:4.704000pt;}
._2_c00184{width:5.600000pt;}
._9_c00184{width:6.720000pt;}
._6_c00184{width:8.000000pt;}
._13_c00184{width:9.039995pt;}
._12_c00184{width:10.077320pt;}
._f_c00184{width:11.146667pt;}
._d_c00184{width:12.053333pt;}
._14_c00184{width:13.456021pt;}
._c_c00184{width:14.869333pt;}
._11_c00184{width:19.333320pt;}
._16_c00184{width:20.666675pt;}
._17_c00184{width:23.333307pt;}
.fs2_c00184{font-size:45.333333pt;}
.fs0_c00184{font-size:53.333333pt;}
.fs1_c00184{font-size:64.000000pt;}
.y0_c00184{bottom:0.000000pt;}
.y29_c00184{bottom:57.600020pt;}
.y28_c00184{bottom:98.266686pt;}
.y27_c00184{bottom:111.666686pt;}
.y26_c00184{bottom:125.400020pt;}
.y25_c00184{bottom:138.866686pt;}
.y24_c00184{bottom:152.333353pt;}
.y23_c00184{bottom:165.800020pt;}
.y22_c00184{bottom:179.533353pt;}
.y21_c00184{bottom:193.000020pt;}
.y20_c00184{bottom:206.733353pt;}
.y1f_c00184{bottom:220.200020pt;}
.y1e_c00184{bottom:234.266686pt;}
.y1d_c00184{bottom:247.666686pt;}
.y1c_c00184{bottom:261.133353pt;}
.y1b_c00184{bottom:274.866686pt;}
.y1a_c00184{bottom:288.666686pt;}
.y19_c00184{bottom:301.800020pt;}
.y18_c00184{bottom:315.533353pt;}
.y17_c00184{bottom:329.266686pt;}
.y16_c00184{bottom:343.066686pt;}
.y15_c00184{bottom:356.200020pt;}
.y14_c00184{bottom:369.933353pt;}
.y13_c00184{bottom:383.400020pt;}
.y12_c00184{bottom:397.466686pt;}
.y11_c00184{bottom:410.600020pt;}
.yf_c00184{bottom:509.133353pt;}
.ye_c00184{bottom:526.733353pt;}
.yd_c00184{bottom:544.000020pt;}
.yc_c00184{bottom:561.266686pt;}
.yb_c00184{bottom:578.266686pt;}
.ya_c00184{bottom:595.866686pt;}
.y9_c00184{bottom:613.133353pt;}
.y8_c00184{bottom:630.066686pt;}
.y7_c00184{bottom:647.666686pt;}
.y6_c00184{bottom:664.666686pt;}
.y5_c00184{bottom:682.266686pt;}
.y4_c00184{bottom:698.866686pt;}
.y3_c00184{bottom:716.466686pt;}
.y2_c00184{bottom:733.466686pt;}
.y1_c00184{bottom:751.066686pt;}
.y10_c00184{bottom:788.200020pt;}
.h4_c00184{height:44.492188pt;}
.h3_c00184{height:52.343750pt;}
.h2_c00184{height:62.812500pt;}
.h1_c00184{height:851.333333pt;}
.h0_c00184{height:851.533333pt;}
.w1_c00184{width:572.000000pt;}
.w0_c00184{width:572.133333pt;}
.x0_c00184{left:0.000000pt;}
.x1_c00184{left:81.266667pt;}
.x3_c00184{left:85.733333pt;}
.x2_c00184{left:95.066667pt;}
.x5_c00184{left:109.466667pt;}
.x4_c00184{left:110.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_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_f6cdf509970cfb4ee8735970.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00185;src:url('chunks/assets/font_4d5a0c5203ee8356863d5fb4.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00185{letter-spacing:0.000000px;}
.sc__c00185{text-shadow:none;}
.sc0_c00185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00185{-webkit-text-stroke:0px transparent;}
.sc0_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00185{word-spacing:-15.000000px;}
.ws1_c00185{word-spacing:0.000000px;}
._9_c00185{margin-left:-12.900000px;}
._8_c00185{margin-left:-11.892126px;}
._10_c00185{margin-left:-10.664736px;}
._5_c00185{margin-left:-9.468054px;}
._11_c00185{margin-left:-8.411976px;}
._12_c00185{margin-left:-6.648054px;}
._f_c00185{margin-left:-4.319970px;}
._3_c00185{margin-left:-2.916078px;}
._0_c00185{margin-left:-1.383018px;}
._2_c00185{width:1.278009px;}
._7_c00185{width:2.561991px;}
._1_c00185{width:3.599988px;}
._c_c00185{width:5.429865px;}
._d_c00185{width:7.283982px;}
._e_c00185{width:8.526033px;}
._15_c00185{width:9.902925px;}
._14_c00185{width:10.955808px;}
._a_c00185{width:12.389865px;}
._13_c00185{width:13.563048px;}
._1a_c00185{width:15.267144px;}
._b_c00185{width:16.403892px;}
._6_c00185{width:17.436108px;}
._4_c00185{width:19.283982px;}
._18_c00185{width:21.902928px;}
._17_c00185{width:23.520000px;}
._16_c00185{width:24.960000px;}
._19_c00185{width:27.465183px;}
.fc1_c00185{color:transparent;}
.fc0_c00185{color:rgb(35,31,32);}
.fs0_c00185{font-size:51.000000px;}
.fs1_c00185{font-size:60.000000px;}
.y0_c00185{bottom:0.000000px;}
.y26_c00185{bottom:64.425022px;}
.y25_c00185{bottom:110.550022px;}
.y24_c00185{bottom:125.625022px;}
.y23_c00185{bottom:141.150022px;}
.y22_c00185{bottom:155.925022px;}
.y21_c00185{bottom:171.375022px;}
.y20_c00185{bottom:186.825022px;}
.y1f_c00185{bottom:202.350022px;}
.y1e_c00185{bottom:217.125022px;}
.y1d_c00185{bottom:232.950022px;}
.y1c_c00185{bottom:247.725022px;}
.y1b_c00185{bottom:263.175022px;}
.y1a_c00185{bottom:307.425022px;}
.y19_c00185{bottom:326.925022px;}
.y18_c00185{bottom:346.725022px;}
.y17_c00185{bottom:366.150022px;}
.y16_c00185{bottom:385.200022px;}
.y15_c00185{bottom:404.625022px;}
.y14_c00185{bottom:424.425022px;}
.y13_c00185{bottom:443.925022px;}
.y12_c00185{bottom:463.350022px;}
.y11_c00185{bottom:504.375022px;}
.y10_c00185{bottom:564.150022px;}
.yf_c00185{bottom:583.200022px;}
.ye_c00185{bottom:603.000022px;}
.yd_c00185{bottom:622.425022px;}
.yc_c00185{bottom:641.550022px;}
.yb_c00185{bottom:660.975022px;}
.ya_c00185{bottom:680.775022px;}
.y9_c00185{bottom:699.825022px;}
.y8_c00185{bottom:719.625022px;}
.y7_c00185{bottom:738.750022px;}
.y6_c00185{bottom:758.175022px;}
.y5_c00185{bottom:777.600022px;}
.y4_c00185{bottom:797.025022px;}
.y3_c00185{bottom:825.150022px;}
.y2_c00185{bottom:844.950022px;}
.y1_c00185{bottom:886.725022px;}
.h2_c00185{height:50.028809px;}
.h4_c00185{height:50.053711px;}
.h3_c00185{height:58.886719px;}
.h1_c00185{height:957.750000px;}
.h0_c00185{height:957.975000px;}
.w0_c00185{width:641.850030px;}
.w1_c00185{width:642.000000px;}
.x0_c00185{left:0.000000px;}
.x4_c00185{left:80.250000px;}
.x3_c00185{left:81.375000px;}
.x5_c00185{left:86.400000px;}
.x2_c00185{left:97.200000px;}
.x6_c00185{left:114.150000px;}
.x1_c00185{left:289.050000px;}
.x7_c00185{left:532.050000px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls0_c00185{letter-spacing:0.000000pt;}
.ws0_c00185{word-spacing:-13.333333pt;}
.ws1_c00185{word-spacing:0.000000pt;}
._9_c00185{margin-left:-11.466667pt;}
._8_c00185{margin-left:-10.570779pt;}
._10_c00185{margin-left:-9.479765pt;}
._5_c00185{margin-left:-8.416048pt;}
._11_c00185{margin-left:-7.477312pt;}
._12_c00185{margin-left:-5.909381pt;}
._f_c00185{margin-left:-3.839973pt;}
._3_c00185{margin-left:-2.592069pt;}
._0_c00185{margin-left:-1.229349pt;}
._2_c00185{width:1.136008pt;}
._7_c00185{width:2.277325pt;}
._1_c00185{width:3.199989pt;}
._c_c00185{width:4.826547pt;}
._d_c00185{width:6.474651pt;}
._e_c00185{width:7.578696pt;}
._15_c00185{width:8.802600pt;}
._14_c00185{width:9.738496pt;}
._a_c00185{width:11.013213pt;}
._13_c00185{width:12.056043pt;}
._1a_c00185{width:13.570795pt;}
._b_c00185{width:14.581237pt;}
._6_c00185{width:15.498763pt;}
._4_c00185{width:17.141317pt;}
._18_c00185{width:19.469269pt;}
._17_c00185{width:20.906667pt;}
._16_c00185{width:22.186667pt;}
._19_c00185{width:24.413496pt;}
.fs0_c00185{font-size:45.333333pt;}
.fs1_c00185{font-size:53.333333pt;}
.y0_c00185{bottom:0.000000pt;}
.y26_c00185{bottom:57.266686pt;}
.y25_c00185{bottom:98.266686pt;}
.y24_c00185{bottom:111.666686pt;}
.y23_c00185{bottom:125.466686pt;}
.y22_c00185{bottom:138.600020pt;}
.y21_c00185{bottom:152.333353pt;}
.y20_c00185{bottom:166.066686pt;}
.y1f_c00185{bottom:179.866686pt;}
.y1e_c00185{bottom:193.000020pt;}
.y1d_c00185{bottom:207.066686pt;}
.y1c_c00185{bottom:220.200020pt;}
.y1b_c00185{bottom:233.933353pt;}
.y1a_c00185{bottom:273.266686pt;}
.y19_c00185{bottom:290.600020pt;}
.y18_c00185{bottom:308.200020pt;}
.y17_c00185{bottom:325.466686pt;}
.y16_c00185{bottom:342.400020pt;}
.y15_c00185{bottom:359.666686pt;}
.y14_c00185{bottom:377.266686pt;}
.y13_c00185{bottom:394.600020pt;}
.y12_c00185{bottom:411.866686pt;}
.y11_c00185{bottom:448.333353pt;}
.y10_c00185{bottom:501.466686pt;}
.yf_c00185{bottom:518.400020pt;}
.ye_c00185{bottom:536.000020pt;}
.yd_c00185{bottom:553.266686pt;}
.yc_c00185{bottom:570.266686pt;}
.yb_c00185{bottom:587.533353pt;}
.ya_c00185{bottom:605.133353pt;}
.y9_c00185{bottom:622.066686pt;}
.y8_c00185{bottom:639.666686pt;}
.y7_c00185{bottom:656.666686pt;}
.y6_c00185{bottom:673.933353pt;}
.y5_c00185{bottom:691.200020pt;}
.y4_c00185{bottom:708.466686pt;}
.y3_c00185{bottom:733.466686pt;}
.y2_c00185{bottom:751.066686pt;}
.y1_c00185{bottom:788.200020pt;}
.h2_c00185{height:44.470052pt;}
.h4_c00185{height:44.492188pt;}
.h3_c00185{height:52.343750pt;}
.h1_c00185{height:851.333333pt;}
.h0_c00185{height:851.533333pt;}
.w0_c00185{width:570.533360pt;}
.w1_c00185{width:570.666667pt;}
.x0_c00185{left:0.000000pt;}
.x4_c00185{left:71.333333pt;}
.x3_c00185{left:72.333333pt;}
.x5_c00185{left:76.800000pt;}
.x2_c00185{left:86.400000pt;}
.x6_c00185{left:101.466667pt;}
.x1_c00185{left:256.933333pt;}
.x7_c00185{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d699d62fca587e86fefae247.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00186;src:url('chunks/assets/font_6aef89cbdd2dd4971bf43e21.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00186{letter-spacing:0.000000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00186{word-spacing:-15.000000px;}
.ws0_c00186{word-spacing:-12.750000px;}
.ws2_c00186{word-spacing:0.000000px;}
._a_c00186{margin-left:-10.260000px;}
._4_c00186{margin-left:-8.820000px;}
._16_c00186{margin-left:-6.317976px;}
._12_c00186{margin-left:-4.917012px;}
._9_c00186{margin-left:-3.360000px;}
._8_c00186{margin-left:-1.500000px;}
._0_c00186{width:1.380000px;}
._1_c00186{width:2.460000px;}
._7_c00186{width:3.960000px;}
._5_c00186{width:5.100000px;}
._d_c00186{width:6.780000px;}
._6_c00186{width:8.280000px;}
._11_c00186{width:9.360000px;}
._e_c00186{width:10.500000px;}
._10_c00186{width:12.120000px;}
._f_c00186{width:13.140000px;}
._14_c00186{width:14.294994px;}
._15_c00186{width:15.300066px;}
._b_c00186{width:16.440000px;}
._2_c00186{width:18.300000px;}
._3_c00186{width:19.560000px;}
._c_c00186{width:20.820000px;}
._13_c00186{width:23.250000px;}
._17_c00186{width:24.749958px;}
._18_c00186{width:26.249970px;}
.fc1_c00186{color:transparent;}
.fc0_c00186{color:rgb(35,31,32);}
.fs1_c00186{font-size:51.000000px;}
.fs0_c00186{font-size:60.000000px;}
.y0_c00186{bottom:0.000000px;}
.y2a_c00186{bottom:64.425022px;}
.y29_c00186{bottom:110.100022px;}
.y28_c00186{bottom:125.625022px;}
.y27_c00186{bottom:141.150022px;}
.y26_c00186{bottom:155.925022px;}
.y25_c00186{bottom:171.375022px;}
.y24_c00186{bottom:186.525022px;}
.y23_c00186{bottom:201.975022px;}
.y22_c00186{bottom:217.125022px;}
.y21_c00186{bottom:232.575022px;}
.y20_c00186{bottom:247.725022px;}
.y1f_c00186{bottom:263.550022px;}
.y1e_c00186{bottom:278.325022px;}
.y1d_c00186{bottom:294.150022px;}
.y1c_c00186{bottom:308.925022px;}
.y1a_c00186{bottom:358.950022px;}
.y19_c00186{bottom:378.375022px;}
.y18_c00186{bottom:398.175022px;}
.y17_c00186{bottom:417.225022px;}
.y16_c00186{bottom:437.025022px;}
.y15_c00186{bottom:456.525022px;}
.y14_c00186{bottom:475.575022px;}
.y13_c00186{bottom:495.375022px;}
.y12_c00186{bottom:514.425022px;}
.y11_c00186{bottom:534.225022px;}
.y10_c00186{bottom:553.350022px;}
.yf_c00186{bottom:573.150022px;}
.ye_c00186{bottom:592.575022px;}
.yd_c00186{bottom:612.000022px;}
.yc_c00186{bottom:631.425022px;}
.yb_c00186{bottom:650.925022px;}
.ya_c00186{bottom:670.350022px;}
.y9_c00186{bottom:689.400022px;}
.y8_c00186{bottom:708.825022px;}
.y7_c00186{bottom:728.700022px;}
.y6_c00186{bottom:748.125022px;}
.y5_c00186{bottom:767.550022px;}
.y4_c00186{bottom:786.600022px;}
.y3_c00186{bottom:806.025022px;}
.y2_c00186{bottom:825.150022px;}
.y1_c00186{bottom:844.950022px;}
.y1b_c00186{bottom:886.725022px;}
.h3_c00186{height:50.053711px;}
.h2_c00186{height:58.886719px;}
.h1_c00186{height:957.750000px;}
.h0_c00186{height:957.975000px;}
.w1_c00186{width:643.500000px;}
.w0_c00186{width:643.650000px;}
.x0_c00186{left:0.000000px;}
.x2_c00186{left:90.375000px;}
.x1_c00186{left:91.425000px;}
.x4_c00186{left:96.450000px;}
.x3_c00186{left:106.950000px;}
.x5_c00186{left:124.200000px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls0_c00186{letter-spacing:0.000000pt;}
.ws1_c00186{word-spacing:-13.333333pt;}
.ws0_c00186{word-spacing:-11.333333pt;}
.ws2_c00186{word-spacing:0.000000pt;}
._a_c00186{margin-left:-9.120000pt;}
._4_c00186{margin-left:-7.840000pt;}
._16_c00186{margin-left:-5.615979pt;}
._12_c00186{margin-left:-4.370677pt;}
._9_c00186{margin-left:-2.986667pt;}
._8_c00186{margin-left:-1.333333pt;}
._0_c00186{width:1.226667pt;}
._1_c00186{width:2.186667pt;}
._7_c00186{width:3.520000pt;}
._5_c00186{width:4.533333pt;}
._d_c00186{width:6.026667pt;}
._6_c00186{width:7.360000pt;}
._11_c00186{width:8.320000pt;}
._e_c00186{width:9.333333pt;}
._10_c00186{width:10.773333pt;}
._f_c00186{width:11.680000pt;}
._14_c00186{width:12.706661pt;}
._15_c00186{width:13.600059pt;}
._b_c00186{width:14.613333pt;}
._2_c00186{width:16.266667pt;}
._3_c00186{width:17.386667pt;}
._c_c00186{width:18.506667pt;}
._13_c00186{width:20.666667pt;}
._17_c00186{width:21.999963pt;}
._18_c00186{width:23.333307pt;}
.fs1_c00186{font-size:45.333333pt;}
.fs0_c00186{font-size:53.333333pt;}
.y0_c00186{bottom:0.000000pt;}
.y2a_c00186{bottom:57.266686pt;}
.y29_c00186{bottom:97.866686pt;}
.y28_c00186{bottom:111.666686pt;}
.y27_c00186{bottom:125.466686pt;}
.y26_c00186{bottom:138.600020pt;}
.y25_c00186{bottom:152.333353pt;}
.y24_c00186{bottom:165.800020pt;}
.y23_c00186{bottom:179.533353pt;}
.y22_c00186{bottom:193.000020pt;}
.y21_c00186{bottom:206.733353pt;}
.y20_c00186{bottom:220.200020pt;}
.y1f_c00186{bottom:234.266686pt;}
.y1e_c00186{bottom:247.400020pt;}
.y1d_c00186{bottom:261.466686pt;}
.y1c_c00186{bottom:274.600020pt;}
.y1a_c00186{bottom:319.066686pt;}
.y19_c00186{bottom:336.333353pt;}
.y18_c00186{bottom:353.933353pt;}
.y17_c00186{bottom:370.866686pt;}
.y16_c00186{bottom:388.466686pt;}
.y15_c00186{bottom:405.800020pt;}
.y14_c00186{bottom:422.733353pt;}
.y13_c00186{bottom:440.333353pt;}
.y12_c00186{bottom:457.266686pt;}
.y11_c00186{bottom:474.866686pt;}
.y10_c00186{bottom:491.866686pt;}
.yf_c00186{bottom:509.466686pt;}
.ye_c00186{bottom:526.733353pt;}
.yd_c00186{bottom:544.000020pt;}
.yc_c00186{bottom:561.266686pt;}
.yb_c00186{bottom:578.600020pt;}
.ya_c00186{bottom:595.866686pt;}
.y9_c00186{bottom:612.800020pt;}
.y8_c00186{bottom:630.066686pt;}
.y7_c00186{bottom:647.733353pt;}
.y6_c00186{bottom:665.000020pt;}
.y5_c00186{bottom:682.266686pt;}
.y4_c00186{bottom:699.200020pt;}
.y3_c00186{bottom:716.466686pt;}
.y2_c00186{bottom:733.466686pt;}
.y1_c00186{bottom:751.066686pt;}
.y1b_c00186{bottom:788.200020pt;}
.h3_c00186{height:44.492188pt;}
.h2_c00186{height:52.343750pt;}
.h1_c00186{height:851.333333pt;}
.h0_c00186{height:851.533333pt;}
.w1_c00186{width:572.000000pt;}
.w0_c00186{width:572.133333pt;}
.x0_c00186{left:0.000000pt;}
.x2_c00186{left:80.333333pt;}
.x1_c00186{left:81.266667pt;}
.x4_c00186{left:85.733333pt;}
.x3_c00186{left:95.066667pt;}
.x5_c00186{left:110.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_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_b13ebfe18dd42d07c0593e9a.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00187;src:url('chunks/assets/font_29643be565c1b42a9c1ac548.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00187{letter-spacing:0.000000px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00187{word-spacing:-15.000000px;}
.ws0_c00187{word-spacing:-12.750000px;}
.ws2_c00187{word-spacing:0.000000px;}
._11_c00187{margin-left:-10.775550px;}
._b_c00187{margin-left:-9.690756px;}
._10_c00187{margin-left:-8.469324px;}
._15_c00187{margin-left:-6.674112px;}
._14_c00187{margin-left:-5.670951px;}
._0_c00187{margin-left:-4.565979px;}
._13_c00187{margin-left:-2.832288px;}
._7_c00187{margin-left:-1.605438px;}
._1_c00187{width:1.238994px;}
._3_c00187{width:2.337177px;}
._8_c00187{width:3.401622px;}
._2_c00187{width:4.715919px;}
._c_c00187{width:6.181512px;}
._a_c00187{width:7.364640px;}
._9_c00187{width:8.877372px;}
._6_c00187{width:10.226847px;}
._4_c00187{width:11.606847px;}
._5_c00187{width:13.122012px;}
._16_c00187{width:14.967963px;}
._d_c00187{width:16.283949px;}
._f_c00187{width:17.286036px;}
._e_c00187{width:19.140000px;}
._12_c00187{width:24.960897px;}
.fc1_c00187{color:transparent;}
.fc0_c00187{color:rgb(35,31,32);}
.fs0_c00187{font-size:51.000000px;}
.fs1_c00187{font-size:60.000000px;}
.y0_c00187{bottom:0.000000px;}
.y28_c00187{bottom:64.425022px;}
.y27_c00187{bottom:110.550022px;}
.y26_c00187{bottom:125.325022px;}
.y25_c00187{bottom:140.775022px;}
.y24_c00187{bottom:155.925022px;}
.y23_c00187{bottom:171.375022px;}
.y22_c00187{bottom:186.825022px;}
.y21_c00187{bottom:202.350022px;}
.y20_c00187{bottom:217.125022px;}
.y1f_c00187{bottom:232.575022px;}
.y1e_c00187{bottom:248.025022px;}
.y1d_c00187{bottom:263.175022px;}
.y1c_c00187{bottom:278.625022px;}
.y1b_c00187{bottom:293.775022px;}
.y1a_c00187{bottom:309.225022px;}
.y19_c00187{bottom:324.750022px;}
.y18_c00187{bottom:339.825022px;}
.y17_c00187{bottom:354.975022px;}
.y16_c00187{bottom:370.425022px;}
.y15_c00187{bottom:385.575022px;}
.y14_c00187{bottom:400.725022px;}
.y13_c00187{bottom:450.075022px;}
.y12_c00187{bottom:469.500022px;}
.y11_c00187{bottom:488.925022px;}
.y10_c00187{bottom:508.350022px;}
.yf_c00187{bottom:527.400022px;}
.ye_c00187{bottom:547.200022px;}
.yd_c00187{bottom:566.325022px;}
.yc_c00187{bottom:586.125022px;}
.yb_c00187{bottom:626.775022px;}
.ya_c00187{bottom:689.625022px;}
.y9_c00187{bottom:709.125022px;}
.y8_c00187{bottom:728.625022px;}
.y7_c00187{bottom:748.125022px;}
.y6_c00187{bottom:767.475022px;}
.y5_c00187{bottom:786.600022px;}
.y4_c00187{bottom:805.725022px;}
.y3_c00187{bottom:825.525022px;}
.y2_c00187{bottom:844.950022px;}
.y1_c00187{bottom:886.725022px;}
.h2_c00187{height:50.028809px;}
.h4_c00187{height:50.053711px;}
.h3_c00187{height:58.886719px;}
.h1_c00187{height:957.750000px;}
.h0_c00187{height:957.975000px;}
.w0_c00187{width:641.850030px;}
.w1_c00187{width:642.000000px;}
.x0_c00187{left:0.000000px;}
.x3_c00187{left:80.250000px;}
.x2_c00187{left:81.375000px;}
.x4_c00187{left:86.400000px;}
.x5_c00187{left:114.150000px;}
.x1_c00187{left:265.650000px;}
.x6_c00187{left:532.050000px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls0_c00187{letter-spacing:0.000000pt;}
.ws1_c00187{word-spacing:-13.333333pt;}
.ws0_c00187{word-spacing:-11.333333pt;}
.ws2_c00187{word-spacing:0.000000pt;}
._11_c00187{margin-left:-9.578267pt;}
._b_c00187{margin-left:-8.614005pt;}
._10_c00187{margin-left:-7.528288pt;}
._15_c00187{margin-left:-5.932544pt;}
._14_c00187{margin-left:-5.040845pt;}
._0_c00187{margin-left:-4.058648pt;}
._13_c00187{margin-left:-2.517589pt;}
._7_c00187{margin-left:-1.427056pt;}
._1_c00187{width:1.101328pt;}
._3_c00187{width:2.077491pt;}
._8_c00187{width:3.023664pt;}
._2_c00187{width:4.191928pt;}
._c_c00187{width:5.494677pt;}
._a_c00187{width:6.546347pt;}
._9_c00187{width:7.890997pt;}
._6_c00187{width:9.090531pt;}
._4_c00187{width:10.317197pt;}
._5_c00187{width:11.664011pt;}
._16_c00187{width:13.304856pt;}
._d_c00187{width:14.474621pt;}
._f_c00187{width:15.365365pt;}
._e_c00187{width:17.013333pt;}
._12_c00187{width:22.187464pt;}
.fs0_c00187{font-size:45.333333pt;}
.fs1_c00187{font-size:53.333333pt;}
.y0_c00187{bottom:0.000000pt;}
.y28_c00187{bottom:57.266686pt;}
.y27_c00187{bottom:98.266686pt;}
.y26_c00187{bottom:111.400020pt;}
.y25_c00187{bottom:125.133353pt;}
.y24_c00187{bottom:138.600020pt;}
.y23_c00187{bottom:152.333353pt;}
.y22_c00187{bottom:166.066686pt;}
.y21_c00187{bottom:179.866686pt;}
.y20_c00187{bottom:193.000020pt;}
.y1f_c00187{bottom:206.733353pt;}
.y1e_c00187{bottom:220.466686pt;}
.y1d_c00187{bottom:233.933353pt;}
.y1c_c00187{bottom:247.666686pt;}
.y1b_c00187{bottom:261.133353pt;}
.y1a_c00187{bottom:274.866686pt;}
.y19_c00187{bottom:288.666686pt;}
.y18_c00187{bottom:302.066686pt;}
.y17_c00187{bottom:315.533353pt;}
.y16_c00187{bottom:329.266686pt;}
.y15_c00187{bottom:342.733353pt;}
.y14_c00187{bottom:356.200020pt;}
.y13_c00187{bottom:400.066686pt;}
.y12_c00187{bottom:417.333353pt;}
.y11_c00187{bottom:434.600020pt;}
.y10_c00187{bottom:451.866686pt;}
.yf_c00187{bottom:468.800020pt;}
.ye_c00187{bottom:486.400020pt;}
.yd_c00187{bottom:503.400020pt;}
.yc_c00187{bottom:521.000020pt;}
.yb_c00187{bottom:557.133353pt;}
.ya_c00187{bottom:613.000020pt;}
.y9_c00187{bottom:630.333353pt;}
.y8_c00187{bottom:647.666686pt;}
.y7_c00187{bottom:665.000020pt;}
.y6_c00187{bottom:682.200020pt;}
.y5_c00187{bottom:699.200020pt;}
.y4_c00187{bottom:716.200020pt;}
.y3_c00187{bottom:733.800020pt;}
.y2_c00187{bottom:751.066686pt;}
.y1_c00187{bottom:788.200020pt;}
.h2_c00187{height:44.470052pt;}
.h4_c00187{height:44.492188pt;}
.h3_c00187{height:52.343750pt;}
.h1_c00187{height:851.333333pt;}
.h0_c00187{height:851.533333pt;}
.w0_c00187{width:570.533360pt;}
.w1_c00187{width:570.666667pt;}
.x0_c00187{left:0.000000pt;}
.x3_c00187{left:71.333333pt;}
.x2_c00187{left:72.333333pt;}
.x4_c00187{left:76.800000pt;}
.x5_c00187{left:101.466667pt;}
.x1_c00187{left:236.133333pt;}
.x6_c00187{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_430f4ce5c872127f5699d1e7.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00188;src:url('chunks/assets/font_7864243d1e18cdfdb813ae3c.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00188{letter-spacing:0.000000px;}
.sc__c00188{text-shadow:none;}
.sc0_c00188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00188{-webkit-text-stroke:0px transparent;}
.sc0_c00188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00188{word-spacing:-15.000000px;}
.ws0_c00188{word-spacing:-12.750000px;}
.ws2_c00188{word-spacing:0.000000px;}
._b_c00188{margin-left:-13.200000px;}
._a_c00188{margin-left:-11.640000px;}
._d_c00188{margin-left:-10.140000px;}
._15_c00188{margin-left:-8.462988px;}
._9_c00188{margin-left:-7.320000px;}
._11_c00188{margin-left:-6.060000px;}
._10_c00188{margin-left:-4.917012px;}
._17_c00188{margin-left:-3.120018px;}
._7_c00188{margin-left:-1.680000px;}
._3_c00188{width:1.080000px;}
._0_c00188{width:2.160000px;}
._6_c00188{width:3.180000px;}
._f_c00188{width:4.560000px;}
._2_c00188{width:5.760000px;}
._8_c00188{width:7.380000px;}
._1_c00188{width:8.400000px;}
._4_c00188{width:10.140000px;}
._16_c00188{width:11.400000px;}
._5_c00188{width:12.480000px;}
._c_c00188{width:13.800000px;}
._e_c00188{width:16.080000px;}
._14_c00188{width:17.280000px;}
._12_c00188{width:18.600000px;}
._13_c00188{width:19.740000px;}
._1b_c00188{width:21.696042px;}
._1a_c00188{width:25.289958px;}
._19_c00188{width:26.790000px;}
._1c_c00188{width:27.990000px;}
._18_c00188{width:29.670006px;}
.fc1_c00188{color:transparent;}
.fc0_c00188{color:rgb(35,31,32);}
.fs1_c00188{font-size:51.000000px;}
.fs0_c00188{font-size:60.000000px;}
.y0_c00188{bottom:0.000000px;}
.y27_c00188{bottom:64.425022px;}
.y26_c00188{bottom:110.175022px;}
.y25_c00188{bottom:125.325022px;}
.y24_c00188{bottom:140.775022px;}
.y23_c00188{bottom:155.925022px;}
.y22_c00188{bottom:171.375022px;}
.y21_c00188{bottom:186.525022px;}
.y20_c00188{bottom:201.975022px;}
.y1f_c00188{bottom:217.425022px;}
.y1e_c00188{bottom:232.950022px;}
.y1d_c00188{bottom:247.725022px;}
.y1c_c00188{bottom:263.175022px;}
.y1b_c00188{bottom:278.625022px;}
.y1a_c00188{bottom:294.150022px;}
.y19_c00188{bottom:309.225022px;}
.y18_c00188{bottom:324.750022px;}
.y17_c00188{bottom:392.400022px;}
.y16_c00188{bottom:411.525022px;}
.y15_c00188{bottom:430.950022px;}
.y14_c00188{bottom:450.375022px;}
.y13_c00188{bottom:470.175022px;}
.y12_c00188{bottom:489.225022px;}
.y11_c00188{bottom:509.025022px;}
.y10_c00188{bottom:528.150022px;}
.yf_c00188{bottom:562.350022px;}
.yd_c00188{bottom:612.000022px;}
.yc_c00188{bottom:631.125022px;}
.yb_c00188{bottom:650.925022px;}
.ya_c00188{bottom:670.350022px;}
.y9_c00188{bottom:689.775022px;}
.y8_c00188{bottom:708.825022px;}
.y7_c00188{bottom:728.625022px;}
.y6_c00188{bottom:748.125022px;}
.y5_c00188{bottom:767.175022px;}
.y4_c00188{bottom:786.225022px;}
.y3_c00188{bottom:806.100022px;}
.y2_c00188{bottom:825.525022px;}
.y1_c00188{bottom:844.950022px;}
.ye_c00188{bottom:886.725022px;}
.h3_c00188{height:50.053711px;}
.h2_c00188{height:58.886719px;}
.h1_c00188{height:957.750000px;}
.h0_c00188{height:957.975000px;}
.w1_c00188{width:643.500000px;}
.w0_c00188{width:643.650000px;}
.x0_c00188{left:0.000000px;}
.x1_c00188{left:91.050000px;}
.x4_c00188{left:92.175000px;}
.x2_c00188{left:96.450000px;}
.x3_c00188{left:123.825000px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls0_c00188{letter-spacing:0.000000pt;}
.ws1_c00188{word-spacing:-13.333333pt;}
.ws0_c00188{word-spacing:-11.333333pt;}
.ws2_c00188{word-spacing:0.000000pt;}
._b_c00188{margin-left:-11.733333pt;}
._a_c00188{margin-left:-10.346667pt;}
._d_c00188{margin-left:-9.013333pt;}
._15_c00188{margin-left:-7.522656pt;}
._9_c00188{margin-left:-6.506667pt;}
._11_c00188{margin-left:-5.386667pt;}
._10_c00188{margin-left:-4.370677pt;}
._17_c00188{margin-left:-2.773349pt;}
._7_c00188{margin-left:-1.493333pt;}
._3_c00188{width:0.960000pt;}
._0_c00188{width:1.920000pt;}
._6_c00188{width:2.826667pt;}
._f_c00188{width:4.053333pt;}
._2_c00188{width:5.120000pt;}
._8_c00188{width:6.560000pt;}
._1_c00188{width:7.466667pt;}
._4_c00188{width:9.013333pt;}
._16_c00188{width:10.133333pt;}
._5_c00188{width:11.093333pt;}
._c_c00188{width:12.266667pt;}
._e_c00188{width:14.293333pt;}
._14_c00188{width:15.360000pt;}
._12_c00188{width:16.533333pt;}
._13_c00188{width:17.546667pt;}
._1b_c00188{width:19.285371pt;}
._1a_c00188{width:22.479963pt;}
._19_c00188{width:23.813333pt;}
._1c_c00188{width:24.880000pt;}
._18_c00188{width:26.373339pt;}
.fs1_c00188{font-size:45.333333pt;}
.fs0_c00188{font-size:53.333333pt;}
.y0_c00188{bottom:0.000000pt;}
.y27_c00188{bottom:57.266686pt;}
.y26_c00188{bottom:97.933353pt;}
.y25_c00188{bottom:111.400020pt;}
.y24_c00188{bottom:125.133353pt;}
.y23_c00188{bottom:138.600020pt;}
.y22_c00188{bottom:152.333353pt;}
.y21_c00188{bottom:165.800020pt;}
.y20_c00188{bottom:179.533353pt;}
.y1f_c00188{bottom:193.266686pt;}
.y1e_c00188{bottom:207.066686pt;}
.y1d_c00188{bottom:220.200020pt;}
.y1c_c00188{bottom:233.933353pt;}
.y1b_c00188{bottom:247.666686pt;}
.y1a_c00188{bottom:261.466686pt;}
.y19_c00188{bottom:274.866686pt;}
.y18_c00188{bottom:288.666686pt;}
.y17_c00188{bottom:348.800020pt;}
.y16_c00188{bottom:365.800020pt;}
.y15_c00188{bottom:383.066686pt;}
.y14_c00188{bottom:400.333353pt;}
.y13_c00188{bottom:417.933353pt;}
.y12_c00188{bottom:434.866686pt;}
.y11_c00188{bottom:452.466686pt;}
.y10_c00188{bottom:469.466686pt;}
.yf_c00188{bottom:499.866686pt;}
.yd_c00188{bottom:544.000020pt;}
.yc_c00188{bottom:561.000020pt;}
.yb_c00188{bottom:578.600020pt;}
.ya_c00188{bottom:595.866686pt;}
.y9_c00188{bottom:613.133353pt;}
.y8_c00188{bottom:630.066686pt;}
.y7_c00188{bottom:647.666686pt;}
.y6_c00188{bottom:665.000020pt;}
.y5_c00188{bottom:681.933353pt;}
.y4_c00188{bottom:698.866686pt;}
.y3_c00188{bottom:716.533353pt;}
.y2_c00188{bottom:733.800020pt;}
.y1_c00188{bottom:751.066686pt;}
.ye_c00188{bottom:788.200020pt;}
.h3_c00188{height:44.492188pt;}
.h2_c00188{height:52.343750pt;}
.h1_c00188{height:851.333333pt;}
.h0_c00188{height:851.533333pt;}
.w1_c00188{width:572.000000pt;}
.w0_c00188{width:572.133333pt;}
.x0_c00188{left:0.000000pt;}
.x1_c00188{left:80.933333pt;}
.x4_c00188{left:81.933333pt;}
.x2_c00188{left:85.733333pt;}
.x3_c00188{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5331054645760ed7597cf575.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00189;src:url('chunks/assets/font_54062111a650ecfbb4424af7.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00189{letter-spacing:0.000000px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00189{word-spacing:-15.000000px;}
.ws0_c00189{word-spacing:-12.750000px;}
.ws2_c00189{word-spacing:0.000000px;}
._12_c00189{margin-left:-11.500314px;}
._5_c00189{margin-left:-10.500000px;}
._0_c00189{margin-left:-4.565979px;}
._13_c00189{margin-left:-3.354159px;}
._4_c00189{margin-left:-2.075976px;}
._15_c00189{margin-left:-1.005006px;}
._1_c00189{width:1.238994px;}
._3_c00189{width:2.337177px;}
._b_c00189{width:3.407658px;}
._2_c00189{width:4.715919px;}
._f_c00189{width:6.086439px;}
._10_c00189{width:7.317975px;}
._a_c00189{width:8.490060px;}
._d_c00189{width:10.292688px;}
._c_c00189{width:11.457177px;}
._9_c00189{width:12.480000px;}
._e_c00189{width:13.835121px;}
._8_c00189{width:16.020000px;}
._6_c00189{width:17.100000px;}
._7_c00189{width:19.109865px;}
._11_c00189{width:22.026036px;}
._16_c00189{width:23.825997px;}
._18_c00189{width:25.680093px;}
._14_c00189{width:27.180105px;}
._17_c00189{width:29.574033px;}
.fc1_c00189{color:transparent;}
.fc0_c00189{color:rgb(35,31,32);}
.fs0_c00189{font-size:51.000000px;}
.fs1_c00189{font-size:60.000000px;}
.y0_c00189{bottom:0.000000px;}
.y27_c00189{bottom:64.425022px;}
.y26_c00189{bottom:110.175022px;}
.y25_c00189{bottom:125.625022px;}
.y24_c00189{bottom:140.775022px;}
.y23_c00189{bottom:156.225022px;}
.y22_c00189{bottom:171.375022px;}
.y21_c00189{bottom:186.525022px;}
.y20_c00189{bottom:202.350022px;}
.y1f_c00189{bottom:217.125022px;}
.y1e_c00189{bottom:232.575022px;}
.y1d_c00189{bottom:247.725022px;}
.y1c_c00189{bottom:263.550022px;}
.y1b_c00189{bottom:278.325022px;}
.y1a_c00189{bottom:294.150022px;}
.y19_c00189{bottom:308.925022px;}
.y18_c00189{bottom:324.750022px;}
.y17_c00189{bottom:380.550022px;}
.y16_c00189{bottom:400.350022px;}
.y15_c00189{bottom:419.400022px;}
.y14_c00189{bottom:438.825022px;}
.y13_c00189{bottom:458.625022px;}
.y12_c00189{bottom:478.125022px;}
.y11_c00189{bottom:497.550022px;}
.y10_c00189{bottom:516.975022px;}
.yf_c00189{bottom:536.400022px;}
.ye_c00189{bottom:555.525022px;}
.yd_c00189{bottom:575.325022px;}
.yc_c00189{bottom:594.750022px;}
.yb_c00189{bottom:613.800022px;}
.ya_c00189{bottom:652.350022px;}
.y9_c00189{bottom:709.200022px;}
.y8_c00189{bottom:728.625022px;}
.y7_c00189{bottom:748.125022px;}
.y6_c00189{bottom:767.550022px;}
.y5_c00189{bottom:786.525022px;}
.y4_c00189{bottom:806.025022px;}
.y3_c00189{bottom:825.525022px;}
.y2_c00189{bottom:844.575022px;}
.y1_c00189{bottom:886.725022px;}
.h2_c00189{height:50.028809px;}
.h4_c00189{height:50.053711px;}
.h3_c00189{height:58.886719px;}
.h1_c00189{height:957.750000px;}
.h0_c00189{height:957.975000px;}
.w0_c00189{width:641.850030px;}
.w1_c00189{width:642.000000px;}
.x0_c00189{left:0.000000px;}
.x3_c00189{left:80.250000px;}
.x2_c00189{left:81.375000px;}
.x4_c00189{left:86.400000px;}
.x5_c00189{left:113.775000px;}
.x1_c00189{left:265.650000px;}
.x6_c00189{left:532.050000px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls0_c00189{letter-spacing:0.000000pt;}
.ws1_c00189{word-spacing:-13.333333pt;}
.ws0_c00189{word-spacing:-11.333333pt;}
.ws2_c00189{word-spacing:0.000000pt;}
._12_c00189{margin-left:-10.222501pt;}
._5_c00189{margin-left:-9.333333pt;}
._0_c00189{margin-left:-4.058648pt;}
._13_c00189{margin-left:-2.981475pt;}
._4_c00189{margin-left:-1.845312pt;}
._15_c00189{margin-left:-0.893339pt;}
._1_c00189{width:1.101328pt;}
._3_c00189{width:2.077491pt;}
._b_c00189{width:3.029029pt;}
._2_c00189{width:4.191928pt;}
._f_c00189{width:5.410168pt;}
._10_c00189{width:6.504867pt;}
._a_c00189{width:7.546720pt;}
._d_c00189{width:9.149056pt;}
._c_c00189{width:10.184157pt;}
._9_c00189{width:11.093333pt;}
._e_c00189{width:12.297885pt;}
._8_c00189{width:14.240000pt;}
._6_c00189{width:15.200000pt;}
._7_c00189{width:16.986547pt;}
._11_c00189{width:19.578699pt;}
._16_c00189{width:21.178664pt;}
._18_c00189{width:22.826749pt;}
._14_c00189{width:24.160093pt;}
._17_c00189{width:26.288029pt;}
.fs0_c00189{font-size:45.333333pt;}
.fs1_c00189{font-size:53.333333pt;}
.y0_c00189{bottom:0.000000pt;}
.y27_c00189{bottom:57.266686pt;}
.y26_c00189{bottom:97.933353pt;}
.y25_c00189{bottom:111.666686pt;}
.y24_c00189{bottom:125.133353pt;}
.y23_c00189{bottom:138.866686pt;}
.y22_c00189{bottom:152.333353pt;}
.y21_c00189{bottom:165.800020pt;}
.y20_c00189{bottom:179.866686pt;}
.y1f_c00189{bottom:193.000020pt;}
.y1e_c00189{bottom:206.733353pt;}
.y1d_c00189{bottom:220.200020pt;}
.y1c_c00189{bottom:234.266686pt;}
.y1b_c00189{bottom:247.400020pt;}
.y1a_c00189{bottom:261.466686pt;}
.y19_c00189{bottom:274.600020pt;}
.y18_c00189{bottom:288.666686pt;}
.y17_c00189{bottom:338.266686pt;}
.y16_c00189{bottom:355.866686pt;}
.y15_c00189{bottom:372.800020pt;}
.y14_c00189{bottom:390.066686pt;}
.y13_c00189{bottom:407.666686pt;}
.y12_c00189{bottom:425.000020pt;}
.y11_c00189{bottom:442.266686pt;}
.y10_c00189{bottom:459.533353pt;}
.yf_c00189{bottom:476.800020pt;}
.ye_c00189{bottom:493.800020pt;}
.yd_c00189{bottom:511.400020pt;}
.yc_c00189{bottom:528.666686pt;}
.yb_c00189{bottom:545.600020pt;}
.ya_c00189{bottom:579.866686pt;}
.y9_c00189{bottom:630.400020pt;}
.y8_c00189{bottom:647.666686pt;}
.y7_c00189{bottom:665.000020pt;}
.y6_c00189{bottom:682.266686pt;}
.y5_c00189{bottom:699.133353pt;}
.y4_c00189{bottom:716.466686pt;}
.y3_c00189{bottom:733.800020pt;}
.y2_c00189{bottom:750.733353pt;}
.y1_c00189{bottom:788.200020pt;}
.h2_c00189{height:44.470052pt;}
.h4_c00189{height:44.492188pt;}
.h3_c00189{height:52.343750pt;}
.h1_c00189{height:851.333333pt;}
.h0_c00189{height:851.533333pt;}
.w0_c00189{width:570.533360pt;}
.w1_c00189{width:570.666667pt;}
.x0_c00189{left:0.000000pt;}
.x3_c00189{left:71.333333pt;}
.x2_c00189{left:72.333333pt;}
.x4_c00189{left:76.800000pt;}
.x5_c00189{left:101.133333pt;}
.x1_c00189{left:236.133333pt;}
.x6_c00189{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_50a2015e015d748c06420819.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00190;src:url('chunks/assets/font_9bca4a4cbc17ae6c6aa2dd92.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00190{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00190{word-spacing:-15.000000px;}
.ws0_c00190{word-spacing:-12.750000px;}
.ws2_c00190{word-spacing:0.000000px;}
._c_c00190{margin-left:-10.680000px;}
._15_c00190{margin-left:-9.600000px;}
._9_c00190{margin-left:-8.460000px;}
._8_c00190{margin-left:-7.140000px;}
._1a_c00190{margin-left:-6.075012px;}
._d_c00190{margin-left:-5.040000px;}
._14_c00190{margin-left:-3.840000px;}
._5_c00190{margin-left:-2.820000px;}
._6_c00190{margin-left:-1.740000px;}
._0_c00190{width:1.440000px;}
._2_c00190{width:3.360000px;}
._1_c00190{width:5.160000px;}
._7_c00190{width:6.240000px;}
._a_c00190{width:7.560000px;}
._b_c00190{width:9.120000px;}
._3_c00190{width:10.560000px;}
._13_c00190{width:11.580000px;}
._4_c00190{width:12.780000px;}
._16_c00190{width:13.920000px;}
._1b_c00190{width:15.065919px;}
._10_c00190{width:16.080000px;}
._e_c00190{width:17.160000px;}
._11_c00190{width:19.200000px;}
._f_c00190{width:20.220000px;}
._12_c00190{width:21.540000px;}
._17_c00190{width:23.970000px;}
._19_c00190{width:26.550060px;}
._18_c00190{width:29.130000px;}
.fc1_c00190{color:transparent;}
.fc0_c00190{color:rgb(35,31,32);}
.fs1_c00190{font-size:51.000000px;}
.fs0_c00190{font-size:60.000000px;}
.y0_c00190{bottom:0.000000px;}
.y2b_c00190{bottom:64.425022px;}
.y2a_c00190{bottom:110.175022px;}
.y29_c00190{bottom:125.325022px;}
.y28_c00190{bottom:141.150022px;}
.y27_c00190{bottom:156.225022px;}
.y26_c00190{bottom:171.375022px;}
.y25_c00190{bottom:186.525022px;}
.y24_c00190{bottom:201.975022px;}
.y23_c00190{bottom:217.425022px;}
.y22_c00190{bottom:232.950022px;}
.y21_c00190{bottom:247.725022px;}
.y20_c00190{bottom:263.175022px;}
.y1f_c00190{bottom:278.325022px;}
.y1e_c00190{bottom:294.150022px;}
.y1d_c00190{bottom:308.925022px;}
.y1c_c00190{bottom:324.375022px;}
.y1b_c00190{bottom:339.825022px;}
.y1a_c00190{bottom:355.350022px;}
.y19_c00190{bottom:370.125022px;}
.y18_c00190{bottom:385.575022px;}
.y17_c00190{bottom:400.725022px;}
.y15_c00190{bottom:456.150022px;}
.y14_c00190{bottom:475.950022px;}
.y13_c00190{bottom:495.000022px;}
.y12_c00190{bottom:514.800022px;}
.y11_c00190{bottom:533.925022px;}
.y10_c00190{bottom:553.350022px;}
.yf_c00190{bottom:573.150022px;}
.ye_c00190{bottom:592.200022px;}
.yd_c00190{bottom:611.625022px;}
.yc_c00190{bottom:631.125022px;}
.yb_c00190{bottom:650.925022px;}
.ya_c00190{bottom:669.975022px;}
.y9_c00190{bottom:689.775022px;}
.y8_c00190{bottom:709.200022px;}
.y7_c00190{bottom:728.625022px;}
.y6_c00190{bottom:747.750022px;}
.y5_c00190{bottom:767.550022px;}
.y4_c00190{bottom:786.225022px;}
.y3_c00190{bottom:805.725022px;}
.y2_c00190{bottom:825.525022px;}
.y1_c00190{bottom:844.575022px;}
.y16_c00190{bottom:886.725022px;}
.h3_c00190{height:50.053711px;}
.h2_c00190{height:58.886719px;}
.h1_c00190{height:957.750000px;}
.h0_c00190{height:957.975000px;}
.w1_c00190{width:643.500000px;}
.w0_c00190{width:643.650000px;}
.x0_c00190{left:0.000000px;}
.x1_c00190{left:91.050000px;}
.x6_c00190{left:92.175000px;}
.x3_c00190{left:96.450000px;}
.x2_c00190{left:107.250000px;}
.x5_c00190{left:123.150000px;}
.x4_c00190{left:124.200000px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls0_c00190{letter-spacing:0.000000pt;}
.ws1_c00190{word-spacing:-13.333333pt;}
.ws0_c00190{word-spacing:-11.333333pt;}
.ws2_c00190{word-spacing:0.000000pt;}
._c_c00190{margin-left:-9.493333pt;}
._15_c00190{margin-left:-8.533333pt;}
._9_c00190{margin-left:-7.520000pt;}
._8_c00190{margin-left:-6.346667pt;}
._1a_c00190{margin-left:-5.400011pt;}
._d_c00190{margin-left:-4.480000pt;}
._14_c00190{margin-left:-3.413333pt;}
._5_c00190{margin-left:-2.506667pt;}
._6_c00190{margin-left:-1.546667pt;}
._0_c00190{width:1.280000pt;}
._2_c00190{width:2.986667pt;}
._1_c00190{width:4.586667pt;}
._7_c00190{width:5.546667pt;}
._a_c00190{width:6.720000pt;}
._b_c00190{width:8.106667pt;}
._3_c00190{width:9.386667pt;}
._13_c00190{width:10.293333pt;}
._4_c00190{width:11.360000pt;}
._16_c00190{width:12.373333pt;}
._1b_c00190{width:13.391928pt;}
._10_c00190{width:14.293333pt;}
._e_c00190{width:15.253333pt;}
._11_c00190{width:17.066667pt;}
._f_c00190{width:17.973333pt;}
._12_c00190{width:19.146667pt;}
._17_c00190{width:21.306667pt;}
._19_c00190{width:23.600053pt;}
._18_c00190{width:25.893333pt;}
.fs1_c00190{font-size:45.333333pt;}
.fs0_c00190{font-size:53.333333pt;}
.y0_c00190{bottom:0.000000pt;}
.y2b_c00190{bottom:57.266686pt;}
.y2a_c00190{bottom:97.933353pt;}
.y29_c00190{bottom:111.400020pt;}
.y28_c00190{bottom:125.466686pt;}
.y27_c00190{bottom:138.866686pt;}
.y26_c00190{bottom:152.333353pt;}
.y25_c00190{bottom:165.800020pt;}
.y24_c00190{bottom:179.533353pt;}
.y23_c00190{bottom:193.266686pt;}
.y22_c00190{bottom:207.066686pt;}
.y21_c00190{bottom:220.200020pt;}
.y20_c00190{bottom:233.933353pt;}
.y1f_c00190{bottom:247.400020pt;}
.y1e_c00190{bottom:261.466686pt;}
.y1d_c00190{bottom:274.600020pt;}
.y1c_c00190{bottom:288.333353pt;}
.y1b_c00190{bottom:302.066686pt;}
.y1a_c00190{bottom:315.866686pt;}
.y19_c00190{bottom:329.000020pt;}
.y18_c00190{bottom:342.733353pt;}
.y17_c00190{bottom:356.200020pt;}
.y15_c00190{bottom:405.466686pt;}
.y14_c00190{bottom:423.066686pt;}
.y13_c00190{bottom:440.000020pt;}
.y12_c00190{bottom:457.600020pt;}
.y11_c00190{bottom:474.600020pt;}
.y10_c00190{bottom:491.866686pt;}
.yf_c00190{bottom:509.466686pt;}
.ye_c00190{bottom:526.400020pt;}
.yd_c00190{bottom:543.666686pt;}
.yc_c00190{bottom:561.000020pt;}
.yb_c00190{bottom:578.600020pt;}
.ya_c00190{bottom:595.533353pt;}
.y9_c00190{bottom:613.133353pt;}
.y8_c00190{bottom:630.400020pt;}
.y7_c00190{bottom:647.666686pt;}
.y6_c00190{bottom:664.666686pt;}
.y5_c00190{bottom:682.266686pt;}
.y4_c00190{bottom:698.866686pt;}
.y3_c00190{bottom:716.200020pt;}
.y2_c00190{bottom:733.800020pt;}
.y1_c00190{bottom:750.733353pt;}
.y16_c00190{bottom:788.200020pt;}
.h3_c00190{height:44.492188pt;}
.h2_c00190{height:52.343750pt;}
.h1_c00190{height:851.333333pt;}
.h0_c00190{height:851.533333pt;}
.w1_c00190{width:572.000000pt;}
.w0_c00190{width:572.133333pt;}
.x0_c00190{left:0.000000pt;}
.x1_c00190{left:80.933333pt;}
.x6_c00190{left:81.933333pt;}
.x3_c00190{left:85.733333pt;}
.x2_c00190{left:95.333333pt;}
.x5_c00190{left:109.466667pt;}
.x4_c00190{left:110.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_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_841b23bc69a73d0320f35488.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00191;src:url('chunks/assets/font_e6134d8fc4ef379bc5067547.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00191{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_c00191{vertical-align:0.000000px;}
.ls0_c00191{letter-spacing:0.000000px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00191{word-spacing:-15.000000px;}
.ws0_c00191{word-spacing:-12.750000px;}
.ws2_c00191{word-spacing:0.000000px;}
._10_c00191{margin-left:-10.880403px;}
._e_c00191{margin-left:-9.032724px;}
._12_c00191{margin-left:-7.911864px;}
._16_c00191{margin-left:-5.899092px;}
._0_c00191{margin-left:-4.565979px;}
._11_c00191{margin-left:-3.000000px;}
._7_c00191{margin-left:-1.722012px;}
._1_c00191{width:1.238994px;}
._3_c00191{width:2.337177px;}
._9_c00191{width:3.552480px;}
._2_c00191{width:4.715919px;}
._6_c00191{width:6.651066px;}
._8_c00191{width:8.456184px;}
._d_c00191{width:10.144206px;}
._4_c00191{width:11.465841px;}
._5_c00191{width:13.134354px;}
._17_c00191{width:14.982255px;}
._f_c00191{width:16.727658px;}
._a_c00191{width:18.342012px;}
._c_c00191{width:19.765212px;}
._b_c00191{width:21.833304px;}
._15_c00191{width:23.694033px;}
._14_c00191{width:25.415994px;}
._13_c00191{width:26.916006px;}
.fc1_c00191{color:transparent;}
.fc0_c00191{color:rgb(35,31,32);}
.fs0_c00191{font-size:51.000000px;}
.fs1_c00191{font-size:60.000000px;}
.y0_c00191{bottom:0.000000px;}
.y2b_c00191{bottom:64.425022px;}
.y2a_c00191{bottom:110.175022px;}
.y29_c00191{bottom:125.325022px;}
.y28_c00191{bottom:140.775022px;}
.y27_c00191{bottom:155.925022px;}
.y26_c00191{bottom:171.375022px;}
.y25_c00191{bottom:186.525022px;}
.y24_c00191{bottom:202.350022px;}
.y23_c00191{bottom:217.425022px;}
.y22_c00191{bottom:232.950022px;}
.y21_c00191{bottom:247.725022px;}
.y20_c00191{bottom:263.175022px;}
.y1f_c00191{bottom:278.325022px;}
.y1e_c00191{bottom:294.150022px;}
.y1d_c00191{bottom:309.225022px;}
.y1c_c00191{bottom:324.750022px;}
.y1b_c00191{bottom:339.525022px;}
.y1a_c00191{bottom:354.975022px;}
.y19_c00191{bottom:370.125022px;}
.y18_c00191{bottom:385.950022px;}
.y17_c00191{bottom:400.350022px;}
.y16_c00191{bottom:456.150022px;}
.y15_c00191{bottom:475.950022px;}
.y14_c00191{bottom:495.375022px;}
.y13_c00191{bottom:514.425022px;}
.y12_c00191{bottom:533.925022px;}
.y11_c00191{bottom:553.350022px;}
.y10_c00191{bottom:572.775022px;}
.yf_c00191{bottom:592.575022px;}
.ye_c00191{bottom:612.000022px;}
.yd_c00191{bottom:631.425022px;}
.yc_c00191{bottom:650.550022px;}
.yb_c00191{bottom:670.350022px;}
.ya_c00191{bottom:689.775022px;}
.y9_c00191{bottom:708.825022px;}
.y8_c00191{bottom:728.625022px;}
.y7_c00191{bottom:748.125022px;}
.y6_c00191{bottom:767.550022px;}
.y5_c00191{bottom:786.600022px;}
.y4_c00191{bottom:805.725022px;}
.y3_c00191{bottom:825.150022px;}
.y2_c00191{bottom:844.575022px;}
.y1_c00191{bottom:886.725022px;}
.h2_c00191{height:50.028809px;}
.h4_c00191{height:50.053711px;}
.h3_c00191{height:58.886719px;}
.h1_c00191{height:957.750000px;}
.h0_c00191{height:957.975000px;}
.w0_c00191{width:641.850030px;}
.w1_c00191{width:642.000000px;}
.x0_c00191{left:0.000000px;}
.x2_c00191{left:80.625000px;}
.x4_c00191{left:86.400000px;}
.x3_c00191{left:97.200000px;}
.x6_c00191{left:113.025000px;}
.x5_c00191{left:114.150000px;}
.x1_c00191{left:265.650000px;}
.x7_c00191{left:532.050000px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls0_c00191{letter-spacing:0.000000pt;}
.ws1_c00191{word-spacing:-13.333333pt;}
.ws0_c00191{word-spacing:-11.333333pt;}
.ws2_c00191{word-spacing:0.000000pt;}
._10_c00191{margin-left:-9.671469pt;}
._e_c00191{margin-left:-8.029088pt;}
._12_c00191{margin-left:-7.032768pt;}
._16_c00191{margin-left:-5.243637pt;}
._0_c00191{margin-left:-4.058648pt;}
._11_c00191{margin-left:-2.666667pt;}
._7_c00191{margin-left:-1.530677pt;}
._1_c00191{width:1.101328pt;}
._3_c00191{width:2.077491pt;}
._9_c00191{width:3.157760pt;}
._2_c00191{width:4.191928pt;}
._6_c00191{width:5.912059pt;}
._8_c00191{width:7.516608pt;}
._d_c00191{width:9.017072pt;}
._4_c00191{width:10.191859pt;}
._5_c00191{width:11.674981pt;}
._17_c00191{width:13.317560pt;}
._f_c00191{width:14.869029pt;}
._a_c00191{width:16.304011pt;}
._c_c00191{width:17.569077pt;}
._b_c00191{width:19.407381pt;}
._15_c00191{width:21.061363pt;}
._14_c00191{width:22.591995pt;}
._13_c00191{width:23.925339pt;}
.fs0_c00191{font-size:45.333333pt;}
.fs1_c00191{font-size:53.333333pt;}
.y0_c00191{bottom:0.000000pt;}
.y2b_c00191{bottom:57.266686pt;}
.y2a_c00191{bottom:97.933353pt;}
.y29_c00191{bottom:111.400020pt;}
.y28_c00191{bottom:125.133353pt;}
.y27_c00191{bottom:138.600020pt;}
.y26_c00191{bottom:152.333353pt;}
.y25_c00191{bottom:165.800020pt;}
.y24_c00191{bottom:179.866686pt;}
.y23_c00191{bottom:193.266686pt;}
.y22_c00191{bottom:207.066686pt;}
.y21_c00191{bottom:220.200020pt;}
.y20_c00191{bottom:233.933353pt;}
.y1f_c00191{bottom:247.400020pt;}
.y1e_c00191{bottom:261.466686pt;}
.y1d_c00191{bottom:274.866686pt;}
.y1c_c00191{bottom:288.666686pt;}
.y1b_c00191{bottom:301.800020pt;}
.y1a_c00191{bottom:315.533353pt;}
.y19_c00191{bottom:329.000020pt;}
.y18_c00191{bottom:343.066686pt;}
.y17_c00191{bottom:355.866686pt;}
.y16_c00191{bottom:405.466686pt;}
.y15_c00191{bottom:423.066686pt;}
.y14_c00191{bottom:440.333353pt;}
.y13_c00191{bottom:457.266686pt;}
.y12_c00191{bottom:474.600020pt;}
.y11_c00191{bottom:491.866686pt;}
.y10_c00191{bottom:509.133353pt;}
.yf_c00191{bottom:526.733353pt;}
.ye_c00191{bottom:544.000020pt;}
.yd_c00191{bottom:561.266686pt;}
.yc_c00191{bottom:578.266686pt;}
.yb_c00191{bottom:595.866686pt;}
.ya_c00191{bottom:613.133353pt;}
.y9_c00191{bottom:630.066686pt;}
.y8_c00191{bottom:647.666686pt;}
.y7_c00191{bottom:665.000020pt;}
.y6_c00191{bottom:682.266686pt;}
.y5_c00191{bottom:699.200020pt;}
.y4_c00191{bottom:716.200020pt;}
.y3_c00191{bottom:733.466686pt;}
.y2_c00191{bottom:750.733353pt;}
.y1_c00191{bottom:788.200020pt;}
.h2_c00191{height:44.470052pt;}
.h4_c00191{height:44.492188pt;}
.h3_c00191{height:52.343750pt;}
.h1_c00191{height:851.333333pt;}
.h0_c00191{height:851.533333pt;}
.w0_c00191{width:570.533360pt;}
.w1_c00191{width:570.666667pt;}
.x0_c00191{left:0.000000pt;}
.x2_c00191{left:71.666667pt;}
.x4_c00191{left:76.800000pt;}
.x3_c00191{left:86.400000pt;}
.x6_c00191{left:100.466667pt;}
.x5_c00191{left:101.466667pt;}
.x1_c00191{left:236.133333pt;}
.x7_c00191{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ea70fa01957d880fc22f3f96.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00192;src:url('chunks/assets/font_2cc013636472613e719aba00.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00192{letter-spacing:0.000000px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00192{word-spacing:-15.000000px;}
.ws0_c00192{word-spacing:-12.750000px;}
.ws2_c00192{word-spacing:0.000000px;}
._10_c00192{margin-left:-12.540000px;}
._b_c00192{margin-left:-10.620000px;}
._11_c00192{margin-left:-9.240000px;}
._15_c00192{margin-left:-6.480000px;}
._17_c00192{margin-left:-5.475000px;}
._e_c00192{margin-left:-4.020000px;}
._f_c00192{margin-left:-2.760000px;}
._3_c00192{margin-left:-1.260000px;}
._0_c00192{width:1.260000px;}
._2_c00192{width:2.880000px;}
._4_c00192{width:4.020000px;}
._c_c00192{width:5.220000px;}
._a_c00192{width:7.080000px;}
._9_c00192{width:8.400000px;}
._8_c00192{width:9.420000px;}
._7_c00192{width:10.860000px;}
._6_c00192{width:12.660000px;}
._5_c00192{width:13.800000px;}
._1a_c00192{width:14.801976px;}
._1_c00192{width:16.260000px;}
._d_c00192{width:17.520000px;}
._12_c00192{width:19.020000px;}
._13_c00192{width:20.820000px;}
._14_c00192{width:22.380000px;}
._16_c00192{width:24.030000px;}
._18_c00192{width:25.530000px;}
._19_c00192{width:27.029970px;}
.fc1_c00192{color:transparent;}
.fc0_c00192{color:rgb(35,31,32);}
.fs1_c00192{font-size:51.000000px;}
.fs0_c00192{font-size:60.000000px;}
.y0_c00192{bottom:0.000000px;}
.y2b_c00192{bottom:64.800022px;}
.y2a_c00192{bottom:110.175022px;}
.y29_c00192{bottom:125.325022px;}
.y28_c00192{bottom:140.775022px;}
.y27_c00192{bottom:156.225022px;}
.y26_c00192{bottom:171.750022px;}
.y25_c00192{bottom:186.825022px;}
.y24_c00192{bottom:202.350022px;}
.y23_c00192{bottom:217.125022px;}
.y22_c00192{bottom:232.575022px;}
.y21_c00192{bottom:247.725022px;}
.y20_c00192{bottom:263.175022px;}
.y1f_c00192{bottom:278.325022px;}
.y1e_c00192{bottom:293.775022px;}
.y1d_c00192{bottom:309.225022px;}
.y1c_c00192{bottom:324.750022px;}
.y1b_c00192{bottom:339.825022px;}
.y1a_c00192{bottom:355.350022px;}
.y19_c00192{bottom:370.425022px;}
.y18_c00192{bottom:385.575022px;}
.y17_c00192{bottom:401.025022px;}
.y16_c00192{bottom:416.175022px;}
.y15_c00192{bottom:431.625022px;}
.y14_c00192{bottom:446.775022px;}
.y12_c00192{bottom:514.725022px;}
.y11_c00192{bottom:534.225022px;}
.y10_c00192{bottom:553.725022px;}
.yf_c00192{bottom:573.150022px;}
.ye_c00192{bottom:592.200022px;}
.yd_c00192{bottom:612.000022px;}
.yc_c00192{bottom:631.425022px;}
.yb_c00192{bottom:650.550022px;}
.ya_c00192{bottom:669.975022px;}
.y9_c00192{bottom:689.775022px;}
.y8_c00192{bottom:708.825022px;}
.y7_c00192{bottom:728.325022px;}
.y6_c00192{bottom:748.125022px;}
.y5_c00192{bottom:767.550022px;}
.y4_c00192{bottom:786.225022px;}
.y3_c00192{bottom:806.025022px;}
.y2_c00192{bottom:825.525022px;}
.y1_c00192{bottom:844.950022px;}
.y13_c00192{bottom:886.725022px;}
.h3_c00192{height:50.053711px;}
.h2_c00192{height:58.886719px;}
.h1_c00192{height:957.750000px;}
.h0_c00192{height:957.975000px;}
.w1_c00192{width:643.500000px;}
.w0_c00192{width:643.650000px;}
.x0_c00192{left:0.000000px;}
.x1_c00192{left:91.425000px;}
.x3_c00192{left:96.450000px;}
.x2_c00192{left:107.250000px;}
.x4_c00192{left:124.200000px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls0_c00192{letter-spacing:0.000000pt;}
.ws1_c00192{word-spacing:-13.333333pt;}
.ws0_c00192{word-spacing:-11.333333pt;}
.ws2_c00192{word-spacing:0.000000pt;}
._10_c00192{margin-left:-11.146667pt;}
._b_c00192{margin-left:-9.440000pt;}
._11_c00192{margin-left:-8.213333pt;}
._15_c00192{margin-left:-5.760000pt;}
._17_c00192{margin-left:-4.866667pt;}
._e_c00192{margin-left:-3.573333pt;}
._f_c00192{margin-left:-2.453333pt;}
._3_c00192{margin-left:-1.120000pt;}
._0_c00192{width:1.120000pt;}
._2_c00192{width:2.560000pt;}
._4_c00192{width:3.573333pt;}
._c_c00192{width:4.640000pt;}
._a_c00192{width:6.293333pt;}
._9_c00192{width:7.466667pt;}
._8_c00192{width:8.373333pt;}
._7_c00192{width:9.653333pt;}
._6_c00192{width:11.253333pt;}
._5_c00192{width:12.266667pt;}
._1a_c00192{width:13.157312pt;}
._1_c00192{width:14.453333pt;}
._d_c00192{width:15.573333pt;}
._12_c00192{width:16.906667pt;}
._13_c00192{width:18.506667pt;}
._14_c00192{width:19.893333pt;}
._16_c00192{width:21.360000pt;}
._18_c00192{width:22.693333pt;}
._19_c00192{width:24.026640pt;}
.fs1_c00192{font-size:45.333333pt;}
.fs0_c00192{font-size:53.333333pt;}
.y0_c00192{bottom:0.000000pt;}
.y2b_c00192{bottom:57.600020pt;}
.y2a_c00192{bottom:97.933353pt;}
.y29_c00192{bottom:111.400020pt;}
.y28_c00192{bottom:125.133353pt;}
.y27_c00192{bottom:138.866686pt;}
.y26_c00192{bottom:152.666686pt;}
.y25_c00192{bottom:166.066686pt;}
.y24_c00192{bottom:179.866686pt;}
.y23_c00192{bottom:193.000020pt;}
.y22_c00192{bottom:206.733353pt;}
.y21_c00192{bottom:220.200020pt;}
.y20_c00192{bottom:233.933353pt;}
.y1f_c00192{bottom:247.400020pt;}
.y1e_c00192{bottom:261.133353pt;}
.y1d_c00192{bottom:274.866686pt;}
.y1c_c00192{bottom:288.666686pt;}
.y1b_c00192{bottom:302.066686pt;}
.y1a_c00192{bottom:315.866686pt;}
.y19_c00192{bottom:329.266686pt;}
.y18_c00192{bottom:342.733353pt;}
.y17_c00192{bottom:356.466686pt;}
.y16_c00192{bottom:369.933353pt;}
.y15_c00192{bottom:383.666686pt;}
.y14_c00192{bottom:397.133353pt;}
.y12_c00192{bottom:457.533353pt;}
.y11_c00192{bottom:474.866686pt;}
.y10_c00192{bottom:492.200020pt;}
.yf_c00192{bottom:509.466686pt;}
.ye_c00192{bottom:526.400020pt;}
.yd_c00192{bottom:544.000020pt;}
.yc_c00192{bottom:561.266686pt;}
.yb_c00192{bottom:578.266686pt;}
.ya_c00192{bottom:595.533353pt;}
.y9_c00192{bottom:613.133353pt;}
.y8_c00192{bottom:630.066686pt;}
.y7_c00192{bottom:647.400020pt;}
.y6_c00192{bottom:665.000020pt;}
.y5_c00192{bottom:682.266686pt;}
.y4_c00192{bottom:698.866686pt;}
.y3_c00192{bottom:716.466686pt;}
.y2_c00192{bottom:733.800020pt;}
.y1_c00192{bottom:751.066686pt;}
.y13_c00192{bottom:788.200020pt;}
.h3_c00192{height:44.492188pt;}
.h2_c00192{height:52.343750pt;}
.h1_c00192{height:851.333333pt;}
.h0_c00192{height:851.533333pt;}
.w1_c00192{width:572.000000pt;}
.w0_c00192{width:572.133333pt;}
.x0_c00192{left:0.000000pt;}
.x1_c00192{left:81.266667pt;}
.x3_c00192{left:85.733333pt;}
.x2_c00192{left:95.333333pt;}
.x4_c00192{left:110.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_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_415aaa4dd6b717002dfc38df.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00193;src:url('chunks/assets/font_deb3f22aed80b0a98b3859d5.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00193{letter-spacing:0.000000px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00193{word-spacing:-15.000000px;}
.ws1_c00193{word-spacing:-12.750000px;}
.ws2_c00193{word-spacing:0.000000px;}
._5_c00193{margin-left:-11.871801px;}
._d_c00193{margin-left:-10.574970px;}
._f_c00193{margin-left:-9.503661px;}
._12_c00193{margin-left:-5.959704px;}
._0_c00193{margin-left:-4.565979px;}
._16_c00193{margin-left:-3.368865px;}
._7_c00193{margin-left:-2.103483px;}
._a_c00193{margin-left:-1.013850px;}
._1_c00193{width:1.238994px;}
._3_c00193{width:2.337177px;}
._8_c00193{width:3.570042px;}
._2_c00193{width:4.715919px;}
._4_c00193{width:6.305820px;}
._e_c00193{width:7.374180px;}
._9_c00193{width:8.579496px;}
._6_c00193{width:10.020000px;}
._c_c00193{width:11.237643px;}
._b_c00193{width:12.303483px;}
._13_c00193{width:14.175489px;}
._14_c00193{width:15.624252px;}
._11_c00193{width:17.015046px;}
._18_c00193{width:18.221718px;}
._10_c00193{width:20.186652px;}
._15_c00193{width:21.952938px;}
._17_c00193{width:25.722306px;}
.fc1_c00193{color:transparent;}
.fc0_c00193{color:rgb(35,31,32);}
.fs0_c00193{font-size:51.000000px;}
.fs1_c00193{font-size:60.000000px;}
.y0_c00193{bottom:0.000000px;}
.y25_c00193{bottom:64.425022px;}
.y24_c00193{bottom:110.175022px;}
.y23_c00193{bottom:125.625022px;}
.y22_c00193{bottom:141.150022px;}
.y21_c00193{bottom:156.225022px;}
.y20_c00193{bottom:171.375022px;}
.y1f_c00193{bottom:186.525022px;}
.y1e_c00193{bottom:202.350022px;}
.y1d_c00193{bottom:217.425022px;}
.y1c_c00193{bottom:232.950022px;}
.y1b_c00193{bottom:247.725022px;}
.y1a_c00193{bottom:263.550022px;}
.y19_c00193{bottom:278.625022px;}
.y18_c00193{bottom:294.150022px;}
.y17_c00193{bottom:309.225022px;}
.y16_c00193{bottom:324.375022px;}
.y15_c00193{bottom:339.825022px;}
.y14_c00193{bottom:354.975022px;}
.y13_c00193{bottom:370.425022px;}
.y12_c00193{bottom:385.950022px;}
.y11_c00193{bottom:400.725022px;}
.y10_c00193{bottom:516.600022px;}
.yf_c00193{bottom:536.400022px;}
.ye_c00193{bottom:555.825022px;}
.yd_c00193{bottom:575.325022px;}
.yc_c00193{bottom:594.750022px;}
.yb_c00193{bottom:613.800022px;}
.ya_c00193{bottom:633.600022px;}
.y9_c00193{bottom:653.025022px;}
.y8_c00193{bottom:672.525022px;}
.y7_c00193{bottom:691.575022px;}
.y6_c00193{bottom:711.375022px;}
.y5_c00193{bottom:730.800022px;}
.y4_c00193{bottom:768.975022px;}
.y3_c00193{bottom:825.150022px;}
.y2_c00193{bottom:844.950022px;}
.y1_c00193{bottom:886.725022px;}
.h2_c00193{height:50.028809px;}
.h4_c00193{height:50.053711px;}
.h3_c00193{height:58.886719px;}
.h1_c00193{height:957.750000px;}
.h0_c00193{height:957.975000px;}
.w0_c00193{width:641.850030px;}
.w1_c00193{width:642.000000px;}
.x0_c00193{left:0.000000px;}
.x2_c00193{left:81.375000px;}
.x3_c00193{left:86.400000px;}
.x4_c00193{left:113.775000px;}
.x1_c00193{left:265.650000px;}
.x5_c00193{left:532.050000px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls0_c00193{letter-spacing:0.000000pt;}
.ws0_c00193{word-spacing:-13.333333pt;}
.ws1_c00193{word-spacing:-11.333333pt;}
.ws2_c00193{word-spacing:0.000000pt;}
._5_c00193{margin-left:-10.552712pt;}
._d_c00193{margin-left:-9.399973pt;}
._f_c00193{margin-left:-8.447699pt;}
._12_c00193{margin-left:-5.297515pt;}
._0_c00193{margin-left:-4.058648pt;}
._16_c00193{margin-left:-2.994547pt;}
._7_c00193{margin-left:-1.869763pt;}
._a_c00193{margin-left:-0.901200pt;}
._1_c00193{width:1.101328pt;}
._3_c00193{width:2.077491pt;}
._8_c00193{width:3.173371pt;}
._2_c00193{width:4.191928pt;}
._4_c00193{width:5.605173pt;}
._e_c00193{width:6.554827pt;}
._9_c00193{width:7.626219pt;}
._6_c00193{width:8.906667pt;}
._c_c00193{width:9.989016pt;}
._b_c00193{width:10.936429pt;}
._13_c00193{width:12.600435pt;}
._14_c00193{width:13.888224pt;}
._11_c00193{width:15.124485pt;}
._18_c00193{width:16.197083pt;}
._10_c00193{width:17.943691pt;}
._15_c00193{width:19.513723pt;}
._17_c00193{width:22.864272pt;}
.fs0_c00193{font-size:45.333333pt;}
.fs1_c00193{font-size:53.333333pt;}
.y0_c00193{bottom:0.000000pt;}
.y25_c00193{bottom:57.266686pt;}
.y24_c00193{bottom:97.933353pt;}
.y23_c00193{bottom:111.666686pt;}
.y22_c00193{bottom:125.466686pt;}
.y21_c00193{bottom:138.866686pt;}
.y20_c00193{bottom:152.333353pt;}
.y1f_c00193{bottom:165.800020pt;}
.y1e_c00193{bottom:179.866686pt;}
.y1d_c00193{bottom:193.266686pt;}
.y1c_c00193{bottom:207.066686pt;}
.y1b_c00193{bottom:220.200020pt;}
.y1a_c00193{bottom:234.266686pt;}
.y19_c00193{bottom:247.666686pt;}
.y18_c00193{bottom:261.466686pt;}
.y17_c00193{bottom:274.866686pt;}
.y16_c00193{bottom:288.333353pt;}
.y15_c00193{bottom:302.066686pt;}
.y14_c00193{bottom:315.533353pt;}
.y13_c00193{bottom:329.266686pt;}
.y12_c00193{bottom:343.066686pt;}
.y11_c00193{bottom:356.200020pt;}
.y10_c00193{bottom:459.200020pt;}
.yf_c00193{bottom:476.800020pt;}
.ye_c00193{bottom:494.066686pt;}
.yd_c00193{bottom:511.400020pt;}
.yc_c00193{bottom:528.666686pt;}
.yb_c00193{bottom:545.600020pt;}
.ya_c00193{bottom:563.200020pt;}
.y9_c00193{bottom:580.466686pt;}
.y8_c00193{bottom:597.800020pt;}
.y7_c00193{bottom:614.733353pt;}
.y6_c00193{bottom:632.333353pt;}
.y5_c00193{bottom:649.600020pt;}
.y4_c00193{bottom:683.533353pt;}
.y3_c00193{bottom:733.466686pt;}
.y2_c00193{bottom:751.066686pt;}
.y1_c00193{bottom:788.200020pt;}
.h2_c00193{height:44.470052pt;}
.h4_c00193{height:44.492188pt;}
.h3_c00193{height:52.343750pt;}
.h1_c00193{height:851.333333pt;}
.h0_c00193{height:851.533333pt;}
.w0_c00193{width:570.533360pt;}
.w1_c00193{width:570.666667pt;}
.x0_c00193{left:0.000000pt;}
.x2_c00193{left:72.333333pt;}
.x3_c00193{left:76.800000pt;}
.x4_c00193{left:101.133333pt;}
.x1_c00193{left:236.133333pt;}
.x5_c00193{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f3108d0f7e43315345d9daf6.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00194;src:url('chunks/assets/font_8c80f9beff1b8740b381e192.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00194{letter-spacing:0.000000px;}
.ls0_c00194{letter-spacing:16.500000px;}
.sc__c00194{text-shadow:none;}
.sc0_c00194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00194{-webkit-text-stroke:0px transparent;}
.sc0_c00194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00194{word-spacing:-15.000000px;}
.ws1_c00194{word-spacing:-12.750000px;}
.ws2_c00194{word-spacing:0.000000px;}
._f_c00194{margin-left:-12.600000px;}
._3_c00194{margin-left:-10.800000px;}
._2_c00194{margin-left:-9.420000px;}
._11_c00194{margin-left:-6.900000px;}
._7_c00194{margin-left:-5.400000px;}
._14_c00194{margin-left:-4.380000px;}
._13_c00194{margin-left:-2.580000px;}
._5_c00194{margin-left:-1.260000px;}
._1_c00194{width:1.740000px;}
._6_c00194{width:3.660000px;}
._10_c00194{width:5.160000px;}
._d_c00194{width:6.240000px;}
._c_c00194{width:7.380000px;}
._8_c00194{width:8.460000px;}
._b_c00194{width:9.780000px;}
._4_c00194{width:11.160000px;}
._a_c00194{width:12.300000px;}
._0_c00194{width:13.560000px;}
._18_c00194{width:14.684961px;}
._9_c00194{width:16.200000px;}
._e_c00194{width:17.700000px;}
._12_c00194{width:18.960000px;}
._15_c00194{width:25.589970px;}
._16_c00194{width:26.790000px;}
._17_c00194{width:27.989958px;}
.fc2_c00194{color:transparent;}
.fc1_c00194{color:rgb(0,0,0);}
.fc0_c00194{color:rgb(35,31,32);}
.fs1_c00194{font-size:51.000000px;}
.fs0_c00194{font-size:60.000000px;}
.y0_c00194{bottom:0.000000px;}
.y28_c00194{bottom:64.800022px;}
.y27_c00194{bottom:110.550022px;}
.y26_c00194{bottom:125.325022px;}
.y25_c00194{bottom:140.775022px;}
.y24_c00194{bottom:156.225022px;}
.y23_c00194{bottom:171.375022px;}
.y22_c00194{bottom:186.525022px;}
.y21_c00194{bottom:201.975022px;}
.y20_c00194{bottom:217.125022px;}
.y1f_c00194{bottom:232.950022px;}
.y1e_c00194{bottom:247.725022px;}
.y1d_c00194{bottom:263.175022px;}
.y1c_c00194{bottom:278.325022px;}
.y1b_c00194{bottom:293.775022px;}
.y1a_c00194{bottom:308.925022px;}
.y19_c00194{bottom:349.200022px;}
.y18_c00194{bottom:368.325022px;}
.y17_c00194{bottom:404.325022px;}
.y15_c00194{bottom:456.525022px;}
.y14_c00194{bottom:475.575022px;}
.y13_c00194{bottom:495.000022px;}
.y12_c00194{bottom:514.425022px;}
.y11_c00194{bottom:534.225022px;}
.y10_c00194{bottom:553.350022px;}
.yf_c00194{bottom:572.775022px;}
.ye_c00194{bottom:592.575022px;}
.yd_c00194{bottom:611.625022px;}
.yc_c00194{bottom:631.425022px;}
.yb_c00194{bottom:650.925022px;}
.ya_c00194{bottom:670.350022px;}
.y9_c00194{bottom:689.775022px;}
.y8_c00194{bottom:709.200022px;}
.y7_c00194{bottom:728.700022px;}
.y6_c00194{bottom:748.125022px;}
.y5_c00194{bottom:767.550022px;}
.y4_c00194{bottom:786.600022px;}
.y3_c00194{bottom:805.725022px;}
.y2_c00194{bottom:825.150022px;}
.y1_c00194{bottom:844.575022px;}
.y16_c00194{bottom:886.725022px;}
.h3_c00194{height:50.053711px;}
.h2_c00194{height:58.886719px;}
.h1_c00194{height:957.750000px;}
.h0_c00194{height:957.975000px;}
.w1_c00194{width:643.500000px;}
.w0_c00194{width:643.650000px;}
.x0_c00194{left:0.000000px;}
.x1_c00194{left:91.050000px;}
.x6_c00194{left:92.175000px;}
.x3_c00194{left:96.450000px;}
.x2_c00194{left:107.250000px;}
.x5_c00194{left:122.775000px;}
.x4_c00194{left:124.200000px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls1_c00194{letter-spacing:0.000000pt;}
.ls0_c00194{letter-spacing:14.666667pt;}
.ws0_c00194{word-spacing:-13.333333pt;}
.ws1_c00194{word-spacing:-11.333333pt;}
.ws2_c00194{word-spacing:0.000000pt;}
._f_c00194{margin-left:-11.200000pt;}
._3_c00194{margin-left:-9.600000pt;}
._2_c00194{margin-left:-8.373333pt;}
._11_c00194{margin-left:-6.133333pt;}
._7_c00194{margin-left:-4.800000pt;}
._14_c00194{margin-left:-3.893333pt;}
._13_c00194{margin-left:-2.293333pt;}
._5_c00194{margin-left:-1.120000pt;}
._1_c00194{width:1.546667pt;}
._6_c00194{width:3.253333pt;}
._10_c00194{width:4.586667pt;}
._d_c00194{width:5.546667pt;}
._c_c00194{width:6.560000pt;}
._8_c00194{width:7.520000pt;}
._b_c00194{width:8.693333pt;}
._4_c00194{width:9.920000pt;}
._a_c00194{width:10.933333pt;}
._0_c00194{width:12.053333pt;}
._18_c00194{width:13.053299pt;}
._9_c00194{width:14.400000pt;}
._e_c00194{width:15.733333pt;}
._12_c00194{width:16.853333pt;}
._15_c00194{width:22.746640pt;}
._16_c00194{width:23.813333pt;}
._17_c00194{width:24.879963pt;}
.fs1_c00194{font-size:45.333333pt;}
.fs0_c00194{font-size:53.333333pt;}
.y0_c00194{bottom:0.000000pt;}
.y28_c00194{bottom:57.600020pt;}
.y27_c00194{bottom:98.266686pt;}
.y26_c00194{bottom:111.400020pt;}
.y25_c00194{bottom:125.133353pt;}
.y24_c00194{bottom:138.866686pt;}
.y23_c00194{bottom:152.333353pt;}
.y22_c00194{bottom:165.800020pt;}
.y21_c00194{bottom:179.533353pt;}
.y20_c00194{bottom:193.000020pt;}
.y1f_c00194{bottom:207.066686pt;}
.y1e_c00194{bottom:220.200020pt;}
.y1d_c00194{bottom:233.933353pt;}
.y1c_c00194{bottom:247.400020pt;}
.y1b_c00194{bottom:261.133353pt;}
.y1a_c00194{bottom:274.600020pt;}
.y19_c00194{bottom:310.400020pt;}
.y18_c00194{bottom:327.400020pt;}
.y17_c00194{bottom:359.400020pt;}
.y15_c00194{bottom:405.800020pt;}
.y14_c00194{bottom:422.733353pt;}
.y13_c00194{bottom:440.000020pt;}
.y12_c00194{bottom:457.266686pt;}
.y11_c00194{bottom:474.866686pt;}
.y10_c00194{bottom:491.866686pt;}
.yf_c00194{bottom:509.133353pt;}
.ye_c00194{bottom:526.733353pt;}
.yd_c00194{bottom:543.666686pt;}
.yc_c00194{bottom:561.266686pt;}
.yb_c00194{bottom:578.600020pt;}
.ya_c00194{bottom:595.866686pt;}
.y9_c00194{bottom:613.133353pt;}
.y8_c00194{bottom:630.400020pt;}
.y7_c00194{bottom:647.733353pt;}
.y6_c00194{bottom:665.000020pt;}
.y5_c00194{bottom:682.266686pt;}
.y4_c00194{bottom:699.200020pt;}
.y3_c00194{bottom:716.200020pt;}
.y2_c00194{bottom:733.466686pt;}
.y1_c00194{bottom:750.733353pt;}
.y16_c00194{bottom:788.200020pt;}
.h3_c00194{height:44.492188pt;}
.h2_c00194{height:52.343750pt;}
.h1_c00194{height:851.333333pt;}
.h0_c00194{height:851.533333pt;}
.w1_c00194{width:572.000000pt;}
.w0_c00194{width:572.133333pt;}
.x0_c00194{left:0.000000pt;}
.x1_c00194{left:80.933333pt;}
.x6_c00194{left:81.933333pt;}
.x3_c00194{left:85.733333pt;}
.x2_c00194{left:95.333333pt;}
.x5_c00194{left:109.133333pt;}
.x4_c00194{left:110.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_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_ea34e59e2576d8a34ebc53bb.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00195;src:url('chunks/assets/font_336d0485cde1f2d3381111cf.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00195{letter-spacing:0.000000px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00195{word-spacing:-15.000000px;}
.ws0_c00195{word-spacing:-12.750000px;}
.ws2_c00195{word-spacing:0.000000px;}
._13_c00195{margin-left:-12.439170px;}
._b_c00195{margin-left:-11.106036px;}
._10_c00195{margin-left:-9.900000px;}
._f_c00195{margin-left:-8.648301px;}
._12_c00195{margin-left:-7.513512px;}
._11_c00195{margin-left:-5.937228px;}
._0_c00195{margin-left:-4.565979px;}
._6_c00195{margin-left:-2.543904px;}
._a_c00195{margin-left:-1.140000px;}
._1_c00195{width:1.238994px;}
._3_c00195{width:2.337177px;}
._d_c00195{width:3.575148px;}
._2_c00195{width:4.715919px;}
._7_c00195{width:5.889111px;}
._8_c00195{width:7.590117px;}
._9_c00195{width:9.031473px;}
._e_c00195{width:10.281006px;}
._c_c00195{width:11.444835px;}
._5_c00195{width:13.064835px;}
._16_c00195{width:14.573994px;}
._17_c00195{width:15.851913px;}
._4_c00195{width:16.949865px;}
._1a_c00195{width:19.433904px;}
._15_c00195{width:22.433904px;}
._19_c00195{width:23.933904px;}
._18_c00195{width:25.433874px;}
._14_c00195{width:26.477868px;}
._1b_c00195{width:29.381682px;}
.fc1_c00195{color:transparent;}
.fc0_c00195{color:rgb(35,31,32);}
.fs0_c00195{font-size:51.000000px;}
.fs1_c00195{font-size:60.000000px;}
.y0_c00195{bottom:0.000000px;}
.y2c_c00195{bottom:64.425022px;}
.y2b_c00195{bottom:110.550022px;}
.y2a_c00195{bottom:125.625022px;}
.y29_c00195{bottom:140.775022px;}
.y28_c00195{bottom:155.925022px;}
.y27_c00195{bottom:171.675022px;}
.y26_c00195{bottom:186.825022px;}
.y25_c00195{bottom:201.975022px;}
.y24_c00195{bottom:217.125022px;}
.y23_c00195{bottom:231.300022px;}
.y22_c00195{bottom:247.725022px;}
.y21_c00195{bottom:263.175022px;}
.y20_c00195{bottom:278.325022px;}
.y1f_c00195{bottom:293.775022px;}
.y1e_c00195{bottom:308.925022px;}
.y1d_c00195{bottom:324.375022px;}
.y1c_c00195{bottom:339.825022px;}
.y1b_c00195{bottom:354.975022px;}
.y1a_c00195{bottom:370.425022px;}
.y19_c00195{bottom:385.575022px;}
.y18_c00195{bottom:400.725022px;}
.y17_c00195{bottom:416.550022px;}
.y16_c00195{bottom:431.325022px;}
.y15_c00195{bottom:446.775022px;}
.y14_c00195{bottom:461.925022px;}
.y13_c00195{bottom:514.800022px;}
.y12_c00195{bottom:533.925022px;}
.y11_c00195{bottom:553.725022px;}
.y10_c00195{bottom:572.775022px;}
.yf_c00195{bottom:592.575022px;}
.ye_c00195{bottom:612.000022px;}
.yd_c00195{bottom:631.425022px;}
.yc_c00195{bottom:650.925022px;}
.yb_c00195{bottom:669.975022px;}
.ya_c00195{bottom:689.400022px;}
.y9_c00195{bottom:709.125022px;}
.y8_c00195{bottom:728.625022px;}
.y7_c00195{bottom:748.125022px;}
.y6_c00195{bottom:767.475022px;}
.y5_c00195{bottom:786.600022px;}
.y4_c00195{bottom:805.725022px;}
.y3_c00195{bottom:825.150022px;}
.y2_c00195{bottom:844.575022px;}
.y1_c00195{bottom:886.725022px;}
.h2_c00195{height:50.028809px;}
.h4_c00195{height:50.053711px;}
.h3_c00195{height:58.886719px;}
.h1_c00195{height:957.750000px;}
.h0_c00195{height:957.975000px;}
.w0_c00195{width:641.850030px;}
.w1_c00195{width:642.000000px;}
.x0_c00195{left:0.000000px;}
.x2_c00195{left:81.000000px;}
.x4_c00195{left:86.400000px;}
.x3_c00195{left:96.450000px;}
.x5_c00195{left:113.775000px;}
.x1_c00195{left:265.650000px;}
.x6_c00195{left:532.050000px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls0_c00195{letter-spacing:0.000000pt;}
.ws1_c00195{word-spacing:-13.333333pt;}
.ws0_c00195{word-spacing:-11.333333pt;}
.ws2_c00195{word-spacing:0.000000pt;}
._13_c00195{margin-left:-11.057040pt;}
._b_c00195{margin-left:-9.872032pt;}
._10_c00195{margin-left:-8.800000pt;}
._f_c00195{margin-left:-7.687379pt;}
._12_c00195{margin-left:-6.678677pt;}
._11_c00195{margin-left:-5.277536pt;}
._0_c00195{margin-left:-4.058648pt;}
._6_c00195{margin-left:-2.261248pt;}
._a_c00195{margin-left:-1.013333pt;}
._1_c00195{width:1.101328pt;}
._3_c00195{width:2.077491pt;}
._d_c00195{width:3.177909pt;}
._2_c00195{width:4.191928pt;}
._7_c00195{width:5.234765pt;}
._8_c00195{width:6.746771pt;}
._9_c00195{width:8.027976pt;}
._e_c00195{width:9.138672pt;}
._c_c00195{width:10.173187pt;}
._5_c00195{width:11.613187pt;}
._16_c00195{width:12.954661pt;}
._17_c00195{width:14.090589pt;}
._4_c00195{width:15.066547pt;}
._1a_c00195{width:17.274581pt;}
._15_c00195{width:19.941248pt;}
._19_c00195{width:21.274581pt;}
._18_c00195{width:22.607888pt;}
._14_c00195{width:23.535883pt;}
._1b_c00195{width:26.117051pt;}
.fs0_c00195{font-size:45.333333pt;}
.fs1_c00195{font-size:53.333333pt;}
.y0_c00195{bottom:0.000000pt;}
.y2c_c00195{bottom:57.266686pt;}
.y2b_c00195{bottom:98.266686pt;}
.y2a_c00195{bottom:111.666686pt;}
.y29_c00195{bottom:125.133353pt;}
.y28_c00195{bottom:138.600020pt;}
.y27_c00195{bottom:152.600020pt;}
.y26_c00195{bottom:166.066686pt;}
.y25_c00195{bottom:179.533353pt;}
.y24_c00195{bottom:193.000020pt;}
.y23_c00195{bottom:205.600020pt;}
.y22_c00195{bottom:220.200020pt;}
.y21_c00195{bottom:233.933353pt;}
.y20_c00195{bottom:247.400020pt;}
.y1f_c00195{bottom:261.133353pt;}
.y1e_c00195{bottom:274.600020pt;}
.y1d_c00195{bottom:288.333353pt;}
.y1c_c00195{bottom:302.066686pt;}
.y1b_c00195{bottom:315.533353pt;}
.y1a_c00195{bottom:329.266686pt;}
.y19_c00195{bottom:342.733353pt;}
.y18_c00195{bottom:356.200020pt;}
.y17_c00195{bottom:370.266686pt;}
.y16_c00195{bottom:383.400020pt;}
.y15_c00195{bottom:397.133353pt;}
.y14_c00195{bottom:410.600020pt;}
.y13_c00195{bottom:457.600020pt;}
.y12_c00195{bottom:474.600020pt;}
.y11_c00195{bottom:492.200020pt;}
.y10_c00195{bottom:509.133353pt;}
.yf_c00195{bottom:526.733353pt;}
.ye_c00195{bottom:544.000020pt;}
.yd_c00195{bottom:561.266686pt;}
.yc_c00195{bottom:578.600020pt;}
.yb_c00195{bottom:595.533353pt;}
.ya_c00195{bottom:612.800020pt;}
.y9_c00195{bottom:630.333353pt;}
.y8_c00195{bottom:647.666686pt;}
.y7_c00195{bottom:665.000020pt;}
.y6_c00195{bottom:682.200020pt;}
.y5_c00195{bottom:699.200020pt;}
.y4_c00195{bottom:716.200020pt;}
.y3_c00195{bottom:733.466686pt;}
.y2_c00195{bottom:750.733353pt;}
.y1_c00195{bottom:788.200020pt;}
.h2_c00195{height:44.470052pt;}
.h4_c00195{height:44.492188pt;}
.h3_c00195{height:52.343750pt;}
.h1_c00195{height:851.333333pt;}
.h0_c00195{height:851.533333pt;}
.w0_c00195{width:570.533360pt;}
.w1_c00195{width:570.666667pt;}
.x0_c00195{left:0.000000pt;}
.x2_c00195{left:72.000000pt;}
.x4_c00195{left:76.800000pt;}
.x3_c00195{left:85.733333pt;}
.x5_c00195{left:101.133333pt;}
.x1_c00195{left:236.133333pt;}
.x6_c00195{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f2af51fdb02d855c552fec8c.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00196;src:url('chunks/assets/font_0e86ee15d3a7c4eee7a86bc4.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00196{letter-spacing:0.000000px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00196{word-spacing:-15.000000px;}
.ws0_c00196{word-spacing:-12.750000px;}
.ws2_c00196{word-spacing:0.000000px;}
._f_c00196{margin-left:-12.300000px;}
._4_c00196{margin-left:-10.320000px;}
._c_c00196{margin-left:-8.220000px;}
._14_c00196{margin-left:-5.340000px;}
._17_c00196{margin-left:-4.313892px;}
._a_c00196{margin-left:-3.120000px;}
._3_c00196{margin-left:-1.860000px;}
._0_c00196{width:1.440000px;}
._7_c00196{width:2.940000px;}
._9_c00196{width:3.960000px;}
._13_c00196{width:5.400000px;}
._1_c00196{width:6.660000px;}
._10_c00196{width:8.160000px;}
._e_c00196{width:9.480000px;}
._2_c00196{width:11.100000px;}
._5_c00196{width:12.540000px;}
._6_c00196{width:13.860000px;}
._8_c00196{width:17.040000px;}
._b_c00196{width:19.500000px;}
._d_c00196{width:20.700000px;}
._11_c00196{width:22.020000px;}
._12_c00196{width:23.280000px;}
._15_c00196{width:24.330000px;}
._16_c00196{width:25.469970px;}
.fc1_c00196{color:transparent;}
.fc0_c00196{color:rgb(35,31,32);}
.fs1_c00196{font-size:51.000000px;}
.fs0_c00196{font-size:60.000000px;}
.y0_c00196{bottom:0.000000px;}
.y2b_c00196{bottom:64.425022px;}
.y2a_c00196{bottom:110.175022px;}
.y29_c00196{bottom:125.325022px;}
.y28_c00196{bottom:140.775022px;}
.y27_c00196{bottom:155.925022px;}
.y26_c00196{bottom:171.375022px;}
.y25_c00196{bottom:186.525022px;}
.y24_c00196{bottom:201.975022px;}
.y23_c00196{bottom:217.125022px;}
.y22_c00196{bottom:232.575022px;}
.y21_c00196{bottom:247.725022px;}
.y20_c00196{bottom:263.550022px;}
.y1f_c00196{bottom:278.625022px;}
.y1e_c00196{bottom:293.775022px;}
.y1d_c00196{bottom:309.225022px;}
.y1c_c00196{bottom:324.750022px;}
.y1b_c00196{bottom:339.825022px;}
.y1a_c00196{bottom:354.975022px;}
.y19_c00196{bottom:370.125022px;}
.y17_c00196{bottom:417.300022px;}
.y16_c00196{bottom:436.725022px;}
.y15_c00196{bottom:456.150022px;}
.y14_c00196{bottom:475.575022px;}
.y13_c00196{bottom:495.000022px;}
.y12_c00196{bottom:514.800022px;}
.y11_c00196{bottom:533.925022px;}
.y10_c00196{bottom:553.350022px;}
.yf_c00196{bottom:573.150022px;}
.ye_c00196{bottom:592.200022px;}
.yd_c00196{bottom:611.625022px;}
.yc_c00196{bottom:631.125022px;}
.yb_c00196{bottom:650.550022px;}
.ya_c00196{bottom:670.350022px;}
.y9_c00196{bottom:689.775022px;}
.y8_c00196{bottom:709.200022px;}
.y7_c00196{bottom:728.325022px;}
.y6_c00196{bottom:747.750022px;}
.y5_c00196{bottom:767.550022px;}
.y4_c00196{bottom:786.225022px;}
.y3_c00196{bottom:805.725022px;}
.y2_c00196{bottom:825.525022px;}
.y1_c00196{bottom:844.950022px;}
.y18_c00196{bottom:886.725022px;}
.h3_c00196{height:50.053711px;}
.h2_c00196{height:58.886719px;}
.h1_c00196{height:957.750000px;}
.h0_c00196{height:957.975000px;}
.w1_c00196{width:643.500000px;}
.w0_c00196{width:643.650000px;}
.x0_c00196{left:0.000000px;}
.x2_c00196{left:90.375000px;}
.x1_c00196{left:91.425000px;}
.x4_c00196{left:96.450000px;}
.x3_c00196{left:106.575000px;}
.x5_c00196{left:123.825000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls0_c00196{letter-spacing:0.000000pt;}
.ws1_c00196{word-spacing:-13.333333pt;}
.ws0_c00196{word-spacing:-11.333333pt;}
.ws2_c00196{word-spacing:0.000000pt;}
._f_c00196{margin-left:-10.933333pt;}
._4_c00196{margin-left:-9.173333pt;}
._c_c00196{margin-left:-7.306667pt;}
._14_c00196{margin-left:-4.746667pt;}
._17_c00196{margin-left:-3.834571pt;}
._a_c00196{margin-left:-2.773333pt;}
._3_c00196{margin-left:-1.653333pt;}
._0_c00196{width:1.280000pt;}
._7_c00196{width:2.613333pt;}
._9_c00196{width:3.520000pt;}
._13_c00196{width:4.800000pt;}
._1_c00196{width:5.920000pt;}
._10_c00196{width:7.253333pt;}
._e_c00196{width:8.426667pt;}
._2_c00196{width:9.866667pt;}
._5_c00196{width:11.146667pt;}
._6_c00196{width:12.320000pt;}
._8_c00196{width:15.146667pt;}
._b_c00196{width:17.333333pt;}
._d_c00196{width:18.400000pt;}
._11_c00196{width:19.573333pt;}
._12_c00196{width:20.693333pt;}
._15_c00196{width:21.626667pt;}
._16_c00196{width:22.639973pt;}
.fs1_c00196{font-size:45.333333pt;}
.fs0_c00196{font-size:53.333333pt;}
.y0_c00196{bottom:0.000000pt;}
.y2b_c00196{bottom:57.266686pt;}
.y2a_c00196{bottom:97.933353pt;}
.y29_c00196{bottom:111.400020pt;}
.y28_c00196{bottom:125.133353pt;}
.y27_c00196{bottom:138.600020pt;}
.y26_c00196{bottom:152.333353pt;}
.y25_c00196{bottom:165.800020pt;}
.y24_c00196{bottom:179.533353pt;}
.y23_c00196{bottom:193.000020pt;}
.y22_c00196{bottom:206.733353pt;}
.y21_c00196{bottom:220.200020pt;}
.y20_c00196{bottom:234.266686pt;}
.y1f_c00196{bottom:247.666686pt;}
.y1e_c00196{bottom:261.133353pt;}
.y1d_c00196{bottom:274.866686pt;}
.y1c_c00196{bottom:288.666686pt;}
.y1b_c00196{bottom:302.066686pt;}
.y1a_c00196{bottom:315.533353pt;}
.y19_c00196{bottom:329.000020pt;}
.y17_c00196{bottom:370.933353pt;}
.y16_c00196{bottom:388.200020pt;}
.y15_c00196{bottom:405.466686pt;}
.y14_c00196{bottom:422.733353pt;}
.y13_c00196{bottom:440.000020pt;}
.y12_c00196{bottom:457.600020pt;}
.y11_c00196{bottom:474.600020pt;}
.y10_c00196{bottom:491.866686pt;}
.yf_c00196{bottom:509.466686pt;}
.ye_c00196{bottom:526.400020pt;}
.yd_c00196{bottom:543.666686pt;}
.yc_c00196{bottom:561.000020pt;}
.yb_c00196{bottom:578.266686pt;}
.ya_c00196{bottom:595.866686pt;}
.y9_c00196{bottom:613.133353pt;}
.y8_c00196{bottom:630.400020pt;}
.y7_c00196{bottom:647.400020pt;}
.y6_c00196{bottom:664.666686pt;}
.y5_c00196{bottom:682.266686pt;}
.y4_c00196{bottom:698.866686pt;}
.y3_c00196{bottom:716.200020pt;}
.y2_c00196{bottom:733.800020pt;}
.y1_c00196{bottom:751.066686pt;}
.y18_c00196{bottom:788.200020pt;}
.h3_c00196{height:44.492188pt;}
.h2_c00196{height:52.343750pt;}
.h1_c00196{height:851.333333pt;}
.h0_c00196{height:851.533333pt;}
.w1_c00196{width:572.000000pt;}
.w0_c00196{width:572.133333pt;}
.x0_c00196{left:0.000000pt;}
.x2_c00196{left:80.333333pt;}
.x1_c00196{left:81.266667pt;}
.x4_c00196{left:85.733333pt;}
.x3_c00196{left:94.733333pt;}
.x5_c00196{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b8e8ba9c61235ce03137394a.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00197;src:url('chunks/assets/font_cd9e74369cc213f5c5e6a901.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00197{letter-spacing:0.000000px;}
.sc__c00197{text-shadow:none;}
.sc0_c00197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00197{-webkit-text-stroke:0px transparent;}
.sc0_c00197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00197{word-spacing:-15.000000px;}
.ws0_c00197{word-spacing:-12.750000px;}
.ws2_c00197{word-spacing:0.000000px;}
._f_c00197{margin-left:-15.600000px;}
._14_c00197{margin-left:-11.955825px;}
._7_c00197{margin-left:-10.800000px;}
._6_c00197{margin-left:-9.600000px;}
._4_c00197{margin-left:-8.142477px;}
._11_c00197{margin-left:-5.642829px;}
._0_c00197{margin-left:-4.565979px;}
._13_c00197{margin-left:-2.946306px;}
._b_c00197{margin-left:-1.740000px;}
._1_c00197{width:1.238994px;}
._3_c00197{width:2.337177px;}
._c_c00197{width:3.590676px;}
._2_c00197{width:4.715919px;}
._12_c00197{width:6.206847px;}
._10_c00197{width:7.242012px;}
._9_c00197{width:9.185841px;}
._8_c00197{width:10.800000px;}
._a_c00197{width:12.579189px;}
._5_c00197{width:13.800000px;}
._e_c00197{width:17.325765px;}
._d_c00197{width:19.426728px;}
._15_c00197{width:21.180000px;}
._16_c00197{width:22.230000px;}
._18_c00197{width:25.469958px;}
._17_c00197{width:26.969970px;}
._19_c00197{width:29.376306px;}
.fc1_c00197{color:transparent;}
.fc0_c00197{color:rgb(35,31,32);}
.fs0_c00197{font-size:51.000000px;}
.fs1_c00197{font-size:60.000000px;}
.y0_c00197{bottom:0.000000px;}
.y2a_c00197{bottom:64.425022px;}
.y29_c00197{bottom:110.550022px;}
.y28_c00197{bottom:125.325022px;}
.y27_c00197{bottom:140.775022px;}
.y26_c00197{bottom:155.925022px;}
.y25_c00197{bottom:171.375022px;}
.y24_c00197{bottom:186.525022px;}
.y23_c00197{bottom:202.350022px;}
.y22_c00197{bottom:217.125022px;}
.y21_c00197{bottom:232.575022px;}
.y20_c00197{bottom:248.025022px;}
.y1f_c00197{bottom:263.175022px;}
.y1e_c00197{bottom:278.325022px;}
.y1d_c00197{bottom:293.775022px;}
.y1c_c00197{bottom:308.925022px;}
.y1b_c00197{bottom:359.325022px;}
.y1a_c00197{bottom:378.750022px;}
.y19_c00197{bottom:398.175022px;}
.y18_c00197{bottom:417.225022px;}
.y17_c00197{bottom:436.725022px;}
.y16_c00197{bottom:456.150022px;}
.y15_c00197{bottom:475.575022px;}
.y14_c00197{bottom:495.375022px;}
.y13_c00197{bottom:514.425022px;}
.y12_c00197{bottom:534.225022px;}
.y11_c00197{bottom:553.350022px;}
.y10_c00197{bottom:572.775022px;}
.yf_c00197{bottom:592.200022px;}
.ye_c00197{bottom:611.625022px;}
.yd_c00197{bottom:631.125022px;}
.yc_c00197{bottom:650.925022px;}
.yb_c00197{bottom:670.350022px;}
.ya_c00197{bottom:689.775022px;}
.y9_c00197{bottom:708.825022px;}
.y8_c00197{bottom:728.325022px;}
.y7_c00197{bottom:748.125022px;}
.y6_c00197{bottom:767.175022px;}
.y5_c00197{bottom:786.225022px;}
.y4_c00197{bottom:805.725022px;}
.y3_c00197{bottom:825.525022px;}
.y2_c00197{bottom:844.950022px;}
.y1_c00197{bottom:886.725022px;}
.h2_c00197{height:50.028809px;}
.h4_c00197{height:50.053711px;}
.h3_c00197{height:58.886719px;}
.h1_c00197{height:957.750000px;}
.h0_c00197{height:957.975000px;}
.w0_c00197{width:641.850030px;}
.w1_c00197{width:642.000000px;}
.x0_c00197{left:0.000000px;}
.x2_c00197{left:81.000000px;}
.x4_c00197{left:86.400000px;}
.x3_c00197{left:96.150000px;}
.x5_c00197{left:113.775000px;}
.x1_c00197{left:265.650000px;}
.x6_c00197{left:532.050000px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls0_c00197{letter-spacing:0.000000pt;}
.ws1_c00197{word-spacing:-13.333333pt;}
.ws0_c00197{word-spacing:-11.333333pt;}
.ws2_c00197{word-spacing:0.000000pt;}
._f_c00197{margin-left:-13.866667pt;}
._14_c00197{margin-left:-10.627400pt;}
._7_c00197{margin-left:-9.600000pt;}
._6_c00197{margin-left:-8.533333pt;}
._4_c00197{margin-left:-7.237757pt;}
._11_c00197{margin-left:-5.015848pt;}
._0_c00197{margin-left:-4.058648pt;}
._13_c00197{margin-left:-2.618939pt;}
._b_c00197{margin-left:-1.546667pt;}
._1_c00197{width:1.101328pt;}
._3_c00197{width:2.077491pt;}
._c_c00197{width:3.191712pt;}
._2_c00197{width:4.191928pt;}
._12_c00197{width:5.517197pt;}
._10_c00197{width:6.437344pt;}
._9_c00197{width:8.165192pt;}
._8_c00197{width:9.600000pt;}
._a_c00197{width:11.181501pt;}
._5_c00197{width:12.266667pt;}
._e_c00197{width:15.400680pt;}
._d_c00197{width:17.268203pt;}
._15_c00197{width:18.826667pt;}
._16_c00197{width:19.760000pt;}
._18_c00197{width:22.639963pt;}
._17_c00197{width:23.973307pt;}
._19_c00197{width:26.112272pt;}
.fs0_c00197{font-size:45.333333pt;}
.fs1_c00197{font-size:53.333333pt;}
.y0_c00197{bottom:0.000000pt;}
.y2a_c00197{bottom:57.266686pt;}
.y29_c00197{bottom:98.266686pt;}
.y28_c00197{bottom:111.400020pt;}
.y27_c00197{bottom:125.133353pt;}
.y26_c00197{bottom:138.600020pt;}
.y25_c00197{bottom:152.333353pt;}
.y24_c00197{bottom:165.800020pt;}
.y23_c00197{bottom:179.866686pt;}
.y22_c00197{bottom:193.000020pt;}
.y21_c00197{bottom:206.733353pt;}
.y20_c00197{bottom:220.466686pt;}
.y1f_c00197{bottom:233.933353pt;}
.y1e_c00197{bottom:247.400020pt;}
.y1d_c00197{bottom:261.133353pt;}
.y1c_c00197{bottom:274.600020pt;}
.y1b_c00197{bottom:319.400020pt;}
.y1a_c00197{bottom:336.666686pt;}
.y19_c00197{bottom:353.933353pt;}
.y18_c00197{bottom:370.866686pt;}
.y17_c00197{bottom:388.200020pt;}
.y16_c00197{bottom:405.466686pt;}
.y15_c00197{bottom:422.733353pt;}
.y14_c00197{bottom:440.333353pt;}
.y13_c00197{bottom:457.266686pt;}
.y12_c00197{bottom:474.866686pt;}
.y11_c00197{bottom:491.866686pt;}
.y10_c00197{bottom:509.133353pt;}
.yf_c00197{bottom:526.400020pt;}
.ye_c00197{bottom:543.666686pt;}
.yd_c00197{bottom:561.000020pt;}
.yc_c00197{bottom:578.600020pt;}
.yb_c00197{bottom:595.866686pt;}
.ya_c00197{bottom:613.133353pt;}
.y9_c00197{bottom:630.066686pt;}
.y8_c00197{bottom:647.400020pt;}
.y7_c00197{bottom:665.000020pt;}
.y6_c00197{bottom:681.933353pt;}
.y5_c00197{bottom:698.866686pt;}
.y4_c00197{bottom:716.200020pt;}
.y3_c00197{bottom:733.800020pt;}
.y2_c00197{bottom:751.066686pt;}
.y1_c00197{bottom:788.200020pt;}
.h2_c00197{height:44.470052pt;}
.h4_c00197{height:44.492188pt;}
.h3_c00197{height:52.343750pt;}
.h1_c00197{height:851.333333pt;}
.h0_c00197{height:851.533333pt;}
.w0_c00197{width:570.533360pt;}
.w1_c00197{width:570.666667pt;}
.x0_c00197{left:0.000000pt;}
.x2_c00197{left:72.000000pt;}
.x4_c00197{left:76.800000pt;}
.x3_c00197{left:85.466667pt;}
.x5_c00197{left:101.133333pt;}
.x1_c00197{left:236.133333pt;}
.x6_c00197{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_db6211a1bc179f1cc4133b8c.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00198;src:url('chunks/assets/font_feccbe52733d8ccd65863300.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00198{letter-spacing:0.000000px;}
.ls0_c00198{letter-spacing:15.300000px;}
.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:-15.000000px;}
.ws1_c00198{word-spacing:-12.750000px;}
.ws2_c00198{word-spacing:0.000000px;}
._c_c00198{margin-left:-10.758291px;}
._b_c00198{margin-left:-9.641709px;}
._12_c00198{margin-left:-8.004750px;}
._e_c00198{margin-left:-6.893595px;}
._0_c00198{margin-left:-4.917012px;}
._d_c00198{margin-left:-3.900000px;}
._10_c00198{margin-left:-2.718291px;}
._1_c00198{margin-left:-1.650003px;}
._2_c00198{width:1.644039px;}
._3_c00198{width:3.284796px;}
._4_c00198{width:5.184156px;}
._11_c00198{width:6.570213px;}
._8_c00198{width:7.625553px;}
._7_c00198{width:8.888328px;}
._15_c00198{width:10.029087px;}
._5_c00198{width:11.214252px;}
._9_c00198{width:12.521709px;}
._6_c00198{width:13.839048px;}
._a_c00198{width:16.001940px;}
._f_c00198{width:17.715789px;}
._13_c00198{width:18.752700px;}
._18_c00198{width:21.748998px;}
._17_c00198{width:23.784003px;}
._16_c00198{width:25.668342px;}
._14_c00198{width:27.899958px;}
.fc2_c00198{color:transparent;}
.fc1_c00198{color:rgb(0,0,0);}
.fc0_c00198{color:rgb(35,31,32);}
.fs0_c00198{font-size:51.000000px;}
.fs1_c00198{font-size:60.000000px;}
.y0_c00198{bottom:0.000000px;}
.y27_c00198{bottom:64.425022px;}
.y26_c00198{bottom:110.175022px;}
.y25_c00198{bottom:125.325022px;}
.y24_c00198{bottom:140.775022px;}
.y23_c00198{bottom:155.925022px;}
.y22_c00198{bottom:171.375022px;}
.y21_c00198{bottom:186.825022px;}
.y20_c00198{bottom:202.350022px;}
.y1f_c00198{bottom:217.425022px;}
.y1e_c00198{bottom:232.575022px;}
.y1d_c00198{bottom:248.025022px;}
.y1c_c00198{bottom:263.175022px;}
.y1b_c00198{bottom:278.625022px;}
.y1a_c00198{bottom:293.775022px;}
.y19_c00198{bottom:353.175022px;}
.y18_c00198{bottom:372.975022px;}
.y17_c00198{bottom:392.400022px;}
.y16_c00198{bottom:411.825022px;}
.y15_c00198{bottom:431.325022px;}
.y14_c00198{bottom:450.375022px;}
.y13_c00198{bottom:469.800022px;}
.y12_c00198{bottom:489.225022px;}
.y11_c00198{bottom:509.025022px;}
.y10_c00198{bottom:528.525022px;}
.yf_c00198{bottom:547.575022px;}
.ye_c00198{bottom:567.375022px;}
.yd_c00198{bottom:586.800022px;}
.yc_c00198{bottom:605.925022px;}
.yb_c00198{bottom:625.350022px;}
.ya_c00198{bottom:644.775022px;}
.y9_c00198{bottom:663.825022px;}
.y8_c00198{bottom:683.625022px;}
.y7_c00198{bottom:718.200022px;}
.y6_c00198{bottom:767.550022px;}
.y5_c00198{bottom:786.600022px;}
.y4_c00198{bottom:806.025022px;}
.y3_c00198{bottom:825.525022px;}
.y2_c00198{bottom:844.950022px;}
.y1_c00198{bottom:886.725022px;}
.h2_c00198{height:50.053711px;}
.h3_c00198{height:58.886719px;}
.h1_c00198{height:957.750000px;}
.h0_c00198{height:957.975000px;}
.w1_c00198{width:643.500000px;}
.w0_c00198{width:643.650000px;}
.x0_c00198{left:0.000000px;}
.x2_c00198{left:90.375000px;}
.x1_c00198{left:91.800000px;}
.x4_c00198{left:96.150000px;}
.x3_c00198{left:107.250000px;}
.x5_c00198{left:123.450000px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls1_c00198{letter-spacing:0.000000pt;}
.ls0_c00198{letter-spacing:13.600000pt;}
.ws0_c00198{word-spacing:-13.333333pt;}
.ws1_c00198{word-spacing:-11.333333pt;}
.ws2_c00198{word-spacing:0.000000pt;}
._c_c00198{margin-left:-9.562925pt;}
._b_c00198{margin-left:-8.570408pt;}
._12_c00198{margin-left:-7.115333pt;}
._e_c00198{margin-left:-6.127640pt;}
._0_c00198{margin-left:-4.370677pt;}
._d_c00198{margin-left:-3.466667pt;}
._10_c00198{margin-left:-2.416259pt;}
._1_c00198{margin-left:-1.466669pt;}
._2_c00198{width:1.461368pt;}
._3_c00198{width:2.919819pt;}
._4_c00198{width:4.608139pt;}
._11_c00198{width:5.840189pt;}
._8_c00198{width:6.778269pt;}
._7_c00198{width:7.900736pt;}
._15_c00198{width:8.914744pt;}
._5_c00198{width:9.968224pt;}
._9_c00198{width:11.130408pt;}
._6_c00198{width:12.301376pt;}
._a_c00198{width:14.223947pt;}
._f_c00198{width:15.747368pt;}
._13_c00198{width:16.669067pt;}
._18_c00198{width:19.332443pt;}
._17_c00198{width:21.141336pt;}
._16_c00198{width:22.816304pt;}
._14_c00198{width:24.799963pt;}
.fs0_c00198{font-size:45.333333pt;}
.fs1_c00198{font-size:53.333333pt;}
.y0_c00198{bottom:0.000000pt;}
.y27_c00198{bottom:57.266686pt;}
.y26_c00198{bottom:97.933353pt;}
.y25_c00198{bottom:111.400020pt;}
.y24_c00198{bottom:125.133353pt;}
.y23_c00198{bottom:138.600020pt;}
.y22_c00198{bottom:152.333353pt;}
.y21_c00198{bottom:166.066686pt;}
.y20_c00198{bottom:179.866686pt;}
.y1f_c00198{bottom:193.266686pt;}
.y1e_c00198{bottom:206.733353pt;}
.y1d_c00198{bottom:220.466686pt;}
.y1c_c00198{bottom:233.933353pt;}
.y1b_c00198{bottom:247.666686pt;}
.y1a_c00198{bottom:261.133353pt;}
.y19_c00198{bottom:313.933353pt;}
.y18_c00198{bottom:331.533353pt;}
.y17_c00198{bottom:348.800020pt;}
.y16_c00198{bottom:366.066686pt;}
.y15_c00198{bottom:383.400020pt;}
.y14_c00198{bottom:400.333353pt;}
.y13_c00198{bottom:417.600020pt;}
.y12_c00198{bottom:434.866686pt;}
.y11_c00198{bottom:452.466686pt;}
.y10_c00198{bottom:469.800020pt;}
.yf_c00198{bottom:486.733353pt;}
.ye_c00198{bottom:504.333353pt;}
.yd_c00198{bottom:521.600020pt;}
.yc_c00198{bottom:538.600020pt;}
.yb_c00198{bottom:555.866686pt;}
.ya_c00198{bottom:573.133353pt;}
.y9_c00198{bottom:590.066686pt;}
.y8_c00198{bottom:607.666686pt;}
.y7_c00198{bottom:638.400020pt;}
.y6_c00198{bottom:682.266686pt;}
.y5_c00198{bottom:699.200020pt;}
.y4_c00198{bottom:716.466686pt;}
.y3_c00198{bottom:733.800020pt;}
.y2_c00198{bottom:751.066686pt;}
.y1_c00198{bottom:788.200020pt;}
.h2_c00198{height:44.492188pt;}
.h3_c00198{height:52.343750pt;}
.h1_c00198{height:851.333333pt;}
.h0_c00198{height:851.533333pt;}
.w1_c00198{width:572.000000pt;}
.w0_c00198{width:572.133333pt;}
.x0_c00198{left:0.000000pt;}
.x2_c00198{left:80.333333pt;}
.x1_c00198{left:81.600000pt;}
.x4_c00198{left:85.466667pt;}
.x3_c00198{left:95.333333pt;}
.x5_c00198{left:109.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b5a50d284290eb1e89ecc760.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00199;src:url('chunks/assets/font_c2fade53a5fb11eb5cc87c8e.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00199{letter-spacing:0.000000px;}
.sc__c00199{text-shadow:none;}
.sc0_c00199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00199{-webkit-text-stroke:0px transparent;}
.sc0_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00199{word-spacing:-15.000000px;}
.ws0_c00199{word-spacing:-12.750000px;}
.ws2_c00199{word-spacing:0.000000px;}
._15_c00199{margin-left:-14.709387px;}
._14_c00199{margin-left:-12.447165px;}
._4_c00199{margin-left:-11.397855px;}
._13_c00199{margin-left:-10.331379px;}
._6_c00199{margin-left:-9.302145px;}
._12_c00199{margin-left:-7.800000px;}
._1a_c00199{margin-left:-6.564363px;}
._0_c00199{margin-left:-4.565979px;}
._19_c00199{margin-left:-3.300006px;}
._5_c00199{margin-left:-2.100000px;}
._1c_c00199{margin-left:-1.032591px;}
._1_c00199{width:1.238994px;}
._3_c00199{width:2.337177px;}
._a_c00199{width:3.651123px;}
._2_c00199{width:4.715919px;}
._11_c00199{width:5.802012px;}
._7_c00199{width:6.809865px;}
._b_c00199{width:8.300169px;}
._9_c00199{width:9.963018px;}
._8_c00199{width:11.340000px;}
._f_c00199{width:12.480000px;}
._10_c00199{width:13.950060px;}
._d_c00199{width:16.220811px;}
._c_c00199{width:18.246036px;}
._1b_c00199{width:20.250000px;}
._18_c00199{width:22.583949px;}
._e_c00199{width:23.910255px;}
._16_c00199{width:25.050051px;}
._17_c00199{width:26.510715px;}
.fc1_c00199{color:transparent;}
.fc0_c00199{color:rgb(35,31,32);}
.fs0_c00199{font-size:51.000000px;}
.fs1_c00199{font-size:60.000000px;}
.y0_c00199{bottom:0.000000px;}
.y26_c00199{bottom:64.425022px;}
.y25_c00199{bottom:110.175022px;}
.y24_c00199{bottom:125.325022px;}
.y23_c00199{bottom:140.775022px;}
.y22_c00199{bottom:155.925022px;}
.y21_c00199{bottom:171.750022px;}
.y20_c00199{bottom:186.525022px;}
.y1f_c00199{bottom:202.350022px;}
.y1e_c00199{bottom:217.125022px;}
.y1d_c00199{bottom:232.575022px;}
.y1c_c00199{bottom:277.575022px;}
.y1b_c00199{bottom:297.375022px;}
.y1a_c00199{bottom:316.800022px;}
.y19_c00199{bottom:336.225022px;}
.y18_c00199{bottom:355.350022px;}
.y17_c00199{bottom:375.150022px;}
.y16_c00199{bottom:394.575022px;}
.y15_c00199{bottom:413.625022px;}
.y14_c00199{bottom:433.425022px;}
.y13_c00199{bottom:452.550022px;}
.y12_c00199{bottom:493.575022px;}
.y11_c00199{bottom:553.725022px;}
.y10_c00199{bottom:572.775022px;}
.yf_c00199{bottom:592.575022px;}
.ye_c00199{bottom:612.000022px;}
.yd_c00199{bottom:631.425022px;}
.yc_c00199{bottom:650.925022px;}
.yb_c00199{bottom:669.975022px;}
.ya_c00199{bottom:689.775022px;}
.y9_c00199{bottom:709.200022px;}
.y8_c00199{bottom:728.325022px;}
.y7_c00199{bottom:748.125022px;}
.y6_c00199{bottom:767.550022px;}
.y5_c00199{bottom:786.225022px;}
.y4_c00199{bottom:806.100022px;}
.y3_c00199{bottom:825.525022px;}
.y2_c00199{bottom:844.950022px;}
.y1_c00199{bottom:886.725022px;}
.h2_c00199{height:50.028809px;}
.h4_c00199{height:50.053711px;}
.h3_c00199{height:58.886719px;}
.h1_c00199{height:957.750000px;}
.h0_c00199{height:957.975000px;}
.w0_c00199{width:641.850030px;}
.w1_c00199{width:642.000000px;}
.x0_c00199{left:0.000000px;}
.x4_c00199{left:80.250000px;}
.x2_c00199{left:81.375000px;}
.x5_c00199{left:86.025000px;}
.x3_c00199{left:97.200000px;}
.x6_c00199{left:113.775000px;}
.x1_c00199{left:265.650000px;}
.x7_c00199{left:532.050000px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls0_c00199{letter-spacing:0.000000pt;}
.ws1_c00199{word-spacing:-13.333333pt;}
.ws0_c00199{word-spacing:-11.333333pt;}
.ws2_c00199{word-spacing:0.000000pt;}
._15_c00199{margin-left:-13.075011pt;}
._14_c00199{margin-left:-11.064147pt;}
._4_c00199{margin-left:-10.131427pt;}
._13_c00199{margin-left:-9.183448pt;}
._6_c00199{margin-left:-8.268573pt;}
._12_c00199{margin-left:-6.933333pt;}
._1a_c00199{margin-left:-5.834989pt;}
._0_c00199{margin-left:-4.058648pt;}
._19_c00199{margin-left:-2.933339pt;}
._5_c00199{margin-left:-1.866667pt;}
._1c_c00199{margin-left:-0.917859pt;}
._1_c00199{width:1.101328pt;}
._3_c00199{width:2.077491pt;}
._a_c00199{width:3.245443pt;}
._2_c00199{width:4.191928pt;}
._11_c00199{width:5.157344pt;}
._7_c00199{width:6.053213pt;}
._b_c00199{width:7.377928pt;}
._9_c00199{width:8.856016pt;}
._8_c00199{width:10.080000pt;}
._f_c00199{width:11.093333pt;}
._10_c00199{width:12.400053pt;}
._d_c00199{width:14.418499pt;}
._c_c00199{width:16.218699pt;}
._1b_c00199{width:18.000000pt;}
._18_c00199{width:20.074621pt;}
._e_c00199{width:21.253560pt;}
._16_c00199{width:22.266712pt;}
._17_c00199{width:23.565080pt;}
.fs0_c00199{font-size:45.333333pt;}
.fs1_c00199{font-size:53.333333pt;}
.y0_c00199{bottom:0.000000pt;}
.y26_c00199{bottom:57.266686pt;}
.y25_c00199{bottom:97.933353pt;}
.y24_c00199{bottom:111.400020pt;}
.y23_c00199{bottom:125.133353pt;}
.y22_c00199{bottom:138.600020pt;}
.y21_c00199{bottom:152.666686pt;}
.y20_c00199{bottom:165.800020pt;}
.y1f_c00199{bottom:179.866686pt;}
.y1e_c00199{bottom:193.000020pt;}
.y1d_c00199{bottom:206.733353pt;}
.y1c_c00199{bottom:246.733353pt;}
.y1b_c00199{bottom:264.333353pt;}
.y1a_c00199{bottom:281.600020pt;}
.y19_c00199{bottom:298.866686pt;}
.y18_c00199{bottom:315.866686pt;}
.y17_c00199{bottom:333.466686pt;}
.y16_c00199{bottom:350.733353pt;}
.y15_c00199{bottom:367.666686pt;}
.y14_c00199{bottom:385.266686pt;}
.y13_c00199{bottom:402.266686pt;}
.y12_c00199{bottom:438.733353pt;}
.y11_c00199{bottom:492.200020pt;}
.y10_c00199{bottom:509.133353pt;}
.yf_c00199{bottom:526.733353pt;}
.ye_c00199{bottom:544.000020pt;}
.yd_c00199{bottom:561.266686pt;}
.yc_c00199{bottom:578.600020pt;}
.yb_c00199{bottom:595.533353pt;}
.ya_c00199{bottom:613.133353pt;}
.y9_c00199{bottom:630.400020pt;}
.y8_c00199{bottom:647.400020pt;}
.y7_c00199{bottom:665.000020pt;}
.y6_c00199{bottom:682.266686pt;}
.y5_c00199{bottom:698.866686pt;}
.y4_c00199{bottom:716.533353pt;}
.y3_c00199{bottom:733.800020pt;}
.y2_c00199{bottom:751.066686pt;}
.y1_c00199{bottom:788.200020pt;}
.h2_c00199{height:44.470052pt;}
.h4_c00199{height:44.492188pt;}
.h3_c00199{height:52.343750pt;}
.h1_c00199{height:851.333333pt;}
.h0_c00199{height:851.533333pt;}
.w0_c00199{width:570.533360pt;}
.w1_c00199{width:570.666667pt;}
.x0_c00199{left:0.000000pt;}
.x4_c00199{left:71.333333pt;}
.x2_c00199{left:72.333333pt;}
.x5_c00199{left:76.466667pt;}
.x3_c00199{left:86.400000pt;}
.x6_c00199{left:101.133333pt;}
.x1_c00199{left:236.133333pt;}
.x7_c00199{left:472.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6eb1f151e6bedc0b0cd400a3.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00200;src:url('chunks/assets/font_2ee7b5b65edeb3e8ac0decd6.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00200{letter-spacing:0.000000px;}
.sc__c00200{text-shadow:none;}
.sc0_c00200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00200{-webkit-text-stroke:0px transparent;}
.sc0_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00200{word-spacing:-15.000000px;}
.ws1_c00200{word-spacing:-12.750000px;}
.ws2_c00200{word-spacing:0.000000px;}
._a_c00200{margin-left:-13.200000px;}
._7_c00200{margin-left:-11.880000px;}
._17_c00200{margin-left:-10.191033px;}
._16_c00200{margin-left:-8.408973px;}
._d_c00200{margin-left:-6.060000px;}
._14_c00200{margin-left:-4.917012px;}
._6_c00200{margin-left:-3.600000px;}
._8_c00200{margin-left:-1.680000px;}
._1_c00200{width:1.140000px;}
._2_c00200{width:2.160000px;}
._5_c00200{width:3.480000px;}
._12_c00200{width:4.620000px;}
._9_c00200{width:5.700000px;}
._4_c00200{width:6.900000px;}
._3_c00200{width:8.460000px;}
._0_c00200{width:9.780000px;}
._c_c00200{width:11.160000px;}
._b_c00200{width:13.080000px;}
._18_c00200{width:14.415027px;}
._f_c00200{width:16.740000px;}
._13_c00200{width:17.760000px;}
._10_c00200{width:18.840000px;}
._11_c00200{width:20.220000px;}
._e_c00200{width:21.660000px;}
._19_c00200{width:23.610000px;}
._15_c00200{width:25.110021px;}
._1a_c00200{width:26.310051px;}
.fc1_c00200{color:transparent;}
.fc0_c00200{color:rgb(35,31,32);}
.fs1_c00200{font-size:51.000000px;}
.fs0_c00200{font-size:60.000000px;}
.y0_c00200{bottom:0.000000px;}
.y26_c00200{bottom:64.425022px;}
.y25_c00200{bottom:110.175022px;}
.y24_c00200{bottom:125.325022px;}
.y23_c00200{bottom:140.775022px;}
.y22_c00200{bottom:155.925022px;}
.y21_c00200{bottom:171.750022px;}
.y20_c00200{bottom:186.525022px;}
.y1f_c00200{bottom:201.975022px;}
.y1e_c00200{bottom:217.125022px;}
.y1d_c00200{bottom:232.575022px;}
.y1c_c00200{bottom:248.025022px;}
.y1b_c00200{bottom:263.550022px;}
.y1a_c00200{bottom:278.325022px;}
.y19_c00200{bottom:294.150022px;}
.y18_c00200{bottom:308.925022px;}
.y17_c00200{bottom:324.375022px;}
.y16_c00200{bottom:339.525022px;}
.y14_c00200{bottom:475.950022px;}
.y13_c00200{bottom:495.375022px;}
.y12_c00200{bottom:514.800022px;}
.y11_c00200{bottom:533.925022px;}
.y10_c00200{bottom:553.725022px;}
.yf_c00200{bottom:572.775022px;}
.ye_c00200{bottom:592.200022px;}
.yd_c00200{bottom:612.000022px;}
.yc_c00200{bottom:631.425022px;}
.yb_c00200{bottom:650.550022px;}
.ya_c00200{bottom:669.975022px;}
.y9_c00200{bottom:689.775022px;}
.y8_c00200{bottom:709.200022px;}
.y7_c00200{bottom:728.625022px;}
.y6_c00200{bottom:747.750022px;}
.y5_c00200{bottom:767.550022px;}
.y4_c00200{bottom:786.600022px;}
.y3_c00200{bottom:805.725022px;}
.y2_c00200{bottom:825.525022px;}
.y1_c00200{bottom:844.575022px;}
.y15_c00200{bottom:886.725022px;}
.h3_c00200{height:50.053711px;}
.h2_c00200{height:58.886719px;}
.h1_c00200{height:957.750000px;}
.h0_c00200{height:957.975000px;}
.w1_c00200{width:643.500000px;}
.w0_c00200{width:643.650000px;}
.x0_c00200{left:0.000000px;}
.x2_c00200{left:90.375000px;}
.x1_c00200{left:91.425000px;}
.x3_c00200{left:96.150000px;}
.x4_c00200{left:123.825000px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls0_c00200{letter-spacing:0.000000pt;}
.ws0_c00200{word-spacing:-13.333333pt;}
.ws1_c00200{word-spacing:-11.333333pt;}
.ws2_c00200{word-spacing:0.000000pt;}
._a_c00200{margin-left:-11.733333pt;}
._7_c00200{margin-left:-10.560000pt;}
._17_c00200{margin-left:-9.058696pt;}
._16_c00200{margin-left:-7.474643pt;}
._d_c00200{margin-left:-5.386667pt;}
._14_c00200{margin-left:-4.370677pt;}
._6_c00200{margin-left:-3.200000pt;}
._8_c00200{margin-left:-1.493333pt;}
._1_c00200{width:1.013333pt;}
._2_c00200{width:1.920000pt;}
._5_c00200{width:3.093333pt;}
._12_c00200{width:4.106667pt;}
._9_c00200{width:5.066667pt;}
._4_c00200{width:6.133333pt;}
._3_c00200{width:7.520000pt;}
._0_c00200{width:8.693333pt;}
._c_c00200{width:9.920000pt;}
._b_c00200{width:11.626667pt;}
._18_c00200{width:12.813357pt;}
._f_c00200{width:14.880000pt;}
._13_c00200{width:15.786667pt;}
._10_c00200{width:16.746667pt;}
._11_c00200{width:17.973333pt;}
._e_c00200{width:19.253333pt;}
._19_c00200{width:20.986667pt;}
._15_c00200{width:22.320019pt;}
._1a_c00200{width:23.386712pt;}
.fs1_c00200{font-size:45.333333pt;}
.fs0_c00200{font-size:53.333333pt;}
.y0_c00200{bottom:0.000000pt;}
.y26_c00200{bottom:57.266686pt;}
.y25_c00200{bottom:97.933353pt;}
.y24_c00200{bottom:111.400020pt;}
.y23_c00200{bottom:125.133353pt;}
.y22_c00200{bottom:138.600020pt;}
.y21_c00200{bottom:152.666686pt;}
.y20_c00200{bottom:165.800020pt;}
.y1f_c00200{bottom:179.533353pt;}
.y1e_c00200{bottom:193.000020pt;}
.y1d_c00200{bottom:206.733353pt;}
.y1c_c00200{bottom:220.466686pt;}
.y1b_c00200{bottom:234.266686pt;}
.y1a_c00200{bottom:247.400020pt;}
.y19_c00200{bottom:261.466686pt;}
.y18_c00200{bottom:274.600020pt;}
.y17_c00200{bottom:288.333353pt;}
.y16_c00200{bottom:301.800020pt;}
.y14_c00200{bottom:423.066686pt;}
.y13_c00200{bottom:440.333353pt;}
.y12_c00200{bottom:457.600020pt;}
.y11_c00200{bottom:474.600020pt;}
.y10_c00200{bottom:492.200020pt;}
.yf_c00200{bottom:509.133353pt;}
.ye_c00200{bottom:526.400020pt;}
.yd_c00200{bottom:544.000020pt;}
.yc_c00200{bottom:561.266686pt;}
.yb_c00200{bottom:578.266686pt;}
.ya_c00200{bottom:595.533353pt;}
.y9_c00200{bottom:613.133353pt;}
.y8_c00200{bottom:630.400020pt;}
.y7_c00200{bottom:647.666686pt;}
.y6_c00200{bottom:664.666686pt;}
.y5_c00200{bottom:682.266686pt;}
.y4_c00200{bottom:699.200020pt;}
.y3_c00200{bottom:716.200020pt;}
.y2_c00200{bottom:733.800020pt;}
.y1_c00200{bottom:750.733353pt;}
.y15_c00200{bottom:788.200020pt;}
.h3_c00200{height:44.492188pt;}
.h2_c00200{height:52.343750pt;}
.h1_c00200{height:851.333333pt;}
.h0_c00200{height:851.533333pt;}
.w1_c00200{width:572.000000pt;}
.w0_c00200{width:572.133333pt;}
.x0_c00200{left:0.000000pt;}
.x2_c00200{left:80.333333pt;}
.x1_c00200{left:81.266667pt;}
.x3_c00200{left:85.466667pt;}
.x4_c00200{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5655862ef00d5759e21c762a.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00201;src:url('chunks/assets/font_561c18ecb7f4bb808fa6c0af.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00201{letter-spacing:0.000000px;}
.sc__c00201{text-shadow:none;}
.sc0_c00201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00201{-webkit-text-stroke:0px transparent;}
.sc0_c00201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00201{word-spacing:-15.000000px;}
.ws0_c00201{word-spacing:-12.750000px;}
.ws2_c00201{word-spacing:0.000000px;}
._e_c00201{margin-left:-13.268274px;}
._d_c00201{margin-left:-11.931726px;}
._11_c00201{margin-left:-9.900000px;}
._10_c00201{margin-left:-8.880069px;}
._17_c00201{margin-left:-7.211736px;}
._12_c00201{margin-left:-6.079014px;}
._0_c00201{margin-left:-4.565979px;}
._f_c00201{margin-left:-2.689377px;}
._5_c00201{margin-left:-1.473813px;}
._1_c00201{width:1.238994px;}
._3_c00201{width:2.337177px;}
._a_c00201{width:3.587853px;}
._2_c00201{width:4.715919px;}
._16_c00201{width:5.927262px;}
._8_c00201{width:7.345332px;}
._b_c00201{width:8.932278px;}
._4_c00201{width:10.020000px;}
._c_c00201{width:11.114808px;}
._7_c00201{width:12.120000px;}
._9_c00201{width:13.806036px;}
._1b_c00201{width:15.289332px;}
._6_c00201{width:17.520000px;}
._13_c00201{width:19.122012px;}
._1c_c00201{width:20.464200px;}
._15_c00201{width:21.543018px;}
._14_c00201{width:23.604024px;}
._19_c00201{width:24.697626px;}
._18_c00201{width:25.897677px;}
._1a_c00201{width:27.102567px;}
.fc1_c00201{color:transparent;}
.fc0_c00201{color:rgb(35,31,32);}
.fs0_c00201{font-size:51.000000px;}
.fs1_c00201{font-size:60.000000px;}
.y0_c00201{bottom:0.000000px;}
.y29_c00201{bottom:64.425022px;}
.y28_c00201{bottom:110.175022px;}
.y27_c00201{bottom:125.325022px;}
.y26_c00201{bottom:140.775022px;}
.y25_c00201{bottom:155.925022px;}
.y24_c00201{bottom:171.375022px;}
.y23_c00201{bottom:186.525022px;}
.y22_c00201{bottom:201.975022px;}
.y21_c00201{bottom:217.125022px;}
.y20_c00201{bottom:232.575022px;}
.y1f_c00201{bottom:247.725022px;}
.y1e_c00201{bottom:263.550022px;}
.y1d_c00201{bottom:278.325022px;}
.y1c_c00201{bottom:294.150022px;}
.y1b_c00201{bottom:340.575022px;}
.y1a_c00201{bottom:359.925022px;}
.y19_c00201{bottom:379.425022px;}
.y18_c00201{bottom:398.925022px;}
.y17_c00201{bottom:418.350022px;}
.y16_c00201{bottom:437.325022px;}
.y15_c00201{bottom:456.825022px;}
.y14_c00201{bottom:476.325022px;}
.y13_c00201{bottom:496.125022px;}
.y12_c00201{bottom:515.550022px;}
.y11_c00201{bottom:534.975022px;}
.y10_c00201{bottom:554.400022px;}
.yf_c00201{bottom:573.825022px;}
.ye_c00201{bottom:593.325022px;}
.yd_c00201{bottom:612.375022px;}
.yc_c00201{bottom:632.175022px;}
.yb_c00201{bottom:651.600022px;}
.ya_c00201{bottom:671.025022px;}
.y9_c00201{bottom:690.150022px;}
.y8_c00201{bottom:709.875022px;}
.y7_c00201{bottom:729.000022px;}
.y6_c00201{bottom:748.125022px;}
.y5_c00201{bottom:767.550022px;}
.y4_c00201{bottom:787.350022px;}
.y3_c00201{bottom:806.775022px;}
.y2_c00201{bottom:844.950022px;}
.y1_c00201{bottom:886.725022px;}
.h2_c00201{height:50.028809px;}
.h4_c00201{height:50.053711px;}
.h3_c00201{height:58.886719px;}
.h1_c00201{height:957.750000px;}
.h0_c00201{height:957.975000px;}
.w0_c00201{width:641.850030px;}
.w1_c00201{width:642.000000px;}
.x0_c00201{left:0.000000px;}
.x2_c00201{left:81.000000px;}
.x4_c00201{left:86.025000px;}
.x3_c00201{left:97.200000px;}
.x5_c00201{left:114.150000px;}
.x1_c00201{left:265.650000px;}
.x6_c00201{left:531.375000px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls0_c00201{letter-spacing:0.000000pt;}
.ws1_c00201{word-spacing:-13.333333pt;}
.ws0_c00201{word-spacing:-11.333333pt;}
.ws2_c00201{word-spacing:0.000000pt;}
._e_c00201{margin-left:-11.794021pt;}
._d_c00201{margin-left:-10.605979pt;}
._11_c00201{margin-left:-8.800000pt;}
._10_c00201{margin-left:-7.893395pt;}
._17_c00201{margin-left:-6.410432pt;}
._12_c00201{margin-left:-5.403568pt;}
._0_c00201{margin-left:-4.058648pt;}
._f_c00201{margin-left:-2.390557pt;}
._5_c00201{margin-left:-1.310056pt;}
._1_c00201{width:1.101328pt;}
._3_c00201{width:2.077491pt;}
._a_c00201{width:3.189203pt;}
._2_c00201{width:4.191928pt;}
._16_c00201{width:5.268677pt;}
._8_c00201{width:6.529184pt;}
._b_c00201{width:7.939803pt;}
._4_c00201{width:8.906667pt;}
._c_c00201{width:9.879829pt;}
._7_c00201{width:10.773333pt;}
._9_c00201{width:12.272032pt;}
._1b_c00201{width:13.590517pt;}
._6_c00201{width:15.573333pt;}
._13_c00201{width:16.997344pt;}
._1c_c00201{width:18.190400pt;}
._15_c00201{width:19.149349pt;}
._14_c00201{width:20.981355pt;}
._19_c00201{width:21.953445pt;}
._18_c00201{width:23.020157pt;}
._1a_c00201{width:24.091171pt;}
.fs0_c00201{font-size:45.333333pt;}
.fs1_c00201{font-size:53.333333pt;}
.y0_c00201{bottom:0.000000pt;}
.y29_c00201{bottom:57.266686pt;}
.y28_c00201{bottom:97.933353pt;}
.y27_c00201{bottom:111.400020pt;}
.y26_c00201{bottom:125.133353pt;}
.y25_c00201{bottom:138.600020pt;}
.y24_c00201{bottom:152.333353pt;}
.y23_c00201{bottom:165.800020pt;}
.y22_c00201{bottom:179.533353pt;}
.y21_c00201{bottom:193.000020pt;}
.y20_c00201{bottom:206.733353pt;}
.y1f_c00201{bottom:220.200020pt;}
.y1e_c00201{bottom:234.266686pt;}
.y1d_c00201{bottom:247.400020pt;}
.y1c_c00201{bottom:261.466686pt;}
.y1b_c00201{bottom:302.733353pt;}
.y1a_c00201{bottom:319.933353pt;}
.y19_c00201{bottom:337.266686pt;}
.y18_c00201{bottom:354.600020pt;}
.y17_c00201{bottom:371.866686pt;}
.y16_c00201{bottom:388.733353pt;}
.y15_c00201{bottom:406.066686pt;}
.y14_c00201{bottom:423.400020pt;}
.y13_c00201{bottom:441.000020pt;}
.y12_c00201{bottom:458.266686pt;}
.y11_c00201{bottom:475.533353pt;}
.y10_c00201{bottom:492.800020pt;}
.yf_c00201{bottom:510.066686pt;}
.ye_c00201{bottom:527.400020pt;}
.yd_c00201{bottom:544.333353pt;}
.yc_c00201{bottom:561.933353pt;}
.yb_c00201{bottom:579.200020pt;}
.ya_c00201{bottom:596.466686pt;}
.y9_c00201{bottom:613.466686pt;}
.y8_c00201{bottom:631.000020pt;}
.y7_c00201{bottom:648.000020pt;}
.y6_c00201{bottom:665.000020pt;}
.y5_c00201{bottom:682.266686pt;}
.y4_c00201{bottom:699.866686pt;}
.y3_c00201{bottom:717.133353pt;}
.y2_c00201{bottom:751.066686pt;}
.y1_c00201{bottom:788.200020pt;}
.h2_c00201{height:44.470052pt;}
.h4_c00201{height:44.492188pt;}
.h3_c00201{height:52.343750pt;}
.h1_c00201{height:851.333333pt;}
.h0_c00201{height:851.533333pt;}
.w0_c00201{width:570.533360pt;}
.w1_c00201{width:570.666667pt;}
.x0_c00201{left:0.000000pt;}
.x2_c00201{left:72.000000pt;}
.x4_c00201{left:76.466667pt;}
.x3_c00201{left:86.400000pt;}
.x5_c00201{left:101.466667pt;}
.x1_c00201{left:236.133333pt;}
.x6_c00201{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_850e7f563fa11e392775f452.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00202;src:url('chunks/assets/font_3ac22eb6db59e2026db8f3e7.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00202{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00202{letter-spacing:0.000000px;}
.sc__c00202{text-shadow:none;}
.sc0_c00202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00202{-webkit-text-stroke:0px transparent;}
.sc0_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00202{word-spacing:-15.000000px;}
.ws1_c00202{word-spacing:-12.750000px;}
.ws2_c00202{word-spacing:0.000000px;}
._12_c00202{margin-left:-16.320000px;}
._f_c00202{margin-left:-12.780000px;}
._a_c00202{margin-left:-11.400000px;}
._4_c00202{margin-left:-10.380000px;}
._d_c00202{margin-left:-9.180000px;}
._c_c00202{margin-left:-8.100000px;}
._11_c00202{margin-left:-6.840000px;}
._18_c00202{margin-left:-5.532054px;}
._10_c00202{margin-left:-4.380000px;}
._13_c00202{margin-left:-2.820000px;}
._5_c00202{margin-left:-1.560000px;}
._0_c00202{width:1.800000px;}
._9_c00202{width:3.000000px;}
._6_c00202{width:4.140000px;}
._3_c00202{width:5.700000px;}
._7_c00202{width:7.500000px;}
._b_c00202{width:8.940000px;}
._2_c00202{width:10.560000px;}
._1_c00202{width:11.700000px;}
._8_c00202{width:13.200000px;}
._1c_c00202{width:14.579982px;}
._e_c00202{width:16.620000px;}
._1d_c00202{width:17.804976px;}
._15_c00202{width:18.840000px;}
._14_c00202{width:20.040000px;}
._16_c00202{width:21.600000px;}
._1a_c00202{width:23.070000px;}
._17_c00202{width:24.570021px;}
._1b_c00202{width:26.190000px;}
._19_c00202{width:27.270000px;}
.fc1_c00202{color:transparent;}
.fc0_c00202{color:rgb(35,31,32);}
.fs1_c00202{font-size:51.000000px;}
.fs0_c00202{font-size:60.000000px;}
.y0_c00202{bottom:0.000000px;}
.y2b_c00202{bottom:64.800022px;}
.y2a_c00202{bottom:110.175022px;}
.y29_c00202{bottom:125.625022px;}
.y28_c00202{bottom:141.150022px;}
.y27_c00202{bottom:156.225022px;}
.y26_c00202{bottom:171.750022px;}
.y25_c00202{bottom:186.825022px;}
.y24_c00202{bottom:201.975022px;}
.y23_c00202{bottom:217.425022px;}
.y22_c00202{bottom:232.575022px;}
.y21_c00202{bottom:247.725022px;}
.y20_c00202{bottom:263.175022px;}
.y1f_c00202{bottom:278.325022px;}
.y1e_c00202{bottom:293.775022px;}
.y1d_c00202{bottom:308.925022px;}
.y1c_c00202{bottom:324.375022px;}
.y1b_c00202{bottom:339.825022px;}
.y1a_c00202{bottom:354.975022px;}
.y19_c00202{bottom:370.125022px;}
.y18_c00202{bottom:385.575022px;}
.y16_c00202{bottom:437.025022px;}
.y15_c00202{bottom:456.150022px;}
.y14_c00202{bottom:475.575022px;}
.y13_c00202{bottom:495.000022px;}
.y12_c00202{bottom:514.425022px;}
.y11_c00202{bottom:534.225022px;}
.y10_c00202{bottom:553.725022px;}
.yf_c00202{bottom:572.775022px;}
.ye_c00202{bottom:592.200022px;}
.yd_c00202{bottom:612.000022px;}
.yc_c00202{bottom:631.425022px;}
.yb_c00202{bottom:650.925022px;}
.ya_c00202{bottom:670.350022px;}
.y9_c00202{bottom:689.775022px;}
.y8_c00202{bottom:708.825022px;}
.y7_c00202{bottom:728.625022px;}
.y6_c00202{bottom:747.750022px;}
.y5_c00202{bottom:767.475022px;}
.y4_c00202{bottom:786.600022px;}
.y3_c00202{bottom:805.725022px;}
.y2_c00202{bottom:825.525022px;}
.y1_c00202{bottom:844.950022px;}
.y17_c00202{bottom:886.725022px;}
.h3_c00202{height:50.053711px;}
.h2_c00202{height:58.886719px;}
.h1_c00202{height:957.750000px;}
.h0_c00202{height:957.975000px;}
.w1_c00202{width:643.500000px;}
.w0_c00202{width:643.650000px;}
.x0_c00202{left:0.000000px;}
.x1_c00202{left:91.050000px;}
.x3_c00202{left:96.150000px;}
.x2_c00202{left:107.250000px;}
.x4_c00202{left:123.825000px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls0_c00202{letter-spacing:0.000000pt;}
.ws0_c00202{word-spacing:-13.333333pt;}
.ws1_c00202{word-spacing:-11.333333pt;}
.ws2_c00202{word-spacing:0.000000pt;}
._12_c00202{margin-left:-14.506667pt;}
._f_c00202{margin-left:-11.360000pt;}
._a_c00202{margin-left:-10.133333pt;}
._4_c00202{margin-left:-9.226667pt;}
._d_c00202{margin-left:-8.160000pt;}
._c_c00202{margin-left:-7.200000pt;}
._11_c00202{margin-left:-6.080000pt;}
._18_c00202{margin-left:-4.917381pt;}
._10_c00202{margin-left:-3.893333pt;}
._13_c00202{margin-left:-2.506667pt;}
._5_c00202{margin-left:-1.386667pt;}
._0_c00202{width:1.600000pt;}
._9_c00202{width:2.666667pt;}
._6_c00202{width:3.680000pt;}
._3_c00202{width:5.066667pt;}
._7_c00202{width:6.666667pt;}
._b_c00202{width:7.946667pt;}
._2_c00202{width:9.386667pt;}
._1_c00202{width:10.400000pt;}
._8_c00202{width:11.733333pt;}
._1c_c00202{width:12.959984pt;}
._e_c00202{width:14.773333pt;}
._1d_c00202{width:15.826645pt;}
._15_c00202{width:16.746667pt;}
._14_c00202{width:17.813333pt;}
._16_c00202{width:19.200000pt;}
._1a_c00202{width:20.506667pt;}
._17_c00202{width:21.840019pt;}
._1b_c00202{width:23.280000pt;}
._19_c00202{width:24.240000pt;}
.fs1_c00202{font-size:45.333333pt;}
.fs0_c00202{font-size:53.333333pt;}
.y0_c00202{bottom:0.000000pt;}
.y2b_c00202{bottom:57.600020pt;}
.y2a_c00202{bottom:97.933353pt;}
.y29_c00202{bottom:111.666686pt;}
.y28_c00202{bottom:125.466686pt;}
.y27_c00202{bottom:138.866686pt;}
.y26_c00202{bottom:152.666686pt;}
.y25_c00202{bottom:166.066686pt;}
.y24_c00202{bottom:179.533353pt;}
.y23_c00202{bottom:193.266686pt;}
.y22_c00202{bottom:206.733353pt;}
.y21_c00202{bottom:220.200020pt;}
.y20_c00202{bottom:233.933353pt;}
.y1f_c00202{bottom:247.400020pt;}
.y1e_c00202{bottom:261.133353pt;}
.y1d_c00202{bottom:274.600020pt;}
.y1c_c00202{bottom:288.333353pt;}
.y1b_c00202{bottom:302.066686pt;}
.y1a_c00202{bottom:315.533353pt;}
.y19_c00202{bottom:329.000020pt;}
.y18_c00202{bottom:342.733353pt;}
.y16_c00202{bottom:388.466686pt;}
.y15_c00202{bottom:405.466686pt;}
.y14_c00202{bottom:422.733353pt;}
.y13_c00202{bottom:440.000020pt;}
.y12_c00202{bottom:457.266686pt;}
.y11_c00202{bottom:474.866686pt;}
.y10_c00202{bottom:492.200020pt;}
.yf_c00202{bottom:509.133353pt;}
.ye_c00202{bottom:526.400020pt;}
.yd_c00202{bottom:544.000020pt;}
.yc_c00202{bottom:561.266686pt;}
.yb_c00202{bottom:578.600020pt;}
.ya_c00202{bottom:595.866686pt;}
.y9_c00202{bottom:613.133353pt;}
.y8_c00202{bottom:630.066686pt;}
.y7_c00202{bottom:647.666686pt;}
.y6_c00202{bottom:664.666686pt;}
.y5_c00202{bottom:682.200020pt;}
.y4_c00202{bottom:699.200020pt;}
.y3_c00202{bottom:716.200020pt;}
.y2_c00202{bottom:733.800020pt;}
.y1_c00202{bottom:751.066686pt;}
.y17_c00202{bottom:788.200020pt;}
.h3_c00202{height:44.492188pt;}
.h2_c00202{height:52.343750pt;}
.h1_c00202{height:851.333333pt;}
.h0_c00202{height:851.533333pt;}
.w1_c00202{width:572.000000pt;}
.w0_c00202{width:572.133333pt;}
.x0_c00202{left:0.000000pt;}
.x1_c00202{left:80.933333pt;}
.x3_c00202{left:85.466667pt;}
.x2_c00202{left:95.333333pt;}
.x4_c00202{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8174e09be77b77142ea9e4b3.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00203;src:url('chunks/assets/font_4703c46b1d3bd84b1188a7be.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00203{letter-spacing:0.000000px;}
.sc__c00203{text-shadow:none;}
.sc0_c00203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00203{-webkit-text-stroke:0px transparent;}
.sc0_c00203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00203{word-spacing:-15.000000px;}
.ws1_c00203{word-spacing:-12.750000px;}
.ws2_c00203{word-spacing:0.000000px;}
._15_c00203{margin-left:-12.066381px;}
._b_c00203{margin-left:-10.608513px;}
._13_c00203{margin-left:-9.224715px;}
._e_c00203{margin-left:-7.037403px;}
._c_c00203{margin-left:-5.697372px;}
._0_c00203{margin-left:-4.565979px;}
._10_c00203{margin-left:-2.975385px;}
._9_c00203{margin-left:-1.860000px;}
._1_c00203{width:1.238994px;}
._3_c00203{width:2.337177px;}
._8_c00203{width:3.467853px;}
._2_c00203{width:4.715919px;}
._f_c00203{width:5.830902px;}
._5_c00203{width:7.563018px;}
._d_c00203{width:8.598963px;}
._6_c00203{width:9.647463px;}
._7_c00203{width:11.646036px;}
._a_c00203{width:13.121427px;}
._19_c00203{width:14.235582px;}
._4_c00203{width:16.023018px;}
._11_c00203{width:17.441364px;}
._12_c00203{width:18.536712px;}
._14_c00203{width:20.719101px;}
._18_c00203{width:21.750000px;}
._17_c00203{width:25.470000px;}
._16_c00203{width:26.670051px;}
._1a_c00203{width:28.445457px;}
.fc1_c00203{color:transparent;}
.fc0_c00203{color:rgb(35,31,32);}
.fs0_c00203{font-size:51.000000px;}
.fs1_c00203{font-size:60.000000px;}
.y0_c00203{bottom:0.000000px;}
.y2b_c00203{bottom:64.425022px;}
.y2a_c00203{bottom:110.175022px;}
.y29_c00203{bottom:125.325022px;}
.y28_c00203{bottom:140.700022px;}
.y27_c00203{bottom:156.225022px;}
.y26_c00203{bottom:171.750022px;}
.y25_c00203{bottom:186.525022px;}
.y24_c00203{bottom:202.350022px;}
.y23_c00203{bottom:217.125022px;}
.y22_c00203{bottom:232.575022px;}
.y21_c00203{bottom:247.725022px;}
.y20_c00203{bottom:263.175022px;}
.y1f_c00203{bottom:278.325022px;}
.y1e_c00203{bottom:294.150022px;}
.y1d_c00203{bottom:308.925022px;}
.y1c_c00203{bottom:324.375022px;}
.y1b_c00203{bottom:339.525022px;}
.y1a_c00203{bottom:354.975022px;}
.y19_c00203{bottom:397.800022px;}
.y18_c00203{bottom:417.600022px;}
.y17_c00203{bottom:436.725022px;}
.y16_c00203{bottom:456.525022px;}
.y15_c00203{bottom:475.950022px;}
.y14_c00203{bottom:495.000022px;}
.y13_c00203{bottom:514.800022px;}
.y12_c00203{bottom:534.300022px;}
.y11_c00203{bottom:553.725022px;}
.y10_c00203{bottom:573.150022px;}
.yf_c00203{bottom:592.575022px;}
.ye_c00203{bottom:611.625022px;}
.yd_c00203{bottom:631.425022px;}
.yc_c00203{bottom:650.925022px;}
.yb_c00203{bottom:669.975022px;}
.ya_c00203{bottom:689.400022px;}
.y9_c00203{bottom:709.200022px;}
.y8_c00203{bottom:728.625022px;}
.y7_c00203{bottom:748.125022px;}
.y6_c00203{bottom:767.175022px;}
.y5_c00203{bottom:786.225022px;}
.y4_c00203{bottom:806.025022px;}
.y3_c00203{bottom:825.525022px;}
.y2_c00203{bottom:844.950022px;}
.y1_c00203{bottom:886.725022px;}
.h2_c00203{height:50.028809px;}
.h4_c00203{height:50.053711px;}
.h5_c00203{height:50.353711px;}
.h3_c00203{height:58.886719px;}
.h1_c00203{height:957.750000px;}
.h0_c00203{height:957.975000px;}
.w0_c00203{width:641.850030px;}
.w1_c00203{width:642.000000px;}
.x0_c00203{left:0.000000px;}
.x2_c00203{left:80.625000px;}
.x4_c00203{left:86.025000px;}
.x3_c00203{left:97.200000px;}
.x6_c00203{left:113.025000px;}
.x5_c00203{left:114.150000px;}
.x1_c00203{left:265.650000px;}
.x7_c00203{left:531.375000px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls0_c00203{letter-spacing:0.000000pt;}
.ws0_c00203{word-spacing:-13.333333pt;}
.ws1_c00203{word-spacing:-11.333333pt;}
.ws2_c00203{word-spacing:0.000000pt;}
._15_c00203{margin-left:-10.725672pt;}
._b_c00203{margin-left:-9.429789pt;}
._13_c00203{margin-left:-8.199747pt;}
._e_c00203{margin-left:-6.255469pt;}
._c_c00203{margin-left:-5.064331pt;}
._0_c00203{margin-left:-4.058648pt;}
._10_c00203{margin-left:-2.644787pt;}
._9_c00203{margin-left:-1.653333pt;}
._1_c00203{width:1.101328pt;}
._3_c00203{width:2.077491pt;}
._8_c00203{width:3.082536pt;}
._2_c00203{width:4.191928pt;}
._f_c00203{width:5.183024pt;}
._5_c00203{width:6.722683pt;}
._d_c00203{width:7.643523pt;}
._6_c00203{width:8.575523pt;}
._7_c00203{width:10.352032pt;}
._a_c00203{width:11.663491pt;}
._19_c00203{width:12.653851pt;}
._4_c00203{width:14.242683pt;}
._11_c00203{width:15.503435pt;}
._12_c00203{width:16.477077pt;}
._14_c00203{width:18.416979pt;}
._18_c00203{width:19.333333pt;}
._17_c00203{width:22.640000pt;}
._16_c00203{width:23.706712pt;}
._1a_c00203{width:25.284851pt;}
.fs0_c00203{font-size:45.333333pt;}
.fs1_c00203{font-size:53.333333pt;}
.y0_c00203{bottom:0.000000pt;}
.y2b_c00203{bottom:57.266686pt;}
.y2a_c00203{bottom:97.933353pt;}
.y29_c00203{bottom:111.400020pt;}
.y28_c00203{bottom:125.066686pt;}
.y27_c00203{bottom:138.866686pt;}
.y26_c00203{bottom:152.666686pt;}
.y25_c00203{bottom:165.800020pt;}
.y24_c00203{bottom:179.866686pt;}
.y23_c00203{bottom:193.000020pt;}
.y22_c00203{bottom:206.733353pt;}
.y21_c00203{bottom:220.200020pt;}
.y20_c00203{bottom:233.933353pt;}
.y1f_c00203{bottom:247.400020pt;}
.y1e_c00203{bottom:261.466686pt;}
.y1d_c00203{bottom:274.600020pt;}
.y1c_c00203{bottom:288.333353pt;}
.y1b_c00203{bottom:301.800020pt;}
.y1a_c00203{bottom:315.533353pt;}
.y19_c00203{bottom:353.600020pt;}
.y18_c00203{bottom:371.200020pt;}
.y17_c00203{bottom:388.200020pt;}
.y16_c00203{bottom:405.800020pt;}
.y15_c00203{bottom:423.066686pt;}
.y14_c00203{bottom:440.000020pt;}
.y13_c00203{bottom:457.600020pt;}
.y12_c00203{bottom:474.933353pt;}
.y11_c00203{bottom:492.200020pt;}
.y10_c00203{bottom:509.466686pt;}
.yf_c00203{bottom:526.733353pt;}
.ye_c00203{bottom:543.666686pt;}
.yd_c00203{bottom:561.266686pt;}
.yc_c00203{bottom:578.600020pt;}
.yb_c00203{bottom:595.533353pt;}
.ya_c00203{bottom:612.800020pt;}
.y9_c00203{bottom:630.400020pt;}
.y8_c00203{bottom:647.666686pt;}
.y7_c00203{bottom:665.000020pt;}
.y6_c00203{bottom:681.933353pt;}
.y5_c00203{bottom:698.866686pt;}
.y4_c00203{bottom:716.466686pt;}
.y3_c00203{bottom:733.800020pt;}
.y2_c00203{bottom:751.066686pt;}
.y1_c00203{bottom:788.200020pt;}
.h2_c00203{height:44.470052pt;}
.h4_c00203{height:44.492188pt;}
.h5_c00203{height:44.758854pt;}
.h3_c00203{height:52.343750pt;}
.h1_c00203{height:851.333333pt;}
.h0_c00203{height:851.533333pt;}
.w0_c00203{width:570.533360pt;}
.w1_c00203{width:570.666667pt;}
.x0_c00203{left:0.000000pt;}
.x2_c00203{left:71.666667pt;}
.x4_c00203{left:76.466667pt;}
.x3_c00203{left:86.400000pt;}
.x6_c00203{left:100.466667pt;}
.x5_c00203{left:101.466667pt;}
.x1_c00203{left:236.133333pt;}
.x7_c00203{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_56c469fa3a3ab1a0a029a850.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00204;src:url('chunks/assets/font_baa27ece4ce8abac9335eee6.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00204{letter-spacing:0.000000px;}
.sc__c00204{text-shadow:none;}
.sc0_c00204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00204{-webkit-text-stroke:0px transparent;}
.sc0_c00204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00204{word-spacing:-15.000000px;}
.ws0_c00204{word-spacing:-12.750000px;}
.ws2_c00204{word-spacing:0.000000px;}
._14_c00204{margin-left:-15.297012px;}
._6_c00204{margin-left:-10.260000px;}
._5_c00204{margin-left:-8.340000px;}
._13_c00204{margin-left:-6.002988px;}
._12_c00204{margin-left:-4.917012px;}
._11_c00204{margin-left:-3.840000px;}
._10_c00204{margin-left:-2.760000px;}
._8_c00204{margin-left:-1.320000px;}
._0_c00204{width:1.860000px;}
._2_c00204{width:3.660000px;}
._1_c00204{width:5.100000px;}
._7_c00204{width:6.600000px;}
._3_c00204{width:7.980000px;}
._4_c00204{width:9.480000px;}
._9_c00204{width:10.980000px;}
._e_c00204{width:12.060000px;}
._a_c00204{width:13.260000px;}
._17_c00204{width:14.661054px;}
._f_c00204{width:16.260000px;}
._b_c00204{width:17.340000px;}
._d_c00204{width:18.600000px;}
._c_c00204{width:20.340000px;}
._19_c00204{width:21.570000px;}
._15_c00204{width:23.010000px;}
._16_c00204{width:24.149946px;}
._18_c00204{width:27.210000px;}
.fc1_c00204{color:transparent;}
.fc0_c00204{color:rgb(35,31,32);}
.fs1_c00204{font-size:51.000000px;}
.fs0_c00204{font-size:60.000000px;}
.y0_c00204{bottom:0.000000px;}
.y28_c00204{bottom:64.800022px;}
.y27_c00204{bottom:110.550022px;}
.y26_c00204{bottom:125.325022px;}
.y25_c00204{bottom:141.150022px;}
.y24_c00204{bottom:156.225022px;}
.y23_c00204{bottom:171.750022px;}
.y22_c00204{bottom:186.525022px;}
.y21_c00204{bottom:202.350022px;}
.y20_c00204{bottom:217.125022px;}
.y1f_c00204{bottom:232.575022px;}
.y1e_c00204{bottom:248.025022px;}
.y1d_c00204{bottom:263.550022px;}
.y1c_c00204{bottom:278.625022px;}
.y1b_c00204{bottom:293.700022px;}
.y1a_c00204{bottom:309.225022px;}
.y19_c00204{bottom:324.750022px;}
.y18_c00204{bottom:364.725022px;}
.y17_c00204{bottom:384.150022px;}
.y16_c00204{bottom:403.200022px;}
.y15_c00204{bottom:423.000022px;}
.y14_c00204{bottom:441.750022px;}
.y13_c00204{bottom:461.175022px;}
.y12_c00204{bottom:480.600022px;}
.y11_c00204{bottom:517.725022px;}
.yf_c00204{bottom:573.150022px;}
.ye_c00204{bottom:592.575022px;}
.yd_c00204{bottom:612.000022px;}
.yc_c00204{bottom:631.125022px;}
.yb_c00204{bottom:650.550022px;}
.ya_c00204{bottom:669.975022px;}
.y9_c00204{bottom:689.775022px;}
.y8_c00204{bottom:709.200022px;}
.y7_c00204{bottom:728.625022px;}
.y6_c00204{bottom:748.125022px;}
.y5_c00204{bottom:767.550022px;}
.y4_c00204{bottom:786.600022px;}
.y3_c00204{bottom:806.025022px;}
.y2_c00204{bottom:825.525022px;}
.y1_c00204{bottom:844.575022px;}
.y10_c00204{bottom:886.725022px;}
.h3_c00204{height:50.053711px;}
.h2_c00204{height:58.886719px;}
.h1_c00204{height:957.750000px;}
.h0_c00204{height:957.975000px;}
.w1_c00204{width:643.500000px;}
.w0_c00204{width:643.650000px;}
.x0_c00204{left:0.000000px;}
.x1_c00204{left:91.050000px;}
.x3_c00204{left:92.175000px;}
.x4_c00204{left:96.150000px;}
.x2_c00204{left:107.250000px;}
.x5_c00204{left:123.825000px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls0_c00204{letter-spacing:0.000000pt;}
.ws1_c00204{word-spacing:-13.333333pt;}
.ws0_c00204{word-spacing:-11.333333pt;}
.ws2_c00204{word-spacing:0.000000pt;}
._14_c00204{margin-left:-13.597344pt;}
._6_c00204{margin-left:-9.120000pt;}
._5_c00204{margin-left:-7.413333pt;}
._13_c00204{margin-left:-5.335989pt;}
._12_c00204{margin-left:-4.370677pt;}
._11_c00204{margin-left:-3.413333pt;}
._10_c00204{margin-left:-2.453333pt;}
._8_c00204{margin-left:-1.173333pt;}
._0_c00204{width:1.653333pt;}
._2_c00204{width:3.253333pt;}
._1_c00204{width:4.533333pt;}
._7_c00204{width:5.866667pt;}
._3_c00204{width:7.093333pt;}
._4_c00204{width:8.426667pt;}
._9_c00204{width:9.760000pt;}
._e_c00204{width:10.720000pt;}
._a_c00204{width:11.786667pt;}
._17_c00204{width:13.032048pt;}
._f_c00204{width:14.453333pt;}
._b_c00204{width:15.413333pt;}
._d_c00204{width:16.533333pt;}
._c_c00204{width:18.080000pt;}
._19_c00204{width:19.173333pt;}
._15_c00204{width:20.453333pt;}
._16_c00204{width:21.466619pt;}
._18_c00204{width:24.186667pt;}
.fs1_c00204{font-size:45.333333pt;}
.fs0_c00204{font-size:53.333333pt;}
.y0_c00204{bottom:0.000000pt;}
.y28_c00204{bottom:57.600020pt;}
.y27_c00204{bottom:98.266686pt;}
.y26_c00204{bottom:111.400020pt;}
.y25_c00204{bottom:125.466686pt;}
.y24_c00204{bottom:138.866686pt;}
.y23_c00204{bottom:152.666686pt;}
.y22_c00204{bottom:165.800020pt;}
.y21_c00204{bottom:179.866686pt;}
.y20_c00204{bottom:193.000020pt;}
.y1f_c00204{bottom:206.733353pt;}
.y1e_c00204{bottom:220.466686pt;}
.y1d_c00204{bottom:234.266686pt;}
.y1c_c00204{bottom:247.666686pt;}
.y1b_c00204{bottom:261.066686pt;}
.y1a_c00204{bottom:274.866686pt;}
.y19_c00204{bottom:288.666686pt;}
.y18_c00204{bottom:324.200020pt;}
.y17_c00204{bottom:341.466686pt;}
.y16_c00204{bottom:358.400020pt;}
.y15_c00204{bottom:376.000020pt;}
.y14_c00204{bottom:392.666686pt;}
.y13_c00204{bottom:409.933353pt;}
.y12_c00204{bottom:427.200020pt;}
.y11_c00204{bottom:460.200020pt;}
.yf_c00204{bottom:509.466686pt;}
.ye_c00204{bottom:526.733353pt;}
.yd_c00204{bottom:544.000020pt;}
.yc_c00204{bottom:561.000020pt;}
.yb_c00204{bottom:578.266686pt;}
.ya_c00204{bottom:595.533353pt;}
.y9_c00204{bottom:613.133353pt;}
.y8_c00204{bottom:630.400020pt;}
.y7_c00204{bottom:647.666686pt;}
.y6_c00204{bottom:665.000020pt;}
.y5_c00204{bottom:682.266686pt;}
.y4_c00204{bottom:699.200020pt;}
.y3_c00204{bottom:716.466686pt;}
.y2_c00204{bottom:733.800020pt;}
.y1_c00204{bottom:750.733353pt;}
.y10_c00204{bottom:788.200020pt;}
.h3_c00204{height:44.492188pt;}
.h2_c00204{height:52.343750pt;}
.h1_c00204{height:851.333333pt;}
.h0_c00204{height:851.533333pt;}
.w1_c00204{width:572.000000pt;}
.w0_c00204{width:572.133333pt;}
.x0_c00204{left:0.000000pt;}
.x1_c00204{left:80.933333pt;}
.x3_c00204{left:81.933333pt;}
.x4_c00204{left:85.466667pt;}
.x2_c00204{left:95.333333pt;}
.x5_c00204{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4c30097a0784d1067d9c97cb.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00205;src:url('chunks/assets/font_1ed3ebc0bb74912478db2f3a.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00205{letter-spacing:0.000000px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00205{word-spacing:-15.000000px;}
.ws0_c00205{word-spacing:-12.750000px;}
.ws2_c00205{word-spacing:0.000000px;}
._a_c00205{margin-left:-15.783906px;}
._15_c00205{margin-left:-13.212807px;}
._11_c00205{margin-left:-10.893561px;}
._10_c00205{margin-left:-8.906439px;}
._d_c00205{margin-left:-7.877718px;}
._8_c00205{margin-left:-6.153015px;}
._0_c00205{margin-left:-4.565979px;}
._f_c00205{margin-left:-3.234021px;}
._6_c00205{margin-left:-1.611606px;}
._1_c00205{width:1.238994px;}
._3_c00205{width:2.337177px;}
._12_c00205{width:3.647754px;}
._2_c00205{width:4.715919px;}
._14_c00205{width:5.744331px;}
._7_c00205{width:6.822012px;}
._c_c00205{width:8.888469px;}
._9_c00205{width:10.053015px;}
._b_c00205{width:11.064099px;}
._e_c00205{width:12.500106px;}
._5_c00205{width:13.958724px;}
._1a_c00205{width:15.101001px;}
._4_c00205{width:16.260000px;}
._13_c00205{width:17.501256px;}
._16_c00205{width:20.329311px;}
._19_c00205{width:24.973233px;}
._17_c00205{width:26.173263px;}
._18_c00205{width:29.407233px;}
.fc1_c00205{color:transparent;}
.fc0_c00205{color:rgb(35,31,32);}
.fs0_c00205{font-size:51.000000px;}
.fs1_c00205{font-size:60.000000px;}
.y0_c00205{bottom:0.000000px;}
.y2b_c00205{bottom:64.425022px;}
.y2a_c00205{bottom:110.175022px;}
.y29_c00205{bottom:125.325022px;}
.y28_c00205{bottom:140.775022px;}
.y27_c00205{bottom:156.225022px;}
.y26_c00205{bottom:171.375022px;}
.y25_c00205{bottom:186.525022px;}
.y24_c00205{bottom:202.350022px;}
.y23_c00205{bottom:217.425022px;}
.y22_c00205{bottom:232.575022px;}
.y21_c00205{bottom:248.025022px;}
.y20_c00205{bottom:263.175022px;}
.y1f_c00205{bottom:278.625022px;}
.y1e_c00205{bottom:293.775022px;}
.y1d_c00205{bottom:308.925022px;}
.y1c_c00205{bottom:324.750022px;}
.y1b_c00205{bottom:339.525022px;}
.y1a_c00205{bottom:355.350022px;}
.y19_c00205{bottom:398.175022px;}
.y18_c00205{bottom:417.600022px;}
.y17_c00205{bottom:436.725022px;}
.y16_c00205{bottom:456.525022px;}
.y15_c00205{bottom:475.950022px;}
.y14_c00205{bottom:495.000022px;}
.y13_c00205{bottom:514.425022px;}
.y12_c00205{bottom:533.925022px;}
.y11_c00205{bottom:553.725022px;}
.y10_c00205{bottom:572.775022px;}
.yf_c00205{bottom:592.200022px;}
.ye_c00205{bottom:612.000022px;}
.yd_c00205{bottom:631.425022px;}
.yc_c00205{bottom:650.925022px;}
.yb_c00205{bottom:669.975022px;}
.ya_c00205{bottom:689.775022px;}
.y9_c00205{bottom:709.200022px;}
.y8_c00205{bottom:728.325022px;}
.y7_c00205{bottom:748.125022px;}
.y6_c00205{bottom:767.550022px;}
.y5_c00205{bottom:786.225022px;}
.y4_c00205{bottom:806.025022px;}
.y3_c00205{bottom:825.150022px;}
.y2_c00205{bottom:844.950022px;}
.y1_c00205{bottom:886.725022px;}
.h2_c00205{height:50.028809px;}
.h4_c00205{height:50.053711px;}
.h3_c00205{height:58.886719px;}
.h1_c00205{height:957.750000px;}
.h0_c00205{height:957.975000px;}
.w0_c00205{width:641.850030px;}
.w1_c00205{width:642.000000px;}
.x0_c00205{left:0.000000px;}
.x2_c00205{left:81.000000px;}
.x5_c00205{left:86.025000px;}
.x3_c00205{left:97.200000px;}
.x4_c00205{left:114.150000px;}
.x1_c00205{left:265.650000px;}
.x6_c00205{left:531.375000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls0_c00205{letter-spacing:0.000000pt;}
.ws1_c00205{word-spacing:-13.333333pt;}
.ws0_c00205{word-spacing:-11.333333pt;}
.ws2_c00205{word-spacing:0.000000pt;}
._a_c00205{margin-left:-14.030139pt;}
._15_c00205{margin-left:-11.744717pt;}
._11_c00205{margin-left:-9.683165pt;}
._10_c00205{margin-left:-7.916835pt;}
._d_c00205{margin-left:-7.002416pt;}
._8_c00205{margin-left:-5.469347pt;}
._0_c00205{margin-left:-4.058648pt;}
._f_c00205{margin-left:-2.874685pt;}
._6_c00205{margin-left:-1.432539pt;}
._1_c00205{width:1.101328pt;}
._3_c00205{width:2.077491pt;}
._12_c00205{width:3.242448pt;}
._2_c00205{width:4.191928pt;}
._14_c00205{width:5.106072pt;}
._7_c00205{width:6.064011pt;}
._c_c00205{width:7.900861pt;}
._9_c00205{width:8.936013pt;}
._b_c00205{width:9.834755pt;}
._e_c00205{width:11.111205pt;}
._5_c00205{width:12.407755pt;}
._1a_c00205{width:13.423112pt;}
._4_c00205{width:14.453333pt;}
._13_c00205{width:15.556672pt;}
._16_c00205{width:18.070499pt;}
._19_c00205{width:22.198429pt;}
._17_c00205{width:23.265123pt;}
._18_c00205{width:26.139763pt;}
.fs0_c00205{font-size:45.333333pt;}
.fs1_c00205{font-size:53.333333pt;}
.y0_c00205{bottom:0.000000pt;}
.y2b_c00205{bottom:57.266686pt;}
.y2a_c00205{bottom:97.933353pt;}
.y29_c00205{bottom:111.400020pt;}
.y28_c00205{bottom:125.133353pt;}
.y27_c00205{bottom:138.866686pt;}
.y26_c00205{bottom:152.333353pt;}
.y25_c00205{bottom:165.800020pt;}
.y24_c00205{bottom:179.866686pt;}
.y23_c00205{bottom:193.266686pt;}
.y22_c00205{bottom:206.733353pt;}
.y21_c00205{bottom:220.466686pt;}
.y20_c00205{bottom:233.933353pt;}
.y1f_c00205{bottom:247.666686pt;}
.y1e_c00205{bottom:261.133353pt;}
.y1d_c00205{bottom:274.600020pt;}
.y1c_c00205{bottom:288.666686pt;}
.y1b_c00205{bottom:301.800020pt;}
.y1a_c00205{bottom:315.866686pt;}
.y19_c00205{bottom:353.933353pt;}
.y18_c00205{bottom:371.200020pt;}
.y17_c00205{bottom:388.200020pt;}
.y16_c00205{bottom:405.800020pt;}
.y15_c00205{bottom:423.066686pt;}
.y14_c00205{bottom:440.000020pt;}
.y13_c00205{bottom:457.266686pt;}
.y12_c00205{bottom:474.600020pt;}
.y11_c00205{bottom:492.200020pt;}
.y10_c00205{bottom:509.133353pt;}
.yf_c00205{bottom:526.400020pt;}
.ye_c00205{bottom:544.000020pt;}
.yd_c00205{bottom:561.266686pt;}
.yc_c00205{bottom:578.600020pt;}
.yb_c00205{bottom:595.533353pt;}
.ya_c00205{bottom:613.133353pt;}
.y9_c00205{bottom:630.400020pt;}
.y8_c00205{bottom:647.400020pt;}
.y7_c00205{bottom:665.000020pt;}
.y6_c00205{bottom:682.266686pt;}
.y5_c00205{bottom:698.866686pt;}
.y4_c00205{bottom:716.466686pt;}
.y3_c00205{bottom:733.466686pt;}
.y2_c00205{bottom:751.066686pt;}
.y1_c00205{bottom:788.200020pt;}
.h2_c00205{height:44.470052pt;}
.h4_c00205{height:44.492188pt;}
.h3_c00205{height:52.343750pt;}
.h1_c00205{height:851.333333pt;}
.h0_c00205{height:851.533333pt;}
.w0_c00205{width:570.533360pt;}
.w1_c00205{width:570.666667pt;}
.x0_c00205{left:0.000000pt;}
.x2_c00205{left:72.000000pt;}
.x5_c00205{left:76.466667pt;}
.x3_c00205{left:86.400000pt;}
.x4_c00205{left:101.466667pt;}
.x1_c00205{left:236.133333pt;}
.x6_c00205{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_39f23a2334f945be4479820f.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00206;src:url('chunks/assets/font_be3d1a7978988a4684d51475.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00206{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.ls0_c00206{letter-spacing:0.000000px;}
.sc__c00206{text-shadow:none;}
.sc0_c00206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00206{-webkit-text-stroke:0px transparent;}
.sc0_c00206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00206{word-spacing:-15.000000px;}
.ws1_c00206{word-spacing:0.000000px;}
._b_c00206{margin-left:-11.340000px;}
._8_c00206{margin-left:-9.840000px;}
._7_c00206{margin-left:-8.760000px;}
._6_c00206{margin-left:-6.600000px;}
._c_c00206{margin-left:-5.580000px;}
._f_c00206{margin-left:-4.500000px;}
._e_c00206{margin-left:-3.180000px;}
._4_c00206{margin-left:-2.040000px;}
._11_c00206{margin-left:-1.020000px;}
._0_c00206{width:1.380000px;}
._2_c00206{width:2.580000px;}
._d_c00206{width:4.140000px;}
._9_c00206{width:5.280000px;}
._a_c00206{width:7.380000px;}
._1_c00206{width:8.580000px;}
._10_c00206{width:10.200000px;}
._3_c00206{width:11.520000px;}
._5_c00206{width:12.600000px;}
._12_c00206{width:13.740000px;}
._14_c00206{width:16.260000px;}
._13_c00206{width:17.820000px;}
._15_c00206{width:20.040000px;}
._19_c00206{width:21.810018px;}
._17_c00206{width:23.784003px;}
._18_c00206{width:25.556967px;}
._16_c00206{width:27.030051px;}
.fc1_c00206{color:transparent;}
.fc0_c00206{color:rgb(35,31,32);}
.fs1_c00206{font-size:51.000000px;}
.fs0_c00206{font-size:60.000000px;}
.y0_c00206{bottom:0.000000px;}
.y2b_c00206{bottom:64.425022px;}
.y2a_c00206{bottom:110.175022px;}
.y29_c00206{bottom:125.325022px;}
.y28_c00206{bottom:140.775022px;}
.y27_c00206{bottom:156.225022px;}
.y26_c00206{bottom:171.375022px;}
.y25_c00206{bottom:186.525022px;}
.y24_c00206{bottom:201.975022px;}
.y23_c00206{bottom:217.125022px;}
.y22_c00206{bottom:232.575022px;}
.y21_c00206{bottom:248.025022px;}
.y20_c00206{bottom:263.550022px;}
.y1f_c00206{bottom:278.625022px;}
.y1e_c00206{bottom:294.150022px;}
.y1d_c00206{bottom:308.925022px;}
.y1c_c00206{bottom:324.750022px;}
.y1b_c00206{bottom:339.825022px;}
.y1a_c00206{bottom:355.350022px;}
.y19_c00206{bottom:370.125022px;}
.y17_c00206{bottom:417.600022px;}
.y16_c00206{bottom:436.725022px;}
.y15_c00206{bottom:456.150022px;}
.y14_c00206{bottom:475.950022px;}
.y13_c00206{bottom:495.375022px;}
.y12_c00206{bottom:514.425022px;}
.y11_c00206{bottom:533.925022px;}
.y10_c00206{bottom:553.350022px;}
.yf_c00206{bottom:573.150022px;}
.ye_c00206{bottom:592.575022px;}
.yd_c00206{bottom:612.000022px;}
.yc_c00206{bottom:631.125022px;}
.yb_c00206{bottom:650.550022px;}
.ya_c00206{bottom:670.350022px;}
.y9_c00206{bottom:689.400022px;}
.y8_c00206{bottom:709.200022px;}
.y7_c00206{bottom:728.625022px;}
.y6_c00206{bottom:747.750022px;}
.y5_c00206{bottom:767.175022px;}
.y4_c00206{bottom:786.225022px;}
.y3_c00206{bottom:806.025022px;}
.y2_c00206{bottom:825.525022px;}
.y1_c00206{bottom:844.575022px;}
.y18_c00206{bottom:886.725022px;}
.h3_c00206{height:50.053711px;}
.h2_c00206{height:58.886719px;}
.h1_c00206{height:957.750000px;}
.h0_c00206{height:957.975000px;}
.w1_c00206{width:643.500000px;}
.w0_c00206{width:643.650000px;}
.x0_c00206{left:0.000000px;}
.x1_c00206{left:90.375000px;}
.x2_c00206{left:91.425000px;}
.x4_c00206{left:96.150000px;}
.x3_c00206{left:107.250000px;}
.x5_c00206{left:123.825000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls0_c00206{letter-spacing:0.000000pt;}
.ws0_c00206{word-spacing:-13.333333pt;}
.ws1_c00206{word-spacing:0.000000pt;}
._b_c00206{margin-left:-10.080000pt;}
._8_c00206{margin-left:-8.746667pt;}
._7_c00206{margin-left:-7.786667pt;}
._6_c00206{margin-left:-5.866667pt;}
._c_c00206{margin-left:-4.960000pt;}
._f_c00206{margin-left:-4.000000pt;}
._e_c00206{margin-left:-2.826667pt;}
._4_c00206{margin-left:-1.813333pt;}
._11_c00206{margin-left:-0.906667pt;}
._0_c00206{width:1.226667pt;}
._2_c00206{width:2.293333pt;}
._d_c00206{width:3.680000pt;}
._9_c00206{width:4.693333pt;}
._a_c00206{width:6.560000pt;}
._1_c00206{width:7.626667pt;}
._10_c00206{width:9.066667pt;}
._3_c00206{width:10.240000pt;}
._5_c00206{width:11.200000pt;}
._12_c00206{width:12.213333pt;}
._14_c00206{width:14.453333pt;}
._13_c00206{width:15.840000pt;}
._15_c00206{width:17.813333pt;}
._19_c00206{width:19.386683pt;}
._17_c00206{width:21.141336pt;}
._18_c00206{width:22.717304pt;}
._16_c00206{width:24.026712pt;}
.fs1_c00206{font-size:45.333333pt;}
.fs0_c00206{font-size:53.333333pt;}
.y0_c00206{bottom:0.000000pt;}
.y2b_c00206{bottom:57.266686pt;}
.y2a_c00206{bottom:97.933353pt;}
.y29_c00206{bottom:111.400020pt;}
.y28_c00206{bottom:125.133353pt;}
.y27_c00206{bottom:138.866686pt;}
.y26_c00206{bottom:152.333353pt;}
.y25_c00206{bottom:165.800020pt;}
.y24_c00206{bottom:179.533353pt;}
.y23_c00206{bottom:193.000020pt;}
.y22_c00206{bottom:206.733353pt;}
.y21_c00206{bottom:220.466686pt;}
.y20_c00206{bottom:234.266686pt;}
.y1f_c00206{bottom:247.666686pt;}
.y1e_c00206{bottom:261.466686pt;}
.y1d_c00206{bottom:274.600020pt;}
.y1c_c00206{bottom:288.666686pt;}
.y1b_c00206{bottom:302.066686pt;}
.y1a_c00206{bottom:315.866686pt;}
.y19_c00206{bottom:329.000020pt;}
.y17_c00206{bottom:371.200020pt;}
.y16_c00206{bottom:388.200020pt;}
.y15_c00206{bottom:405.466686pt;}
.y14_c00206{bottom:423.066686pt;}
.y13_c00206{bottom:440.333353pt;}
.y12_c00206{bottom:457.266686pt;}
.y11_c00206{bottom:474.600020pt;}
.y10_c00206{bottom:491.866686pt;}
.yf_c00206{bottom:509.466686pt;}
.ye_c00206{bottom:526.733353pt;}
.yd_c00206{bottom:544.000020pt;}
.yc_c00206{bottom:561.000020pt;}
.yb_c00206{bottom:578.266686pt;}
.ya_c00206{bottom:595.866686pt;}
.y9_c00206{bottom:612.800020pt;}
.y8_c00206{bottom:630.400020pt;}
.y7_c00206{bottom:647.666686pt;}
.y6_c00206{bottom:664.666686pt;}
.y5_c00206{bottom:681.933353pt;}
.y4_c00206{bottom:698.866686pt;}
.y3_c00206{bottom:716.466686pt;}
.y2_c00206{bottom:733.800020pt;}
.y1_c00206{bottom:750.733353pt;}
.y18_c00206{bottom:788.200020pt;}
.h3_c00206{height:44.492188pt;}
.h2_c00206{height:52.343750pt;}
.h1_c00206{height:851.333333pt;}
.h0_c00206{height:851.533333pt;}
.w1_c00206{width:572.000000pt;}
.w0_c00206{width:572.133333pt;}
.x0_c00206{left:0.000000pt;}
.x1_c00206{left:80.333333pt;}
.x2_c00206{left:81.266667pt;}
.x4_c00206{left:85.466667pt;}
.x3_c00206{left:95.333333pt;}
.x5_c00206{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_05a48aee962fd1dc91e0939a.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00207;src:url('chunks/assets/font_de9be6d35bd23ba956a07fde.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.sc__c00207{text-shadow:none;}
.sc0_c00207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00207{-webkit-text-stroke:0px transparent;}
.sc0_c00207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00207{word-spacing:-15.000000px;}
.ws0_c00207{word-spacing:-12.750000px;}
.ws2_c00207{word-spacing:0.000000px;}
._f_c00207{margin-left:-11.976384px;}
._e_c00207{margin-left:-9.641523px;}
._10_c00207{margin-left:-8.537016px;}
._11_c00207{margin-left:-6.867210px;}
._1b_c00207{margin-left:-5.705562px;}
._0_c00207{margin-left:-4.565979px;}
._18_c00207{margin-left:-3.300006px;}
._6_c00207{margin-left:-2.220000px;}
._9_c00207{margin-left:-1.187853px;}
._1_c00207{width:1.238994px;}
._3_c00207{width:2.337177px;}
._d_c00207{width:3.537021px;}
._2_c00207{width:4.715919px;}
._12_c00207{width:6.170205px;}
._4_c00207{width:7.320000px;}
._7_c00207{width:8.570910px;}
._c_c00207{width:9.722628px;}
._5_c00207{width:10.800000px;}
._8_c00207{width:11.852883px;}
._a_c00207{width:13.740000px;}
._19_c00207{width:15.024933px;}
._13_c00207{width:16.079730px;}
._b_c00207{width:17.100000px;}
._17_c00207{width:22.455096px;}
._15_c00207{width:23.784003px;}
._16_c00207{width:25.106922px;}
._14_c00207{width:26.357904px;}
._1c_c00207{width:27.390000px;}
._1a_c00207{width:28.410072px;}
.fc1_c00207{color:transparent;}
.fc0_c00207{color:rgb(35,31,32);}
.fs0_c00207{font-size:51.000000px;}
.fs1_c00207{font-size:60.000000px;}
.y0_c00207{bottom:0.000000px;}
.y2c_c00207{bottom:64.425022px;}
.y2b_c00207{bottom:110.175022px;}
.y2a_c00207{bottom:125.325022px;}
.y29_c00207{bottom:140.775022px;}
.y28_c00207{bottom:155.925022px;}
.y27_c00207{bottom:171.375022px;}
.y26_c00207{bottom:186.525022px;}
.y25_c00207{bottom:201.975022px;}
.y24_c00207{bottom:217.125022px;}
.y23_c00207{bottom:232.575022px;}
.y22_c00207{bottom:248.025022px;}
.y21_c00207{bottom:263.175022px;}
.y20_c00207{bottom:278.625022px;}
.y1f_c00207{bottom:293.775022px;}
.y1e_c00207{bottom:308.925022px;}
.y1d_c00207{bottom:324.375022px;}
.y1c_c00207{bottom:339.825022px;}
.y1b_c00207{bottom:355.350022px;}
.y1a_c00207{bottom:370.125022px;}
.y19_c00207{bottom:385.575022px;}
.y18_c00207{bottom:400.725022px;}
.y17_c00207{bottom:416.550022px;}
.y16_c00207{bottom:431.325022px;}
.y15_c00207{bottom:475.950022px;}
.y14_c00207{bottom:495.375022px;}
.y13_c00207{bottom:514.800022px;}
.y12_c00207{bottom:533.925022px;}
.y11_c00207{bottom:553.725022px;}
.y10_c00207{bottom:572.775022px;}
.yf_c00207{bottom:592.575022px;}
.ye_c00207{bottom:612.000022px;}
.yd_c00207{bottom:631.125022px;}
.yc_c00207{bottom:650.925022px;}
.yb_c00207{bottom:670.350022px;}
.ya_c00207{bottom:689.400022px;}
.y9_c00207{bottom:709.200022px;}
.y8_c00207{bottom:728.625022px;}
.y7_c00207{bottom:748.125022px;}
.y6_c00207{bottom:767.175022px;}
.y5_c00207{bottom:786.600022px;}
.y4_c00207{bottom:806.025022px;}
.y3_c00207{bottom:825.150022px;}
.y2_c00207{bottom:844.575022px;}
.y1_c00207{bottom:886.725022px;}
.h2_c00207{height:50.028809px;}
.h4_c00207{height:50.053711px;}
.h3_c00207{height:58.886719px;}
.h1_c00207{height:957.750000px;}
.h0_c00207{height:957.975000px;}
.w0_c00207{width:641.850030px;}
.w1_c00207{width:642.000000px;}
.x0_c00207{left:0.000000px;}
.x3_c00207{left:80.250000px;}
.x2_c00207{left:81.375000px;}
.x5_c00207{left:86.025000px;}
.x4_c00207{left:97.200000px;}
.x6_c00207{left:113.775000px;}
.x1_c00207{left:265.650000px;}
.x7_c00207{left:531.375000px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls0_c00207{letter-spacing:0.000000pt;}
.ws1_c00207{word-spacing:-13.333333pt;}
.ws0_c00207{word-spacing:-11.333333pt;}
.ws2_c00207{word-spacing:0.000000pt;}
._f_c00207{margin-left:-10.645675pt;}
._e_c00207{margin-left:-8.570243pt;}
._10_c00207{margin-left:-7.588459pt;}
._11_c00207{margin-left:-6.104187pt;}
._1b_c00207{margin-left:-5.071611pt;}
._0_c00207{margin-left:-4.058648pt;}
._18_c00207{margin-left:-2.933339pt;}
._6_c00207{margin-left:-1.973333pt;}
._9_c00207{margin-left:-1.055869pt;}
._1_c00207{width:1.101328pt;}
._3_c00207{width:2.077491pt;}
._d_c00207{width:3.144019pt;}
._2_c00207{width:4.191928pt;}
._12_c00207{width:5.484627pt;}
._4_c00207{width:6.506667pt;}
._7_c00207{width:7.618587pt;}
._c_c00207{width:8.642336pt;}
._5_c00207{width:9.600000pt;}
._8_c00207{width:10.535896pt;}
._a_c00207{width:12.213333pt;}
._19_c00207{width:13.355496pt;}
._13_c00207{width:14.293093pt;}
._b_c00207{width:15.200000pt;}
._17_c00207{width:19.960085pt;}
._15_c00207{width:21.141336pt;}
._16_c00207{width:22.317264pt;}
._14_c00207{width:23.429248pt;}
._1c_c00207{width:24.346667pt;}
._1a_c00207{width:25.253397pt;}
.fs0_c00207{font-size:45.333333pt;}
.fs1_c00207{font-size:53.333333pt;}
.y0_c00207{bottom:0.000000pt;}
.y2c_c00207{bottom:57.266686pt;}
.y2b_c00207{bottom:97.933353pt;}
.y2a_c00207{bottom:111.400020pt;}
.y29_c00207{bottom:125.133353pt;}
.y28_c00207{bottom:138.600020pt;}
.y27_c00207{bottom:152.333353pt;}
.y26_c00207{bottom:165.800020pt;}
.y25_c00207{bottom:179.533353pt;}
.y24_c00207{bottom:193.000020pt;}
.y23_c00207{bottom:206.733353pt;}
.y22_c00207{bottom:220.466686pt;}
.y21_c00207{bottom:233.933353pt;}
.y20_c00207{bottom:247.666686pt;}
.y1f_c00207{bottom:261.133353pt;}
.y1e_c00207{bottom:274.600020pt;}
.y1d_c00207{bottom:288.333353pt;}
.y1c_c00207{bottom:302.066686pt;}
.y1b_c00207{bottom:315.866686pt;}
.y1a_c00207{bottom:329.000020pt;}
.y19_c00207{bottom:342.733353pt;}
.y18_c00207{bottom:356.200020pt;}
.y17_c00207{bottom:370.266686pt;}
.y16_c00207{bottom:383.400020pt;}
.y15_c00207{bottom:423.066686pt;}
.y14_c00207{bottom:440.333353pt;}
.y13_c00207{bottom:457.600020pt;}
.y12_c00207{bottom:474.600020pt;}
.y11_c00207{bottom:492.200020pt;}
.y10_c00207{bottom:509.133353pt;}
.yf_c00207{bottom:526.733353pt;}
.ye_c00207{bottom:544.000020pt;}
.yd_c00207{bottom:561.000020pt;}
.yc_c00207{bottom:578.600020pt;}
.yb_c00207{bottom:595.866686pt;}
.ya_c00207{bottom:612.800020pt;}
.y9_c00207{bottom:630.400020pt;}
.y8_c00207{bottom:647.666686pt;}
.y7_c00207{bottom:665.000020pt;}
.y6_c00207{bottom:681.933353pt;}
.y5_c00207{bottom:699.200020pt;}
.y4_c00207{bottom:716.466686pt;}
.y3_c00207{bottom:733.466686pt;}
.y2_c00207{bottom:750.733353pt;}
.y1_c00207{bottom:788.200020pt;}
.h2_c00207{height:44.470052pt;}
.h4_c00207{height:44.492188pt;}
.h3_c00207{height:52.343750pt;}
.h1_c00207{height:851.333333pt;}
.h0_c00207{height:851.533333pt;}
.w0_c00207{width:570.533360pt;}
.w1_c00207{width:570.666667pt;}
.x0_c00207{left:0.000000pt;}
.x3_c00207{left:71.333333pt;}
.x2_c00207{left:72.333333pt;}
.x5_c00207{left:76.466667pt;}
.x4_c00207{left:86.400000pt;}
.x6_c00207{left:101.133333pt;}
.x1_c00207{left:236.133333pt;}
.x7_c00207{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e9ed29a135a350c89fd7d4f.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00208;src:url('chunks/assets/font_6b75629fc26b87d528ce9752.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00208{letter-spacing:0.000000px;}
.sc__c00208{text-shadow:none;}
.sc0_c00208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00208{-webkit-text-stroke:0px transparent;}
.sc0_c00208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00208{word-spacing:-15.000000px;}
.ws0_c00208{word-spacing:-12.750000px;}
.ws2_c00208{word-spacing:0.000000px;}
._c_c00208{margin-left:-12.720000px;}
._a_c00208{margin-left:-10.800000px;}
._9_c00208{margin-left:-9.000000px;}
._b_c00208{margin-left:-7.080000px;}
._e_c00208{margin-left:-5.640000px;}
._14_c00208{margin-left:-4.110048px;}
._f_c00208{margin-left:-3.060000px;}
._6_c00208{margin-left:-1.740000px;}
._1_c00208{width:1.800000px;}
._2_c00208{width:3.300000px;}
._7_c00208{width:4.500000px;}
._3_c00208{width:5.820000px;}
._8_c00208{width:7.320000px;}
._0_c00208{width:8.400000px;}
._5_c00208{width:9.480000px;}
._4_c00208{width:11.040000px;}
._d_c00208{width:12.120000px;}
._10_c00208{width:13.320000px;}
._11_c00208{width:17.280000px;}
._15_c00208{width:22.470000px;}
._13_c00208{width:23.790000px;}
._12_c00208{width:24.810000px;}
._16_c00208{width:56.910003px;}
.fc1_c00208{color:transparent;}
.fc0_c00208{color:rgb(35,31,32);}
.fs1_c00208{font-size:51.000000px;}
.fs0_c00208{font-size:60.000000px;}
.y0_c00208{bottom:0.000000px;}
.y26_c00208{bottom:64.425022px;}
.y25_c00208{bottom:110.175022px;}
.y24_c00208{bottom:125.325022px;}
.y23_c00208{bottom:140.775022px;}
.y22_c00208{bottom:156.225022px;}
.y21_c00208{bottom:171.750022px;}
.y20_c00208{bottom:186.825022px;}
.y1f_c00208{bottom:201.975022px;}
.y1e_c00208{bottom:241.950022px;}
.y1d_c00208{bottom:261.375022px;}
.y1c_c00208{bottom:280.800022px;}
.y1b_c00208{bottom:300.600022px;}
.y1a_c00208{bottom:319.725022px;}
.y19_c00208{bottom:338.775022px;}
.y18_c00208{bottom:358.125022px;}
.y17_c00208{bottom:377.625022px;}
.y16_c00208{bottom:397.125022px;}
.y15_c00208{bottom:436.350022px;}
.y13_c00208{bottom:495.375022px;}
.y12_c00208{bottom:514.425022px;}
.y11_c00208{bottom:533.925022px;}
.y10_c00208{bottom:553.725022px;}
.yf_c00208{bottom:572.775022px;}
.ye_c00208{bottom:592.575022px;}
.yd_c00208{bottom:612.000022px;}
.yc_c00208{bottom:631.125022px;}
.yb_c00208{bottom:650.925022px;}
.ya_c00208{bottom:669.975022px;}
.y9_c00208{bottom:689.775022px;}
.y8_c00208{bottom:708.825022px;}
.y7_c00208{bottom:728.625022px;}
.y6_c00208{bottom:747.750022px;}
.y5_c00208{bottom:767.550022px;}
.y4_c00208{bottom:786.600022px;}
.y3_c00208{bottom:805.725022px;}
.y2_c00208{bottom:825.525022px;}
.y1_c00208{bottom:844.950022px;}
.y14_c00208{bottom:886.725022px;}
.h3_c00208{height:50.053711px;}
.h2_c00208{height:58.886719px;}
.h1_c00208{height:957.750000px;}
.h0_c00208{height:957.975000px;}
.w1_c00208{width:643.500000px;}
.w0_c00208{width:643.650000px;}
.x0_c00208{left:0.000000px;}
.x2_c00208{left:90.375000px;}
.x1_c00208{left:91.425000px;}
.x3_c00208{left:96.150000px;}
.x4_c00208{left:123.825000px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls0_c00208{letter-spacing:0.000000pt;}
.ws1_c00208{word-spacing:-13.333333pt;}
.ws0_c00208{word-spacing:-11.333333pt;}
.ws2_c00208{word-spacing:0.000000pt;}
._c_c00208{margin-left:-11.306667pt;}
._a_c00208{margin-left:-9.600000pt;}
._9_c00208{margin-left:-8.000000pt;}
._b_c00208{margin-left:-6.293333pt;}
._e_c00208{margin-left:-5.013333pt;}
._14_c00208{margin-left:-3.653376pt;}
._f_c00208{margin-left:-2.720000pt;}
._6_c00208{margin-left:-1.546667pt;}
._1_c00208{width:1.600000pt;}
._2_c00208{width:2.933333pt;}
._7_c00208{width:4.000000pt;}
._3_c00208{width:5.173333pt;}
._8_c00208{width:6.506667pt;}
._0_c00208{width:7.466667pt;}
._5_c00208{width:8.426667pt;}
._4_c00208{width:9.813333pt;}
._d_c00208{width:10.773333pt;}
._10_c00208{width:11.840000pt;}
._11_c00208{width:15.360000pt;}
._15_c00208{width:19.973333pt;}
._13_c00208{width:21.146667pt;}
._12_c00208{width:22.053333pt;}
._16_c00208{width:50.586669pt;}
.fs1_c00208{font-size:45.333333pt;}
.fs0_c00208{font-size:53.333333pt;}
.y0_c00208{bottom:0.000000pt;}
.y26_c00208{bottom:57.266686pt;}
.y25_c00208{bottom:97.933353pt;}
.y24_c00208{bottom:111.400020pt;}
.y23_c00208{bottom:125.133353pt;}
.y22_c00208{bottom:138.866686pt;}
.y21_c00208{bottom:152.666686pt;}
.y20_c00208{bottom:166.066686pt;}
.y1f_c00208{bottom:179.533353pt;}
.y1e_c00208{bottom:215.066686pt;}
.y1d_c00208{bottom:232.333353pt;}
.y1c_c00208{bottom:249.600020pt;}
.y1b_c00208{bottom:267.200020pt;}
.y1a_c00208{bottom:284.200020pt;}
.y19_c00208{bottom:301.133353pt;}
.y18_c00208{bottom:318.333353pt;}
.y17_c00208{bottom:335.666686pt;}
.y16_c00208{bottom:353.000020pt;}
.y15_c00208{bottom:387.866686pt;}
.y13_c00208{bottom:440.333353pt;}
.y12_c00208{bottom:457.266686pt;}
.y11_c00208{bottom:474.600020pt;}
.y10_c00208{bottom:492.200020pt;}
.yf_c00208{bottom:509.133353pt;}
.ye_c00208{bottom:526.733353pt;}
.yd_c00208{bottom:544.000020pt;}
.yc_c00208{bottom:561.000020pt;}
.yb_c00208{bottom:578.600020pt;}
.ya_c00208{bottom:595.533353pt;}
.y9_c00208{bottom:613.133353pt;}
.y8_c00208{bottom:630.066686pt;}
.y7_c00208{bottom:647.666686pt;}
.y6_c00208{bottom:664.666686pt;}
.y5_c00208{bottom:682.266686pt;}
.y4_c00208{bottom:699.200020pt;}
.y3_c00208{bottom:716.200020pt;}
.y2_c00208{bottom:733.800020pt;}
.y1_c00208{bottom:751.066686pt;}
.y14_c00208{bottom:788.200020pt;}
.h3_c00208{height:44.492188pt;}
.h2_c00208{height:52.343750pt;}
.h1_c00208{height:851.333333pt;}
.h0_c00208{height:851.533333pt;}
.w1_c00208{width:572.000000pt;}
.w0_c00208{width:572.133333pt;}
.x0_c00208{left:0.000000pt;}
.x2_c00208{left:80.333333pt;}
.x1_c00208{left:81.266667pt;}
.x3_c00208{left:85.466667pt;}
.x4_c00208{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c8b86380c7ca1da3cb97c27d.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00209;src:url('chunks/assets/font_77353c0f92036482487f92fc.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.ls2_c00209{letter-spacing:0.000000px;}
.ls0_c00209{letter-spacing:13.800000px;}
.ls1_c00209{letter-spacing:17.250000px;}
.sc__c00209{text-shadow:none;}
.sc0_c00209{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00209{-webkit-text-stroke:0px transparent;}
.sc0_c00209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00209{word-spacing:-15.000000px;}
.ws1_c00209{word-spacing:-12.750000px;}
.ws2_c00209{word-spacing:0.000000px;}
._b_c00209{margin-left:-12.026820px;}
._a_c00209{margin-left:-10.773180px;}
._8_c00209{margin-left:-7.287225px;}
._2_c00209{margin-left:-5.598117px;}
._14_c00209{margin-left:-3.594396px;}
._13_c00209{margin-left:-2.387955px;}
._4_c00209{margin-left:-1.350021px;}
._0_c00209{width:1.251030px;}
._1_c00209{width:2.687955px;}
._9_c00209{width:4.212045px;}
._3_c00209{width:6.063033px;}
._c_c00209{width:7.301745px;}
._d_c00209{width:8.474379px;}
._7_c00209{width:9.668205px;}
._5_c00209{width:11.520000px;}
._6_c00209{width:12.807360px;}
._11_c00209{width:13.811325px;}
._12_c00209{width:16.046910px;}
._10_c00209{width:17.091375px;}
._e_c00209{width:18.902760px;}
._f_c00209{width:20.532075px;}
.fc2_c00209{color:transparent;}
.fc1_c00209{color:rgb(0,0,0);}
.fc0_c00209{color:rgb(35,31,32);}
.fs0_c00209{font-size:51.000000px;}
.fs1_c00209{font-size:60.000000px;}
.y0_c00209{bottom:0.000000px;}
.y26_c00209{bottom:64.425022px;}
.y25_c00209{bottom:110.175022px;}
.y24_c00209{bottom:125.625022px;}
.y23_c00209{bottom:141.150022px;}
.y22_c00209{bottom:155.925022px;}
.y21_c00209{bottom:196.200022px;}
.y20_c00209{bottom:215.325022px;}
.y1f_c00209{bottom:234.750022px;}
.y1e_c00209{bottom:254.550022px;}
.y1d_c00209{bottom:273.600022px;}
.y1c_c00209{bottom:293.400022px;}
.y1b_c00209{bottom:312.525022px;}
.y1a_c00209{bottom:331.950022px;}
.y19_c00209{bottom:351.750022px;}
.y18_c00209{bottom:371.175022px;}
.y17_c00209{bottom:390.225022px;}
.y16_c00209{bottom:410.025022px;}
.y15_c00209{bottom:429.525022px;}
.y14_c00209{bottom:448.575022px;}
.y13_c00209{bottom:468.375022px;}
.y12_c00209{bottom:487.800022px;}
.y11_c00209{bottom:506.550022px;}
.y10_c00209{bottom:526.350022px;}
.yf_c00209{bottom:545.700022px;}
.ye_c00209{bottom:565.200022px;}
.yd_c00209{bottom:584.700022px;}
.yc_c00209{bottom:604.125022px;}
.yb_c00209{bottom:623.550022px;}
.ya_c00209{bottom:642.600022px;}
.y9_c00209{bottom:662.400022px;}
.y8_c00209{bottom:681.825022px;}
.y7_c00209{bottom:700.950022px;}
.y6_c00209{bottom:736.200022px;}
.y5_c00209{bottom:786.600022px;}
.y4_c00209{bottom:806.025022px;}
.y3_c00209{bottom:825.150022px;}
.y2_c00209{bottom:844.950022px;}
.y1_c00209{bottom:886.725022px;}
.h2_c00209{height:50.028809px;}
.h4_c00209{height:50.053711px;}
.h3_c00209{height:58.886719px;}
.h1_c00209{height:957.750000px;}
.h0_c00209{height:957.975000px;}
.w0_c00209{width:641.850030px;}
.w1_c00209{width:642.000000px;}
.x0_c00209{left:0.000000px;}
.x2_c00209{left:81.375000px;}
.x4_c00209{left:86.025000px;}
.x3_c00209{left:96.825000px;}
.x5_c00209{left:114.150000px;}
.x1_c00209{left:260.625000px;}
.x6_c00209{left:531.375000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls2_c00209{letter-spacing:0.000000pt;}
.ls0_c00209{letter-spacing:12.266667pt;}
.ls1_c00209{letter-spacing:15.333333pt;}
.ws0_c00209{word-spacing:-13.333333pt;}
.ws1_c00209{word-spacing:-11.333333pt;}
.ws2_c00209{word-spacing:0.000000pt;}
._b_c00209{margin-left:-10.690507pt;}
._a_c00209{margin-left:-9.576160pt;}
._8_c00209{margin-left:-6.477533pt;}
._2_c00209{margin-left:-4.976104pt;}
._14_c00209{margin-left:-3.195019pt;}
._13_c00209{margin-left:-2.122627pt;}
._4_c00209{margin-left:-1.200019pt;}
._0_c00209{width:1.112027pt;}
._1_c00209{width:2.389293pt;}
._9_c00209{width:3.744040pt;}
._3_c00209{width:5.389363pt;}
._c_c00209{width:6.490440pt;}
._d_c00209{width:7.532781pt;}
._7_c00209{width:8.593960pt;}
._5_c00209{width:10.240000pt;}
._6_c00209{width:11.384320pt;}
._11_c00209{width:12.276733pt;}
._12_c00209{width:14.263920pt;}
._10_c00209{width:15.192333pt;}
._e_c00209{width:16.802453pt;}
._f_c00209{width:18.250733pt;}
.fs0_c00209{font-size:45.333333pt;}
.fs1_c00209{font-size:53.333333pt;}
.y0_c00209{bottom:0.000000pt;}
.y26_c00209{bottom:57.266686pt;}
.y25_c00209{bottom:97.933353pt;}
.y24_c00209{bottom:111.666686pt;}
.y23_c00209{bottom:125.466686pt;}
.y22_c00209{bottom:138.600020pt;}
.y21_c00209{bottom:174.400020pt;}
.y20_c00209{bottom:191.400020pt;}
.y1f_c00209{bottom:208.666686pt;}
.y1e_c00209{bottom:226.266686pt;}
.y1d_c00209{bottom:243.200020pt;}
.y1c_c00209{bottom:260.800020pt;}
.y1b_c00209{bottom:277.800020pt;}
.y1a_c00209{bottom:295.066686pt;}
.y19_c00209{bottom:312.666686pt;}
.y18_c00209{bottom:329.933353pt;}
.y17_c00209{bottom:346.866686pt;}
.y16_c00209{bottom:364.466686pt;}
.y15_c00209{bottom:381.800020pt;}
.y14_c00209{bottom:398.733353pt;}
.y13_c00209{bottom:416.333353pt;}
.y12_c00209{bottom:433.600020pt;}
.y11_c00209{bottom:450.266686pt;}
.y10_c00209{bottom:467.866686pt;}
.yf_c00209{bottom:485.066686pt;}
.ye_c00209{bottom:502.400020pt;}
.yd_c00209{bottom:519.733353pt;}
.yc_c00209{bottom:537.000020pt;}
.yb_c00209{bottom:554.266686pt;}
.ya_c00209{bottom:571.200020pt;}
.y9_c00209{bottom:588.800020pt;}
.y8_c00209{bottom:606.066686pt;}
.y7_c00209{bottom:623.066686pt;}
.y6_c00209{bottom:654.400020pt;}
.y5_c00209{bottom:699.200020pt;}
.y4_c00209{bottom:716.466686pt;}
.y3_c00209{bottom:733.466686pt;}
.y2_c00209{bottom:751.066686pt;}
.y1_c00209{bottom:788.200020pt;}
.h2_c00209{height:44.470052pt;}
.h4_c00209{height:44.492188pt;}
.h3_c00209{height:52.343750pt;}
.h1_c00209{height:851.333333pt;}
.h0_c00209{height:851.533333pt;}
.w0_c00209{width:570.533360pt;}
.w1_c00209{width:570.666667pt;}
.x0_c00209{left:0.000000pt;}
.x2_c00209{left:72.333333pt;}
.x4_c00209{left:76.466667pt;}
.x3_c00209{left:86.066667pt;}
.x5_c00209{left:101.466667pt;}
.x1_c00209{left:231.666667pt;}
.x6_c00209{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_73499b49d0205caf56dfdeba.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00210;src:url('chunks/assets/font_15bb0887b4b1ef6169812c95.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00210{letter-spacing:0.000000px;}
.ls0_c00210{letter-spacing:12.300000px;}
.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:-15.000000px;}
.ws1_c00210{word-spacing:-12.750000px;}
.ws2_c00210{word-spacing:0.000000px;}
._11_c00210{margin-left:-15.300000px;}
._5_c00210{margin-left:-11.040000px;}
._b_c00210{margin-left:-9.660000px;}
._2_c00210{margin-left:-7.200000px;}
._a_c00210{margin-left:-5.220000px;}
._6_c00210{margin-left:-3.900000px;}
._10_c00210{margin-left:-2.700000px;}
._3_c00210{margin-left:-1.440000px;}
._1_c00210{width:1.440000px;}
._7_c00210{width:2.520000px;}
._c_c00210{width:4.200000px;}
._9_c00210{width:5.280000px;}
._8_c00210{width:6.780000px;}
._0_c00210{width:8.820000px;}
._4_c00210{width:10.560000px;}
._d_c00210{width:12.600000px;}
._e_c00210{width:13.620000px;}
._f_c00210{width:16.200000px;}
._13_c00210{width:22.950000px;}
._12_c00210{width:24.450021px;}
.fc2_c00210{color:transparent;}
.fc1_c00210{color:rgb(0,0,0);}
.fc0_c00210{color:rgb(35,31,32);}
.fs1_c00210{font-size:51.000000px;}
.fs0_c00210{font-size:60.000000px;}
.y0_c00210{bottom:0.000000px;}
.y27_c00210{bottom:64.425022px;}
.y26_c00210{bottom:110.175022px;}
.y25_c00210{bottom:125.625022px;}
.y24_c00210{bottom:140.775022px;}
.y23_c00210{bottom:155.925022px;}
.y22_c00210{bottom:171.750022px;}
.y21_c00210{bottom:186.825022px;}
.y20_c00210{bottom:201.975022px;}
.y1f_c00210{bottom:217.125022px;}
.y1d_c00210{bottom:257.325022px;}
.y1c_c00210{bottom:276.825022px;}
.y1b_c00210{bottom:296.325022px;}
.y1a_c00210{bottom:315.375022px;}
.y19_c00210{bottom:335.175022px;}
.y18_c00210{bottom:354.600022px;}
.y17_c00210{bottom:374.025022px;}
.y16_c00210{bottom:393.150022px;}
.y15_c00210{bottom:412.575022px;}
.y14_c00210{bottom:431.625022px;}
.y13_c00210{bottom:451.125022px;}
.y12_c00210{bottom:470.925022px;}
.y11_c00210{bottom:490.350022px;}
.y10_c00210{bottom:509.400022px;}
.yf_c00210{bottom:529.200022px;}
.ye_c00210{bottom:548.325022px;}
.yd_c00210{bottom:568.125022px;}
.yc_c00210{bottom:587.550022px;}
.yb_c00210{bottom:606.600022px;}
.ya_c00210{bottom:626.025022px;}
.y9_c00210{bottom:645.525022px;}
.y8_c00210{bottom:664.575022px;}
.y7_c00210{bottom:684.375022px;}
.y6_c00210{bottom:703.800022px;}
.y5_c00210{bottom:723.225022px;}
.y4_c00210{bottom:742.725022px;}
.y3_c00210{bottom:776.925022px;}
.y2_c00210{bottom:825.150022px;}
.y1_c00210{bottom:844.575022px;}
.y1e_c00210{bottom:886.725022px;}
.h3_c00210{height:50.053711px;}
.h2_c00210{height:58.886719px;}
.h1_c00210{height:957.750000px;}
.h0_c00210{height:957.975000px;}
.w1_c00210{width:643.500000px;}
.w0_c00210{width:643.650000px;}
.x0_c00210{left:0.000000px;}
.x3_c00210{left:90.375000px;}
.x1_c00210{left:91.425000px;}
.x4_c00210{left:96.150000px;}
.x2_c00210{left:107.250000px;}
.x5_c00210{left:123.825000px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls1_c00210{letter-spacing:0.000000pt;}
.ls0_c00210{letter-spacing:10.933333pt;}
.ws0_c00210{word-spacing:-13.333333pt;}
.ws1_c00210{word-spacing:-11.333333pt;}
.ws2_c00210{word-spacing:0.000000pt;}
._11_c00210{margin-left:-13.600000pt;}
._5_c00210{margin-left:-9.813333pt;}
._b_c00210{margin-left:-8.586667pt;}
._2_c00210{margin-left:-6.400000pt;}
._a_c00210{margin-left:-4.640000pt;}
._6_c00210{margin-left:-3.466667pt;}
._10_c00210{margin-left:-2.400000pt;}
._3_c00210{margin-left:-1.280000pt;}
._1_c00210{width:1.280000pt;}
._7_c00210{width:2.240000pt;}
._c_c00210{width:3.733333pt;}
._9_c00210{width:4.693333pt;}
._8_c00210{width:6.026667pt;}
._0_c00210{width:7.840000pt;}
._4_c00210{width:9.386667pt;}
._d_c00210{width:11.200000pt;}
._e_c00210{width:12.106667pt;}
._f_c00210{width:14.400000pt;}
._13_c00210{width:20.400000pt;}
._12_c00210{width:21.733352pt;}
.fs1_c00210{font-size:45.333333pt;}
.fs0_c00210{font-size:53.333333pt;}
.y0_c00210{bottom:0.000000pt;}
.y27_c00210{bottom:57.266686pt;}
.y26_c00210{bottom:97.933353pt;}
.y25_c00210{bottom:111.666686pt;}
.y24_c00210{bottom:125.133353pt;}
.y23_c00210{bottom:138.600020pt;}
.y22_c00210{bottom:152.666686pt;}
.y21_c00210{bottom:166.066686pt;}
.y20_c00210{bottom:179.533353pt;}
.y1f_c00210{bottom:193.000020pt;}
.y1d_c00210{bottom:228.733353pt;}
.y1c_c00210{bottom:246.066686pt;}
.y1b_c00210{bottom:263.400020pt;}
.y1a_c00210{bottom:280.333353pt;}
.y19_c00210{bottom:297.933353pt;}
.y18_c00210{bottom:315.200020pt;}
.y17_c00210{bottom:332.466686pt;}
.y16_c00210{bottom:349.466686pt;}
.y15_c00210{bottom:366.733353pt;}
.y14_c00210{bottom:383.666686pt;}
.y13_c00210{bottom:401.000020pt;}
.y12_c00210{bottom:418.600020pt;}
.y11_c00210{bottom:435.866686pt;}
.y10_c00210{bottom:452.800020pt;}
.yf_c00210{bottom:470.400020pt;}
.ye_c00210{bottom:487.400020pt;}
.yd_c00210{bottom:505.000020pt;}
.yc_c00210{bottom:522.266686pt;}
.yb_c00210{bottom:539.200020pt;}
.ya_c00210{bottom:556.466686pt;}
.y9_c00210{bottom:573.800020pt;}
.y8_c00210{bottom:590.733353pt;}
.y7_c00210{bottom:608.333353pt;}
.y6_c00210{bottom:625.600020pt;}
.y5_c00210{bottom:642.866686pt;}
.y4_c00210{bottom:660.200020pt;}
.y3_c00210{bottom:690.600020pt;}
.y2_c00210{bottom:733.466686pt;}
.y1_c00210{bottom:750.733353pt;}
.y1e_c00210{bottom:788.200020pt;}
.h3_c00210{height:44.492188pt;}
.h2_c00210{height:52.343750pt;}
.h1_c00210{height:851.333333pt;}
.h0_c00210{height:851.533333pt;}
.w1_c00210{width:572.000000pt;}
.w0_c00210{width:572.133333pt;}
.x0_c00210{left:0.000000pt;}
.x3_c00210{left:80.333333pt;}
.x1_c00210{left:81.266667pt;}
.x4_c00210{left:85.466667pt;}
.x2_c00210{left:95.333333pt;}
.x5_c00210{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7209432edfadea230cac4d17.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00211;src:url('chunks/assets/font_d3bf8e53d4a75604ddcb16c6.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
}
.ws1_c00211{word-spacing:-15.000000px;}
.ws0_c00211{word-spacing:-12.750000px;}
.ws2_c00211{word-spacing:0.000000px;}
._15_c00211{margin-left:-15.305205px;}
._16_c00211{margin-left:-13.214985px;}
._14_c00211{margin-left:-10.629000px;}
._a_c00211{margin-left:-8.985480px;}
._c_c00211{margin-left:-6.900000px;}
._2_c00211{margin-left:-5.598117px;}
._18_c00211{margin-left:-3.681243px;}
._6_c00211{margin-left:-2.369937px;}
._4_c00211{margin-left:-1.350021px;}
._0_c00211{width:1.251030px;}
._1_c00211{width:2.687955px;}
._7_c00211{width:4.215195px;}
._3_c00211{width:6.063033px;}
._5_c00211{width:7.217940px;}
._9_c00211{width:8.642802px;}
._8_c00211{width:10.133820px;}
._e_c00211{width:11.478543px;}
._d_c00211{width:12.551652px;}
._b_c00211{width:13.988970px;}
._10_c00211{width:16.314528px;}
._f_c00211{width:17.348970px;}
._11_c00211{width:18.860595px;}
._17_c00211{width:19.869678px;}
._12_c00211{width:21.252045px;}
._13_c00211{width:23.048970px;}
._19_c00211{width:25.469958px;}
._1a_c00211{width:26.670009px;}
._1b_c00211{width:29.039895px;}
.fc1_c00211{color:transparent;}
.fc0_c00211{color:rgb(35,31,32);}
.fs0_c00211{font-size:51.000000px;}
.fs1_c00211{font-size:60.000000px;}
.y0_c00211{bottom:0.000000px;}
.y29_c00211{bottom:64.800022px;}
.y28_c00211{bottom:110.175022px;}
.y27_c00211{bottom:125.325022px;}
.y26_c00211{bottom:140.775022px;}
.y25_c00211{bottom:155.925022px;}
.y24_c00211{bottom:171.750022px;}
.y23_c00211{bottom:186.525022px;}
.y22_c00211{bottom:201.975022px;}
.y21_c00211{bottom:243.075022px;}
.y20_c00211{bottom:262.500022px;}
.y1f_c00211{bottom:281.925022px;}
.y1e_c00211{bottom:301.350022px;}
.y1d_c00211{bottom:320.400022px;}
.y1c_c00211{bottom:339.525022px;}
.y1b_c00211{bottom:359.325022px;}
.y1a_c00211{bottom:378.750022px;}
.y19_c00211{bottom:398.175022px;}
.y18_c00211{bottom:417.600022px;}
.y17_c00211{bottom:437.025022px;}
.y16_c00211{bottom:456.150022px;}
.y15_c00211{bottom:475.950022px;}
.y14_c00211{bottom:495.375022px;}
.y13_c00211{bottom:514.800022px;}
.y12_c00211{bottom:533.925022px;}
.y11_c00211{bottom:553.725022px;}
.y10_c00211{bottom:573.150022px;}
.yf_c00211{bottom:592.575022px;}
.ye_c00211{bottom:611.625022px;}
.yd_c00211{bottom:631.500022px;}
.yc_c00211{bottom:650.925022px;}
.yb_c00211{bottom:670.350022px;}
.ya_c00211{bottom:689.775022px;}
.y9_c00211{bottom:709.200022px;}
.y8_c00211{bottom:728.625022px;}
.y7_c00211{bottom:747.750022px;}
.y6_c00211{bottom:767.175022px;}
.y5_c00211{bottom:786.600022px;}
.y4_c00211{bottom:805.725022px;}
.y3_c00211{bottom:825.525022px;}
.y2_c00211{bottom:844.950022px;}
.y1_c00211{bottom:886.725022px;}
.h2_c00211{height:50.028809px;}
.h4_c00211{height:50.053711px;}
.h3_c00211{height:58.886719px;}
.h1_c00211{height:957.750000px;}
.h0_c00211{height:957.975000px;}
.w0_c00211{width:641.850030px;}
.w1_c00211{width:642.000000px;}
.x0_c00211{left:0.000000px;}
.x2_c00211{left:80.250000px;}
.x3_c00211{left:81.375000px;}
.x5_c00211{left:86.025000px;}
.x4_c00211{left:96.825000px;}
.x6_c00211{left:113.775000px;}
.x1_c00211{left:260.625000px;}
.x7_c00211{left:531.375000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls0_c00211{letter-spacing:0.000000pt;}
.ws1_c00211{word-spacing:-13.333333pt;}
.ws0_c00211{word-spacing:-11.333333pt;}
.ws2_c00211{word-spacing:0.000000pt;}
._15_c00211{margin-left:-13.604627pt;}
._16_c00211{margin-left:-11.746653pt;}
._14_c00211{margin-left:-9.448000pt;}
._a_c00211{margin-left:-7.987093pt;}
._c_c00211{margin-left:-6.133333pt;}
._2_c00211{margin-left:-4.976104pt;}
._18_c00211{margin-left:-3.272216pt;}
._6_c00211{margin-left:-2.106611pt;}
._4_c00211{margin-left:-1.200019pt;}
._0_c00211{width:1.112027pt;}
._1_c00211{width:2.389293pt;}
._7_c00211{width:3.746840pt;}
._3_c00211{width:5.389363pt;}
._5_c00211{width:6.415947pt;}
._9_c00211{width:7.682491pt;}
._8_c00211{width:9.007840pt;}
._e_c00211{width:10.203149pt;}
._d_c00211{width:11.157024pt;}
._b_c00211{width:12.434640pt;}
._10_c00211{width:14.501803pt;}
._f_c00211{width:15.421307pt;}
._11_c00211{width:16.764973pt;}
._17_c00211{width:17.661936pt;}
._12_c00211{width:18.890707pt;}
._13_c00211{width:20.487973pt;}
._19_c00211{width:22.639963pt;}
._1a_c00211{width:23.706675pt;}
._1b_c00211{width:25.813240pt;}
.fs0_c00211{font-size:45.333333pt;}
.fs1_c00211{font-size:53.333333pt;}
.y0_c00211{bottom:0.000000pt;}
.y29_c00211{bottom:57.600020pt;}
.y28_c00211{bottom:97.933353pt;}
.y27_c00211{bottom:111.400020pt;}
.y26_c00211{bottom:125.133353pt;}
.y25_c00211{bottom:138.600020pt;}
.y24_c00211{bottom:152.666686pt;}
.y23_c00211{bottom:165.800020pt;}
.y22_c00211{bottom:179.533353pt;}
.y21_c00211{bottom:216.066686pt;}
.y20_c00211{bottom:233.333353pt;}
.y1f_c00211{bottom:250.600020pt;}
.y1e_c00211{bottom:267.866686pt;}
.y1d_c00211{bottom:284.800020pt;}
.y1c_c00211{bottom:301.800020pt;}
.y1b_c00211{bottom:319.400020pt;}
.y1a_c00211{bottom:336.666686pt;}
.y19_c00211{bottom:353.933353pt;}
.y18_c00211{bottom:371.200020pt;}
.y17_c00211{bottom:388.466686pt;}
.y16_c00211{bottom:405.466686pt;}
.y15_c00211{bottom:423.066686pt;}
.y14_c00211{bottom:440.333353pt;}
.y13_c00211{bottom:457.600020pt;}
.y12_c00211{bottom:474.600020pt;}
.y11_c00211{bottom:492.200020pt;}
.y10_c00211{bottom:509.466686pt;}
.yf_c00211{bottom:526.733353pt;}
.ye_c00211{bottom:543.666686pt;}
.yd_c00211{bottom:561.333353pt;}
.yc_c00211{bottom:578.600020pt;}
.yb_c00211{bottom:595.866686pt;}
.ya_c00211{bottom:613.133353pt;}
.y9_c00211{bottom:630.400020pt;}
.y8_c00211{bottom:647.666686pt;}
.y7_c00211{bottom:664.666686pt;}
.y6_c00211{bottom:681.933353pt;}
.y5_c00211{bottom:699.200020pt;}
.y4_c00211{bottom:716.200020pt;}
.y3_c00211{bottom:733.800020pt;}
.y2_c00211{bottom:751.066686pt;}
.y1_c00211{bottom:788.200020pt;}
.h2_c00211{height:44.470052pt;}
.h4_c00211{height:44.492188pt;}
.h3_c00211{height:52.343750pt;}
.h1_c00211{height:851.333333pt;}
.h0_c00211{height:851.533333pt;}
.w0_c00211{width:570.533360pt;}
.w1_c00211{width:570.666667pt;}
.x0_c00211{left:0.000000pt;}
.x2_c00211{left:71.333333pt;}
.x3_c00211{left:72.333333pt;}
.x5_c00211{left:76.466667pt;}
.x4_c00211{left:86.066667pt;}
.x6_c00211{left:101.133333pt;}
.x1_c00211{left:231.666667pt;}
.x7_c00211{left:472.333333pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00212 {
      width: 900px;
      min-height: 280px;
      margin: 16px auto;
      background: #fff;
      border: 1px solid #e5e7eb;
      box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
      position: relative;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    .scieee-page-failed_c00212 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00212 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00212 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5895964f65da63a6f3bd97ba.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00213;src:url('chunks/assets/font_8709c2d2a3fd15de0c7f149b.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00213{letter-spacing:0.000000px;}
.ls0_c00213{letter-spacing:15.300000px;}
.sc__c00213{text-shadow:none;}
.sc0_c00213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00213{-webkit-text-stroke:0px transparent;}
.sc0_c00213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00213{word-spacing:-25.500000px;}
.ws0_c00213{word-spacing:-16.500000px;}
.ws2_c00213{word-spacing:-15.000000px;}
.ws3_c00213{word-spacing:0.000000px;}
._e_c00213{margin-left:-10.302726px;}
._d_c00213{margin-left:-9.197400px;}
._11_c00213{margin-left:-5.385978px;}
._12_c00213{margin-left:-4.109454px;}
._0_c00213{margin-left:-2.951982px;}
._7_c00213{margin-left:-1.620000px;}
._1_c00213{width:1.403976px;}
._2_c00213{width:2.502030px;}
._3_c00213{width:3.857910px;}
._4_c00213{width:5.490468px;}
._6_c00213{width:7.398438px;}
._5_c00213{width:8.801982px;}
._8_c00213{width:10.528086px;}
._14_c00213{width:11.678229px;}
._a_c00213{width:12.756024px;}
._10_c00213{width:15.237072px;}
._9_c00213{width:16.800480px;}
._b_c00213{width:19.584336px;}
._c_c00213{width:21.840000px;}
._f_c00213{width:23.490000px;}
._13_c00213{width:24.990021px;}
.fc2_c00213{color:transparent;}
.fc1_c00213{color:rgb(0,0,0);}
.fc0_c00213{color:rgb(35,31,32);}
.fs2_c00213{font-size:51.000000px;}
.fs1_c00213{font-size:60.000000px;}
.fs0_c00213{font-size:66.000000px;}
.y0_c00213{bottom:0.000000px;}
.y25_c00213{bottom:64.425022px;}
.y24_c00213{bottom:110.550022px;}
.y23_c00213{bottom:125.625022px;}
.y22_c00213{bottom:140.775022px;}
.y21_c00213{bottom:155.925022px;}
.y20_c00213{bottom:171.375022px;}
.y1f_c00213{bottom:186.525022px;}
.y1e_c00213{bottom:202.350022px;}
.y1d_c00213{bottom:217.125022px;}
.y1c_c00213{bottom:232.575022px;}
.y1b_c00213{bottom:247.725022px;}
.y1a_c00213{bottom:288.075022px;}
.y19_c00213{bottom:307.125022px;}
.y18_c00213{bottom:326.175022px;}
.y17_c00213{bottom:345.225022px;}
.y16_c00213{bottom:364.725022px;}
.y15_c00213{bottom:384.150022px;}
.y14_c00213{bottom:403.200022px;}
.y13_c00213{bottom:422.625022px;}
.y12_c00213{bottom:441.750022px;}
.y11_c00213{bottom:460.425022px;}
.y10_c00213{bottom:480.225022px;}
.yf_c00213{bottom:499.350022px;}
.ye_c00213{bottom:518.025022px;}
.yd_c00213{bottom:537.825022px;}
.yc_c00213{bottom:556.575022px;}
.yb_c00213{bottom:576.000022px;}
.ya_c00213{bottom:595.425022px;}
.y9_c00213{bottom:614.175022px;}
.y8_c00213{bottom:633.600022px;}
.y7_c00213{bottom:652.725022px;}
.y6_c00213{bottom:672.525022px;}
.y5_c00213{bottom:691.575022px;}
.y4_c00213{bottom:710.625022px;}
.y3_c00213{bottom:729.750022px;}
.y2_c00213{bottom:820.125022px;}
.y1_c00213{bottom:842.775022px;}
.h4_c00213{height:50.053711px;}
.h3_c00213{height:58.886719px;}
.h2_c00213{height:64.775391px;}
.h1_c00213{height:957.750000px;}
.h0_c00213{height:957.975000px;}
.w0_c00213{width:641.850030px;}
.w1_c00213{width:642.000000px;}
.x0_c00213{left:0.000000px;}
.x1_c00213{left:81.750000px;}
.x4_c00213{left:86.025000px;}
.x3_c00213{left:97.200000px;}
.x2_c00213{left:103.350000px;}
.x5_c00213{left:114.150000px;}
.x6_c00213{left:531.375000px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls1_c00213{letter-spacing:0.000000pt;}
.ls0_c00213{letter-spacing:13.600000pt;}
.ws1_c00213{word-spacing:-22.666667pt;}
.ws0_c00213{word-spacing:-14.666667pt;}
.ws2_c00213{word-spacing:-13.333333pt;}
.ws3_c00213{word-spacing:0.000000pt;}
._e_c00213{margin-left:-9.157979pt;}
._d_c00213{margin-left:-8.175467pt;}
._11_c00213{margin-left:-4.787536pt;}
._12_c00213{margin-left:-3.652848pt;}
._0_c00213{margin-left:-2.623984pt;}
._7_c00213{margin-left:-1.440000pt;}
._1_c00213{width:1.247979pt;}
._2_c00213{width:2.224027pt;}
._3_c00213{width:3.429253pt;}
._4_c00213{width:4.880416pt;}
._6_c00213{width:6.576389pt;}
._5_c00213{width:7.823984pt;}
._8_c00213{width:9.358299pt;}
._14_c00213{width:10.380648pt;}
._a_c00213{width:11.338688pt;}
._10_c00213{width:13.544064pt;}
._9_c00213{width:14.933760pt;}
._b_c00213{width:17.408299pt;}
._c_c00213{width:19.413333pt;}
._f_c00213{width:20.880000pt;}
._13_c00213{width:22.213352pt;}
.fs2_c00213{font-size:45.333333pt;}
.fs1_c00213{font-size:53.333333pt;}
.fs0_c00213{font-size:58.666667pt;}
.y0_c00213{bottom:0.000000pt;}
.y25_c00213{bottom:57.266686pt;}
.y24_c00213{bottom:98.266686pt;}
.y23_c00213{bottom:111.666686pt;}
.y22_c00213{bottom:125.133353pt;}
.y21_c00213{bottom:138.600020pt;}
.y20_c00213{bottom:152.333353pt;}
.y1f_c00213{bottom:165.800020pt;}
.y1e_c00213{bottom:179.866686pt;}
.y1d_c00213{bottom:193.000020pt;}
.y1c_c00213{bottom:206.733353pt;}
.y1b_c00213{bottom:220.200020pt;}
.y1a_c00213{bottom:256.066686pt;}
.y19_c00213{bottom:273.000020pt;}
.y18_c00213{bottom:289.933353pt;}
.y17_c00213{bottom:306.866686pt;}
.y16_c00213{bottom:324.200020pt;}
.y15_c00213{bottom:341.466686pt;}
.y14_c00213{bottom:358.400020pt;}
.y13_c00213{bottom:375.666686pt;}
.y12_c00213{bottom:392.666686pt;}
.y11_c00213{bottom:409.266686pt;}
.y10_c00213{bottom:426.866686pt;}
.yf_c00213{bottom:443.866686pt;}
.ye_c00213{bottom:460.466686pt;}
.yd_c00213{bottom:478.066686pt;}
.yc_c00213{bottom:494.733353pt;}
.yb_c00213{bottom:512.000020pt;}
.ya_c00213{bottom:529.266686pt;}
.y9_c00213{bottom:545.933353pt;}
.y8_c00213{bottom:563.200020pt;}
.y7_c00213{bottom:580.200020pt;}
.y6_c00213{bottom:597.800020pt;}
.y5_c00213{bottom:614.733353pt;}
.y4_c00213{bottom:631.666686pt;}
.y3_c00213{bottom:648.666686pt;}
.y2_c00213{bottom:729.000020pt;}
.y1_c00213{bottom:749.133353pt;}
.h4_c00213{height:44.492188pt;}
.h3_c00213{height:52.343750pt;}
.h2_c00213{height:57.578125pt;}
.h1_c00213{height:851.333333pt;}
.h0_c00213{height:851.533333pt;}
.w0_c00213{width:570.533360pt;}
.w1_c00213{width:570.666667pt;}
.x0_c00213{left:0.000000pt;}
.x1_c00213{left:72.666667pt;}
.x4_c00213{left:76.466667pt;}
.x3_c00213{left:86.400000pt;}
.x2_c00213{left:91.866667pt;}
.x5_c00213{left:101.466667pt;}
.x6_c00213{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9198f9c24093c8e7b160445b.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00214;src:url('chunks/assets/font_6b05d326c99d47950b642f46.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00214{letter-spacing:0.000000px;}
.sc__c00214{text-shadow:none;}
.sc0_c00214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00214{-webkit-text-stroke:0px transparent;}
.sc0_c00214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00214{word-spacing:-15.000000px;}
.ws1_c00214{word-spacing:0.000000px;}
._12_c00214{margin-left:-11.700000px;}
._13_c00214{margin-left:-7.020000px;}
._11_c00214{margin-left:-5.220000px;}
._10_c00214{margin-left:-3.438039px;}
._c_c00214{margin-left:-2.220000px;}
._8_c00214{margin-left:-1.080000px;}
._1_c00214{width:1.260000px;}
._0_c00214{width:3.000000px;}
._6_c00214{width:4.440000px;}
._9_c00214{width:5.820000px;}
._f_c00214{width:7.260000px;}
._7_c00214{width:8.460000px;}
._e_c00214{width:9.600000px;}
._5_c00214{width:10.620000px;}
._d_c00214{width:11.700000px;}
._4_c00214{width:13.560000px;}
._3_c00214{width:16.260000px;}
._2_c00214{width:17.700000px;}
._b_c00214{width:19.080000px;}
._a_c00214{width:20.640000px;}
._14_c00214{width:21.780000px;}
.fc1_c00214{color:transparent;}
.fc0_c00214{color:rgb(35,31,32);}
.fs1_c00214{font-size:51.000000px;}
.fs0_c00214{font-size:60.000000px;}
.y0_c00214{bottom:0.000000px;}
.y23_c00214{bottom:64.800022px;}
.y22_c00214{bottom:111.975022px;}
.y21_c00214{bottom:131.025022px;}
.y20_c00214{bottom:150.525022px;}
.y1f_c00214{bottom:186.825022px;}
.y1e_c00214{bottom:240.150022px;}
.y1d_c00214{bottom:259.575022px;}
.y1c_c00214{bottom:278.625022px;}
.y1b_c00214{bottom:298.125022px;}
.y1a_c00214{bottom:317.550022px;}
.y19_c00214{bottom:336.600022px;}
.y18_c00214{bottom:356.025022px;}
.y17_c00214{bottom:375.525022px;}
.y16_c00214{bottom:394.950022px;}
.y15_c00214{bottom:414.750022px;}
.y14_c00214{bottom:434.175022px;}
.y13_c00214{bottom:453.225022px;}
.y12_c00214{bottom:473.025022px;}
.y11_c00214{bottom:492.150022px;}
.y10_c00214{bottom:532.425022px;}
.yf_c00214{bottom:551.175022px;}
.yd_c00214{bottom:612.000022px;}
.yc_c00214{bottom:631.500022px;}
.yb_c00214{bottom:650.925022px;}
.ya_c00214{bottom:670.350022px;}
.y9_c00214{bottom:689.775022px;}
.y8_c00214{bottom:708.825022px;}
.y7_c00214{bottom:728.625022px;}
.y6_c00214{bottom:747.750022px;}
.y5_c00214{bottom:767.175022px;}
.y4_c00214{bottom:786.225022px;}
.y3_c00214{bottom:806.025022px;}
.y2_c00214{bottom:825.525022px;}
.y1_c00214{bottom:844.950022px;}
.ye_c00214{bottom:886.725022px;}
.h3_c00214{height:50.028809px;}
.h2_c00214{height:58.886719px;}
.h1_c00214{height:957.750000px;}
.h0_c00214{height:957.975000px;}
.w1_c00214{width:643.500000px;}
.w0_c00214{width:643.650000px;}
.x0_c00214{left:0.000000px;}
.x1_c00214{left:91.050000px;}
.x2_c00214{left:104.025000px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls0_c00214{letter-spacing:0.000000pt;}
.ws0_c00214{word-spacing:-13.333333pt;}
.ws1_c00214{word-spacing:0.000000pt;}
._12_c00214{margin-left:-10.400000pt;}
._13_c00214{margin-left:-6.240000pt;}
._11_c00214{margin-left:-4.640000pt;}
._10_c00214{margin-left:-3.056035pt;}
._c_c00214{margin-left:-1.973333pt;}
._8_c00214{margin-left:-0.960000pt;}
._1_c00214{width:1.120000pt;}
._0_c00214{width:2.666667pt;}
._6_c00214{width:3.946667pt;}
._9_c00214{width:5.173333pt;}
._f_c00214{width:6.453333pt;}
._7_c00214{width:7.520000pt;}
._e_c00214{width:8.533333pt;}
._5_c00214{width:9.440000pt;}
._d_c00214{width:10.400000pt;}
._4_c00214{width:12.053333pt;}
._3_c00214{width:14.453333pt;}
._2_c00214{width:15.733333pt;}
._b_c00214{width:16.960000pt;}
._a_c00214{width:18.346667pt;}
._14_c00214{width:19.360000pt;}
.fs1_c00214{font-size:45.333333pt;}
.fs0_c00214{font-size:53.333333pt;}
.y0_c00214{bottom:0.000000pt;}
.y23_c00214{bottom:57.600020pt;}
.y22_c00214{bottom:99.533353pt;}
.y21_c00214{bottom:116.466686pt;}
.y20_c00214{bottom:133.800020pt;}
.y1f_c00214{bottom:166.066686pt;}
.y1e_c00214{bottom:213.466686pt;}
.y1d_c00214{bottom:230.733353pt;}
.y1c_c00214{bottom:247.666686pt;}
.y1b_c00214{bottom:265.000020pt;}
.y1a_c00214{bottom:282.266686pt;}
.y19_c00214{bottom:299.200020pt;}
.y18_c00214{bottom:316.466686pt;}
.y17_c00214{bottom:333.800020pt;}
.y16_c00214{bottom:351.066686pt;}
.y15_c00214{bottom:368.666686pt;}
.y14_c00214{bottom:385.933353pt;}
.y13_c00214{bottom:402.866686pt;}
.y12_c00214{bottom:420.466686pt;}
.y11_c00214{bottom:437.466686pt;}
.y10_c00214{bottom:473.266686pt;}
.yf_c00214{bottom:489.933353pt;}
.yd_c00214{bottom:544.000020pt;}
.yc_c00214{bottom:561.333353pt;}
.yb_c00214{bottom:578.600020pt;}
.ya_c00214{bottom:595.866686pt;}
.y9_c00214{bottom:613.133353pt;}
.y8_c00214{bottom:630.066686pt;}
.y7_c00214{bottom:647.666686pt;}
.y6_c00214{bottom:664.666686pt;}
.y5_c00214{bottom:681.933353pt;}
.y4_c00214{bottom:698.866686pt;}
.y3_c00214{bottom:716.466686pt;}
.y2_c00214{bottom:733.800020pt;}
.y1_c00214{bottom:751.066686pt;}
.ye_c00214{bottom:788.200020pt;}
.h3_c00214{height:44.470052pt;}
.h2_c00214{height:52.343750pt;}
.h1_c00214{height:851.333333pt;}
.h0_c00214{height:851.533333pt;}
.w1_c00214{width:572.000000pt;}
.w0_c00214{width:572.133333pt;}
.x0_c00214{left:0.000000pt;}
.x1_c00214{left:80.933333pt;}
.x2_c00214{left:92.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_89a682374a3609c8f4a02684.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00215;src:url('chunks/assets/font_432309e7004e66283378d97c.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00215{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.ls0_c00215{letter-spacing:0.000000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00215{word-spacing:-15.000000px;}
.ws0_c00215{word-spacing:-12.750000px;}
.ws2_c00215{word-spacing:0.000000px;}
._6_c00215{margin-left:-10.260000px;}
._c_c00215{margin-left:-9.180000px;}
._3_c00215{margin-left:-7.620000px;}
._13_c00215{margin-left:-5.751045px;}
._12_c00215{margin-left:-4.725009px;}
._14_c00215{margin-left:-3.566925px;}
._7_c00215{margin-left:-2.460000px;}
._8_c00215{margin-left:-1.380000px;}
._0_c00215{width:1.020000px;}
._2_c00215{width:2.640000px;}
._4_c00215{width:4.020000px;}
._5_c00215{width:5.820000px;}
._1_c00215{width:7.560000px;}
._d_c00215{width:8.940000px;}
._a_c00215{width:10.260000px;}
._9_c00215{width:12.240000px;}
._b_c00215{width:13.440000px;}
._17_c00215{width:14.759994px;}
._f_c00215{width:16.020000px;}
._e_c00215{width:17.460000px;}
._10_c00215{width:19.140000px;}
._11_c00215{width:22.950000px;}
._16_c00215{width:24.090000px;}
._15_c00215{width:26.790051px;}
.fc1_c00215{color:transparent;}
.fc0_c00215{color:rgb(35,31,32);}
.fs1_c00215{font-size:51.000000px;}
.fs0_c00215{font-size:60.000000px;}
.y0_c00215{bottom:0.000000px;}
.y29_c00215{bottom:64.425022px;}
.y28_c00215{bottom:110.550022px;}
.y27_c00215{bottom:125.325022px;}
.y26_c00215{bottom:140.775022px;}
.y25_c00215{bottom:155.925022px;}
.y24_c00215{bottom:171.750022px;}
.y23_c00215{bottom:186.525022px;}
.y22_c00215{bottom:201.975022px;}
.y21_c00215{bottom:217.425022px;}
.y20_c00215{bottom:232.950022px;}
.y1f_c00215{bottom:247.725022px;}
.y1e_c00215{bottom:263.550022px;}
.y1d_c00215{bottom:278.325022px;}
.y1c_c00215{bottom:293.775022px;}
.y1b_c00215{bottom:308.925022px;}
.y1a_c00215{bottom:324.375022px;}
.y19_c00215{bottom:339.525022px;}
.y18_c00215{bottom:354.975022px;}
.y17_c00215{bottom:370.125022px;}
.y16_c00215{bottom:385.950022px;}
.y15_c00215{bottom:400.725022px;}
.y14_c00215{bottom:416.550022px;}
.y13_c00215{bottom:431.625022px;}
.y12_c00215{bottom:446.775022px;}
.y11_c00215{bottom:491.400022px;}
.y10_c00215{bottom:510.825022px;}
.yf_c00215{bottom:529.950022px;}
.ye_c00215{bottom:549.225022px;}
.yd_c00215{bottom:568.725022px;}
.yc_c00215{bottom:588.225022px;}
.yb_c00215{bottom:607.725022px;}
.ya_c00215{bottom:627.525022px;}
.y9_c00215{bottom:646.950022px;}
.y8_c00215{bottom:666.375022px;}
.y7_c00215{bottom:707.400022px;}
.y5_c00215{bottom:767.175022px;}
.y4_c00215{bottom:786.600022px;}
.y3_c00215{bottom:806.100022px;}
.y2_c00215{bottom:825.525022px;}
.y1_c00215{bottom:844.950022px;}
.y6_c00215{bottom:886.725022px;}
.h3_c00215{height:50.028809px;}
.h4_c00215{height:50.053711px;}
.h2_c00215{height:58.886719px;}
.h1_c00215{height:957.750000px;}
.h0_c00215{height:957.975000px;}
.w0_c00215{width:641.850030px;}
.w1_c00215{width:642.000000px;}
.x0_c00215{left:0.000000px;}
.x3_c00215{left:80.250000px;}
.x1_c00215{left:81.375000px;}
.x4_c00215{left:86.025000px;}
.x5_c00215{left:113.775000px;}
.x2_c00215{left:144.750000px;}
.x6_c00215{left:531.375000px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls0_c00215{letter-spacing:0.000000pt;}
.ws1_c00215{word-spacing:-13.333333pt;}
.ws0_c00215{word-spacing:-11.333333pt;}
.ws2_c00215{word-spacing:0.000000pt;}
._6_c00215{margin-left:-9.120000pt;}
._c_c00215{margin-left:-8.160000pt;}
._3_c00215{margin-left:-6.773333pt;}
._13_c00215{margin-left:-5.112040pt;}
._12_c00215{margin-left:-4.200008pt;}
._14_c00215{margin-left:-3.170600pt;}
._7_c00215{margin-left:-2.186667pt;}
._8_c00215{margin-left:-1.226667pt;}
._0_c00215{width:0.906667pt;}
._2_c00215{width:2.346667pt;}
._4_c00215{width:3.573333pt;}
._5_c00215{width:5.173333pt;}
._1_c00215{width:6.720000pt;}
._d_c00215{width:7.946667pt;}
._a_c00215{width:9.120000pt;}
._9_c00215{width:10.880000pt;}
._b_c00215{width:11.946667pt;}
._17_c00215{width:13.119995pt;}
._f_c00215{width:14.240000pt;}
._e_c00215{width:15.520000pt;}
._10_c00215{width:17.013333pt;}
._11_c00215{width:20.400000pt;}
._16_c00215{width:21.413333pt;}
._15_c00215{width:23.813379pt;}
.fs1_c00215{font-size:45.333333pt;}
.fs0_c00215{font-size:53.333333pt;}
.y0_c00215{bottom:0.000000pt;}
.y29_c00215{bottom:57.266686pt;}
.y28_c00215{bottom:98.266686pt;}
.y27_c00215{bottom:111.400020pt;}
.y26_c00215{bottom:125.133353pt;}
.y25_c00215{bottom:138.600020pt;}
.y24_c00215{bottom:152.666686pt;}
.y23_c00215{bottom:165.800020pt;}
.y22_c00215{bottom:179.533353pt;}
.y21_c00215{bottom:193.266686pt;}
.y20_c00215{bottom:207.066686pt;}
.y1f_c00215{bottom:220.200020pt;}
.y1e_c00215{bottom:234.266686pt;}
.y1d_c00215{bottom:247.400020pt;}
.y1c_c00215{bottom:261.133353pt;}
.y1b_c00215{bottom:274.600020pt;}
.y1a_c00215{bottom:288.333353pt;}
.y19_c00215{bottom:301.800020pt;}
.y18_c00215{bottom:315.533353pt;}
.y17_c00215{bottom:329.000020pt;}
.y16_c00215{bottom:343.066686pt;}
.y15_c00215{bottom:356.200020pt;}
.y14_c00215{bottom:370.266686pt;}
.y13_c00215{bottom:383.666686pt;}
.y12_c00215{bottom:397.133353pt;}
.y11_c00215{bottom:436.800020pt;}
.y10_c00215{bottom:454.066686pt;}
.yf_c00215{bottom:471.066686pt;}
.ye_c00215{bottom:488.200020pt;}
.yd_c00215{bottom:505.533353pt;}
.yc_c00215{bottom:522.866686pt;}
.yb_c00215{bottom:540.200020pt;}
.ya_c00215{bottom:557.800020pt;}
.y9_c00215{bottom:575.066686pt;}
.y8_c00215{bottom:592.333353pt;}
.y7_c00215{bottom:628.800020pt;}
.y5_c00215{bottom:681.933353pt;}
.y4_c00215{bottom:699.200020pt;}
.y3_c00215{bottom:716.533353pt;}
.y2_c00215{bottom:733.800020pt;}
.y1_c00215{bottom:751.066686pt;}
.y6_c00215{bottom:788.200020pt;}
.h3_c00215{height:44.470052pt;}
.h4_c00215{height:44.492188pt;}
.h2_c00215{height:52.343750pt;}
.h1_c00215{height:851.333333pt;}
.h0_c00215{height:851.533333pt;}
.w0_c00215{width:570.533360pt;}
.w1_c00215{width:570.666667pt;}
.x0_c00215{left:0.000000pt;}
.x3_c00215{left:71.333333pt;}
.x1_c00215{left:72.333333pt;}
.x4_c00215{left:76.466667pt;}
.x5_c00215{left:101.133333pt;}
.x2_c00215{left:128.666667pt;}
.x6_c00215{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b78e22d1e5966bd875f3a429.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00216;src:url('chunks/assets/font_b42d9a8064f0a1efde607e00.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00216{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00216{word-spacing:-15.000000px;}
.ws0_c00216{word-spacing:-12.750000px;}
.ws2_c00216{word-spacing:0.000000px;}
._9_c00216{margin-left:-13.122012px;}
._8_c00216{margin-left:-11.477988px;}
._7_c00216{margin-left:-9.954186px;}
._f_c00216{margin-left:-6.794865px;}
._1a_c00216{margin-left:-5.591667px;}
._4_c00216{margin-left:-3.804243px;}
._0_c00216{margin-left:-2.622012px;}
._2_c00216{margin-left:-1.539027px;}
._3_c00216{width:1.062024px;}
._1_c00216{width:2.400009px;}
._5_c00216{width:3.995952px;}
._c_c00216{width:5.351895px;}
._a_c00216{width:6.600000px;}
._6_c00216{width:8.141757px;}
._b_c00216{width:10.182012px;}
._11_c00216{width:11.321766px;}
._12_c00216{width:12.479379px;}
._13_c00216{width:13.647156px;}
._1b_c00216{width:14.717400px;}
._19_c00216{width:15.839613px;}
._e_c00216{width:17.315943px;}
._d_c00216{width:18.761766px;}
._14_c00216{width:19.913919px;}
._10_c00216{width:21.000000px;}
._15_c00216{width:22.140000px;}
._16_c00216{width:23.207847px;}
._18_c00216{width:24.372033px;}
._17_c00216{width:27.033051px;}
.fc1_c00216{color:transparent;}
.fc0_c00216{color:rgb(35,31,32);}
.fs0_c00216{font-size:51.000000px;}
.fs1_c00216{font-size:60.000000px;}
.y0_c00216{bottom:0.000000px;}
.y29_c00216{bottom:64.425022px;}
.y28_c00216{bottom:110.550022px;}
.y27_c00216{bottom:125.625022px;}
.y26_c00216{bottom:140.775022px;}
.y25_c00216{bottom:155.925022px;}
.y24_c00216{bottom:171.750022px;}
.y23_c00216{bottom:186.525022px;}
.y22_c00216{bottom:202.350022px;}
.y21_c00216{bottom:217.125022px;}
.y20_c00216{bottom:232.575022px;}
.y1f_c00216{bottom:247.725022px;}
.y1e_c00216{bottom:264.075022px;}
.y1d_c00216{bottom:278.325022px;}
.y1c_c00216{bottom:293.775022px;}
.y1b_c00216{bottom:309.225022px;}
.y1a_c00216{bottom:324.750022px;}
.y19_c00216{bottom:339.825022px;}
.y18_c00216{bottom:355.350022px;}
.y17_c00216{bottom:370.425022px;}
.y16_c00216{bottom:385.575022px;}
.y15_c00216{bottom:400.725022px;}
.y14_c00216{bottom:416.175022px;}
.y13_c00216{bottom:456.150022px;}
.y12_c00216{bottom:475.575022px;}
.y11_c00216{bottom:495.000022px;}
.y10_c00216{bottom:514.800022px;}
.yf_c00216{bottom:533.550022px;}
.ye_c00216{bottom:553.350022px;}
.yd_c00216{bottom:572.400022px;}
.yc_c00216{bottom:591.825022px;}
.yb_c00216{bottom:611.625022px;}
.ya_c00216{bottom:630.750022px;}
.y9_c00216{bottom:650.550022px;}
.y8_c00216{bottom:669.975022px;}
.y7_c00216{bottom:689.025022px;}
.y6_c00216{bottom:708.825022px;}
.y5_c00216{bottom:748.125022px;}
.y4_c00216{bottom:805.725022px;}
.y3_c00216{bottom:825.525022px;}
.y2_c00216{bottom:844.950022px;}
.y1_c00216{bottom:886.725022px;}
.h2_c00216{height:50.028809px;}
.h4_c00216{height:50.053711px;}
.h3_c00216{height:58.886719px;}
.h1_c00216{height:957.750000px;}
.h0_c00216{height:957.975000px;}
.w1_c00216{width:643.500000px;}
.w0_c00216{width:643.650000px;}
.x0_c00216{left:0.000000px;}
.x1_c00216{left:91.050000px;}
.x3_c00216{left:96.150000px;}
.x2_c00216{left:123.825000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls0_c00216{letter-spacing:0.000000pt;}
.ws1_c00216{word-spacing:-13.333333pt;}
.ws0_c00216{word-spacing:-11.333333pt;}
.ws2_c00216{word-spacing:0.000000pt;}
._9_c00216{margin-left:-11.664011pt;}
._8_c00216{margin-left:-10.202656pt;}
._7_c00216{margin-left:-8.848165pt;}
._f_c00216{margin-left:-6.039880pt;}
._1a_c00216{margin-left:-4.970371pt;}
._4_c00216{margin-left:-3.381549pt;}
._0_c00216{margin-left:-2.330677pt;}
._2_c00216{margin-left:-1.368024pt;}
._3_c00216{width:0.944021pt;}
._1_c00216{width:2.133341pt;}
._5_c00216{width:3.551957pt;}
._c_c00216{width:4.757240pt;}
._a_c00216{width:5.866667pt;}
._6_c00216{width:7.237117pt;}
._b_c00216{width:9.050677pt;}
._11_c00216{width:10.063792pt;}
._12_c00216{width:11.092781pt;}
._13_c00216{width:12.130805pt;}
._1b_c00216{width:13.082133pt;}
._19_c00216{width:14.079656pt;}
._e_c00216{width:15.391949pt;}
._d_c00216{width:16.677125pt;}
._14_c00216{width:17.701261pt;}
._10_c00216{width:18.666667pt;}
._15_c00216{width:19.680000pt;}
._16_c00216{width:20.629197pt;}
._18_c00216{width:21.664029pt;}
._17_c00216{width:24.029379pt;}
.fs0_c00216{font-size:45.333333pt;}
.fs1_c00216{font-size:53.333333pt;}
.y0_c00216{bottom:0.000000pt;}
.y29_c00216{bottom:57.266686pt;}
.y28_c00216{bottom:98.266686pt;}
.y27_c00216{bottom:111.666686pt;}
.y26_c00216{bottom:125.133353pt;}
.y25_c00216{bottom:138.600020pt;}
.y24_c00216{bottom:152.666686pt;}
.y23_c00216{bottom:165.800020pt;}
.y22_c00216{bottom:179.866686pt;}
.y21_c00216{bottom:193.000020pt;}
.y20_c00216{bottom:206.733353pt;}
.y1f_c00216{bottom:220.200020pt;}
.y1e_c00216{bottom:234.733353pt;}
.y1d_c00216{bottom:247.400020pt;}
.y1c_c00216{bottom:261.133353pt;}
.y1b_c00216{bottom:274.866686pt;}
.y1a_c00216{bottom:288.666686pt;}
.y19_c00216{bottom:302.066686pt;}
.y18_c00216{bottom:315.866686pt;}
.y17_c00216{bottom:329.266686pt;}
.y16_c00216{bottom:342.733353pt;}
.y15_c00216{bottom:356.200020pt;}
.y14_c00216{bottom:369.933353pt;}
.y13_c00216{bottom:405.466686pt;}
.y12_c00216{bottom:422.733353pt;}
.y11_c00216{bottom:440.000020pt;}
.y10_c00216{bottom:457.600020pt;}
.yf_c00216{bottom:474.266686pt;}
.ye_c00216{bottom:491.866686pt;}
.yd_c00216{bottom:508.800020pt;}
.yc_c00216{bottom:526.066686pt;}
.yb_c00216{bottom:543.666686pt;}
.ya_c00216{bottom:560.666686pt;}
.y9_c00216{bottom:578.266686pt;}
.y8_c00216{bottom:595.533353pt;}
.y7_c00216{bottom:612.466686pt;}
.y6_c00216{bottom:630.066686pt;}
.y5_c00216{bottom:665.000020pt;}
.y4_c00216{bottom:716.200020pt;}
.y3_c00216{bottom:733.800020pt;}
.y2_c00216{bottom:751.066686pt;}
.y1_c00216{bottom:788.200020pt;}
.h2_c00216{height:44.470052pt;}
.h4_c00216{height:44.492188pt;}
.h3_c00216{height:52.343750pt;}
.h1_c00216{height:851.333333pt;}
.h0_c00216{height:851.533333pt;}
.w1_c00216{width:572.000000pt;}
.w0_c00216{width:572.133333pt;}
.x0_c00216{left:0.000000pt;}
.x1_c00216{left:80.933333pt;}
.x3_c00216{left:85.466667pt;}
.x2_c00216{left:110.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_02e319a021d45f13e4c6106b.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00217;src:url('chunks/assets/font_9f937a9b66ca961c2835420f.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00217{letter-spacing:0.000000px;}
.sc__c00217{text-shadow:none;}
.sc0_c00217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00217{-webkit-text-stroke:0px transparent;}
.sc0_c00217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00217{word-spacing:-15.000000px;}
.ws0_c00217{word-spacing:-12.750000px;}
.ws2_c00217{word-spacing:0.000000px;}
._12_c00217{margin-left:-13.560000px;}
._10_c00217{margin-left:-12.420000px;}
._8_c00217{margin-left:-10.800000px;}
._7_c00217{margin-left:-9.480000px;}
._3_c00217{margin-left:-7.500000px;}
._16_c00217{margin-left:-6.314994px;}
._11_c00217{margin-left:-4.800000px;}
._b_c00217{margin-left:-3.300000px;}
._a_c00217{margin-left:-1.380000px;}
._1_c00217{width:1.260000px;}
._2_c00217{width:2.580000px;}
._0_c00217{width:4.320000px;}
._4_c00217{width:6.120000px;}
._c_c00217{width:7.320000px;}
._9_c00217{width:8.340000px;}
._6_c00217{width:9.780000px;}
._5_c00217{width:11.760000px;}
._f_c00217{width:12.780000px;}
._15_c00217{width:13.860228px;}
._18_c00217{width:15.051114px;}
._19_c00217{width:16.799940px;}
._e_c00217{width:17.820000px;}
._d_c00217{width:20.220000px;}
._17_c00217{width:21.750000px;}
._13_c00217{width:23.010000px;}
._14_c00217{width:25.710051px;}
._1a_c00217{width:27.210102px;}
.fc1_c00217{color:transparent;}
.fc0_c00217{color:rgb(35,31,32);}
.fs1_c00217{font-size:51.000000px;}
.fs0_c00217{font-size:60.000000px;}
.y0_c00217{bottom:0.000000px;}
.y2b_c00217{bottom:64.425022px;}
.y2a_c00217{bottom:110.175022px;}
.y29_c00217{bottom:125.625022px;}
.y28_c00217{bottom:141.150022px;}
.y27_c00217{bottom:156.225022px;}
.y26_c00217{bottom:171.750022px;}
.y25_c00217{bottom:186.525022px;}
.y24_c00217{bottom:201.975022px;}
.y23_c00217{bottom:217.125022px;}
.y22_c00217{bottom:232.575022px;}
.y21_c00217{bottom:247.725022px;}
.y20_c00217{bottom:263.550022px;}
.y1f_c00217{bottom:278.325022px;}
.y1e_c00217{bottom:294.150022px;}
.y1d_c00217{bottom:308.925022px;}
.y1c_c00217{bottom:324.375022px;}
.y1b_c00217{bottom:339.525022px;}
.y1a_c00217{bottom:354.975022px;}
.y19_c00217{bottom:370.125022px;}
.y18_c00217{bottom:385.575022px;}
.y17_c00217{bottom:400.725022px;}
.y16_c00217{bottom:416.175022px;}
.y15_c00217{bottom:431.625022px;}
.y14_c00217{bottom:446.775022px;}
.y13_c00217{bottom:461.925022px;}
.y11_c00217{bottom:534.225022px;}
.y10_c00217{bottom:553.350022px;}
.yf_c00217{bottom:572.775022px;}
.ye_c00217{bottom:592.575022px;}
.yd_c00217{bottom:612.000022px;}
.yc_c00217{bottom:631.125022px;}
.yb_c00217{bottom:650.925022px;}
.ya_c00217{bottom:670.350022px;}
.y9_c00217{bottom:689.400022px;}
.y8_c00217{bottom:708.825022px;}
.y7_c00217{bottom:728.625022px;}
.y6_c00217{bottom:747.750022px;}
.y5_c00217{bottom:767.175022px;}
.y4_c00217{bottom:786.225022px;}
.y3_c00217{bottom:806.025022px;}
.y2_c00217{bottom:825.150022px;}
.y1_c00217{bottom:844.950022px;}
.y12_c00217{bottom:886.725022px;}
.h3_c00217{height:50.028809px;}
.h4_c00217{height:50.053711px;}
.h2_c00217{height:58.886719px;}
.h1_c00217{height:957.750000px;}
.h0_c00217{height:957.975000px;}
.w0_c00217{width:641.850030px;}
.w1_c00217{width:642.000000px;}
.x0_c00217{left:0.000000px;}
.x1_c00217{left:81.375000px;}
.x5_c00217{left:87.825000px;}
.x3_c00217{left:93.225000px;}
.x4_c00217{left:120.975000px;}
.x2_c00217{left:144.750000px;}
.x6_c00217{left:531.375000px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls0_c00217{letter-spacing:0.000000pt;}
.ws1_c00217{word-spacing:-13.333333pt;}
.ws0_c00217{word-spacing:-11.333333pt;}
.ws2_c00217{word-spacing:0.000000pt;}
._12_c00217{margin-left:-12.053333pt;}
._10_c00217{margin-left:-11.040000pt;}
._8_c00217{margin-left:-9.600000pt;}
._7_c00217{margin-left:-8.426667pt;}
._3_c00217{margin-left:-6.666667pt;}
._16_c00217{margin-left:-5.613328pt;}
._11_c00217{margin-left:-4.266667pt;}
._b_c00217{margin-left:-2.933333pt;}
._a_c00217{margin-left:-1.226667pt;}
._1_c00217{width:1.120000pt;}
._2_c00217{width:2.293333pt;}
._0_c00217{width:3.840000pt;}
._4_c00217{width:5.440000pt;}
._c_c00217{width:6.506667pt;}
._9_c00217{width:7.413333pt;}
._6_c00217{width:8.693333pt;}
._5_c00217{width:10.453333pt;}
._f_c00217{width:11.360000pt;}
._15_c00217{width:12.320203pt;}
._18_c00217{width:13.378768pt;}
._19_c00217{width:14.933280pt;}
._e_c00217{width:15.840000pt;}
._d_c00217{width:17.973333pt;}
._17_c00217{width:19.333333pt;}
._13_c00217{width:20.453333pt;}
._14_c00217{width:22.853379pt;}
._1a_c00217{width:24.186757pt;}
.fs1_c00217{font-size:45.333333pt;}
.fs0_c00217{font-size:53.333333pt;}
.y0_c00217{bottom:0.000000pt;}
.y2b_c00217{bottom:57.266686pt;}
.y2a_c00217{bottom:97.933353pt;}
.y29_c00217{bottom:111.666686pt;}
.y28_c00217{bottom:125.466686pt;}
.y27_c00217{bottom:138.866686pt;}
.y26_c00217{bottom:152.666686pt;}
.y25_c00217{bottom:165.800020pt;}
.y24_c00217{bottom:179.533353pt;}
.y23_c00217{bottom:193.000020pt;}
.y22_c00217{bottom:206.733353pt;}
.y21_c00217{bottom:220.200020pt;}
.y20_c00217{bottom:234.266686pt;}
.y1f_c00217{bottom:247.400020pt;}
.y1e_c00217{bottom:261.466686pt;}
.y1d_c00217{bottom:274.600020pt;}
.y1c_c00217{bottom:288.333353pt;}
.y1b_c00217{bottom:301.800020pt;}
.y1a_c00217{bottom:315.533353pt;}
.y19_c00217{bottom:329.000020pt;}
.y18_c00217{bottom:342.733353pt;}
.y17_c00217{bottom:356.200020pt;}
.y16_c00217{bottom:369.933353pt;}
.y15_c00217{bottom:383.666686pt;}
.y14_c00217{bottom:397.133353pt;}
.y13_c00217{bottom:410.600020pt;}
.y11_c00217{bottom:474.866686pt;}
.y10_c00217{bottom:491.866686pt;}
.yf_c00217{bottom:509.133353pt;}
.ye_c00217{bottom:526.733353pt;}
.yd_c00217{bottom:544.000020pt;}
.yc_c00217{bottom:561.000020pt;}
.yb_c00217{bottom:578.600020pt;}
.ya_c00217{bottom:595.866686pt;}
.y9_c00217{bottom:612.800020pt;}
.y8_c00217{bottom:630.066686pt;}
.y7_c00217{bottom:647.666686pt;}
.y6_c00217{bottom:664.666686pt;}
.y5_c00217{bottom:681.933353pt;}
.y4_c00217{bottom:698.866686pt;}
.y3_c00217{bottom:716.466686pt;}
.y2_c00217{bottom:733.466686pt;}
.y1_c00217{bottom:751.066686pt;}
.y12_c00217{bottom:788.200020pt;}
.h3_c00217{height:44.470052pt;}
.h4_c00217{height:44.492188pt;}
.h2_c00217{height:52.343750pt;}
.h1_c00217{height:851.333333pt;}
.h0_c00217{height:851.533333pt;}
.w0_c00217{width:570.533360pt;}
.w1_c00217{width:570.666667pt;}
.x0_c00217{left:0.000000pt;}
.x1_c00217{left:72.333333pt;}
.x5_c00217{left:78.066667pt;}
.x3_c00217{left:82.866667pt;}
.x4_c00217{left:107.533333pt;}
.x2_c00217{left:128.666667pt;}
.x6_c00217{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f91e61bf3d036089ca7d18a.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00218;src:url('chunks/assets/font_5689b89632e34e5b925c289d.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00218{vertical-align:0.000000px;}
.ls0_c00218{letter-spacing:0.000000px;}
.sc__c00218{text-shadow:none;}
.sc0_c00218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00218{-webkit-text-stroke:0px transparent;}
.sc0_c00218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00218{word-spacing:-15.000000px;}
.ws0_c00218{word-spacing:-12.750000px;}
.ws2_c00218{word-spacing:0.000000px;}
._14_c00218{margin-left:-13.980000px;}
._15_c00218{margin-left:-12.900000px;}
._10_c00218{margin-left:-11.760000px;}
._b_c00218{margin-left:-10.680000px;}
._17_c00218{margin-left:-8.837931px;}
._12_c00218{margin-left:-7.800000px;}
._11_c00218{margin-left:-5.760000px;}
._13_c00218{margin-left:-4.158039px;}
._e_c00218{margin-left:-2.880000px;}
._5_c00218{margin-left:-1.620000px;}
._0_c00218{width:1.020000px;}
._1_c00218{width:2.820000px;}
._f_c00218{width:4.020000px;}
._2_c00218{width:6.000000px;}
._4_c00218{width:7.200000px;}
._9_c00218{width:8.640000px;}
._3_c00218{width:9.900000px;}
._a_c00218{width:11.580000px;}
._c_c00218{width:12.840000px;}
._18_c00218{width:13.929015px;}
._19_c00218{width:15.348021px;}
._d_c00218{width:16.680000px;}
._6_c00218{width:18.300000px;}
._8_c00218{width:20.400000px;}
._7_c00218{width:21.480000px;}
._16_c00218{width:23.970000px;}
._1a_c00218{width:26.669991px;}
.fc1_c00218{color:transparent;}
.fc0_c00218{color:rgb(35,31,32);}
.fs1_c00218{font-size:51.000000px;}
.fs0_c00218{font-size:60.000000px;}
.y0_c00218{bottom:0.000000px;}
.y27_c00218{bottom:64.425022px;}
.y26_c00218{bottom:110.175022px;}
.y25_c00218{bottom:125.325022px;}
.y24_c00218{bottom:140.775022px;}
.y23_c00218{bottom:155.925022px;}
.y22_c00218{bottom:171.750022px;}
.y21_c00218{bottom:186.525022px;}
.y20_c00218{bottom:201.975022px;}
.y1f_c00218{bottom:217.125022px;}
.y1e_c00218{bottom:232.575022px;}
.y1d_c00218{bottom:247.725022px;}
.y1c_c00218{bottom:263.175022px;}
.y1b_c00218{bottom:278.625022px;}
.y1a_c00218{bottom:318.225022px;}
.y19_c00218{bottom:337.725022px;}
.y18_c00218{bottom:357.525022px;}
.y17_c00218{bottom:376.950022px;}
.y16_c00218{bottom:396.000022px;}
.y15_c00218{bottom:415.800022px;}
.y14_c00218{bottom:435.225022px;}
.y13_c00218{bottom:475.200022px;}
.y11_c00218{bottom:533.925022px;}
.y10_c00218{bottom:553.725022px;}
.yf_c00218{bottom:572.775022px;}
.ye_c00218{bottom:592.575022px;}
.yd_c00218{bottom:611.625022px;}
.yc_c00218{bottom:631.125022px;}
.yb_c00218{bottom:650.925022px;}
.ya_c00218{bottom:669.975022px;}
.y9_c00218{bottom:689.775022px;}
.y8_c00218{bottom:708.825022px;}
.y7_c00218{bottom:728.625022px;}
.y6_c00218{bottom:747.750022px;}
.y5_c00218{bottom:767.550022px;}
.y4_c00218{bottom:786.600022px;}
.y3_c00218{bottom:805.725022px;}
.y2_c00218{bottom:825.150022px;}
.y1_c00218{bottom:844.950022px;}
.y12_c00218{bottom:886.725022px;}
.h3_c00218{height:50.028809px;}
.h4_c00218{height:50.053711px;}
.h2_c00218{height:58.886719px;}
.h1_c00218{height:957.750000px;}
.h0_c00218{height:957.975000px;}
.w1_c00218{width:643.500000px;}
.w0_c00218{width:643.650000px;}
.x0_c00218{left:0.000000px;}
.x1_c00218{left:91.425000px;}
.x3_c00218{left:97.575000px;}
.x2_c00218{left:107.250000px;}
.x4_c00218{left:130.650000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls0_c00218{letter-spacing:0.000000pt;}
.ws1_c00218{word-spacing:-13.333333pt;}
.ws0_c00218{word-spacing:-11.333333pt;}
.ws2_c00218{word-spacing:0.000000pt;}
._14_c00218{margin-left:-12.426667pt;}
._15_c00218{margin-left:-11.466667pt;}
._10_c00218{margin-left:-10.453333pt;}
._b_c00218{margin-left:-9.493333pt;}
._17_c00218{margin-left:-7.855939pt;}
._12_c00218{margin-left:-6.933333pt;}
._11_c00218{margin-left:-5.120000pt;}
._13_c00218{margin-left:-3.696035pt;}
._e_c00218{margin-left:-2.560000pt;}
._5_c00218{margin-left:-1.440000pt;}
._0_c00218{width:0.906667pt;}
._1_c00218{width:2.506667pt;}
._f_c00218{width:3.573333pt;}
._2_c00218{width:5.333333pt;}
._4_c00218{width:6.400000pt;}
._9_c00218{width:7.680000pt;}
._3_c00218{width:8.800000pt;}
._a_c00218{width:10.293333pt;}
._c_c00218{width:11.413333pt;}
._18_c00218{width:12.381347pt;}
._19_c00218{width:13.642685pt;}
._d_c00218{width:14.826667pt;}
._6_c00218{width:16.266667pt;}
._8_c00218{width:18.133333pt;}
._7_c00218{width:19.093333pt;}
._16_c00218{width:21.306667pt;}
._1a_c00218{width:23.706659pt;}
.fs1_c00218{font-size:45.333333pt;}
.fs0_c00218{font-size:53.333333pt;}
.y0_c00218{bottom:0.000000pt;}
.y27_c00218{bottom:57.266686pt;}
.y26_c00218{bottom:97.933353pt;}
.y25_c00218{bottom:111.400020pt;}
.y24_c00218{bottom:125.133353pt;}
.y23_c00218{bottom:138.600020pt;}
.y22_c00218{bottom:152.666686pt;}
.y21_c00218{bottom:165.800020pt;}
.y20_c00218{bottom:179.533353pt;}
.y1f_c00218{bottom:193.000020pt;}
.y1e_c00218{bottom:206.733353pt;}
.y1d_c00218{bottom:220.200020pt;}
.y1c_c00218{bottom:233.933353pt;}
.y1b_c00218{bottom:247.666686pt;}
.y1a_c00218{bottom:282.866686pt;}
.y19_c00218{bottom:300.200020pt;}
.y18_c00218{bottom:317.800020pt;}
.y17_c00218{bottom:335.066686pt;}
.y16_c00218{bottom:352.000020pt;}
.y15_c00218{bottom:369.600020pt;}
.y14_c00218{bottom:386.866686pt;}
.y13_c00218{bottom:422.400020pt;}
.y11_c00218{bottom:474.600020pt;}
.y10_c00218{bottom:492.200020pt;}
.yf_c00218{bottom:509.133353pt;}
.ye_c00218{bottom:526.733353pt;}
.yd_c00218{bottom:543.666686pt;}
.yc_c00218{bottom:561.000020pt;}
.yb_c00218{bottom:578.600020pt;}
.ya_c00218{bottom:595.533353pt;}
.y9_c00218{bottom:613.133353pt;}
.y8_c00218{bottom:630.066686pt;}
.y7_c00218{bottom:647.666686pt;}
.y6_c00218{bottom:664.666686pt;}
.y5_c00218{bottom:682.266686pt;}
.y4_c00218{bottom:699.200020pt;}
.y3_c00218{bottom:716.200020pt;}
.y2_c00218{bottom:733.466686pt;}
.y1_c00218{bottom:751.066686pt;}
.y12_c00218{bottom:788.200020pt;}
.h3_c00218{height:44.470052pt;}
.h4_c00218{height:44.492188pt;}
.h2_c00218{height:52.343750pt;}
.h1_c00218{height:851.333333pt;}
.h0_c00218{height:851.533333pt;}
.w1_c00218{width:572.000000pt;}
.w0_c00218{width:572.133333pt;}
.x0_c00218{left:0.000000pt;}
.x1_c00218{left:81.266667pt;}
.x3_c00218{left:86.733333pt;}
.x2_c00218{left:95.333333pt;}
.x4_c00218{left:116.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_de5971b3a5d8c2c6ba16e10c.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00219;src:url('chunks/assets/font_12c3f49dc82a4e0bfd1ae7c9.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00219{letter-spacing:0.000000px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00219{word-spacing:-15.000000px;}
.ws1_c00219{word-spacing:-12.750000px;}
.ws2_c00219{word-spacing:0.000000px;}
._9_c00219{margin-left:-15.552132px;}
._a_c00219{margin-left:-14.147868px;}
._12_c00219{margin-left:-12.760836px;}
._14_c00219{margin-left:-11.239164px;}
._13_c00219{margin-left:-9.909099px;}
._15_c00219{margin-left:-8.058198px;}
._19_c00219{margin-left:-6.760209px;}
._11_c00219{margin-left:-5.144955px;}
._3_c00219{margin-left:-3.468357px;}
._16_c00219{margin-left:-2.396982px;}
._0_c00219{margin-left:-1.383018px;}
._1_c00219{width:1.983033px;}
._2_c00219{width:3.504159px;}
._7_c00219{width:4.941186px;}
._f_c00219{width:6.215781px;}
._10_c00219{width:7.639626px;}
._4_c00219{width:9.050901px;}
._8_c00219{width:10.491096px;}
._5_c00219{width:11.615736px;}
._6_c00219{width:13.130901px;}
._d_c00219{width:16.709670px;}
._c_c00219{width:17.936967px;}
._e_c00219{width:19.050315px;}
._b_c00219{width:20.352132px;}
._17_c00219{width:21.789099px;}
._1c_c00219{width:23.598357px;}
._1a_c00219{width:26.298357px;}
._1b_c00219{width:27.624045px;}
._18_c00219{width:29.709282px;}
.fc1_c00219{color:transparent;}
.fc0_c00219{color:rgb(35,31,32);}
.fs0_c00219{font-size:51.000000px;}
.fs1_c00219{font-size:60.000000px;}
.y0_c00219{bottom:0.000000px;}
.y2b_c00219{bottom:64.425022px;}
.y2a_c00219{bottom:110.550022px;}
.y29_c00219{bottom:125.625022px;}
.y28_c00219{bottom:140.775022px;}
.y27_c00219{bottom:156.225022px;}
.y26_c00219{bottom:171.375022px;}
.y25_c00219{bottom:186.525022px;}
.y24_c00219{bottom:201.975022px;}
.y23_c00219{bottom:217.125022px;}
.y22_c00219{bottom:232.575022px;}
.y21_c00219{bottom:247.350022px;}
.y20_c00219{bottom:263.550022px;}
.y1f_c00219{bottom:278.325022px;}
.y1e_c00219{bottom:294.150022px;}
.y1d_c00219{bottom:308.925022px;}
.y1c_c00219{bottom:324.375022px;}
.y1b_c00219{bottom:364.275022px;}
.y1a_c00219{bottom:383.400022px;}
.y19_c00219{bottom:402.525022px;}
.y18_c00219{bottom:422.325022px;}
.y17_c00219{bottom:441.375022px;}
.y16_c00219{bottom:460.425022px;}
.y15_c00219{bottom:479.925022px;}
.y14_c00219{bottom:498.975022px;}
.y13_c00219{bottom:518.400022px;}
.y12_c00219{bottom:537.150022px;}
.y11_c00219{bottom:556.575022px;}
.y10_c00219{bottom:576.000022px;}
.yf_c00219{bottom:595.125022px;}
.ye_c00219{bottom:614.550022px;}
.yd_c00219{bottom:633.225022px;}
.yc_c00219{bottom:652.725022px;}
.yb_c00219{bottom:672.150022px;}
.ya_c00219{bottom:690.825022px;}
.y9_c00219{bottom:710.325022px;}
.y8_c00219{bottom:729.375022px;}
.y7_c00219{bottom:749.175022px;}
.y6_c00219{bottom:768.225022px;}
.y5_c00219{bottom:787.350022px;}
.y4_c00219{bottom:806.400022px;}
.y3_c00219{bottom:825.825022px;}
.y2_c00219{bottom:845.325022px;}
.y1_c00219{bottom:886.725022px;}
.h2_c00219{height:50.028809px;}
.h5_c00219{height:50.053711px;}
.h4_c00219{height:58.857422px;}
.h3_c00219{height:58.886719px;}
.h1_c00219{height:957.750000px;}
.h0_c00219{height:957.975000px;}
.w0_c00219{width:641.850030px;}
.w1_c00219{width:642.000000px;}
.x0_c00219{left:0.000000px;}
.x2_c00219{left:81.375000px;}
.x4_c00219{left:87.825000px;}
.x3_c00219{left:96.825000px;}
.x6_c00219{left:120.600000px;}
.x5_c00219{left:121.650000px;}
.x1_c00219{left:144.750000px;}
.x7_c00219{left:531.375000px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls0_c00219{letter-spacing:0.000000pt;}
.ws0_c00219{word-spacing:-13.333333pt;}
.ws1_c00219{word-spacing:-11.333333pt;}
.ws2_c00219{word-spacing:0.000000pt;}
._9_c00219{margin-left:-13.824117pt;}
._a_c00219{margin-left:-12.575883pt;}
._12_c00219{margin-left:-11.342965pt;}
._14_c00219{margin-left:-9.990368pt;}
._13_c00219{margin-left:-8.808088pt;}
._15_c00219{margin-left:-7.162843pt;}
._19_c00219{margin-left:-6.009075pt;}
._11_c00219{margin-left:-4.573293pt;}
._3_c00219{margin-left:-3.082984pt;}
._16_c00219{margin-left:-2.130651pt;}
._0_c00219{margin-left:-1.229349pt;}
._1_c00219{width:1.762696pt;}
._2_c00219{width:3.114808pt;}
._7_c00219{width:4.392165pt;}
._f_c00219{width:5.525139pt;}
._10_c00219{width:6.790779pt;}
._4_c00219{width:8.045245pt;}
._8_c00219{width:9.325419pt;}
._5_c00219{width:10.325099pt;}
._6_c00219{width:11.671912pt;}
._d_c00219{width:14.853040pt;}
._c_c00219{width:15.943971pt;}
._e_c00219{width:16.933613pt;}
._b_c00219{width:18.090784pt;}
._17_c00219{width:19.368088pt;}
._1c_c00219{width:20.976317pt;}
._1a_c00219{width:23.376317pt;}
._1b_c00219{width:24.554707pt;}
._18_c00219{width:26.408251pt;}
.fs0_c00219{font-size:45.333333pt;}
.fs1_c00219{font-size:53.333333pt;}
.y0_c00219{bottom:0.000000pt;}
.y2b_c00219{bottom:57.266686pt;}
.y2a_c00219{bottom:98.266686pt;}
.y29_c00219{bottom:111.666686pt;}
.y28_c00219{bottom:125.133353pt;}
.y27_c00219{bottom:138.866686pt;}
.y26_c00219{bottom:152.333353pt;}
.y25_c00219{bottom:165.800020pt;}
.y24_c00219{bottom:179.533353pt;}
.y23_c00219{bottom:193.000020pt;}
.y22_c00219{bottom:206.733353pt;}
.y21_c00219{bottom:219.866686pt;}
.y20_c00219{bottom:234.266686pt;}
.y1f_c00219{bottom:247.400020pt;}
.y1e_c00219{bottom:261.466686pt;}
.y1d_c00219{bottom:274.600020pt;}
.y1c_c00219{bottom:288.333353pt;}
.y1b_c00219{bottom:323.800020pt;}
.y1a_c00219{bottom:340.800020pt;}
.y19_c00219{bottom:357.800020pt;}
.y18_c00219{bottom:375.400020pt;}
.y17_c00219{bottom:392.333353pt;}
.y16_c00219{bottom:409.266686pt;}
.y15_c00219{bottom:426.600020pt;}
.y14_c00219{bottom:443.533353pt;}
.y13_c00219{bottom:460.800020pt;}
.y12_c00219{bottom:477.466686pt;}
.y11_c00219{bottom:494.733353pt;}
.y10_c00219{bottom:512.000020pt;}
.yf_c00219{bottom:529.000020pt;}
.ye_c00219{bottom:546.266686pt;}
.yd_c00219{bottom:562.866686pt;}
.yc_c00219{bottom:580.200020pt;}
.yb_c00219{bottom:597.466686pt;}
.ya_c00219{bottom:614.066686pt;}
.y9_c00219{bottom:631.400020pt;}
.y8_c00219{bottom:648.333353pt;}
.y7_c00219{bottom:665.933353pt;}
.y6_c00219{bottom:682.866686pt;}
.y5_c00219{bottom:699.866686pt;}
.y4_c00219{bottom:716.800020pt;}
.y3_c00219{bottom:734.066686pt;}
.y2_c00219{bottom:751.400020pt;}
.y1_c00219{bottom:788.200020pt;}
.h2_c00219{height:44.470052pt;}
.h5_c00219{height:44.492188pt;}
.h4_c00219{height:52.317708pt;}
.h3_c00219{height:52.343750pt;}
.h1_c00219{height:851.333333pt;}
.h0_c00219{height:851.533333pt;}
.w0_c00219{width:570.533360pt;}
.w1_c00219{width:570.666667pt;}
.x0_c00219{left:0.000000pt;}
.x2_c00219{left:72.333333pt;}
.x4_c00219{left:78.066667pt;}
.x3_c00219{left:86.066667pt;}
.x6_c00219{left:107.200000pt;}
.x5_c00219{left:108.133333pt;}
.x1_c00219{left:128.666667pt;}
.x7_c00219{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_04220c2950553ed86d81d14f.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00220;src:url('chunks/assets/font_6e5334c50a41fed4edd0b87f.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00220{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_c00220{vertical-align:0.000000px;}
.ls0_c00220{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00220{word-spacing:-15.000000px;}
.ws0_c00220{word-spacing:-12.750000px;}
.ws2_c00220{word-spacing:0.000000px;}
._f_c00220{margin-left:-14.040000px;}
._e_c00220{margin-left:-12.780000px;}
._10_c00220{margin-left:-11.160000px;}
._1a_c00220{margin-left:-9.792018px;}
._1b_c00220{margin-left:-7.989087px;}
._11_c00220{margin-left:-6.660000px;}
._12_c00220{margin-left:-5.340000px;}
._c_c00220{margin-left:-4.020000px;}
._b_c00220{margin-left:-2.760000px;}
._4_c00220{margin-left:-1.380000px;}
._0_c00220{width:1.500000px;}
._7_c00220{width:2.580000px;}
._3_c00220{width:3.600000px;}
._9_c00220{width:4.920000px;}
._1_c00220{width:6.360000px;}
._6_c00220{width:7.500000px;}
._8_c00220{width:8.940000px;}
._18_c00220{width:10.305000px;}
._a_c00220{width:11.400000px;}
._d_c00220{width:12.480000px;}
._15_c00220{width:13.620000px;}
._17_c00220{width:15.501003px;}
._2_c00220{width:16.800000px;}
._5_c00220{width:18.000000px;}
._13_c00220{width:19.080000px;}
._14_c00220{width:20.700000px;}
._16_c00220{width:24.690042px;}
._19_c00220{width:26.069991px;}
._1c_c00220{width:28.830093px;}
.fc1_c00220{color:transparent;}
.fc0_c00220{color:rgb(35,31,32);}
.fs1_c00220{font-size:51.000000px;}
.fs0_c00220{font-size:60.000000px;}
.y0_c00220{bottom:0.000000px;}
.y2c_c00220{bottom:64.425022px;}
.y2b_c00220{bottom:110.175022px;}
.y2a_c00220{bottom:125.325022px;}
.y29_c00220{bottom:140.775022px;}
.y28_c00220{bottom:155.925022px;}
.y27_c00220{bottom:171.375022px;}
.y26_c00220{bottom:186.525022px;}
.y25_c00220{bottom:202.050022px;}
.y24_c00220{bottom:217.425022px;}
.y23_c00220{bottom:232.875022px;}
.y22_c00220{bottom:248.025022px;}
.y21_c00220{bottom:263.175022px;}
.y20_c00220{bottom:278.625022px;}
.y1f_c00220{bottom:293.775022px;}
.y1e_c00220{bottom:308.925022px;}
.y1d_c00220{bottom:324.375022px;}
.y1c_c00220{bottom:339.825022px;}
.y1b_c00220{bottom:354.975022px;}
.y1a_c00220{bottom:370.125022px;}
.y19_c00220{bottom:385.575022px;}
.y18_c00220{bottom:400.725022px;}
.y17_c00220{bottom:416.175022px;}
.y16_c00220{bottom:431.325022px;}
.y15_c00220{bottom:447.150022px;}
.y14_c00220{bottom:461.925022px;}
.y12_c00220{bottom:514.425022px;}
.y11_c00220{bottom:533.925022px;}
.y10_c00220{bottom:553.725022px;}
.yf_c00220{bottom:572.775022px;}
.ye_c00220{bottom:592.575022px;}
.yd_c00220{bottom:611.625022px;}
.yc_c00220{bottom:631.425022px;}
.yb_c00220{bottom:650.550022px;}
.ya_c00220{bottom:670.350022px;}
.y9_c00220{bottom:689.775022px;}
.y8_c00220{bottom:708.825022px;}
.y7_c00220{bottom:728.625022px;}
.y6_c00220{bottom:748.125022px;}
.y5_c00220{bottom:767.550022px;}
.y4_c00220{bottom:786.225022px;}
.y3_c00220{bottom:805.725022px;}
.y2_c00220{bottom:825.150022px;}
.y1_c00220{bottom:844.575022px;}
.y13_c00220{bottom:886.725022px;}
.h3_c00220{height:50.028809px;}
.h4_c00220{height:50.053711px;}
.h2_c00220{height:58.886719px;}
.h1_c00220{height:957.750000px;}
.h0_c00220{height:957.975000px;}
.w1_c00220{width:643.500000px;}
.w0_c00220{width:643.650000px;}
.x0_c00220{left:0.000000px;}
.x1_c00220{left:91.050000px;}
.x3_c00220{left:97.575000px;}
.x2_c00220{left:107.250000px;}
.x4_c00220{left:131.025000px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls0_c00220{letter-spacing:0.000000pt;}
.ws1_c00220{word-spacing:-13.333333pt;}
.ws0_c00220{word-spacing:-11.333333pt;}
.ws2_c00220{word-spacing:0.000000pt;}
._f_c00220{margin-left:-12.480000pt;}
._e_c00220{margin-left:-11.360000pt;}
._10_c00220{margin-left:-9.920000pt;}
._1a_c00220{margin-left:-8.704016pt;}
._1b_c00220{margin-left:-7.101411pt;}
._11_c00220{margin-left:-5.920000pt;}
._12_c00220{margin-left:-4.746667pt;}
._c_c00220{margin-left:-3.573333pt;}
._b_c00220{margin-left:-2.453333pt;}
._4_c00220{margin-left:-1.226667pt;}
._0_c00220{width:1.333333pt;}
._7_c00220{width:2.293333pt;}
._3_c00220{width:3.200000pt;}
._9_c00220{width:4.373333pt;}
._1_c00220{width:5.653333pt;}
._6_c00220{width:6.666667pt;}
._8_c00220{width:7.946667pt;}
._18_c00220{width:9.160000pt;}
._a_c00220{width:10.133333pt;}
._d_c00220{width:11.093333pt;}
._15_c00220{width:12.106667pt;}
._17_c00220{width:13.778669pt;}
._2_c00220{width:14.933333pt;}
._5_c00220{width:16.000000pt;}
._13_c00220{width:16.960000pt;}
._14_c00220{width:18.400000pt;}
._16_c00220{width:21.946704pt;}
._19_c00220{width:23.173325pt;}
._1c_c00220{width:25.626749pt;}
.fs1_c00220{font-size:45.333333pt;}
.fs0_c00220{font-size:53.333333pt;}
.y0_c00220{bottom:0.000000pt;}
.y2c_c00220{bottom:57.266686pt;}
.y2b_c00220{bottom:97.933353pt;}
.y2a_c00220{bottom:111.400020pt;}
.y29_c00220{bottom:125.133353pt;}
.y28_c00220{bottom:138.600020pt;}
.y27_c00220{bottom:152.333353pt;}
.y26_c00220{bottom:165.800020pt;}
.y25_c00220{bottom:179.600020pt;}
.y24_c00220{bottom:193.266686pt;}
.y23_c00220{bottom:207.000020pt;}
.y22_c00220{bottom:220.466686pt;}
.y21_c00220{bottom:233.933353pt;}
.y20_c00220{bottom:247.666686pt;}
.y1f_c00220{bottom:261.133353pt;}
.y1e_c00220{bottom:274.600020pt;}
.y1d_c00220{bottom:288.333353pt;}
.y1c_c00220{bottom:302.066686pt;}
.y1b_c00220{bottom:315.533353pt;}
.y1a_c00220{bottom:329.000020pt;}
.y19_c00220{bottom:342.733353pt;}
.y18_c00220{bottom:356.200020pt;}
.y17_c00220{bottom:369.933353pt;}
.y16_c00220{bottom:383.400020pt;}
.y15_c00220{bottom:397.466686pt;}
.y14_c00220{bottom:410.600020pt;}
.y12_c00220{bottom:457.266686pt;}
.y11_c00220{bottom:474.600020pt;}
.y10_c00220{bottom:492.200020pt;}
.yf_c00220{bottom:509.133353pt;}
.ye_c00220{bottom:526.733353pt;}
.yd_c00220{bottom:543.666686pt;}
.yc_c00220{bottom:561.266686pt;}
.yb_c00220{bottom:578.266686pt;}
.ya_c00220{bottom:595.866686pt;}
.y9_c00220{bottom:613.133353pt;}
.y8_c00220{bottom:630.066686pt;}
.y7_c00220{bottom:647.666686pt;}
.y6_c00220{bottom:665.000020pt;}
.y5_c00220{bottom:682.266686pt;}
.y4_c00220{bottom:698.866686pt;}
.y3_c00220{bottom:716.200020pt;}
.y2_c00220{bottom:733.466686pt;}
.y1_c00220{bottom:750.733353pt;}
.y13_c00220{bottom:788.200020pt;}
.h3_c00220{height:44.470052pt;}
.h4_c00220{height:44.492188pt;}
.h2_c00220{height:52.343750pt;}
.h1_c00220{height:851.333333pt;}
.h0_c00220{height:851.533333pt;}
.w1_c00220{width:572.000000pt;}
.w0_c00220{width:572.133333pt;}
.x0_c00220{left:0.000000pt;}
.x1_c00220{left:80.933333pt;}
.x3_c00220{left:86.733333pt;}
.x2_c00220{left:95.333333pt;}
.x4_c00220{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2e0b330d5f1f2fc8048529f.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00221;src:url('chunks/assets/font_d0780c7b2dbe6054ea8fac33.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00221{word-spacing:-15.000000px;}
.ws0_c00221{word-spacing:-12.750000px;}
.ws2_c00221{word-spacing:0.000000px;}
._11_c00221{margin-left:-12.774216px;}
._10_c00221{margin-left:-11.640000px;}
._f_c00221{margin-left:-10.260000px;}
._16_c00221{margin-left:-6.983310px;}
._14_c00221{margin-left:-5.742456px;}
._12_c00221{margin-left:-4.500000px;}
._e_c00221{margin-left:-3.362892px;}
._0_c00221{margin-left:-1.560000px;}
._2_c00221{width:1.800000px;}
._4_c00221{width:2.880000px;}
._9_c00221{width:4.020000px;}
._b_c00221{width:5.040000px;}
._1_c00221{width:6.840000px;}
._d_c00221{width:7.860000px;}
._5_c00221{width:8.880000px;}
._3_c00221{width:10.500000px;}
._c_c00221{width:11.700000px;}
._a_c00221{width:13.020000px;}
._8_c00221{width:16.500000px;}
._7_c00221{width:18.480000px;}
._6_c00221{width:20.580000px;}
._13_c00221{width:22.590000px;}
._17_c00221{width:25.290030px;}
._15_c00221{width:28.592892px;}
.fc1_c00221{color:transparent;}
.fc0_c00221{color:rgb(35,31,32);}
.fs1_c00221{font-size:51.000000px;}
.fs0_c00221{font-size:60.000000px;}
.y0_c00221{bottom:0.000000px;}
.y23_c00221{bottom:64.800022px;}
.y22_c00221{bottom:110.175022px;}
.y21_c00221{bottom:125.325022px;}
.y20_c00221{bottom:141.150022px;}
.y1f_c00221{bottom:155.925022px;}
.y1e_c00221{bottom:171.375022px;}
.y1d_c00221{bottom:186.525022px;}
.y1c_c00221{bottom:201.975022px;}
.y1b_c00221{bottom:217.125022px;}
.y1a_c00221{bottom:322.950022px;}
.y19_c00221{bottom:341.625022px;}
.y18_c00221{bottom:361.425022px;}
.y17_c00221{bottom:380.925022px;}
.y16_c00221{bottom:399.975022px;}
.y15_c00221{bottom:419.775022px;}
.y14_c00221{bottom:439.200022px;}
.y13_c00221{bottom:458.325022px;}
.y12_c00221{bottom:478.125022px;}
.y11_c00221{bottom:497.550022px;}
.y10_c00221{bottom:516.975022px;}
.yf_c00221{bottom:536.400022px;}
.ye_c00221{bottom:555.525022px;}
.yd_c00221{bottom:574.950022px;}
.yc_c00221{bottom:613.125022px;}
.ya_c00221{bottom:669.975022px;}
.y9_c00221{bottom:689.775022px;}
.y8_c00221{bottom:709.200022px;}
.y7_c00221{bottom:728.325022px;}
.y6_c00221{bottom:748.125022px;}
.y5_c00221{bottom:767.175022px;}
.y4_c00221{bottom:786.600022px;}
.y3_c00221{bottom:805.725022px;}
.y2_c00221{bottom:825.525022px;}
.y1_c00221{bottom:844.575022px;}
.yb_c00221{bottom:886.725022px;}
.h3_c00221{height:50.028809px;}
.h4_c00221{height:50.053711px;}
.h2_c00221{height:58.886719px;}
.h1_c00221{height:957.750000px;}
.h0_c00221{height:957.975000px;}
.w0_c00221{width:641.850030px;}
.w1_c00221{width:642.000000px;}
.x0_c00221{left:0.000000px;}
.x1_c00221{left:81.000000px;}
.x4_c00221{left:87.825000px;}
.x3_c00221{left:97.200000px;}
.x5_c00221{left:120.975000px;}
.x2_c00221{left:144.750000px;}
.x6_c00221{left:531.375000px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls0_c00221{letter-spacing:0.000000pt;}
.ws1_c00221{word-spacing:-13.333333pt;}
.ws0_c00221{word-spacing:-11.333333pt;}
.ws2_c00221{word-spacing:0.000000pt;}
._11_c00221{margin-left:-11.354859pt;}
._10_c00221{margin-left:-10.346667pt;}
._f_c00221{margin-left:-9.120000pt;}
._16_c00221{margin-left:-6.207387pt;}
._14_c00221{margin-left:-5.104405pt;}
._12_c00221{margin-left:-4.000000pt;}
._e_c00221{margin-left:-2.989237pt;}
._0_c00221{margin-left:-1.386667pt;}
._2_c00221{width:1.600000pt;}
._4_c00221{width:2.560000pt;}
._9_c00221{width:3.573333pt;}
._b_c00221{width:4.480000pt;}
._1_c00221{width:6.080000pt;}
._d_c00221{width:6.986667pt;}
._5_c00221{width:7.893333pt;}
._3_c00221{width:9.333333pt;}
._c_c00221{width:10.400000pt;}
._a_c00221{width:11.573333pt;}
._8_c00221{width:14.666667pt;}
._7_c00221{width:16.426667pt;}
._6_c00221{width:18.293333pt;}
._13_c00221{width:20.080000pt;}
._17_c00221{width:22.480027pt;}
._15_c00221{width:25.415904pt;}
.fs1_c00221{font-size:45.333333pt;}
.fs0_c00221{font-size:53.333333pt;}
.y0_c00221{bottom:0.000000pt;}
.y23_c00221{bottom:57.600020pt;}
.y22_c00221{bottom:97.933353pt;}
.y21_c00221{bottom:111.400020pt;}
.y20_c00221{bottom:125.466686pt;}
.y1f_c00221{bottom:138.600020pt;}
.y1e_c00221{bottom:152.333353pt;}
.y1d_c00221{bottom:165.800020pt;}
.y1c_c00221{bottom:179.533353pt;}
.y1b_c00221{bottom:193.000020pt;}
.y1a_c00221{bottom:287.066686pt;}
.y19_c00221{bottom:303.666686pt;}
.y18_c00221{bottom:321.266686pt;}
.y17_c00221{bottom:338.600020pt;}
.y16_c00221{bottom:355.533353pt;}
.y15_c00221{bottom:373.133353pt;}
.y14_c00221{bottom:390.400020pt;}
.y13_c00221{bottom:407.400020pt;}
.y12_c00221{bottom:425.000020pt;}
.y11_c00221{bottom:442.266686pt;}
.y10_c00221{bottom:459.533353pt;}
.yf_c00221{bottom:476.800020pt;}
.ye_c00221{bottom:493.800020pt;}
.yd_c00221{bottom:511.066686pt;}
.yc_c00221{bottom:545.000020pt;}
.ya_c00221{bottom:595.533353pt;}
.y9_c00221{bottom:613.133353pt;}
.y8_c00221{bottom:630.400020pt;}
.y7_c00221{bottom:647.400020pt;}
.y6_c00221{bottom:665.000020pt;}
.y5_c00221{bottom:681.933353pt;}
.y4_c00221{bottom:699.200020pt;}
.y3_c00221{bottom:716.200020pt;}
.y2_c00221{bottom:733.800020pt;}
.y1_c00221{bottom:750.733353pt;}
.yb_c00221{bottom:788.200020pt;}
.h3_c00221{height:44.470052pt;}
.h4_c00221{height:44.492188pt;}
.h2_c00221{height:52.343750pt;}
.h1_c00221{height:851.333333pt;}
.h0_c00221{height:851.533333pt;}
.w0_c00221{width:570.533360pt;}
.w1_c00221{width:570.666667pt;}
.x0_c00221{left:0.000000pt;}
.x1_c00221{left:72.000000pt;}
.x4_c00221{left:78.066667pt;}
.x3_c00221{left:86.400000pt;}
.x5_c00221{left:107.533333pt;}
.x2_c00221{left:128.666667pt;}
.x6_c00221{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_669df2dfd529babe4818e256.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00222;src:url('chunks/assets/font_7c5a4ac6cbaebd6dccafb7c3.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls1_c00222{letter-spacing:0.000000px;}
.ls0_c00222{letter-spacing:1.199979px;}
.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;}
}
.ws2_c00222{word-spacing:-15.000000px;}
.ws1_c00222{word-spacing:-13.949979px;}
.ws0_c00222{word-spacing:-12.750000px;}
.ws3_c00222{word-spacing:0.000000px;}
._11_c00222{margin-left:-21.660000px;}
._10_c00222{margin-left:-12.840000px;}
._2_c00222{margin-left:-11.700000px;}
._b_c00222{margin-left:-10.260000px;}
._17_c00222{margin-left:-8.400006px;}
._16_c00222{margin-left:-7.227036px;}
._18_c00222{margin-left:-6.180030px;}
._13_c00222{margin-left:-4.499985px;}
._9_c00222{margin-left:-3.300000px;}
._8_c00222{margin-left:-1.560000px;}
._0_c00222{width:1.440000px;}
._4_c00222{width:2.880000px;}
._a_c00222{width:4.200000px;}
._5_c00222{width:5.400000px;}
._1_c00222{width:7.020000px;}
._3_c00222{width:8.400000px;}
._6_c00222{width:10.020000px;}
._7_c00222{width:11.880000px;}
._15_c00222{width:13.796964px;}
._14_c00222{width:15.117012px;}
._d_c00222{width:16.500000px;}
._e_c00222{width:17.940000px;}
._c_c00222{width:19.500000px;}
._f_c00222{width:21.240000px;}
._19_c00222{width:24.090000px;}
._12_c00222{width:25.289979px;}
._1a_c00222{width:26.789991px;}
.fc1_c00222{color:transparent;}
.fc0_c00222{color:rgb(35,31,32);}
.fs1_c00222{font-size:51.000000px;}
.fs0_c00222{font-size:60.000000px;}
.y0_c00222{bottom:0.000000px;}
.y2b_c00222{bottom:64.800022px;}
.y2a_c00222{bottom:110.175022px;}
.y29_c00222{bottom:125.325022px;}
.y28_c00222{bottom:140.775022px;}
.y27_c00222{bottom:155.925022px;}
.y26_c00222{bottom:171.375022px;}
.y25_c00222{bottom:186.525022px;}
.y24_c00222{bottom:201.975022px;}
.y23_c00222{bottom:217.125022px;}
.y22_c00222{bottom:232.575022px;}
.y21_c00222{bottom:247.725022px;}
.y20_c00222{bottom:263.550022px;}
.y1f_c00222{bottom:278.325022px;}
.y1e_c00222{bottom:293.775022px;}
.y1d_c00222{bottom:309.225022px;}
.y1c_c00222{bottom:324.375022px;}
.y1b_c00222{bottom:339.525022px;}
.y1a_c00222{bottom:354.975022px;}
.y19_c00222{bottom:370.425022px;}
.y18_c00222{bottom:385.950022px;}
.y17_c00222{bottom:400.725022px;}
.y16_c00222{bottom:416.175022px;}
.y15_c00222{bottom:431.325022px;}
.y14_c00222{bottom:447.150022px;}
.y13_c00222{bottom:462.225022px;}
.y12_c00222{bottom:477.375022px;}
.y10_c00222{bottom:553.350022px;}
.yf_c00222{bottom:573.150022px;}
.ye_c00222{bottom:592.575022px;}
.yd_c00222{bottom:611.625022px;}
.yc_c00222{bottom:631.425022px;}
.yb_c00222{bottom:650.550022px;}
.ya_c00222{bottom:670.350022px;}
.y9_c00222{bottom:689.625022px;}
.y8_c00222{bottom:709.125022px;}
.y7_c00222{bottom:728.625022px;}
.y6_c00222{bottom:748.125022px;}
.y5_c00222{bottom:767.175022px;}
.y4_c00222{bottom:786.225022px;}
.y3_c00222{bottom:805.725022px;}
.y2_c00222{bottom:825.525022px;}
.y1_c00222{bottom:844.950022px;}
.y11_c00222{bottom:886.725022px;}
.h3_c00222{height:50.028809px;}
.h4_c00222{height:50.053711px;}
.h2_c00222{height:58.886719px;}
.h1_c00222{height:957.750000px;}
.h0_c00222{height:957.975000px;}
.w1_c00222{width:643.500000px;}
.w0_c00222{width:643.650000px;}
.x0_c00222{left:0.000000px;}
.x1_c00222{left:91.425000px;}
.x3_c00222{left:97.575000px;}
.x2_c00222{left:107.250000px;}
.x4_c00222{left:131.025000px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls1_c00222{letter-spacing:0.000000pt;}
.ls0_c00222{letter-spacing:1.066648pt;}
.ws2_c00222{word-spacing:-13.333333pt;}
.ws1_c00222{word-spacing:-12.399981pt;}
.ws0_c00222{word-spacing:-11.333333pt;}
.ws3_c00222{word-spacing:0.000000pt;}
._11_c00222{margin-left:-19.253333pt;}
._10_c00222{margin-left:-11.413333pt;}
._2_c00222{margin-left:-10.400000pt;}
._b_c00222{margin-left:-9.120000pt;}
._17_c00222{margin-left:-7.466672pt;}
._16_c00222{margin-left:-6.424032pt;}
._18_c00222{margin-left:-5.493360pt;}
._13_c00222{margin-left:-3.999987pt;}
._9_c00222{margin-left:-2.933333pt;}
._8_c00222{margin-left:-1.386667pt;}
._0_c00222{width:1.280000pt;}
._4_c00222{width:2.560000pt;}
._a_c00222{width:3.733333pt;}
._5_c00222{width:4.800000pt;}
._1_c00222{width:6.240000pt;}
._3_c00222{width:7.466667pt;}
._6_c00222{width:8.906667pt;}
._7_c00222{width:10.560000pt;}
._15_c00222{width:12.263968pt;}
._14_c00222{width:13.437344pt;}
._d_c00222{width:14.666667pt;}
._e_c00222{width:15.946667pt;}
._c_c00222{width:17.333333pt;}
._f_c00222{width:18.880000pt;}
._19_c00222{width:21.413333pt;}
._12_c00222{width:22.479981pt;}
._1a_c00222{width:23.813325pt;}
.fs1_c00222{font-size:45.333333pt;}
.fs0_c00222{font-size:53.333333pt;}
.y0_c00222{bottom:0.000000pt;}
.y2b_c00222{bottom:57.600020pt;}
.y2a_c00222{bottom:97.933353pt;}
.y29_c00222{bottom:111.400020pt;}
.y28_c00222{bottom:125.133353pt;}
.y27_c00222{bottom:138.600020pt;}
.y26_c00222{bottom:152.333353pt;}
.y25_c00222{bottom:165.800020pt;}
.y24_c00222{bottom:179.533353pt;}
.y23_c00222{bottom:193.000020pt;}
.y22_c00222{bottom:206.733353pt;}
.y21_c00222{bottom:220.200020pt;}
.y20_c00222{bottom:234.266686pt;}
.y1f_c00222{bottom:247.400020pt;}
.y1e_c00222{bottom:261.133353pt;}
.y1d_c00222{bottom:274.866686pt;}
.y1c_c00222{bottom:288.333353pt;}
.y1b_c00222{bottom:301.800020pt;}
.y1a_c00222{bottom:315.533353pt;}
.y19_c00222{bottom:329.266686pt;}
.y18_c00222{bottom:343.066686pt;}
.y17_c00222{bottom:356.200020pt;}
.y16_c00222{bottom:369.933353pt;}
.y15_c00222{bottom:383.400020pt;}
.y14_c00222{bottom:397.466686pt;}
.y13_c00222{bottom:410.866686pt;}
.y12_c00222{bottom:424.333353pt;}
.y10_c00222{bottom:491.866686pt;}
.yf_c00222{bottom:509.466686pt;}
.ye_c00222{bottom:526.733353pt;}
.yd_c00222{bottom:543.666686pt;}
.yc_c00222{bottom:561.266686pt;}
.yb_c00222{bottom:578.266686pt;}
.ya_c00222{bottom:595.866686pt;}
.y9_c00222{bottom:613.000020pt;}
.y8_c00222{bottom:630.333353pt;}
.y7_c00222{bottom:647.666686pt;}
.y6_c00222{bottom:665.000020pt;}
.y5_c00222{bottom:681.933353pt;}
.y4_c00222{bottom:698.866686pt;}
.y3_c00222{bottom:716.200020pt;}
.y2_c00222{bottom:733.800020pt;}
.y1_c00222{bottom:751.066686pt;}
.y11_c00222{bottom:788.200020pt;}
.h3_c00222{height:44.470052pt;}
.h4_c00222{height:44.492188pt;}
.h2_c00222{height:52.343750pt;}
.h1_c00222{height:851.333333pt;}
.h0_c00222{height:851.533333pt;}
.w1_c00222{width:572.000000pt;}
.w0_c00222{width:572.133333pt;}
.x0_c00222{left:0.000000pt;}
.x1_c00222{left:81.266667pt;}
.x3_c00222{left:86.733333pt;}
.x2_c00222{left:95.333333pt;}
.x4_c00222{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb7dafa4edfafd2f9891add8.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00223;src:url('chunks/assets/font_5b5a561047612e4cae25e60f.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00223{letter-spacing:0.000000px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00223{word-spacing:-15.000000px;}
.ws0_c00223{word-spacing:-12.750000px;}
.ws2_c00223{word-spacing:0.000000px;}
._1_c00223{margin-left:-13.740000px;}
._f_c00223{margin-left:-12.660000px;}
._d_c00223{margin-left:-11.580000px;}
._16_c00223{margin-left:-5.016030px;}
._15_c00223{margin-left:-3.960015px;}
._b_c00223{margin-left:-2.640000px;}
._8_c00223{margin-left:-1.260000px;}
._0_c00223{width:1.860000px;}
._4_c00223{width:2.940000px;}
._e_c00223{width:4.020000px;}
._5_c00223{width:5.100000px;}
._7_c00223{width:6.360000px;}
._6_c00223{width:7.740000px;}
._a_c00223{width:8.940000px;}
._9_c00223{width:10.740000px;}
._c_c00223{width:12.120000px;}
._3_c00223{width:13.140000px;}
._13_c00223{width:14.178021px;}
._2_c00223{width:17.220000px;}
._12_c00223{width:18.335979px;}
._14_c00223{width:19.593009px;}
._11_c00223{width:20.604021px;}
._17_c00223{width:26.850030px;}
._10_c00223{width:29.609979px;}
.fc1_c00223{color:transparent;}
.fc0_c00223{color:rgb(35,31,32);}
.fs1_c00223{font-size:51.000000px;}
.fs0_c00223{font-size:60.000000px;}
.y0_c00223{bottom:0.000000px;}
.y26_c00223{bottom:64.425022px;}
.y25_c00223{bottom:110.550022px;}
.y24_c00223{bottom:125.625022px;}
.y23_c00223{bottom:140.775022px;}
.y22_c00223{bottom:155.925022px;}
.y21_c00223{bottom:171.750022px;}
.y20_c00223{bottom:186.825022px;}
.y1f_c00223{bottom:202.350022px;}
.y1e_c00223{bottom:217.125022px;}
.y1d_c00223{bottom:232.950022px;}
.y1c_c00223{bottom:248.025022px;}
.y1b_c00223{bottom:263.175022px;}
.y1a_c00223{bottom:278.625022px;}
.y19_c00223{bottom:293.775022px;}
.y18_c00223{bottom:308.925022px;}
.y17_c00223{bottom:380.925022px;}
.y16_c00223{bottom:399.975022px;}
.y15_c00223{bottom:419.400022px;}
.y14_c00223{bottom:438.825022px;}
.y13_c00223{bottom:458.625022px;}
.y12_c00223{bottom:477.750022px;}
.y11_c00223{bottom:497.175022px;}
.y10_c00223{bottom:516.600022px;}
.yf_c00223{bottom:536.400022px;}
.ye_c00223{bottom:574.200022px;}
.yc_c00223{bottom:631.425022px;}
.yb_c00223{bottom:650.550022px;}
.ya_c00223{bottom:669.975022px;}
.y9_c00223{bottom:689.625022px;}
.y8_c00223{bottom:709.125022px;}
.y7_c00223{bottom:728.625022px;}
.y6_c00223{bottom:748.125022px;}
.y5_c00223{bottom:767.550022px;}
.y4_c00223{bottom:786.600022px;}
.y3_c00223{bottom:806.025022px;}
.y2_c00223{bottom:825.150022px;}
.y1_c00223{bottom:844.575022px;}
.yd_c00223{bottom:886.725022px;}
.h3_c00223{height:50.028809px;}
.h4_c00223{height:50.053711px;}
.h2_c00223{height:58.886719px;}
.h1_c00223{height:957.750000px;}
.h0_c00223{height:957.975000px;}
.w0_c00223{width:641.850030px;}
.w1_c00223{width:642.000000px;}
.x0_c00223{left:0.000000px;}
.x1_c00223{left:81.000000px;}
.x3_c00223{left:87.825000px;}
.x4_c00223{left:121.650000px;}
.x2_c00223{left:144.750000px;}
.x5_c00223{left:531.375000px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls0_c00223{letter-spacing:0.000000pt;}
.ws1_c00223{word-spacing:-13.333333pt;}
.ws0_c00223{word-spacing:-11.333333pt;}
.ws2_c00223{word-spacing:0.000000pt;}
._1_c00223{margin-left:-12.213333pt;}
._f_c00223{margin-left:-11.253333pt;}
._d_c00223{margin-left:-10.293333pt;}
._16_c00223{margin-left:-4.458693pt;}
._15_c00223{margin-left:-3.520013pt;}
._b_c00223{margin-left:-2.346667pt;}
._8_c00223{margin-left:-1.120000pt;}
._0_c00223{width:1.653333pt;}
._4_c00223{width:2.613333pt;}
._e_c00223{width:3.573333pt;}
._5_c00223{width:4.533333pt;}
._7_c00223{width:5.653333pt;}
._6_c00223{width:6.880000pt;}
._a_c00223{width:7.946667pt;}
._9_c00223{width:9.546667pt;}
._c_c00223{width:10.773333pt;}
._3_c00223{width:11.680000pt;}
._13_c00223{width:12.602685pt;}
._2_c00223{width:15.306667pt;}
._12_c00223{width:16.298648pt;}
._14_c00223{width:17.416008pt;}
._11_c00223{width:18.314685pt;}
._17_c00223{width:23.866693pt;}
._10_c00223{width:26.319981pt;}
.fs1_c00223{font-size:45.333333pt;}
.fs0_c00223{font-size:53.333333pt;}
.y0_c00223{bottom:0.000000pt;}
.y26_c00223{bottom:57.266686pt;}
.y25_c00223{bottom:98.266686pt;}
.y24_c00223{bottom:111.666686pt;}
.y23_c00223{bottom:125.133353pt;}
.y22_c00223{bottom:138.600020pt;}
.y21_c00223{bottom:152.666686pt;}
.y20_c00223{bottom:166.066686pt;}
.y1f_c00223{bottom:179.866686pt;}
.y1e_c00223{bottom:193.000020pt;}
.y1d_c00223{bottom:207.066686pt;}
.y1c_c00223{bottom:220.466686pt;}
.y1b_c00223{bottom:233.933353pt;}
.y1a_c00223{bottom:247.666686pt;}
.y19_c00223{bottom:261.133353pt;}
.y18_c00223{bottom:274.600020pt;}
.y17_c00223{bottom:338.600020pt;}
.y16_c00223{bottom:355.533353pt;}
.y15_c00223{bottom:372.800020pt;}
.y14_c00223{bottom:390.066686pt;}
.y13_c00223{bottom:407.666686pt;}
.y12_c00223{bottom:424.666686pt;}
.y11_c00223{bottom:441.933353pt;}
.y10_c00223{bottom:459.200020pt;}
.yf_c00223{bottom:476.800020pt;}
.ye_c00223{bottom:510.400020pt;}
.yc_c00223{bottom:561.266686pt;}
.yb_c00223{bottom:578.266686pt;}
.ya_c00223{bottom:595.533353pt;}
.y9_c00223{bottom:613.000020pt;}
.y8_c00223{bottom:630.333353pt;}
.y7_c00223{bottom:647.666686pt;}
.y6_c00223{bottom:665.000020pt;}
.y5_c00223{bottom:682.266686pt;}
.y4_c00223{bottom:699.200020pt;}
.y3_c00223{bottom:716.466686pt;}
.y2_c00223{bottom:733.466686pt;}
.y1_c00223{bottom:750.733353pt;}
.yd_c00223{bottom:788.200020pt;}
.h3_c00223{height:44.470052pt;}
.h4_c00223{height:44.492188pt;}
.h2_c00223{height:52.343750pt;}
.h1_c00223{height:851.333333pt;}
.h0_c00223{height:851.533333pt;}
.w0_c00223{width:570.533360pt;}
.w1_c00223{width:570.666667pt;}
.x0_c00223{left:0.000000pt;}
.x1_c00223{left:72.000000pt;}
.x3_c00223{left:78.066667pt;}
.x4_c00223{left:108.133333pt;}
.x2_c00223{left:128.666667pt;}
.x5_c00223{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_162f0a3be82b84e9379c8214.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00224;src:url('chunks/assets/font_42b562849e56e0d6c8bd91af.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00224{letter-spacing:0.000000px;}
.sc__c00224{text-shadow:none;}
.sc0_c00224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00224{-webkit-text-stroke:0px transparent;}
.sc0_c00224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00224{word-spacing:-15.000000px;}
.ws1_c00224{word-spacing:-12.750000px;}
.ws2_c00224{word-spacing:0.000000px;}
._9_c00224{margin-left:-12.960000px;}
._3_c00224{margin-left:-11.580000px;}
._4_c00224{margin-left:-10.440000px;}
._16_c00224{margin-left:-9.062979px;}
._10_c00224{margin-left:-7.860000px;}
._14_c00224{margin-left:-5.502000px;}
._12_c00224{margin-left:-3.900000px;}
._a_c00224{margin-left:-2.760000px;}
._8_c00224{margin-left:-1.620000px;}
._2_c00224{width:1.800000px;}
._0_c00224{width:3.300000px;}
._1_c00224{width:4.620000px;}
._6_c00224{width:6.360000px;}
._7_c00224{width:8.160000px;}
._5_c00224{width:9.300000px;}
._d_c00224{width:11.100000px;}
._c_c00224{width:12.120000px;}
._b_c00224{width:13.500000px;}
._15_c00224{width:14.549994px;}
._e_c00224{width:16.320000px;}
._f_c00224{width:17.640000px;}
._13_c00224{width:22.349988px;}
._11_c00224{width:23.700000px;}
.fc1_c00224{color:transparent;}
.fc0_c00224{color:rgb(35,31,32);}
.fs1_c00224{font-size:51.000000px;}
.fs0_c00224{font-size:60.000000px;}
.y0_c00224{bottom:0.000000px;}
.y29_c00224{bottom:64.800022px;}
.y28_c00224{bottom:110.175022px;}
.y27_c00224{bottom:125.625022px;}
.y26_c00224{bottom:141.150022px;}
.y25_c00224{bottom:156.225022px;}
.y24_c00224{bottom:171.750022px;}
.y23_c00224{bottom:186.825022px;}
.y22_c00224{bottom:201.975022px;}
.y21_c00224{bottom:217.125022px;}
.y20_c00224{bottom:232.575022px;}
.y1f_c00224{bottom:248.025022px;}
.y1e_c00224{bottom:263.550022px;}
.y1d_c00224{bottom:278.325022px;}
.y1c_c00224{bottom:293.775022px;}
.y1b_c00224{bottom:308.925022px;}
.y1a_c00224{bottom:324.375022px;}
.y19_c00224{bottom:339.525022px;}
.y18_c00224{bottom:354.975022px;}
.y17_c00224{bottom:370.125022px;}
.y15_c00224{bottom:456.150022px;}
.y14_c00224{bottom:475.575022px;}
.y13_c00224{bottom:495.300022px;}
.y12_c00224{bottom:514.800022px;}
.y11_c00224{bottom:534.300022px;}
.y10_c00224{bottom:553.725022px;}
.yf_c00224{bottom:573.150022px;}
.ye_c00224{bottom:592.575022px;}
.yd_c00224{bottom:611.625022px;}
.yc_c00224{bottom:631.425022px;}
.yb_c00224{bottom:650.925022px;}
.ya_c00224{bottom:670.350022px;}
.y9_c00224{bottom:689.400022px;}
.y8_c00224{bottom:709.125022px;}
.y7_c00224{bottom:728.625022px;}
.y6_c00224{bottom:748.125022px;}
.y5_c00224{bottom:767.550022px;}
.y4_c00224{bottom:786.600022px;}
.y3_c00224{bottom:806.025022px;}
.y2_c00224{bottom:825.150022px;}
.y1_c00224{bottom:844.575022px;}
.y16_c00224{bottom:886.725022px;}
.h3_c00224{height:50.028809px;}
.h4_c00224{height:50.053711px;}
.h2_c00224{height:58.886719px;}
.h1_c00224{height:957.750000px;}
.h0_c00224{height:957.975000px;}
.w1_c00224{width:643.500000px;}
.w0_c00224{width:643.650000px;}
.x0_c00224{left:0.000000px;}
.x3_c00224{left:90.375000px;}
.x1_c00224{left:91.425000px;}
.x4_c00224{left:97.575000px;}
.x2_c00224{left:107.250000px;}
.x5_c00224{left:130.650000px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls0_c00224{letter-spacing:0.000000pt;}
.ws0_c00224{word-spacing:-13.333333pt;}
.ws1_c00224{word-spacing:-11.333333pt;}
.ws2_c00224{word-spacing:0.000000pt;}
._9_c00224{margin-left:-11.520000pt;}
._3_c00224{margin-left:-10.293333pt;}
._4_c00224{margin-left:-9.280000pt;}
._16_c00224{margin-left:-8.055981pt;}
._10_c00224{margin-left:-6.986667pt;}
._14_c00224{margin-left:-4.890667pt;}
._12_c00224{margin-left:-3.466667pt;}
._a_c00224{margin-left:-2.453333pt;}
._8_c00224{margin-left:-1.440000pt;}
._2_c00224{width:1.600000pt;}
._0_c00224{width:2.933333pt;}
._1_c00224{width:4.106667pt;}
._6_c00224{width:5.653333pt;}
._7_c00224{width:7.253333pt;}
._5_c00224{width:8.266667pt;}
._d_c00224{width:9.866667pt;}
._c_c00224{width:10.773333pt;}
._b_c00224{width:12.000000pt;}
._15_c00224{width:12.933328pt;}
._e_c00224{width:14.506667pt;}
._f_c00224{width:15.680000pt;}
._13_c00224{width:19.866656pt;}
._11_c00224{width:21.066667pt;}
.fs1_c00224{font-size:45.333333pt;}
.fs0_c00224{font-size:53.333333pt;}
.y0_c00224{bottom:0.000000pt;}
.y29_c00224{bottom:57.600020pt;}
.y28_c00224{bottom:97.933353pt;}
.y27_c00224{bottom:111.666686pt;}
.y26_c00224{bottom:125.466686pt;}
.y25_c00224{bottom:138.866686pt;}
.y24_c00224{bottom:152.666686pt;}
.y23_c00224{bottom:166.066686pt;}
.y22_c00224{bottom:179.533353pt;}
.y21_c00224{bottom:193.000020pt;}
.y20_c00224{bottom:206.733353pt;}
.y1f_c00224{bottom:220.466686pt;}
.y1e_c00224{bottom:234.266686pt;}
.y1d_c00224{bottom:247.400020pt;}
.y1c_c00224{bottom:261.133353pt;}
.y1b_c00224{bottom:274.600020pt;}
.y1a_c00224{bottom:288.333353pt;}
.y19_c00224{bottom:301.800020pt;}
.y18_c00224{bottom:315.533353pt;}
.y17_c00224{bottom:329.000020pt;}
.y15_c00224{bottom:405.466686pt;}
.y14_c00224{bottom:422.733353pt;}
.y13_c00224{bottom:440.266686pt;}
.y12_c00224{bottom:457.600020pt;}
.y11_c00224{bottom:474.933353pt;}
.y10_c00224{bottom:492.200020pt;}
.yf_c00224{bottom:509.466686pt;}
.ye_c00224{bottom:526.733353pt;}
.yd_c00224{bottom:543.666686pt;}
.yc_c00224{bottom:561.266686pt;}
.yb_c00224{bottom:578.600020pt;}
.ya_c00224{bottom:595.866686pt;}
.y9_c00224{bottom:612.800020pt;}
.y8_c00224{bottom:630.333353pt;}
.y7_c00224{bottom:647.666686pt;}
.y6_c00224{bottom:665.000020pt;}
.y5_c00224{bottom:682.266686pt;}
.y4_c00224{bottom:699.200020pt;}
.y3_c00224{bottom:716.466686pt;}
.y2_c00224{bottom:733.466686pt;}
.y1_c00224{bottom:750.733353pt;}
.y16_c00224{bottom:788.200020pt;}
.h3_c00224{height:44.470052pt;}
.h4_c00224{height:44.492188pt;}
.h2_c00224{height:52.343750pt;}
.h1_c00224{height:851.333333pt;}
.h0_c00224{height:851.533333pt;}
.w1_c00224{width:572.000000pt;}
.w0_c00224{width:572.133333pt;}
.x0_c00224{left:0.000000pt;}
.x3_c00224{left:80.333333pt;}
.x1_c00224{left:81.266667pt;}
.x4_c00224{left:86.733333pt;}
.x2_c00224{left:95.333333pt;}
.x5_c00224{left:116.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d32e03dd42d6a0f8102df47c.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00225;src:url('chunks/assets/font_40464d0c37d0cea77a1b2449.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00225{letter-spacing:0.000000px;}
.sc__c00225{text-shadow:none;}
.sc0_c00225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00225{-webkit-text-stroke:0px transparent;}
.sc0_c00225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00225{word-spacing:-15.000000px;}
.ws1_c00225{word-spacing:-12.750000px;}
.ws2_c00225{word-spacing:0.000000px;}
._12_c00225{margin-left:-12.360000px;}
._13_c00225{margin-left:-11.040000px;}
._17_c00225{margin-left:-5.421030px;}
._0_c00225{margin-left:-4.200000px;}
._1_c00225{margin-left:-2.100000px;}
._11_c00225{margin-left:-1.020000px;}
._4_c00225{width:1.080000px;}
._3_c00225{width:2.160000px;}
._6_c00225{width:3.300000px;}
._8_c00225{width:5.040000px;}
._9_c00225{width:6.540000px;}
._2_c00225{width:8.100000px;}
._a_c00225{width:9.780000px;}
._10_c00225{width:11.100000px;}
._f_c00225{width:12.420000px;}
._e_c00225{width:13.860000px;}
._7_c00225{width:17.100000px;}
._5_c00225{width:19.080000px;}
._14_c00225{width:21.300000px;}
._16_c00225{width:22.499877px;}
._15_c00225{width:24.150000px;}
._d_c00225{width:25.260000px;}
._b_c00225{width:26.760000px;}
._c_c00225{width:27.780000px;}
.fc1_c00225{color:transparent;}
.fc0_c00225{color:rgb(35,31,32);}
.fs1_c00225{font-size:51.000000px;}
.fs0_c00225{font-size:60.000000px;}
.y0_c00225{bottom:0.000000px;}
.y20_c00225{bottom:64.425022px;}
.y1f_c00225{bottom:110.175022px;}
.y1e_c00225{bottom:125.325022px;}
.y1d_c00225{bottom:141.150022px;}
.y1c_c00225{bottom:155.925022px;}
.y1b_c00225{bottom:232.200022px;}
.y1a_c00225{bottom:252.000022px;}
.y19_c00225{bottom:271.125022px;}
.y18_c00225{bottom:309.600022px;}
.y17_c00225{bottom:366.525022px;}
.y16_c00225{bottom:385.575022px;}
.y15_c00225{bottom:404.925022px;}
.y14_c00225{bottom:424.425022px;}
.y13_c00225{bottom:443.925022px;}
.y12_c00225{bottom:463.350022px;}
.y11_c00225{bottom:482.400022px;}
.y10_c00225{bottom:502.200022px;}
.yf_c00225{bottom:521.325022px;}
.ye_c00225{bottom:541.125022px;}
.yd_c00225{bottom:560.175022px;}
.yc_c00225{bottom:579.975022px;}
.yb_c00225{bottom:599.400022px;}
.ya_c00225{bottom:637.200022px;}
.y8_c00225{bottom:694.125022px;}
.y7_c00225{bottom:713.925022px;}
.y6_c00225{bottom:733.350022px;}
.y5_c00225{bottom:752.775022px;}
.y4_c00225{bottom:772.200022px;}
.y3_c00225{bottom:791.325022px;}
.y2_c00225{bottom:810.750022px;}
.y1_c00225{bottom:844.950022px;}
.y9_c00225{bottom:886.725022px;}
.h3_c00225{height:50.028809px;}
.h4_c00225{height:50.053711px;}
.h2_c00225{height:58.886719px;}
.h1_c00225{height:957.750000px;}
.h0_c00225{height:957.975000px;}
.w0_c00225{width:641.850030px;}
.w1_c00225{width:642.000000px;}
.x0_c00225{left:0.000000px;}
.x2_c00225{left:80.250000px;}
.x1_c00225{left:81.375000px;}
.x4_c00225{left:87.825000px;}
.x5_c00225{left:121.350000px;}
.x3_c00225{left:144.750000px;}
.x6_c00225{left:531.375000px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls0_c00225{letter-spacing:0.000000pt;}
.ws0_c00225{word-spacing:-13.333333pt;}
.ws1_c00225{word-spacing:-11.333333pt;}
.ws2_c00225{word-spacing:0.000000pt;}
._12_c00225{margin-left:-10.986667pt;}
._13_c00225{margin-left:-9.813333pt;}
._17_c00225{margin-left:-4.818693pt;}
._0_c00225{margin-left:-3.733333pt;}
._1_c00225{margin-left:-1.866667pt;}
._11_c00225{margin-left:-0.906667pt;}
._4_c00225{width:0.960000pt;}
._3_c00225{width:1.920000pt;}
._6_c00225{width:2.933333pt;}
._8_c00225{width:4.480000pt;}
._9_c00225{width:5.813333pt;}
._2_c00225{width:7.200000pt;}
._a_c00225{width:8.693333pt;}
._10_c00225{width:9.866667pt;}
._f_c00225{width:11.040000pt;}
._e_c00225{width:12.320000pt;}
._7_c00225{width:15.200000pt;}
._5_c00225{width:16.960000pt;}
._14_c00225{width:18.933333pt;}
._16_c00225{width:19.999891pt;}
._15_c00225{width:21.466667pt;}
._d_c00225{width:22.453333pt;}
._b_c00225{width:23.786667pt;}
._c_c00225{width:24.693333pt;}
.fs1_c00225{font-size:45.333333pt;}
.fs0_c00225{font-size:53.333333pt;}
.y0_c00225{bottom:0.000000pt;}
.y20_c00225{bottom:57.266686pt;}
.y1f_c00225{bottom:97.933353pt;}
.y1e_c00225{bottom:111.400020pt;}
.y1d_c00225{bottom:125.466686pt;}
.y1c_c00225{bottom:138.600020pt;}
.y1b_c00225{bottom:206.400020pt;}
.y1a_c00225{bottom:224.000020pt;}
.y19_c00225{bottom:241.000020pt;}
.y18_c00225{bottom:275.200020pt;}
.y17_c00225{bottom:325.800020pt;}
.y16_c00225{bottom:342.733353pt;}
.y15_c00225{bottom:359.933353pt;}
.y14_c00225{bottom:377.266686pt;}
.y13_c00225{bottom:394.600020pt;}
.y12_c00225{bottom:411.866686pt;}
.y11_c00225{bottom:428.800020pt;}
.y10_c00225{bottom:446.400020pt;}
.yf_c00225{bottom:463.400020pt;}
.ye_c00225{bottom:481.000020pt;}
.yd_c00225{bottom:497.933353pt;}
.yc_c00225{bottom:515.533353pt;}
.yb_c00225{bottom:532.800020pt;}
.ya_c00225{bottom:566.400020pt;}
.y8_c00225{bottom:617.000020pt;}
.y7_c00225{bottom:634.600020pt;}
.y6_c00225{bottom:651.866686pt;}
.y5_c00225{bottom:669.133353pt;}
.y4_c00225{bottom:686.400020pt;}
.y3_c00225{bottom:703.400020pt;}
.y2_c00225{bottom:720.666686pt;}
.y1_c00225{bottom:751.066686pt;}
.y9_c00225{bottom:788.200020pt;}
.h3_c00225{height:44.470052pt;}
.h4_c00225{height:44.492188pt;}
.h2_c00225{height:52.343750pt;}
.h1_c00225{height:851.333333pt;}
.h0_c00225{height:851.533333pt;}
.w0_c00225{width:570.533360pt;}
.w1_c00225{width:570.666667pt;}
.x0_c00225{left:0.000000pt;}
.x2_c00225{left:71.333333pt;}
.x1_c00225{left:72.333333pt;}
.x4_c00225{left:78.066667pt;}
.x5_c00225{left:107.866667pt;}
.x3_c00225{left:128.666667pt;}
.x6_c00225{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8cbfc9bd55eb062211636808.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00226;src:url('chunks/assets/font_8fdc76338889f525243fb2a5.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00226{letter-spacing:0.000000px;}
.sc__c00226{text-shadow:none;}
.sc0_c00226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00226{-webkit-text-stroke:0px transparent;}
.sc0_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00226{word-spacing:-15.000000px;}
.ws0_c00226{word-spacing:-12.750000px;}
.ws2_c00226{word-spacing:0.000000px;}
._4_c00226{margin-left:-12.900000px;}
._2_c00226{margin-left:-10.860000px;}
._d_c00226{margin-left:-9.780000px;}
._c_c00226{margin-left:-7.740000px;}
._b_c00226{margin-left:-5.580000px;}
._a_c00226{margin-left:-4.158039px;}
._16_c00226{margin-left:-3.149997px;}
._3_c00226{margin-left:-2.100000px;}
._9_c00226{margin-left:-1.020000px;}
._0_c00226{width:1.500000px;}
._7_c00226{width:3.420000px;}
._8_c00226{width:5.040000px;}
._e_c00226{width:6.060000px;}
._f_c00226{width:7.140000px;}
._6_c00226{width:8.640000px;}
._5_c00226{width:10.200000px;}
._1_c00226{width:12.540000px;}
._14_c00226{width:13.920000px;}
._18_c00226{width:15.317952px;}
._13_c00226{width:16.800000px;}
._10_c00226{width:17.820000px;}
._11_c00226{width:19.260000px;}
._12_c00226{width:20.280000px;}
._1a_c00226{width:24.150000px;}
._17_c00226{width:25.349979px;}
._19_c00226{width:27.899988px;}
._15_c00226{width:28.950000px;}
.fc1_c00226{color:transparent;}
.fc0_c00226{color:rgb(35,31,32);}
.fs1_c00226{font-size:51.000000px;}
.fs0_c00226{font-size:60.000000px;}
.y0_c00226{bottom:0.000000px;}
.y27_c00226{bottom:64.425022px;}
.y26_c00226{bottom:110.550022px;}
.y25_c00226{bottom:125.325022px;}
.y24_c00226{bottom:140.775022px;}
.y23_c00226{bottom:156.225022px;}
.y22_c00226{bottom:171.375022px;}
.y21_c00226{bottom:186.525022px;}
.y20_c00226{bottom:202.350022px;}
.y1f_c00226{bottom:217.125022px;}
.y1e_c00226{bottom:232.575022px;}
.y1d_c00226{bottom:247.725022px;}
.y1c_c00226{bottom:263.550022px;}
.y1b_c00226{bottom:278.325022px;}
.y1a_c00226{bottom:293.775022px;}
.y19_c00226{bottom:309.225022px;}
.y18_c00226{bottom:324.750022px;}
.y17_c00226{bottom:339.825022px;}
.y16_c00226{bottom:355.350022px;}
.y15_c00226{bottom:370.125022px;}
.y14_c00226{bottom:385.950022px;}
.y13_c00226{bottom:464.775022px;}
.y12_c00226{bottom:483.825022px;}
.y11_c00226{bottom:503.325022px;}
.y10_c00226{bottom:523.125022px;}
.yf_c00226{bottom:542.550022px;}
.ye_c00226{bottom:561.975022px;}
.yd_c00226{bottom:581.025022px;}
.yc_c00226{bottom:600.825022px;}
.yb_c00226{bottom:619.950022px;}
.ya_c00226{bottom:639.375022px;}
.y9_c00226{bottom:658.425022px;}
.y8_c00226{bottom:678.225022px;}
.y7_c00226{bottom:697.725022px;}
.y6_c00226{bottom:716.775022px;}
.y5_c00226{bottom:755.325022px;}
.y3_c00226{bottom:806.025022px;}
.y2_c00226{bottom:825.150022px;}
.y1_c00226{bottom:844.950022px;}
.y4_c00226{bottom:886.725022px;}
.h3_c00226{height:50.028809px;}
.h4_c00226{height:50.053711px;}
.h2_c00226{height:58.886719px;}
.h1_c00226{height:957.750000px;}
.h0_c00226{height:957.975000px;}
.w1_c00226{width:643.500000px;}
.w0_c00226{width:643.650000px;}
.x0_c00226{left:0.000000px;}
.x1_c00226{left:91.050000px;}
.x2_c00226{left:97.575000px;}
.x3_c00226{left:131.400000px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls0_c00226{letter-spacing:0.000000pt;}
.ws1_c00226{word-spacing:-13.333333pt;}
.ws0_c00226{word-spacing:-11.333333pt;}
.ws2_c00226{word-spacing:0.000000pt;}
._4_c00226{margin-left:-11.466667pt;}
._2_c00226{margin-left:-9.653333pt;}
._d_c00226{margin-left:-8.693333pt;}
._c_c00226{margin-left:-6.880000pt;}
._b_c00226{margin-left:-4.960000pt;}
._a_c00226{margin-left:-3.696035pt;}
._16_c00226{margin-left:-2.799997pt;}
._3_c00226{margin-left:-1.866667pt;}
._9_c00226{margin-left:-0.906667pt;}
._0_c00226{width:1.333333pt;}
._7_c00226{width:3.040000pt;}
._8_c00226{width:4.480000pt;}
._e_c00226{width:5.386667pt;}
._f_c00226{width:6.346667pt;}
._6_c00226{width:7.680000pt;}
._5_c00226{width:9.066667pt;}
._1_c00226{width:11.146667pt;}
._14_c00226{width:12.373333pt;}
._18_c00226{width:13.615957pt;}
._13_c00226{width:14.933333pt;}
._10_c00226{width:15.840000pt;}
._11_c00226{width:17.120000pt;}
._12_c00226{width:18.026667pt;}
._1a_c00226{width:21.466667pt;}
._17_c00226{width:22.533315pt;}
._19_c00226{width:24.799989pt;}
._15_c00226{width:25.733333pt;}
.fs1_c00226{font-size:45.333333pt;}
.fs0_c00226{font-size:53.333333pt;}
.y0_c00226{bottom:0.000000pt;}
.y27_c00226{bottom:57.266686pt;}
.y26_c00226{bottom:98.266686pt;}
.y25_c00226{bottom:111.400020pt;}
.y24_c00226{bottom:125.133353pt;}
.y23_c00226{bottom:138.866686pt;}
.y22_c00226{bottom:152.333353pt;}
.y21_c00226{bottom:165.800020pt;}
.y20_c00226{bottom:179.866686pt;}
.y1f_c00226{bottom:193.000020pt;}
.y1e_c00226{bottom:206.733353pt;}
.y1d_c00226{bottom:220.200020pt;}
.y1c_c00226{bottom:234.266686pt;}
.y1b_c00226{bottom:247.400020pt;}
.y1a_c00226{bottom:261.133353pt;}
.y19_c00226{bottom:274.866686pt;}
.y18_c00226{bottom:288.666686pt;}
.y17_c00226{bottom:302.066686pt;}
.y16_c00226{bottom:315.866686pt;}
.y15_c00226{bottom:329.000020pt;}
.y14_c00226{bottom:343.066686pt;}
.y13_c00226{bottom:413.133353pt;}
.y12_c00226{bottom:430.066686pt;}
.y11_c00226{bottom:447.400020pt;}
.y10_c00226{bottom:465.000020pt;}
.yf_c00226{bottom:482.266686pt;}
.ye_c00226{bottom:499.533353pt;}
.yd_c00226{bottom:516.466686pt;}
.yc_c00226{bottom:534.066686pt;}
.yb_c00226{bottom:551.066686pt;}
.ya_c00226{bottom:568.333353pt;}
.y9_c00226{bottom:585.266686pt;}
.y8_c00226{bottom:602.866686pt;}
.y7_c00226{bottom:620.200020pt;}
.y6_c00226{bottom:637.133353pt;}
.y5_c00226{bottom:671.400020pt;}
.y3_c00226{bottom:716.466686pt;}
.y2_c00226{bottom:733.466686pt;}
.y1_c00226{bottom:751.066686pt;}
.y4_c00226{bottom:788.200020pt;}
.h3_c00226{height:44.470052pt;}
.h4_c00226{height:44.492188pt;}
.h2_c00226{height:52.343750pt;}
.h1_c00226{height:851.333333pt;}
.h0_c00226{height:851.533333pt;}
.w1_c00226{width:572.000000pt;}
.w0_c00226{width:572.133333pt;}
.x0_c00226{left:0.000000pt;}
.x1_c00226{left:80.933333pt;}
.x2_c00226{left:86.733333pt;}
.x3_c00226{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8e192ad2232d23895850c310.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00227;src:url('chunks/assets/font_a400015f5253d681274db957.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.sc__c00227{text-shadow:none;}
.sc0_c00227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00227{-webkit-text-stroke:0px transparent;}
.sc0_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00227{word-spacing:-15.000000px;}
.ws1_c00227{word-spacing:-12.750000px;}
.ws2_c00227{word-spacing:0.000000px;}
._15_c00227{margin-left:-13.715628px;}
._8_c00227{margin-left:-11.816982px;}
._7_c00227{margin-left:-10.509099px;}
._c_c00227{margin-left:-8.820075px;}
._18_c00227{margin-left:-7.585623px;}
._16_c00227{margin-left:-5.714673px;}
._6_c00227{margin-left:-4.676982px;}
._3_c00227{margin-left:-3.468357px;}
._17_c00227{margin-left:-2.455902px;}
._0_c00227{margin-left:-1.383018px;}
._1_c00227{width:1.983033px;}
._2_c00227{width:3.504159px;}
._a_c00227{width:4.730901px;}
._12_c00227{width:6.277839px;}
._13_c00227{width:7.380513px;}
._11_c00227{width:8.526996px;}
._9_c00227{width:9.530901px;}
._b_c00227{width:10.670421px;}
._4_c00227{width:11.993934px;}
._5_c00227{width:13.013934px;}
._14_c00227{width:16.841952px;}
._10_c00227{width:18.671577px;}
._d_c00227{width:19.808649px;}
._e_c00227{width:20.820000px;}
._1a_c00227{width:22.274259px;}
._f_c00227{width:23.375811px;}
._19_c00227{width:24.974289px;}
._1b_c00227{width:27.186063px;}
.fc1_c00227{color:transparent;}
.fc0_c00227{color:rgb(35,31,32);}
.fs0_c00227{font-size:51.000000px;}
.fs1_c00227{font-size:60.000000px;}
.y0_c00227{bottom:0.000000px;}
.y2d_c00227{bottom:64.425022px;}
.y2c_c00227{bottom:110.175022px;}
.y2b_c00227{bottom:125.625022px;}
.y2a_c00227{bottom:140.775022px;}
.y29_c00227{bottom:155.925022px;}
.y28_c00227{bottom:171.375022px;}
.y27_c00227{bottom:186.825022px;}
.y26_c00227{bottom:201.975022px;}
.y25_c00227{bottom:217.125022px;}
.y24_c00227{bottom:232.575022px;}
.y23_c00227{bottom:248.025022px;}
.y22_c00227{bottom:263.550022px;}
.y21_c00227{bottom:278.325022px;}
.y20_c00227{bottom:293.775022px;}
.y1f_c00227{bottom:308.925022px;}
.y1e_c00227{bottom:324.375022px;}
.y1d_c00227{bottom:339.525022px;}
.y1c_c00227{bottom:355.350022px;}
.y1b_c00227{bottom:370.125022px;}
.y1a_c00227{bottom:385.950022px;}
.y19_c00227{bottom:400.725022px;}
.y18_c00227{bottom:416.175022px;}
.y17_c00227{bottom:431.625022px;}
.y16_c00227{bottom:447.150022px;}
.y15_c00227{bottom:462.225022px;}
.y14_c00227{bottom:477.375022px;}
.y13_c00227{bottom:492.525022px;}
.y12_c00227{bottom:507.975022px;}
.y11_c00227{bottom:523.125022px;}
.y10_c00227{bottom:573.150022px;}
.yf_c00227{bottom:592.200022px;}
.ye_c00227{bottom:612.000022px;}
.yd_c00227{bottom:631.425022px;}
.yc_c00227{bottom:650.550022px;}
.yb_c00227{bottom:670.350022px;}
.ya_c00227{bottom:689.775022px;}
.y9_c00227{bottom:708.825022px;}
.y8_c00227{bottom:728.325022px;}
.y7_c00227{bottom:748.125022px;}
.y6_c00227{bottom:767.175022px;}
.y5_c00227{bottom:786.225022px;}
.y4_c00227{bottom:806.025022px;}
.y3_c00227{bottom:825.150022px;}
.y2_c00227{bottom:844.575022px;}
.y1_c00227{bottom:886.725022px;}
.h2_c00227{height:50.028809px;}
.h4_c00227{height:50.053711px;}
.h3_c00227{height:58.886719px;}
.h1_c00227{height:957.750000px;}
.h0_c00227{height:957.975000px;}
.w0_c00227{width:641.850030px;}
.w1_c00227{width:642.000000px;}
.x0_c00227{left:0.000000px;}
.x2_c00227{left:81.375000px;}
.x4_c00227{left:87.825000px;}
.x3_c00227{left:97.200000px;}
.x5_c00227{left:120.975000px;}
.x1_c00227{left:144.750000px;}
.x6_c00227{left:531.375000px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls0_c00227{letter-spacing:0.000000pt;}
.ws0_c00227{word-spacing:-13.333333pt;}
.ws1_c00227{word-spacing:-11.333333pt;}
.ws2_c00227{word-spacing:0.000000pt;}
._15_c00227{margin-left:-12.191669pt;}
._8_c00227{margin-left:-10.503984pt;}
._7_c00227{margin-left:-9.341421pt;}
._c_c00227{margin-left:-7.840067pt;}
._18_c00227{margin-left:-6.742776pt;}
._16_c00227{margin-left:-5.079709pt;}
._6_c00227{margin-left:-4.157317pt;}
._3_c00227{margin-left:-3.082984pt;}
._17_c00227{margin-left:-2.183024pt;}
._0_c00227{margin-left:-1.229349pt;}
._1_c00227{width:1.762696pt;}
._2_c00227{width:3.114808pt;}
._a_c00227{width:4.205245pt;}
._12_c00227{width:5.580301pt;}
._13_c00227{width:6.560456pt;}
._11_c00227{width:7.579552pt;}
._9_c00227{width:8.471912pt;}
._b_c00227{width:9.484819pt;}
._4_c00227{width:10.661275pt;}
._5_c00227{width:11.567941pt;}
._14_c00227{width:14.970624pt;}
._10_c00227{width:16.596957pt;}
._d_c00227{width:17.607688pt;}
._e_c00227{width:18.506667pt;}
._1a_c00227{width:19.799341pt;}
._f_c00227{width:20.778499pt;}
._19_c00227{width:22.199368pt;}
._1b_c00227{width:24.165389pt;}
.fs0_c00227{font-size:45.333333pt;}
.fs1_c00227{font-size:53.333333pt;}
.y0_c00227{bottom:0.000000pt;}
.y2d_c00227{bottom:57.266686pt;}
.y2c_c00227{bottom:97.933353pt;}
.y2b_c00227{bottom:111.666686pt;}
.y2a_c00227{bottom:125.133353pt;}
.y29_c00227{bottom:138.600020pt;}
.y28_c00227{bottom:152.333353pt;}
.y27_c00227{bottom:166.066686pt;}
.y26_c00227{bottom:179.533353pt;}
.y25_c00227{bottom:193.000020pt;}
.y24_c00227{bottom:206.733353pt;}
.y23_c00227{bottom:220.466686pt;}
.y22_c00227{bottom:234.266686pt;}
.y21_c00227{bottom:247.400020pt;}
.y20_c00227{bottom:261.133353pt;}
.y1f_c00227{bottom:274.600020pt;}
.y1e_c00227{bottom:288.333353pt;}
.y1d_c00227{bottom:301.800020pt;}
.y1c_c00227{bottom:315.866686pt;}
.y1b_c00227{bottom:329.000020pt;}
.y1a_c00227{bottom:343.066686pt;}
.y19_c00227{bottom:356.200020pt;}
.y18_c00227{bottom:369.933353pt;}
.y17_c00227{bottom:383.666686pt;}
.y16_c00227{bottom:397.466686pt;}
.y15_c00227{bottom:410.866686pt;}
.y14_c00227{bottom:424.333353pt;}
.y13_c00227{bottom:437.800020pt;}
.y12_c00227{bottom:451.533353pt;}
.y11_c00227{bottom:465.000020pt;}
.y10_c00227{bottom:509.466686pt;}
.yf_c00227{bottom:526.400020pt;}
.ye_c00227{bottom:544.000020pt;}
.yd_c00227{bottom:561.266686pt;}
.yc_c00227{bottom:578.266686pt;}
.yb_c00227{bottom:595.866686pt;}
.ya_c00227{bottom:613.133353pt;}
.y9_c00227{bottom:630.066686pt;}
.y8_c00227{bottom:647.400020pt;}
.y7_c00227{bottom:665.000020pt;}
.y6_c00227{bottom:681.933353pt;}
.y5_c00227{bottom:698.866686pt;}
.y4_c00227{bottom:716.466686pt;}
.y3_c00227{bottom:733.466686pt;}
.y2_c00227{bottom:750.733353pt;}
.y1_c00227{bottom:788.200020pt;}
.h2_c00227{height:44.470052pt;}
.h4_c00227{height:44.492188pt;}
.h3_c00227{height:52.343750pt;}
.h1_c00227{height:851.333333pt;}
.h0_c00227{height:851.533333pt;}
.w0_c00227{width:570.533360pt;}
.w1_c00227{width:570.666667pt;}
.x0_c00227{left:0.000000pt;}
.x2_c00227{left:72.333333pt;}
.x4_c00227{left:78.066667pt;}
.x3_c00227{left:86.400000pt;}
.x5_c00227{left:107.533333pt;}
.x1_c00227{left:128.666667pt;}
.x6_c00227{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5176a615c10ae2995c52fa77.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00228;src:url('chunks/assets/font_3691f34c8346c6e1a77e4998.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00228{letter-spacing:0.000000px;}
.sc__c00228{text-shadow:none;}
.sc0_c00228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00228{-webkit-text-stroke:0px transparent;}
.sc0_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00228{word-spacing:-15.000000px;}
.ws1_c00228{word-spacing:-12.750000px;}
.ws2_c00228{word-spacing:0.000000px;}
._12_c00228{margin-left:-15.480000px;}
._4_c00228{margin-left:-11.520000px;}
._3_c00228{margin-left:-10.380000px;}
._13_c00228{margin-left:-8.640000px;}
._e_c00228{margin-left:-7.560000px;}
._11_c00228{margin-left:-5.700000px;}
._5_c00228{margin-left:-4.080000px;}
._f_c00228{margin-left:-2.520000px;}
._8_c00228{margin-left:-1.440000px;}
._2_c00228{width:1.320000px;}
._0_c00228{width:3.000000px;}
._19_c00228{width:4.137000px;}
._16_c00228{width:5.280000px;}
._9_c00228{width:6.420000px;}
._b_c00228{width:8.040000px;}
._a_c00228{width:9.540000px;}
._1a_c00228{width:10.575084px;}
._c_c00228{width:11.820000px;}
._17_c00228{width:12.840000px;}
._d_c00228{width:13.980000px;}
._1b_c00228{width:14.997018px;}
._14_c00228{width:16.020000px;}
._7_c00228{width:17.160000px;}
._10_c00228{width:18.900000px;}
._6_c00228{width:20.100000px;}
._15_c00228{width:21.420000px;}
._1_c00228{width:24.300000px;}
._18_c00228{width:25.890030px;}
.fc1_c00228{color:transparent;}
.fc0_c00228{color:rgb(35,31,32);}
.fs1_c00228{font-size:51.000000px;}
.fs0_c00228{font-size:60.000000px;}
.y0_c00228{bottom:0.000000px;}
.y2d_c00228{bottom:64.425022px;}
.y2c_c00228{bottom:110.175022px;}
.y2b_c00228{bottom:125.325022px;}
.y2a_c00228{bottom:140.775022px;}
.y29_c00228{bottom:156.225022px;}
.y28_c00228{bottom:171.675022px;}
.y27_c00228{bottom:186.825022px;}
.y26_c00228{bottom:201.975022px;}
.y25_c00228{bottom:217.425022px;}
.y24_c00228{bottom:232.575022px;}
.y23_c00228{bottom:247.725022px;}
.y22_c00228{bottom:263.175022px;}
.y21_c00228{bottom:278.625022px;}
.y20_c00228{bottom:293.775022px;}
.y1f_c00228{bottom:308.925022px;}
.y1e_c00228{bottom:324.375022px;}
.y1d_c00228{bottom:339.525022px;}
.y1c_c00228{bottom:354.975022px;}
.y1b_c00228{bottom:370.125022px;}
.y1a_c00228{bottom:385.575022px;}
.y19_c00228{bottom:400.725022px;}
.y18_c00228{bottom:416.175022px;}
.y17_c00228{bottom:431.325022px;}
.y16_c00228{bottom:446.775022px;}
.y15_c00228{bottom:462.225022px;}
.y14_c00228{bottom:477.750022px;}
.y13_c00228{bottom:492.525022px;}
.y12_c00228{bottom:508.350022px;}
.y11_c00228{bottom:523.125022px;}
.y10_c00228{bottom:538.950022px;}
.yf_c00228{bottom:553.725022px;}
.yd_c00228{bottom:611.625022px;}
.yc_c00228{bottom:631.125022px;}
.yb_c00228{bottom:650.550022px;}
.ya_c00228{bottom:669.975022px;}
.y9_c00228{bottom:689.325022px;}
.y8_c00228{bottom:708.825022px;}
.y7_c00228{bottom:728.325022px;}
.y6_c00228{bottom:748.125022px;}
.y5_c00228{bottom:767.475022px;}
.y4_c00228{bottom:786.600022px;}
.y3_c00228{bottom:805.725022px;}
.y2_c00228{bottom:825.150022px;}
.y1_c00228{bottom:844.950022px;}
.ye_c00228{bottom:886.725022px;}
.h3_c00228{height:50.028809px;}
.h4_c00228{height:50.053711px;}
.h2_c00228{height:58.886719px;}
.h1_c00228{height:957.750000px;}
.h0_c00228{height:957.975000px;}
.w1_c00228{width:643.500000px;}
.w0_c00228{width:643.650000px;}
.x0_c00228{left:0.000000px;}
.x1_c00228{left:91.050000px;}
.x3_c00228{left:97.575000px;}
.x2_c00228{left:131.025000px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls0_c00228{letter-spacing:0.000000pt;}
.ws0_c00228{word-spacing:-13.333333pt;}
.ws1_c00228{word-spacing:-11.333333pt;}
.ws2_c00228{word-spacing:0.000000pt;}
._12_c00228{margin-left:-13.760000pt;}
._4_c00228{margin-left:-10.240000pt;}
._3_c00228{margin-left:-9.226667pt;}
._13_c00228{margin-left:-7.680000pt;}
._e_c00228{margin-left:-6.720000pt;}
._11_c00228{margin-left:-5.066667pt;}
._5_c00228{margin-left:-3.626667pt;}
._f_c00228{margin-left:-2.240000pt;}
._8_c00228{margin-left:-1.280000pt;}
._2_c00228{width:1.173333pt;}
._0_c00228{width:2.666667pt;}
._19_c00228{width:3.677333pt;}
._16_c00228{width:4.693333pt;}
._9_c00228{width:5.706667pt;}
._b_c00228{width:7.146667pt;}
._a_c00228{width:8.480000pt;}
._1a_c00228{width:9.400075pt;}
._c_c00228{width:10.506667pt;}
._17_c00228{width:11.413333pt;}
._d_c00228{width:12.426667pt;}
._1b_c00228{width:13.330683pt;}
._14_c00228{width:14.240000pt;}
._7_c00228{width:15.253333pt;}
._10_c00228{width:16.800000pt;}
._6_c00228{width:17.866667pt;}
._15_c00228{width:19.040000pt;}
._1_c00228{width:21.600000pt;}
._18_c00228{width:23.013360pt;}
.fs1_c00228{font-size:45.333333pt;}
.fs0_c00228{font-size:53.333333pt;}
.y0_c00228{bottom:0.000000pt;}
.y2d_c00228{bottom:57.266686pt;}
.y2c_c00228{bottom:97.933353pt;}
.y2b_c00228{bottom:111.400020pt;}
.y2a_c00228{bottom:125.133353pt;}
.y29_c00228{bottom:138.866686pt;}
.y28_c00228{bottom:152.600020pt;}
.y27_c00228{bottom:166.066686pt;}
.y26_c00228{bottom:179.533353pt;}
.y25_c00228{bottom:193.266686pt;}
.y24_c00228{bottom:206.733353pt;}
.y23_c00228{bottom:220.200020pt;}
.y22_c00228{bottom:233.933353pt;}
.y21_c00228{bottom:247.666686pt;}
.y20_c00228{bottom:261.133353pt;}
.y1f_c00228{bottom:274.600020pt;}
.y1e_c00228{bottom:288.333353pt;}
.y1d_c00228{bottom:301.800020pt;}
.y1c_c00228{bottom:315.533353pt;}
.y1b_c00228{bottom:329.000020pt;}
.y1a_c00228{bottom:342.733353pt;}
.y19_c00228{bottom:356.200020pt;}
.y18_c00228{bottom:369.933353pt;}
.y17_c00228{bottom:383.400020pt;}
.y16_c00228{bottom:397.133353pt;}
.y15_c00228{bottom:410.866686pt;}
.y14_c00228{bottom:424.666686pt;}
.y13_c00228{bottom:437.800020pt;}
.y12_c00228{bottom:451.866686pt;}
.y11_c00228{bottom:465.000020pt;}
.y10_c00228{bottom:479.066686pt;}
.yf_c00228{bottom:492.200020pt;}
.yd_c00228{bottom:543.666686pt;}
.yc_c00228{bottom:561.000020pt;}
.yb_c00228{bottom:578.266686pt;}
.ya_c00228{bottom:595.533353pt;}
.y9_c00228{bottom:612.733353pt;}
.y8_c00228{bottom:630.066686pt;}
.y7_c00228{bottom:647.400020pt;}
.y6_c00228{bottom:665.000020pt;}
.y5_c00228{bottom:682.200020pt;}
.y4_c00228{bottom:699.200020pt;}
.y3_c00228{bottom:716.200020pt;}
.y2_c00228{bottom:733.466686pt;}
.y1_c00228{bottom:751.066686pt;}
.ye_c00228{bottom:788.200020pt;}
.h3_c00228{height:44.470052pt;}
.h4_c00228{height:44.492188pt;}
.h2_c00228{height:52.343750pt;}
.h1_c00228{height:851.333333pt;}
.h0_c00228{height:851.533333pt;}
.w1_c00228{width:572.000000pt;}
.w0_c00228{width:572.133333pt;}
.x0_c00228{left:0.000000pt;}
.x1_c00228{left:80.933333pt;}
.x3_c00228{left:86.733333pt;}
.x2_c00228{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9babfa1d31fef193a67fd67d.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00229;src:url('chunks/assets/font_23484754e10e313e41965613.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00229{letter-spacing:0.000000px;}
.sc__c00229{text-shadow:none;}
.sc0_c00229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00229{-webkit-text-stroke:0px transparent;}
.sc0_c00229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00229{word-spacing:-15.000000px;}
.ws0_c00229{word-spacing:-12.750000px;}
.ws2_c00229{word-spacing:0.000000px;}
._9_c00229{margin-left:-15.291996px;}
._15_c00229{margin-left:-13.673586px;}
._d_c00229{margin-left:-12.177522px;}
._e_c00229{margin-left:-10.744956px;}
._f_c00229{margin-left:-8.711787px;}
._10_c00229{margin-left:-6.779541px;}
._b_c00229{margin-left:-4.853409px;}
._3_c00229{margin-left:-3.468357px;}
._17_c00229{margin-left:-2.400159px;}
._0_c00229{margin-left:-1.383018px;}
._1_c00229{width:1.983033px;}
._2_c00229{width:3.504159px;}
._a_c00229{width:5.400000px;}
._8_c00229{width:6.635286px;}
._c_c00229{width:8.100000px;}
._11_c00229{width:9.360000px;}
._12_c00229{width:11.096967px;}
._14_c00229{width:12.413994px;}
._13_c00229{width:13.844835px;}
._19_c00229{width:15.095898px;}
._7_c00229{width:16.979445px;}
._4_c00229{width:18.836967px;}
._5_c00229{width:20.036967px;}
._6_c00229{width:21.116967px;}
._16_c00229{width:25.467411px;}
._18_c00229{width:29.718813px;}
.fc1_c00229{color:transparent;}
.fc0_c00229{color:rgb(35,31,32);}
.fs0_c00229{font-size:51.000000px;}
.fs1_c00229{font-size:60.000000px;}
.y0_c00229{bottom:0.000000px;}
.y2c_c00229{bottom:64.425022px;}
.y2b_c00229{bottom:110.550022px;}
.y2a_c00229{bottom:125.325022px;}
.y29_c00229{bottom:140.775022px;}
.y28_c00229{bottom:156.225022px;}
.y27_c00229{bottom:171.750022px;}
.y26_c00229{bottom:186.825022px;}
.y25_c00229{bottom:202.350022px;}
.y24_c00229{bottom:217.425022px;}
.y23_c00229{bottom:232.575022px;}
.y22_c00229{bottom:247.725022px;}
.y21_c00229{bottom:263.175022px;}
.y20_c00229{bottom:278.325022px;}
.y1f_c00229{bottom:293.775022px;}
.y1e_c00229{bottom:308.925022px;}
.y1d_c00229{bottom:324.375022px;}
.y1c_c00229{bottom:339.525022px;}
.y1b_c00229{bottom:355.350022px;}
.y1a_c00229{bottom:370.425022px;}
.y19_c00229{bottom:385.575022px;}
.y18_c00229{bottom:400.725022px;}
.y17_c00229{bottom:416.550022px;}
.y16_c00229{bottom:431.325022px;}
.y15_c00229{bottom:475.950022px;}
.y14_c00229{bottom:495.000022px;}
.y13_c00229{bottom:514.800022px;}
.y12_c00229{bottom:533.925022px;}
.y11_c00229{bottom:553.350022px;}
.y10_c00229{bottom:572.775022px;}
.yf_c00229{bottom:592.200022px;}
.ye_c00229{bottom:611.625022px;}
.yd_c00229{bottom:631.125022px;}
.yc_c00229{bottom:650.925022px;}
.yb_c00229{bottom:669.975022px;}
.ya_c00229{bottom:689.775022px;}
.y9_c00229{bottom:708.825022px;}
.y8_c00229{bottom:728.325022px;}
.y7_c00229{bottom:747.750022px;}
.y6_c00229{bottom:767.550022px;}
.y5_c00229{bottom:786.225022px;}
.y4_c00229{bottom:805.725022px;}
.y3_c00229{bottom:825.150022px;}
.y2_c00229{bottom:844.950022px;}
.y1_c00229{bottom:886.725022px;}
.h2_c00229{height:50.028809px;}
.h4_c00229{height:50.053711px;}
.h3_c00229{height:58.886719px;}
.h1_c00229{height:957.750000px;}
.h0_c00229{height:957.975000px;}
.w0_c00229{width:641.850030px;}
.w1_c00229{width:642.000000px;}
.x0_c00229{left:0.000000px;}
.x2_c00229{left:80.250000px;}
.x3_c00229{left:81.375000px;}
.x5_c00229{left:87.825000px;}
.x4_c00229{left:97.200000px;}
.x6_c00229{left:121.350000px;}
.x1_c00229{left:144.750000px;}
.x7_c00229{left:531.375000px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls0_c00229{letter-spacing:0.000000pt;}
.ws1_c00229{word-spacing:-13.333333pt;}
.ws0_c00229{word-spacing:-11.333333pt;}
.ws2_c00229{word-spacing:0.000000pt;}
._9_c00229{margin-left:-13.592885pt;}
._15_c00229{margin-left:-12.154299pt;}
._d_c00229{margin-left:-10.824464pt;}
._e_c00229{margin-left:-9.551072pt;}
._f_c00229{margin-left:-7.743811pt;}
._10_c00229{margin-left:-6.026259pt;}
._b_c00229{margin-left:-4.314141pt;}
._3_c00229{margin-left:-3.082984pt;}
._17_c00229{margin-left:-2.133475pt;}
._0_c00229{margin-left:-1.229349pt;}
._1_c00229{width:1.762696pt;}
._2_c00229{width:3.114808pt;}
._a_c00229{width:4.800000pt;}
._8_c00229{width:5.898032pt;}
._c_c00229{width:7.200000pt;}
._11_c00229{width:8.320000pt;}
._12_c00229{width:9.863971pt;}
._14_c00229{width:11.034661pt;}
._13_c00229{width:12.306520pt;}
._19_c00229{width:13.418576pt;}
._7_c00229{width:15.092840pt;}
._4_c00229{width:16.743971pt;}
._5_c00229{width:17.810637pt;}
._6_c00229{width:18.770637pt;}
._16_c00229{width:22.637699pt;}
._18_c00229{width:26.416723pt;}
.fs0_c00229{font-size:45.333333pt;}
.fs1_c00229{font-size:53.333333pt;}
.y0_c00229{bottom:0.000000pt;}
.y2c_c00229{bottom:57.266686pt;}
.y2b_c00229{bottom:98.266686pt;}
.y2a_c00229{bottom:111.400020pt;}
.y29_c00229{bottom:125.133353pt;}
.y28_c00229{bottom:138.866686pt;}
.y27_c00229{bottom:152.666686pt;}
.y26_c00229{bottom:166.066686pt;}
.y25_c00229{bottom:179.866686pt;}
.y24_c00229{bottom:193.266686pt;}
.y23_c00229{bottom:206.733353pt;}
.y22_c00229{bottom:220.200020pt;}
.y21_c00229{bottom:233.933353pt;}
.y20_c00229{bottom:247.400020pt;}
.y1f_c00229{bottom:261.133353pt;}
.y1e_c00229{bottom:274.600020pt;}
.y1d_c00229{bottom:288.333353pt;}
.y1c_c00229{bottom:301.800020pt;}
.y1b_c00229{bottom:315.866686pt;}
.y1a_c00229{bottom:329.266686pt;}
.y19_c00229{bottom:342.733353pt;}
.y18_c00229{bottom:356.200020pt;}
.y17_c00229{bottom:370.266686pt;}
.y16_c00229{bottom:383.400020pt;}
.y15_c00229{bottom:423.066686pt;}
.y14_c00229{bottom:440.000020pt;}
.y13_c00229{bottom:457.600020pt;}
.y12_c00229{bottom:474.600020pt;}
.y11_c00229{bottom:491.866686pt;}
.y10_c00229{bottom:509.133353pt;}
.yf_c00229{bottom:526.400020pt;}
.ye_c00229{bottom:543.666686pt;}
.yd_c00229{bottom:561.000020pt;}
.yc_c00229{bottom:578.600020pt;}
.yb_c00229{bottom:595.533353pt;}
.ya_c00229{bottom:613.133353pt;}
.y9_c00229{bottom:630.066686pt;}
.y8_c00229{bottom:647.400020pt;}
.y7_c00229{bottom:664.666686pt;}
.y6_c00229{bottom:682.266686pt;}
.y5_c00229{bottom:698.866686pt;}
.y4_c00229{bottom:716.200020pt;}
.y3_c00229{bottom:733.466686pt;}
.y2_c00229{bottom:751.066686pt;}
.y1_c00229{bottom:788.200020pt;}
.h2_c00229{height:44.470052pt;}
.h4_c00229{height:44.492188pt;}
.h3_c00229{height:52.343750pt;}
.h1_c00229{height:851.333333pt;}
.h0_c00229{height:851.533333pt;}
.w0_c00229{width:570.533360pt;}
.w1_c00229{width:570.666667pt;}
.x0_c00229{left:0.000000pt;}
.x2_c00229{left:71.333333pt;}
.x3_c00229{left:72.333333pt;}
.x5_c00229{left:78.066667pt;}
.x4_c00229{left:86.400000pt;}
.x6_c00229{left:107.866667pt;}
.x1_c00229{left:128.666667pt;}
.x7_c00229{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_97df020d4b928744fa61d1eb.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00230;src:url('chunks/assets/font_d1e415e7a87a18b968a703d4.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.284180;font-style: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;}
.ls0_c00230{letter-spacing:0.000000px;}
.sc__c00230{text-shadow:none;}
.sc0_c00230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00230{-webkit-text-stroke:0px transparent;}
.sc0_c00230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00230{word-spacing:-15.000000px;}
.ws1_c00230{word-spacing:-12.750000px;}
.ws2_c00230{word-spacing:0.000000px;}
._1a_c00230{margin-left:-14.820000px;}
._8_c00230{margin-left:-12.480000px;}
._b_c00230{margin-left:-11.400000px;}
._4_c00230{margin-left:-10.200000px;}
._10_c00230{margin-left:-7.320000px;}
._19_c00230{margin-left:-5.880000px;}
._9_c00230{margin-left:-4.800000px;}
._3_c00230{margin-left:-2.940000px;}
._0_c00230{margin-left:-1.260000px;}
._2_c00230{width:1.200000px;}
._1_c00230{width:2.460000px;}
._e_c00230{width:4.500000px;}
._c_c00230{width:6.000000px;}
._6_c00230{width:7.740000px;}
._a_c00230{width:8.880000px;}
._5_c00230{width:10.200000px;}
._7_c00230{width:11.220000px;}
._13_c00230{width:12.720000px;}
._11_c00230{width:13.860000px;}
._18_c00230{width:16.020000px;}
._d_c00230{width:17.100000px;}
._f_c00230{width:18.840000px;}
._12_c00230{width:20.040000px;}
._1c_c00230{width:21.111030px;}
._1b_c00230{width:22.890000px;}
._16_c00230{width:24.060000px;}
._14_c00230{width:25.260000px;}
._15_c00230{width:26.400000px;}
._17_c00230{width:27.540000px;}
.fc1_c00230{color:transparent;}
.fc0_c00230{color:rgb(35,31,32);}
.fs1_c00230{font-size:51.000000px;}
.fs0_c00230{font-size:60.000000px;}
.y0_c00230{bottom:0.000000px;}
.y26_c00230{bottom:64.425022px;}
.y25_c00230{bottom:110.175022px;}
.y24_c00230{bottom:125.625022px;}
.y23_c00230{bottom:140.775022px;}
.y22_c00230{bottom:155.925022px;}
.y21_c00230{bottom:171.375022px;}
.y20_c00230{bottom:186.825022px;}
.y1f_c00230{bottom:201.975022px;}
.y1e_c00230{bottom:217.425022px;}
.y1d_c00230{bottom:232.950022px;}
.y1c_c00230{bottom:247.725022px;}
.y1b_c00230{bottom:263.175022px;}
.y1a_c00230{bottom:278.625022px;}
.y19_c00230{bottom:293.775022px;}
.y18_c00230{bottom:309.225022px;}
.y17_c00230{bottom:386.700022px;}
.y16_c00230{bottom:406.125022px;}
.y15_c00230{bottom:425.550022px;}
.y14_c00230{bottom:444.975022px;}
.y13_c00230{bottom:464.775022px;}
.y12_c00230{bottom:483.825022px;}
.y11_c00230{bottom:503.625022px;}
.y10_c00230{bottom:522.750022px;}
.yf_c00230{bottom:561.225022px;}
.yd_c00230{bottom:611.925022px;}
.yc_c00230{bottom:631.425022px;}
.yb_c00230{bottom:650.925022px;}
.ya_c00230{bottom:669.975022px;}
.y9_c00230{bottom:689.775022px;}
.y8_c00230{bottom:709.200022px;}
.y7_c00230{bottom:728.625022px;}
.y6_c00230{bottom:748.125022px;}
.y5_c00230{bottom:767.550022px;}
.y4_c00230{bottom:786.225022px;}
.y3_c00230{bottom:805.725022px;}
.y2_c00230{bottom:825.150022px;}
.y1_c00230{bottom:844.950022px;}
.ye_c00230{bottom:886.725022px;}
.h3_c00230{height:50.028809px;}
.h4_c00230{height:50.053711px;}
.h2_c00230{height:58.886719px;}
.h1_c00230{height:957.750000px;}
.h0_c00230{height:957.975000px;}
.w1_c00230{width:643.500000px;}
.w0_c00230{width:643.650000px;}
.x0_c00230{left:0.000000px;}
.x1_c00230{left:91.050000px;}
.x3_c00230{left:97.575000px;}
.x2_c00230{left:107.250000px;}
.x4_c00230{left:131.025000px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls0_c00230{letter-spacing:0.000000pt;}
.ws0_c00230{word-spacing:-13.333333pt;}
.ws1_c00230{word-spacing:-11.333333pt;}
.ws2_c00230{word-spacing:0.000000pt;}
._1a_c00230{margin-left:-13.173333pt;}
._8_c00230{margin-left:-11.093333pt;}
._b_c00230{margin-left:-10.133333pt;}
._4_c00230{margin-left:-9.066667pt;}
._10_c00230{margin-left:-6.506667pt;}
._19_c00230{margin-left:-5.226667pt;}
._9_c00230{margin-left:-4.266667pt;}
._3_c00230{margin-left:-2.613333pt;}
._0_c00230{margin-left:-1.120000pt;}
._2_c00230{width:1.066667pt;}
._1_c00230{width:2.186667pt;}
._e_c00230{width:4.000000pt;}
._c_c00230{width:5.333333pt;}
._6_c00230{width:6.880000pt;}
._a_c00230{width:7.893333pt;}
._5_c00230{width:9.066667pt;}
._7_c00230{width:9.973333pt;}
._13_c00230{width:11.306667pt;}
._11_c00230{width:12.320000pt;}
._18_c00230{width:14.240000pt;}
._d_c00230{width:15.200000pt;}
._f_c00230{width:16.746667pt;}
._12_c00230{width:17.813333pt;}
._1c_c00230{width:18.765360pt;}
._1b_c00230{width:20.346667pt;}
._16_c00230{width:21.386667pt;}
._14_c00230{width:22.453333pt;}
._15_c00230{width:23.466667pt;}
._17_c00230{width:24.480000pt;}
.fs1_c00230{font-size:45.333333pt;}
.fs0_c00230{font-size:53.333333pt;}
.y0_c00230{bottom:0.000000pt;}
.y26_c00230{bottom:57.266686pt;}
.y25_c00230{bottom:97.933353pt;}
.y24_c00230{bottom:111.666686pt;}
.y23_c00230{bottom:125.133353pt;}
.y22_c00230{bottom:138.600020pt;}
.y21_c00230{bottom:152.333353pt;}
.y20_c00230{bottom:166.066686pt;}
.y1f_c00230{bottom:179.533353pt;}
.y1e_c00230{bottom:193.266686pt;}
.y1d_c00230{bottom:207.066686pt;}
.y1c_c00230{bottom:220.200020pt;}
.y1b_c00230{bottom:233.933353pt;}
.y1a_c00230{bottom:247.666686pt;}
.y19_c00230{bottom:261.133353pt;}
.y18_c00230{bottom:274.866686pt;}
.y17_c00230{bottom:343.733353pt;}
.y16_c00230{bottom:361.000020pt;}
.y15_c00230{bottom:378.266686pt;}
.y14_c00230{bottom:395.533353pt;}
.y13_c00230{bottom:413.133353pt;}
.y12_c00230{bottom:430.066686pt;}
.y11_c00230{bottom:447.666686pt;}
.y10_c00230{bottom:464.666686pt;}
.yf_c00230{bottom:498.866686pt;}
.yd_c00230{bottom:543.933353pt;}
.yc_c00230{bottom:561.266686pt;}
.yb_c00230{bottom:578.600020pt;}
.ya_c00230{bottom:595.533353pt;}
.y9_c00230{bottom:613.133353pt;}
.y8_c00230{bottom:630.400020pt;}
.y7_c00230{bottom:647.666686pt;}
.y6_c00230{bottom:665.000020pt;}
.y5_c00230{bottom:682.266686pt;}
.y4_c00230{bottom:698.866686pt;}
.y3_c00230{bottom:716.200020pt;}
.y2_c00230{bottom:733.466686pt;}
.y1_c00230{bottom:751.066686pt;}
.ye_c00230{bottom:788.200020pt;}
.h3_c00230{height:44.470052pt;}
.h4_c00230{height:44.492188pt;}
.h2_c00230{height:52.343750pt;}
.h1_c00230{height:851.333333pt;}
.h0_c00230{height:851.533333pt;}
.w1_c00230{width:572.000000pt;}
.w0_c00230{width:572.133333pt;}
.x0_c00230{left:0.000000pt;}
.x1_c00230{left:80.933333pt;}
.x3_c00230{left:86.733333pt;}
.x2_c00230{left:95.333333pt;}
.x4_c00230{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d560127b65ee3466a9e20cea.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00231;src:url('chunks/assets/font_35fbf7a0766b4d1be03e0bff.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00231{word-spacing:-15.000000px;}
.ws0_c00231{word-spacing:-12.750000px;}
.ws2_c00231{word-spacing:0.000000px;}
._2_c00231{margin-left:-12.900000px;}
._b_c00231{margin-left:-11.040000px;}
._9_c00231{margin-left:-8.160000px;}
._13_c00231{margin-left:-6.960000px;}
._16_c00231{margin-left:-5.916033px;}
._c_c00231{margin-left:-3.900000px;}
._d_c00231{margin-left:-2.760000px;}
._7_c00231{margin-left:-1.560000px;}
._0_c00231{width:1.260000px;}
._1_c00231{width:2.820000px;}
._a_c00231{width:3.960000px;}
._6_c00231{width:5.640000px;}
._3_c00231{width:7.200000px;}
._4_c00231{width:8.580000px;}
._e_c00231{width:9.660000px;}
._5_c00231{width:10.740000px;}
._11_c00231{width:12.240000px;}
._14_c00231{width:13.260000px;}
._19_c00231{width:14.694057px;}
._8_c00231{width:16.320000px;}
._f_c00231{width:18.300000px;}
._10_c00231{width:19.620000px;}
._12_c00231{width:20.760000px;}
._17_c00231{width:22.290000px;}
._1a_c00231{width:23.790000px;}
._1b_c00231{width:25.290000px;}
._18_c00231{width:26.490000px;}
._15_c00231{width:27.690000px;}
.fc1_c00231{color:transparent;}
.fc0_c00231{color:rgb(35,31,32);}
.fs1_c00231{font-size:51.000000px;}
.fs0_c00231{font-size:60.000000px;}
.y0_c00231{bottom:0.000000px;}
.y2a_c00231{bottom:64.425022px;}
.y29_c00231{bottom:110.175022px;}
.y28_c00231{bottom:125.625022px;}
.y27_c00231{bottom:140.775022px;}
.y26_c00231{bottom:156.225022px;}
.y25_c00231{bottom:171.750022px;}
.y24_c00231{bottom:186.525022px;}
.y23_c00231{bottom:202.350022px;}
.y22_c00231{bottom:217.125022px;}
.y21_c00231{bottom:232.575022px;}
.y20_c00231{bottom:247.725022px;}
.y1f_c00231{bottom:263.175022px;}
.y1e_c00231{bottom:278.325022px;}
.y1d_c00231{bottom:293.775022px;}
.y1c_c00231{bottom:308.925022px;}
.y1b_c00231{bottom:324.375022px;}
.y1a_c00231{bottom:339.825022px;}
.y19_c00231{bottom:354.975022px;}
.y18_c00231{bottom:370.125022px;}
.y17_c00231{bottom:385.575022px;}
.y16_c00231{bottom:400.725022px;}
.y15_c00231{bottom:416.175022px;}
.y13_c00231{bottom:495.375022px;}
.y12_c00231{bottom:514.425022px;}
.y11_c00231{bottom:533.925022px;}
.y10_c00231{bottom:553.350022px;}
.yf_c00231{bottom:572.775022px;}
.ye_c00231{bottom:592.575022px;}
.yd_c00231{bottom:611.625022px;}
.yc_c00231{bottom:631.425022px;}
.yb_c00231{bottom:650.925022px;}
.ya_c00231{bottom:670.350022px;}
.y9_c00231{bottom:689.775022px;}
.y8_c00231{bottom:709.200022px;}
.y7_c00231{bottom:728.325022px;}
.y6_c00231{bottom:747.750022px;}
.y5_c00231{bottom:767.550022px;}
.y4_c00231{bottom:786.225022px;}
.y3_c00231{bottom:806.025022px;}
.y2_c00231{bottom:825.150022px;}
.y1_c00231{bottom:844.950022px;}
.y14_c00231{bottom:886.725022px;}
.h3_c00231{height:50.028809px;}
.h4_c00231{height:50.053711px;}
.h2_c00231{height:58.886719px;}
.h1_c00231{height:957.750000px;}
.h0_c00231{height:957.975000px;}
.w0_c00231{width:641.850030px;}
.w1_c00231{width:642.000000px;}
.x0_c00231{left:0.000000px;}
.x2_c00231{left:80.250000px;}
.x1_c00231{left:81.375000px;}
.x5_c00231{left:87.825000px;}
.x3_c00231{left:97.200000px;}
.x6_c00231{left:120.975000px;}
.x4_c00231{left:144.750000px;}
.x7_c00231{left:531.375000px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls0_c00231{letter-spacing:0.000000pt;}
.ws1_c00231{word-spacing:-13.333333pt;}
.ws0_c00231{word-spacing:-11.333333pt;}
.ws2_c00231{word-spacing:0.000000pt;}
._2_c00231{margin-left:-11.466667pt;}
._b_c00231{margin-left:-9.813333pt;}
._9_c00231{margin-left:-7.253333pt;}
._13_c00231{margin-left:-6.186667pt;}
._16_c00231{margin-left:-5.258696pt;}
._c_c00231{margin-left:-3.466667pt;}
._d_c00231{margin-left:-2.453333pt;}
._7_c00231{margin-left:-1.386667pt;}
._0_c00231{width:1.120000pt;}
._1_c00231{width:2.506667pt;}
._a_c00231{width:3.520000pt;}
._6_c00231{width:5.013333pt;}
._3_c00231{width:6.400000pt;}
._4_c00231{width:7.626667pt;}
._e_c00231{width:8.586667pt;}
._5_c00231{width:9.546667pt;}
._11_c00231{width:10.880000pt;}
._14_c00231{width:11.786667pt;}
._19_c00231{width:13.061384pt;}
._8_c00231{width:14.506667pt;}
._f_c00231{width:16.266667pt;}
._10_c00231{width:17.440000pt;}
._12_c00231{width:18.453333pt;}
._17_c00231{width:19.813333pt;}
._1a_c00231{width:21.146667pt;}
._1b_c00231{width:22.480000pt;}
._18_c00231{width:23.546667pt;}
._15_c00231{width:24.613333pt;}
.fs1_c00231{font-size:45.333333pt;}
.fs0_c00231{font-size:53.333333pt;}
.y0_c00231{bottom:0.000000pt;}
.y2a_c00231{bottom:57.266686pt;}
.y29_c00231{bottom:97.933353pt;}
.y28_c00231{bottom:111.666686pt;}
.y27_c00231{bottom:125.133353pt;}
.y26_c00231{bottom:138.866686pt;}
.y25_c00231{bottom:152.666686pt;}
.y24_c00231{bottom:165.800020pt;}
.y23_c00231{bottom:179.866686pt;}
.y22_c00231{bottom:193.000020pt;}
.y21_c00231{bottom:206.733353pt;}
.y20_c00231{bottom:220.200020pt;}
.y1f_c00231{bottom:233.933353pt;}
.y1e_c00231{bottom:247.400020pt;}
.y1d_c00231{bottom:261.133353pt;}
.y1c_c00231{bottom:274.600020pt;}
.y1b_c00231{bottom:288.333353pt;}
.y1a_c00231{bottom:302.066686pt;}
.y19_c00231{bottom:315.533353pt;}
.y18_c00231{bottom:329.000020pt;}
.y17_c00231{bottom:342.733353pt;}
.y16_c00231{bottom:356.200020pt;}
.y15_c00231{bottom:369.933353pt;}
.y13_c00231{bottom:440.333353pt;}
.y12_c00231{bottom:457.266686pt;}
.y11_c00231{bottom:474.600020pt;}
.y10_c00231{bottom:491.866686pt;}
.yf_c00231{bottom:509.133353pt;}
.ye_c00231{bottom:526.733353pt;}
.yd_c00231{bottom:543.666686pt;}
.yc_c00231{bottom:561.266686pt;}
.yb_c00231{bottom:578.600020pt;}
.ya_c00231{bottom:595.866686pt;}
.y9_c00231{bottom:613.133353pt;}
.y8_c00231{bottom:630.400020pt;}
.y7_c00231{bottom:647.400020pt;}
.y6_c00231{bottom:664.666686pt;}
.y5_c00231{bottom:682.266686pt;}
.y4_c00231{bottom:698.866686pt;}
.y3_c00231{bottom:716.466686pt;}
.y2_c00231{bottom:733.466686pt;}
.y1_c00231{bottom:751.066686pt;}
.y14_c00231{bottom:788.200020pt;}
.h3_c00231{height:44.470052pt;}
.h4_c00231{height:44.492188pt;}
.h2_c00231{height:52.343750pt;}
.h1_c00231{height:851.333333pt;}
.h0_c00231{height:851.533333pt;}
.w0_c00231{width:570.533360pt;}
.w1_c00231{width:570.666667pt;}
.x0_c00231{left:0.000000pt;}
.x2_c00231{left:71.333333pt;}
.x1_c00231{left:72.333333pt;}
.x5_c00231{left:78.066667pt;}
.x3_c00231{left:86.400000pt;}
.x6_c00231{left:107.533333pt;}
.x4_c00231{left:128.666667pt;}
.x7_c00231{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_326d9ef0af2498d254c97462.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00232;src:url('chunks/assets/font_61f55df67f0712ae5a9eb8bf.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00232{letter-spacing:0.000000px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00232{word-spacing:-15.000000px;}
.ws0_c00232{word-spacing:-12.750000px;}
.ws2_c00232{word-spacing:0.000000px;}
._15_c00232{margin-left:-14.040000px;}
._9_c00232{margin-left:-12.420000px;}
._8_c00232{margin-left:-11.340000px;}
._14_c00232{margin-left:-9.600000px;}
._0_c00232{margin-left:-7.800000px;}
._11_c00232{margin-left:-6.420000px;}
._16_c00232{margin-left:-4.998039px;}
._13_c00232{margin-left:-3.840000px;}
._7_c00232{margin-left:-1.980000px;}
._2_c00232{width:1.260000px;}
._3_c00232{width:2.460000px;}
._5_c00232{width:3.840000px;}
._10_c00232{width:4.860000px;}
._d_c00232{width:6.060000px;}
._e_c00232{width:7.380000px;}
._f_c00232{width:8.400000px;}
._12_c00232{width:9.480000px;}
._6_c00232{width:11.340000px;}
._4_c00232{width:12.600000px;}
._1_c00232{width:13.800000px;}
._18_c00232{width:14.829045px;}
._a_c00232{width:17.340000px;}
._c_c00232{width:18.360000px;}
._b_c00232{width:20.220000px;}
._17_c00232{width:23.010030px;}
._19_c00232{width:24.989979px;}
._1a_c00232{width:26.970081px;}
.fc1_c00232{color:transparent;}
.fc0_c00232{color:rgb(35,31,32);}
.fs1_c00232{font-size:51.000000px;}
.fs0_c00232{font-size:60.000000px;}
.y0_c00232{bottom:0.000000px;}
.y2b_c00232{bottom:64.800022px;}
.y2a_c00232{bottom:110.175022px;}
.y29_c00232{bottom:125.625022px;}
.y28_c00232{bottom:141.150022px;}
.y27_c00232{bottom:155.925022px;}
.y26_c00232{bottom:171.375022px;}
.y25_c00232{bottom:186.525022px;}
.y24_c00232{bottom:201.975022px;}
.y23_c00232{bottom:217.425022px;}
.y22_c00232{bottom:232.575022px;}
.y21_c00232{bottom:248.025022px;}
.y20_c00232{bottom:263.175022px;}
.y1f_c00232{bottom:278.625022px;}
.y1e_c00232{bottom:293.775022px;}
.y1d_c00232{bottom:308.925022px;}
.y1c_c00232{bottom:324.750022px;}
.y1b_c00232{bottom:339.825022px;}
.y1a_c00232{bottom:354.975022px;}
.y19_c00232{bottom:370.125022px;}
.y18_c00232{bottom:385.575022px;}
.y17_c00232{bottom:400.725022px;}
.y16_c00232{bottom:416.175022px;}
.y15_c00232{bottom:431.325022px;}
.y14_c00232{bottom:446.775022px;}
.y13_c00232{bottom:461.925022px;}
.y11_c00232{bottom:533.925022px;}
.y10_c00232{bottom:553.350022px;}
.yf_c00232{bottom:573.150022px;}
.ye_c00232{bottom:592.575022px;}
.yd_c00232{bottom:612.000022px;}
.yc_c00232{bottom:631.425022px;}
.yb_c00232{bottom:650.550022px;}
.ya_c00232{bottom:669.975022px;}
.y9_c00232{bottom:689.775022px;}
.y8_c00232{bottom:708.825022px;}
.y7_c00232{bottom:728.325022px;}
.y6_c00232{bottom:748.125022px;}
.y5_c00232{bottom:767.550022px;}
.y4_c00232{bottom:786.600022px;}
.y3_c00232{bottom:805.725022px;}
.y2_c00232{bottom:825.150022px;}
.y1_c00232{bottom:844.575022px;}
.y12_c00232{bottom:886.725022px;}
.h3_c00232{height:50.028809px;}
.h4_c00232{height:50.053711px;}
.h2_c00232{height:58.886719px;}
.h1_c00232{height:957.750000px;}
.h0_c00232{height:957.975000px;}
.w1_c00232{width:643.500000px;}
.w0_c00232{width:643.650000px;}
.x0_c00232{left:0.000000px;}
.x1_c00232{left:90.750000px;}
.x2_c00232{left:97.575000px;}
.x3_c00232{left:131.025000px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls0_c00232{letter-spacing:0.000000pt;}
.ws1_c00232{word-spacing:-13.333333pt;}
.ws0_c00232{word-spacing:-11.333333pt;}
.ws2_c00232{word-spacing:0.000000pt;}
._15_c00232{margin-left:-12.480000pt;}
._9_c00232{margin-left:-11.040000pt;}
._8_c00232{margin-left:-10.080000pt;}
._14_c00232{margin-left:-8.533333pt;}
._0_c00232{margin-left:-6.933333pt;}
._11_c00232{margin-left:-5.706667pt;}
._16_c00232{margin-left:-4.442701pt;}
._13_c00232{margin-left:-3.413333pt;}
._7_c00232{margin-left:-1.760000pt;}
._2_c00232{width:1.120000pt;}
._3_c00232{width:2.186667pt;}
._5_c00232{width:3.413333pt;}
._10_c00232{width:4.320000pt;}
._d_c00232{width:5.386667pt;}
._e_c00232{width:6.560000pt;}
._f_c00232{width:7.466667pt;}
._12_c00232{width:8.426667pt;}
._6_c00232{width:10.080000pt;}
._4_c00232{width:11.200000pt;}
._1_c00232{width:12.266667pt;}
._18_c00232{width:13.181373pt;}
._a_c00232{width:15.413333pt;}
._c_c00232{width:16.320000pt;}
._b_c00232{width:17.973333pt;}
._17_c00232{width:20.453360pt;}
._19_c00232{width:22.213315pt;}
._1a_c00232{width:23.973405pt;}
.fs1_c00232{font-size:45.333333pt;}
.fs0_c00232{font-size:53.333333pt;}
.y0_c00232{bottom:0.000000pt;}
.y2b_c00232{bottom:57.600020pt;}
.y2a_c00232{bottom:97.933353pt;}
.y29_c00232{bottom:111.666686pt;}
.y28_c00232{bottom:125.466686pt;}
.y27_c00232{bottom:138.600020pt;}
.y26_c00232{bottom:152.333353pt;}
.y25_c00232{bottom:165.800020pt;}
.y24_c00232{bottom:179.533353pt;}
.y23_c00232{bottom:193.266686pt;}
.y22_c00232{bottom:206.733353pt;}
.y21_c00232{bottom:220.466686pt;}
.y20_c00232{bottom:233.933353pt;}
.y1f_c00232{bottom:247.666686pt;}
.y1e_c00232{bottom:261.133353pt;}
.y1d_c00232{bottom:274.600020pt;}
.y1c_c00232{bottom:288.666686pt;}
.y1b_c00232{bottom:302.066686pt;}
.y1a_c00232{bottom:315.533353pt;}
.y19_c00232{bottom:329.000020pt;}
.y18_c00232{bottom:342.733353pt;}
.y17_c00232{bottom:356.200020pt;}
.y16_c00232{bottom:369.933353pt;}
.y15_c00232{bottom:383.400020pt;}
.y14_c00232{bottom:397.133353pt;}
.y13_c00232{bottom:410.600020pt;}
.y11_c00232{bottom:474.600020pt;}
.y10_c00232{bottom:491.866686pt;}
.yf_c00232{bottom:509.466686pt;}
.ye_c00232{bottom:526.733353pt;}
.yd_c00232{bottom:544.000020pt;}
.yc_c00232{bottom:561.266686pt;}
.yb_c00232{bottom:578.266686pt;}
.ya_c00232{bottom:595.533353pt;}
.y9_c00232{bottom:613.133353pt;}
.y8_c00232{bottom:630.066686pt;}
.y7_c00232{bottom:647.400020pt;}
.y6_c00232{bottom:665.000020pt;}
.y5_c00232{bottom:682.266686pt;}
.y4_c00232{bottom:699.200020pt;}
.y3_c00232{bottom:716.200020pt;}
.y2_c00232{bottom:733.466686pt;}
.y1_c00232{bottom:750.733353pt;}
.y12_c00232{bottom:788.200020pt;}
.h3_c00232{height:44.470052pt;}
.h4_c00232{height:44.492188pt;}
.h2_c00232{height:52.343750pt;}
.h1_c00232{height:851.333333pt;}
.h0_c00232{height:851.533333pt;}
.w1_c00232{width:572.000000pt;}
.w0_c00232{width:572.133333pt;}
.x0_c00232{left:0.000000pt;}
.x1_c00232{left:80.666667pt;}
.x2_c00232{left:86.733333pt;}
.x3_c00232{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e275a45c7761703b6b1fdd4b.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00233;src:url('chunks/assets/font_de4c6a5267e89e9f7b818220.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00233{letter-spacing:0.000000px;}
.sc__c00233{text-shadow:none;}
.sc0_c00233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00233{-webkit-text-stroke:0px transparent;}
.sc0_c00233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00233{word-spacing:-15.000000px;}
.ws0_c00233{word-spacing:-12.750000px;}
.ws2_c00233{word-spacing:0.000000px;}
._8_c00233{margin-left:-12.600000px;}
._7_c00233{margin-left:-10.800000px;}
._19_c00233{margin-left:-8.376480px;}
._17_c00233{margin-left:-5.856036px;}
._12_c00233{margin-left:-4.550859px;}
._13_c00233{margin-left:-3.539985px;}
._1_c00233{margin-left:-2.460000px;}
._5_c00233{margin-left:-1.440000px;}
._3_c00233{width:1.500000px;}
._0_c00233{width:3.120000px;}
._4_c00233{width:4.380000px;}
._2_c00233{width:5.520000px;}
._15_c00233{width:6.729060px;}
._6_c00233{width:7.740000px;}
._a_c00233{width:9.720000px;}
._c_c00233{width:10.800000px;}
._b_c00233{width:11.940000px;}
._9_c00233{width:12.960000px;}
._11_c00233{width:15.101976px;}
._d_c00233{width:16.680000px;}
._e_c00233{width:18.720000px;}
._14_c00233{width:21.270000px;}
._16_c00233{width:22.349985px;}
._18_c00233{width:23.849985px;}
._f_c00233{width:25.230000px;}
._10_c00233{width:27.930000px;}
.fc1_c00233{color:transparent;}
.fc0_c00233{color:rgb(35,31,32);}
.fs1_c00233{font-size:51.000000px;}
.fs0_c00233{font-size:60.000000px;}
.y0_c00233{bottom:0.000000px;}
.y2a_c00233{bottom:64.425022px;}
.y29_c00233{bottom:110.550022px;}
.y28_c00233{bottom:125.625022px;}
.y27_c00233{bottom:140.700022px;}
.y26_c00233{bottom:156.225022px;}
.y25_c00233{bottom:171.750022px;}
.y24_c00233{bottom:186.525022px;}
.y23_c00233{bottom:202.350022px;}
.y22_c00233{bottom:217.125022px;}
.y21_c00233{bottom:232.575022px;}
.y20_c00233{bottom:248.025022px;}
.y1f_c00233{bottom:263.175022px;}
.y1e_c00233{bottom:278.325022px;}
.y1d_c00233{bottom:294.150022px;}
.y1c_c00233{bottom:308.925022px;}
.y1b_c00233{bottom:324.375022px;}
.y1a_c00233{bottom:339.525022px;}
.y19_c00233{bottom:354.975022px;}
.y18_c00233{bottom:370.125022px;}
.y17_c00233{bottom:385.950022px;}
.y16_c00233{bottom:401.025022px;}
.y14_c00233{bottom:475.950022px;}
.y13_c00233{bottom:495.375022px;}
.y12_c00233{bottom:514.425022px;}
.y11_c00233{bottom:533.925022px;}
.y10_c00233{bottom:553.725022px;}
.yf_c00233{bottom:572.775022px;}
.ye_c00233{bottom:592.200022px;}
.yd_c00233{bottom:612.000022px;}
.yc_c00233{bottom:631.125022px;}
.yb_c00233{bottom:650.925022px;}
.ya_c00233{bottom:670.350022px;}
.y9_c00233{bottom:689.400022px;}
.y8_c00233{bottom:708.825022px;}
.y7_c00233{bottom:728.325022px;}
.y6_c00233{bottom:747.750022px;}
.y5_c00233{bottom:767.550022px;}
.y4_c00233{bottom:786.225022px;}
.y3_c00233{bottom:806.025022px;}
.y2_c00233{bottom:825.525022px;}
.y1_c00233{bottom:844.575022px;}
.y15_c00233{bottom:886.725022px;}
.h3_c00233{height:50.028809px;}
.h4_c00233{height:50.053711px;}
.h2_c00233{height:58.886719px;}
.h1_c00233{height:957.750000px;}
.h0_c00233{height:957.975000px;}
.w0_c00233{width:641.850030px;}
.w1_c00233{width:642.000000px;}
.x0_c00233{left:0.000000px;}
.x2_c00233{left:81.000000px;}
.x4_c00233{left:87.825000px;}
.x1_c00233{left:97.200000px;}
.x5_c00233{left:120.600000px;}
.x3_c00233{left:144.750000px;}
.x6_c00233{left:531.375000px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls0_c00233{letter-spacing:0.000000pt;}
.ws1_c00233{word-spacing:-13.333333pt;}
.ws0_c00233{word-spacing:-11.333333pt;}
.ws2_c00233{word-spacing:0.000000pt;}
._8_c00233{margin-left:-11.200000pt;}
._7_c00233{margin-left:-9.600000pt;}
._19_c00233{margin-left:-7.445760pt;}
._17_c00233{margin-left:-5.205365pt;}
._12_c00233{margin-left:-4.045208pt;}
._13_c00233{margin-left:-3.146653pt;}
._1_c00233{margin-left:-2.186667pt;}
._5_c00233{margin-left:-1.280000pt;}
._3_c00233{width:1.333333pt;}
._0_c00233{width:2.773333pt;}
._4_c00233{width:3.893333pt;}
._2_c00233{width:4.906667pt;}
._15_c00233{width:5.981387pt;}
._6_c00233{width:6.880000pt;}
._a_c00233{width:8.640000pt;}
._c_c00233{width:9.600000pt;}
._b_c00233{width:10.613333pt;}
._9_c00233{width:11.520000pt;}
._11_c00233{width:13.423979pt;}
._d_c00233{width:14.826667pt;}
._e_c00233{width:16.640000pt;}
._14_c00233{width:18.906667pt;}
._16_c00233{width:19.866653pt;}
._18_c00233{width:21.199987pt;}
._f_c00233{width:22.426667pt;}
._10_c00233{width:24.826667pt;}
.fs1_c00233{font-size:45.333333pt;}
.fs0_c00233{font-size:53.333333pt;}
.y0_c00233{bottom:0.000000pt;}
.y2a_c00233{bottom:57.266686pt;}
.y29_c00233{bottom:98.266686pt;}
.y28_c00233{bottom:111.666686pt;}
.y27_c00233{bottom:125.066686pt;}
.y26_c00233{bottom:138.866686pt;}
.y25_c00233{bottom:152.666686pt;}
.y24_c00233{bottom:165.800020pt;}
.y23_c00233{bottom:179.866686pt;}
.y22_c00233{bottom:193.000020pt;}
.y21_c00233{bottom:206.733353pt;}
.y20_c00233{bottom:220.466686pt;}
.y1f_c00233{bottom:233.933353pt;}
.y1e_c00233{bottom:247.400020pt;}
.y1d_c00233{bottom:261.466686pt;}
.y1c_c00233{bottom:274.600020pt;}
.y1b_c00233{bottom:288.333353pt;}
.y1a_c00233{bottom:301.800020pt;}
.y19_c00233{bottom:315.533353pt;}
.y18_c00233{bottom:329.000020pt;}
.y17_c00233{bottom:343.066686pt;}
.y16_c00233{bottom:356.466686pt;}
.y14_c00233{bottom:423.066686pt;}
.y13_c00233{bottom:440.333353pt;}
.y12_c00233{bottom:457.266686pt;}
.y11_c00233{bottom:474.600020pt;}
.y10_c00233{bottom:492.200020pt;}
.yf_c00233{bottom:509.133353pt;}
.ye_c00233{bottom:526.400020pt;}
.yd_c00233{bottom:544.000020pt;}
.yc_c00233{bottom:561.000020pt;}
.yb_c00233{bottom:578.600020pt;}
.ya_c00233{bottom:595.866686pt;}
.y9_c00233{bottom:612.800020pt;}
.y8_c00233{bottom:630.066686pt;}
.y7_c00233{bottom:647.400020pt;}
.y6_c00233{bottom:664.666686pt;}
.y5_c00233{bottom:682.266686pt;}
.y4_c00233{bottom:698.866686pt;}
.y3_c00233{bottom:716.466686pt;}
.y2_c00233{bottom:733.800020pt;}
.y1_c00233{bottom:750.733353pt;}
.y15_c00233{bottom:788.200020pt;}
.h3_c00233{height:44.470052pt;}
.h4_c00233{height:44.492188pt;}
.h2_c00233{height:52.343750pt;}
.h1_c00233{height:851.333333pt;}
.h0_c00233{height:851.533333pt;}
.w0_c00233{width:570.533360pt;}
.w1_c00233{width:570.666667pt;}
.x0_c00233{left:0.000000pt;}
.x2_c00233{left:72.000000pt;}
.x4_c00233{left:78.066667pt;}
.x1_c00233{left:86.400000pt;}
.x5_c00233{left:107.200000pt;}
.x3_c00233{left:128.666667pt;}
.x6_c00233{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dca3a97c8b33bd3d6c20611f.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00234;src:url('chunks/assets/font_8560120f277a514650b4907b.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00234{letter-spacing:0.000000px;}
.ls0_c00234{letter-spacing:4.650000px;}
.sc__c00234{text-shadow:none;}
.sc0_c00234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00234{-webkit-text-stroke:0px transparent;}
.sc0_c00234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00234{word-spacing:-15.000000px;}
.ws0_c00234{word-spacing:-12.750000px;}
.ws2_c00234{word-spacing:0.000000px;}
._b_c00234{margin-left:-13.553706px;}
._a_c00234{margin-left:-12.546294px;}
._e_c00234{margin-left:-11.489826px;}
._d_c00234{margin-left:-10.410174px;}
._16_c00234{margin-left:-7.592091px;}
._17_c00234{margin-left:-6.089736px;}
._18_c00234{margin-left:-4.932090px;}
._4_c00234{margin-left:-3.804243px;}
._0_c00234{margin-left:-2.622012px;}
._2_c00234{margin-left:-1.539027px;}
._3_c00234{width:1.062024px;}
._1_c00234{width:2.400009px;}
._13_c00234{width:3.480318px;}
._7_c00234{width:4.500000px;}
._6_c00234{width:5.885814px;}
._5_c00234{width:6.960000px;}
._12_c00234{width:8.798754px;}
._8_c00234{width:10.740000px;}
._9_c00234{width:12.617949px;}
._c_c00234{width:13.751682px;}
._15_c00234{width:14.907081px;}
._11_c00234{width:16.719027px;}
._f_c00234{width:18.381039px;}
._10_c00234{width:20.087856px;}
._1b_c00234{width:22.146336px;}
._1a_c00234{width:23.792877px;}
._1c_c00234{width:25.448838px;}
._19_c00234{width:26.706099px;}
._14_c00234{width:28.872078px;}
.fc2_c00234{color:transparent;}
.fc1_c00234{color:rgb(0,0,0);}
.fc0_c00234{color:rgb(35,31,32);}
.fs0_c00234{font-size:51.000000px;}
.fs1_c00234{font-size:60.000000px;}
.y0_c00234{bottom:0.000000px;}
.y2c_c00234{bottom:64.800022px;}
.y2b_c00234{bottom:110.175022px;}
.y2a_c00234{bottom:125.325022px;}
.y29_c00234{bottom:140.775022px;}
.y28_c00234{bottom:155.925022px;}
.y27_c00234{bottom:171.750022px;}
.y26_c00234{bottom:186.525022px;}
.y25_c00234{bottom:201.975022px;}
.y24_c00234{bottom:217.125022px;}
.y23_c00234{bottom:232.575022px;}
.y22_c00234{bottom:247.725022px;}
.y21_c00234{bottom:263.175022px;}
.y20_c00234{bottom:278.325022px;}
.y1f_c00234{bottom:294.150022px;}
.y1e_c00234{bottom:309.225022px;}
.y1d_c00234{bottom:324.375022px;}
.y1c_c00234{bottom:339.525022px;}
.y1b_c00234{bottom:355.350022px;}
.y1a_c00234{bottom:370.125022px;}
.y19_c00234{bottom:385.950022px;}
.y18_c00234{bottom:401.025022px;}
.y17_c00234{bottom:416.175022px;}
.y16_c00234{bottom:456.150022px;}
.y15_c00234{bottom:475.950022px;}
.y14_c00234{bottom:495.375022px;}
.y13_c00234{bottom:514.500022px;}
.y12_c00234{bottom:533.925022px;}
.y11_c00234{bottom:553.350022px;}
.y10_c00234{bottom:572.775022px;}
.yf_c00234{bottom:592.200022px;}
.ye_c00234{bottom:612.000022px;}
.yd_c00234{bottom:631.425022px;}
.yc_c00234{bottom:650.550022px;}
.yb_c00234{bottom:670.350022px;}
.ya_c00234{bottom:689.625022px;}
.y9_c00234{bottom:709.125022px;}
.y8_c00234{bottom:728.625022px;}
.y7_c00234{bottom:748.125022px;}
.y6_c00234{bottom:767.550022px;}
.y5_c00234{bottom:786.225022px;}
.y4_c00234{bottom:806.025022px;}
.y3_c00234{bottom:825.525022px;}
.y2_c00234{bottom:844.950022px;}
.y1_c00234{bottom:886.725022px;}
.h2_c00234{height:50.028809px;}
.h4_c00234{height:50.053711px;}
.h3_c00234{height:58.886719px;}
.h1_c00234{height:957.750000px;}
.h0_c00234{height:957.975000px;}
.w1_c00234{width:643.500000px;}
.w0_c00234{width:643.650000px;}
.x0_c00234{left:0.000000px;}
.x1_c00234{left:91.050000px;}
.x3_c00234{left:97.575000px;}
.x2_c00234{left:107.250000px;}
.x4_c00234{left:131.025000px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls1_c00234{letter-spacing:0.000000pt;}
.ls0_c00234{letter-spacing:4.133333pt;}
.ws1_c00234{word-spacing:-13.333333pt;}
.ws0_c00234{word-spacing:-11.333333pt;}
.ws2_c00234{word-spacing:0.000000pt;}
._b_c00234{margin-left:-12.047739pt;}
._a_c00234{margin-left:-11.152261pt;}
._e_c00234{margin-left:-10.213179pt;}
._d_c00234{margin-left:-9.253488pt;}
._16_c00234{margin-left:-6.748525pt;}
._17_c00234{margin-left:-5.413099pt;}
._18_c00234{margin-left:-4.384080pt;}
._4_c00234{margin-left:-3.381549pt;}
._0_c00234{margin-left:-2.330677pt;}
._2_c00234{margin-left:-1.368024pt;}
._3_c00234{width:0.944021pt;}
._1_c00234{width:2.133341pt;}
._13_c00234{width:3.093616pt;}
._7_c00234{width:4.000000pt;}
._6_c00234{width:5.231835pt;}
._5_c00234{width:6.186667pt;}
._12_c00234{width:7.821115pt;}
._8_c00234{width:9.546667pt;}
._9_c00234{width:11.215955pt;}
._c_c00234{width:12.223717pt;}
._15_c00234{width:13.250739pt;}
._11_c00234{width:14.861357pt;}
._f_c00234{width:16.338701pt;}
._10_c00234{width:17.855872pt;}
._1b_c00234{width:19.685632pt;}
._1a_c00234{width:21.149224pt;}
._1c_c00234{width:22.621189pt;}
._19_c00234{width:23.738755pt;}
._14_c00234{width:25.664069pt;}
.fs0_c00234{font-size:45.333333pt;}
.fs1_c00234{font-size:53.333333pt;}
.y0_c00234{bottom:0.000000pt;}
.y2c_c00234{bottom:57.600020pt;}
.y2b_c00234{bottom:97.933353pt;}
.y2a_c00234{bottom:111.400020pt;}
.y29_c00234{bottom:125.133353pt;}
.y28_c00234{bottom:138.600020pt;}
.y27_c00234{bottom:152.666686pt;}
.y26_c00234{bottom:165.800020pt;}
.y25_c00234{bottom:179.533353pt;}
.y24_c00234{bottom:193.000020pt;}
.y23_c00234{bottom:206.733353pt;}
.y22_c00234{bottom:220.200020pt;}
.y21_c00234{bottom:233.933353pt;}
.y20_c00234{bottom:247.400020pt;}
.y1f_c00234{bottom:261.466686pt;}
.y1e_c00234{bottom:274.866686pt;}
.y1d_c00234{bottom:288.333353pt;}
.y1c_c00234{bottom:301.800020pt;}
.y1b_c00234{bottom:315.866686pt;}
.y1a_c00234{bottom:329.000020pt;}
.y19_c00234{bottom:343.066686pt;}
.y18_c00234{bottom:356.466686pt;}
.y17_c00234{bottom:369.933353pt;}
.y16_c00234{bottom:405.466686pt;}
.y15_c00234{bottom:423.066686pt;}
.y14_c00234{bottom:440.333353pt;}
.y13_c00234{bottom:457.333353pt;}
.y12_c00234{bottom:474.600020pt;}
.y11_c00234{bottom:491.866686pt;}
.y10_c00234{bottom:509.133353pt;}
.yf_c00234{bottom:526.400020pt;}
.ye_c00234{bottom:544.000020pt;}
.yd_c00234{bottom:561.266686pt;}
.yc_c00234{bottom:578.266686pt;}
.yb_c00234{bottom:595.866686pt;}
.ya_c00234{bottom:613.000020pt;}
.y9_c00234{bottom:630.333353pt;}
.y8_c00234{bottom:647.666686pt;}
.y7_c00234{bottom:665.000020pt;}
.y6_c00234{bottom:682.266686pt;}
.y5_c00234{bottom:698.866686pt;}
.y4_c00234{bottom:716.466686pt;}
.y3_c00234{bottom:733.800020pt;}
.y2_c00234{bottom:751.066686pt;}
.y1_c00234{bottom:788.200020pt;}
.h2_c00234{height:44.470052pt;}
.h4_c00234{height:44.492188pt;}
.h3_c00234{height:52.343750pt;}
.h1_c00234{height:851.333333pt;}
.h0_c00234{height:851.533333pt;}
.w1_c00234{width:572.000000pt;}
.w0_c00234{width:572.133333pt;}
.x0_c00234{left:0.000000pt;}
.x1_c00234{left:80.933333pt;}
.x3_c00234{left:86.733333pt;}
.x2_c00234{left:95.333333pt;}
.x4_c00234{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_81d7c3bdd7b4a7f439210c4d.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00235;src:url('chunks/assets/font_4d69a1536af61882da6f9ecd.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.ls1_c00235{letter-spacing:0.000000px;}
.ls0_c00235{letter-spacing:7.350000px;}
.sc__c00235{text-shadow:none;}
.sc0_c00235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00235{-webkit-text-stroke:0px transparent;}
.sc0_c00235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00235{word-spacing:-15.000000px;}
.ws1_c00235{word-spacing:-12.750000px;}
.ws2_c00235{word-spacing:0.000000px;}
._15_c00235{margin-left:-15.180000px;}
._14_c00235{margin-left:-13.080000px;}
._11_c00235{margin-left:-11.880000px;}
._12_c00235{margin-left:-10.620000px;}
._19_c00235{margin-left:-7.809177px;}
._18_c00235{margin-left:-6.149949px;}
._13_c00235{margin-left:-5.040000px;}
._c_c00235{margin-left:-3.360000px;}
._e_c00235{margin-left:-2.340000px;}
._5_c00235{margin-left:-1.320000px;}
._0_c00235{width:1.500000px;}
._2_c00235{width:3.300000px;}
._7_c00235{width:5.280000px;}
._6_c00235{width:6.480000px;}
._4_c00235{width:7.980000px;}
._3_c00235{width:9.060000px;}
._8_c00235{width:10.140000px;}
._1_c00235{width:11.520000px;}
._9_c00235{width:13.560000px;}
._a_c00235{width:16.080000px;}
._f_c00235{width:17.400000px;}
._d_c00235{width:19.860000px;}
._b_c00235{width:22.680000px;}
._16_c00235{width:23.730030px;}
._10_c00235{width:24.780000px;}
._17_c00235{width:27.570000px;}
.fc2_c00235{color:transparent;}
.fc1_c00235{color:rgb(0,0,0);}
.fc0_c00235{color:rgb(35,31,32);}
.fs1_c00235{font-size:51.000000px;}
.fs0_c00235{font-size:60.000000px;}
.y0_c00235{bottom:0.000000px;}
.y29_c00235{bottom:64.425022px;}
.y28_c00235{bottom:110.175022px;}
.y27_c00235{bottom:125.325022px;}
.y26_c00235{bottom:140.775022px;}
.y25_c00235{bottom:155.925022px;}
.y24_c00235{bottom:171.375022px;}
.y23_c00235{bottom:186.825022px;}
.y22_c00235{bottom:201.975022px;}
.y21_c00235{bottom:217.425022px;}
.y20_c00235{bottom:232.575022px;}
.y1f_c00235{bottom:247.725022px;}
.y1e_c00235{bottom:263.550022px;}
.y1d_c00235{bottom:278.625022px;}
.y1c_c00235{bottom:293.775022px;}
.y1b_c00235{bottom:308.925022px;}
.y1a_c00235{bottom:324.375022px;}
.y18_c00235{bottom:379.125022px;}
.y17_c00235{bottom:398.550022px;}
.y16_c00235{bottom:418.350022px;}
.y15_c00235{bottom:437.775022px;}
.y14_c00235{bottom:457.200022px;}
.y13_c00235{bottom:476.325022px;}
.y12_c00235{bottom:495.750022px;}
.y11_c00235{bottom:515.175022px;}
.y10_c00235{bottom:534.600022px;}
.yf_c00235{bottom:554.025022px;}
.ye_c00235{bottom:573.825022px;}
.yd_c00235{bottom:593.325022px;}
.yc_c00235{bottom:612.375022px;}
.yb_c00235{bottom:632.175022px;}
.ya_c00235{bottom:651.225022px;}
.y9_c00235{bottom:670.725022px;}
.y8_c00235{bottom:690.150022px;}
.y7_c00235{bottom:709.950022px;}
.y6_c00235{bottom:729.000022px;}
.y5_c00235{bottom:748.425022px;}
.y4_c00235{bottom:767.925022px;}
.y3_c00235{bottom:787.350022px;}
.y2_c00235{bottom:806.775022px;}
.y1_c00235{bottom:844.575022px;}
.y19_c00235{bottom:886.725022px;}
.h3_c00235{height:50.028809px;}
.h4_c00235{height:50.053711px;}
.h2_c00235{height:58.886719px;}
.h1_c00235{height:957.750000px;}
.h0_c00235{height:957.975000px;}
.w0_c00235{width:641.850030px;}
.w1_c00235{width:642.000000px;}
.x0_c00235{left:0.000000px;}
.x1_c00235{left:81.000000px;}
.x4_c00235{left:87.825000px;}
.x2_c00235{left:97.200000px;}
.x5_c00235{left:121.350000px;}
.x3_c00235{left:144.750000px;}
.x6_c00235{left:531.375000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls1_c00235{letter-spacing:0.000000pt;}
.ls0_c00235{letter-spacing:6.533333pt;}
.ws0_c00235{word-spacing:-13.333333pt;}
.ws1_c00235{word-spacing:-11.333333pt;}
.ws2_c00235{word-spacing:0.000000pt;}
._15_c00235{margin-left:-13.493333pt;}
._14_c00235{margin-left:-11.626667pt;}
._11_c00235{margin-left:-10.560000pt;}
._12_c00235{margin-left:-9.440000pt;}
._19_c00235{margin-left:-6.941491pt;}
._18_c00235{margin-left:-5.466621pt;}
._13_c00235{margin-left:-4.480000pt;}
._c_c00235{margin-left:-2.986667pt;}
._e_c00235{margin-left:-2.080000pt;}
._5_c00235{margin-left:-1.173333pt;}
._0_c00235{width:1.333333pt;}
._2_c00235{width:2.933333pt;}
._7_c00235{width:4.693333pt;}
._6_c00235{width:5.760000pt;}
._4_c00235{width:7.093333pt;}
._3_c00235{width:8.053333pt;}
._8_c00235{width:9.013333pt;}
._1_c00235{width:10.240000pt;}
._9_c00235{width:12.053333pt;}
._a_c00235{width:14.293333pt;}
._f_c00235{width:15.466667pt;}
._d_c00235{width:17.653333pt;}
._b_c00235{width:20.160000pt;}
._16_c00235{width:21.093360pt;}
._10_c00235{width:22.026667pt;}
._17_c00235{width:24.506667pt;}
.fs1_c00235{font-size:45.333333pt;}
.fs0_c00235{font-size:53.333333pt;}
.y0_c00235{bottom:0.000000pt;}
.y29_c00235{bottom:57.266686pt;}
.y28_c00235{bottom:97.933353pt;}
.y27_c00235{bottom:111.400020pt;}
.y26_c00235{bottom:125.133353pt;}
.y25_c00235{bottom:138.600020pt;}
.y24_c00235{bottom:152.333353pt;}
.y23_c00235{bottom:166.066686pt;}
.y22_c00235{bottom:179.533353pt;}
.y21_c00235{bottom:193.266686pt;}
.y20_c00235{bottom:206.733353pt;}
.y1f_c00235{bottom:220.200020pt;}
.y1e_c00235{bottom:234.266686pt;}
.y1d_c00235{bottom:247.666686pt;}
.y1c_c00235{bottom:261.133353pt;}
.y1b_c00235{bottom:274.600020pt;}
.y1a_c00235{bottom:288.333353pt;}
.y18_c00235{bottom:337.000020pt;}
.y17_c00235{bottom:354.266686pt;}
.y16_c00235{bottom:371.866686pt;}
.y15_c00235{bottom:389.133353pt;}
.y14_c00235{bottom:406.400020pt;}
.y13_c00235{bottom:423.400020pt;}
.y12_c00235{bottom:440.666686pt;}
.y11_c00235{bottom:457.933353pt;}
.y10_c00235{bottom:475.200020pt;}
.yf_c00235{bottom:492.466686pt;}
.ye_c00235{bottom:510.066686pt;}
.yd_c00235{bottom:527.400020pt;}
.yc_c00235{bottom:544.333353pt;}
.yb_c00235{bottom:561.933353pt;}
.ya_c00235{bottom:578.866686pt;}
.y9_c00235{bottom:596.200020pt;}
.y8_c00235{bottom:613.466686pt;}
.y7_c00235{bottom:631.066686pt;}
.y6_c00235{bottom:648.000020pt;}
.y5_c00235{bottom:665.266686pt;}
.y4_c00235{bottom:682.600020pt;}
.y3_c00235{bottom:699.866686pt;}
.y2_c00235{bottom:717.133353pt;}
.y1_c00235{bottom:750.733353pt;}
.y19_c00235{bottom:788.200020pt;}
.h3_c00235{height:44.470052pt;}
.h4_c00235{height:44.492188pt;}
.h2_c00235{height:52.343750pt;}
.h1_c00235{height:851.333333pt;}
.h0_c00235{height:851.533333pt;}
.w0_c00235{width:570.533360pt;}
.w1_c00235{width:570.666667pt;}
.x0_c00235{left:0.000000pt;}
.x1_c00235{left:72.000000pt;}
.x4_c00235{left:78.066667pt;}
.x2_c00235{left:86.400000pt;}
.x5_c00235{left:107.866667pt;}
.x3_c00235{left:128.666667pt;}
.x6_c00235{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_95edddbaf0bce14fab1ba6de.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00236;src:url('chunks/assets/font_b58a25377c0539383801b8a1.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00236{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00236{word-spacing:-12.750000px;}
.ws2_c00236{word-spacing:0.000000px;}
._d_c00236{margin-left:-13.500000px;}
._c_c00236{margin-left:-12.071895px;}
._1b_c00236{margin-left:-10.069950px;}
._15_c00236{margin-left:-8.886444px;}
._b_c00236{margin-left:-7.187928px;}
._18_c00236{margin-left:-5.220027px;}
._4_c00236{margin-left:-3.804243px;}
._0_c00236{margin-left:-2.622012px;}
._2_c00236{margin-left:-1.539027px;}
._3_c00236{width:1.062024px;}
._1_c00236{width:2.400009px;}
._7_c00236{width:3.899991px;}
._a_c00236{width:5.291895px;}
._9_c00236{width:6.329916px;}
._e_c00236{width:7.449144px;}
._6_c00236{width:8.951859px;}
._8_c00236{width:10.199991px;}
._5_c00236{width:11.237976px;}
._11_c00236{width:12.569916px;}
._f_c00236{width:13.895916px;}
._10_c00236{width:16.014051px;}
._14_c00236{width:17.453928px;}
._1a_c00236{width:18.458976px;}
._12_c00236{width:19.817958px;}
._13_c00236{width:21.378081px;}
._16_c00236{width:23.129001px;}
._17_c00236{width:24.264891px;}
._1c_c00236{width:26.211039px;}
._19_c00236{width:27.333042px;}
.fc1_c00236{color:transparent;}
.fc0_c00236{color:rgb(35,31,32);}
.fs0_c00236{font-size:51.000000px;}
.fs1_c00236{font-size:60.000000px;}
.y0_c00236{bottom:0.000000px;}
.y2c_c00236{bottom:64.425022px;}
.y2b_c00236{bottom:110.175022px;}
.y2a_c00236{bottom:125.325022px;}
.y29_c00236{bottom:140.775022px;}
.y28_c00236{bottom:155.925022px;}
.y27_c00236{bottom:171.750022px;}
.y26_c00236{bottom:186.525022px;}
.y25_c00236{bottom:202.350022px;}
.y24_c00236{bottom:217.425022px;}
.y23_c00236{bottom:232.950022px;}
.y22_c00236{bottom:247.725022px;}
.y21_c00236{bottom:263.550022px;}
.y20_c00236{bottom:278.625022px;}
.y1f_c00236{bottom:293.775022px;}
.y1e_c00236{bottom:309.225022px;}
.y1d_c00236{bottom:324.375022px;}
.y1c_c00236{bottom:339.525022px;}
.y1b_c00236{bottom:355.350022px;}
.y1a_c00236{bottom:370.125022px;}
.y19_c00236{bottom:385.575022px;}
.y18_c00236{bottom:401.025022px;}
.y17_c00236{bottom:416.175022px;}
.y16_c00236{bottom:456.525022px;}
.y15_c00236{bottom:475.950022px;}
.y14_c00236{bottom:495.375022px;}
.y13_c00236{bottom:514.425022px;}
.y12_c00236{bottom:533.925022px;}
.y11_c00236{bottom:553.350022px;}
.y10_c00236{bottom:573.150022px;}
.yf_c00236{bottom:592.200022px;}
.ye_c00236{bottom:611.625022px;}
.yd_c00236{bottom:631.125022px;}
.yc_c00236{bottom:650.925022px;}
.yb_c00236{bottom:669.975022px;}
.ya_c00236{bottom:689.775022px;}
.y9_c00236{bottom:709.200022px;}
.y8_c00236{bottom:728.325022px;}
.y7_c00236{bottom:747.750022px;}
.y6_c00236{bottom:767.550022px;}
.y5_c00236{bottom:786.225022px;}
.y4_c00236{bottom:806.025022px;}
.y3_c00236{bottom:825.150022px;}
.y2_c00236{bottom:844.950022px;}
.y1_c00236{bottom:886.725022px;}
.h2_c00236{height:50.028809px;}
.h4_c00236{height:50.053711px;}
.h3_c00236{height:58.886719px;}
.h1_c00236{height:957.750000px;}
.h0_c00236{height:957.975000px;}
.w1_c00236{width:643.500000px;}
.w0_c00236{width:643.650000px;}
.x0_c00236{left:0.000000px;}
.x1_c00236{left:91.050000px;}
.x2_c00236{left:97.575000px;}
.x3_c00236{left:131.400000px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls0_c00236{letter-spacing:0.000000pt;}
.ws0_c00236{word-spacing:-13.333333pt;}
.ws1_c00236{word-spacing:-11.333333pt;}
.ws2_c00236{word-spacing:0.000000pt;}
._d_c00236{margin-left:-12.000000pt;}
._c_c00236{margin-left:-10.730573pt;}
._1b_c00236{margin-left:-8.951067pt;}
._15_c00236{margin-left:-7.899061pt;}
._b_c00236{margin-left:-6.389269pt;}
._18_c00236{margin-left:-4.640024pt;}
._4_c00236{margin-left:-3.381549pt;}
._0_c00236{margin-left:-2.330677pt;}
._2_c00236{margin-left:-1.368024pt;}
._3_c00236{width:0.944021pt;}
._1_c00236{width:2.133341pt;}
._7_c00236{width:3.466659pt;}
._a_c00236{width:4.703907pt;}
._9_c00236{width:5.626592pt;}
._e_c00236{width:6.621461pt;}
._6_c00236{width:7.957208pt;}
._8_c00236{width:9.066659pt;}
._5_c00236{width:9.989312pt;}
._11_c00236{width:11.173259pt;}
._f_c00236{width:12.351925pt;}
._10_c00236{width:14.234712pt;}
._14_c00236{width:15.514603pt;}
._1a_c00236{width:16.407979pt;}
._12_c00236{width:17.615963pt;}
._13_c00236{width:19.002739pt;}
._16_c00236{width:20.559112pt;}
._17_c00236{width:21.568792pt;}
._1c_c00236{width:23.298701pt;}
._19_c00236{width:24.296037pt;}
.fs0_c00236{font-size:45.333333pt;}
.fs1_c00236{font-size:53.333333pt;}
.y0_c00236{bottom:0.000000pt;}
.y2c_c00236{bottom:57.266686pt;}
.y2b_c00236{bottom:97.933353pt;}
.y2a_c00236{bottom:111.400020pt;}
.y29_c00236{bottom:125.133353pt;}
.y28_c00236{bottom:138.600020pt;}
.y27_c00236{bottom:152.666686pt;}
.y26_c00236{bottom:165.800020pt;}
.y25_c00236{bottom:179.866686pt;}
.y24_c00236{bottom:193.266686pt;}
.y23_c00236{bottom:207.066686pt;}
.y22_c00236{bottom:220.200020pt;}
.y21_c00236{bottom:234.266686pt;}
.y20_c00236{bottom:247.666686pt;}
.y1f_c00236{bottom:261.133353pt;}
.y1e_c00236{bottom:274.866686pt;}
.y1d_c00236{bottom:288.333353pt;}
.y1c_c00236{bottom:301.800020pt;}
.y1b_c00236{bottom:315.866686pt;}
.y1a_c00236{bottom:329.000020pt;}
.y19_c00236{bottom:342.733353pt;}
.y18_c00236{bottom:356.466686pt;}
.y17_c00236{bottom:369.933353pt;}
.y16_c00236{bottom:405.800020pt;}
.y15_c00236{bottom:423.066686pt;}
.y14_c00236{bottom:440.333353pt;}
.y13_c00236{bottom:457.266686pt;}
.y12_c00236{bottom:474.600020pt;}
.y11_c00236{bottom:491.866686pt;}
.y10_c00236{bottom:509.466686pt;}
.yf_c00236{bottom:526.400020pt;}
.ye_c00236{bottom:543.666686pt;}
.yd_c00236{bottom:561.000020pt;}
.yc_c00236{bottom:578.600020pt;}
.yb_c00236{bottom:595.533353pt;}
.ya_c00236{bottom:613.133353pt;}
.y9_c00236{bottom:630.400020pt;}
.y8_c00236{bottom:647.400020pt;}
.y7_c00236{bottom:664.666686pt;}
.y6_c00236{bottom:682.266686pt;}
.y5_c00236{bottom:698.866686pt;}
.y4_c00236{bottom:716.466686pt;}
.y3_c00236{bottom:733.466686pt;}
.y2_c00236{bottom:751.066686pt;}
.y1_c00236{bottom:788.200020pt;}
.h2_c00236{height:44.470052pt;}
.h4_c00236{height:44.492188pt;}
.h3_c00236{height:52.343750pt;}
.h1_c00236{height:851.333333pt;}
.h0_c00236{height:851.533333pt;}
.w1_c00236{width:572.000000pt;}
.w0_c00236{width:572.133333pt;}
.x0_c00236{left:0.000000pt;}
.x1_c00236{left:80.933333pt;}
.x2_c00236{left:86.733333pt;}
.x3_c00236{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c83fa3da46c05d92f65a99e3.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00237;src:url('chunks/assets/font_924df7c7709d0d98e4b4a7c7.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.ls1_c00237{letter-spacing:0.000000px;}
.ls0_c00237{letter-spacing:1.199979px;}
.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:-15.000000px;}
.ws2_c00237{word-spacing:-13.949979px;}
.ws1_c00237{word-spacing:-12.750000px;}
.ws3_c00237{word-spacing:0.000000px;}
._17_c00237{margin-left:-17.100000px;}
._12_c00237{margin-left:-15.540000px;}
._13_c00237{margin-left:-14.160000px;}
._9_c00237{margin-left:-11.700000px;}
._7_c00237{margin-left:-9.600000px;}
._16_c00237{margin-left:-6.840000px;}
._18_c00237{margin-left:-4.920000px;}
._8_c00237{margin-left:-3.720000px;}
._e_c00237{margin-left:-2.220000px;}
._6_c00237{margin-left:-1.020000px;}
._0_c00237{width:1.200000px;}
._1_c00237{width:2.340000px;}
._4_c00237{width:3.960000px;}
._5_c00237{width:5.220000px;}
._2_c00237{width:7.140000px;}
._3_c00237{width:8.940000px;}
._10_c00237{width:10.140000px;}
._f_c00237{width:11.220000px;}
._11_c00237{width:12.960000px;}
._14_c00237{width:13.980000px;}
._15_c00237{width:17.340000px;}
._a_c00237{width:18.600000px;}
._d_c00237{width:19.980000px;}
._c_c00237{width:21.780000px;}
._b_c00237{width:22.860000px;}
._1b_c00237{width:24.030000px;}
._1c_c00237{width:25.230000px;}
._19_c00237{width:26.730030px;}
._1a_c00237{width:29.430000px;}
.fc1_c00237{color:transparent;}
.fc0_c00237{color:rgb(35,31,32);}
.fs1_c00237{font-size:51.000000px;}
.fs0_c00237{font-size:60.000000px;}
.y0_c00237{bottom:0.000000px;}
.y2a_c00237{bottom:64.425022px;}
.y29_c00237{bottom:110.550022px;}
.y28_c00237{bottom:125.625022px;}
.y27_c00237{bottom:140.775022px;}
.y26_c00237{bottom:155.925022px;}
.y25_c00237{bottom:171.375022px;}
.y24_c00237{bottom:186.525022px;}
.y23_c00237{bottom:201.975022px;}
.y22_c00237{bottom:217.125022px;}
.y21_c00237{bottom:232.575022px;}
.y20_c00237{bottom:248.025022px;}
.y1f_c00237{bottom:263.175022px;}
.y1e_c00237{bottom:278.625022px;}
.y1d_c00237{bottom:293.775022px;}
.y1c_c00237{bottom:308.925022px;}
.y1b_c00237{bottom:324.375022px;}
.y19_c00237{bottom:378.375022px;}
.y18_c00237{bottom:397.800022px;}
.y17_c00237{bottom:417.225022px;}
.y16_c00237{bottom:436.725022px;}
.y15_c00237{bottom:456.150022px;}
.y14_c00237{bottom:475.950022px;}
.y13_c00237{bottom:495.375022px;}
.y12_c00237{bottom:514.425022px;}
.y11_c00237{bottom:534.225022px;}
.y10_c00237{bottom:553.350022px;}
.yf_c00237{bottom:573.150022px;}
.ye_c00237{bottom:592.200022px;}
.yd_c00237{bottom:612.000022px;}
.yc_c00237{bottom:631.425022px;}
.yb_c00237{bottom:650.550022px;}
.ya_c00237{bottom:670.350022px;}
.y9_c00237{bottom:689.775022px;}
.y8_c00237{bottom:708.825022px;}
.y7_c00237{bottom:728.625022px;}
.y6_c00237{bottom:747.750022px;}
.y5_c00237{bottom:767.550022px;}
.y4_c00237{bottom:786.600022px;}
.y3_c00237{bottom:805.725022px;}
.y2_c00237{bottom:825.150022px;}
.y1_c00237{bottom:844.575022px;}
.y1a_c00237{bottom:886.725022px;}
.h3_c00237{height:50.028809px;}
.h4_c00237{height:50.053711px;}
.h2_c00237{height:58.886719px;}
.h1_c00237{height:957.750000px;}
.h0_c00237{height:957.975000px;}
.w0_c00237{width:641.850030px;}
.w1_c00237{width:642.000000px;}
.x0_c00237{left:0.000000px;}
.x3_c00237{left:79.950000px;}
.x1_c00237{left:81.000000px;}
.x5_c00237{left:87.825000px;}
.x2_c00237{left:97.200000px;}
.x6_c00237{left:120.975000px;}
.x4_c00237{left:144.750000px;}
.x7_c00237{left:531.375000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls1_c00237{letter-spacing:0.000000pt;}
.ls0_c00237{letter-spacing:1.066648pt;}
.ws0_c00237{word-spacing:-13.333333pt;}
.ws2_c00237{word-spacing:-12.399981pt;}
.ws1_c00237{word-spacing:-11.333333pt;}
.ws3_c00237{word-spacing:0.000000pt;}
._17_c00237{margin-left:-15.200000pt;}
._12_c00237{margin-left:-13.813333pt;}
._13_c00237{margin-left:-12.586667pt;}
._9_c00237{margin-left:-10.400000pt;}
._7_c00237{margin-left:-8.533333pt;}
._16_c00237{margin-left:-6.080000pt;}
._18_c00237{margin-left:-4.373333pt;}
._8_c00237{margin-left:-3.306667pt;}
._e_c00237{margin-left:-1.973333pt;}
._6_c00237{margin-left:-0.906667pt;}
._0_c00237{width:1.066667pt;}
._1_c00237{width:2.080000pt;}
._4_c00237{width:3.520000pt;}
._5_c00237{width:4.640000pt;}
._2_c00237{width:6.346667pt;}
._3_c00237{width:7.946667pt;}
._10_c00237{width:9.013333pt;}
._f_c00237{width:9.973333pt;}
._11_c00237{width:11.520000pt;}
._14_c00237{width:12.426667pt;}
._15_c00237{width:15.413333pt;}
._a_c00237{width:16.533333pt;}
._d_c00237{width:17.760000pt;}
._c_c00237{width:19.360000pt;}
._b_c00237{width:20.320000pt;}
._1b_c00237{width:21.360000pt;}
._1c_c00237{width:22.426667pt;}
._19_c00237{width:23.760027pt;}
._1a_c00237{width:26.160000pt;}
.fs1_c00237{font-size:45.333333pt;}
.fs0_c00237{font-size:53.333333pt;}
.y0_c00237{bottom:0.000000pt;}
.y2a_c00237{bottom:57.266686pt;}
.y29_c00237{bottom:98.266686pt;}
.y28_c00237{bottom:111.666686pt;}
.y27_c00237{bottom:125.133353pt;}
.y26_c00237{bottom:138.600020pt;}
.y25_c00237{bottom:152.333353pt;}
.y24_c00237{bottom:165.800020pt;}
.y23_c00237{bottom:179.533353pt;}
.y22_c00237{bottom:193.000020pt;}
.y21_c00237{bottom:206.733353pt;}
.y20_c00237{bottom:220.466686pt;}
.y1f_c00237{bottom:233.933353pt;}
.y1e_c00237{bottom:247.666686pt;}
.y1d_c00237{bottom:261.133353pt;}
.y1c_c00237{bottom:274.600020pt;}
.y1b_c00237{bottom:288.333353pt;}
.y19_c00237{bottom:336.333353pt;}
.y18_c00237{bottom:353.600020pt;}
.y17_c00237{bottom:370.866686pt;}
.y16_c00237{bottom:388.200020pt;}
.y15_c00237{bottom:405.466686pt;}
.y14_c00237{bottom:423.066686pt;}
.y13_c00237{bottom:440.333353pt;}
.y12_c00237{bottom:457.266686pt;}
.y11_c00237{bottom:474.866686pt;}
.y10_c00237{bottom:491.866686pt;}
.yf_c00237{bottom:509.466686pt;}
.ye_c00237{bottom:526.400020pt;}
.yd_c00237{bottom:544.000020pt;}
.yc_c00237{bottom:561.266686pt;}
.yb_c00237{bottom:578.266686pt;}
.ya_c00237{bottom:595.866686pt;}
.y9_c00237{bottom:613.133353pt;}
.y8_c00237{bottom:630.066686pt;}
.y7_c00237{bottom:647.666686pt;}
.y6_c00237{bottom:664.666686pt;}
.y5_c00237{bottom:682.266686pt;}
.y4_c00237{bottom:699.200020pt;}
.y3_c00237{bottom:716.200020pt;}
.y2_c00237{bottom:733.466686pt;}
.y1_c00237{bottom:750.733353pt;}
.y1a_c00237{bottom:788.200020pt;}
.h3_c00237{height:44.470052pt;}
.h4_c00237{height:44.492188pt;}
.h2_c00237{height:52.343750pt;}
.h1_c00237{height:851.333333pt;}
.h0_c00237{height:851.533333pt;}
.w0_c00237{width:570.533360pt;}
.w1_c00237{width:570.666667pt;}
.x0_c00237{left:0.000000pt;}
.x3_c00237{left:71.066667pt;}
.x1_c00237{left:72.000000pt;}
.x5_c00237{left:78.066667pt;}
.x2_c00237{left:86.400000pt;}
.x6_c00237{left:107.533333pt;}
.x4_c00237{left:128.666667pt;}
.x7_c00237{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce425db6bc72b5b8aa90750e.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00238;src:url('chunks/assets/font_41baf9496b3949c8e0b677ef.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00238{letter-spacing:0.000000px;}
.sc__c00238{text-shadow:none;}
.sc0_c00238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00238{-webkit-text-stroke:0px transparent;}
.sc0_c00238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00238{word-spacing:-15.000000px;}
.ws0_c00238{word-spacing:-12.750000px;}
.ws2_c00238{word-spacing:0.000000px;}
._17_c00238{margin-left:-15.780000px;}
._1b_c00238{margin-left:-14.760000px;}
._1e_c00238{margin-left:-13.740000px;}
._20_c00238{margin-left:-12.600000px;}
._13_c00238{margin-left:-9.780000px;}
._18_c00238{margin-left:-6.360000px;}
._14_c00238{margin-left:-4.800000px;}
._10_c00238{margin-left:-3.240000px;}
._9_c00238{margin-left:-1.740000px;}
._0_c00238{width:1.140000px;}
._2_c00238{width:2.520000px;}
._1d_c00238{width:3.720000px;}
._1c_c00238{width:5.280000px;}
._1f_c00238{width:6.540000px;}
._1a_c00238{width:8.040000px;}
._19_c00238{width:9.660000px;}
._22_c00238{width:11.160000px;}
._12_c00238{width:12.180000px;}
._16_c00238{width:13.680000px;}
._15_c00238{width:16.500000px;}
._11_c00238{width:18.240000px;}
._21_c00238{width:19.560000px;}
._3_c00238{width:21.720000px;}
._1_c00238{width:23.280000px;}
._4_c00238{width:24.360000px;}
._5_c00238{width:26.160000px;}
._8_c00238{width:27.360000px;}
._b_c00238{width:28.980000px;}
._6_c00238{width:31.320000px;}
._a_c00238{width:33.120000px;}
._7_c00238{width:34.740000px;}
._f_c00238{width:44.700000px;}
._e_c00238{width:46.380000px;}
._d_c00238{width:47.400000px;}
._c_c00238{width:48.420000px;}
.fc1_c00238{color:transparent;}
.fc0_c00238{color:rgb(35,31,32);}
.fs1_c00238{font-size:51.000000px;}
.fs0_c00238{font-size:60.000000px;}
.y0_c00238{bottom:0.000000px;}
.y23_c00238{bottom:64.425022px;}
.y22_c00238{bottom:110.175022px;}
.y21_c00238{bottom:125.325022px;}
.y20_c00238{bottom:141.150022px;}
.y1f_c00238{bottom:155.925022px;}
.y1e_c00238{bottom:171.750022px;}
.y1d_c00238{bottom:186.825022px;}
.y1c_c00238{bottom:202.350022px;}
.y1b_c00238{bottom:241.950022px;}
.y1a_c00238{bottom:261.375022px;}
.y19_c00238{bottom:280.800022px;}
.y18_c00238{bottom:300.225022px;}
.y17_c00238{bottom:319.350022px;}
.y16_c00238{bottom:338.775022px;}
.y15_c00238{bottom:358.200022px;}
.y14_c00238{bottom:378.000022px;}
.y13_c00238{bottom:417.225022px;}
.y12_c00238{bottom:475.200022px;}
.y11_c00238{bottom:494.625022px;}
.y10_c00238{bottom:514.500022px;}
.yf_c00238{bottom:533.925022px;}
.ye_c00238{bottom:553.350022px;}
.yd_c00238{bottom:572.775022px;}
.yc_c00238{bottom:592.200022px;}
.yb_c00238{bottom:631.425022px;}
.y9_c00238{bottom:689.775022px;}
.y8_c00238{bottom:709.200022px;}
.y7_c00238{bottom:728.325022px;}
.y6_c00238{bottom:747.750022px;}
.y5_c00238{bottom:767.175022px;}
.y4_c00238{bottom:786.600022px;}
.y3_c00238{bottom:805.725022px;}
.y2_c00238{bottom:825.525022px;}
.y1_c00238{bottom:844.575022px;}
.ya_c00238{bottom:886.725022px;}
.h3_c00238{height:50.028809px;}
.h4_c00238{height:50.053711px;}
.h2_c00238{height:58.886719px;}
.h1_c00238{height:957.750000px;}
.h0_c00238{height:957.975000px;}
.w1_c00238{width:643.500000px;}
.w0_c00238{width:643.650000px;}
.x0_c00238{left:0.000000px;}
.x2_c00238{left:91.050000px;}
.x3_c00238{left:97.575000px;}
.x1_c00238{left:107.250000px;}
.x4_c00238{left:131.400000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls0_c00238{letter-spacing:0.000000pt;}
.ws1_c00238{word-spacing:-13.333333pt;}
.ws0_c00238{word-spacing:-11.333333pt;}
.ws2_c00238{word-spacing:0.000000pt;}
._17_c00238{margin-left:-14.026667pt;}
._1b_c00238{margin-left:-13.120000pt;}
._1e_c00238{margin-left:-12.213333pt;}
._20_c00238{margin-left:-11.200000pt;}
._13_c00238{margin-left:-8.693333pt;}
._18_c00238{margin-left:-5.653333pt;}
._14_c00238{margin-left:-4.266667pt;}
._10_c00238{margin-left:-2.880000pt;}
._9_c00238{margin-left:-1.546667pt;}
._0_c00238{width:1.013333pt;}
._2_c00238{width:2.240000pt;}
._1d_c00238{width:3.306667pt;}
._1c_c00238{width:4.693333pt;}
._1f_c00238{width:5.813333pt;}
._1a_c00238{width:7.146667pt;}
._19_c00238{width:8.586667pt;}
._22_c00238{width:9.920000pt;}
._12_c00238{width:10.826667pt;}
._16_c00238{width:12.160000pt;}
._15_c00238{width:14.666667pt;}
._11_c00238{width:16.213333pt;}
._21_c00238{width:17.386667pt;}
._3_c00238{width:19.306667pt;}
._1_c00238{width:20.693333pt;}
._4_c00238{width:21.653333pt;}
._5_c00238{width:23.253333pt;}
._8_c00238{width:24.320000pt;}
._b_c00238{width:25.760000pt;}
._6_c00238{width:27.840000pt;}
._a_c00238{width:29.440000pt;}
._7_c00238{width:30.880000pt;}
._f_c00238{width:39.733333pt;}
._e_c00238{width:41.226667pt;}
._d_c00238{width:42.133333pt;}
._c_c00238{width:43.040000pt;}
.fs1_c00238{font-size:45.333333pt;}
.fs0_c00238{font-size:53.333333pt;}
.y0_c00238{bottom:0.000000pt;}
.y23_c00238{bottom:57.266686pt;}
.y22_c00238{bottom:97.933353pt;}
.y21_c00238{bottom:111.400020pt;}
.y20_c00238{bottom:125.466686pt;}
.y1f_c00238{bottom:138.600020pt;}
.y1e_c00238{bottom:152.666686pt;}
.y1d_c00238{bottom:166.066686pt;}
.y1c_c00238{bottom:179.866686pt;}
.y1b_c00238{bottom:215.066686pt;}
.y1a_c00238{bottom:232.333353pt;}
.y19_c00238{bottom:249.600020pt;}
.y18_c00238{bottom:266.866686pt;}
.y17_c00238{bottom:283.866686pt;}
.y16_c00238{bottom:301.133353pt;}
.y15_c00238{bottom:318.400020pt;}
.y14_c00238{bottom:336.000020pt;}
.y13_c00238{bottom:370.866686pt;}
.y12_c00238{bottom:422.400020pt;}
.y11_c00238{bottom:439.666686pt;}
.y10_c00238{bottom:457.333353pt;}
.yf_c00238{bottom:474.600020pt;}
.ye_c00238{bottom:491.866686pt;}
.yd_c00238{bottom:509.133353pt;}
.yc_c00238{bottom:526.400020pt;}
.yb_c00238{bottom:561.266686pt;}
.y9_c00238{bottom:613.133353pt;}
.y8_c00238{bottom:630.400020pt;}
.y7_c00238{bottom:647.400020pt;}
.y6_c00238{bottom:664.666686pt;}
.y5_c00238{bottom:681.933353pt;}
.y4_c00238{bottom:699.200020pt;}
.y3_c00238{bottom:716.200020pt;}
.y2_c00238{bottom:733.800020pt;}
.y1_c00238{bottom:750.733353pt;}
.ya_c00238{bottom:788.200020pt;}
.h3_c00238{height:44.470052pt;}
.h4_c00238{height:44.492188pt;}
.h2_c00238{height:52.343750pt;}
.h1_c00238{height:851.333333pt;}
.h0_c00238{height:851.533333pt;}
.w1_c00238{width:572.000000pt;}
.w0_c00238{width:572.133333pt;}
.x0_c00238{left:0.000000pt;}
.x2_c00238{left:80.933333pt;}
.x3_c00238{left:86.733333pt;}
.x1_c00238{left:95.333333pt;}
.x4_c00238{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_02c5410ea27c5e82a9da745b.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00239;src:url('chunks/assets/font_46edf6f8d0286603c00385dd.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.ls0_c00239{letter-spacing:0.000000px;}
.sc__c00239{text-shadow:none;}
.sc0_c00239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00239{-webkit-text-stroke:0px transparent;}
.sc0_c00239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00239{word-spacing:-15.000000px;}
.ws0_c00239{word-spacing:-12.750000px;}
.ws2_c00239{word-spacing:0.000000px;}
._10_c00239{margin-left:-14.220000px;}
._f_c00239{margin-left:-12.780000px;}
._15_c00239{margin-left:-11.640000px;}
._19_c00239{margin-left:-10.461174px;}
._1a_c00239{margin-left:-7.661970px;}
._5_c00239{margin-left:-6.000000px;}
._3_c00239{margin-left:-4.200000px;}
._2_c00239{margin-left:-2.580000px;}
._6_c00239{margin-left:-1.140000px;}
._0_c00239{width:1.020000px;}
._a_c00239{width:2.340000px;}
._9_c00239{width:3.900000px;}
._1b_c00239{width:4.938237px;}
._12_c00239{width:5.940000px;}
._14_c00239{width:7.380000px;}
._d_c00239{width:8.580000px;}
._11_c00239{width:10.020000px;}
._e_c00239{width:11.160000px;}
._7_c00239{width:12.180000px;}
._13_c00239{width:13.440000px;}
._8_c00239{width:16.200000px;}
._1_c00239{width:17.220000px;}
._c_c00239{width:18.420000px;}
._4_c00239{width:19.500000px;}
._b_c00239{width:20.820000px;}
._16_c00239{width:22.290027px;}
._1d_c00239{width:23.790000px;}
._18_c00239{width:25.290000px;}
._1c_c00239{width:26.490030px;}
._17_c00239{width:27.930081px;}
.fc1_c00239{color:transparent;}
.fc0_c00239{color:rgb(35,31,32);}
.fs1_c00239{font-size:51.000000px;}
.fs0_c00239{font-size:60.000000px;}
.y0_c00239{bottom:0.000000px;}
.y2c_c00239{bottom:64.425022px;}
.y2b_c00239{bottom:110.550022px;}
.y2a_c00239{bottom:125.625022px;}
.y29_c00239{bottom:140.775022px;}
.y28_c00239{bottom:156.225022px;}
.y27_c00239{bottom:171.675022px;}
.y26_c00239{bottom:186.825022px;}
.y25_c00239{bottom:201.975022px;}
.y24_c00239{bottom:217.425022px;}
.y23_c00239{bottom:232.575022px;}
.y22_c00239{bottom:247.725022px;}
.y21_c00239{bottom:263.175022px;}
.y20_c00239{bottom:278.625022px;}
.y1f_c00239{bottom:293.775022px;}
.y1e_c00239{bottom:309.225022px;}
.y1d_c00239{bottom:324.375022px;}
.y1c_c00239{bottom:339.525022px;}
.y1b_c00239{bottom:354.975022px;}
.y1a_c00239{bottom:370.125022px;}
.y19_c00239{bottom:385.575022px;}
.y18_c00239{bottom:401.025022px;}
.y17_c00239{bottom:416.175022px;}
.y16_c00239{bottom:431.325022px;}
.y15_c00239{bottom:446.775022px;}
.y14_c00239{bottom:462.225022px;}
.y13_c00239{bottom:477.375022px;}
.y12_c00239{bottom:492.825022px;}
.y10_c00239{bottom:553.350022px;}
.yf_c00239{bottom:573.150022px;}
.ye_c00239{bottom:592.200022px;}
.yd_c00239{bottom:612.000022px;}
.yc_c00239{bottom:631.425022px;}
.yb_c00239{bottom:650.550022px;}
.ya_c00239{bottom:670.350022px;}
.y9_c00239{bottom:689.775022px;}
.y8_c00239{bottom:708.825022px;}
.y7_c00239{bottom:728.325022px;}
.y6_c00239{bottom:748.125022px;}
.y5_c00239{bottom:767.550022px;}
.y4_c00239{bottom:786.600022px;}
.y3_c00239{bottom:806.025022px;}
.y2_c00239{bottom:825.150022px;}
.y1_c00239{bottom:844.575022px;}
.y11_c00239{bottom:886.725022px;}
.h3_c00239{height:50.028809px;}
.h4_c00239{height:50.053711px;}
.h5_c00239{height:50.353711px;}
.h2_c00239{height:58.886719px;}
.h1_c00239{height:957.750000px;}
.h0_c00239{height:957.975000px;}
.w0_c00239{width:641.850030px;}
.w1_c00239{width:642.000000px;}
.x0_c00239{left:0.000000px;}
.x1_c00239{left:81.375000px;}
.x3_c00239{left:87.825000px;}
.x4_c00239{left:120.975000px;}
.x2_c00239{left:144.750000px;}
.x5_c00239{left:531.375000px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls0_c00239{letter-spacing:0.000000pt;}
.ws1_c00239{word-spacing:-13.333333pt;}
.ws0_c00239{word-spacing:-11.333333pt;}
.ws2_c00239{word-spacing:0.000000pt;}
._10_c00239{margin-left:-12.640000pt;}
._f_c00239{margin-left:-11.360000pt;}
._15_c00239{margin-left:-10.346667pt;}
._19_c00239{margin-left:-9.298821pt;}
._1a_c00239{margin-left:-6.810640pt;}
._5_c00239{margin-left:-5.333333pt;}
._3_c00239{margin-left:-3.733333pt;}
._2_c00239{margin-left:-2.293333pt;}
._6_c00239{margin-left:-1.013333pt;}
._0_c00239{width:0.906667pt;}
._a_c00239{width:2.080000pt;}
._9_c00239{width:3.466667pt;}
._1b_c00239{width:4.389544pt;}
._12_c00239{width:5.280000pt;}
._14_c00239{width:6.560000pt;}
._d_c00239{width:7.626667pt;}
._11_c00239{width:8.906667pt;}
._e_c00239{width:9.920000pt;}
._7_c00239{width:10.826667pt;}
._13_c00239{width:11.946667pt;}
._8_c00239{width:14.400000pt;}
._1_c00239{width:15.306667pt;}
._c_c00239{width:16.373333pt;}
._4_c00239{width:17.333333pt;}
._b_c00239{width:18.506667pt;}
._16_c00239{width:19.813357pt;}
._1d_c00239{width:21.146667pt;}
._18_c00239{width:22.480000pt;}
._1c_c00239{width:23.546693pt;}
._17_c00239{width:24.826739pt;}
.fs1_c00239{font-size:45.333333pt;}
.fs0_c00239{font-size:53.333333pt;}
.y0_c00239{bottom:0.000000pt;}
.y2c_c00239{bottom:57.266686pt;}
.y2b_c00239{bottom:98.266686pt;}
.y2a_c00239{bottom:111.666686pt;}
.y29_c00239{bottom:125.133353pt;}
.y28_c00239{bottom:138.866686pt;}
.y27_c00239{bottom:152.600020pt;}
.y26_c00239{bottom:166.066686pt;}
.y25_c00239{bottom:179.533353pt;}
.y24_c00239{bottom:193.266686pt;}
.y23_c00239{bottom:206.733353pt;}
.y22_c00239{bottom:220.200020pt;}
.y21_c00239{bottom:233.933353pt;}
.y20_c00239{bottom:247.666686pt;}
.y1f_c00239{bottom:261.133353pt;}
.y1e_c00239{bottom:274.866686pt;}
.y1d_c00239{bottom:288.333353pt;}
.y1c_c00239{bottom:301.800020pt;}
.y1b_c00239{bottom:315.533353pt;}
.y1a_c00239{bottom:329.000020pt;}
.y19_c00239{bottom:342.733353pt;}
.y18_c00239{bottom:356.466686pt;}
.y17_c00239{bottom:369.933353pt;}
.y16_c00239{bottom:383.400020pt;}
.y15_c00239{bottom:397.133353pt;}
.y14_c00239{bottom:410.866686pt;}
.y13_c00239{bottom:424.333353pt;}
.y12_c00239{bottom:438.066686pt;}
.y10_c00239{bottom:491.866686pt;}
.yf_c00239{bottom:509.466686pt;}
.ye_c00239{bottom:526.400020pt;}
.yd_c00239{bottom:544.000020pt;}
.yc_c00239{bottom:561.266686pt;}
.yb_c00239{bottom:578.266686pt;}
.ya_c00239{bottom:595.866686pt;}
.y9_c00239{bottom:613.133353pt;}
.y8_c00239{bottom:630.066686pt;}
.y7_c00239{bottom:647.400020pt;}
.y6_c00239{bottom:665.000020pt;}
.y5_c00239{bottom:682.266686pt;}
.y4_c00239{bottom:699.200020pt;}
.y3_c00239{bottom:716.466686pt;}
.y2_c00239{bottom:733.466686pt;}
.y1_c00239{bottom:750.733353pt;}
.y11_c00239{bottom:788.200020pt;}
.h3_c00239{height:44.470052pt;}
.h4_c00239{height:44.492188pt;}
.h5_c00239{height:44.758854pt;}
.h2_c00239{height:52.343750pt;}
.h1_c00239{height:851.333333pt;}
.h0_c00239{height:851.533333pt;}
.w0_c00239{width:570.533360pt;}
.w1_c00239{width:570.666667pt;}
.x0_c00239{left:0.000000pt;}
.x1_c00239{left:72.333333pt;}
.x3_c00239{left:78.066667pt;}
.x4_c00239{left:107.533333pt;}
.x2_c00239{left:128.666667pt;}
.x5_c00239{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a4cfc8ed7c0222f3c2b918e3.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00240;src:url('chunks/assets/font_58744bebe9068bbca44db776.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00240{letter-spacing:0.000000px;}
.sc__c00240{text-shadow:none;}
.sc0_c00240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00240{-webkit-text-stroke:0px transparent;}
.sc0_c00240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00240{word-spacing:-15.000000px;}
.ws0_c00240{word-spacing:-12.750000px;}
.ws2_c00240{word-spacing:0.000000px;}
._e_c00240{margin-left:-16.380000px;}
._a_c00240{margin-left:-14.160000px;}
._9_c00240{margin-left:-12.840000px;}
._1b_c00240{margin-left:-9.761826px;}
._18_c00240{margin-left:-7.725153px;}
._17_c00240{margin-left:-6.074835px;}
._1a_c00240{margin-left:-5.043045px;}
._11_c00240{margin-left:-4.014015px;}
._10_c00240{margin-left:-2.622012px;}
._8_c00240{margin-left:-1.440000px;}
._0_c00240{width:1.140000px;}
._2_c00240{width:2.400000px;}
._6_c00240{width:3.480000px;}
._f_c00240{width:4.680000px;}
._b_c00240{width:6.000000px;}
._d_c00240{width:7.320000px;}
._c_c00240{width:8.640000px;}
._7_c00240{width:9.780000px;}
._3_c00240{width:10.800000px;}
._1_c00240{width:12.660000px;}
._12_c00240{width:16.560000px;}
._14_c00240{width:17.682012px;}
._13_c00240{width:18.840000px;}
._19_c00240{width:23.610000px;}
._15_c00240{width:24.809979px;}
._4_c00240{width:27.000000px;}
._5_c00240{width:28.020000px;}
._16_c00240{width:29.856129px;}
.fc1_c00240{color:transparent;}
.fc0_c00240{color:rgb(35,31,32);}
.fs1_c00240{font-size:51.000000px;}
.fs0_c00240{font-size:60.000000px;}
.y0_c00240{bottom:0.000000px;}
.y27_c00240{bottom:64.425022px;}
.y26_c00240{bottom:110.175022px;}
.y25_c00240{bottom:125.625022px;}
.y24_c00240{bottom:140.775022px;}
.y23_c00240{bottom:155.925022px;}
.y22_c00240{bottom:171.375022px;}
.y21_c00240{bottom:186.525022px;}
.y20_c00240{bottom:201.975022px;}
.y1f_c00240{bottom:217.425022px;}
.y1e_c00240{bottom:232.575022px;}
.y1d_c00240{bottom:247.725022px;}
.y1c_c00240{bottom:263.175022px;}
.y1b_c00240{bottom:278.325022px;}
.y1a_c00240{bottom:293.775022px;}
.y19_c00240{bottom:335.925022px;}
.y18_c00240{bottom:355.350022px;}
.y17_c00240{bottom:374.775022px;}
.y16_c00240{bottom:394.200022px;}
.y15_c00240{bottom:414.000022px;}
.y14_c00240{bottom:433.125022px;}
.y13_c00240{bottom:452.925022px;}
.y12_c00240{bottom:472.350022px;}
.y11_c00240{bottom:491.325022px;}
.y10_c00240{bottom:510.825022px;}
.yf_c00240{bottom:530.325022px;}
.ye_c00240{bottom:571.350022px;}
.yc_c00240{bottom:631.425022px;}
.yb_c00240{bottom:650.550022px;}
.ya_c00240{bottom:670.050022px;}
.y9_c00240{bottom:689.475022px;}
.y8_c00240{bottom:708.900022px;}
.y7_c00240{bottom:728.325022px;}
.y6_c00240{bottom:747.750022px;}
.y5_c00240{bottom:767.550022px;}
.y4_c00240{bottom:786.225022px;}
.y3_c00240{bottom:805.725022px;}
.y2_c00240{bottom:825.150022px;}
.y1_c00240{bottom:844.575022px;}
.yd_c00240{bottom:886.725022px;}
.h3_c00240{height:50.028809px;}
.h4_c00240{height:50.053711px;}
.h2_c00240{height:58.886719px;}
.h1_c00240{height:957.750000px;}
.h0_c00240{height:957.975000px;}
.w1_c00240{width:643.500000px;}
.w0_c00240{width:643.650000px;}
.x0_c00240{left:0.000000px;}
.x1_c00240{left:91.425000px;}
.x3_c00240{left:97.575000px;}
.x2_c00240{left:106.575000px;}
.x4_c00240{left:131.025000px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls0_c00240{letter-spacing:0.000000pt;}
.ws1_c00240{word-spacing:-13.333333pt;}
.ws0_c00240{word-spacing:-11.333333pt;}
.ws2_c00240{word-spacing:0.000000pt;}
._e_c00240{margin-left:-14.560000pt;}
._a_c00240{margin-left:-12.586667pt;}
._9_c00240{margin-left:-11.413333pt;}
._1b_c00240{margin-left:-8.677179pt;}
._18_c00240{margin-left:-6.866803pt;}
._17_c00240{margin-left:-5.399853pt;}
._1a_c00240{margin-left:-4.482707pt;}
._11_c00240{margin-left:-3.568013pt;}
._10_c00240{margin-left:-2.330677pt;}
._8_c00240{margin-left:-1.280000pt;}
._0_c00240{width:1.013333pt;}
._2_c00240{width:2.133333pt;}
._6_c00240{width:3.093333pt;}
._f_c00240{width:4.160000pt;}
._b_c00240{width:5.333333pt;}
._d_c00240{width:6.506667pt;}
._c_c00240{width:7.680000pt;}
._7_c00240{width:8.693333pt;}
._3_c00240{width:9.600000pt;}
._1_c00240{width:11.253333pt;}
._12_c00240{width:14.720000pt;}
._14_c00240{width:15.717344pt;}
._13_c00240{width:16.746667pt;}
._19_c00240{width:20.986667pt;}
._15_c00240{width:22.053315pt;}
._4_c00240{width:24.000000pt;}
._5_c00240{width:24.906667pt;}
._16_c00240{width:26.538781pt;}
.fs1_c00240{font-size:45.333333pt;}
.fs0_c00240{font-size:53.333333pt;}
.y0_c00240{bottom:0.000000pt;}
.y27_c00240{bottom:57.266686pt;}
.y26_c00240{bottom:97.933353pt;}
.y25_c00240{bottom:111.666686pt;}
.y24_c00240{bottom:125.133353pt;}
.y23_c00240{bottom:138.600020pt;}
.y22_c00240{bottom:152.333353pt;}
.y21_c00240{bottom:165.800020pt;}
.y20_c00240{bottom:179.533353pt;}
.y1f_c00240{bottom:193.266686pt;}
.y1e_c00240{bottom:206.733353pt;}
.y1d_c00240{bottom:220.200020pt;}
.y1c_c00240{bottom:233.933353pt;}
.y1b_c00240{bottom:247.400020pt;}
.y1a_c00240{bottom:261.133353pt;}
.y19_c00240{bottom:298.600020pt;}
.y18_c00240{bottom:315.866686pt;}
.y17_c00240{bottom:333.133353pt;}
.y16_c00240{bottom:350.400020pt;}
.y15_c00240{bottom:368.000020pt;}
.y14_c00240{bottom:385.000020pt;}
.y13_c00240{bottom:402.600020pt;}
.y12_c00240{bottom:419.866686pt;}
.y11_c00240{bottom:436.733353pt;}
.y10_c00240{bottom:454.066686pt;}
.yf_c00240{bottom:471.400020pt;}
.ye_c00240{bottom:507.866686pt;}
.yc_c00240{bottom:561.266686pt;}
.yb_c00240{bottom:578.266686pt;}
.ya_c00240{bottom:595.600020pt;}
.y9_c00240{bottom:612.866686pt;}
.y8_c00240{bottom:630.133353pt;}
.y7_c00240{bottom:647.400020pt;}
.y6_c00240{bottom:664.666686pt;}
.y5_c00240{bottom:682.266686pt;}
.y4_c00240{bottom:698.866686pt;}
.y3_c00240{bottom:716.200020pt;}
.y2_c00240{bottom:733.466686pt;}
.y1_c00240{bottom:750.733353pt;}
.yd_c00240{bottom:788.200020pt;}
.h3_c00240{height:44.470052pt;}
.h4_c00240{height:44.492188pt;}
.h2_c00240{height:52.343750pt;}
.h1_c00240{height:851.333333pt;}
.h0_c00240{height:851.533333pt;}
.w1_c00240{width:572.000000pt;}
.w0_c00240{width:572.133333pt;}
.x0_c00240{left:0.000000pt;}
.x1_c00240{left:81.266667pt;}
.x3_c00240{left:86.733333pt;}
.x2_c00240{left:94.733333pt;}
.x4_c00240{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd567b6a0f9f89037839d603.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00241;src:url('chunks/assets/font_48d0f797a173ddf1930dbda3.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.ls0_c00241{letter-spacing:0.000000px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00241{word-spacing:-15.000000px;}
.ws0_c00241{word-spacing:-12.750000px;}
.ws2_c00241{word-spacing:0.000000px;}
._f_c00241{margin-left:-15.180000px;}
._8_c00241{margin-left:-13.980000px;}
._c_c00241{margin-left:-12.540000px;}
._16_c00241{margin-left:-9.477063px;}
._6_c00241{margin-left:-7.740000px;}
._14_c00241{margin-left:-5.334003px;}
._13_c00241{margin-left:-3.830976px;}
._4_c00241{margin-left:-2.220000px;}
._2_c00241{margin-left:-1.020000px;}
._0_c00241{width:1.320000px;}
._7_c00241{width:2.760000px;}
._1_c00241{width:4.200000px;}
._5_c00241{width:6.000000px;}
._3_c00241{width:7.380000px;}
._a_c00241{width:8.940000px;}
._9_c00241{width:10.200000px;}
._b_c00241{width:11.340000px;}
._d_c00241{width:13.260000px;}
._17_c00241{width:14.558871px;}
._e_c00241{width:16.020000px;}
._11_c00241{width:17.940000px;}
._10_c00241{width:19.860000px;}
._12_c00241{width:21.240000px;}
._15_c00241{width:24.030000px;}
._18_c00241{width:26.730030px;}
._1a_c00241{width:27.930081px;}
._19_c00241{width:29.540955px;}
.fc1_c00241{color:transparent;}
.fc0_c00241{color:rgb(35,31,32);}
.fs1_c00241{font-size:51.000000px;}
.fs0_c00241{font-size:60.000000px;}
.y0_c00241{bottom:0.000000px;}
.y2a_c00241{bottom:64.800022px;}
.y29_c00241{bottom:110.175022px;}
.y28_c00241{bottom:125.625022px;}
.y27_c00241{bottom:140.775022px;}
.y26_c00241{bottom:155.925022px;}
.y25_c00241{bottom:171.750022px;}
.y24_c00241{bottom:186.825022px;}
.y23_c00241{bottom:202.350022px;}
.y22_c00241{bottom:217.125022px;}
.y21_c00241{bottom:232.950022px;}
.y20_c00241{bottom:247.725022px;}
.y1f_c00241{bottom:263.550022px;}
.y1e_c00241{bottom:278.325022px;}
.y1d_c00241{bottom:294.150022px;}
.y1c_c00241{bottom:308.925022px;}
.y1b_c00241{bottom:324.375022px;}
.y1a_c00241{bottom:339.525022px;}
.y18_c00241{bottom:398.175022px;}
.y17_c00241{bottom:417.675022px;}
.y16_c00241{bottom:437.100022px;}
.y15_c00241{bottom:456.525022px;}
.y14_c00241{bottom:475.950022px;}
.y13_c00241{bottom:495.000022px;}
.y12_c00241{bottom:514.800022px;}
.y11_c00241{bottom:534.225022px;}
.y10_c00241{bottom:553.350022px;}
.yf_c00241{bottom:573.150022px;}
.ye_c00241{bottom:592.575022px;}
.yd_c00241{bottom:611.625022px;}
.yc_c00241{bottom:631.425022px;}
.yb_c00241{bottom:650.925022px;}
.ya_c00241{bottom:670.350022px;}
.y9_c00241{bottom:689.775022px;}
.y8_c00241{bottom:709.200022px;}
.y7_c00241{bottom:728.625022px;}
.y6_c00241{bottom:747.750022px;}
.y5_c00241{bottom:767.175022px;}
.y4_c00241{bottom:786.600022px;}
.y3_c00241{bottom:806.025022px;}
.y2_c00241{bottom:825.525022px;}
.y1_c00241{bottom:844.950022px;}
.y19_c00241{bottom:886.725022px;}
.h3_c00241{height:50.028809px;}
.h4_c00241{height:50.053711px;}
.h2_c00241{height:58.886719px;}
.h1_c00241{height:957.750000px;}
.h0_c00241{height:957.975000px;}
.w0_c00241{width:641.850030px;}
.w1_c00241{width:642.000000px;}
.x0_c00241{left:0.000000px;}
.x3_c00241{left:80.250000px;}
.x1_c00241{left:81.375000px;}
.x5_c00241{left:87.825000px;}
.x2_c00241{left:97.200000px;}
.x6_c00241{left:120.975000px;}
.x4_c00241{left:144.750000px;}
.x7_c00241{left:531.375000px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls0_c00241{letter-spacing:0.000000pt;}
.ws1_c00241{word-spacing:-13.333333pt;}
.ws0_c00241{word-spacing:-11.333333pt;}
.ws2_c00241{word-spacing:0.000000pt;}
._f_c00241{margin-left:-13.493333pt;}
._8_c00241{margin-left:-12.426667pt;}
._c_c00241{margin-left:-11.146667pt;}
._16_c00241{margin-left:-8.424056pt;}
._6_c00241{margin-left:-6.880000pt;}
._14_c00241{margin-left:-4.741336pt;}
._13_c00241{margin-left:-3.405312pt;}
._4_c00241{margin-left:-1.973333pt;}
._2_c00241{margin-left:-0.906667pt;}
._0_c00241{width:1.173333pt;}
._7_c00241{width:2.453333pt;}
._1_c00241{width:3.733333pt;}
._5_c00241{width:5.333333pt;}
._3_c00241{width:6.560000pt;}
._a_c00241{width:7.946667pt;}
._9_c00241{width:9.066667pt;}
._b_c00241{width:10.080000pt;}
._d_c00241{width:11.786667pt;}
._17_c00241{width:12.941219pt;}
._e_c00241{width:14.240000pt;}
._11_c00241{width:15.946667pt;}
._10_c00241{width:17.653333pt;}
._12_c00241{width:18.880000pt;}
._15_c00241{width:21.360000pt;}
._18_c00241{width:23.760027pt;}
._1a_c00241{width:24.826739pt;}
._19_c00241{width:26.258627pt;}
.fs1_c00241{font-size:45.333333pt;}
.fs0_c00241{font-size:53.333333pt;}
.y0_c00241{bottom:0.000000pt;}
.y2a_c00241{bottom:57.600020pt;}
.y29_c00241{bottom:97.933353pt;}
.y28_c00241{bottom:111.666686pt;}
.y27_c00241{bottom:125.133353pt;}
.y26_c00241{bottom:138.600020pt;}
.y25_c00241{bottom:152.666686pt;}
.y24_c00241{bottom:166.066686pt;}
.y23_c00241{bottom:179.866686pt;}
.y22_c00241{bottom:193.000020pt;}
.y21_c00241{bottom:207.066686pt;}
.y20_c00241{bottom:220.200020pt;}
.y1f_c00241{bottom:234.266686pt;}
.y1e_c00241{bottom:247.400020pt;}
.y1d_c00241{bottom:261.466686pt;}
.y1c_c00241{bottom:274.600020pt;}
.y1b_c00241{bottom:288.333353pt;}
.y1a_c00241{bottom:301.800020pt;}
.y18_c00241{bottom:353.933353pt;}
.y17_c00241{bottom:371.266686pt;}
.y16_c00241{bottom:388.533353pt;}
.y15_c00241{bottom:405.800020pt;}
.y14_c00241{bottom:423.066686pt;}
.y13_c00241{bottom:440.000020pt;}
.y12_c00241{bottom:457.600020pt;}
.y11_c00241{bottom:474.866686pt;}
.y10_c00241{bottom:491.866686pt;}
.yf_c00241{bottom:509.466686pt;}
.ye_c00241{bottom:526.733353pt;}
.yd_c00241{bottom:543.666686pt;}
.yc_c00241{bottom:561.266686pt;}
.yb_c00241{bottom:578.600020pt;}
.ya_c00241{bottom:595.866686pt;}
.y9_c00241{bottom:613.133353pt;}
.y8_c00241{bottom:630.400020pt;}
.y7_c00241{bottom:647.666686pt;}
.y6_c00241{bottom:664.666686pt;}
.y5_c00241{bottom:681.933353pt;}
.y4_c00241{bottom:699.200020pt;}
.y3_c00241{bottom:716.466686pt;}
.y2_c00241{bottom:733.800020pt;}
.y1_c00241{bottom:751.066686pt;}
.y19_c00241{bottom:788.200020pt;}
.h3_c00241{height:44.470052pt;}
.h4_c00241{height:44.492188pt;}
.h2_c00241{height:52.343750pt;}
.h1_c00241{height:851.333333pt;}
.h0_c00241{height:851.533333pt;}
.w0_c00241{width:570.533360pt;}
.w1_c00241{width:570.666667pt;}
.x0_c00241{left:0.000000pt;}
.x3_c00241{left:71.333333pt;}
.x1_c00241{left:72.333333pt;}
.x5_c00241{left:78.066667pt;}
.x2_c00241{left:86.400000pt;}
.x6_c00241{left:107.533333pt;}
.x4_c00241{left:128.666667pt;}
.x7_c00241{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e57b0d7a8623c285795fe382.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00242;src:url('chunks/assets/font_5aa842d446e4094774dc7107.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00242{letter-spacing:0.000000px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00242{word-spacing:-15.000000px;}
.ws0_c00242{word-spacing:-12.750000px;}
.ws2_c00242{word-spacing:0.000000px;}
._8_c00242{margin-left:-13.511904px;}
._7_c00242{margin-left:-11.988096px;}
._14_c00242{margin-left:-7.044315px;}
._12_c00242{margin-left:-5.895402px;}
._4_c00242{margin-left:-3.804243px;}
._0_c00242{margin-left:-2.622012px;}
._2_c00242{margin-left:-1.539027px;}
._3_c00242{width:1.062024px;}
._1_c00242{width:2.400009px;}
._c_c00242{width:3.564048px;}
._16_c00242{width:4.739718px;}
._d_c00242{width:5.777967px;}
._5_c00242{width:6.893928px;}
._e_c00242{width:8.387865px;}
._a_c00242{width:9.515934px;}
._6_c00242{width:10.691886px;}
._9_c00242{width:11.711904px;}
._b_c00242{width:13.055943px;}
._19_c00242{width:14.075805px;}
._13_c00242{width:16.037967px;}
._10_c00242{width:17.393928px;}
._f_c00242{width:18.395952px;}
._11_c00242{width:19.839093px;}
._18_c00242{width:22.011039px;}
._1a_c00242{width:24.006108px;}
._15_c00242{width:25.206108px;}
._17_c00242{width:26.706099px;}
.fc1_c00242{color:transparent;}
.fc0_c00242{color:rgb(35,31,32);}
.fs0_c00242{font-size:51.000000px;}
.fs1_c00242{font-size:60.000000px;}
.y0_c00242{bottom:0.000000px;}
.y2c_c00242{bottom:64.800022px;}
.y2b_c00242{bottom:110.175022px;}
.y2a_c00242{bottom:125.625022px;}
.y29_c00242{bottom:141.150022px;}
.y28_c00242{bottom:155.925022px;}
.y27_c00242{bottom:171.750022px;}
.y26_c00242{bottom:186.825022px;}
.y25_c00242{bottom:201.975022px;}
.y24_c00242{bottom:217.125022px;}
.y23_c00242{bottom:232.575022px;}
.y22_c00242{bottom:247.725022px;}
.y21_c00242{bottom:263.550022px;}
.y20_c00242{bottom:278.325022px;}
.y1f_c00242{bottom:294.150022px;}
.y1e_c00242{bottom:308.925022px;}
.y1d_c00242{bottom:324.750022px;}
.y1c_c00242{bottom:339.525022px;}
.y1b_c00242{bottom:354.975022px;}
.y1a_c00242{bottom:370.125022px;}
.y19_c00242{bottom:385.575022px;}
.y18_c00242{bottom:400.725022px;}
.y17_c00242{bottom:416.175022px;}
.y16_c00242{bottom:431.625022px;}
.y15_c00242{bottom:447.150022px;}
.y14_c00242{bottom:461.925022px;}
.y13_c00242{bottom:477.750022px;}
.y12_c00242{bottom:492.525022px;}
.y11_c00242{bottom:553.725022px;}
.y10_c00242{bottom:573.150022px;}
.yf_c00242{bottom:592.575022px;}
.ye_c00242{bottom:612.000022px;}
.yd_c00242{bottom:631.425022px;}
.yc_c00242{bottom:650.550022px;}
.yb_c00242{bottom:670.350022px;}
.ya_c00242{bottom:689.400022px;}
.y9_c00242{bottom:709.200022px;}
.y8_c00242{bottom:728.325022px;}
.y7_c00242{bottom:748.125022px;}
.y6_c00242{bottom:767.475022px;}
.y5_c00242{bottom:786.600022px;}
.y4_c00242{bottom:805.725022px;}
.y3_c00242{bottom:825.525022px;}
.y2_c00242{bottom:844.950022px;}
.y1_c00242{bottom:886.725022px;}
.h2_c00242{height:50.028809px;}
.h4_c00242{height:50.053711px;}
.h3_c00242{height:58.886719px;}
.h1_c00242{height:957.750000px;}
.h0_c00242{height:957.975000px;}
.w1_c00242{width:643.500000px;}
.w0_c00242{width:643.650000px;}
.x0_c00242{left:0.000000px;}
.x1_c00242{left:91.050000px;}
.x2_c00242{left:97.575000px;}
.x3_c00242{left:131.025000px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls0_c00242{letter-spacing:0.000000pt;}
.ws1_c00242{word-spacing:-13.333333pt;}
.ws0_c00242{word-spacing:-11.333333pt;}
.ws2_c00242{word-spacing:0.000000pt;}
._8_c00242{margin-left:-12.010581pt;}
._7_c00242{margin-left:-10.656085pt;}
._14_c00242{margin-left:-6.261613pt;}
._12_c00242{margin-left:-5.240357pt;}
._4_c00242{margin-left:-3.381549pt;}
._0_c00242{margin-left:-2.330677pt;}
._2_c00242{margin-left:-1.368024pt;}
._3_c00242{width:0.944021pt;}
._1_c00242{width:2.133341pt;}
._c_c00242{width:3.168043pt;}
._16_c00242{width:4.213083pt;}
._d_c00242{width:5.135971pt;}
._5_c00242{width:6.127936pt;}
._e_c00242{width:7.455880pt;}
._a_c00242{width:8.458608pt;}
._6_c00242{width:9.503899pt;}
._9_c00242{width:10.410581pt;}
._b_c00242{width:11.605283pt;}
._19_c00242{width:12.511827pt;}
._13_c00242{width:14.255971pt;}
._10_c00242{width:15.461269pt;}
._f_c00242{width:16.351957pt;}
._11_c00242{width:17.634749pt;}
._18_c00242{width:19.565368pt;}
._1a_c00242{width:21.338763pt;}
._15_c00242{width:22.405429pt;}
._17_c00242{width:23.738755pt;}
.fs0_c00242{font-size:45.333333pt;}
.fs1_c00242{font-size:53.333333pt;}
.y0_c00242{bottom:0.000000pt;}
.y2c_c00242{bottom:57.600020pt;}
.y2b_c00242{bottom:97.933353pt;}
.y2a_c00242{bottom:111.666686pt;}
.y29_c00242{bottom:125.466686pt;}
.y28_c00242{bottom:138.600020pt;}
.y27_c00242{bottom:152.666686pt;}
.y26_c00242{bottom:166.066686pt;}
.y25_c00242{bottom:179.533353pt;}
.y24_c00242{bottom:193.000020pt;}
.y23_c00242{bottom:206.733353pt;}
.y22_c00242{bottom:220.200020pt;}
.y21_c00242{bottom:234.266686pt;}
.y20_c00242{bottom:247.400020pt;}
.y1f_c00242{bottom:261.466686pt;}
.y1e_c00242{bottom:274.600020pt;}
.y1d_c00242{bottom:288.666686pt;}
.y1c_c00242{bottom:301.800020pt;}
.y1b_c00242{bottom:315.533353pt;}
.y1a_c00242{bottom:329.000020pt;}
.y19_c00242{bottom:342.733353pt;}
.y18_c00242{bottom:356.200020pt;}
.y17_c00242{bottom:369.933353pt;}
.y16_c00242{bottom:383.666686pt;}
.y15_c00242{bottom:397.466686pt;}
.y14_c00242{bottom:410.600020pt;}
.y13_c00242{bottom:424.666686pt;}
.y12_c00242{bottom:437.800020pt;}
.y11_c00242{bottom:492.200020pt;}
.y10_c00242{bottom:509.466686pt;}
.yf_c00242{bottom:526.733353pt;}
.ye_c00242{bottom:544.000020pt;}
.yd_c00242{bottom:561.266686pt;}
.yc_c00242{bottom:578.266686pt;}
.yb_c00242{bottom:595.866686pt;}
.ya_c00242{bottom:612.800020pt;}
.y9_c00242{bottom:630.400020pt;}
.y8_c00242{bottom:647.400020pt;}
.y7_c00242{bottom:665.000020pt;}
.y6_c00242{bottom:682.200020pt;}
.y5_c00242{bottom:699.200020pt;}
.y4_c00242{bottom:716.200020pt;}
.y3_c00242{bottom:733.800020pt;}
.y2_c00242{bottom:751.066686pt;}
.y1_c00242{bottom:788.200020pt;}
.h2_c00242{height:44.470052pt;}
.h4_c00242{height:44.492188pt;}
.h3_c00242{height:52.343750pt;}
.h1_c00242{height:851.333333pt;}
.h0_c00242{height:851.533333pt;}
.w1_c00242{width:572.000000pt;}
.w0_c00242{width:572.133333pt;}
.x0_c00242{left:0.000000pt;}
.x1_c00242{left:80.933333pt;}
.x2_c00242{left:86.733333pt;}
.x3_c00242{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_293d2169ab6942c7f244cdfb.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00243;src:url('chunks/assets/font_cfdfb8a992aa02ca1f6ac8b2.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00243{letter-spacing:0.000000px;}
.sc__c00243{text-shadow:none;}
.sc0_c00243{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00243{-webkit-text-stroke:0px transparent;}
.sc0_c00243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00243{word-spacing:-15.000000px;}
.ws0_c00243{word-spacing:-12.750000px;}
.ws2_c00243{word-spacing:0.000000px;}
._2_c00243{margin-left:-15.300000px;}
._1_c00243{margin-left:-14.040000px;}
._11_c00243{margin-left:-12.900000px;}
._15_c00243{margin-left:-10.560000px;}
._16_c00243{margin-left:-7.380000px;}
._1a_c00243{margin-left:-5.343177px;}
._18_c00243{margin-left:-4.244955px;}
._9_c00243{margin-left:-2.940000px;}
._6_c00243{margin-left:-1.920000px;}
._0_c00243{width:1.500000px;}
._5_c00243{width:2.520000px;}
._3_c00243{width:3.900000px;}
._7_c00243{width:5.040000px;}
._e_c00243{width:6.240000px;}
._4_c00243{width:7.320000px;}
._13_c00243{width:8.640000px;}
._8_c00243{width:9.720000px;}
._12_c00243{width:11.520000px;}
._f_c00243{width:12.780000px;}
._10_c00243{width:13.980000px;}
._a_c00243{width:16.740000px;}
._c_c00243{width:18.720000px;}
._b_c00243{width:19.860000px;}
._d_c00243{width:21.720000px;}
._14_c00243{width:24.480000px;}
._17_c00243{width:25.589976px;}
._1b_c00243{width:26.730000px;}
._19_c00243{width:27.750081px;}
.fc1_c00243{color:transparent;}
.fc0_c00243{color:rgb(35,31,32);}
.fs1_c00243{font-size:51.000000px;}
.fs0_c00243{font-size:60.000000px;}
.y0_c00243{bottom:0.000000px;}
.y26_c00243{bottom:64.425022px;}
.y25_c00243{bottom:110.175022px;}
.y24_c00243{bottom:125.625022px;}
.y23_c00243{bottom:141.150022px;}
.y22_c00243{bottom:155.925022px;}
.y21_c00243{bottom:171.375022px;}
.y20_c00243{bottom:186.825022px;}
.y1f_c00243{bottom:201.975022px;}
.y1e_c00243{bottom:217.425022px;}
.y1d_c00243{bottom:232.575022px;}
.y1c_c00243{bottom:248.025022px;}
.y1b_c00243{bottom:303.525022px;}
.y1a_c00243{bottom:322.950022px;}
.y19_c00243{bottom:342.000022px;}
.y18_c00243{bottom:361.125022px;}
.y17_c00243{bottom:380.925022px;}
.y16_c00243{bottom:400.350022px;}
.y15_c00243{bottom:419.775022px;}
.y14_c00243{bottom:439.200022px;}
.y13_c00243{bottom:458.325022px;}
.y12_c00243{bottom:478.125022px;}
.y11_c00243{bottom:497.550022px;}
.y10_c00243{bottom:516.975022px;}
.yf_c00243{bottom:536.400022px;}
.ye_c00243{bottom:555.525022px;}
.yd_c00243{bottom:575.325022px;}
.yc_c00243{bottom:594.750022px;}
.yb_c00243{bottom:614.175022px;}
.ya_c00243{bottom:633.600022px;}
.y9_c00243{bottom:652.725022px;}
.y8_c00243{bottom:672.525022px;}
.y7_c00243{bottom:691.575022px;}
.y6_c00243{bottom:730.125022px;}
.y4_c00243{bottom:786.600022px;}
.y3_c00243{bottom:805.725022px;}
.y2_c00243{bottom:825.525022px;}
.y1_c00243{bottom:844.950022px;}
.y5_c00243{bottom:886.725022px;}
.h3_c00243{height:50.028809px;}
.h4_c00243{height:50.053711px;}
.h2_c00243{height:58.886719px;}
.h1_c00243{height:957.750000px;}
.h0_c00243{height:957.975000px;}
.w0_c00243{width:641.850030px;}
.w1_c00243{width:642.000000px;}
.x0_c00243{left:0.000000px;}
.x1_c00243{left:81.000000px;}
.x4_c00243{left:87.825000px;}
.x3_c00243{left:96.825000px;}
.x5_c00243{left:120.975000px;}
.x2_c00243{left:144.750000px;}
.x6_c00243{left:531.375000px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls0_c00243{letter-spacing:0.000000pt;}
.ws1_c00243{word-spacing:-13.333333pt;}
.ws0_c00243{word-spacing:-11.333333pt;}
.ws2_c00243{word-spacing:0.000000pt;}
._2_c00243{margin-left:-13.600000pt;}
._1_c00243{margin-left:-12.480000pt;}
._11_c00243{margin-left:-11.466667pt;}
._15_c00243{margin-left:-9.386667pt;}
._16_c00243{margin-left:-6.560000pt;}
._1a_c00243{margin-left:-4.749491pt;}
._18_c00243{margin-left:-3.773293pt;}
._9_c00243{margin-left:-2.613333pt;}
._6_c00243{margin-left:-1.706667pt;}
._0_c00243{width:1.333333pt;}
._5_c00243{width:2.240000pt;}
._3_c00243{width:3.466667pt;}
._7_c00243{width:4.480000pt;}
._e_c00243{width:5.546667pt;}
._4_c00243{width:6.506667pt;}
._13_c00243{width:7.680000pt;}
._8_c00243{width:8.640000pt;}
._12_c00243{width:10.240000pt;}
._f_c00243{width:11.360000pt;}
._10_c00243{width:12.426667pt;}
._a_c00243{width:14.880000pt;}
._c_c00243{width:16.640000pt;}
._b_c00243{width:17.653333pt;}
._d_c00243{width:19.306667pt;}
._14_c00243{width:21.760000pt;}
._17_c00243{width:22.746645pt;}
._1b_c00243{width:23.760000pt;}
._19_c00243{width:24.666739pt;}
.fs1_c00243{font-size:45.333333pt;}
.fs0_c00243{font-size:53.333333pt;}
.y0_c00243{bottom:0.000000pt;}
.y26_c00243{bottom:57.266686pt;}
.y25_c00243{bottom:97.933353pt;}
.y24_c00243{bottom:111.666686pt;}
.y23_c00243{bottom:125.466686pt;}
.y22_c00243{bottom:138.600020pt;}
.y21_c00243{bottom:152.333353pt;}
.y20_c00243{bottom:166.066686pt;}
.y1f_c00243{bottom:179.533353pt;}
.y1e_c00243{bottom:193.266686pt;}
.y1d_c00243{bottom:206.733353pt;}
.y1c_c00243{bottom:220.466686pt;}
.y1b_c00243{bottom:269.800020pt;}
.y1a_c00243{bottom:287.066686pt;}
.y19_c00243{bottom:304.000020pt;}
.y18_c00243{bottom:321.000020pt;}
.y17_c00243{bottom:338.600020pt;}
.y16_c00243{bottom:355.866686pt;}
.y15_c00243{bottom:373.133353pt;}
.y14_c00243{bottom:390.400020pt;}
.y13_c00243{bottom:407.400020pt;}
.y12_c00243{bottom:425.000020pt;}
.y11_c00243{bottom:442.266686pt;}
.y10_c00243{bottom:459.533353pt;}
.yf_c00243{bottom:476.800020pt;}
.ye_c00243{bottom:493.800020pt;}
.yd_c00243{bottom:511.400020pt;}
.yc_c00243{bottom:528.666686pt;}
.yb_c00243{bottom:545.933353pt;}
.ya_c00243{bottom:563.200020pt;}
.y9_c00243{bottom:580.200020pt;}
.y8_c00243{bottom:597.800020pt;}
.y7_c00243{bottom:614.733353pt;}
.y6_c00243{bottom:649.000020pt;}
.y4_c00243{bottom:699.200020pt;}
.y3_c00243{bottom:716.200020pt;}
.y2_c00243{bottom:733.800020pt;}
.y1_c00243{bottom:751.066686pt;}
.y5_c00243{bottom:788.200020pt;}
.h3_c00243{height:44.470052pt;}
.h4_c00243{height:44.492188pt;}
.h2_c00243{height:52.343750pt;}
.h1_c00243{height:851.333333pt;}
.h0_c00243{height:851.533333pt;}
.w0_c00243{width:570.533360pt;}
.w1_c00243{width:570.666667pt;}
.x0_c00243{left:0.000000pt;}
.x1_c00243{left:72.000000pt;}
.x4_c00243{left:78.066667pt;}
.x3_c00243{left:86.066667pt;}
.x5_c00243{left:107.533333pt;}
.x2_c00243{left:128.666667pt;}
.x6_c00243{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4b5fa86040457693bb275ba9.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00244;src:url('chunks/assets/font_dbb0b562496e6d2ffc186163.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00244{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00244{word-spacing:-15.000000px;}
.ws0_c00244{word-spacing:-12.750000px;}
.ws2_c00244{word-spacing:0.000000px;}
._13_c00244{margin-left:-15.905823px;}
._f_c00244{margin-left:-14.226081px;}
._d_c00244{margin-left:-12.954168px;}
._12_c00244{margin-left:-11.644638px;}
._15_c00244{margin-left:-7.481151px;}
._14_c00244{margin-left:-6.056670px;}
._17_c00244{margin-left:-5.001078px;}
._4_c00244{margin-left:-3.804243px;}
._0_c00244{margin-left:-2.622012px;}
._2_c00244{margin-left:-1.539027px;}
._3_c00244{width:1.062024px;}
._1_c00244{width:2.400009px;}
._c_c00244{width:4.068069px;}
._7_c00244{width:5.927856px;}
._5_c00244{width:7.205796px;}
._6_c00244{width:8.753901px;}
._10_c00244{width:10.216872px;}
._e_c00244{width:11.598714px;}
._8_c00244{width:13.499733px;}
._a_c00244{width:16.034994px;}
._9_c00244{width:17.135925px;}
._b_c00244{width:18.731886px;}
._11_c00244{width:20.537799px;}
._18_c00244{width:23.211039px;}
._19_c00244{width:25.206087px;}
._16_c00244{width:28.206108px;}
.fc1_c00244{color:transparent;}
.fc0_c00244{color:rgb(35,31,32);}
.fs0_c00244{font-size:51.000000px;}
.fs1_c00244{font-size:60.000000px;}
.y0_c00244{bottom:0.000000px;}
.y2b_c00244{bottom:64.800022px;}
.y2a_c00244{bottom:110.550022px;}
.y29_c00244{bottom:125.325022px;}
.y28_c00244{bottom:141.150022px;}
.y27_c00244{bottom:156.225022px;}
.y26_c00244{bottom:171.750022px;}
.y25_c00244{bottom:186.525022px;}
.y24_c00244{bottom:201.975022px;}
.y23_c00244{bottom:217.125022px;}
.y22_c00244{bottom:232.575022px;}
.y21_c00244{bottom:247.725022px;}
.y20_c00244{bottom:263.550022px;}
.y1f_c00244{bottom:278.625022px;}
.y1e_c00244{bottom:293.775022px;}
.y1d_c00244{bottom:308.925022px;}
.y1c_c00244{bottom:324.375022px;}
.y1b_c00244{bottom:339.525022px;}
.y1a_c00244{bottom:354.975022px;}
.y19_c00244{bottom:397.800022px;}
.y18_c00244{bottom:417.600022px;}
.y17_c00244{bottom:436.725022px;}
.y16_c00244{bottom:456.150022px;}
.y15_c00244{bottom:475.950022px;}
.y14_c00244{bottom:495.375022px;}
.y13_c00244{bottom:514.425022px;}
.y12_c00244{bottom:533.925022px;}
.y11_c00244{bottom:553.725022px;}
.y10_c00244{bottom:573.150022px;}
.yf_c00244{bottom:592.200022px;}
.ye_c00244{bottom:611.625022px;}
.yd_c00244{bottom:631.425022px;}
.yc_c00244{bottom:650.925022px;}
.yb_c00244{bottom:669.975022px;}
.ya_c00244{bottom:689.775022px;}
.y9_c00244{bottom:708.825022px;}
.y8_c00244{bottom:728.325022px;}
.y7_c00244{bottom:747.750022px;}
.y6_c00244{bottom:767.175022px;}
.y5_c00244{bottom:786.225022px;}
.y4_c00244{bottom:805.725022px;}
.y3_c00244{bottom:825.525022px;}
.y2_c00244{bottom:844.950022px;}
.y1_c00244{bottom:886.725022px;}
.h2_c00244{height:50.028809px;}
.h4_c00244{height:50.053711px;}
.h3_c00244{height:58.886719px;}
.h1_c00244{height:957.750000px;}
.h0_c00244{height:957.975000px;}
.w1_c00244{width:643.500000px;}
.w0_c00244{width:643.650000px;}
.x0_c00244{left:0.000000px;}
.x1_c00244{left:91.050000px;}
.x3_c00244{left:97.575000px;}
.x2_c00244{left:107.250000px;}
.x4_c00244{left:131.775000px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls0_c00244{letter-spacing:0.000000pt;}
.ws1_c00244{word-spacing:-13.333333pt;}
.ws0_c00244{word-spacing:-11.333333pt;}
.ws2_c00244{word-spacing:0.000000pt;}
._13_c00244{margin-left:-14.138509pt;}
._f_c00244{margin-left:-12.645405pt;}
._d_c00244{margin-left:-11.514816pt;}
._12_c00244{margin-left:-10.350789pt;}
._15_c00244{margin-left:-6.649912pt;}
._14_c00244{margin-left:-5.383707pt;}
._17_c00244{margin-left:-4.445403pt;}
._4_c00244{margin-left:-3.381549pt;}
._0_c00244{margin-left:-2.330677pt;}
._2_c00244{margin-left:-1.368024pt;}
._3_c00244{width:0.944021pt;}
._1_c00244{width:2.133341pt;}
._c_c00244{width:3.616061pt;}
._7_c00244{width:5.269205pt;}
._5_c00244{width:6.405152pt;}
._6_c00244{width:7.781245pt;}
._10_c00244{width:9.081664pt;}
._e_c00244{width:10.309968pt;}
._8_c00244{width:11.999763pt;}
._a_c00244{width:14.253328pt;}
._9_c00244{width:15.231933pt;}
._b_c00244{width:16.650565pt;}
._11_c00244{width:18.255821pt;}
._18_c00244{width:20.632035pt;}
._19_c00244{width:22.405411pt;}
._16_c00244{width:25.072096pt;}
.fs0_c00244{font-size:45.333333pt;}
.fs1_c00244{font-size:53.333333pt;}
.y0_c00244{bottom:0.000000pt;}
.y2b_c00244{bottom:57.600020pt;}
.y2a_c00244{bottom:98.266686pt;}
.y29_c00244{bottom:111.400020pt;}
.y28_c00244{bottom:125.466686pt;}
.y27_c00244{bottom:138.866686pt;}
.y26_c00244{bottom:152.666686pt;}
.y25_c00244{bottom:165.800020pt;}
.y24_c00244{bottom:179.533353pt;}
.y23_c00244{bottom:193.000020pt;}
.y22_c00244{bottom:206.733353pt;}
.y21_c00244{bottom:220.200020pt;}
.y20_c00244{bottom:234.266686pt;}
.y1f_c00244{bottom:247.666686pt;}
.y1e_c00244{bottom:261.133353pt;}
.y1d_c00244{bottom:274.600020pt;}
.y1c_c00244{bottom:288.333353pt;}
.y1b_c00244{bottom:301.800020pt;}
.y1a_c00244{bottom:315.533353pt;}
.y19_c00244{bottom:353.600020pt;}
.y18_c00244{bottom:371.200020pt;}
.y17_c00244{bottom:388.200020pt;}
.y16_c00244{bottom:405.466686pt;}
.y15_c00244{bottom:423.066686pt;}
.y14_c00244{bottom:440.333353pt;}
.y13_c00244{bottom:457.266686pt;}
.y12_c00244{bottom:474.600020pt;}
.y11_c00244{bottom:492.200020pt;}
.y10_c00244{bottom:509.466686pt;}
.yf_c00244{bottom:526.400020pt;}
.ye_c00244{bottom:543.666686pt;}
.yd_c00244{bottom:561.266686pt;}
.yc_c00244{bottom:578.600020pt;}
.yb_c00244{bottom:595.533353pt;}
.ya_c00244{bottom:613.133353pt;}
.y9_c00244{bottom:630.066686pt;}
.y8_c00244{bottom:647.400020pt;}
.y7_c00244{bottom:664.666686pt;}
.y6_c00244{bottom:681.933353pt;}
.y5_c00244{bottom:698.866686pt;}
.y4_c00244{bottom:716.200020pt;}
.y3_c00244{bottom:733.800020pt;}
.y2_c00244{bottom:751.066686pt;}
.y1_c00244{bottom:788.200020pt;}
.h2_c00244{height:44.470052pt;}
.h4_c00244{height:44.492188pt;}
.h3_c00244{height:52.343750pt;}
.h1_c00244{height:851.333333pt;}
.h0_c00244{height:851.533333pt;}
.w1_c00244{width:572.000000pt;}
.w0_c00244{width:572.133333pt;}
.x0_c00244{left:0.000000pt;}
.x1_c00244{left:80.933333pt;}
.x3_c00244{left:86.733333pt;}
.x2_c00244{left:95.333333pt;}
.x4_c00244{left:117.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1bbd494995fc04ed6114e55c.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00245;src:url('chunks/assets/font_858684eb2eba566f119a7728.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00245{letter-spacing:0.000000px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00245{word-spacing:-15.000000px;}
.ws0_c00245{word-spacing:-12.750000px;}
.ws2_c00245{word-spacing:0.000000px;}
._11_c00245{margin-left:-13.980000px;}
._2_c00245{margin-left:-12.900000px;}
._1_c00245{margin-left:-11.700000px;}
._15_c00245{margin-left:-5.864940px;}
._13_c00245{margin-left:-4.655934px;}
._d_c00245{margin-left:-3.540000px;}
._5_c00245{margin-left:-1.680000px;}
._0_c00245{width:1.920000px;}
._4_c00245{width:3.120000px;}
._3_c00245{width:4.500000px;}
._a_c00245{width:6.060000px;}
._9_c00245{width:7.140000px;}
._c_c00245{width:8.340000px;}
._b_c00245{width:10.200000px;}
._6_c00245{width:12.180000px;}
._7_c00245{width:13.740000px;}
._8_c00245{width:16.680000px;}
._e_c00245{width:18.600000px;}
._10_c00245{width:19.860000px;}
._f_c00245{width:21.600000px;}
._12_c00245{width:23.070000px;}
._16_c00245{width:24.570000px;}
._14_c00245{width:25.770000px;}
.fc1_c00245{color:transparent;}
.fc0_c00245{color:rgb(35,31,32);}
.fs1_c00245{font-size:51.000000px;}
.fs0_c00245{font-size:60.000000px;}
.y0_c00245{bottom:0.000000px;}
.y27_c00245{bottom:64.425022px;}
.y26_c00245{bottom:110.175022px;}
.y25_c00245{bottom:125.325022px;}
.y24_c00245{bottom:140.775022px;}
.y23_c00245{bottom:155.925022px;}
.y22_c00245{bottom:171.750022px;}
.y21_c00245{bottom:186.525022px;}
.y20_c00245{bottom:201.900022px;}
.y1f_c00245{bottom:217.425022px;}
.y1e_c00245{bottom:232.950022px;}
.y1d_c00245{bottom:272.925022px;}
.y1c_c00245{bottom:292.350022px;}
.y1b_c00245{bottom:327.600022px;}
.y19_c00245{bottom:378.375022px;}
.y18_c00245{bottom:398.175022px;}
.y17_c00245{bottom:417.225022px;}
.y16_c00245{bottom:437.025022px;}
.y15_c00245{bottom:456.150022px;}
.y14_c00245{bottom:475.950022px;}
.y13_c00245{bottom:495.000022px;}
.y12_c00245{bottom:514.500022px;}
.y11_c00245{bottom:533.925022px;}
.y10_c00245{bottom:553.350022px;}
.yf_c00245{bottom:573.150022px;}
.ye_c00245{bottom:592.575022px;}
.yd_c00245{bottom:611.625022px;}
.yc_c00245{bottom:631.125022px;}
.yb_c00245{bottom:650.925022px;}
.ya_c00245{bottom:670.350022px;}
.y9_c00245{bottom:689.400022px;}
.y8_c00245{bottom:708.825022px;}
.y7_c00245{bottom:728.625022px;}
.y6_c00245{bottom:747.750022px;}
.y5_c00245{bottom:767.550022px;}
.y4_c00245{bottom:786.225022px;}
.y3_c00245{bottom:806.025022px;}
.y2_c00245{bottom:825.150022px;}
.y1_c00245{bottom:844.575022px;}
.y1a_c00245{bottom:886.725022px;}
.h3_c00245{height:50.028809px;}
.h4_c00245{height:50.053711px;}
.h2_c00245{height:58.886719px;}
.h1_c00245{height:957.750000px;}
.h0_c00245{height:957.975000px;}
.w0_c00245{width:641.850030px;}
.w1_c00245{width:642.000000px;}
.x0_c00245{left:0.000000px;}
.x1_c00245{left:81.000000px;}
.x4_c00245{left:87.825000px;}
.x2_c00245{left:97.200000px;}
.x5_c00245{left:121.350000px;}
.x3_c00245{left:144.750000px;}
.x6_c00245{left:531.375000px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls0_c00245{letter-spacing:0.000000pt;}
.ws1_c00245{word-spacing:-13.333333pt;}
.ws0_c00245{word-spacing:-11.333333pt;}
.ws2_c00245{word-spacing:0.000000pt;}
._11_c00245{margin-left:-12.426667pt;}
._2_c00245{margin-left:-11.466667pt;}
._1_c00245{margin-left:-10.400000pt;}
._15_c00245{margin-left:-5.213280pt;}
._13_c00245{margin-left:-4.138608pt;}
._d_c00245{margin-left:-3.146667pt;}
._5_c00245{margin-left:-1.493333pt;}
._0_c00245{width:1.706667pt;}
._4_c00245{width:2.773333pt;}
._3_c00245{width:4.000000pt;}
._a_c00245{width:5.386667pt;}
._9_c00245{width:6.346667pt;}
._c_c00245{width:7.413333pt;}
._b_c00245{width:9.066667pt;}
._6_c00245{width:10.826667pt;}
._7_c00245{width:12.213333pt;}
._8_c00245{width:14.826667pt;}
._e_c00245{width:16.533333pt;}
._10_c00245{width:17.653333pt;}
._f_c00245{width:19.200000pt;}
._12_c00245{width:20.506667pt;}
._16_c00245{width:21.840000pt;}
._14_c00245{width:22.906667pt;}
.fs1_c00245{font-size:45.333333pt;}
.fs0_c00245{font-size:53.333333pt;}
.y0_c00245{bottom:0.000000pt;}
.y27_c00245{bottom:57.266686pt;}
.y26_c00245{bottom:97.933353pt;}
.y25_c00245{bottom:111.400020pt;}
.y24_c00245{bottom:125.133353pt;}
.y23_c00245{bottom:138.600020pt;}
.y22_c00245{bottom:152.666686pt;}
.y21_c00245{bottom:165.800020pt;}
.y20_c00245{bottom:179.466686pt;}
.y1f_c00245{bottom:193.266686pt;}
.y1e_c00245{bottom:207.066686pt;}
.y1d_c00245{bottom:242.600020pt;}
.y1c_c00245{bottom:259.866686pt;}
.y1b_c00245{bottom:291.200020pt;}
.y19_c00245{bottom:336.333353pt;}
.y18_c00245{bottom:353.933353pt;}
.y17_c00245{bottom:370.866686pt;}
.y16_c00245{bottom:388.466686pt;}
.y15_c00245{bottom:405.466686pt;}
.y14_c00245{bottom:423.066686pt;}
.y13_c00245{bottom:440.000020pt;}
.y12_c00245{bottom:457.333353pt;}
.y11_c00245{bottom:474.600020pt;}
.y10_c00245{bottom:491.866686pt;}
.yf_c00245{bottom:509.466686pt;}
.ye_c00245{bottom:526.733353pt;}
.yd_c00245{bottom:543.666686pt;}
.yc_c00245{bottom:561.000020pt;}
.yb_c00245{bottom:578.600020pt;}
.ya_c00245{bottom:595.866686pt;}
.y9_c00245{bottom:612.800020pt;}
.y8_c00245{bottom:630.066686pt;}
.y7_c00245{bottom:647.666686pt;}
.y6_c00245{bottom:664.666686pt;}
.y5_c00245{bottom:682.266686pt;}
.y4_c00245{bottom:698.866686pt;}
.y3_c00245{bottom:716.466686pt;}
.y2_c00245{bottom:733.466686pt;}
.y1_c00245{bottom:750.733353pt;}
.y1a_c00245{bottom:788.200020pt;}
.h3_c00245{height:44.470052pt;}
.h4_c00245{height:44.492188pt;}
.h2_c00245{height:52.343750pt;}
.h1_c00245{height:851.333333pt;}
.h0_c00245{height:851.533333pt;}
.w0_c00245{width:570.533360pt;}
.w1_c00245{width:570.666667pt;}
.x0_c00245{left:0.000000pt;}
.x1_c00245{left:72.000000pt;}
.x4_c00245{left:78.066667pt;}
.x2_c00245{left:86.400000pt;}
.x5_c00245{left:107.866667pt;}
.x3_c00245{left:128.666667pt;}
.x6_c00245{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f506e7505d8ab12c6ca2f6b0.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00246;src:url('chunks/assets/font_ead69f5350b3ead5d145285b.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00246{letter-spacing:0.000000px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00246{word-spacing:-15.000000px;}
.ws1_c00246{word-spacing:-12.750000px;}
.ws2_c00246{word-spacing:0.000000px;}
._14_c00246{margin-left:-15.960000px;}
._d_c00246{margin-left:-13.800000px;}
._e_c00246{margin-left:-11.700000px;}
._1d_c00246{margin-left:-8.886372px;}
._f_c00246{margin-left:-7.200000px;}
._19_c00246{margin-left:-5.819844px;}
._18_c00246{margin-left:-4.404045px;}
._13_c00246{margin-left:-2.880000px;}
._6_c00246{margin-left:-1.740000px;}
._0_c00246{width:1.260000px;}
._2_c00246{width:2.400000px;}
._3_c00246{width:3.420000px;}
._c_c00246{width:5.460000px;}
._10_c00246{width:6.600000px;}
._a_c00246{width:8.280000px;}
._11_c00246{width:9.360000px;}
._b_c00246{width:10.500000px;}
._16_c00246{width:11.520000px;}
._15_c00246{width:12.660000px;}
._1_c00246{width:13.740000px;}
._1c_c00246{width:15.072237px;}
._7_c00246{width:16.680000px;}
._12_c00246{width:18.180000px;}
._4_c00246{width:19.260000px;}
._5_c00246{width:20.520000px;}
._9_c00246{width:22.920000px;}
._8_c00246{width:24.180000px;}
._17_c00246{width:25.409979px;}
._1b_c00246{width:26.909991px;}
._1a_c00246{width:29.790093px;}
.fc1_c00246{color:transparent;}
.fc0_c00246{color:rgb(35,31,32);}
.fs1_c00246{font-size:51.000000px;}
.fs0_c00246{font-size:60.000000px;}
.y0_c00246{bottom:0.000000px;}
.y26_c00246{bottom:64.425022px;}
.y25_c00246{bottom:110.550022px;}
.y24_c00246{bottom:125.325022px;}
.y23_c00246{bottom:140.775022px;}
.y22_c00246{bottom:156.225022px;}
.y21_c00246{bottom:171.375022px;}
.y20_c00246{bottom:186.525022px;}
.y1f_c00246{bottom:201.975022px;}
.y1e_c00246{bottom:217.125022px;}
.y1d_c00246{bottom:232.575022px;}
.y1c_c00246{bottom:277.950022px;}
.y1b_c00246{bottom:297.375022px;}
.y1a_c00246{bottom:316.800022px;}
.y19_c00246{bottom:336.225022px;}
.y18_c00246{bottom:355.725022px;}
.y17_c00246{bottom:374.775022px;}
.y16_c00246{bottom:394.200022px;}
.y15_c00246{bottom:414.000022px;}
.y14_c00246{bottom:455.025022px;}
.y12_c00246{bottom:514.800022px;}
.y11_c00246{bottom:534.225022px;}
.y10_c00246{bottom:553.350022px;}
.yf_c00246{bottom:573.150022px;}
.ye_c00246{bottom:592.575022px;}
.yd_c00246{bottom:611.625022px;}
.yc_c00246{bottom:631.425022px;}
.yb_c00246{bottom:650.925022px;}
.ya_c00246{bottom:669.975022px;}
.y9_c00246{bottom:689.775022px;}
.y8_c00246{bottom:709.200022px;}
.y7_c00246{bottom:728.625022px;}
.y6_c00246{bottom:747.750022px;}
.y5_c00246{bottom:767.550022px;}
.y4_c00246{bottom:786.525022px;}
.y3_c00246{bottom:806.025022px;}
.y2_c00246{bottom:825.525022px;}
.y1_c00246{bottom:844.575022px;}
.y13_c00246{bottom:886.725022px;}
.h3_c00246{height:50.028809px;}
.h4_c00246{height:50.053711px;}
.h2_c00246{height:58.886719px;}
.h1_c00246{height:957.750000px;}
.h0_c00246{height:957.975000px;}
.w1_c00246{width:643.500000px;}
.w0_c00246{width:643.650000px;}
.x0_c00246{left:0.000000px;}
.x1_c00246{left:91.050000px;}
.x2_c00246{left:92.175000px;}
.x3_c00246{left:97.575000px;}
.x5_c00246{left:129.975000px;}
.x4_c00246{left:131.025000px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls0_c00246{letter-spacing:0.000000pt;}
.ws0_c00246{word-spacing:-13.333333pt;}
.ws1_c00246{word-spacing:-11.333333pt;}
.ws2_c00246{word-spacing:0.000000pt;}
._14_c00246{margin-left:-14.186667pt;}
._d_c00246{margin-left:-12.266667pt;}
._e_c00246{margin-left:-10.400000pt;}
._1d_c00246{margin-left:-7.898997pt;}
._f_c00246{margin-left:-6.400000pt;}
._19_c00246{margin-left:-5.173195pt;}
._18_c00246{margin-left:-3.914707pt;}
._13_c00246{margin-left:-2.560000pt;}
._6_c00246{margin-left:-1.546667pt;}
._0_c00246{width:1.120000pt;}
._2_c00246{width:2.133333pt;}
._3_c00246{width:3.040000pt;}
._c_c00246{width:4.853333pt;}
._10_c00246{width:5.866667pt;}
._a_c00246{width:7.360000pt;}
._11_c00246{width:8.320000pt;}
._b_c00246{width:9.333333pt;}
._16_c00246{width:10.240000pt;}
._15_c00246{width:11.253333pt;}
._1_c00246{width:12.213333pt;}
._1c_c00246{width:13.397544pt;}
._7_c00246{width:14.826667pt;}
._12_c00246{width:16.160000pt;}
._4_c00246{width:17.120000pt;}
._5_c00246{width:18.240000pt;}
._9_c00246{width:20.373333pt;}
._8_c00246{width:21.493333pt;}
._17_c00246{width:22.586648pt;}
._1b_c00246{width:23.919992pt;}
._1a_c00246{width:26.480083pt;}
.fs1_c00246{font-size:45.333333pt;}
.fs0_c00246{font-size:53.333333pt;}
.y0_c00246{bottom:0.000000pt;}
.y26_c00246{bottom:57.266686pt;}
.y25_c00246{bottom:98.266686pt;}
.y24_c00246{bottom:111.400020pt;}
.y23_c00246{bottom:125.133353pt;}
.y22_c00246{bottom:138.866686pt;}
.y21_c00246{bottom:152.333353pt;}
.y20_c00246{bottom:165.800020pt;}
.y1f_c00246{bottom:179.533353pt;}
.y1e_c00246{bottom:193.000020pt;}
.y1d_c00246{bottom:206.733353pt;}
.y1c_c00246{bottom:247.066686pt;}
.y1b_c00246{bottom:264.333353pt;}
.y1a_c00246{bottom:281.600020pt;}
.y19_c00246{bottom:298.866686pt;}
.y18_c00246{bottom:316.200020pt;}
.y17_c00246{bottom:333.133353pt;}
.y16_c00246{bottom:350.400020pt;}
.y15_c00246{bottom:368.000020pt;}
.y14_c00246{bottom:404.466686pt;}
.y12_c00246{bottom:457.600020pt;}
.y11_c00246{bottom:474.866686pt;}
.y10_c00246{bottom:491.866686pt;}
.yf_c00246{bottom:509.466686pt;}
.ye_c00246{bottom:526.733353pt;}
.yd_c00246{bottom:543.666686pt;}
.yc_c00246{bottom:561.266686pt;}
.yb_c00246{bottom:578.600020pt;}
.ya_c00246{bottom:595.533353pt;}
.y9_c00246{bottom:613.133353pt;}
.y8_c00246{bottom:630.400020pt;}
.y7_c00246{bottom:647.666686pt;}
.y6_c00246{bottom:664.666686pt;}
.y5_c00246{bottom:682.266686pt;}
.y4_c00246{bottom:699.133353pt;}
.y3_c00246{bottom:716.466686pt;}
.y2_c00246{bottom:733.800020pt;}
.y1_c00246{bottom:750.733353pt;}
.y13_c00246{bottom:788.200020pt;}
.h3_c00246{height:44.470052pt;}
.h4_c00246{height:44.492188pt;}
.h2_c00246{height:52.343750pt;}
.h1_c00246{height:851.333333pt;}
.h0_c00246{height:851.533333pt;}
.w1_c00246{width:572.000000pt;}
.w0_c00246{width:572.133333pt;}
.x0_c00246{left:0.000000pt;}
.x1_c00246{left:80.933333pt;}
.x2_c00246{left:81.933333pt;}
.x3_c00246{left:86.733333pt;}
.x5_c00246{left:115.533333pt;}
.x4_c00246{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_843ef79507a10bdd7e276c09.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00247;src:url('chunks/assets/font_209493c880c068d63c2ef4ed.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00247{letter-spacing:0.000000px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00247{word-spacing:-15.000000px;}
.ws0_c00247{word-spacing:-12.750000px;}
.ws2_c00247{word-spacing:0.000000px;}
._13_c00247{margin-left:-15.372162px;}
._c_c00247{margin-left:-13.947297px;}
._14_c00247{margin-left:-12.649443px;}
._17_c00247{margin-left:-9.879114px;}
._12_c00247{margin-left:-6.872673px;}
._16_c00247{margin-left:-4.894980px;}
._3_c00247{margin-left:-3.468357px;}
._19_c00247{margin-left:-2.389743px;}
._0_c00247{margin-left:-1.383018px;}
._1_c00247{width:1.983033px;}
._2_c00247{width:3.504159px;}
._5_c00247{width:4.736967px;}
._4_c00247{width:5.750901px;}
._6_c00247{width:7.250901px;}
._d_c00247{width:8.930901px;}
._11_c00247{width:10.838502px;}
._f_c00247{width:11.867283px;}
._10_c00247{width:13.354023px;}
._18_c00247{width:14.417955px;}
._8_c00247{width:16.130901px;}
._e_c00247{width:17.141802px;}
._9_c00247{width:18.161802px;}
._7_c00247{width:19.418769px;}
._b_c00247{width:20.516967px;}
._a_c00247{width:21.860571px;}
._15_c00247{width:26.667492px;}
._1a_c00247{width:27.791118px;}
.fc1_c00247{color:transparent;}
.fc0_c00247{color:rgb(35,31,32);}
.fs0_c00247{font-size:51.000000px;}
.fs1_c00247{font-size:60.000000px;}
.y0_c00247{bottom:0.000000px;}
.y28_c00247{bottom:64.425022px;}
.y27_c00247{bottom:110.175022px;}
.y26_c00247{bottom:125.625022px;}
.y25_c00247{bottom:141.150022px;}
.y24_c00247{bottom:155.925022px;}
.y23_c00247{bottom:171.375022px;}
.y22_c00247{bottom:186.525022px;}
.y21_c00247{bottom:201.975022px;}
.y20_c00247{bottom:217.425022px;}
.y1f_c00247{bottom:232.950022px;}
.y1e_c00247{bottom:248.025022px;}
.y1d_c00247{bottom:263.550022px;}
.y1c_c00247{bottom:278.325022px;}
.y1b_c00247{bottom:294.150022px;}
.y1a_c00247{bottom:309.225022px;}
.y19_c00247{bottom:324.750022px;}
.y18_c00247{bottom:339.525022px;}
.y17_c00247{bottom:354.975022px;}
.y16_c00247{bottom:370.425022px;}
.y15_c00247{bottom:385.575022px;}
.y14_c00247{bottom:400.725022px;}
.y13_c00247{bottom:416.175022px;}
.y12_c00247{bottom:431.325022px;}
.y11_c00247{bottom:446.775022px;}
.y10_c00247{bottom:461.925022px;}
.yf_c00247{bottom:592.575022px;}
.ye_c00247{bottom:611.625022px;}
.yd_c00247{bottom:631.125022px;}
.yc_c00247{bottom:650.925022px;}
.yb_c00247{bottom:669.975022px;}
.ya_c00247{bottom:689.400022px;}
.y9_c00247{bottom:709.200022px;}
.y8_c00247{bottom:728.325022px;}
.y7_c00247{bottom:748.125022px;}
.y6_c00247{bottom:767.175022px;}
.y5_c00247{bottom:786.600022px;}
.y4_c00247{bottom:805.725022px;}
.y3_c00247{bottom:825.150022px;}
.y2_c00247{bottom:844.950022px;}
.y1_c00247{bottom:886.725022px;}
.h2_c00247{height:50.028809px;}
.h4_c00247{height:50.053711px;}
.h3_c00247{height:58.886719px;}
.h1_c00247{height:957.750000px;}
.h0_c00247{height:957.975000px;}
.w0_c00247{width:641.850030px;}
.w1_c00247{width:642.000000px;}
.x0_c00247{left:0.000000px;}
.x2_c00247{left:80.250000px;}
.x3_c00247{left:81.375000px;}
.x4_c00247{left:87.825000px;}
.x6_c00247{left:120.225000px;}
.x5_c00247{left:121.350000px;}
.x1_c00247{left:144.750000px;}
.x7_c00247{left:531.375000px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ws1_c00247{word-spacing:-13.333333pt;}
.ws0_c00247{word-spacing:-11.333333pt;}
.ws2_c00247{word-spacing:0.000000pt;}
._13_c00247{margin-left:-13.664144pt;}
._c_c00247{margin-left:-12.397597pt;}
._14_c00247{margin-left:-11.243949pt;}
._17_c00247{margin-left:-8.781435pt;}
._12_c00247{margin-left:-6.109043pt;}
._16_c00247{margin-left:-4.351093pt;}
._3_c00247{margin-left:-3.082984pt;}
._19_c00247{margin-left:-2.124216pt;}
._0_c00247{margin-left:-1.229349pt;}
._1_c00247{width:1.762696pt;}
._2_c00247{width:3.114808pt;}
._5_c00247{width:4.210637pt;}
._4_c00247{width:5.111912pt;}
._6_c00247{width:6.445245pt;}
._d_c00247{width:7.938579pt;}
._11_c00247{width:9.634224pt;}
._f_c00247{width:10.548696pt;}
._10_c00247{width:11.870243pt;}
._18_c00247{width:12.815960pt;}
._8_c00247{width:14.338579pt;}
._e_c00247{width:15.237157pt;}
._9_c00247{width:16.143824pt;}
._7_c00247{width:17.261128pt;}
._b_c00247{width:18.237304pt;}
._a_c00247{width:19.431619pt;}
._15_c00247{width:23.704437pt;}
._1a_c00247{width:24.703216pt;}
.fs0_c00247{font-size:45.333333pt;}
.fs1_c00247{font-size:53.333333pt;}
.y0_c00247{bottom:0.000000pt;}
.y28_c00247{bottom:57.266686pt;}
.y27_c00247{bottom:97.933353pt;}
.y26_c00247{bottom:111.666686pt;}
.y25_c00247{bottom:125.466686pt;}
.y24_c00247{bottom:138.600020pt;}
.y23_c00247{bottom:152.333353pt;}
.y22_c00247{bottom:165.800020pt;}
.y21_c00247{bottom:179.533353pt;}
.y20_c00247{bottom:193.266686pt;}
.y1f_c00247{bottom:207.066686pt;}
.y1e_c00247{bottom:220.466686pt;}
.y1d_c00247{bottom:234.266686pt;}
.y1c_c00247{bottom:247.400020pt;}
.y1b_c00247{bottom:261.466686pt;}
.y1a_c00247{bottom:274.866686pt;}
.y19_c00247{bottom:288.666686pt;}
.y18_c00247{bottom:301.800020pt;}
.y17_c00247{bottom:315.533353pt;}
.y16_c00247{bottom:329.266686pt;}
.y15_c00247{bottom:342.733353pt;}
.y14_c00247{bottom:356.200020pt;}
.y13_c00247{bottom:369.933353pt;}
.y12_c00247{bottom:383.400020pt;}
.y11_c00247{bottom:397.133353pt;}
.y10_c00247{bottom:410.600020pt;}
.yf_c00247{bottom:526.733353pt;}
.ye_c00247{bottom:543.666686pt;}
.yd_c00247{bottom:561.000020pt;}
.yc_c00247{bottom:578.600020pt;}
.yb_c00247{bottom:595.533353pt;}
.ya_c00247{bottom:612.800020pt;}
.y9_c00247{bottom:630.400020pt;}
.y8_c00247{bottom:647.400020pt;}
.y7_c00247{bottom:665.000020pt;}
.y6_c00247{bottom:681.933353pt;}
.y5_c00247{bottom:699.200020pt;}
.y4_c00247{bottom:716.200020pt;}
.y3_c00247{bottom:733.466686pt;}
.y2_c00247{bottom:751.066686pt;}
.y1_c00247{bottom:788.200020pt;}
.h2_c00247{height:44.470052pt;}
.h4_c00247{height:44.492188pt;}
.h3_c00247{height:52.343750pt;}
.h1_c00247{height:851.333333pt;}
.h0_c00247{height:851.533333pt;}
.w0_c00247{width:570.533360pt;}
.w1_c00247{width:570.666667pt;}
.x0_c00247{left:0.000000pt;}
.x2_c00247{left:71.333333pt;}
.x3_c00247{left:72.333333pt;}
.x4_c00247{left:78.066667pt;}
.x6_c00247{left:106.866667pt;}
.x5_c00247{left:107.866667pt;}
.x1_c00247{left:128.666667pt;}
.x7_c00247{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3781562863830d1cb8b34081.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00248;src:url('chunks/assets/font_157d75c289a4fd4e1b9f6a1c.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00248{vertical-align:0.000000px;}
.ls0_c00248{letter-spacing:0.000000px;}
.sc__c00248{text-shadow:none;}
.sc0_c00248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00248{-webkit-text-stroke:0px transparent;}
.sc0_c00248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00248{word-spacing:-15.000000px;}
.ws0_c00248{word-spacing:-12.750000px;}
.ws2_c00248{word-spacing:0.000000px;}
._12_c00248{margin-left:-16.140000px;}
._11_c00248{margin-left:-14.460000px;}
._d_c00248{margin-left:-13.380000px;}
._10_c00248{margin-left:-12.240000px;}
._c_c00248{margin-left:-5.940000px;}
._14_c00248{margin-left:-4.494030px;}
._5_c00248{margin-left:-3.180000px;}
._a_c00248{margin-left:-2.100000px;}
._0_c00248{margin-left:-1.080000px;}
._2_c00248{width:1.500000px;}
._3_c00248{width:3.180000px;}
._8_c00248{width:4.560000px;}
._9_c00248{width:5.580000px;}
._7_c00248{width:6.720000px;}
._b_c00248{width:7.920000px;}
._1_c00248{width:9.420000px;}
._4_c00248{width:11.100000px;}
._6_c00248{width:13.140000px;}
._16_c00248{width:14.261931px;}
._18_c00248{width:16.374081px;}
._e_c00248{width:17.700000px;}
._f_c00248{width:19.440000px;}
._13_c00248{width:23.250000px;}
._15_c00248{width:25.349979px;}
._17_c00248{width:26.849991px;}
.fc1_c00248{color:transparent;}
.fc0_c00248{color:rgb(35,31,32);}
.fs1_c00248{font-size:51.000000px;}
.fs0_c00248{font-size:60.000000px;}
.y0_c00248{bottom:0.000000px;}
.y2a_c00248{bottom:64.425022px;}
.y29_c00248{bottom:110.175022px;}
.y28_c00248{bottom:125.325022px;}
.y27_c00248{bottom:140.775022px;}
.y26_c00248{bottom:156.225022px;}
.y25_c00248{bottom:171.375022px;}
.y24_c00248{bottom:186.525022px;}
.y23_c00248{bottom:202.350022px;}
.y22_c00248{bottom:217.425022px;}
.y21_c00248{bottom:232.575022px;}
.y20_c00248{bottom:248.025022px;}
.y1f_c00248{bottom:263.550022px;}
.y1e_c00248{bottom:278.325022px;}
.y1d_c00248{bottom:293.775022px;}
.y1c_c00248{bottom:308.925022px;}
.y1b_c00248{bottom:324.375022px;}
.y1a_c00248{bottom:339.825022px;}
.y19_c00248{bottom:354.975022px;}
.y18_c00248{bottom:370.125022px;}
.y17_c00248{bottom:385.575022px;}
.y16_c00248{bottom:400.725022px;}
.y14_c00248{bottom:457.200022px;}
.y13_c00248{bottom:476.625022px;}
.y12_c00248{bottom:496.125022px;}
.y11_c00248{bottom:515.175022px;}
.y10_c00248{bottom:534.675022px;}
.yf_c00248{bottom:554.100022px;}
.ye_c00248{bottom:573.525022px;}
.yd_c00248{bottom:592.950022px;}
.yc_c00248{bottom:612.375022px;}
.yb_c00248{bottom:632.175022px;}
.ya_c00248{bottom:651.225022px;}
.y9_c00248{bottom:670.725022px;}
.y8_c00248{bottom:690.150022px;}
.y7_c00248{bottom:709.875022px;}
.y6_c00248{bottom:729.000022px;}
.y5_c00248{bottom:748.125022px;}
.y4_c00248{bottom:767.925022px;}
.y3_c00248{bottom:787.350022px;}
.y2_c00248{bottom:806.775022px;}
.y1_c00248{bottom:844.950022px;}
.y15_c00248{bottom:886.725022px;}
.h3_c00248{height:50.028809px;}
.h4_c00248{height:50.053711px;}
.h2_c00248{height:58.886719px;}
.h1_c00248{height:957.750000px;}
.h0_c00248{height:957.975000px;}
.w1_c00248{width:643.500000px;}
.w0_c00248{width:643.650000px;}
.x0_c00248{left:0.000000px;}
.x2_c00248{left:90.375000px;}
.x1_c00248{left:91.425000px;}
.x4_c00248{left:97.575000px;}
.x3_c00248{left:106.950000px;}
.x5_c00248{left:131.025000px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls0_c00248{letter-spacing:0.000000pt;}
.ws1_c00248{word-spacing:-13.333333pt;}
.ws0_c00248{word-spacing:-11.333333pt;}
.ws2_c00248{word-spacing:0.000000pt;}
._12_c00248{margin-left:-14.346667pt;}
._11_c00248{margin-left:-12.853333pt;}
._d_c00248{margin-left:-11.893333pt;}
._10_c00248{margin-left:-10.880000pt;}
._c_c00248{margin-left:-5.280000pt;}
._14_c00248{margin-left:-3.994693pt;}
._5_c00248{margin-left:-2.826667pt;}
._a_c00248{margin-left:-1.866667pt;}
._0_c00248{margin-left:-0.960000pt;}
._2_c00248{width:1.333333pt;}
._3_c00248{width:2.826667pt;}
._8_c00248{width:4.053333pt;}
._9_c00248{width:4.960000pt;}
._7_c00248{width:5.973333pt;}
._b_c00248{width:7.040000pt;}
._1_c00248{width:8.373333pt;}
._4_c00248{width:9.866667pt;}
._6_c00248{width:11.680000pt;}
._16_c00248{width:12.677272pt;}
._18_c00248{width:14.554739pt;}
._e_c00248{width:15.733333pt;}
._f_c00248{width:17.280000pt;}
._13_c00248{width:20.666667pt;}
._15_c00248{width:22.533315pt;}
._17_c00248{width:23.866659pt;}
.fs1_c00248{font-size:45.333333pt;}
.fs0_c00248{font-size:53.333333pt;}
.y0_c00248{bottom:0.000000pt;}
.y2a_c00248{bottom:57.266686pt;}
.y29_c00248{bottom:97.933353pt;}
.y28_c00248{bottom:111.400020pt;}
.y27_c00248{bottom:125.133353pt;}
.y26_c00248{bottom:138.866686pt;}
.y25_c00248{bottom:152.333353pt;}
.y24_c00248{bottom:165.800020pt;}
.y23_c00248{bottom:179.866686pt;}
.y22_c00248{bottom:193.266686pt;}
.y21_c00248{bottom:206.733353pt;}
.y20_c00248{bottom:220.466686pt;}
.y1f_c00248{bottom:234.266686pt;}
.y1e_c00248{bottom:247.400020pt;}
.y1d_c00248{bottom:261.133353pt;}
.y1c_c00248{bottom:274.600020pt;}
.y1b_c00248{bottom:288.333353pt;}
.y1a_c00248{bottom:302.066686pt;}
.y19_c00248{bottom:315.533353pt;}
.y18_c00248{bottom:329.000020pt;}
.y17_c00248{bottom:342.733353pt;}
.y16_c00248{bottom:356.200020pt;}
.y14_c00248{bottom:406.400020pt;}
.y13_c00248{bottom:423.666686pt;}
.y12_c00248{bottom:441.000020pt;}
.y11_c00248{bottom:457.933353pt;}
.y10_c00248{bottom:475.266686pt;}
.yf_c00248{bottom:492.533353pt;}
.ye_c00248{bottom:509.800020pt;}
.yd_c00248{bottom:527.066686pt;}
.yc_c00248{bottom:544.333353pt;}
.yb_c00248{bottom:561.933353pt;}
.ya_c00248{bottom:578.866686pt;}
.y9_c00248{bottom:596.200020pt;}
.y8_c00248{bottom:613.466686pt;}
.y7_c00248{bottom:631.000020pt;}
.y6_c00248{bottom:648.000020pt;}
.y5_c00248{bottom:665.000020pt;}
.y4_c00248{bottom:682.600020pt;}
.y3_c00248{bottom:699.866686pt;}
.y2_c00248{bottom:717.133353pt;}
.y1_c00248{bottom:751.066686pt;}
.y15_c00248{bottom:788.200020pt;}
.h3_c00248{height:44.470052pt;}
.h4_c00248{height:44.492188pt;}
.h2_c00248{height:52.343750pt;}
.h1_c00248{height:851.333333pt;}
.h0_c00248{height:851.533333pt;}
.w1_c00248{width:572.000000pt;}
.w0_c00248{width:572.133333pt;}
.x0_c00248{left:0.000000pt;}
.x2_c00248{left:80.333333pt;}
.x1_c00248{left:81.266667pt;}
.x4_c00248{left:86.733333pt;}
.x3_c00248{left:95.066667pt;}
.x5_c00248{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_07c73906800c7aba2c32634f.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00249;src:url('chunks/assets/font_f62aebcddd6e5fd6965d8880.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.ls0_c00249{letter-spacing:0.000000px;}
.sc__c00249{text-shadow:none;}
.sc0_c00249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00249{-webkit-text-stroke:0px transparent;}
.sc0_c00249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00249{word-spacing:-15.000000px;}
.ws1_c00249{word-spacing:-12.750000px;}
.ws2_c00249{word-spacing:0.000000px;}
._4_c00249{margin-left:-13.386066px;}
._5_c00249{margin-left:-12.227868px;}
._18_c00249{margin-left:-5.869698px;}
._d_c00249{margin-left:-4.650330px;}
._3_c00249{margin-left:-3.468357px;}
._15_c00249{margin-left:-2.393889px;}
._0_c00249{margin-left:-1.383018px;}
._1_c00249{width:1.983033px;}
._2_c00249{width:3.504159px;}
._b_c00249{width:5.495841px;}
._a_c00249{width:6.697419px;}
._e_c00249{width:8.542581px;}
._10_c00249{width:10.309101px;}
._7_c00249{width:11.444835px;}
._f_c00249{width:12.840000px;}
._11_c00249{width:13.846575px;}
._17_c00249{width:15.229560px;}
._6_c00249{width:16.500000px;}
._8_c00249{width:17.846637px;}
._9_c00249{width:19.376952px;}
._c_c00249{width:20.618979px;}
._12_c00249{width:22.407027px;}
._13_c00249{width:23.876967px;}
._14_c00249{width:25.029054px;}
._16_c00249{width:26.295294px;}
._19_c00249{width:27.614685px;}
.fc1_c00249{color:transparent;}
.fc0_c00249{color:rgb(35,31,32);}
.fs0_c00249{font-size:51.000000px;}
.fs1_c00249{font-size:60.000000px;}
.y0_c00249{bottom:0.000000px;}
.y2b_c00249{bottom:64.425022px;}
.y2a_c00249{bottom:110.175022px;}
.y29_c00249{bottom:125.325022px;}
.y28_c00249{bottom:140.775022px;}
.y27_c00249{bottom:155.925022px;}
.y26_c00249{bottom:171.375022px;}
.y25_c00249{bottom:186.825022px;}
.y24_c00249{bottom:201.975022px;}
.y23_c00249{bottom:217.125022px;}
.y22_c00249{bottom:232.575022px;}
.y21_c00249{bottom:248.025022px;}
.y20_c00249{bottom:263.175022px;}
.y1f_c00249{bottom:278.625022px;}
.y1e_c00249{bottom:293.775022px;}
.y1d_c00249{bottom:308.925022px;}
.y1c_c00249{bottom:324.375022px;}
.y1b_c00249{bottom:339.825022px;}
.y1a_c00249{bottom:354.975022px;}
.y19_c00249{bottom:369.375022px;}
.y18_c00249{bottom:385.575022px;}
.y17_c00249{bottom:401.025022px;}
.y16_c00249{bottom:416.550022px;}
.y15_c00249{bottom:431.325022px;}
.y14_c00249{bottom:495.375022px;}
.y13_c00249{bottom:514.800022px;}
.y12_c00249{bottom:534.225022px;}
.y11_c00249{bottom:553.350022px;}
.y10_c00249{bottom:573.150022px;}
.yf_c00249{bottom:592.575022px;}
.ye_c00249{bottom:611.625022px;}
.yd_c00249{bottom:631.425022px;}
.yc_c00249{bottom:650.550022px;}
.yb_c00249{bottom:669.975022px;}
.ya_c00249{bottom:689.775022px;}
.y9_c00249{bottom:709.200022px;}
.y8_c00249{bottom:728.625022px;}
.y7_c00249{bottom:748.125022px;}
.y6_c00249{bottom:767.175022px;}
.y5_c00249{bottom:786.225022px;}
.y4_c00249{bottom:806.025022px;}
.y3_c00249{bottom:825.525022px;}
.y2_c00249{bottom:844.950022px;}
.y1_c00249{bottom:886.725022px;}
.h2_c00249{height:50.028809px;}
.h4_c00249{height:50.053711px;}
.h3_c00249{height:58.886719px;}
.h1_c00249{height:957.750000px;}
.h0_c00249{height:957.975000px;}
.w0_c00249{width:641.850030px;}
.w1_c00249{width:642.000000px;}
.x0_c00249{left:0.000000px;}
.x3_c00249{left:80.250000px;}
.x2_c00249{left:81.375000px;}
.x5_c00249{left:87.825000px;}
.x4_c00249{left:97.200000px;}
.x6_c00249{left:120.600000px;}
.x7_c00249{left:121.650000px;}
.x1_c00249{left:144.750000px;}
.x8_c00249{left:531.375000px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls0_c00249{letter-spacing:0.000000pt;}
.ws0_c00249{word-spacing:-13.333333pt;}
.ws1_c00249{word-spacing:-11.333333pt;}
.ws2_c00249{word-spacing:0.000000pt;}
._4_c00249{margin-left:-11.898725pt;}
._5_c00249{margin-left:-10.869216pt;}
._18_c00249{margin-left:-5.217509pt;}
._d_c00249{margin-left:-4.133627pt;}
._3_c00249{margin-left:-3.082984pt;}
._15_c00249{margin-left:-2.127901pt;}
._0_c00249{margin-left:-1.229349pt;}
._1_c00249{width:1.762696pt;}
._2_c00249{width:3.114808pt;}
._b_c00249{width:4.885192pt;}
._a_c00249{width:5.953261pt;}
._e_c00249{width:7.593405pt;}
._10_c00249{width:9.163645pt;}
._7_c00249{width:10.173187pt;}
._f_c00249{width:11.413333pt;}
._11_c00249{width:12.308067pt;}
._17_c00249{width:13.537387pt;}
._6_c00249{width:14.666667pt;}
._8_c00249{width:15.863677pt;}
._9_c00249{width:17.223957pt;}
._c_c00249{width:18.327981pt;}
._12_c00249{width:19.917357pt;}
._13_c00249{width:21.223971pt;}
._14_c00249{width:22.248048pt;}
._16_c00249{width:23.373595pt;}
._19_c00249{width:24.546387pt;}
.fs0_c00249{font-size:45.333333pt;}
.fs1_c00249{font-size:53.333333pt;}
.y0_c00249{bottom:0.000000pt;}
.y2b_c00249{bottom:57.266686pt;}
.y2a_c00249{bottom:97.933353pt;}
.y29_c00249{bottom:111.400020pt;}
.y28_c00249{bottom:125.133353pt;}
.y27_c00249{bottom:138.600020pt;}
.y26_c00249{bottom:152.333353pt;}
.y25_c00249{bottom:166.066686pt;}
.y24_c00249{bottom:179.533353pt;}
.y23_c00249{bottom:193.000020pt;}
.y22_c00249{bottom:206.733353pt;}
.y21_c00249{bottom:220.466686pt;}
.y20_c00249{bottom:233.933353pt;}
.y1f_c00249{bottom:247.666686pt;}
.y1e_c00249{bottom:261.133353pt;}
.y1d_c00249{bottom:274.600020pt;}
.y1c_c00249{bottom:288.333353pt;}
.y1b_c00249{bottom:302.066686pt;}
.y1a_c00249{bottom:315.533353pt;}
.y19_c00249{bottom:328.333353pt;}
.y18_c00249{bottom:342.733353pt;}
.y17_c00249{bottom:356.466686pt;}
.y16_c00249{bottom:370.266686pt;}
.y15_c00249{bottom:383.400020pt;}
.y14_c00249{bottom:440.333353pt;}
.y13_c00249{bottom:457.600020pt;}
.y12_c00249{bottom:474.866686pt;}
.y11_c00249{bottom:491.866686pt;}
.y10_c00249{bottom:509.466686pt;}
.yf_c00249{bottom:526.733353pt;}
.ye_c00249{bottom:543.666686pt;}
.yd_c00249{bottom:561.266686pt;}
.yc_c00249{bottom:578.266686pt;}
.yb_c00249{bottom:595.533353pt;}
.ya_c00249{bottom:613.133353pt;}
.y9_c00249{bottom:630.400020pt;}
.y8_c00249{bottom:647.666686pt;}
.y7_c00249{bottom:665.000020pt;}
.y6_c00249{bottom:681.933353pt;}
.y5_c00249{bottom:698.866686pt;}
.y4_c00249{bottom:716.466686pt;}
.y3_c00249{bottom:733.800020pt;}
.y2_c00249{bottom:751.066686pt;}
.y1_c00249{bottom:788.200020pt;}
.h2_c00249{height:44.470052pt;}
.h4_c00249{height:44.492188pt;}
.h3_c00249{height:52.343750pt;}
.h1_c00249{height:851.333333pt;}
.h0_c00249{height:851.533333pt;}
.w0_c00249{width:570.533360pt;}
.w1_c00249{width:570.666667pt;}
.x0_c00249{left:0.000000pt;}
.x3_c00249{left:71.333333pt;}
.x2_c00249{left:72.333333pt;}
.x5_c00249{left:78.066667pt;}
.x4_c00249{left:86.400000pt;}
.x6_c00249{left:107.200000pt;}
.x7_c00249{left:108.133333pt;}
.x1_c00249{left:128.666667pt;}
.x8_c00249{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5ef4b84240e53b01b5cf204b.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00250;src:url('chunks/assets/font_9ac3750e616ebb4a66f4e39a.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00250{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00250{vertical-align:0.000000px;}
.ls0_c00250{letter-spacing:0.000000px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00250{word-spacing:-15.000000px;}
.ws1_c00250{word-spacing:-12.750000px;}
.ws2_c00250{word-spacing:0.000000px;}
._12_c00250{margin-left:-16.026561px;}
._6_c00250{margin-left:-13.500000px;}
._5_c00250{margin-left:-12.288114px;}
._14_c00250{margin-left:-6.114213px;}
._17_c00250{margin-left:-5.009430px;}
._4_c00250{margin-left:-3.804243px;}
._0_c00250{margin-left:-2.622012px;}
._2_c00250{margin-left:-1.539027px;}
._3_c00250{width:1.062024px;}
._1_c00250{width:2.400009px;}
._7_c00250{width:3.900000px;}
._11_c00250{width:5.189880px;}
._b_c00250{width:6.395970px;}
._10_c00250{width:7.595289px;}
._8_c00250{width:9.059760px;}
._a_c00250{width:10.404030px;}
._9_c00250{width:11.699973px;}
._f_c00250{width:13.178994px;}
._16_c00250{width:14.666988px;}
._e_c00250{width:16.484583px;}
._13_c00250{width:18.228507px;}
._d_c00250{width:19.680000px;}
._c_c00250{width:21.300000px;}
._15_c00250{width:24.006108px;}
._19_c00250{width:25.206087px;}
._18_c00250{width:27.372159px;}
.fc1_c00250{color:transparent;}
.fc0_c00250{color:rgb(35,31,32);}
.fs0_c00250{font-size:51.000000px;}
.fs1_c00250{font-size:60.000000px;}
.y0_c00250{bottom:0.000000px;}
.y2c_c00250{bottom:64.425022px;}
.y2b_c00250{bottom:110.550022px;}
.y2a_c00250{bottom:125.325022px;}
.y29_c00250{bottom:140.775022px;}
.y28_c00250{bottom:155.925022px;}
.y27_c00250{bottom:171.750022px;}
.y26_c00250{bottom:186.525022px;}
.y25_c00250{bottom:201.900022px;}
.y24_c00250{bottom:217.425022px;}
.y23_c00250{bottom:232.950022px;}
.y22_c00250{bottom:248.025022px;}
.y21_c00250{bottom:263.550022px;}
.y20_c00250{bottom:278.625022px;}
.y1f_c00250{bottom:294.150022px;}
.y1e_c00250{bottom:309.225022px;}
.y1d_c00250{bottom:324.375022px;}
.y1c_c00250{bottom:339.825022px;}
.y1b_c00250{bottom:354.975022px;}
.y1a_c00250{bottom:370.125022px;}
.y19_c00250{bottom:385.575022px;}
.y18_c00250{bottom:401.025022px;}
.y17_c00250{bottom:416.175022px;}
.y16_c00250{bottom:431.325022px;}
.y15_c00250{bottom:475.575022px;}
.y14_c00250{bottom:495.375022px;}
.y13_c00250{bottom:514.425022px;}
.y12_c00250{bottom:534.300022px;}
.y11_c00250{bottom:553.725022px;}
.y10_c00250{bottom:573.150022px;}
.yf_c00250{bottom:592.200022px;}
.ye_c00250{bottom:612.000022px;}
.yd_c00250{bottom:631.125022px;}
.yc_c00250{bottom:650.550022px;}
.yb_c00250{bottom:670.350022px;}
.ya_c00250{bottom:689.775022px;}
.y9_c00250{bottom:708.900022px;}
.y8_c00250{bottom:728.325022px;}
.y7_c00250{bottom:747.750022px;}
.y6_c00250{bottom:767.550022px;}
.y5_c00250{bottom:786.600022px;}
.y4_c00250{bottom:805.725022px;}
.y3_c00250{bottom:825.525022px;}
.y2_c00250{bottom:844.950022px;}
.y1_c00250{bottom:886.725022px;}
.h2_c00250{height:50.028809px;}
.h4_c00250{height:50.053711px;}
.h3_c00250{height:58.886719px;}
.h1_c00250{height:957.750000px;}
.h0_c00250{height:957.975000px;}
.w1_c00250{width:643.500000px;}
.w0_c00250{width:643.650000px;}
.x0_c00250{left:0.000000px;}
.x3_c00250{left:89.625000px;}
.x1_c00250{left:91.050000px;}
.x4_c00250{left:97.575000px;}
.x2_c00250{left:106.950000px;}
.x6_c00250{left:130.650000px;}
.x5_c00250{left:131.775000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls0_c00250{letter-spacing:0.000000pt;}
.ws0_c00250{word-spacing:-13.333333pt;}
.ws1_c00250{word-spacing:-11.333333pt;}
.ws2_c00250{word-spacing:0.000000pt;}
._12_c00250{margin-left:-14.245832pt;}
._6_c00250{margin-left:-12.000000pt;}
._5_c00250{margin-left:-10.922768pt;}
._14_c00250{margin-left:-5.434856pt;}
._17_c00250{margin-left:-4.452827pt;}
._4_c00250{margin-left:-3.381549pt;}
._0_c00250{margin-left:-2.330677pt;}
._2_c00250{margin-left:-1.368024pt;}
._3_c00250{width:0.944021pt;}
._1_c00250{width:2.133341pt;}
._7_c00250{width:3.466667pt;}
._11_c00250{width:4.613227pt;}
._b_c00250{width:5.685307pt;}
._10_c00250{width:6.751368pt;}
._8_c00250{width:8.053120pt;}
._a_c00250{width:9.248027pt;}
._9_c00250{width:10.399976pt;}
._f_c00250{width:11.714661pt;}
._16_c00250{width:13.037323pt;}
._e_c00250{width:14.652963pt;}
._13_c00250{width:16.203117pt;}
._d_c00250{width:17.493333pt;}
._c_c00250{width:18.933333pt;}
._15_c00250{width:21.338763pt;}
._19_c00250{width:22.405411pt;}
._18_c00250{width:24.330808pt;}
.fs0_c00250{font-size:45.333333pt;}
.fs1_c00250{font-size:53.333333pt;}
.y0_c00250{bottom:0.000000pt;}
.y2c_c00250{bottom:57.266686pt;}
.y2b_c00250{bottom:98.266686pt;}
.y2a_c00250{bottom:111.400020pt;}
.y29_c00250{bottom:125.133353pt;}
.y28_c00250{bottom:138.600020pt;}
.y27_c00250{bottom:152.666686pt;}
.y26_c00250{bottom:165.800020pt;}
.y25_c00250{bottom:179.466686pt;}
.y24_c00250{bottom:193.266686pt;}
.y23_c00250{bottom:207.066686pt;}
.y22_c00250{bottom:220.466686pt;}
.y21_c00250{bottom:234.266686pt;}
.y20_c00250{bottom:247.666686pt;}
.y1f_c00250{bottom:261.466686pt;}
.y1e_c00250{bottom:274.866686pt;}
.y1d_c00250{bottom:288.333353pt;}
.y1c_c00250{bottom:302.066686pt;}
.y1b_c00250{bottom:315.533353pt;}
.y1a_c00250{bottom:329.000020pt;}
.y19_c00250{bottom:342.733353pt;}
.y18_c00250{bottom:356.466686pt;}
.y17_c00250{bottom:369.933353pt;}
.y16_c00250{bottom:383.400020pt;}
.y15_c00250{bottom:422.733353pt;}
.y14_c00250{bottom:440.333353pt;}
.y13_c00250{bottom:457.266686pt;}
.y12_c00250{bottom:474.933353pt;}
.y11_c00250{bottom:492.200020pt;}
.y10_c00250{bottom:509.466686pt;}
.yf_c00250{bottom:526.400020pt;}
.ye_c00250{bottom:544.000020pt;}
.yd_c00250{bottom:561.000020pt;}
.yc_c00250{bottom:578.266686pt;}
.yb_c00250{bottom:595.866686pt;}
.ya_c00250{bottom:613.133353pt;}
.y9_c00250{bottom:630.133353pt;}
.y8_c00250{bottom:647.400020pt;}
.y7_c00250{bottom:664.666686pt;}
.y6_c00250{bottom:682.266686pt;}
.y5_c00250{bottom:699.200020pt;}
.y4_c00250{bottom:716.200020pt;}
.y3_c00250{bottom:733.800020pt;}
.y2_c00250{bottom:751.066686pt;}
.y1_c00250{bottom:788.200020pt;}
.h2_c00250{height:44.470052pt;}
.h4_c00250{height:44.492188pt;}
.h3_c00250{height:52.343750pt;}
.h1_c00250{height:851.333333pt;}
.h0_c00250{height:851.533333pt;}
.w1_c00250{width:572.000000pt;}
.w0_c00250{width:572.133333pt;}
.x0_c00250{left:0.000000pt;}
.x3_c00250{left:79.666667pt;}
.x1_c00250{left:80.933333pt;}
.x4_c00250{left:86.733333pt;}
.x2_c00250{left:95.066667pt;}
.x6_c00250{left:116.133333pt;}
.x5_c00250{left:117.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc5c96bd6101ccc0f021c5d0.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00251;src:url('chunks/assets/font_254383fa86bd3a0a6040b79e.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00251{letter-spacing:0.000000px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00251{word-spacing:-15.000000px;}
.ws1_c00251{word-spacing:-12.750000px;}
.ws2_c00251{word-spacing:0.000000px;}
._10_c00251{margin-left:-14.640000px;}
._8_c00251{margin-left:-12.900000px;}
._17_c00251{margin-left:-10.149048px;}
._d_c00251{margin-left:-7.200000px;}
._14_c00251{margin-left:-6.084000px;}
._13_c00251{margin-left:-4.800000px;}
._f_c00251{margin-left:-3.360000px;}
._4_c00251{margin-left:-1.620000px;}
._1_c00251{width:1.680000px;}
._0_c00251{width:2.940000px;}
._5_c00251{width:4.620000px;}
._2_c00251{width:6.000000px;}
._3_c00251{width:7.920000px;}
._c_c00251{width:9.420000px;}
._b_c00251{width:11.040000px;}
._11_c00251{width:12.060000px;}
._a_c00251{width:13.620000px;}
._18_c00251{width:15.075171px;}
._9_c00251{width:16.860000px;}
._6_c00251{width:18.180000px;}
._7_c00251{width:20.280000px;}
._12_c00251{width:21.780000px;}
._e_c00251{width:23.280000px;}
._15_c00251{width:24.330000px;}
._16_c00251{width:27.030000px;}
.fc1_c00251{color:transparent;}
.fc0_c00251{color:rgb(35,31,32);}
.fs1_c00251{font-size:51.000000px;}
.fs0_c00251{font-size:60.000000px;}
.y0_c00251{bottom:0.000000px;}
.y27_c00251{bottom:64.425022px;}
.y26_c00251{bottom:110.550022px;}
.y25_c00251{bottom:125.325022px;}
.y24_c00251{bottom:141.150022px;}
.y23_c00251{bottom:155.925022px;}
.y22_c00251{bottom:171.375022px;}
.y21_c00251{bottom:186.525022px;}
.y20_c00251{bottom:201.975022px;}
.y1f_c00251{bottom:217.125022px;}
.y1e_c00251{bottom:232.575022px;}
.y1d_c00251{bottom:248.025022px;}
.y1c_c00251{bottom:263.175022px;}
.y1b_c00251{bottom:278.325022px;}
.y1a_c00251{bottom:293.775022px;}
.y19_c00251{bottom:308.925022px;}
.y18_c00251{bottom:324.375022px;}
.y17_c00251{bottom:380.550022px;}
.y16_c00251{bottom:399.975022px;}
.y15_c00251{bottom:419.775022px;}
.y14_c00251{bottom:457.950022px;}
.y12_c00251{bottom:514.725022px;}
.y11_c00251{bottom:534.225022px;}
.y10_c00251{bottom:553.725022px;}
.yf_c00251{bottom:572.775022px;}
.ye_c00251{bottom:592.575022px;}
.yd_c00251{bottom:611.625022px;}
.yc_c00251{bottom:631.125022px;}
.yb_c00251{bottom:650.925022px;}
.ya_c00251{bottom:669.975022px;}
.y9_c00251{bottom:689.775022px;}
.y8_c00251{bottom:708.825022px;}
.y7_c00251{bottom:728.325022px;}
.y6_c00251{bottom:747.750022px;}
.y5_c00251{bottom:767.175022px;}
.y4_c00251{bottom:786.600022px;}
.y3_c00251{bottom:806.025022px;}
.y2_c00251{bottom:825.150022px;}
.y1_c00251{bottom:844.575022px;}
.y13_c00251{bottom:886.725022px;}
.h3_c00251{height:50.028809px;}
.h4_c00251{height:50.053711px;}
.h2_c00251{height:58.886719px;}
.h1_c00251{height:957.750000px;}
.h0_c00251{height:957.975000px;}
.w0_c00251{width:641.850030px;}
.w1_c00251{width:642.000000px;}
.x0_c00251{left:0.000000px;}
.x2_c00251{left:80.250000px;}
.x1_c00251{left:81.375000px;}
.x7_c00251{left:87.825000px;}
.x3_c00251{left:97.200000px;}
.x5_c00251{left:119.850000px;}
.x6_c00251{left:121.650000px;}
.x4_c00251{left:144.750000px;}
.x8_c00251{left:531.375000px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls0_c00251{letter-spacing:0.000000pt;}
.ws0_c00251{word-spacing:-13.333333pt;}
.ws1_c00251{word-spacing:-11.333333pt;}
.ws2_c00251{word-spacing:0.000000pt;}
._10_c00251{margin-left:-13.013333pt;}
._8_c00251{margin-left:-11.466667pt;}
._17_c00251{margin-left:-9.021376pt;}
._d_c00251{margin-left:-6.400000pt;}
._14_c00251{margin-left:-5.408000pt;}
._13_c00251{margin-left:-4.266667pt;}
._f_c00251{margin-left:-2.986667pt;}
._4_c00251{margin-left:-1.440000pt;}
._1_c00251{width:1.493333pt;}
._0_c00251{width:2.613333pt;}
._5_c00251{width:4.106667pt;}
._2_c00251{width:5.333333pt;}
._3_c00251{width:7.040000pt;}
._c_c00251{width:8.373333pt;}
._b_c00251{width:9.813333pt;}
._11_c00251{width:10.720000pt;}
._a_c00251{width:12.106667pt;}
._18_c00251{width:13.400152pt;}
._9_c00251{width:14.986667pt;}
._6_c00251{width:16.160000pt;}
._7_c00251{width:18.026667pt;}
._12_c00251{width:19.360000pt;}
._e_c00251{width:20.693333pt;}
._15_c00251{width:21.626667pt;}
._16_c00251{width:24.026667pt;}
.fs1_c00251{font-size:45.333333pt;}
.fs0_c00251{font-size:53.333333pt;}
.y0_c00251{bottom:0.000000pt;}
.y27_c00251{bottom:57.266686pt;}
.y26_c00251{bottom:98.266686pt;}
.y25_c00251{bottom:111.400020pt;}
.y24_c00251{bottom:125.466686pt;}
.y23_c00251{bottom:138.600020pt;}
.y22_c00251{bottom:152.333353pt;}
.y21_c00251{bottom:165.800020pt;}
.y20_c00251{bottom:179.533353pt;}
.y1f_c00251{bottom:193.000020pt;}
.y1e_c00251{bottom:206.733353pt;}
.y1d_c00251{bottom:220.466686pt;}
.y1c_c00251{bottom:233.933353pt;}
.y1b_c00251{bottom:247.400020pt;}
.y1a_c00251{bottom:261.133353pt;}
.y19_c00251{bottom:274.600020pt;}
.y18_c00251{bottom:288.333353pt;}
.y17_c00251{bottom:338.266686pt;}
.y16_c00251{bottom:355.533353pt;}
.y15_c00251{bottom:373.133353pt;}
.y14_c00251{bottom:407.066686pt;}
.y12_c00251{bottom:457.533353pt;}
.y11_c00251{bottom:474.866686pt;}
.y10_c00251{bottom:492.200020pt;}
.yf_c00251{bottom:509.133353pt;}
.ye_c00251{bottom:526.733353pt;}
.yd_c00251{bottom:543.666686pt;}
.yc_c00251{bottom:561.000020pt;}
.yb_c00251{bottom:578.600020pt;}
.ya_c00251{bottom:595.533353pt;}
.y9_c00251{bottom:613.133353pt;}
.y8_c00251{bottom:630.066686pt;}
.y7_c00251{bottom:647.400020pt;}
.y6_c00251{bottom:664.666686pt;}
.y5_c00251{bottom:681.933353pt;}
.y4_c00251{bottom:699.200020pt;}
.y3_c00251{bottom:716.466686pt;}
.y2_c00251{bottom:733.466686pt;}
.y1_c00251{bottom:750.733353pt;}
.y13_c00251{bottom:788.200020pt;}
.h3_c00251{height:44.470052pt;}
.h4_c00251{height:44.492188pt;}
.h2_c00251{height:52.343750pt;}
.h1_c00251{height:851.333333pt;}
.h0_c00251{height:851.533333pt;}
.w0_c00251{width:570.533360pt;}
.w1_c00251{width:570.666667pt;}
.x0_c00251{left:0.000000pt;}
.x2_c00251{left:71.333333pt;}
.x1_c00251{left:72.333333pt;}
.x7_c00251{left:78.066667pt;}
.x3_c00251{left:86.400000pt;}
.x5_c00251{left:106.533333pt;}
.x6_c00251{left:108.133333pt;}
.x4_c00251{left:128.666667pt;}
.x8_c00251{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b282e5c333ee878a56b686f0.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00252;src:url('chunks/assets/font_37ef912e1635cd1b507bbe00.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00252{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.ls0_c00252{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00252{word-spacing:-15.000000px;}
.ws0_c00252{word-spacing:-12.750000px;}
.ws2_c00252{word-spacing:0.000000px;}
._b_c00252{margin-left:-13.200000px;}
._a_c00252{margin-left:-12.144537px;}
._e_c00252{margin-left:-7.791705px;}
._19_c00252{margin-left:-6.635721px;}
._7_c00252{margin-left:-5.220027px;}
._4_c00252{margin-left:-3.804243px;}
._0_c00252{margin-left:-2.622012px;}
._2_c00252{margin-left:-1.539027px;}
._3_c00252{width:1.062024px;}
._1_c00252{width:2.400009px;}
._5_c00252{width:4.073901px;}
._6_c00252{width:5.987838px;}
._8_c00252{width:7.049880px;}
._14_c00252{width:8.228898px;}
._9_c00252{width:9.660240px;}
._15_c00252{width:10.692822px;}
._f_c00252{width:11.726778px;}
._d_c00252{width:13.089165px;}
._16_c00252{width:14.094003px;}
._c_c00252{width:16.187829px;}
._12_c00252{width:17.225604px;}
._11_c00252{width:18.243270px;}
._10_c00252{width:19.511877px;}
._13_c00252{width:22.346601px;}
._17_c00252{width:25.206108px;}
._18_c00252{width:26.706099px;}
.fc1_c00252{color:transparent;}
.fc0_c00252{color:rgb(35,31,32);}
.fs0_c00252{font-size:51.000000px;}
.fs1_c00252{font-size:60.000000px;}
.y0_c00252{bottom:0.000000px;}
.y2e_c00252{bottom:64.800022px;}
.y2d_c00252{bottom:110.175022px;}
.y2c_c00252{bottom:125.625022px;}
.y2b_c00252{bottom:141.150022px;}
.y2a_c00252{bottom:156.225022px;}
.y29_c00252{bottom:171.750022px;}
.y28_c00252{bottom:186.525022px;}
.y27_c00252{bottom:201.900022px;}
.y26_c00252{bottom:217.425022px;}
.y25_c00252{bottom:232.950022px;}
.y24_c00252{bottom:248.025022px;}
.y23_c00252{bottom:263.175022px;}
.y22_c00252{bottom:278.325022px;}
.y21_c00252{bottom:293.775022px;}
.y20_c00252{bottom:309.225022px;}
.y1f_c00252{bottom:324.375022px;}
.y1e_c00252{bottom:339.525022px;}
.y1d_c00252{bottom:354.975022px;}
.y1c_c00252{bottom:370.125022px;}
.y1b_c00252{bottom:385.950022px;}
.y1a_c00252{bottom:401.025022px;}
.y19_c00252{bottom:416.550022px;}
.y18_c00252{bottom:431.625022px;}
.y17_c00252{bottom:447.150022px;}
.y16_c00252{bottom:462.225022px;}
.y15_c00252{bottom:477.750022px;}
.y14_c00252{bottom:492.525022px;}
.y13_c00252{bottom:508.350022px;}
.y12_c00252{bottom:523.125022px;}
.y11_c00252{bottom:538.575022px;}
.y10_c00252{bottom:553.725022px;}
.yf_c00252{bottom:569.550022px;}
.ye_c00252{bottom:611.625022px;}
.yd_c00252{bottom:631.125022px;}
.yc_c00252{bottom:650.925022px;}
.yb_c00252{bottom:670.350022px;}
.ya_c00252{bottom:689.775022px;}
.y9_c00252{bottom:708.825022px;}
.y8_c00252{bottom:728.625022px;}
.y7_c00252{bottom:748.125022px;}
.y6_c00252{bottom:767.550022px;}
.y5_c00252{bottom:786.600022px;}
.y4_c00252{bottom:805.725022px;}
.y3_c00252{bottom:825.525022px;}
.y2_c00252{bottom:844.950022px;}
.y1_c00252{bottom:886.725022px;}
.h2_c00252{height:50.028809px;}
.h4_c00252{height:50.053711px;}
.h5_c00252{height:50.353711px;}
.h3_c00252{height:58.886719px;}
.h1_c00252{height:957.750000px;}
.h0_c00252{height:957.975000px;}
.w1_c00252{width:643.500000px;}
.w0_c00252{width:643.650000px;}
.x0_c00252{left:0.000000px;}
.x1_c00252{left:91.050000px;}
.x2_c00252{left:97.575000px;}
.x4_c00252{left:130.650000px;}
.x3_c00252{left:131.775000px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls0_c00252{letter-spacing:0.000000pt;}
.ws1_c00252{word-spacing:-13.333333pt;}
.ws0_c00252{word-spacing:-11.333333pt;}
.ws2_c00252{word-spacing:0.000000pt;}
._b_c00252{margin-left:-11.733333pt;}
._a_c00252{margin-left:-10.795144pt;}
._e_c00252{margin-left:-6.925960pt;}
._19_c00252{margin-left:-5.898419pt;}
._7_c00252{margin-left:-4.640024pt;}
._4_c00252{margin-left:-3.381549pt;}
._0_c00252{margin-left:-2.330677pt;}
._2_c00252{margin-left:-1.368024pt;}
._3_c00252{width:0.944021pt;}
._1_c00252{width:2.133341pt;}
._5_c00252{width:3.621245pt;}
._6_c00252{width:5.322523pt;}
._8_c00252{width:6.266560pt;}
._14_c00252{width:7.314576pt;}
._9_c00252{width:8.586880pt;}
._15_c00252{width:9.504731pt;}
._f_c00252{width:10.423803pt;}
._d_c00252{width:11.634813pt;}
._16_c00252{width:12.528003pt;}
._c_c00252{width:14.389181pt;}
._12_c00252{width:15.311648pt;}
._11_c00252{width:16.216240pt;}
._10_c00252{width:17.343891pt;}
._13_c00252{width:19.863645pt;}
._17_c00252{width:22.405429pt;}
._18_c00252{width:23.738755pt;}
.fs0_c00252{font-size:45.333333pt;}
.fs1_c00252{font-size:53.333333pt;}
.y0_c00252{bottom:0.000000pt;}
.y2e_c00252{bottom:57.600020pt;}
.y2d_c00252{bottom:97.933353pt;}
.y2c_c00252{bottom:111.666686pt;}
.y2b_c00252{bottom:125.466686pt;}
.y2a_c00252{bottom:138.866686pt;}
.y29_c00252{bottom:152.666686pt;}
.y28_c00252{bottom:165.800020pt;}
.y27_c00252{bottom:179.466686pt;}
.y26_c00252{bottom:193.266686pt;}
.y25_c00252{bottom:207.066686pt;}
.y24_c00252{bottom:220.466686pt;}
.y23_c00252{bottom:233.933353pt;}
.y22_c00252{bottom:247.400020pt;}
.y21_c00252{bottom:261.133353pt;}
.y20_c00252{bottom:274.866686pt;}
.y1f_c00252{bottom:288.333353pt;}
.y1e_c00252{bottom:301.800020pt;}
.y1d_c00252{bottom:315.533353pt;}
.y1c_c00252{bottom:329.000020pt;}
.y1b_c00252{bottom:343.066686pt;}
.y1a_c00252{bottom:356.466686pt;}
.y19_c00252{bottom:370.266686pt;}
.y18_c00252{bottom:383.666686pt;}
.y17_c00252{bottom:397.466686pt;}
.y16_c00252{bottom:410.866686pt;}
.y15_c00252{bottom:424.666686pt;}
.y14_c00252{bottom:437.800020pt;}
.y13_c00252{bottom:451.866686pt;}
.y12_c00252{bottom:465.000020pt;}
.y11_c00252{bottom:478.733353pt;}
.y10_c00252{bottom:492.200020pt;}
.yf_c00252{bottom:506.266686pt;}
.ye_c00252{bottom:543.666686pt;}
.yd_c00252{bottom:561.000020pt;}
.yc_c00252{bottom:578.600020pt;}
.yb_c00252{bottom:595.866686pt;}
.ya_c00252{bottom:613.133353pt;}
.y9_c00252{bottom:630.066686pt;}
.y8_c00252{bottom:647.666686pt;}
.y7_c00252{bottom:665.000020pt;}
.y6_c00252{bottom:682.266686pt;}
.y5_c00252{bottom:699.200020pt;}
.y4_c00252{bottom:716.200020pt;}
.y3_c00252{bottom:733.800020pt;}
.y2_c00252{bottom:751.066686pt;}
.y1_c00252{bottom:788.200020pt;}
.h2_c00252{height:44.470052pt;}
.h4_c00252{height:44.492188pt;}
.h5_c00252{height:44.758854pt;}
.h3_c00252{height:52.343750pt;}
.h1_c00252{height:851.333333pt;}
.h0_c00252{height:851.533333pt;}
.w1_c00252{width:572.000000pt;}
.w0_c00252{width:572.133333pt;}
.x0_c00252{left:0.000000pt;}
.x1_c00252{left:80.933333pt;}
.x2_c00252{left:86.733333pt;}
.x4_c00252{left:116.133333pt;}
.x3_c00252{left:117.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_391d417d6e233c8db28c3ce3.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00253;src:url('chunks/assets/font_99d472a9daed803d8ddca68f.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.ls0_c00253{letter-spacing:0.000000px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00253{word-spacing:-15.000000px;}
.ws0_c00253{word-spacing:-12.750000px;}
.ws2_c00253{word-spacing:0.000000px;}
._10_c00253{margin-left:-13.860000px;}
._f_c00253{margin-left:-12.240000px;}
._2_c00253{margin-left:-11.220000px;}
._7_c00253{margin-left:-9.360000px;}
._d_c00253{margin-left:-7.200000px;}
._3_c00253{margin-left:-5.100000px;}
._13_c00253{margin-left:-3.900000px;}
._c_c00253{margin-left:-2.460000px;}
._1_c00253{margin-left:-1.440000px;}
._0_c00253{width:1.260000px;}
._6_c00253{width:2.280000px;}
._8_c00253{width:3.480000px;}
._a_c00253{width:5.280000px;}
._b_c00253{width:6.840000px;}
._9_c00253{width:8.280000px;}
._e_c00253{width:9.600000px;}
._12_c00253{width:10.680000px;}
._11_c00253{width:11.700000px;}
._5_c00253{width:12.720000px;}
._4_c00253{width:13.800000px;}
._1b_c00253{width:14.843994px;}
._18_c00253{width:16.200000px;}
._17_c00253{width:17.640000px;}
._14_c00253{width:18.960000px;}
._16_c00253{width:20.220000px;}
._15_c00253{width:21.240000px;}
._1c_c00253{width:23.670078px;}
._19_c00253{width:25.230000px;}
._1d_c00253{width:26.430030px;}
._1a_c00253{width:27.690000px;}
.fc1_c00253{color:transparent;}
.fc0_c00253{color:rgb(35,31,32);}
.fs1_c00253{font-size:51.000000px;}
.fs0_c00253{font-size:60.000000px;}
.y0_c00253{bottom:0.000000px;}
.y2b_c00253{bottom:64.425022px;}
.y2a_c00253{bottom:110.175022px;}
.y29_c00253{bottom:125.625022px;}
.y28_c00253{bottom:141.150022px;}
.y27_c00253{bottom:156.225022px;}
.y26_c00253{bottom:171.375022px;}
.y25_c00253{bottom:186.525022px;}
.y24_c00253{bottom:202.350022px;}
.y23_c00253{bottom:217.125022px;}
.y22_c00253{bottom:232.950022px;}
.y21_c00253{bottom:247.725022px;}
.y20_c00253{bottom:263.175022px;}
.y1f_c00253{bottom:278.625022px;}
.y1e_c00253{bottom:293.775022px;}
.y1d_c00253{bottom:309.225022px;}
.y1c_c00253{bottom:324.375022px;}
.y1b_c00253{bottom:339.525022px;}
.y1a_c00253{bottom:354.975022px;}
.y19_c00253{bottom:370.425022px;}
.y18_c00253{bottom:385.575022px;}
.y17_c00253{bottom:401.025022px;}
.y16_c00253{bottom:416.550022px;}
.y15_c00253{bottom:431.325022px;}
.y14_c00253{bottom:447.150022px;}
.y12_c00253{bottom:514.800022px;}
.y11_c00253{bottom:534.225022px;}
.y10_c00253{bottom:553.350022px;}
.yf_c00253{bottom:573.150022px;}
.ye_c00253{bottom:592.575022px;}
.yd_c00253{bottom:611.700022px;}
.yc_c00253{bottom:631.125022px;}
.yb_c00253{bottom:650.550022px;}
.ya_c00253{bottom:669.975022px;}
.y9_c00253{bottom:689.775022px;}
.y8_c00253{bottom:709.200022px;}
.y7_c00253{bottom:728.625022px;}
.y6_c00253{bottom:748.125022px;}
.y5_c00253{bottom:767.550022px;}
.y4_c00253{bottom:786.600022px;}
.y3_c00253{bottom:805.725022px;}
.y2_c00253{bottom:825.150022px;}
.y1_c00253{bottom:844.575022px;}
.y13_c00253{bottom:886.725022px;}
.h3_c00253{height:50.028809px;}
.h4_c00253{height:50.053711px;}
.h2_c00253{height:58.886719px;}
.h1_c00253{height:957.750000px;}
.h0_c00253{height:957.975000px;}
.w0_c00253{width:641.850030px;}
.w1_c00253{width:642.000000px;}
.x0_c00253{left:0.000000px;}
.x2_c00253{left:80.250000px;}
.x1_c00253{left:81.375000px;}
.x6_c00253{left:87.825000px;}
.x3_c00253{left:97.200000px;}
.x5_c00253{left:120.975000px;}
.x4_c00253{left:144.750000px;}
.x7_c00253{left:531.375000px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls0_c00253{letter-spacing:0.000000pt;}
.ws1_c00253{word-spacing:-13.333333pt;}
.ws0_c00253{word-spacing:-11.333333pt;}
.ws2_c00253{word-spacing:0.000000pt;}
._10_c00253{margin-left:-12.320000pt;}
._f_c00253{margin-left:-10.880000pt;}
._2_c00253{margin-left:-9.973333pt;}
._7_c00253{margin-left:-8.320000pt;}
._d_c00253{margin-left:-6.400000pt;}
._3_c00253{margin-left:-4.533333pt;}
._13_c00253{margin-left:-3.466667pt;}
._c_c00253{margin-left:-2.186667pt;}
._1_c00253{margin-left:-1.280000pt;}
._0_c00253{width:1.120000pt;}
._6_c00253{width:2.026667pt;}
._8_c00253{width:3.093333pt;}
._a_c00253{width:4.693333pt;}
._b_c00253{width:6.080000pt;}
._9_c00253{width:7.360000pt;}
._e_c00253{width:8.533333pt;}
._12_c00253{width:9.493333pt;}
._11_c00253{width:10.400000pt;}
._5_c00253{width:11.306667pt;}
._4_c00253{width:12.266667pt;}
._1b_c00253{width:13.194661pt;}
._18_c00253{width:14.400000pt;}
._17_c00253{width:15.680000pt;}
._14_c00253{width:16.853333pt;}
._16_c00253{width:17.973333pt;}
._15_c00253{width:18.880000pt;}
._1c_c00253{width:21.040069pt;}
._19_c00253{width:22.426667pt;}
._1d_c00253{width:23.493360pt;}
._1a_c00253{width:24.613333pt;}
.fs1_c00253{font-size:45.333333pt;}
.fs0_c00253{font-size:53.333333pt;}
.y0_c00253{bottom:0.000000pt;}
.y2b_c00253{bottom:57.266686pt;}
.y2a_c00253{bottom:97.933353pt;}
.y29_c00253{bottom:111.666686pt;}
.y28_c00253{bottom:125.466686pt;}
.y27_c00253{bottom:138.866686pt;}
.y26_c00253{bottom:152.333353pt;}
.y25_c00253{bottom:165.800020pt;}
.y24_c00253{bottom:179.866686pt;}
.y23_c00253{bottom:193.000020pt;}
.y22_c00253{bottom:207.066686pt;}
.y21_c00253{bottom:220.200020pt;}
.y20_c00253{bottom:233.933353pt;}
.y1f_c00253{bottom:247.666686pt;}
.y1e_c00253{bottom:261.133353pt;}
.y1d_c00253{bottom:274.866686pt;}
.y1c_c00253{bottom:288.333353pt;}
.y1b_c00253{bottom:301.800020pt;}
.y1a_c00253{bottom:315.533353pt;}
.y19_c00253{bottom:329.266686pt;}
.y18_c00253{bottom:342.733353pt;}
.y17_c00253{bottom:356.466686pt;}
.y16_c00253{bottom:370.266686pt;}
.y15_c00253{bottom:383.400020pt;}
.y14_c00253{bottom:397.466686pt;}
.y12_c00253{bottom:457.600020pt;}
.y11_c00253{bottom:474.866686pt;}
.y10_c00253{bottom:491.866686pt;}
.yf_c00253{bottom:509.466686pt;}
.ye_c00253{bottom:526.733353pt;}
.yd_c00253{bottom:543.733353pt;}
.yc_c00253{bottom:561.000020pt;}
.yb_c00253{bottom:578.266686pt;}
.ya_c00253{bottom:595.533353pt;}
.y9_c00253{bottom:613.133353pt;}
.y8_c00253{bottom:630.400020pt;}
.y7_c00253{bottom:647.666686pt;}
.y6_c00253{bottom:665.000020pt;}
.y5_c00253{bottom:682.266686pt;}
.y4_c00253{bottom:699.200020pt;}
.y3_c00253{bottom:716.200020pt;}
.y2_c00253{bottom:733.466686pt;}
.y1_c00253{bottom:750.733353pt;}
.y13_c00253{bottom:788.200020pt;}
.h3_c00253{height:44.470052pt;}
.h4_c00253{height:44.492188pt;}
.h2_c00253{height:52.343750pt;}
.h1_c00253{height:851.333333pt;}
.h0_c00253{height:851.533333pt;}
.w0_c00253{width:570.533360pt;}
.w1_c00253{width:570.666667pt;}
.x0_c00253{left:0.000000pt;}
.x2_c00253{left:71.333333pt;}
.x1_c00253{left:72.333333pt;}
.x6_c00253{left:78.066667pt;}
.x3_c00253{left:86.400000pt;}
.x5_c00253{left:107.533333pt;}
.x4_c00253{left:128.666667pt;}
.x7_c00253{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd34f1e7085ab47b5857f1f3.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00254;src:url('chunks/assets/font_f5fa008c6b4158657bb8b440.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.ls0_c00254{letter-spacing:0.000000px;}
.sc__c00254{text-shadow:none;}
.sc0_c00254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00254{-webkit-text-stroke:0px transparent;}
.sc0_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00254{word-spacing:-15.000000px;}
.ws1_c00254{word-spacing:-12.750000px;}
.ws2_c00254{word-spacing:0.000000px;}
._4_c00254{margin-left:-11.700000px;}
._9_c00254{margin-left:-10.320000px;}
._7_c00254{margin-left:-7.920000px;}
._15_c00254{margin-left:-5.903904px;}
._17_c00254{margin-left:-4.727961px;}
._f_c00254{margin-left:-3.696027px;}
._e_c00254{margin-left:-2.622012px;}
._3_c00254{margin-left:-1.620000px;}
._0_c00254{width:1.080000px;}
._5_c00254{width:2.940000px;}
._b_c00254{width:4.080000px;}
._d_c00254{width:5.220000px;}
._6_c00254{width:6.720000px;}
._2_c00254{width:7.860000px;}
._1_c00254{width:9.600000px;}
._a_c00254{width:10.740000px;}
._8_c00254{width:12.300000px;}
._c_c00254{width:13.800000px;}
._14_c00254{width:14.867847px;}
._11_c00254{width:16.175976px;}
._10_c00254{width:17.424024px;}
._12_c00254{width:23.712012px;}
._13_c00254{width:24.792054px;}
._16_c00254{width:26.412003px;}
.fc1_c00254{color:transparent;}
.fc0_c00254{color:rgb(35,31,32);}
.fs1_c00254{font-size:51.000000px;}
.fs0_c00254{font-size:60.000000px;}
.y0_c00254{bottom:0.000000px;}
.y24_c00254{bottom:64.800022px;}
.y23_c00254{bottom:110.550022px;}
.y22_c00254{bottom:125.325022px;}
.y21_c00254{bottom:141.150022px;}
.y20_c00254{bottom:156.225022px;}
.y1f_c00254{bottom:171.375022px;}
.y1e_c00254{bottom:186.825022px;}
.y1d_c00254{bottom:202.350022px;}
.y1c_c00254{bottom:217.125022px;}
.y1b_c00254{bottom:232.575022px;}
.y1a_c00254{bottom:247.725022px;}
.y19_c00254{bottom:263.175022px;}
.y18_c00254{bottom:278.325022px;}
.y17_c00254{bottom:293.775022px;}
.y16_c00254{bottom:308.925022px;}
.y15_c00254{bottom:351.750022px;}
.y14_c00254{bottom:371.175022px;}
.y13_c00254{bottom:390.600022px;}
.y12_c00254{bottom:431.325022px;}
.y11_c00254{bottom:491.400022px;}
.y10_c00254{bottom:510.900022px;}
.yf_c00254{bottom:530.325022px;}
.ye_c00254{bottom:549.750022px;}
.yd_c00254{bottom:569.175022px;}
.yc_c00254{bottom:588.525022px;}
.yb_c00254{bottom:608.025022px;}
.ya_c00254{bottom:627.525022px;}
.y9_c00254{bottom:646.950022px;}
.y8_c00254{bottom:688.350022px;}
.y6_c00254{bottom:747.750022px;}
.y5_c00254{bottom:767.550022px;}
.y4_c00254{bottom:786.225022px;}
.y3_c00254{bottom:805.725022px;}
.y2_c00254{bottom:825.150022px;}
.y1_c00254{bottom:844.575022px;}
.y7_c00254{bottom:886.725022px;}
.h3_c00254{height:50.028809px;}
.h4_c00254{height:50.053711px;}
.h2_c00254{height:58.886719px;}
.h1_c00254{height:957.750000px;}
.h0_c00254{height:957.975000px;}
.w1_c00254{width:643.500000px;}
.w0_c00254{width:643.650000px;}
.x0_c00254{left:0.000000px;}
.x1_c00254{left:90.375000px;}
.x2_c00254{left:91.425000px;}
.x3_c00254{left:97.575000px;}
.x4_c00254{left:131.025000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls0_c00254{letter-spacing:0.000000pt;}
.ws0_c00254{word-spacing:-13.333333pt;}
.ws1_c00254{word-spacing:-11.333333pt;}
.ws2_c00254{word-spacing:0.000000pt;}
._4_c00254{margin-left:-10.400000pt;}
._9_c00254{margin-left:-9.173333pt;}
._7_c00254{margin-left:-7.040000pt;}
._15_c00254{margin-left:-5.247915pt;}
._17_c00254{margin-left:-4.202632pt;}
._f_c00254{margin-left:-3.285357pt;}
._e_c00254{margin-left:-2.330677pt;}
._3_c00254{margin-left:-1.440000pt;}
._0_c00254{width:0.960000pt;}
._5_c00254{width:2.613333pt;}
._b_c00254{width:3.626667pt;}
._d_c00254{width:4.640000pt;}
._6_c00254{width:5.973333pt;}
._2_c00254{width:6.986667pt;}
._1_c00254{width:8.533333pt;}
._a_c00254{width:9.546667pt;}
._8_c00254{width:10.933333pt;}
._c_c00254{width:12.266667pt;}
._14_c00254{width:13.215864pt;}
._11_c00254{width:14.378645pt;}
._10_c00254{width:15.488021pt;}
._12_c00254{width:21.077344pt;}
._13_c00254{width:22.037381pt;}
._16_c00254{width:23.477336pt;}
.fs1_c00254{font-size:45.333333pt;}
.fs0_c00254{font-size:53.333333pt;}
.y0_c00254{bottom:0.000000pt;}
.y24_c00254{bottom:57.600020pt;}
.y23_c00254{bottom:98.266686pt;}
.y22_c00254{bottom:111.400020pt;}
.y21_c00254{bottom:125.466686pt;}
.y20_c00254{bottom:138.866686pt;}
.y1f_c00254{bottom:152.333353pt;}
.y1e_c00254{bottom:166.066686pt;}
.y1d_c00254{bottom:179.866686pt;}
.y1c_c00254{bottom:193.000020pt;}
.y1b_c00254{bottom:206.733353pt;}
.y1a_c00254{bottom:220.200020pt;}
.y19_c00254{bottom:233.933353pt;}
.y18_c00254{bottom:247.400020pt;}
.y17_c00254{bottom:261.133353pt;}
.y16_c00254{bottom:274.600020pt;}
.y15_c00254{bottom:312.666686pt;}
.y14_c00254{bottom:329.933353pt;}
.y13_c00254{bottom:347.200020pt;}
.y12_c00254{bottom:383.400020pt;}
.y11_c00254{bottom:436.800020pt;}
.y10_c00254{bottom:454.133353pt;}
.yf_c00254{bottom:471.400020pt;}
.ye_c00254{bottom:488.666686pt;}
.yd_c00254{bottom:505.933353pt;}
.yc_c00254{bottom:523.133353pt;}
.yb_c00254{bottom:540.466686pt;}
.ya_c00254{bottom:557.800020pt;}
.y9_c00254{bottom:575.066686pt;}
.y8_c00254{bottom:611.866686pt;}
.y6_c00254{bottom:664.666686pt;}
.y5_c00254{bottom:682.266686pt;}
.y4_c00254{bottom:698.866686pt;}
.y3_c00254{bottom:716.200020pt;}
.y2_c00254{bottom:733.466686pt;}
.y1_c00254{bottom:750.733353pt;}
.y7_c00254{bottom:788.200020pt;}
.h3_c00254{height:44.470052pt;}
.h4_c00254{height:44.492188pt;}
.h2_c00254{height:52.343750pt;}
.h1_c00254{height:851.333333pt;}
.h0_c00254{height:851.533333pt;}
.w1_c00254{width:572.000000pt;}
.w0_c00254{width:572.133333pt;}
.x0_c00254{left:0.000000pt;}
.x1_c00254{left:80.333333pt;}
.x2_c00254{left:81.266667pt;}
.x3_c00254{left:86.733333pt;}
.x4_c00254{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_18aa2c21f31603e4b16ddae6.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00255;src:url('chunks/assets/font_e3c61128c0bf381a37ff0121.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.ls1_c00255{letter-spacing:0.000000px;}
.ls0_c00255{letter-spacing:0.899997px;}
.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:-15.000000px;}
.ws2_c00255{word-spacing:-13.649997px;}
.ws1_c00255{word-spacing:-12.750000px;}
.ws3_c00255{word-spacing:0.000000px;}
._f_c00255{margin-left:-15.120000px;}
._15_c00255{margin-left:-14.100000px;}
._c_c00255{margin-left:-13.080000px;}
._8_c00255{margin-left:-11.220000px;}
._14_c00255{margin-left:-10.080000px;}
._13_c00255{margin-left:-8.640000px;}
._12_c00255{margin-left:-7.200000px;}
._19_c00255{margin-left:-5.270991px;}
._1b_c00255{margin-left:-3.872976px;}
._2_c00255{margin-left:-2.460000px;}
._4_c00255{margin-left:-1.380000px;}
._0_c00255{width:1.200000px;}
._1_c00255{width:3.000000px;}
._b_c00255{width:4.800000px;}
._a_c00255{width:6.300000px;}
._3_c00255{width:7.500000px;}
._e_c00255{width:8.520000px;}
._11_c00255{width:9.720000px;}
._6_c00255{width:10.860000px;}
._5_c00255{width:12.060000px;}
._9_c00255{width:13.860000px;}
._1a_c00255{width:15.071979px;}
._10_c00255{width:16.260000px;}
._7_c00255{width:17.400000px;}
._d_c00255{width:19.260000px;}
._16_c00255{width:21.960000px;}
._17_c00255{width:23.160000px;}
._18_c00255{width:25.620000px;}
._1c_c00255{width:28.889979px;}
.fc1_c00255{color:transparent;}
.fc0_c00255{color:rgb(35,31,32);}
.fs1_c00255{font-size:51.000000px;}
.fs0_c00255{font-size:60.000000px;}
.y0_c00255{bottom:0.000000px;}
.y2b_c00255{bottom:64.425022px;}
.y2a_c00255{bottom:110.175022px;}
.y29_c00255{bottom:125.625022px;}
.y28_c00255{bottom:140.775022px;}
.y27_c00255{bottom:155.925022px;}
.y26_c00255{bottom:172.275022px;}
.y25_c00255{bottom:186.525022px;}
.y24_c00255{bottom:201.975022px;}
.y23_c00255{bottom:217.125022px;}
.y22_c00255{bottom:232.575022px;}
.y21_c00255{bottom:248.025022px;}
.y20_c00255{bottom:263.175022px;}
.y1f_c00255{bottom:278.325022px;}
.y1e_c00255{bottom:294.150022px;}
.y1d_c00255{bottom:309.225022px;}
.y1c_c00255{bottom:324.750022px;}
.y1b_c00255{bottom:339.525022px;}
.y1a_c00255{bottom:354.975022px;}
.y19_c00255{bottom:370.125022px;}
.y18_c00255{bottom:385.950022px;}
.y17_c00255{bottom:400.725022px;}
.y16_c00255{bottom:416.550022px;}
.y14_c00255{bottom:475.950022px;}
.y13_c00255{bottom:495.375022px;}
.y12_c00255{bottom:514.500022px;}
.y11_c00255{bottom:533.925022px;}
.y10_c00255{bottom:553.350022px;}
.yf_c00255{bottom:572.775022px;}
.ye_c00255{bottom:592.575022px;}
.yd_c00255{bottom:612.000022px;}
.yc_c00255{bottom:631.125022px;}
.yb_c00255{bottom:650.925022px;}
.ya_c00255{bottom:670.350022px;}
.y9_c00255{bottom:689.775022px;}
.y8_c00255{bottom:709.200022px;}
.y7_c00255{bottom:728.625022px;}
.y6_c00255{bottom:747.750022px;}
.y5_c00255{bottom:767.550022px;}
.y4_c00255{bottom:786.600022px;}
.y3_c00255{bottom:806.025022px;}
.y2_c00255{bottom:825.150022px;}
.y1_c00255{bottom:844.950022px;}
.y15_c00255{bottom:886.725022px;}
.h3_c00255{height:50.028809px;}
.h4_c00255{height:50.053711px;}
.h2_c00255{height:58.886719px;}
.h1_c00255{height:957.750000px;}
.h0_c00255{height:957.975000px;}
.w0_c00255{width:641.850030px;}
.w1_c00255{width:642.000000px;}
.x0_c00255{left:0.000000px;}
.x1_c00255{left:80.250000px;}
.x2_c00255{left:81.375000px;}
.x5_c00255{left:87.825000px;}
.x3_c00255{left:97.200000px;}
.x6_c00255{left:120.975000px;}
.x4_c00255{left:144.750000px;}
.x7_c00255{left:531.375000px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls1_c00255{letter-spacing:0.000000pt;}
.ls0_c00255{letter-spacing:0.799997pt;}
.ws0_c00255{word-spacing:-13.333333pt;}
.ws2_c00255{word-spacing:-12.133331pt;}
.ws1_c00255{word-spacing:-11.333333pt;}
.ws3_c00255{word-spacing:0.000000pt;}
._f_c00255{margin-left:-13.440000pt;}
._15_c00255{margin-left:-12.533333pt;}
._c_c00255{margin-left:-11.626667pt;}
._8_c00255{margin-left:-9.973333pt;}
._14_c00255{margin-left:-8.960000pt;}
._13_c00255{margin-left:-7.680000pt;}
._12_c00255{margin-left:-6.400000pt;}
._19_c00255{margin-left:-4.685325pt;}
._1b_c00255{margin-left:-3.442645pt;}
._2_c00255{margin-left:-2.186667pt;}
._4_c00255{margin-left:-1.226667pt;}
._0_c00255{width:1.066667pt;}
._1_c00255{width:2.666667pt;}
._b_c00255{width:4.266667pt;}
._a_c00255{width:5.600000pt;}
._3_c00255{width:6.666667pt;}
._e_c00255{width:7.573333pt;}
._11_c00255{width:8.640000pt;}
._6_c00255{width:9.653333pt;}
._5_c00255{width:10.720000pt;}
._9_c00255{width:12.320000pt;}
._1a_c00255{width:13.397315pt;}
._10_c00255{width:14.453333pt;}
._7_c00255{width:15.466667pt;}
._d_c00255{width:17.120000pt;}
._16_c00255{width:19.520000pt;}
._17_c00255{width:20.586667pt;}
._18_c00255{width:22.773333pt;}
._1c_c00255{width:25.679981pt;}
.fs1_c00255{font-size:45.333333pt;}
.fs0_c00255{font-size:53.333333pt;}
.y0_c00255{bottom:0.000000pt;}
.y2b_c00255{bottom:57.266686pt;}
.y2a_c00255{bottom:97.933353pt;}
.y29_c00255{bottom:111.666686pt;}
.y28_c00255{bottom:125.133353pt;}
.y27_c00255{bottom:138.600020pt;}
.y26_c00255{bottom:153.133353pt;}
.y25_c00255{bottom:165.800020pt;}
.y24_c00255{bottom:179.533353pt;}
.y23_c00255{bottom:193.000020pt;}
.y22_c00255{bottom:206.733353pt;}
.y21_c00255{bottom:220.466686pt;}
.y20_c00255{bottom:233.933353pt;}
.y1f_c00255{bottom:247.400020pt;}
.y1e_c00255{bottom:261.466686pt;}
.y1d_c00255{bottom:274.866686pt;}
.y1c_c00255{bottom:288.666686pt;}
.y1b_c00255{bottom:301.800020pt;}
.y1a_c00255{bottom:315.533353pt;}
.y19_c00255{bottom:329.000020pt;}
.y18_c00255{bottom:343.066686pt;}
.y17_c00255{bottom:356.200020pt;}
.y16_c00255{bottom:370.266686pt;}
.y14_c00255{bottom:423.066686pt;}
.y13_c00255{bottom:440.333353pt;}
.y12_c00255{bottom:457.333353pt;}
.y11_c00255{bottom:474.600020pt;}
.y10_c00255{bottom:491.866686pt;}
.yf_c00255{bottom:509.133353pt;}
.ye_c00255{bottom:526.733353pt;}
.yd_c00255{bottom:544.000020pt;}
.yc_c00255{bottom:561.000020pt;}
.yb_c00255{bottom:578.600020pt;}
.ya_c00255{bottom:595.866686pt;}
.y9_c00255{bottom:613.133353pt;}
.y8_c00255{bottom:630.400020pt;}
.y7_c00255{bottom:647.666686pt;}
.y6_c00255{bottom:664.666686pt;}
.y5_c00255{bottom:682.266686pt;}
.y4_c00255{bottom:699.200020pt;}
.y3_c00255{bottom:716.466686pt;}
.y2_c00255{bottom:733.466686pt;}
.y1_c00255{bottom:751.066686pt;}
.y15_c00255{bottom:788.200020pt;}
.h3_c00255{height:44.470052pt;}
.h4_c00255{height:44.492188pt;}
.h2_c00255{height:52.343750pt;}
.h1_c00255{height:851.333333pt;}
.h0_c00255{height:851.533333pt;}
.w0_c00255{width:570.533360pt;}
.w1_c00255{width:570.666667pt;}
.x0_c00255{left:0.000000pt;}
.x1_c00255{left:71.333333pt;}
.x2_c00255{left:72.333333pt;}
.x5_c00255{left:78.066667pt;}
.x3_c00255{left:86.400000pt;}
.x6_c00255{left:107.533333pt;}
.x4_c00255{left:128.666667pt;}
.x7_c00255{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d7d070475a735fef82de48a.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00256;src:url('chunks/assets/font_e88b95e317e48626fb97b5ad.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00256{letter-spacing:0.000000px;}
.sc__c00256{text-shadow:none;}
.sc0_c00256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00256{-webkit-text-stroke:0px transparent;}
.sc0_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00256{word-spacing:-15.000000px;}
.ws0_c00256{word-spacing:-12.750000px;}
.ws2_c00256{word-spacing:0.000000px;}
._a_c00256{margin-left:-13.800000px;}
._b_c00256{margin-left:-12.300000px;}
._16_c00256{margin-left:-10.313775px;}
._12_c00256{margin-left:-7.260000px;}
._14_c00256{margin-left:-5.961180px;}
._e_c00256{margin-left:-4.620000px;}
._0_c00256{margin-left:-3.120000px;}
._15_c00256{margin-left:-2.088090px;}
._1_c00256{margin-left:-1.080000px;}
._3_c00256{width:1.980000px;}
._4_c00256{width:3.060000px;}
._2_c00256{width:4.740000px;}
._6_c00256{width:6.240000px;}
._5_c00256{width:7.620000px;}
._7_c00256{width:9.180000px;}
._9_c00256{width:11.040000px;}
._8_c00256{width:12.180000px;}
._c_c00256{width:13.560000px;}
._d_c00256{width:17.220000px;}
._11_c00256{width:18.840000px;}
._f_c00256{width:19.860000px;}
._10_c00256{width:21.060000px;}
._13_c00256{width:24.210000px;}
.fc1_c00256{color:transparent;}
.fc0_c00256{color:rgb(35,31,32);}
.fs1_c00256{font-size:51.000000px;}
.fs0_c00256{font-size:60.000000px;}
.y0_c00256{bottom:0.000000px;}
.y2a_c00256{bottom:64.425022px;}
.y29_c00256{bottom:110.175022px;}
.y28_c00256{bottom:125.325022px;}
.y27_c00256{bottom:140.775022px;}
.y26_c00256{bottom:156.225022px;}
.y25_c00256{bottom:171.375022px;}
.y24_c00256{bottom:186.825022px;}
.y23_c00256{bottom:202.350022px;}
.y22_c00256{bottom:217.425022px;}
.y21_c00256{bottom:232.575022px;}
.y20_c00256{bottom:247.725022px;}
.y1f_c00256{bottom:263.175022px;}
.y1e_c00256{bottom:278.325022px;}
.y1d_c00256{bottom:293.775022px;}
.y1c_c00256{bottom:309.225022px;}
.y1b_c00256{bottom:324.750022px;}
.y1a_c00256{bottom:339.525022px;}
.y19_c00256{bottom:354.975022px;}
.y17_c00256{bottom:417.600022px;}
.y16_c00256{bottom:437.025022px;}
.y15_c00256{bottom:456.150022px;}
.y14_c00256{bottom:475.575022px;}
.y13_c00256{bottom:495.000022px;}
.y12_c00256{bottom:514.800022px;}
.y11_c00256{bottom:533.925022px;}
.y10_c00256{bottom:553.350022px;}
.yf_c00256{bottom:572.775022px;}
.ye_c00256{bottom:592.575022px;}
.yd_c00256{bottom:612.000022px;}
.yc_c00256{bottom:631.125022px;}
.yb_c00256{bottom:650.550022px;}
.ya_c00256{bottom:670.350022px;}
.y9_c00256{bottom:689.400022px;}
.y8_c00256{bottom:708.825022px;}
.y7_c00256{bottom:728.625022px;}
.y6_c00256{bottom:747.750022px;}
.y5_c00256{bottom:767.550022px;}
.y4_c00256{bottom:786.675022px;}
.y3_c00256{bottom:806.100022px;}
.y2_c00256{bottom:825.525022px;}
.y1_c00256{bottom:844.950022px;}
.y18_c00256{bottom:886.725022px;}
.h3_c00256{height:50.028809px;}
.h4_c00256{height:50.053711px;}
.h2_c00256{height:58.886719px;}
.h1_c00256{height:957.750000px;}
.h0_c00256{height:957.975000px;}
.w1_c00256{width:643.500000px;}
.w0_c00256{width:643.650000px;}
.x0_c00256{left:0.000000px;}
.x2_c00256{left:91.425000px;}
.x3_c00256{left:97.575000px;}
.x1_c00256{left:106.200000px;}
.x4_c00256{left:131.025000px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls0_c00256{letter-spacing:0.000000pt;}
.ws1_c00256{word-spacing:-13.333333pt;}
.ws0_c00256{word-spacing:-11.333333pt;}
.ws2_c00256{word-spacing:0.000000pt;}
._a_c00256{margin-left:-12.266667pt;}
._b_c00256{margin-left:-10.933333pt;}
._16_c00256{margin-left:-9.167800pt;}
._12_c00256{margin-left:-6.453333pt;}
._14_c00256{margin-left:-5.298827pt;}
._e_c00256{margin-left:-4.106667pt;}
._0_c00256{margin-left:-2.773333pt;}
._15_c00256{margin-left:-1.856080pt;}
._1_c00256{margin-left:-0.960000pt;}
._3_c00256{width:1.760000pt;}
._4_c00256{width:2.720000pt;}
._2_c00256{width:4.213333pt;}
._6_c00256{width:5.546667pt;}
._5_c00256{width:6.773333pt;}
._7_c00256{width:8.160000pt;}
._9_c00256{width:9.813333pt;}
._8_c00256{width:10.826667pt;}
._c_c00256{width:12.053333pt;}
._d_c00256{width:15.306667pt;}
._11_c00256{width:16.746667pt;}
._f_c00256{width:17.653333pt;}
._10_c00256{width:18.720000pt;}
._13_c00256{width:21.520000pt;}
.fs1_c00256{font-size:45.333333pt;}
.fs0_c00256{font-size:53.333333pt;}
.y0_c00256{bottom:0.000000pt;}
.y2a_c00256{bottom:57.266686pt;}
.y29_c00256{bottom:97.933353pt;}
.y28_c00256{bottom:111.400020pt;}
.y27_c00256{bottom:125.133353pt;}
.y26_c00256{bottom:138.866686pt;}
.y25_c00256{bottom:152.333353pt;}
.y24_c00256{bottom:166.066686pt;}
.y23_c00256{bottom:179.866686pt;}
.y22_c00256{bottom:193.266686pt;}
.y21_c00256{bottom:206.733353pt;}
.y20_c00256{bottom:220.200020pt;}
.y1f_c00256{bottom:233.933353pt;}
.y1e_c00256{bottom:247.400020pt;}
.y1d_c00256{bottom:261.133353pt;}
.y1c_c00256{bottom:274.866686pt;}
.y1b_c00256{bottom:288.666686pt;}
.y1a_c00256{bottom:301.800020pt;}
.y19_c00256{bottom:315.533353pt;}
.y17_c00256{bottom:371.200020pt;}
.y16_c00256{bottom:388.466686pt;}
.y15_c00256{bottom:405.466686pt;}
.y14_c00256{bottom:422.733353pt;}
.y13_c00256{bottom:440.000020pt;}
.y12_c00256{bottom:457.600020pt;}
.y11_c00256{bottom:474.600020pt;}
.y10_c00256{bottom:491.866686pt;}
.yf_c00256{bottom:509.133353pt;}
.ye_c00256{bottom:526.733353pt;}
.yd_c00256{bottom:544.000020pt;}
.yc_c00256{bottom:561.000020pt;}
.yb_c00256{bottom:578.266686pt;}
.ya_c00256{bottom:595.866686pt;}
.y9_c00256{bottom:612.800020pt;}
.y8_c00256{bottom:630.066686pt;}
.y7_c00256{bottom:647.666686pt;}
.y6_c00256{bottom:664.666686pt;}
.y5_c00256{bottom:682.266686pt;}
.y4_c00256{bottom:699.266686pt;}
.y3_c00256{bottom:716.533353pt;}
.y2_c00256{bottom:733.800020pt;}
.y1_c00256{bottom:751.066686pt;}
.y18_c00256{bottom:788.200020pt;}
.h3_c00256{height:44.470052pt;}
.h4_c00256{height:44.492188pt;}
.h2_c00256{height:52.343750pt;}
.h1_c00256{height:851.333333pt;}
.h0_c00256{height:851.533333pt;}
.w1_c00256{width:572.000000pt;}
.w0_c00256{width:572.133333pt;}
.x0_c00256{left:0.000000pt;}
.x2_c00256{left:81.266667pt;}
.x3_c00256{left:86.733333pt;}
.x1_c00256{left:94.400000pt;}
.x4_c00256{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f39207c7aa45e286b82189b2.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00257;src:url('chunks/assets/font_45bf2dcc7549459c179f7e3e.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00257{letter-spacing:0.000000px;}
.sc__c00257{text-shadow:none;}
.sc0_c00257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00257{-webkit-text-stroke:0px transparent;}
.sc0_c00257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00257{word-spacing:-15.000000px;}
.ws0_c00257{word-spacing:-12.750000px;}
.ws2_c00257{word-spacing:0.000000px;}
._8_c00257{margin-left:-13.518648px;}
._f_c00257{margin-left:-12.351456px;}
._12_c00257{margin-left:-10.860660px;}
._15_c00257{margin-left:-6.557223px;}
._10_c00257{margin-left:-4.933650px;}
._3_c00257{margin-left:-3.468357px;}
._18_c00257{margin-left:-2.432433px;}
._0_c00257{margin-left:-1.383018px;}
._1_c00257{width:1.983033px;}
._2_c00257{width:3.504159px;}
._a_c00257{width:4.910496px;}
._9_c00257{width:6.429054px;}
._7_c00257{width:8.096307px;}
._4_c00257{width:9.389670px;}
._5_c00257{width:10.718769px;}
._11_c00257{width:12.174594px;}
._6_c00257{width:13.430901px;}
._16_c00257{width:14.511294px;}
._b_c00257{width:16.358769px;}
._c_c00257{width:17.933919px;}
._e_c00257{width:19.496967px;}
._13_c00257{width:20.513934px;}
._d_c00257{width:22.229685px;}
._14_c00257{width:25.467411px;}
._17_c00257{width:26.667441px;}
.fc1_c00257{color:transparent;}
.fc0_c00257{color:rgb(35,31,32);}
.fs0_c00257{font-size:51.000000px;}
.fs1_c00257{font-size:60.000000px;}
.y0_c00257{bottom:0.000000px;}
.y26_c00257{bottom:64.425022px;}
.y25_c00257{bottom:110.175022px;}
.y24_c00257{bottom:125.325022px;}
.y23_c00257{bottom:141.150022px;}
.y22_c00257{bottom:156.225022px;}
.y21_c00257{bottom:171.375022px;}
.y20_c00257{bottom:186.825022px;}
.y1f_c00257{bottom:201.975022px;}
.y1e_c00257{bottom:217.125022px;}
.y1d_c00257{bottom:232.575022px;}
.y1c_c00257{bottom:247.725022px;}
.y1b_c00257{bottom:263.175022px;}
.y1a_c00257{bottom:278.325022px;}
.y19_c00257{bottom:293.775022px;}
.y18_c00257{bottom:309.225022px;}
.y17_c00257{bottom:324.750022px;}
.y16_c00257{bottom:339.825022px;}
.y15_c00257{bottom:354.975022px;}
.y14_c00257{bottom:438.825022px;}
.y13_c00257{bottom:458.625022px;}
.y12_c00257{bottom:478.125022px;}
.y11_c00257{bottom:497.175022px;}
.y10_c00257{bottom:516.975022px;}
.yf_c00257{bottom:536.400022px;}
.ye_c00257{bottom:555.900022px;}
.yd_c00257{bottom:575.325022px;}
.yc_c00257{bottom:594.750022px;}
.yb_c00257{bottom:614.175022px;}
.ya_c00257{bottom:633.600022px;}
.y9_c00257{bottom:653.025022px;}
.y8_c00257{bottom:672.525022px;}
.y7_c00257{bottom:691.950022px;}
.y6_c00257{bottom:711.000022px;}
.y5_c00257{bottom:730.800022px;}
.y4_c00257{bottom:768.975022px;}
.y3_c00257{bottom:825.525022px;}
.y2_c00257{bottom:844.575022px;}
.y1_c00257{bottom:886.725022px;}
.h2_c00257{height:50.028809px;}
.h4_c00257{height:50.053711px;}
.h3_c00257{height:58.886719px;}
.h1_c00257{height:957.750000px;}
.h0_c00257{height:957.975000px;}
.w0_c00257{width:641.850030px;}
.w1_c00257{width:642.000000px;}
.x0_c00257{left:0.000000px;}
.x2_c00257{left:81.000000px;}
.x4_c00257{left:87.825000px;}
.x3_c00257{left:96.825000px;}
.x6_c00257{left:120.225000px;}
.x5_c00257{left:121.350000px;}
.x1_c00257{left:144.750000px;}
.x7_c00257{left:531.375000px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls0_c00257{letter-spacing:0.000000pt;}
.ws1_c00257{word-spacing:-13.333333pt;}
.ws0_c00257{word-spacing:-11.333333pt;}
.ws2_c00257{word-spacing:0.000000pt;}
._8_c00257{margin-left:-12.016576pt;}
._f_c00257{margin-left:-10.979072pt;}
._12_c00257{margin-left:-9.653920pt;}
._15_c00257{margin-left:-5.828643pt;}
._10_c00257{margin-left:-4.385467pt;}
._3_c00257{margin-left:-3.082984pt;}
._18_c00257{margin-left:-2.162163pt;}
._0_c00257{margin-left:-1.229349pt;}
._1_c00257{width:1.762696pt;}
._2_c00257{width:3.114808pt;}
._a_c00257{width:4.364885pt;}
._9_c00257{width:5.714715pt;}
._7_c00257{width:7.196717pt;}
._4_c00257{width:8.346373pt;}
._5_c00257{width:9.527795pt;}
._11_c00257{width:10.821861pt;}
._6_c00257{width:11.938579pt;}
._16_c00257{width:12.898928pt;}
._b_c00257{width:14.541128pt;}
._c_c00257{width:15.941261pt;}
._e_c00257{width:17.330637pt;}
._13_c00257{width:18.234608pt;}
._d_c00257{width:19.759720pt;}
._14_c00257{width:22.637699pt;}
._17_c00257{width:23.704392pt;}
.fs0_c00257{font-size:45.333333pt;}
.fs1_c00257{font-size:53.333333pt;}
.y0_c00257{bottom:0.000000pt;}
.y26_c00257{bottom:57.266686pt;}
.y25_c00257{bottom:97.933353pt;}
.y24_c00257{bottom:111.400020pt;}
.y23_c00257{bottom:125.466686pt;}
.y22_c00257{bottom:138.866686pt;}
.y21_c00257{bottom:152.333353pt;}
.y20_c00257{bottom:166.066686pt;}
.y1f_c00257{bottom:179.533353pt;}
.y1e_c00257{bottom:193.000020pt;}
.y1d_c00257{bottom:206.733353pt;}
.y1c_c00257{bottom:220.200020pt;}
.y1b_c00257{bottom:233.933353pt;}
.y1a_c00257{bottom:247.400020pt;}
.y19_c00257{bottom:261.133353pt;}
.y18_c00257{bottom:274.866686pt;}
.y17_c00257{bottom:288.666686pt;}
.y16_c00257{bottom:302.066686pt;}
.y15_c00257{bottom:315.533353pt;}
.y14_c00257{bottom:390.066686pt;}
.y13_c00257{bottom:407.666686pt;}
.y12_c00257{bottom:425.000020pt;}
.y11_c00257{bottom:441.933353pt;}
.y10_c00257{bottom:459.533353pt;}
.yf_c00257{bottom:476.800020pt;}
.ye_c00257{bottom:494.133353pt;}
.yd_c00257{bottom:511.400020pt;}
.yc_c00257{bottom:528.666686pt;}
.yb_c00257{bottom:545.933353pt;}
.ya_c00257{bottom:563.200020pt;}
.y9_c00257{bottom:580.466686pt;}
.y8_c00257{bottom:597.800020pt;}
.y7_c00257{bottom:615.066686pt;}
.y6_c00257{bottom:632.000020pt;}
.y5_c00257{bottom:649.600020pt;}
.y4_c00257{bottom:683.533353pt;}
.y3_c00257{bottom:733.800020pt;}
.y2_c00257{bottom:750.733353pt;}
.y1_c00257{bottom:788.200020pt;}
.h2_c00257{height:44.470052pt;}
.h4_c00257{height:44.492188pt;}
.h3_c00257{height:52.343750pt;}
.h1_c00257{height:851.333333pt;}
.h0_c00257{height:851.533333pt;}
.w0_c00257{width:570.533360pt;}
.w1_c00257{width:570.666667pt;}
.x0_c00257{left:0.000000pt;}
.x2_c00257{left:72.000000pt;}
.x4_c00257{left:78.066667pt;}
.x3_c00257{left:86.066667pt;}
.x6_c00257{left:106.866667pt;}
.x5_c00257{left:107.866667pt;}
.x1_c00257{left:128.666667pt;}
.x7_c00257{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8a14cc32e2be14485687792.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00258;src:url('chunks/assets/font_b983240bfae7d195c3ddc357.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00258{letter-spacing:0.000000px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00258{word-spacing:-15.000000px;}
.ws1_c00258{word-spacing:-12.750000px;}
.ws2_c00258{word-spacing:0.000000px;}
._b_c00258{margin-left:-12.431646px;}
._a_c00258{margin-left:-10.968354px;}
._15_c00258{margin-left:-7.967478px;}
._16_c00258{margin-left:-6.569196px;}
._18_c00258{margin-left:-5.558541px;}
._4_c00258{margin-left:-3.804243px;}
._0_c00258{margin-left:-2.622012px;}
._2_c00258{margin-left:-1.539027px;}
._3_c00258{width:1.062024px;}
._1_c00258{width:2.400009px;}
._7_c00258{width:3.659982px;}
._12_c00258{width:5.502024px;}
._d_c00258{width:7.091904px;}
._c_c00258{width:8.609880px;}
._e_c00258{width:9.707820px;}
._f_c00258{width:11.609871px;}
._10_c00258{width:12.935712px;}
._17_c00258{width:15.009126px;}
._11_c00258{width:16.481739px;}
._13_c00258{width:17.670123px;}
._14_c00258{width:19.001568px;}
._6_c00258{width:20.237958px;}
._5_c00258{width:21.737976px;}
._8_c00258{width:24.911868px;}
._9_c00258{width:26.099973px;}
.fc1_c00258{color:transparent;}
.fc0_c00258{color:rgb(35,31,32);}
.fs0_c00258{font-size:51.000000px;}
.fs1_c00258{font-size:60.000000px;}
.y0_c00258{bottom:0.000000px;}
.y2c_c00258{bottom:64.425022px;}
.y2b_c00258{bottom:110.550022px;}
.y2a_c00258{bottom:125.325022px;}
.y29_c00258{bottom:141.150022px;}
.y28_c00258{bottom:156.225022px;}
.y27_c00258{bottom:171.375022px;}
.y26_c00258{bottom:186.150022px;}
.y25_c00258{bottom:201.975022px;}
.y24_c00258{bottom:217.125022px;}
.y23_c00258{bottom:232.575022px;}
.y22_c00258{bottom:247.725022px;}
.y21_c00258{bottom:263.175022px;}
.y20_c00258{bottom:278.625022px;}
.y1f_c00258{bottom:293.775022px;}
.y1e_c00258{bottom:309.225022px;}
.y1d_c00258{bottom:324.375022px;}
.y1c_c00258{bottom:339.525022px;}
.y1b_c00258{bottom:354.975022px;}
.y1a_c00258{bottom:370.425022px;}
.y19_c00258{bottom:385.950022px;}
.y18_c00258{bottom:401.025022px;}
.y17_c00258{bottom:416.550022px;}
.y16_c00258{bottom:431.325022px;}
.y15_c00258{bottom:475.950022px;}
.y14_c00258{bottom:495.000022px;}
.y13_c00258{bottom:514.725022px;}
.y12_c00258{bottom:534.225022px;}
.y11_c00258{bottom:553.725022px;}
.y10_c00258{bottom:573.150022px;}
.yf_c00258{bottom:592.200022px;}
.ye_c00258{bottom:611.625022px;}
.yd_c00258{bottom:631.500022px;}
.yc_c00258{bottom:650.925022px;}
.yb_c00258{bottom:670.350022px;}
.ya_c00258{bottom:689.775022px;}
.y9_c00258{bottom:708.825022px;}
.y8_c00258{bottom:728.625022px;}
.y7_c00258{bottom:748.125022px;}
.y6_c00258{bottom:767.475022px;}
.y5_c00258{bottom:786.600022px;}
.y4_c00258{bottom:805.725022px;}
.y3_c00258{bottom:825.525022px;}
.y2_c00258{bottom:844.950022px;}
.y1_c00258{bottom:886.725022px;}
.h2_c00258{height:50.028809px;}
.h4_c00258{height:50.053711px;}
.h3_c00258{height:58.886719px;}
.h1_c00258{height:957.750000px;}
.h0_c00258{height:957.975000px;}
.w1_c00258{width:643.500000px;}
.w0_c00258{width:643.650000px;}
.x0_c00258{left:0.000000px;}
.x1_c00258{left:91.050000px;}
.x3_c00258{left:97.575000px;}
.x2_c00258{left:107.250000px;}
.x4_c00258{left:130.650000px;}
.x5_c00258{left:131.775000px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls0_c00258{letter-spacing:0.000000pt;}
.ws0_c00258{word-spacing:-13.333333pt;}
.ws1_c00258{word-spacing:-11.333333pt;}
.ws2_c00258{word-spacing:0.000000pt;}
._b_c00258{margin-left:-11.050352pt;}
._a_c00258{margin-left:-9.749648pt;}
._15_c00258{margin-left:-7.082203pt;}
._16_c00258{margin-left:-5.839285pt;}
._18_c00258{margin-left:-4.940925pt;}
._4_c00258{margin-left:-3.381549pt;}
._0_c00258{margin-left:-2.330677pt;}
._2_c00258{margin-left:-1.368024pt;}
._3_c00258{width:0.944021pt;}
._1_c00258{width:2.133341pt;}
._7_c00258{width:3.253317pt;}
._12_c00258{width:4.890688pt;}
._d_c00258{width:6.303915pt;}
._c_c00258{width:7.653227pt;}
._e_c00258{width:8.629173pt;}
._f_c00258{width:10.319885pt;}
._10_c00258{width:11.498411pt;}
._17_c00258{width:13.341445pt;}
._11_c00258{width:14.650435pt;}
._13_c00258{width:15.706776pt;}
._14_c00258{width:16.890283pt;}
._6_c00258{width:17.989296pt;}
._5_c00258{width:19.322645pt;}
._8_c00258{width:22.143883pt;}
._9_c00258{width:23.199976pt;}
.fs0_c00258{font-size:45.333333pt;}
.fs1_c00258{font-size:53.333333pt;}
.y0_c00258{bottom:0.000000pt;}
.y2c_c00258{bottom:57.266686pt;}
.y2b_c00258{bottom:98.266686pt;}
.y2a_c00258{bottom:111.400020pt;}
.y29_c00258{bottom:125.466686pt;}
.y28_c00258{bottom:138.866686pt;}
.y27_c00258{bottom:152.333353pt;}
.y26_c00258{bottom:165.466686pt;}
.y25_c00258{bottom:179.533353pt;}
.y24_c00258{bottom:193.000020pt;}
.y23_c00258{bottom:206.733353pt;}
.y22_c00258{bottom:220.200020pt;}
.y21_c00258{bottom:233.933353pt;}
.y20_c00258{bottom:247.666686pt;}
.y1f_c00258{bottom:261.133353pt;}
.y1e_c00258{bottom:274.866686pt;}
.y1d_c00258{bottom:288.333353pt;}
.y1c_c00258{bottom:301.800020pt;}
.y1b_c00258{bottom:315.533353pt;}
.y1a_c00258{bottom:329.266686pt;}
.y19_c00258{bottom:343.066686pt;}
.y18_c00258{bottom:356.466686pt;}
.y17_c00258{bottom:370.266686pt;}
.y16_c00258{bottom:383.400020pt;}
.y15_c00258{bottom:423.066686pt;}
.y14_c00258{bottom:440.000020pt;}
.y13_c00258{bottom:457.533353pt;}
.y12_c00258{bottom:474.866686pt;}
.y11_c00258{bottom:492.200020pt;}
.y10_c00258{bottom:509.466686pt;}
.yf_c00258{bottom:526.400020pt;}
.ye_c00258{bottom:543.666686pt;}
.yd_c00258{bottom:561.333353pt;}
.yc_c00258{bottom:578.600020pt;}
.yb_c00258{bottom:595.866686pt;}
.ya_c00258{bottom:613.133353pt;}
.y9_c00258{bottom:630.066686pt;}
.y8_c00258{bottom:647.666686pt;}
.y7_c00258{bottom:665.000020pt;}
.y6_c00258{bottom:682.200020pt;}
.y5_c00258{bottom:699.200020pt;}
.y4_c00258{bottom:716.200020pt;}
.y3_c00258{bottom:733.800020pt;}
.y2_c00258{bottom:751.066686pt;}
.y1_c00258{bottom:788.200020pt;}
.h2_c00258{height:44.470052pt;}
.h4_c00258{height:44.492188pt;}
.h3_c00258{height:52.343750pt;}
.h1_c00258{height:851.333333pt;}
.h0_c00258{height:851.533333pt;}
.w1_c00258{width:572.000000pt;}
.w0_c00258{width:572.133333pt;}
.x0_c00258{left:0.000000pt;}
.x1_c00258{left:80.933333pt;}
.x3_c00258{left:86.733333pt;}
.x2_c00258{left:95.333333pt;}
.x4_c00258{left:116.133333pt;}
.x5_c00258{left:117.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b8b05849d749945854ddc2e2.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00259;src:url('chunks/assets/font_8c5f93251448b81b961b13d8.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00259{letter-spacing:0.000000px;}
.ls0_c00259{letter-spacing:0.899997px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00259{word-spacing:-15.000000px;}
.ws1_c00259{word-spacing:-13.649997px;}
.ws0_c00259{word-spacing:-12.750000px;}
.ws3_c00259{word-spacing:0.000000px;}
._9_c00259{margin-left:-13.169841px;}
._a_c00259{margin-left:-11.760318px;}
._7_c00259{margin-left:-10.500000px;}
._16_c00259{margin-left:-8.448846px;}
._8_c00259{margin-left:-6.600000px;}
._13_c00259{margin-left:-5.145057px;}
._3_c00259{margin-left:-3.468357px;}
._6_c00259{margin-left:-2.463003px;}
._0_c00259{margin-left:-1.383018px;}
._1_c00259{width:1.983033px;}
._2_c00259{width:3.504159px;}
._4_c00259{width:5.144835px;}
._5_c00259{width:6.669099px;}
._15_c00259{width:7.760325px;}
._c_c00259{width:8.786637px;}
._10_c00259{width:10.242702px;}
._11_c00259{width:11.327913px;}
._d_c00259{width:12.369039px;}
._e_c00259{width:13.838769px;}
._12_c00259{width:14.991174px;}
._b_c00259{width:16.670901px;}
._f_c00259{width:18.689670px;}
._1a_c00259{width:20.781387px;}
._14_c00259{width:22.281360px;}
._18_c00259{width:24.981390px;}
._19_c00259{width:26.622129px;}
._17_c00259{width:29.907345px;}
.fc1_c00259{color:transparent;}
.fc0_c00259{color:rgb(35,31,32);}
.fs0_c00259{font-size:51.000000px;}
.fs1_c00259{font-size:60.000000px;}
.y0_c00259{bottom:0.000000px;}
.y2d_c00259{bottom:64.425022px;}
.y2c_c00259{bottom:110.175022px;}
.y2b_c00259{bottom:125.625022px;}
.y2a_c00259{bottom:141.150022px;}
.y29_c00259{bottom:156.225022px;}
.y28_c00259{bottom:171.375022px;}
.y27_c00259{bottom:186.825022px;}
.y26_c00259{bottom:202.350022px;}
.y25_c00259{bottom:217.125022px;}
.y24_c00259{bottom:232.575022px;}
.y23_c00259{bottom:247.725022px;}
.y22_c00259{bottom:263.550022px;}
.y21_c00259{bottom:278.625022px;}
.y20_c00259{bottom:293.775022px;}
.y1f_c00259{bottom:308.925022px;}
.y1e_c00259{bottom:324.375022px;}
.y1d_c00259{bottom:339.525022px;}
.y1c_c00259{bottom:355.350022px;}
.y1b_c00259{bottom:370.425022px;}
.y1a_c00259{bottom:385.950022px;}
.y19_c00259{bottom:401.025022px;}
.y18_c00259{bottom:416.550022px;}
.y17_c00259{bottom:431.325022px;}
.y16_c00259{bottom:446.775022px;}
.y15_c00259{bottom:461.925022px;}
.y14_c00259{bottom:477.375022px;}
.y13_c00259{bottom:492.525022px;}
.y12_c00259{bottom:507.975022px;}
.y11_c00259{bottom:553.725022px;}
.y10_c00259{bottom:573.150022px;}
.yf_c00259{bottom:592.575022px;}
.ye_c00259{bottom:612.000022px;}
.yd_c00259{bottom:631.125022px;}
.yc_c00259{bottom:650.550022px;}
.yb_c00259{bottom:670.350022px;}
.ya_c00259{bottom:689.400022px;}
.y9_c00259{bottom:709.125022px;}
.y8_c00259{bottom:728.625022px;}
.y7_c00259{bottom:748.125022px;}
.y6_c00259{bottom:767.175022px;}
.y5_c00259{bottom:786.225022px;}
.y4_c00259{bottom:806.025022px;}
.y3_c00259{bottom:825.525022px;}
.y2_c00259{bottom:844.950022px;}
.y1_c00259{bottom:886.725022px;}
.h2_c00259{height:50.028809px;}
.h4_c00259{height:50.053711px;}
.h3_c00259{height:58.886719px;}
.h1_c00259{height:957.750000px;}
.h0_c00259{height:957.975000px;}
.w0_c00259{width:641.850030px;}
.w1_c00259{width:642.000000px;}
.x0_c00259{left:0.000000px;}
.x3_c00259{left:80.250000px;}
.x2_c00259{left:81.375000px;}
.x6_c00259{left:87.825000px;}
.x4_c00259{left:97.200000px;}
.x5_c00259{left:121.350000px;}
.x1_c00259{left:144.750000px;}
.x7_c00259{left:531.375000px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls1_c00259{letter-spacing:0.000000pt;}
.ls0_c00259{letter-spacing:0.799997pt;}
.ws2_c00259{word-spacing:-13.333333pt;}
.ws1_c00259{word-spacing:-12.133331pt;}
.ws0_c00259{word-spacing:-11.333333pt;}
.ws3_c00259{word-spacing:0.000000pt;}
._9_c00259{margin-left:-11.706525pt;}
._a_c00259{margin-left:-10.453616pt;}
._7_c00259{margin-left:-9.333333pt;}
._16_c00259{margin-left:-7.510085pt;}
._8_c00259{margin-left:-5.866667pt;}
._13_c00259{margin-left:-4.573384pt;}
._3_c00259{margin-left:-3.082984pt;}
._6_c00259{margin-left:-2.189336pt;}
._0_c00259{margin-left:-1.229349pt;}
._1_c00259{width:1.762696pt;}
._2_c00259{width:3.114808pt;}
._4_c00259{width:4.573187pt;}
._5_c00259{width:5.928088pt;}
._15_c00259{width:6.898067pt;}
._c_c00259{width:7.810344pt;}
._10_c00259{width:9.104624pt;}
._11_c00259{width:10.069256pt;}
._d_c00259{width:10.994701pt;}
._e_c00259{width:12.301128pt;}
._12_c00259{width:13.325488pt;}
._b_c00259{width:14.818579pt;}
._f_c00259{width:16.613040pt;}
._1a_c00259{width:18.472344pt;}
._14_c00259{width:19.805653pt;}
._18_c00259{width:22.205680pt;}
._19_c00259{width:23.664115pt;}
._17_c00259{width:26.584307pt;}
.fs0_c00259{font-size:45.333333pt;}
.fs1_c00259{font-size:53.333333pt;}
.y0_c00259{bottom:0.000000pt;}
.y2d_c00259{bottom:57.266686pt;}
.y2c_c00259{bottom:97.933353pt;}
.y2b_c00259{bottom:111.666686pt;}
.y2a_c00259{bottom:125.466686pt;}
.y29_c00259{bottom:138.866686pt;}
.y28_c00259{bottom:152.333353pt;}
.y27_c00259{bottom:166.066686pt;}
.y26_c00259{bottom:179.866686pt;}
.y25_c00259{bottom:193.000020pt;}
.y24_c00259{bottom:206.733353pt;}
.y23_c00259{bottom:220.200020pt;}
.y22_c00259{bottom:234.266686pt;}
.y21_c00259{bottom:247.666686pt;}
.y20_c00259{bottom:261.133353pt;}
.y1f_c00259{bottom:274.600020pt;}
.y1e_c00259{bottom:288.333353pt;}
.y1d_c00259{bottom:301.800020pt;}
.y1c_c00259{bottom:315.866686pt;}
.y1b_c00259{bottom:329.266686pt;}
.y1a_c00259{bottom:343.066686pt;}
.y19_c00259{bottom:356.466686pt;}
.y18_c00259{bottom:370.266686pt;}
.y17_c00259{bottom:383.400020pt;}
.y16_c00259{bottom:397.133353pt;}
.y15_c00259{bottom:410.600020pt;}
.y14_c00259{bottom:424.333353pt;}
.y13_c00259{bottom:437.800020pt;}
.y12_c00259{bottom:451.533353pt;}
.y11_c00259{bottom:492.200020pt;}
.y10_c00259{bottom:509.466686pt;}
.yf_c00259{bottom:526.733353pt;}
.ye_c00259{bottom:544.000020pt;}
.yd_c00259{bottom:561.000020pt;}
.yc_c00259{bottom:578.266686pt;}
.yb_c00259{bottom:595.866686pt;}
.ya_c00259{bottom:612.800020pt;}
.y9_c00259{bottom:630.333353pt;}
.y8_c00259{bottom:647.666686pt;}
.y7_c00259{bottom:665.000020pt;}
.y6_c00259{bottom:681.933353pt;}
.y5_c00259{bottom:698.866686pt;}
.y4_c00259{bottom:716.466686pt;}
.y3_c00259{bottom:733.800020pt;}
.y2_c00259{bottom:751.066686pt;}
.y1_c00259{bottom:788.200020pt;}
.h2_c00259{height:44.470052pt;}
.h4_c00259{height:44.492188pt;}
.h3_c00259{height:52.343750pt;}
.h1_c00259{height:851.333333pt;}
.h0_c00259{height:851.533333pt;}
.w0_c00259{width:570.533360pt;}
.w1_c00259{width:570.666667pt;}
.x0_c00259{left:0.000000pt;}
.x3_c00259{left:71.333333pt;}
.x2_c00259{left:72.333333pt;}
.x6_c00259{left:78.066667pt;}
.x4_c00259{left:86.400000pt;}
.x5_c00259{left:107.866667pt;}
.x1_c00259{left:128.666667pt;}
.x7_c00259{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_80a177bc4b9f56c92d74291e.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00260;src:url('chunks/assets/font_ff0d41bc428c7612dd981537.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00260{letter-spacing:0.000000px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00260{word-spacing:-15.000000px;}
.ws0_c00260{word-spacing:-12.750000px;}
.ws2_c00260{word-spacing:0.000000px;}
._8_c00260{margin-left:-12.120000px;}
._10_c00260{margin-left:-10.380000px;}
._6_c00260{margin-left:-9.360000px;}
._e_c00260{margin-left:-6.180000px;}
._15_c00260{margin-left:-4.436928px;}
._d_c00260{margin-left:-3.420000px;}
._0_c00260{margin-left:-1.920000px;}
._a_c00260{width:1.140000px;}
._3_c00260{width:2.160000px;}
._9_c00260{width:3.780000px;}
._b_c00260{width:5.460000px;}
._4_c00260{width:7.380000px;}
._1_c00260{width:8.820000px;}
._2_c00260{width:9.900000px;}
._7_c00260{width:11.100000px;}
._5_c00260{width:12.420000px;}
._12_c00260{width:13.560000px;}
._c_c00260{width:16.080000px;}
._11_c00260{width:17.820000px;}
._13_c00260{width:18.960000px;}
._f_c00260{width:20.640000px;}
._14_c00260{width:24.809979px;}
.fc1_c00260{color:transparent;}
.fc0_c00260{color:rgb(35,31,32);}
.fs1_c00260{font-size:51.000000px;}
.fs0_c00260{font-size:60.000000px;}
.y0_c00260{bottom:0.000000px;}
.y26_c00260{bottom:64.425022px;}
.y25_c00260{bottom:110.550022px;}
.y24_c00260{bottom:125.325022px;}
.y23_c00260{bottom:140.775022px;}
.y22_c00260{bottom:156.225022px;}
.y21_c00260{bottom:171.375022px;}
.y20_c00260{bottom:186.525022px;}
.y1f_c00260{bottom:201.975022px;}
.y1e_c00260{bottom:217.125022px;}
.y1d_c00260{bottom:258.525022px;}
.y1c_c00260{bottom:277.950022px;}
.y1b_c00260{bottom:297.000022px;}
.y1a_c00260{bottom:316.725022px;}
.y19_c00260{bottom:336.225022px;}
.y18_c00260{bottom:355.725022px;}
.y17_c00260{bottom:375.150022px;}
.y16_c00260{bottom:394.200022px;}
.y15_c00260{bottom:414.000022px;}
.y14_c00260{bottom:433.125022px;}
.y13_c00260{bottom:474.150022px;}
.y11_c00260{bottom:534.225022px;}
.y10_c00260{bottom:553.350022px;}
.yf_c00260{bottom:572.775022px;}
.ye_c00260{bottom:592.575022px;}
.yd_c00260{bottom:612.000022px;}
.yc_c00260{bottom:631.125022px;}
.yb_c00260{bottom:650.925022px;}
.ya_c00260{bottom:670.350022px;}
.y9_c00260{bottom:689.400022px;}
.y8_c00260{bottom:708.825022px;}
.y7_c00260{bottom:728.625022px;}
.y6_c00260{bottom:747.750022px;}
.y5_c00260{bottom:767.550022px;}
.y4_c00260{bottom:786.600022px;}
.y3_c00260{bottom:805.725022px;}
.y2_c00260{bottom:825.150022px;}
.y1_c00260{bottom:844.575022px;}
.y12_c00260{bottom:886.725022px;}
.h3_c00260{height:50.028809px;}
.h4_c00260{height:50.053711px;}
.h2_c00260{height:58.886719px;}
.h1_c00260{height:957.750000px;}
.h0_c00260{height:957.975000px;}
.w1_c00260{width:643.500000px;}
.w0_c00260{width:643.650000px;}
.x0_c00260{left:0.000000px;}
.x2_c00260{left:90.375000px;}
.x1_c00260{left:91.425000px;}
.x3_c00260{left:97.575000px;}
.x4_c00260{left:131.025000px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls0_c00260{letter-spacing:0.000000pt;}
.ws1_c00260{word-spacing:-13.333333pt;}
.ws0_c00260{word-spacing:-11.333333pt;}
.ws2_c00260{word-spacing:0.000000pt;}
._8_c00260{margin-left:-10.773333pt;}
._10_c00260{margin-left:-9.226667pt;}
._6_c00260{margin-left:-8.320000pt;}
._e_c00260{margin-left:-5.493333pt;}
._15_c00260{margin-left:-3.943936pt;}
._d_c00260{margin-left:-3.040000pt;}
._0_c00260{margin-left:-1.706667pt;}
._a_c00260{width:1.013333pt;}
._3_c00260{width:1.920000pt;}
._9_c00260{width:3.360000pt;}
._b_c00260{width:4.853333pt;}
._4_c00260{width:6.560000pt;}
._1_c00260{width:7.840000pt;}
._2_c00260{width:8.800000pt;}
._7_c00260{width:9.866667pt;}
._5_c00260{width:11.040000pt;}
._12_c00260{width:12.053333pt;}
._c_c00260{width:14.293333pt;}
._11_c00260{width:15.840000pt;}
._13_c00260{width:16.853333pt;}
._f_c00260{width:18.346667pt;}
._14_c00260{width:22.053315pt;}
.fs1_c00260{font-size:45.333333pt;}
.fs0_c00260{font-size:53.333333pt;}
.y0_c00260{bottom:0.000000pt;}
.y26_c00260{bottom:57.266686pt;}
.y25_c00260{bottom:98.266686pt;}
.y24_c00260{bottom:111.400020pt;}
.y23_c00260{bottom:125.133353pt;}
.y22_c00260{bottom:138.866686pt;}
.y21_c00260{bottom:152.333353pt;}
.y20_c00260{bottom:165.800020pt;}
.y1f_c00260{bottom:179.533353pt;}
.y1e_c00260{bottom:193.000020pt;}
.y1d_c00260{bottom:229.800020pt;}
.y1c_c00260{bottom:247.066686pt;}
.y1b_c00260{bottom:264.000020pt;}
.y1a_c00260{bottom:281.533353pt;}
.y19_c00260{bottom:298.866686pt;}
.y18_c00260{bottom:316.200020pt;}
.y17_c00260{bottom:333.466686pt;}
.y16_c00260{bottom:350.400020pt;}
.y15_c00260{bottom:368.000020pt;}
.y14_c00260{bottom:385.000020pt;}
.y13_c00260{bottom:421.466686pt;}
.y11_c00260{bottom:474.866686pt;}
.y10_c00260{bottom:491.866686pt;}
.yf_c00260{bottom:509.133353pt;}
.ye_c00260{bottom:526.733353pt;}
.yd_c00260{bottom:544.000020pt;}
.yc_c00260{bottom:561.000020pt;}
.yb_c00260{bottom:578.600020pt;}
.ya_c00260{bottom:595.866686pt;}
.y9_c00260{bottom:612.800020pt;}
.y8_c00260{bottom:630.066686pt;}
.y7_c00260{bottom:647.666686pt;}
.y6_c00260{bottom:664.666686pt;}
.y5_c00260{bottom:682.266686pt;}
.y4_c00260{bottom:699.200020pt;}
.y3_c00260{bottom:716.200020pt;}
.y2_c00260{bottom:733.466686pt;}
.y1_c00260{bottom:750.733353pt;}
.y12_c00260{bottom:788.200020pt;}
.h3_c00260{height:44.470052pt;}
.h4_c00260{height:44.492188pt;}
.h2_c00260{height:52.343750pt;}
.h1_c00260{height:851.333333pt;}
.h0_c00260{height:851.533333pt;}
.w1_c00260{width:572.000000pt;}
.w0_c00260{width:572.133333pt;}
.x0_c00260{left:0.000000pt;}
.x2_c00260{left:80.333333pt;}
.x1_c00260{left:81.266667pt;}
.x3_c00260{left:86.733333pt;}
.x4_c00260{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b183154f35f2d540b5c12156.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00261;src:url('chunks/assets/font_b01d96cd26fa55c2f5b5cb32.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00261{letter-spacing:0.000000px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00261{word-spacing:-15.000000px;}
.ws0_c00261{word-spacing:-12.750000px;}
.ws2_c00261{word-spacing:0.000000px;}
._12_c00261{margin-left:-14.040000px;}
._c_c00261{margin-left:-12.780000px;}
._8_c00261{margin-left:-11.700000px;}
._7_c00261{margin-left:-10.140000px;}
._1c_c00261{margin-left:-9.048384px;}
._19_c00261{margin-left:-7.862415px;}
._18_c00261{margin-left:-6.537537px;}
._1b_c00261{margin-left:-5.418006px;}
._3_c00261{margin-left:-4.320000px;}
._14_c00261{margin-left:-3.242892px;}
._a_c00261{margin-left:-1.620000px;}
._4_c00261{width:1.020000px;}
._0_c00261{width:2.100000px;}
._2_c00261{width:3.180000px;}
._1_c00261{width:4.500000px;}
._6_c00261{width:5.940000px;}
._5_c00261{width:7.080000px;}
._9_c00261{width:8.100000px;}
._f_c00261{width:9.480000px;}
._e_c00261{width:10.800000px;}
._d_c00261{width:12.780000px;}
._b_c00261{width:13.980000px;}
._13_c00261{width:16.020000px;}
._10_c00261{width:17.040000px;}
._11_c00261{width:18.840000px;}
._15_c00261{width:23.280000px;}
._16_c00261{width:24.600000px;}
._17_c00261{width:25.620000px;}
._1a_c00261{width:28.775763px;}
.fc1_c00261{color:transparent;}
.fc0_c00261{color:rgb(35,31,32);}
.fs1_c00261{font-size:51.000000px;}
.fs0_c00261{font-size:60.000000px;}
.y0_c00261{bottom:0.000000px;}
.y28_c00261{bottom:64.425022px;}
.y27_c00261{bottom:110.175022px;}
.y26_c00261{bottom:125.325022px;}
.y25_c00261{bottom:141.150022px;}
.y24_c00261{bottom:156.225022px;}
.y23_c00261{bottom:171.375022px;}
.y22_c00261{bottom:186.525022px;}
.y21_c00261{bottom:201.975022px;}
.y20_c00261{bottom:217.425022px;}
.y1f_c00261{bottom:232.950022px;}
.y1e_c00261{bottom:247.725022px;}
.y1d_c00261{bottom:263.175022px;}
.y1c_c00261{bottom:278.325022px;}
.y1b_c00261{bottom:293.775022px;}
.y1a_c00261{bottom:308.925022px;}
.y19_c00261{bottom:324.750022px;}
.y18_c00261{bottom:339.825022px;}
.y17_c00261{bottom:354.975022px;}
.y16_c00261{bottom:370.125022px;}
.y15_c00261{bottom:414.000022px;}
.y14_c00261{bottom:433.425022px;}
.y13_c00261{bottom:452.925022px;}
.y12_c00261{bottom:472.350022px;}
.y11_c00261{bottom:491.400022px;}
.y10_c00261{bottom:510.825022px;}
.yf_c00261{bottom:530.325022px;}
.ye_c00261{bottom:549.750022px;}
.yd_c00261{bottom:591.150022px;}
.yb_c00261{bottom:650.925022px;}
.ya_c00261{bottom:670.350022px;}
.y9_c00261{bottom:689.775022px;}
.y8_c00261{bottom:708.825022px;}
.y7_c00261{bottom:728.625022px;}
.y6_c00261{bottom:748.125022px;}
.y5_c00261{bottom:767.550022px;}
.y4_c00261{bottom:786.600022px;}
.y3_c00261{bottom:806.025022px;}
.y2_c00261{bottom:825.525022px;}
.y1_c00261{bottom:844.950022px;}
.yc_c00261{bottom:886.725022px;}
.h3_c00261{height:50.028809px;}
.h4_c00261{height:50.053711px;}
.h2_c00261{height:58.886719px;}
.h1_c00261{height:957.750000px;}
.h0_c00261{height:957.975000px;}
.w0_c00261{width:641.850030px;}
.w1_c00261{width:642.000000px;}
.x0_c00261{left:0.000000px;}
.x1_c00261{left:81.000000px;}
.x4_c00261{left:87.825000px;}
.x3_c00261{left:120.975000px;}
.x2_c00261{left:144.750000px;}
.x5_c00261{left:531.375000px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls0_c00261{letter-spacing:0.000000pt;}
.ws1_c00261{word-spacing:-13.333333pt;}
.ws0_c00261{word-spacing:-11.333333pt;}
.ws2_c00261{word-spacing:0.000000pt;}
._12_c00261{margin-left:-12.480000pt;}
._c_c00261{margin-left:-11.360000pt;}
._8_c00261{margin-left:-10.400000pt;}
._7_c00261{margin-left:-9.013333pt;}
._1c_c00261{margin-left:-8.043008pt;}
._19_c00261{margin-left:-6.988813pt;}
._18_c00261{margin-left:-5.811144pt;}
._1b_c00261{margin-left:-4.816005pt;}
._3_c00261{margin-left:-3.840000pt;}
._14_c00261{margin-left:-2.882571pt;}
._a_c00261{margin-left:-1.440000pt;}
._4_c00261{width:0.906667pt;}
._0_c00261{width:1.866667pt;}
._2_c00261{width:2.826667pt;}
._1_c00261{width:4.000000pt;}
._6_c00261{width:5.280000pt;}
._5_c00261{width:6.293333pt;}
._9_c00261{width:7.200000pt;}
._f_c00261{width:8.426667pt;}
._e_c00261{width:9.600000pt;}
._d_c00261{width:11.360000pt;}
._b_c00261{width:12.426667pt;}
._13_c00261{width:14.240000pt;}
._10_c00261{width:15.146667pt;}
._11_c00261{width:16.746667pt;}
._15_c00261{width:20.693333pt;}
._16_c00261{width:21.866667pt;}
._17_c00261{width:22.773333pt;}
._1a_c00261{width:25.578456pt;}
.fs1_c00261{font-size:45.333333pt;}
.fs0_c00261{font-size:53.333333pt;}
.y0_c00261{bottom:0.000000pt;}
.y28_c00261{bottom:57.266686pt;}
.y27_c00261{bottom:97.933353pt;}
.y26_c00261{bottom:111.400020pt;}
.y25_c00261{bottom:125.466686pt;}
.y24_c00261{bottom:138.866686pt;}
.y23_c00261{bottom:152.333353pt;}
.y22_c00261{bottom:165.800020pt;}
.y21_c00261{bottom:179.533353pt;}
.y20_c00261{bottom:193.266686pt;}
.y1f_c00261{bottom:207.066686pt;}
.y1e_c00261{bottom:220.200020pt;}
.y1d_c00261{bottom:233.933353pt;}
.y1c_c00261{bottom:247.400020pt;}
.y1b_c00261{bottom:261.133353pt;}
.y1a_c00261{bottom:274.600020pt;}
.y19_c00261{bottom:288.666686pt;}
.y18_c00261{bottom:302.066686pt;}
.y17_c00261{bottom:315.533353pt;}
.y16_c00261{bottom:329.000020pt;}
.y15_c00261{bottom:368.000020pt;}
.y14_c00261{bottom:385.266686pt;}
.y13_c00261{bottom:402.600020pt;}
.y12_c00261{bottom:419.866686pt;}
.y11_c00261{bottom:436.800020pt;}
.y10_c00261{bottom:454.066686pt;}
.yf_c00261{bottom:471.400020pt;}
.ye_c00261{bottom:488.666686pt;}
.yd_c00261{bottom:525.466686pt;}
.yb_c00261{bottom:578.600020pt;}
.ya_c00261{bottom:595.866686pt;}
.y9_c00261{bottom:613.133353pt;}
.y8_c00261{bottom:630.066686pt;}
.y7_c00261{bottom:647.666686pt;}
.y6_c00261{bottom:665.000020pt;}
.y5_c00261{bottom:682.266686pt;}
.y4_c00261{bottom:699.200020pt;}
.y3_c00261{bottom:716.466686pt;}
.y2_c00261{bottom:733.800020pt;}
.y1_c00261{bottom:751.066686pt;}
.yc_c00261{bottom:788.200020pt;}
.h3_c00261{height:44.470052pt;}
.h4_c00261{height:44.492188pt;}
.h2_c00261{height:52.343750pt;}
.h1_c00261{height:851.333333pt;}
.h0_c00261{height:851.533333pt;}
.w0_c00261{width:570.533360pt;}
.w1_c00261{width:570.666667pt;}
.x0_c00261{left:0.000000pt;}
.x1_c00261{left:72.000000pt;}
.x4_c00261{left:78.066667pt;}
.x3_c00261{left:107.533333pt;}
.x2_c00261{left:128.666667pt;}
.x5_c00261{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3c3310ed9ea2dde9c26b4f2.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00262;src:url('chunks/assets/font_db49aa2dad45436194d2a57a.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00262{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws0_c00262{word-spacing:-12.750000px;}
.ws2_c00262{word-spacing:0.000000px;}
._11_c00262{margin-left:-13.800000px;}
._13_c00262{margin-left:-12.720000px;}
._6_c00262{margin-left:-11.400000px;}
._10_c00262{margin-left:-10.020000px;}
._18_c00262{margin-left:-7.524300px;}
._17_c00262{margin-left:-6.082953px;}
._15_c00262{margin-left:-4.520697px;}
._14_c00262{margin-left:-3.078039px;}
._5_c00262{margin-left:-1.980000px;}
._0_c00262{width:1.320000px;}
._1_c00262{width:2.400000px;}
._c_c00262{width:4.260000px;}
._7_c00262{width:5.700000px;}
._a_c00262{width:7.440000px;}
._9_c00262{width:8.940000px;}
._b_c00262{width:10.020000px;}
._8_c00262{width:11.640000px;}
._d_c00262{width:12.780000px;}
._12_c00262{width:13.800000px;}
._1a_c00262{width:15.357372px;}
._e_c00262{width:16.740000px;}
._2_c00262{width:18.000000px;}
._f_c00262{width:19.020000px;}
._3_c00262{width:20.880000px;}
._4_c00262{width:22.500000px;}
._16_c00262{width:25.608030px;}
._19_c00262{width:26.868039px;}
.fc1_c00262{color:transparent;}
.fc0_c00262{color:rgb(35,31,32);}
.fs1_c00262{font-size:51.000000px;}
.fs0_c00262{font-size:60.000000px;}
.y0_c00262{bottom:0.000000px;}
.y2a_c00262{bottom:64.800022px;}
.y29_c00262{bottom:110.550022px;}
.y28_c00262{bottom:125.625022px;}
.y27_c00262{bottom:140.775022px;}
.y26_c00262{bottom:155.925022px;}
.y25_c00262{bottom:171.375022px;}
.y24_c00262{bottom:186.525022px;}
.y23_c00262{bottom:201.975022px;}
.y22_c00262{bottom:217.125022px;}
.y21_c00262{bottom:232.950022px;}
.y20_c00262{bottom:247.725022px;}
.y1f_c00262{bottom:263.175022px;}
.y1e_c00262{bottom:278.325022px;}
.y1d_c00262{bottom:293.775022px;}
.y1c_c00262{bottom:308.925022px;}
.y1b_c00262{bottom:324.375022px;}
.y19_c00262{bottom:378.375022px;}
.y18_c00262{bottom:398.175022px;}
.y17_c00262{bottom:417.225022px;}
.y16_c00262{bottom:437.025022px;}
.y15_c00262{bottom:456.150022px;}
.y14_c00262{bottom:475.950022px;}
.y13_c00262{bottom:495.000022px;}
.y12_c00262{bottom:514.425022px;}
.y11_c00262{bottom:533.925022px;}
.y10_c00262{bottom:553.725022px;}
.yf_c00262{bottom:572.775022px;}
.ye_c00262{bottom:592.575022px;}
.yd_c00262{bottom:612.000022px;}
.yc_c00262{bottom:631.125022px;}
.yb_c00262{bottom:650.925022px;}
.ya_c00262{bottom:670.350022px;}
.y9_c00262{bottom:689.775022px;}
.y8_c00262{bottom:709.200022px;}
.y7_c00262{bottom:728.625022px;}
.y6_c00262{bottom:747.750022px;}
.y5_c00262{bottom:767.475022px;}
.y4_c00262{bottom:786.600022px;}
.y3_c00262{bottom:805.725022px;}
.y2_c00262{bottom:825.525022px;}
.y1_c00262{bottom:844.950022px;}
.y1a_c00262{bottom:886.725022px;}
.h3_c00262{height:50.028809px;}
.h4_c00262{height:50.053711px;}
.h2_c00262{height:58.886719px;}
.h1_c00262{height:957.750000px;}
.h0_c00262{height:957.975000px;}
.w1_c00262{width:643.500000px;}
.w0_c00262{width:643.650000px;}
.x0_c00262{left:0.000000px;}
.x3_c00262{left:90.375000px;}
.x1_c00262{left:91.425000px;}
.x4_c00262{left:97.575000px;}
.x2_c00262{left:107.250000px;}
.x5_c00262{left:131.400000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls0_c00262{letter-spacing:0.000000pt;}
.ws1_c00262{word-spacing:-13.333333pt;}
.ws0_c00262{word-spacing:-11.333333pt;}
.ws2_c00262{word-spacing:0.000000pt;}
._11_c00262{margin-left:-12.266667pt;}
._13_c00262{margin-left:-11.306667pt;}
._6_c00262{margin-left:-10.133333pt;}
._10_c00262{margin-left:-8.906667pt;}
._18_c00262{margin-left:-6.688267pt;}
._17_c00262{margin-left:-5.407069pt;}
._15_c00262{margin-left:-4.018397pt;}
._14_c00262{margin-left:-2.736035pt;}
._5_c00262{margin-left:-1.760000pt;}
._0_c00262{width:1.173333pt;}
._1_c00262{width:2.133333pt;}
._c_c00262{width:3.786667pt;}
._7_c00262{width:5.066667pt;}
._a_c00262{width:6.613333pt;}
._9_c00262{width:7.946667pt;}
._b_c00262{width:8.906667pt;}
._8_c00262{width:10.346667pt;}
._d_c00262{width:11.360000pt;}
._12_c00262{width:12.266667pt;}
._1a_c00262{width:13.650997pt;}
._e_c00262{width:14.880000pt;}
._2_c00262{width:16.000000pt;}
._f_c00262{width:16.906667pt;}
._3_c00262{width:18.560000pt;}
._4_c00262{width:20.000000pt;}
._16_c00262{width:22.762693pt;}
._19_c00262{width:23.882701pt;}
.fs1_c00262{font-size:45.333333pt;}
.fs0_c00262{font-size:53.333333pt;}
.y0_c00262{bottom:0.000000pt;}
.y2a_c00262{bottom:57.600020pt;}
.y29_c00262{bottom:98.266686pt;}
.y28_c00262{bottom:111.666686pt;}
.y27_c00262{bottom:125.133353pt;}
.y26_c00262{bottom:138.600020pt;}
.y25_c00262{bottom:152.333353pt;}
.y24_c00262{bottom:165.800020pt;}
.y23_c00262{bottom:179.533353pt;}
.y22_c00262{bottom:193.000020pt;}
.y21_c00262{bottom:207.066686pt;}
.y20_c00262{bottom:220.200020pt;}
.y1f_c00262{bottom:233.933353pt;}
.y1e_c00262{bottom:247.400020pt;}
.y1d_c00262{bottom:261.133353pt;}
.y1c_c00262{bottom:274.600020pt;}
.y1b_c00262{bottom:288.333353pt;}
.y19_c00262{bottom:336.333353pt;}
.y18_c00262{bottom:353.933353pt;}
.y17_c00262{bottom:370.866686pt;}
.y16_c00262{bottom:388.466686pt;}
.y15_c00262{bottom:405.466686pt;}
.y14_c00262{bottom:423.066686pt;}
.y13_c00262{bottom:440.000020pt;}
.y12_c00262{bottom:457.266686pt;}
.y11_c00262{bottom:474.600020pt;}
.y10_c00262{bottom:492.200020pt;}
.yf_c00262{bottom:509.133353pt;}
.ye_c00262{bottom:526.733353pt;}
.yd_c00262{bottom:544.000020pt;}
.yc_c00262{bottom:561.000020pt;}
.yb_c00262{bottom:578.600020pt;}
.ya_c00262{bottom:595.866686pt;}
.y9_c00262{bottom:613.133353pt;}
.y8_c00262{bottom:630.400020pt;}
.y7_c00262{bottom:647.666686pt;}
.y6_c00262{bottom:664.666686pt;}
.y5_c00262{bottom:682.200020pt;}
.y4_c00262{bottom:699.200020pt;}
.y3_c00262{bottom:716.200020pt;}
.y2_c00262{bottom:733.800020pt;}
.y1_c00262{bottom:751.066686pt;}
.y1a_c00262{bottom:788.200020pt;}
.h3_c00262{height:44.470052pt;}
.h4_c00262{height:44.492188pt;}
.h2_c00262{height:52.343750pt;}
.h1_c00262{height:851.333333pt;}
.h0_c00262{height:851.533333pt;}
.w1_c00262{width:572.000000pt;}
.w0_c00262{width:572.133333pt;}
.x0_c00262{left:0.000000pt;}
.x3_c00262{left:80.333333pt;}
.x1_c00262{left:81.266667pt;}
.x4_c00262{left:86.733333pt;}
.x2_c00262{left:95.333333pt;}
.x5_c00262{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_94e005c8818cc678a65224a8.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00263;src:url('chunks/assets/font_ee240ad2dea0f8b44b98e1d3.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00263{letter-spacing:0.000000px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00263{word-spacing:-15.000000px;}
.ws0_c00263{word-spacing:-12.750000px;}
.ws2_c00263{word-spacing:0.000000px;}
._c_c00263{margin-left:-12.840000px;}
._b_c00263{margin-left:-11.160000px;}
._10_c00263{margin-left:-10.020000px;}
._e_c00263{margin-left:-7.440000px;}
._15_c00263{margin-left:-6.302868px;}
._13_c00263{margin-left:-5.241108px;}
._d_c00263{margin-left:-4.140000px;}
._9_c00263{margin-left:-2.460000px;}
._6_c00263{margin-left:-1.140000px;}
._2_c00263{width:1.080000px;}
._1_c00263{width:2.460000px;}
._3_c00263{width:4.200000px;}
._4_c00263{width:5.940000px;}
._0_c00263{width:7.440000px;}
._5_c00263{width:8.580000px;}
._8_c00263{width:10.320000px;}
._14_c00263{width:11.480985px;}
._7_c00263{width:12.600000px;}
._a_c00263{width:13.920000px;}
._12_c00263{width:15.360039px;}
._f_c00263{width:17.040000px;}
._16_c00263{width:21.270000px;}
._11_c00263{width:26.370102px;}
._17_c00263{width:27.930000px;}
.fc1_c00263{color:transparent;}
.fc0_c00263{color:rgb(35,31,32);}
.fs1_c00263{font-size:51.000000px;}
.fs0_c00263{font-size:60.000000px;}
.y0_c00263{bottom:0.000000px;}
.y2c_c00263{bottom:64.425022px;}
.y2b_c00263{bottom:110.175022px;}
.y2a_c00263{bottom:125.625022px;}
.y29_c00263{bottom:141.150022px;}
.y28_c00263{bottom:155.925022px;}
.y27_c00263{bottom:171.375022px;}
.y26_c00263{bottom:186.525022px;}
.y25_c00263{bottom:201.975022px;}
.y24_c00263{bottom:217.125022px;}
.y23_c00263{bottom:232.950022px;}
.y22_c00263{bottom:247.725022px;}
.y21_c00263{bottom:263.550022px;}
.y20_c00263{bottom:278.625022px;}
.y1f_c00263{bottom:293.775022px;}
.y1e_c00263{bottom:309.225022px;}
.y1d_c00263{bottom:324.375022px;}
.y1c_c00263{bottom:339.525022px;}
.y1b_c00263{bottom:354.975022px;}
.y1a_c00263{bottom:370.125022px;}
.y19_c00263{bottom:385.575022px;}
.y18_c00263{bottom:400.725022px;}
.y17_c00263{bottom:416.550022px;}
.y16_c00263{bottom:431.325022px;}
.y15_c00263{bottom:446.775022px;}
.y14_c00263{bottom:461.925022px;}
.y13_c00263{bottom:477.375022px;}
.y11_c00263{bottom:534.225022px;}
.y10_c00263{bottom:553.350022px;}
.yf_c00263{bottom:572.775022px;}
.ye_c00263{bottom:592.200022px;}
.yd_c00263{bottom:612.000022px;}
.yc_c00263{bottom:631.125022px;}
.yb_c00263{bottom:650.925022px;}
.ya_c00263{bottom:670.350022px;}
.y9_c00263{bottom:689.775022px;}
.y8_c00263{bottom:709.125022px;}
.y7_c00263{bottom:728.625022px;}
.y6_c00263{bottom:748.125022px;}
.y5_c00263{bottom:767.175022px;}
.y4_c00263{bottom:786.600022px;}
.y3_c00263{bottom:805.725022px;}
.y2_c00263{bottom:825.150022px;}
.y1_c00263{bottom:844.575022px;}
.y12_c00263{bottom:886.725022px;}
.h3_c00263{height:50.028809px;}
.h4_c00263{height:50.053711px;}
.h2_c00263{height:58.886719px;}
.h1_c00263{height:957.750000px;}
.h0_c00263{height:957.975000px;}
.w0_c00263{width:641.850030px;}
.w1_c00263{width:642.000000px;}
.x0_c00263{left:0.000000px;}
.x1_c00263{left:81.000000px;}
.x4_c00263{left:87.825000px;}
.x2_c00263{left:97.200000px;}
.x5_c00263{left:121.350000px;}
.x3_c00263{left:144.750000px;}
.x6_c00263{left:531.375000px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls0_c00263{letter-spacing:0.000000pt;}
.ws1_c00263{word-spacing:-13.333333pt;}
.ws0_c00263{word-spacing:-11.333333pt;}
.ws2_c00263{word-spacing:0.000000pt;}
._c_c00263{margin-left:-11.413333pt;}
._b_c00263{margin-left:-9.920000pt;}
._10_c00263{margin-left:-8.906667pt;}
._e_c00263{margin-left:-6.613333pt;}
._15_c00263{margin-left:-5.602549pt;}
._13_c00263{margin-left:-4.658763pt;}
._d_c00263{margin-left:-3.680000pt;}
._9_c00263{margin-left:-2.186667pt;}
._6_c00263{margin-left:-1.013333pt;}
._2_c00263{width:0.960000pt;}
._1_c00263{width:2.186667pt;}
._3_c00263{width:3.733333pt;}
._4_c00263{width:5.280000pt;}
._0_c00263{width:6.613333pt;}
._5_c00263{width:7.626667pt;}
._8_c00263{width:9.173333pt;}
._14_c00263{width:10.205320pt;}
._7_c00263{width:11.200000pt;}
._a_c00263{width:12.373333pt;}
._12_c00263{width:13.653368pt;}
._f_c00263{width:15.146667pt;}
._16_c00263{width:18.906667pt;}
._11_c00263{width:23.440091pt;}
._17_c00263{width:24.826667pt;}
.fs1_c00263{font-size:45.333333pt;}
.fs0_c00263{font-size:53.333333pt;}
.y0_c00263{bottom:0.000000pt;}
.y2c_c00263{bottom:57.266686pt;}
.y2b_c00263{bottom:97.933353pt;}
.y2a_c00263{bottom:111.666686pt;}
.y29_c00263{bottom:125.466686pt;}
.y28_c00263{bottom:138.600020pt;}
.y27_c00263{bottom:152.333353pt;}
.y26_c00263{bottom:165.800020pt;}
.y25_c00263{bottom:179.533353pt;}
.y24_c00263{bottom:193.000020pt;}
.y23_c00263{bottom:207.066686pt;}
.y22_c00263{bottom:220.200020pt;}
.y21_c00263{bottom:234.266686pt;}
.y20_c00263{bottom:247.666686pt;}
.y1f_c00263{bottom:261.133353pt;}
.y1e_c00263{bottom:274.866686pt;}
.y1d_c00263{bottom:288.333353pt;}
.y1c_c00263{bottom:301.800020pt;}
.y1b_c00263{bottom:315.533353pt;}
.y1a_c00263{bottom:329.000020pt;}
.y19_c00263{bottom:342.733353pt;}
.y18_c00263{bottom:356.200020pt;}
.y17_c00263{bottom:370.266686pt;}
.y16_c00263{bottom:383.400020pt;}
.y15_c00263{bottom:397.133353pt;}
.y14_c00263{bottom:410.600020pt;}
.y13_c00263{bottom:424.333353pt;}
.y11_c00263{bottom:474.866686pt;}
.y10_c00263{bottom:491.866686pt;}
.yf_c00263{bottom:509.133353pt;}
.ye_c00263{bottom:526.400020pt;}
.yd_c00263{bottom:544.000020pt;}
.yc_c00263{bottom:561.000020pt;}
.yb_c00263{bottom:578.600020pt;}
.ya_c00263{bottom:595.866686pt;}
.y9_c00263{bottom:613.133353pt;}
.y8_c00263{bottom:630.333353pt;}
.y7_c00263{bottom:647.666686pt;}
.y6_c00263{bottom:665.000020pt;}
.y5_c00263{bottom:681.933353pt;}
.y4_c00263{bottom:699.200020pt;}
.y3_c00263{bottom:716.200020pt;}
.y2_c00263{bottom:733.466686pt;}
.y1_c00263{bottom:750.733353pt;}
.y12_c00263{bottom:788.200020pt;}
.h3_c00263{height:44.470052pt;}
.h4_c00263{height:44.492188pt;}
.h2_c00263{height:52.343750pt;}
.h1_c00263{height:851.333333pt;}
.h0_c00263{height:851.533333pt;}
.w0_c00263{width:570.533360pt;}
.w1_c00263{width:570.666667pt;}
.x0_c00263{left:0.000000pt;}
.x1_c00263{left:72.000000pt;}
.x4_c00263{left:78.066667pt;}
.x2_c00263{left:86.400000pt;}
.x5_c00263{left:107.866667pt;}
.x3_c00263{left:128.666667pt;}
.x6_c00263{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fac11b268d15b60804e006c1.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00264;src:url('chunks/assets/font_13405e563f55dd4554a641f8.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00264{letter-spacing:0.000000px;}
.sc__c00264{text-shadow:none;}
.sc0_c00264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00264{-webkit-text-stroke:0px transparent;}
.sc0_c00264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00264{word-spacing:-15.000000px;}
.ws0_c00264{word-spacing:-12.750000px;}
.ws2_c00264{word-spacing:0.000000px;}
._10_c00264{margin-left:-13.920000px;}
._d_c00264{margin-left:-11.820000px;}
._f_c00264{margin-left:-10.200000px;}
._11_c00264{margin-left:-7.980000px;}
._17_c00264{margin-left:-6.131889px;}
._15_c00264{margin-left:-4.922979px;}
._13_c00264{margin-left:-3.780000px;}
._5_c00264{margin-left:-2.400000px;}
._4_c00264{margin-left:-1.320000px;}
._0_c00264{width:1.440000px;}
._2_c00264{width:2.520000px;}
._9_c00264{width:3.780000px;}
._6_c00264{width:5.400000px;}
._8_c00264{width:6.480000px;}
._7_c00264{width:8.280000px;}
._3_c00264{width:9.600000px;}
._c_c00264{width:10.980000px;}
._1_c00264{width:12.300000px;}
._e_c00264{width:13.980000px;}
._19_c00264{width:15.708108px;}
._a_c00264{width:17.280000px;}
._b_c00264{width:18.900000px;}
._12_c00264{width:21.300000px;}
._16_c00264{width:24.089979px;}
._14_c00264{width:25.590000px;}
._18_c00264{width:27.090000px;}
.fc1_c00264{color:transparent;}
.fc0_c00264{color:rgb(35,31,32);}
.fs1_c00264{font-size:51.000000px;}
.fs0_c00264{font-size:60.000000px;}
.y0_c00264{bottom:0.000000px;}
.y27_c00264{bottom:64.800022px;}
.y26_c00264{bottom:110.175022px;}
.y25_c00264{bottom:125.325022px;}
.y24_c00264{bottom:140.775022px;}
.y23_c00264{bottom:155.925022px;}
.y22_c00264{bottom:171.750022px;}
.y21_c00264{bottom:186.825022px;}
.y20_c00264{bottom:202.350022px;}
.y1f_c00264{bottom:217.125022px;}
.y1e_c00264{bottom:232.575022px;}
.y1d_c00264{bottom:247.725022px;}
.y1c_c00264{bottom:263.175022px;}
.y1b_c00264{bottom:278.325022px;}
.y1a_c00264{bottom:294.150022px;}
.y19_c00264{bottom:308.925022px;}
.y18_c00264{bottom:324.375022px;}
.y17_c00264{bottom:339.525022px;}
.y16_c00264{bottom:354.975022px;}
.y15_c00264{bottom:370.125022px;}
.y14_c00264{bottom:385.575022px;}
.y12_c00264{bottom:514.800022px;}
.y11_c00264{bottom:534.225022px;}
.y10_c00264{bottom:553.350022px;}
.yf_c00264{bottom:573.150022px;}
.ye_c00264{bottom:592.575022px;}
.yd_c00264{bottom:612.000022px;}
.yc_c00264{bottom:631.125022px;}
.yb_c00264{bottom:650.550022px;}
.ya_c00264{bottom:670.350022px;}
.y9_c00264{bottom:689.775022px;}
.y8_c00264{bottom:709.200022px;}
.y7_c00264{bottom:728.625022px;}
.y6_c00264{bottom:748.125022px;}
.y5_c00264{bottom:767.175022px;}
.y4_c00264{bottom:786.225022px;}
.y3_c00264{bottom:805.725022px;}
.y2_c00264{bottom:825.150022px;}
.y1_c00264{bottom:844.950022px;}
.y13_c00264{bottom:886.725022px;}
.h3_c00264{height:50.028809px;}
.h4_c00264{height:50.053711px;}
.h2_c00264{height:58.886719px;}
.h1_c00264{height:957.750000px;}
.h0_c00264{height:957.975000px;}
.w1_c00264{width:643.500000px;}
.w0_c00264{width:643.650000px;}
.x0_c00264{left:0.000000px;}
.x1_c00264{left:91.050000px;}
.x2_c00264{left:97.575000px;}
.x4_c00264{left:129.225000px;}
.x3_c00264{left:131.025000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls0_c00264{letter-spacing:0.000000pt;}
.ws1_c00264{word-spacing:-13.333333pt;}
.ws0_c00264{word-spacing:-11.333333pt;}
.ws2_c00264{word-spacing:0.000000pt;}
._10_c00264{margin-left:-12.373333pt;}
._d_c00264{margin-left:-10.506667pt;}
._f_c00264{margin-left:-9.066667pt;}
._11_c00264{margin-left:-7.093333pt;}
._17_c00264{margin-left:-5.450568pt;}
._15_c00264{margin-left:-4.375981pt;}
._13_c00264{margin-left:-3.360000pt;}
._5_c00264{margin-left:-2.133333pt;}
._4_c00264{margin-left:-1.173333pt;}
._0_c00264{width:1.280000pt;}
._2_c00264{width:2.240000pt;}
._9_c00264{width:3.360000pt;}
._6_c00264{width:4.800000pt;}
._8_c00264{width:5.760000pt;}
._7_c00264{width:7.360000pt;}
._3_c00264{width:8.533333pt;}
._c_c00264{width:9.760000pt;}
._1_c00264{width:10.933333pt;}
._e_c00264{width:12.426667pt;}
._19_c00264{width:13.962763pt;}
._a_c00264{width:15.360000pt;}
._b_c00264{width:16.800000pt;}
._12_c00264{width:18.933333pt;}
._16_c00264{width:21.413315pt;}
._14_c00264{width:22.746667pt;}
._18_c00264{width:24.080000pt;}
.fs1_c00264{font-size:45.333333pt;}
.fs0_c00264{font-size:53.333333pt;}
.y0_c00264{bottom:0.000000pt;}
.y27_c00264{bottom:57.600020pt;}
.y26_c00264{bottom:97.933353pt;}
.y25_c00264{bottom:111.400020pt;}
.y24_c00264{bottom:125.133353pt;}
.y23_c00264{bottom:138.600020pt;}
.y22_c00264{bottom:152.666686pt;}
.y21_c00264{bottom:166.066686pt;}
.y20_c00264{bottom:179.866686pt;}
.y1f_c00264{bottom:193.000020pt;}
.y1e_c00264{bottom:206.733353pt;}
.y1d_c00264{bottom:220.200020pt;}
.y1c_c00264{bottom:233.933353pt;}
.y1b_c00264{bottom:247.400020pt;}
.y1a_c00264{bottom:261.466686pt;}
.y19_c00264{bottom:274.600020pt;}
.y18_c00264{bottom:288.333353pt;}
.y17_c00264{bottom:301.800020pt;}
.y16_c00264{bottom:315.533353pt;}
.y15_c00264{bottom:329.000020pt;}
.y14_c00264{bottom:342.733353pt;}
.y12_c00264{bottom:457.600020pt;}
.y11_c00264{bottom:474.866686pt;}
.y10_c00264{bottom:491.866686pt;}
.yf_c00264{bottom:509.466686pt;}
.ye_c00264{bottom:526.733353pt;}
.yd_c00264{bottom:544.000020pt;}
.yc_c00264{bottom:561.000020pt;}
.yb_c00264{bottom:578.266686pt;}
.ya_c00264{bottom:595.866686pt;}
.y9_c00264{bottom:613.133353pt;}
.y8_c00264{bottom:630.400020pt;}
.y7_c00264{bottom:647.666686pt;}
.y6_c00264{bottom:665.000020pt;}
.y5_c00264{bottom:681.933353pt;}
.y4_c00264{bottom:698.866686pt;}
.y3_c00264{bottom:716.200020pt;}
.y2_c00264{bottom:733.466686pt;}
.y1_c00264{bottom:751.066686pt;}
.y13_c00264{bottom:788.200020pt;}
.h3_c00264{height:44.470052pt;}
.h4_c00264{height:44.492188pt;}
.h2_c00264{height:52.343750pt;}
.h1_c00264{height:851.333333pt;}
.h0_c00264{height:851.533333pt;}
.w1_c00264{width:572.000000pt;}
.w0_c00264{width:572.133333pt;}
.x0_c00264{left:0.000000pt;}
.x1_c00264{left:80.933333pt;}
.x2_c00264{left:86.733333pt;}
.x4_c00264{left:114.866667pt;}
.x3_c00264{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_79540fb09849fbabab835550.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00265;src:url('chunks/assets/font_906c7489e22a5cdb498f6636.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00265{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00265{letter-spacing:0.000000px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00265{word-spacing:-15.000000px;}
.ws0_c00265{word-spacing:-12.750000px;}
.ws2_c00265{word-spacing:0.000000px;}
._15_c00265{margin-left:-13.920000px;}
._f_c00265{margin-left:-12.600000px;}
._9_c00265{margin-left:-10.800000px;}
._8_c00265{margin-left:-9.600000px;}
._e_c00265{margin-left:-8.160000px;}
._18_c00265{margin-left:-5.699979px;}
._14_c00265{margin-left:-4.020000px;}
._7_c00265{margin-left:-2.400000px;}
._a_c00265{margin-left:-1.320000px;}
._0_c00265{width:1.500000px;}
._2_c00265{width:2.760000px;}
._5_c00265{width:4.680000px;}
._13_c00265{width:5.820000px;}
._3_c00265{width:6.900000px;}
._16_c00265{width:7.920000px;}
._4_c00265{width:9.060000px;}
._6_c00265{width:10.140000px;}
._1_c00265{width:11.520000px;}
._b_c00265{width:13.920000px;}
._d_c00265{width:16.080000px;}
._c_c00265{width:17.760000px;}
._11_c00265{width:19.080000px;}
._10_c00265{width:21.300000px;}
._12_c00265{width:22.680000px;}
._17_c00265{width:25.050000px;}
._1a_c00265{width:26.250000px;}
._19_c00265{width:27.750000px;}
.fc1_c00265{color:transparent;}
.fc0_c00265{color:rgb(35,31,32);}
.fs1_c00265{font-size:51.000000px;}
.fs0_c00265{font-size:60.000000px;}
.y0_c00265{bottom:0.000000px;}
.y27_c00265{bottom:64.425022px;}
.y26_c00265{bottom:110.175022px;}
.y25_c00265{bottom:125.625022px;}
.y24_c00265{bottom:140.775022px;}
.y23_c00265{bottom:155.925022px;}
.y22_c00265{bottom:171.750022px;}
.y21_c00265{bottom:186.525022px;}
.y20_c00265{bottom:201.975022px;}
.y1f_c00265{bottom:217.125022px;}
.y1e_c00265{bottom:232.575022px;}
.y1d_c00265{bottom:248.025022px;}
.y1c_c00265{bottom:263.175022px;}
.y1b_c00265{bottom:278.325022px;}
.y1a_c00265{bottom:294.150022px;}
.y19_c00265{bottom:308.925022px;}
.y18_c00265{bottom:324.375022px;}
.y17_c00265{bottom:339.825022px;}
.y16_c00265{bottom:354.975022px;}
.y15_c00265{bottom:370.125022px;}
.y13_c00265{bottom:476.325022px;}
.y12_c00265{bottom:495.750022px;}
.y11_c00265{bottom:515.550022px;}
.y10_c00265{bottom:534.975022px;}
.yf_c00265{bottom:554.025022px;}
.ye_c00265{bottom:573.525022px;}
.yd_c00265{bottom:593.325022px;}
.yc_c00265{bottom:612.750022px;}
.yb_c00265{bottom:632.175022px;}
.ya_c00265{bottom:651.225022px;}
.y9_c00265{bottom:671.025022px;}
.y8_c00265{bottom:690.150022px;}
.y7_c00265{bottom:709.575022px;}
.y6_c00265{bottom:729.000022px;}
.y5_c00265{bottom:748.125022px;}
.y4_c00265{bottom:767.925022px;}
.y3_c00265{bottom:787.350022px;}
.y2_c00265{bottom:806.400022px;}
.y1_c00265{bottom:844.950022px;}
.y14_c00265{bottom:886.725022px;}
.h3_c00265{height:50.028809px;}
.h4_c00265{height:50.053711px;}
.h2_c00265{height:58.886719px;}
.h1_c00265{height:957.750000px;}
.h0_c00265{height:957.975000px;}
.w0_c00265{width:641.850030px;}
.w1_c00265{width:642.000000px;}
.x0_c00265{left:0.000000px;}
.x1_c00265{left:81.000000px;}
.x3_c00265{left:87.825000px;}
.x4_c00265{left:120.600000px;}
.x5_c00265{left:121.650000px;}
.x2_c00265{left:144.750000px;}
.x6_c00265{left:531.375000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls0_c00265{letter-spacing:0.000000pt;}
.ws1_c00265{word-spacing:-13.333333pt;}
.ws0_c00265{word-spacing:-11.333333pt;}
.ws2_c00265{word-spacing:0.000000pt;}
._15_c00265{margin-left:-12.373333pt;}
._f_c00265{margin-left:-11.200000pt;}
._9_c00265{margin-left:-9.600000pt;}
._8_c00265{margin-left:-8.533333pt;}
._e_c00265{margin-left:-7.253333pt;}
._18_c00265{margin-left:-5.066648pt;}
._14_c00265{margin-left:-3.573333pt;}
._7_c00265{margin-left:-2.133333pt;}
._a_c00265{margin-left:-1.173333pt;}
._0_c00265{width:1.333333pt;}
._2_c00265{width:2.453333pt;}
._5_c00265{width:4.160000pt;}
._13_c00265{width:5.173333pt;}
._3_c00265{width:6.133333pt;}
._16_c00265{width:7.040000pt;}
._4_c00265{width:8.053333pt;}
._6_c00265{width:9.013333pt;}
._1_c00265{width:10.240000pt;}
._b_c00265{width:12.373333pt;}
._d_c00265{width:14.293333pt;}
._c_c00265{width:15.786667pt;}
._11_c00265{width:16.960000pt;}
._10_c00265{width:18.933333pt;}
._12_c00265{width:20.160000pt;}
._17_c00265{width:22.266667pt;}
._1a_c00265{width:23.333333pt;}
._19_c00265{width:24.666667pt;}
.fs1_c00265{font-size:45.333333pt;}
.fs0_c00265{font-size:53.333333pt;}
.y0_c00265{bottom:0.000000pt;}
.y27_c00265{bottom:57.266686pt;}
.y26_c00265{bottom:97.933353pt;}
.y25_c00265{bottom:111.666686pt;}
.y24_c00265{bottom:125.133353pt;}
.y23_c00265{bottom:138.600020pt;}
.y22_c00265{bottom:152.666686pt;}
.y21_c00265{bottom:165.800020pt;}
.y20_c00265{bottom:179.533353pt;}
.y1f_c00265{bottom:193.000020pt;}
.y1e_c00265{bottom:206.733353pt;}
.y1d_c00265{bottom:220.466686pt;}
.y1c_c00265{bottom:233.933353pt;}
.y1b_c00265{bottom:247.400020pt;}
.y1a_c00265{bottom:261.466686pt;}
.y19_c00265{bottom:274.600020pt;}
.y18_c00265{bottom:288.333353pt;}
.y17_c00265{bottom:302.066686pt;}
.y16_c00265{bottom:315.533353pt;}
.y15_c00265{bottom:329.000020pt;}
.y13_c00265{bottom:423.400020pt;}
.y12_c00265{bottom:440.666686pt;}
.y11_c00265{bottom:458.266686pt;}
.y10_c00265{bottom:475.533353pt;}
.yf_c00265{bottom:492.466686pt;}
.ye_c00265{bottom:509.800020pt;}
.yd_c00265{bottom:527.400020pt;}
.yc_c00265{bottom:544.666686pt;}
.yb_c00265{bottom:561.933353pt;}
.ya_c00265{bottom:578.866686pt;}
.y9_c00265{bottom:596.466686pt;}
.y8_c00265{bottom:613.466686pt;}
.y7_c00265{bottom:630.733353pt;}
.y6_c00265{bottom:648.000020pt;}
.y5_c00265{bottom:665.000020pt;}
.y4_c00265{bottom:682.600020pt;}
.y3_c00265{bottom:699.866686pt;}
.y2_c00265{bottom:716.800020pt;}
.y1_c00265{bottom:751.066686pt;}
.y14_c00265{bottom:788.200020pt;}
.h3_c00265{height:44.470052pt;}
.h4_c00265{height:44.492188pt;}
.h2_c00265{height:52.343750pt;}
.h1_c00265{height:851.333333pt;}
.h0_c00265{height:851.533333pt;}
.w0_c00265{width:570.533360pt;}
.w1_c00265{width:570.666667pt;}
.x0_c00265{left:0.000000pt;}
.x1_c00265{left:72.000000pt;}
.x3_c00265{left:78.066667pt;}
.x4_c00265{left:107.200000pt;}
.x5_c00265{left:108.133333pt;}
.x2_c00265{left:128.666667pt;}
.x6_c00265{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9b8915915736f62cb066b4ae.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00266;src:url('chunks/assets/font_8a471d8f37f3406df7fe164f.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00266{letter-spacing:0.000000px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00266{word-spacing:-15.000000px;}
.ws0_c00266{word-spacing:-12.750000px;}
.ws2_c00266{word-spacing:0.000000px;}
._f_c00266{margin-left:-12.720000px;}
._3_c00266{margin-left:-11.700000px;}
._2_c00266{margin-left:-10.200000px;}
._15_c00266{margin-left:-6.780000px;}
._14_c00266{margin-left:-4.680000px;}
._6_c00266{margin-left:-3.000000px;}
._8_c00266{margin-left:-1.740000px;}
._0_c00266{width:1.380000px;}
._5_c00266{width:2.520000px;}
._4_c00266{width:3.960000px;}
._10_c00266{width:4.980000px;}
._1_c00266{width:6.060000px;}
._11_c00266{width:7.080000px;}
._b_c00266{width:8.160000px;}
._a_c00266{width:9.900000px;}
._c_c00266{width:11.280000px;}
._7_c00266{width:12.660000px;}
._d_c00266{width:13.980000px;}
._9_c00266{width:16.020000px;}
._e_c00266{width:17.280000px;}
._12_c00266{width:18.420000px;}
._17_c00266{width:20.160000px;}
._13_c00266{width:21.300000px;}
._19_c00266{width:22.590000px;}
._18_c00266{width:24.030042px;}
._16_c00266{width:25.500000px;}
.fc1_c00266{color:transparent;}
.fc0_c00266{color:rgb(35,31,32);}
.fs1_c00266{font-size:51.000000px;}
.fs0_c00266{font-size:60.000000px;}
.y0_c00266{bottom:0.000000px;}
.y27_c00266{bottom:64.425022px;}
.y26_c00266{bottom:110.175022px;}
.y25_c00266{bottom:125.325022px;}
.y24_c00266{bottom:140.775022px;}
.y23_c00266{bottom:155.925022px;}
.y22_c00266{bottom:171.375022px;}
.y21_c00266{bottom:186.825022px;}
.y20_c00266{bottom:202.350022px;}
.y1f_c00266{bottom:217.125022px;}
.y1e_c00266{bottom:232.575022px;}
.y1d_c00266{bottom:248.025022px;}
.y1c_c00266{bottom:263.550022px;}
.y1b_c00266{bottom:278.325022px;}
.y1a_c00266{bottom:293.775022px;}
.y19_c00266{bottom:309.225022px;}
.y17_c00266{bottom:417.600022px;}
.y16_c00266{bottom:437.025022px;}
.y15_c00266{bottom:456.150022px;}
.y14_c00266{bottom:475.950022px;}
.y13_c00266{bottom:495.375022px;}
.y12_c00266{bottom:514.800022px;}
.y11_c00266{bottom:533.925022px;}
.y10_c00266{bottom:553.350022px;}
.yf_c00266{bottom:572.775022px;}
.ye_c00266{bottom:592.575022px;}
.yd_c00266{bottom:611.625022px;}
.yc_c00266{bottom:631.125022px;}
.yb_c00266{bottom:650.925022px;}
.ya_c00266{bottom:670.350022px;}
.y9_c00266{bottom:689.775022px;}
.y8_c00266{bottom:709.200022px;}
.y7_c00266{bottom:728.625022px;}
.y6_c00266{bottom:748.050022px;}
.y5_c00266{bottom:767.475022px;}
.y4_c00266{bottom:786.225022px;}
.y3_c00266{bottom:806.025022px;}
.y2_c00266{bottom:825.525022px;}
.y1_c00266{bottom:844.950022px;}
.y18_c00266{bottom:886.725022px;}
.h3_c00266{height:50.028809px;}
.h4_c00266{height:50.053711px;}
.h2_c00266{height:58.886719px;}
.h1_c00266{height:957.750000px;}
.h0_c00266{height:957.975000px;}
.w1_c00266{width:643.500000px;}
.w0_c00266{width:643.650000px;}
.x0_c00266{left:0.000000px;}
.x2_c00266{left:90.375000px;}
.x1_c00266{left:91.425000px;}
.x4_c00266{left:97.575000px;}
.x3_c00266{left:107.250000px;}
.x5_c00266{left:131.025000px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls0_c00266{letter-spacing:0.000000pt;}
.ws1_c00266{word-spacing:-13.333333pt;}
.ws0_c00266{word-spacing:-11.333333pt;}
.ws2_c00266{word-spacing:0.000000pt;}
._f_c00266{margin-left:-11.306667pt;}
._3_c00266{margin-left:-10.400000pt;}
._2_c00266{margin-left:-9.066667pt;}
._15_c00266{margin-left:-6.026667pt;}
._14_c00266{margin-left:-4.160000pt;}
._6_c00266{margin-left:-2.666667pt;}
._8_c00266{margin-left:-1.546667pt;}
._0_c00266{width:1.226667pt;}
._5_c00266{width:2.240000pt;}
._4_c00266{width:3.520000pt;}
._10_c00266{width:4.426667pt;}
._1_c00266{width:5.386667pt;}
._11_c00266{width:6.293333pt;}
._b_c00266{width:7.253333pt;}
._a_c00266{width:8.800000pt;}
._c_c00266{width:10.026667pt;}
._7_c00266{width:11.253333pt;}
._d_c00266{width:12.426667pt;}
._9_c00266{width:14.240000pt;}
._e_c00266{width:15.360000pt;}
._12_c00266{width:16.373333pt;}
._17_c00266{width:17.920000pt;}
._13_c00266{width:18.933333pt;}
._19_c00266{width:20.080000pt;}
._18_c00266{width:21.360037pt;}
._16_c00266{width:22.666667pt;}
.fs1_c00266{font-size:45.333333pt;}
.fs0_c00266{font-size:53.333333pt;}
.y0_c00266{bottom:0.000000pt;}
.y27_c00266{bottom:57.266686pt;}
.y26_c00266{bottom:97.933353pt;}
.y25_c00266{bottom:111.400020pt;}
.y24_c00266{bottom:125.133353pt;}
.y23_c00266{bottom:138.600020pt;}
.y22_c00266{bottom:152.333353pt;}
.y21_c00266{bottom:166.066686pt;}
.y20_c00266{bottom:179.866686pt;}
.y1f_c00266{bottom:193.000020pt;}
.y1e_c00266{bottom:206.733353pt;}
.y1d_c00266{bottom:220.466686pt;}
.y1c_c00266{bottom:234.266686pt;}
.y1b_c00266{bottom:247.400020pt;}
.y1a_c00266{bottom:261.133353pt;}
.y19_c00266{bottom:274.866686pt;}
.y17_c00266{bottom:371.200020pt;}
.y16_c00266{bottom:388.466686pt;}
.y15_c00266{bottom:405.466686pt;}
.y14_c00266{bottom:423.066686pt;}
.y13_c00266{bottom:440.333353pt;}
.y12_c00266{bottom:457.600020pt;}
.y11_c00266{bottom:474.600020pt;}
.y10_c00266{bottom:491.866686pt;}
.yf_c00266{bottom:509.133353pt;}
.ye_c00266{bottom:526.733353pt;}
.yd_c00266{bottom:543.666686pt;}
.yc_c00266{bottom:561.000020pt;}
.yb_c00266{bottom:578.600020pt;}
.ya_c00266{bottom:595.866686pt;}
.y9_c00266{bottom:613.133353pt;}
.y8_c00266{bottom:630.400020pt;}
.y7_c00266{bottom:647.666686pt;}
.y6_c00266{bottom:664.933353pt;}
.y5_c00266{bottom:682.200020pt;}
.y4_c00266{bottom:698.866686pt;}
.y3_c00266{bottom:716.466686pt;}
.y2_c00266{bottom:733.800020pt;}
.y1_c00266{bottom:751.066686pt;}
.y18_c00266{bottom:788.200020pt;}
.h3_c00266{height:44.470052pt;}
.h4_c00266{height:44.492188pt;}
.h2_c00266{height:52.343750pt;}
.h1_c00266{height:851.333333pt;}
.h0_c00266{height:851.533333pt;}
.w1_c00266{width:572.000000pt;}
.w0_c00266{width:572.133333pt;}
.x0_c00266{left:0.000000pt;}
.x2_c00266{left:80.333333pt;}
.x1_c00266{left:81.266667pt;}
.x4_c00266{left:86.733333pt;}
.x3_c00266{left:95.333333pt;}
.x5_c00266{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b24682b07a0450cb4d39a36f.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00267;src:url('chunks/assets/font_c37f615b21852fd9a6ad4eb5.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00267{letter-spacing:0.000000px;}
.ls0_c00267{letter-spacing:17.250000px;}
.sc__c00267{text-shadow:none;}
.sc0_c00267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00267{-webkit-text-stroke:0px transparent;}
.sc0_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00267{word-spacing:-15.000000px;}
.ws1_c00267{word-spacing:-12.750000px;}
.ws2_c00267{word-spacing:0.000000px;}
._11_c00267{margin-left:-12.960000px;}
._10_c00267{margin-left:-11.520000px;}
._14_c00267{margin-left:-7.406940px;}
._f_c00267{margin-left:-4.920000px;}
._0_c00267{margin-left:-3.300000px;}
._1_c00267{margin-left:-1.500000px;}
._3_c00267{width:1.320000px;}
._4_c00267{width:2.940000px;}
._d_c00267{width:4.980000px;}
._2_c00267{width:6.600000px;}
._c_c00267{width:8.100000px;}
._a_c00267{width:10.080000px;}
._b_c00267{width:11.280000px;}
._9_c00267{width:12.600000px;}
._e_c00267{width:13.860000px;}
._13_c00267{width:16.200000px;}
._12_c00267{width:17.220000px;}
._5_c00267{width:18.900000px;}
._6_c00267{width:20.280000px;}
._7_c00267{width:21.960000px;}
._8_c00267{width:23.400000px;}
.fc2_c00267{color:transparent;}
.fc1_c00267{color:rgb(0,0,0);}
.fc0_c00267{color:rgb(35,31,32);}
.fs1_c00267{font-size:51.000000px;}
.fs0_c00267{font-size:60.000000px;}
.y0_c00267{bottom:0.000000px;}
.y24_c00267{bottom:64.425022px;}
.y23_c00267{bottom:110.175022px;}
.y22_c00267{bottom:150.525022px;}
.y21_c00267{bottom:169.950022px;}
.y20_c00267{bottom:189.000022px;}
.y1f_c00267{bottom:227.925022px;}
.y1e_c00267{bottom:247.350022px;}
.y1c_c00267{bottom:305.325022px;}
.y1b_c00267{bottom:324.750022px;}
.y1a_c00267{bottom:343.800022px;}
.y19_c00267{bottom:363.525022px;}
.y18_c00267{bottom:383.025022px;}
.y17_c00267{bottom:402.525022px;}
.y16_c00267{bottom:421.575022px;}
.y15_c00267{bottom:441.000022px;}
.y14_c00267{bottom:460.425022px;}
.y13_c00267{bottom:479.925022px;}
.y12_c00267{bottom:499.725022px;}
.y11_c00267{bottom:519.150022px;}
.y10_c00267{bottom:538.575022px;}
.yf_c00267{bottom:557.625022px;}
.ye_c00267{bottom:577.425022px;}
.yd_c00267{bottom:596.925022px;}
.yc_c00267{bottom:615.975022px;}
.yb_c00267{bottom:635.700022px;}
.ya_c00267{bottom:654.825022px;}
.y9_c00267{bottom:673.950022px;}
.y8_c00267{bottom:693.375022px;}
.y7_c00267{bottom:713.175022px;}
.y6_c00267{bottom:732.225022px;}
.y5_c00267{bottom:752.025022px;}
.y4_c00267{bottom:771.525022px;}
.y3_c00267{bottom:790.950022px;}
.y2_c00267{bottom:826.200022px;}
.y1_c00267{bottom:844.950022px;}
.y1d_c00267{bottom:886.725022px;}
.h3_c00267{height:50.028809px;}
.h4_c00267{height:50.053711px;}
.h2_c00267{height:58.886719px;}
.h1_c00267{height:957.750000px;}
.h0_c00267{height:957.975000px;}
.w0_c00267{width:641.850030px;}
.w1_c00267{width:642.000000px;}
.x0_c00267{left:0.000000px;}
.x3_c00267{left:80.250000px;}
.x1_c00267{left:81.375000px;}
.x6_c00267{left:87.825000px;}
.x2_c00267{left:96.825000px;}
.x5_c00267{left:100.425000px;}
.x4_c00267{left:143.625000px;}
.x7_c00267{left:531.375000px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls1_c00267{letter-spacing:0.000000pt;}
.ls0_c00267{letter-spacing:15.333333pt;}
.ws0_c00267{word-spacing:-13.333333pt;}
.ws1_c00267{word-spacing:-11.333333pt;}
.ws2_c00267{word-spacing:0.000000pt;}
._11_c00267{margin-left:-11.520000pt;}
._10_c00267{margin-left:-10.240000pt;}
._14_c00267{margin-left:-6.583947pt;}
._f_c00267{margin-left:-4.373333pt;}
._0_c00267{margin-left:-2.933333pt;}
._1_c00267{margin-left:-1.333333pt;}
._3_c00267{width:1.173333pt;}
._4_c00267{width:2.613333pt;}
._d_c00267{width:4.426667pt;}
._2_c00267{width:5.866667pt;}
._c_c00267{width:7.200000pt;}
._a_c00267{width:8.960000pt;}
._b_c00267{width:10.026667pt;}
._9_c00267{width:11.200000pt;}
._e_c00267{width:12.320000pt;}
._13_c00267{width:14.400000pt;}
._12_c00267{width:15.306667pt;}
._5_c00267{width:16.800000pt;}
._6_c00267{width:18.026667pt;}
._7_c00267{width:19.520000pt;}
._8_c00267{width:20.800000pt;}
.fs1_c00267{font-size:45.333333pt;}
.fs0_c00267{font-size:53.333333pt;}
.y0_c00267{bottom:0.000000pt;}
.y24_c00267{bottom:57.266686pt;}
.y23_c00267{bottom:97.933353pt;}
.y22_c00267{bottom:133.800020pt;}
.y21_c00267{bottom:151.066686pt;}
.y20_c00267{bottom:168.000020pt;}
.y1f_c00267{bottom:202.600020pt;}
.y1e_c00267{bottom:219.866686pt;}
.y1c_c00267{bottom:271.400020pt;}
.y1b_c00267{bottom:288.666686pt;}
.y1a_c00267{bottom:305.600020pt;}
.y19_c00267{bottom:323.133353pt;}
.y18_c00267{bottom:340.466686pt;}
.y17_c00267{bottom:357.800020pt;}
.y16_c00267{bottom:374.733353pt;}
.y15_c00267{bottom:392.000020pt;}
.y14_c00267{bottom:409.266686pt;}
.y13_c00267{bottom:426.600020pt;}
.y12_c00267{bottom:444.200020pt;}
.y11_c00267{bottom:461.466686pt;}
.y10_c00267{bottom:478.733353pt;}
.yf_c00267{bottom:495.666686pt;}
.ye_c00267{bottom:513.266686pt;}
.yd_c00267{bottom:530.600020pt;}
.yc_c00267{bottom:547.533353pt;}
.yb_c00267{bottom:565.066686pt;}
.ya_c00267{bottom:582.066686pt;}
.y9_c00267{bottom:599.066686pt;}
.y8_c00267{bottom:616.333353pt;}
.y7_c00267{bottom:633.933353pt;}
.y6_c00267{bottom:650.866686pt;}
.y5_c00267{bottom:668.466686pt;}
.y4_c00267{bottom:685.800020pt;}
.y3_c00267{bottom:703.066686pt;}
.y2_c00267{bottom:734.400020pt;}
.y1_c00267{bottom:751.066686pt;}
.y1d_c00267{bottom:788.200020pt;}
.h3_c00267{height:44.470052pt;}
.h4_c00267{height:44.492188pt;}
.h2_c00267{height:52.343750pt;}
.h1_c00267{height:851.333333pt;}
.h0_c00267{height:851.533333pt;}
.w0_c00267{width:570.533360pt;}
.w1_c00267{width:570.666667pt;}
.x0_c00267{left:0.000000pt;}
.x3_c00267{left:71.333333pt;}
.x1_c00267{left:72.333333pt;}
.x6_c00267{left:78.066667pt;}
.x2_c00267{left:86.066667pt;}
.x5_c00267{left:89.266667pt;}
.x4_c00267{left:127.666667pt;}
.x7_c00267{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba6afdfed0e83a7f52244760.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00268;src:url('chunks/assets/font_0377ff93b7b80393c9d4aff6.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00268{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00268{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00268{vertical-align:0.000000px;}
.ls0_c00268{letter-spacing:0.000000px;}
.sc__c00268{text-shadow:none;}
.sc0_c00268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00268{-webkit-text-stroke:0px transparent;}
.sc0_c00268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00268{word-spacing:-15.000000px;}
.ws1_c00268{word-spacing:-12.750000px;}
.ws2_c00268{word-spacing:0.000000px;}
._12_c00268{margin-left:-13.620000px;}
._9_c00268{margin-left:-11.340000px;}
._8_c00268{margin-left:-10.260000px;}
._15_c00268{margin-left:-6.360000px;}
._16_c00268{margin-left:-5.340000px;}
._13_c00268{margin-left:-3.780000px;}
._2_c00268{margin-left:-1.860000px;}
._0_c00268{width:1.200000px;}
._1_c00268{width:2.700000px;}
._3_c00268{width:3.900000px;}
._10_c00268{width:4.920000px;}
._f_c00268{width:5.940000px;}
._11_c00268{width:6.960000px;}
._e_c00268{width:8.280000px;}
._d_c00268{width:9.960000px;}
._4_c00268{width:11.700000px;}
._5_c00268{width:13.200000px;}
._14_c00268{width:16.020000px;}
._6_c00268{width:17.100000px;}
._c_c00268{width:18.840000px;}
._a_c00268{width:20.340000px;}
._7_c00268{width:21.420000px;}
._b_c00268{width:23.280000px;}
._17_c00268{width:24.629979px;}
._18_c00268{width:29.910093px;}
.fc1_c00268{color:transparent;}
.fc0_c00268{color:rgb(35,31,32);}
.fs1_c00268{font-size:51.000000px;}
.fs0_c00268{font-size:60.000000px;}
.y0_c00268{bottom:0.000000px;}
.y27_c00268{bottom:64.425022px;}
.y26_c00268{bottom:110.550022px;}
.y25_c00268{bottom:125.325022px;}
.y24_c00268{bottom:141.150022px;}
.y23_c00268{bottom:155.925022px;}
.y22_c00268{bottom:171.750022px;}
.y21_c00268{bottom:186.825022px;}
.y20_c00268{bottom:202.350022px;}
.y1f_c00268{bottom:217.125022px;}
.y1e_c00268{bottom:232.950022px;}
.y1d_c00268{bottom:247.725022px;}
.y1c_c00268{bottom:287.625022px;}
.y1b_c00268{bottom:307.125022px;}
.y1a_c00268{bottom:344.175022px;}
.y19_c00268{bottom:362.925022px;}
.y17_c00268{bottom:417.225022px;}
.y16_c00268{bottom:436.725022px;}
.y15_c00268{bottom:456.525022px;}
.y14_c00268{bottom:475.950022px;}
.y13_c00268{bottom:495.375022px;}
.y12_c00268{bottom:514.500022px;}
.y11_c00268{bottom:533.925022px;}
.y10_c00268{bottom:553.350022px;}
.yf_c00268{bottom:572.775022px;}
.ye_c00268{bottom:592.575022px;}
.yd_c00268{bottom:612.000022px;}
.yc_c00268{bottom:631.125022px;}
.yb_c00268{bottom:650.550022px;}
.ya_c00268{bottom:669.975022px;}
.y9_c00268{bottom:689.775022px;}
.y8_c00268{bottom:708.825022px;}
.y7_c00268{bottom:728.700022px;}
.y6_c00268{bottom:748.125022px;}
.y5_c00268{bottom:767.550022px;}
.y4_c00268{bottom:786.225022px;}
.y3_c00268{bottom:806.025022px;}
.y2_c00268{bottom:825.150022px;}
.y1_c00268{bottom:844.575022px;}
.y18_c00268{bottom:886.725022px;}
.h3_c00268{height:50.028809px;}
.h4_c00268{height:50.053711px;}
.h2_c00268{height:58.886719px;}
.h1_c00268{height:957.750000px;}
.h0_c00268{height:957.975000px;}
.w1_c00268{width:643.500000px;}
.w0_c00268{width:643.650000px;}
.x0_c00268{left:0.000000px;}
.x2_c00268{left:90.375000px;}
.x1_c00268{left:91.425000px;}
.x4_c00268{left:97.575000px;}
.x3_c00268{left:104.400000px;}
.x5_c00268{left:131.400000px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls0_c00268{letter-spacing:0.000000pt;}
.ws0_c00268{word-spacing:-13.333333pt;}
.ws1_c00268{word-spacing:-11.333333pt;}
.ws2_c00268{word-spacing:0.000000pt;}
._12_c00268{margin-left:-12.106667pt;}
._9_c00268{margin-left:-10.080000pt;}
._8_c00268{margin-left:-9.120000pt;}
._15_c00268{margin-left:-5.653333pt;}
._16_c00268{margin-left:-4.746667pt;}
._13_c00268{margin-left:-3.360000pt;}
._2_c00268{margin-left:-1.653333pt;}
._0_c00268{width:1.066667pt;}
._1_c00268{width:2.400000pt;}
._3_c00268{width:3.466667pt;}
._10_c00268{width:4.373333pt;}
._f_c00268{width:5.280000pt;}
._11_c00268{width:6.186667pt;}
._e_c00268{width:7.360000pt;}
._d_c00268{width:8.853333pt;}
._4_c00268{width:10.400000pt;}
._5_c00268{width:11.733333pt;}
._14_c00268{width:14.240000pt;}
._6_c00268{width:15.200000pt;}
._c_c00268{width:16.746667pt;}
._a_c00268{width:18.080000pt;}
._7_c00268{width:19.040000pt;}
._b_c00268{width:20.693333pt;}
._17_c00268{width:21.893315pt;}
._18_c00268{width:26.586749pt;}
.fs1_c00268{font-size:45.333333pt;}
.fs0_c00268{font-size:53.333333pt;}
.y0_c00268{bottom:0.000000pt;}
.y27_c00268{bottom:57.266686pt;}
.y26_c00268{bottom:98.266686pt;}
.y25_c00268{bottom:111.400020pt;}
.y24_c00268{bottom:125.466686pt;}
.y23_c00268{bottom:138.600020pt;}
.y22_c00268{bottom:152.666686pt;}
.y21_c00268{bottom:166.066686pt;}
.y20_c00268{bottom:179.866686pt;}
.y1f_c00268{bottom:193.000020pt;}
.y1e_c00268{bottom:207.066686pt;}
.y1d_c00268{bottom:220.200020pt;}
.y1c_c00268{bottom:255.666686pt;}
.y1b_c00268{bottom:273.000020pt;}
.y1a_c00268{bottom:305.933353pt;}
.y19_c00268{bottom:322.600020pt;}
.y17_c00268{bottom:370.866686pt;}
.y16_c00268{bottom:388.200020pt;}
.y15_c00268{bottom:405.800020pt;}
.y14_c00268{bottom:423.066686pt;}
.y13_c00268{bottom:440.333353pt;}
.y12_c00268{bottom:457.333353pt;}
.y11_c00268{bottom:474.600020pt;}
.y10_c00268{bottom:491.866686pt;}
.yf_c00268{bottom:509.133353pt;}
.ye_c00268{bottom:526.733353pt;}
.yd_c00268{bottom:544.000020pt;}
.yc_c00268{bottom:561.000020pt;}
.yb_c00268{bottom:578.266686pt;}
.ya_c00268{bottom:595.533353pt;}
.y9_c00268{bottom:613.133353pt;}
.y8_c00268{bottom:630.066686pt;}
.y7_c00268{bottom:647.733353pt;}
.y6_c00268{bottom:665.000020pt;}
.y5_c00268{bottom:682.266686pt;}
.y4_c00268{bottom:698.866686pt;}
.y3_c00268{bottom:716.466686pt;}
.y2_c00268{bottom:733.466686pt;}
.y1_c00268{bottom:750.733353pt;}
.y18_c00268{bottom:788.200020pt;}
.h3_c00268{height:44.470052pt;}
.h4_c00268{height:44.492188pt;}
.h2_c00268{height:52.343750pt;}
.h1_c00268{height:851.333333pt;}
.h0_c00268{height:851.533333pt;}
.w1_c00268{width:572.000000pt;}
.w0_c00268{width:572.133333pt;}
.x0_c00268{left:0.000000pt;}
.x2_c00268{left:80.333333pt;}
.x1_c00268{left:81.266667pt;}
.x4_c00268{left:86.733333pt;}
.x3_c00268{left:92.800000pt;}
.x5_c00268{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f4bc33bfc6d2b6641498ef13.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00269;src:url('chunks/assets/font_86e25c596ade232910bbfe16.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00269{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00269{letter-spacing:0.000000px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00269{word-spacing:-15.000000px;}
.ws0_c00269{word-spacing:-12.750000px;}
.ws2_c00269{word-spacing:0.000000px;}
._10_c00269{margin-left:-12.900000px;}
._c_c00269{margin-left:-11.700000px;}
._b_c00269{margin-left:-10.560000px;}
._12_c00269{margin-left:-7.886940px;}
._15_c00269{margin-left:-6.240000px;}
._11_c00269{margin-left:-4.680000px;}
._f_c00269{margin-left:-3.660000px;}
._13_c00269{margin-left:-2.400000px;}
._4_c00269{margin-left:-1.380000px;}
._0_c00269{width:1.680000px;}
._5_c00269{width:2.700000px;}
._9_c00269{width:3.840000px;}
._8_c00269{width:4.860000px;}
._1_c00269{width:6.120000px;}
._7_c00269{width:7.260000px;}
._2_c00269{width:8.400000px;}
._6_c00269{width:9.540000px;}
._3_c00269{width:10.620000px;}
._a_c00269{width:12.480000px;}
._d_c00269{width:13.860000px;}
._14_c00269{width:16.046940px;}
._e_c00269{width:17.460000px;}
._16_c00269{width:19.260000px;}
._18_c00269{width:23.910000px;}
._17_c00269{width:25.110030px;}
.fc1_c00269{color:transparent;}
.fc0_c00269{color:rgb(35,31,32);}
.fs1_c00269{font-size:51.000000px;}
.fs0_c00269{font-size:60.000000px;}
.y0_c00269{bottom:0.000000px;}
.y26_c00269{bottom:64.425022px;}
.y25_c00269{bottom:110.550022px;}
.y24_c00269{bottom:125.325022px;}
.y23_c00269{bottom:140.775022px;}
.y22_c00269{bottom:155.925022px;}
.y21_c00269{bottom:171.375022px;}
.y20_c00269{bottom:186.825022px;}
.y1f_c00269{bottom:201.975022px;}
.y1e_c00269{bottom:217.125022px;}
.y1d_c00269{bottom:258.525022px;}
.y1c_c00269{bottom:277.575022px;}
.y1b_c00269{bottom:297.375022px;}
.y1a_c00269{bottom:316.725022px;}
.y19_c00269{bottom:336.225022px;}
.y18_c00269{bottom:355.725022px;}
.y17_c00269{bottom:374.775022px;}
.y16_c00269{bottom:394.275022px;}
.y15_c00269{bottom:413.700022px;}
.y14_c00269{bottom:433.125022px;}
.y13_c00269{bottom:452.550022px;}
.y12_c00269{bottom:471.975022px;}
.y11_c00269{bottom:491.025022px;}
.y10_c00269{bottom:510.825022px;}
.yf_c00269{bottom:552.225022px;}
.ye_c00269{bottom:571.350022px;}
.yc_c00269{bottom:631.425022px;}
.yb_c00269{bottom:650.925022px;}
.ya_c00269{bottom:669.975022px;}
.y9_c00269{bottom:689.775022px;}
.y8_c00269{bottom:708.825022px;}
.y7_c00269{bottom:728.325022px;}
.y6_c00269{bottom:748.125022px;}
.y5_c00269{bottom:767.550022px;}
.y4_c00269{bottom:786.225022px;}
.y3_c00269{bottom:805.725022px;}
.y2_c00269{bottom:825.150022px;}
.y1_c00269{bottom:844.575022px;}
.yd_c00269{bottom:886.725022px;}
.h3_c00269{height:50.028809px;}
.h4_c00269{height:50.053711px;}
.h2_c00269{height:58.886719px;}
.h1_c00269{height:957.750000px;}
.h0_c00269{height:957.975000px;}
.w0_c00269{width:641.850030px;}
.w1_c00269{width:642.000000px;}
.x0_c00269{left:0.000000px;}
.x2_c00269{left:80.250000px;}
.x1_c00269{left:81.375000px;}
.x5_c00269{left:87.825000px;}
.x4_c00269{left:98.625000px;}
.x6_c00269{left:120.975000px;}
.x3_c00269{left:143.625000px;}
.x7_c00269{left:531.375000px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls0_c00269{letter-spacing:0.000000pt;}
.ws1_c00269{word-spacing:-13.333333pt;}
.ws0_c00269{word-spacing:-11.333333pt;}
.ws2_c00269{word-spacing:0.000000pt;}
._10_c00269{margin-left:-11.466667pt;}
._c_c00269{margin-left:-10.400000pt;}
._b_c00269{margin-left:-9.386667pt;}
._12_c00269{margin-left:-7.010613pt;}
._15_c00269{margin-left:-5.546667pt;}
._11_c00269{margin-left:-4.160000pt;}
._f_c00269{margin-left:-3.253333pt;}
._13_c00269{margin-left:-2.133333pt;}
._4_c00269{margin-left:-1.226667pt;}
._0_c00269{width:1.493333pt;}
._5_c00269{width:2.400000pt;}
._9_c00269{width:3.413333pt;}
._8_c00269{width:4.320000pt;}
._1_c00269{width:5.440000pt;}
._7_c00269{width:6.453333pt;}
._2_c00269{width:7.466667pt;}
._6_c00269{width:8.480000pt;}
._3_c00269{width:9.440000pt;}
._a_c00269{width:11.093333pt;}
._d_c00269{width:12.320000pt;}
._14_c00269{width:14.263947pt;}
._e_c00269{width:15.520000pt;}
._16_c00269{width:17.120000pt;}
._18_c00269{width:21.253333pt;}
._17_c00269{width:22.320027pt;}
.fs1_c00269{font-size:45.333333pt;}
.fs0_c00269{font-size:53.333333pt;}
.y0_c00269{bottom:0.000000pt;}
.y26_c00269{bottom:57.266686pt;}
.y25_c00269{bottom:98.266686pt;}
.y24_c00269{bottom:111.400020pt;}
.y23_c00269{bottom:125.133353pt;}
.y22_c00269{bottom:138.600020pt;}
.y21_c00269{bottom:152.333353pt;}
.y20_c00269{bottom:166.066686pt;}
.y1f_c00269{bottom:179.533353pt;}
.y1e_c00269{bottom:193.000020pt;}
.y1d_c00269{bottom:229.800020pt;}
.y1c_c00269{bottom:246.733353pt;}
.y1b_c00269{bottom:264.333353pt;}
.y1a_c00269{bottom:281.533353pt;}
.y19_c00269{bottom:298.866686pt;}
.y18_c00269{bottom:316.200020pt;}
.y17_c00269{bottom:333.133353pt;}
.y16_c00269{bottom:350.466686pt;}
.y15_c00269{bottom:367.733353pt;}
.y14_c00269{bottom:385.000020pt;}
.y13_c00269{bottom:402.266686pt;}
.y12_c00269{bottom:419.533353pt;}
.y11_c00269{bottom:436.466686pt;}
.y10_c00269{bottom:454.066686pt;}
.yf_c00269{bottom:490.866686pt;}
.ye_c00269{bottom:507.866686pt;}
.yc_c00269{bottom:561.266686pt;}
.yb_c00269{bottom:578.600020pt;}
.ya_c00269{bottom:595.533353pt;}
.y9_c00269{bottom:613.133353pt;}
.y8_c00269{bottom:630.066686pt;}
.y7_c00269{bottom:647.400020pt;}
.y6_c00269{bottom:665.000020pt;}
.y5_c00269{bottom:682.266686pt;}
.y4_c00269{bottom:698.866686pt;}
.y3_c00269{bottom:716.200020pt;}
.y2_c00269{bottom:733.466686pt;}
.y1_c00269{bottom:750.733353pt;}
.yd_c00269{bottom:788.200020pt;}
.h3_c00269{height:44.470052pt;}
.h4_c00269{height:44.492188pt;}
.h2_c00269{height:52.343750pt;}
.h1_c00269{height:851.333333pt;}
.h0_c00269{height:851.533333pt;}
.w0_c00269{width:570.533360pt;}
.w1_c00269{width:570.666667pt;}
.x0_c00269{left:0.000000pt;}
.x2_c00269{left:71.333333pt;}
.x1_c00269{left:72.333333pt;}
.x5_c00269{left:78.066667pt;}
.x4_c00269{left:87.666667pt;}
.x6_c00269{left:107.533333pt;}
.x3_c00269{left:127.666667pt;}
.x7_c00269{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e9ff098775141e4681217fae.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00270;src:url('chunks/assets/font_2b2949f74818cbdfa7ff7dde.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00270{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00270{letter-spacing:0.000000px;}
.sc__c00270{text-shadow:none;}
.sc0_c00270{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00270{-webkit-text-stroke:0px transparent;}
.sc0_c00270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00270{word-spacing:-15.000000px;}
.ws1_c00270{word-spacing:-12.750000px;}
.ws2_c00270{word-spacing:0.000000px;}
._16_c00270{margin-left:-13.860000px;}
._5_c00270{margin-left:-12.600000px;}
._4_c00270{margin-left:-10.800000px;}
._1b_c00270{margin-left:-8.621916px;}
._12_c00270{margin-left:-7.260000px;}
._18_c00270{margin-left:-5.361042px;}
._17_c00270{margin-left:-3.558039px;}
._7_c00270{margin-left:-2.100000px;}
._8_c00270{margin-left:-1.080000px;}
._3_c00270{width:1.020000px;}
._0_c00270{width:2.100000px;}
._1_c00270{width:3.300000px;}
._f_c00270{width:4.320000px;}
._14_c00270{width:5.880000px;}
._10_c00270{width:7.140000px;}
._15_c00270{width:8.940000px;}
._13_c00270{width:9.960000px;}
._6_c00270{width:11.220000px;}
._11_c00270{width:12.480000px;}
._2_c00270{width:13.800000px;}
._1a_c00270{width:15.117000px;}
._e_c00270{width:16.140000px;}
._a_c00270{width:18.180000px;}
._9_c00270{width:19.920000px;}
._b_c00270{width:21.480000px;}
._c_c00270{width:23.100000px;}
._d_c00270{width:24.300000px;}
._1c_c00270{width:25.349979px;}
._19_c00270{width:26.850000px;}
.fc1_c00270{color:transparent;}
.fc0_c00270{color:rgb(35,31,32);}
.fs1_c00270{font-size:51.000000px;}
.fs0_c00270{font-size:60.000000px;}
.y0_c00270{bottom:0.000000px;}
.y2c_c00270{bottom:64.425022px;}
.y2b_c00270{bottom:110.175022px;}
.y2a_c00270{bottom:125.325022px;}
.y29_c00270{bottom:140.775022px;}
.y28_c00270{bottom:155.925022px;}
.y27_c00270{bottom:171.750022px;}
.y26_c00270{bottom:186.825022px;}
.y25_c00270{bottom:202.350022px;}
.y24_c00270{bottom:217.425022px;}
.y23_c00270{bottom:232.950022px;}
.y22_c00270{bottom:248.025022px;}
.y21_c00270{bottom:263.550022px;}
.y20_c00270{bottom:278.325022px;}
.y1f_c00270{bottom:293.775022px;}
.y1e_c00270{bottom:308.925022px;}
.y1d_c00270{bottom:324.750022px;}
.y1c_c00270{bottom:339.525022px;}
.y1b_c00270{bottom:354.975022px;}
.y1a_c00270{bottom:370.125022px;}
.y19_c00270{bottom:385.950022px;}
.y18_c00270{bottom:400.725022px;}
.y17_c00270{bottom:416.175022px;}
.y16_c00270{bottom:431.325022px;}
.y14_c00270{bottom:475.575022px;}
.y13_c00270{bottom:495.375022px;}
.y12_c00270{bottom:514.425022px;}
.y11_c00270{bottom:533.925022px;}
.y10_c00270{bottom:553.725022px;}
.yf_c00270{bottom:573.150022px;}
.ye_c00270{bottom:592.575022px;}
.yd_c00270{bottom:612.000022px;}
.yc_c00270{bottom:631.425022px;}
.yb_c00270{bottom:650.925022px;}
.ya_c00270{bottom:670.350022px;}
.y9_c00270{bottom:689.400022px;}
.y8_c00270{bottom:709.200022px;}
.y7_c00270{bottom:728.625022px;}
.y6_c00270{bottom:747.750022px;}
.y5_c00270{bottom:767.175022px;}
.y4_c00270{bottom:786.600022px;}
.y3_c00270{bottom:806.025022px;}
.y2_c00270{bottom:825.150022px;}
.y1_c00270{bottom:844.575022px;}
.y15_c00270{bottom:886.725022px;}
.h3_c00270{height:50.028809px;}
.h4_c00270{height:50.053711px;}
.h2_c00270{height:58.886719px;}
.h1_c00270{height:957.750000px;}
.h0_c00270{height:957.975000px;}
.w1_c00270{width:643.500000px;}
.w0_c00270{width:643.650000px;}
.x0_c00270{left:0.000000px;}
.x3_c00270{left:90.375000px;}
.x1_c00270{left:91.425000px;}
.x5_c00270{left:97.575000px;}
.x2_c00270{left:107.250000px;}
.x4_c00270{left:131.025000px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls0_c00270{letter-spacing:0.000000pt;}
.ws0_c00270{word-spacing:-13.333333pt;}
.ws1_c00270{word-spacing:-11.333333pt;}
.ws2_c00270{word-spacing:0.000000pt;}
._16_c00270{margin-left:-12.320000pt;}
._5_c00270{margin-left:-11.200000pt;}
._4_c00270{margin-left:-9.600000pt;}
._1b_c00270{margin-left:-7.663925pt;}
._12_c00270{margin-left:-6.453333pt;}
._18_c00270{margin-left:-4.765371pt;}
._17_c00270{margin-left:-3.162701pt;}
._7_c00270{margin-left:-1.866667pt;}
._8_c00270{margin-left:-0.960000pt;}
._3_c00270{width:0.906667pt;}
._0_c00270{width:1.866667pt;}
._1_c00270{width:2.933333pt;}
._f_c00270{width:3.840000pt;}
._14_c00270{width:5.226667pt;}
._10_c00270{width:6.346667pt;}
._15_c00270{width:7.946667pt;}
._13_c00270{width:8.853333pt;}
._6_c00270{width:9.973333pt;}
._11_c00270{width:11.093333pt;}
._2_c00270{width:12.266667pt;}
._1a_c00270{width:13.437333pt;}
._e_c00270{width:14.346667pt;}
._a_c00270{width:16.160000pt;}
._9_c00270{width:17.706667pt;}
._b_c00270{width:19.093333pt;}
._c_c00270{width:20.533333pt;}
._d_c00270{width:21.600000pt;}
._1c_c00270{width:22.533315pt;}
._19_c00270{width:23.866667pt;}
.fs1_c00270{font-size:45.333333pt;}
.fs0_c00270{font-size:53.333333pt;}
.y0_c00270{bottom:0.000000pt;}
.y2c_c00270{bottom:57.266686pt;}
.y2b_c00270{bottom:97.933353pt;}
.y2a_c00270{bottom:111.400020pt;}
.y29_c00270{bottom:125.133353pt;}
.y28_c00270{bottom:138.600020pt;}
.y27_c00270{bottom:152.666686pt;}
.y26_c00270{bottom:166.066686pt;}
.y25_c00270{bottom:179.866686pt;}
.y24_c00270{bottom:193.266686pt;}
.y23_c00270{bottom:207.066686pt;}
.y22_c00270{bottom:220.466686pt;}
.y21_c00270{bottom:234.266686pt;}
.y20_c00270{bottom:247.400020pt;}
.y1f_c00270{bottom:261.133353pt;}
.y1e_c00270{bottom:274.600020pt;}
.y1d_c00270{bottom:288.666686pt;}
.y1c_c00270{bottom:301.800020pt;}
.y1b_c00270{bottom:315.533353pt;}
.y1a_c00270{bottom:329.000020pt;}
.y19_c00270{bottom:343.066686pt;}
.y18_c00270{bottom:356.200020pt;}
.y17_c00270{bottom:369.933353pt;}
.y16_c00270{bottom:383.400020pt;}
.y14_c00270{bottom:422.733353pt;}
.y13_c00270{bottom:440.333353pt;}
.y12_c00270{bottom:457.266686pt;}
.y11_c00270{bottom:474.600020pt;}
.y10_c00270{bottom:492.200020pt;}
.yf_c00270{bottom:509.466686pt;}
.ye_c00270{bottom:526.733353pt;}
.yd_c00270{bottom:544.000020pt;}
.yc_c00270{bottom:561.266686pt;}
.yb_c00270{bottom:578.600020pt;}
.ya_c00270{bottom:595.866686pt;}
.y9_c00270{bottom:612.800020pt;}
.y8_c00270{bottom:630.400020pt;}
.y7_c00270{bottom:647.666686pt;}
.y6_c00270{bottom:664.666686pt;}
.y5_c00270{bottom:681.933353pt;}
.y4_c00270{bottom:699.200020pt;}
.y3_c00270{bottom:716.466686pt;}
.y2_c00270{bottom:733.466686pt;}
.y1_c00270{bottom:750.733353pt;}
.y15_c00270{bottom:788.200020pt;}
.h3_c00270{height:44.470052pt;}
.h4_c00270{height:44.492188pt;}
.h2_c00270{height:52.343750pt;}
.h1_c00270{height:851.333333pt;}
.h0_c00270{height:851.533333pt;}
.w1_c00270{width:572.000000pt;}
.w0_c00270{width:572.133333pt;}
.x0_c00270{left:0.000000pt;}
.x3_c00270{left:80.333333pt;}
.x1_c00270{left:81.266667pt;}
.x5_c00270{left:86.733333pt;}
.x2_c00270{left:95.333333pt;}
.x4_c00270{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1ca90c26a25c18fddbaae23d.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00271;src:url('chunks/assets/font_7f91ee5128c33bcce2ad7d13.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00271{letter-spacing:0.000000px;}
.sc__c00271{text-shadow:none;}
.sc0_c00271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00271{-webkit-text-stroke:0px transparent;}
.sc0_c00271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00271{word-spacing:-15.000000px;}
.ws1_c00271{word-spacing:-12.750000px;}
.ws2_c00271{word-spacing:0.000000px;}
._f_c00271{margin-left:-12.039057px;}
._e_c00271{margin-left:-10.460943px;}
._17_c00271{margin-left:-9.107916px;}
._2_c00271{margin-left:-7.307892px;}
._13_c00271{margin-left:-6.176994px;}
._11_c00271{margin-left:-5.093982px;}
._12_c00271{margin-left:-3.729138px;}
._6_c00271{margin-left:-2.550000px;}
._7_c00271{margin-left:-1.355988px;}
._0_c00271{width:1.133985px;}
._1_c00271{width:2.151027px;}
._3_c00271{width:3.821991px;}
._5_c00271{width:5.661000px;}
._4_c00271{width:7.199976px;}
._d_c00271{width:8.976054px;}
._a_c00271{width:10.620000px;}
._b_c00271{width:12.429123px;}
._c_c00271{width:13.836090px;}
._14_c00271{width:15.026973px;}
._9_c00271{width:16.260000px;}
._10_c00271{width:18.252030px;}
._8_c00271{width:20.082255px;}
._18_c00271{width:21.452409px;}
._19_c00271{width:24.312006px;}
._16_c00271{width:25.661976px;}
._15_c00271{width:26.861976px;}
.fc1_c00271{color:transparent;}
.fc0_c00271{color:rgb(35,31,32);}
.fs0_c00271{font-size:51.000000px;}
.fs1_c00271{font-size:60.000000px;}
.y0_c00271{bottom:0.000000px;}
.y2d_c00271{bottom:64.425022px;}
.y2c_c00271{bottom:110.175022px;}
.y2b_c00271{bottom:125.625022px;}
.y2a_c00271{bottom:140.775022px;}
.y29_c00271{bottom:156.225022px;}
.y28_c00271{bottom:171.375022px;}
.y27_c00271{bottom:186.525022px;}
.y26_c00271{bottom:201.975022px;}
.y25_c00271{bottom:217.125022px;}
.y24_c00271{bottom:232.575022px;}
.y23_c00271{bottom:247.725022px;}
.y22_c00271{bottom:263.175022px;}
.y21_c00271{bottom:278.325022px;}
.y20_c00271{bottom:293.775022px;}
.y1f_c00271{bottom:308.925022px;}
.y1e_c00271{bottom:324.375022px;}
.y1d_c00271{bottom:339.525022px;}
.y1c_c00271{bottom:354.975022px;}
.y1b_c00271{bottom:370.425022px;}
.y1a_c00271{bottom:385.575022px;}
.y19_c00271{bottom:400.725022px;}
.y18_c00271{bottom:416.175022px;}
.y17_c00271{bottom:431.325022px;}
.y16_c00271{bottom:446.775022px;}
.y15_c00271{bottom:461.925022px;}
.y14_c00271{bottom:477.750022px;}
.y13_c00271{bottom:492.525022px;}
.y12_c00271{bottom:507.975022px;}
.y11_c00271{bottom:553.725022px;}
.y10_c00271{bottom:572.775022px;}
.yf_c00271{bottom:592.200022px;}
.ye_c00271{bottom:611.700022px;}
.yd_c00271{bottom:631.125022px;}
.yc_c00271{bottom:650.550022px;}
.yb_c00271{bottom:670.350022px;}
.ya_c00271{bottom:689.775022px;}
.y9_c00271{bottom:709.275022px;}
.y8_c00271{bottom:728.700022px;}
.y7_c00271{bottom:748.125022px;}
.y6_c00271{bottom:767.550022px;}
.y5_c00271{bottom:786.600022px;}
.y4_c00271{bottom:806.025022px;}
.y3_c00271{bottom:825.150022px;}
.y2_c00271{bottom:844.575022px;}
.y1_c00271{bottom:886.725022px;}
.h2_c00271{height:50.028809px;}
.h4_c00271{height:50.053711px;}
.h3_c00271{height:58.886719px;}
.h1_c00271{height:957.750000px;}
.h0_c00271{height:957.975000px;}
.w0_c00271{width:641.850030px;}
.w1_c00271{width:642.000000px;}
.x0_c00271{left:0.000000px;}
.x2_c00271{left:80.250000px;}
.x3_c00271{left:81.375000px;}
.x6_c00271{left:87.825000px;}
.x4_c00271{left:96.450000px;}
.x5_c00271{left:120.975000px;}
.x1_c00271{left:143.625000px;}
.x7_c00271{left:531.375000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls0_c00271{letter-spacing:0.000000pt;}
.ws0_c00271{word-spacing:-13.333333pt;}
.ws1_c00271{word-spacing:-11.333333pt;}
.ws2_c00271{word-spacing:0.000000pt;}
._f_c00271{margin-left:-10.701384pt;}
._e_c00271{margin-left:-9.298616pt;}
._17_c00271{margin-left:-8.095925pt;}
._2_c00271{margin-left:-6.495904pt;}
._13_c00271{margin-left:-5.490661pt;}
._11_c00271{margin-left:-4.527984pt;}
._12_c00271{margin-left:-3.314789pt;}
._6_c00271{margin-left:-2.266667pt;}
._7_c00271{margin-left:-1.205323pt;}
._0_c00271{width:1.007987pt;}
._1_c00271{width:1.912024pt;}
._3_c00271{width:3.397325pt;}
._5_c00271{width:5.032000pt;}
._4_c00271{width:6.399979pt;}
._d_c00271{width:7.978715pt;}
._a_c00271{width:9.440000pt;}
._b_c00271{width:11.048109pt;}
._c_c00271{width:12.298747pt;}
._14_c00271{width:13.357309pt;}
._9_c00271{width:14.453333pt;}
._10_c00271{width:16.224027pt;}
._8_c00271{width:17.850893pt;}
._18_c00271{width:19.068808pt;}
._19_c00271{width:21.610672pt;}
._16_c00271{width:22.810645pt;}
._15_c00271{width:23.877312pt;}
.fs0_c00271{font-size:45.333333pt;}
.fs1_c00271{font-size:53.333333pt;}
.y0_c00271{bottom:0.000000pt;}
.y2d_c00271{bottom:57.266686pt;}
.y2c_c00271{bottom:97.933353pt;}
.y2b_c00271{bottom:111.666686pt;}
.y2a_c00271{bottom:125.133353pt;}
.y29_c00271{bottom:138.866686pt;}
.y28_c00271{bottom:152.333353pt;}
.y27_c00271{bottom:165.800020pt;}
.y26_c00271{bottom:179.533353pt;}
.y25_c00271{bottom:193.000020pt;}
.y24_c00271{bottom:206.733353pt;}
.y23_c00271{bottom:220.200020pt;}
.y22_c00271{bottom:233.933353pt;}
.y21_c00271{bottom:247.400020pt;}
.y20_c00271{bottom:261.133353pt;}
.y1f_c00271{bottom:274.600020pt;}
.y1e_c00271{bottom:288.333353pt;}
.y1d_c00271{bottom:301.800020pt;}
.y1c_c00271{bottom:315.533353pt;}
.y1b_c00271{bottom:329.266686pt;}
.y1a_c00271{bottom:342.733353pt;}
.y19_c00271{bottom:356.200020pt;}
.y18_c00271{bottom:369.933353pt;}
.y17_c00271{bottom:383.400020pt;}
.y16_c00271{bottom:397.133353pt;}
.y15_c00271{bottom:410.600020pt;}
.y14_c00271{bottom:424.666686pt;}
.y13_c00271{bottom:437.800020pt;}
.y12_c00271{bottom:451.533353pt;}
.y11_c00271{bottom:492.200020pt;}
.y10_c00271{bottom:509.133353pt;}
.yf_c00271{bottom:526.400020pt;}
.ye_c00271{bottom:543.733353pt;}
.yd_c00271{bottom:561.000020pt;}
.yc_c00271{bottom:578.266686pt;}
.yb_c00271{bottom:595.866686pt;}
.ya_c00271{bottom:613.133353pt;}
.y9_c00271{bottom:630.466686pt;}
.y8_c00271{bottom:647.733353pt;}
.y7_c00271{bottom:665.000020pt;}
.y6_c00271{bottom:682.266686pt;}
.y5_c00271{bottom:699.200020pt;}
.y4_c00271{bottom:716.466686pt;}
.y3_c00271{bottom:733.466686pt;}
.y2_c00271{bottom:750.733353pt;}
.y1_c00271{bottom:788.200020pt;}
.h2_c00271{height:44.470052pt;}
.h4_c00271{height:44.492188pt;}
.h3_c00271{height:52.343750pt;}
.h1_c00271{height:851.333333pt;}
.h0_c00271{height:851.533333pt;}
.w0_c00271{width:570.533360pt;}
.w1_c00271{width:570.666667pt;}
.x0_c00271{left:0.000000pt;}
.x2_c00271{left:71.333333pt;}
.x3_c00271{left:72.333333pt;}
.x6_c00271{left:78.066667pt;}
.x4_c00271{left:85.733333pt;}
.x5_c00271{left:107.533333pt;}
.x1_c00271{left:127.666667pt;}
.x7_c00271{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_13f4ad6afa4ae36f5e0d49e1.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00272;src:url('chunks/assets/font_adca6bdc042c704c554250c8.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00272{letter-spacing:0.000000px;}
.sc__c00272{text-shadow:none;}
.sc0_c00272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00272{-webkit-text-stroke:0px transparent;}
.sc0_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00272{word-spacing:-15.000000px;}
.ws0_c00272{word-spacing:-12.750000px;}
.ws2_c00272{word-spacing:0.000000px;}
._a_c00272{margin-left:-15.053733px;}
._16_c00272{margin-left:-13.902993px;}
._12_c00272{margin-left:-12.683322px;}
._11_c00272{margin-left:-11.208339px;}
._14_c00272{margin-left:-9.916725px;}
._6_c00272{margin-left:-8.400000px;}
._9_c00272{margin-left:-7.122012px;}
._19_c00272{margin-left:-5.117391px;}
._4_c00272{margin-left:-3.804243px;}
._0_c00272{margin-left:-2.622012px;}
._2_c00272{margin-left:-1.539027px;}
._3_c00272{width:1.062024px;}
._1_c00272{width:2.400009px;}
._f_c00272{width:4.062015px;}
._1b_c00272{width:5.096859px;}
._13_c00272{width:6.311664px;}
._10_c00272{width:7.457976px;}
._d_c00272{width:8.789880px;}
._e_c00272{width:10.140000px;}
._15_c00272{width:11.256333px;}
._1a_c00272{width:14.147910px;}
._1d_c00272{width:15.164952px;}
._b_c00272{width:16.775976px;}
._7_c00272{width:18.000000px;}
._c_c00272{width:19.595958px;}
._8_c00272{width:21.384024px;}
._17_c00272{width:22.691928px;}
._5_c00272{width:24.257976px;}
._18_c00272{width:26.093835px;}
._1e_c00272{width:27.333042px;}
._1c_c00272{width:28.872171px;}
.fc1_c00272{color:transparent;}
.fc0_c00272{color:rgb(35,31,32);}
.fs0_c00272{font-size:51.000000px;}
.fs1_c00272{font-size:60.000000px;}
.y0_c00272{bottom:0.000000px;}
.y2d_c00272{bottom:64.800022px;}
.y2c_c00272{bottom:110.175022px;}
.y2b_c00272{bottom:125.625022px;}
.y2a_c00272{bottom:141.000022px;}
.y29_c00272{bottom:155.925022px;}
.y28_c00272{bottom:171.300022px;}
.y27_c00272{bottom:186.825022px;}
.y26_c00272{bottom:202.350022px;}
.y25_c00272{bottom:217.425022px;}
.y24_c00272{bottom:232.950022px;}
.y23_c00272{bottom:248.025022px;}
.y22_c00272{bottom:263.175022px;}
.y21_c00272{bottom:278.325022px;}
.y20_c00272{bottom:294.150022px;}
.y1f_c00272{bottom:308.925022px;}
.y1e_c00272{bottom:324.375022px;}
.y1d_c00272{bottom:339.525022px;}
.y1c_c00272{bottom:354.975022px;}
.y1b_c00272{bottom:370.125022px;}
.y1a_c00272{bottom:385.575022px;}
.y19_c00272{bottom:401.025022px;}
.y18_c00272{bottom:416.175022px;}
.y17_c00272{bottom:431.325022px;}
.y16_c00272{bottom:446.775022px;}
.y15_c00272{bottom:461.925022px;}
.y14_c00272{bottom:477.375022px;}
.y13_c00272{bottom:492.525022px;}
.y12_c00272{bottom:507.975022px;}
.y11_c00272{bottom:553.725022px;}
.y10_c00272{bottom:572.775022px;}
.yf_c00272{bottom:592.575022px;}
.ye_c00272{bottom:611.625022px;}
.yd_c00272{bottom:631.425022px;}
.yc_c00272{bottom:650.550022px;}
.yb_c00272{bottom:670.350022px;}
.ya_c00272{bottom:689.400022px;}
.y9_c00272{bottom:709.200022px;}
.y8_c00272{bottom:728.325022px;}
.y7_c00272{bottom:747.750022px;}
.y6_c00272{bottom:767.550022px;}
.y5_c00272{bottom:786.600022px;}
.y4_c00272{bottom:805.725022px;}
.y3_c00272{bottom:825.150022px;}
.y2_c00272{bottom:844.575022px;}
.y1_c00272{bottom:886.725022px;}
.h2_c00272{height:50.028809px;}
.h4_c00272{height:50.053711px;}
.h5_c00272{height:50.353711px;}
.h3_c00272{height:58.886719px;}
.h1_c00272{height:957.750000px;}
.h0_c00272{height:957.975000px;}
.w1_c00272{width:643.500000px;}
.w0_c00272{width:643.650000px;}
.x0_c00272{left:0.000000px;}
.x1_c00272{left:91.050000px;}
.x3_c00272{left:97.575000px;}
.x2_c00272{left:106.200000px;}
.x5_c00272{left:130.650000px;}
.x4_c00272{left:131.775000px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls0_c00272{letter-spacing:0.000000pt;}
.ws1_c00272{word-spacing:-13.333333pt;}
.ws0_c00272{word-spacing:-11.333333pt;}
.ws2_c00272{word-spacing:0.000000pt;}
._a_c00272{margin-left:-13.381096pt;}
._16_c00272{margin-left:-12.358216pt;}
._12_c00272{margin-left:-11.274064pt;}
._11_c00272{margin-left:-9.962968pt;}
._14_c00272{margin-left:-8.814867pt;}
._6_c00272{margin-left:-7.466667pt;}
._9_c00272{margin-left:-6.330677pt;}
._19_c00272{margin-left:-4.548792pt;}
._4_c00272{margin-left:-3.381549pt;}
._0_c00272{margin-left:-2.330677pt;}
._2_c00272{margin-left:-1.368024pt;}
._3_c00272{width:0.944021pt;}
._1_c00272{width:2.133341pt;}
._f_c00272{width:3.610680pt;}
._1b_c00272{width:4.530541pt;}
._13_c00272{width:5.610368pt;}
._10_c00272{width:6.629312pt;}
._d_c00272{width:7.813227pt;}
._e_c00272{width:9.013333pt;}
._15_c00272{width:10.005629pt;}
._1a_c00272{width:12.575920pt;}
._1d_c00272{width:13.479957pt;}
._b_c00272{width:14.911979pt;}
._7_c00272{width:16.000000pt;}
._c_c00272{width:17.418629pt;}
._8_c00272{width:19.008021pt;}
._17_c00272{width:20.170603pt;}
._5_c00272{width:21.562645pt;}
._18_c00272{width:23.194520pt;}
._1e_c00272{width:24.296037pt;}
._1c_c00272{width:25.664152pt;}
.fs0_c00272{font-size:45.333333pt;}
.fs1_c00272{font-size:53.333333pt;}
.y0_c00272{bottom:0.000000pt;}
.y2d_c00272{bottom:57.600020pt;}
.y2c_c00272{bottom:97.933353pt;}
.y2b_c00272{bottom:111.666686pt;}
.y2a_c00272{bottom:125.333353pt;}
.y29_c00272{bottom:138.600020pt;}
.y28_c00272{bottom:152.266686pt;}
.y27_c00272{bottom:166.066686pt;}
.y26_c00272{bottom:179.866686pt;}
.y25_c00272{bottom:193.266686pt;}
.y24_c00272{bottom:207.066686pt;}
.y23_c00272{bottom:220.466686pt;}
.y22_c00272{bottom:233.933353pt;}
.y21_c00272{bottom:247.400020pt;}
.y20_c00272{bottom:261.466686pt;}
.y1f_c00272{bottom:274.600020pt;}
.y1e_c00272{bottom:288.333353pt;}
.y1d_c00272{bottom:301.800020pt;}
.y1c_c00272{bottom:315.533353pt;}
.y1b_c00272{bottom:329.000020pt;}
.y1a_c00272{bottom:342.733353pt;}
.y19_c00272{bottom:356.466686pt;}
.y18_c00272{bottom:369.933353pt;}
.y17_c00272{bottom:383.400020pt;}
.y16_c00272{bottom:397.133353pt;}
.y15_c00272{bottom:410.600020pt;}
.y14_c00272{bottom:424.333353pt;}
.y13_c00272{bottom:437.800020pt;}
.y12_c00272{bottom:451.533353pt;}
.y11_c00272{bottom:492.200020pt;}
.y10_c00272{bottom:509.133353pt;}
.yf_c00272{bottom:526.733353pt;}
.ye_c00272{bottom:543.666686pt;}
.yd_c00272{bottom:561.266686pt;}
.yc_c00272{bottom:578.266686pt;}
.yb_c00272{bottom:595.866686pt;}
.ya_c00272{bottom:612.800020pt;}
.y9_c00272{bottom:630.400020pt;}
.y8_c00272{bottom:647.400020pt;}
.y7_c00272{bottom:664.666686pt;}
.y6_c00272{bottom:682.266686pt;}
.y5_c00272{bottom:699.200020pt;}
.y4_c00272{bottom:716.200020pt;}
.y3_c00272{bottom:733.466686pt;}
.y2_c00272{bottom:750.733353pt;}
.y1_c00272{bottom:788.200020pt;}
.h2_c00272{height:44.470052pt;}
.h4_c00272{height:44.492188pt;}
.h5_c00272{height:44.758854pt;}
.h3_c00272{height:52.343750pt;}
.h1_c00272{height:851.333333pt;}
.h0_c00272{height:851.533333pt;}
.w1_c00272{width:572.000000pt;}
.w0_c00272{width:572.133333pt;}
.x0_c00272{left:0.000000pt;}
.x1_c00272{left:80.933333pt;}
.x3_c00272{left:86.733333pt;}
.x2_c00272{left:94.400000pt;}
.x5_c00272{left:116.133333pt;}
.x4_c00272{left:117.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_990c5a6d2b29f63fc5f70603.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00273;src:url('chunks/assets/font_561a30c5d94c7d9b9543f477.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00273{letter-spacing:0.000000px;}
.sc__c00273{text-shadow:none;}
.sc0_c00273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00273{-webkit-text-stroke:0px transparent;}
.sc0_c00273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00273{word-spacing:-15.000000px;}
.ws0_c00273{word-spacing:-12.750000px;}
.ws2_c00273{word-spacing:0.000000px;}
._d_c00273{margin-left:-15.060000px;}
._11_c00273{margin-left:-12.540000px;}
._4_c00273{margin-left:-11.220000px;}
._5_c00273{margin-left:-9.960000px;}
._14_c00273{margin-left:-7.958847px;}
._12_c00273{margin-left:-6.686940px;}
._a_c00273{margin-left:-4.980000px;}
._15_c00273{margin-left:-3.963183px;}
._10_c00273{margin-left:-2.700000px;}
._9_c00273{margin-left:-1.560000px;}
._0_c00273{width:1.800000px;}
._1_c00273{width:3.300000px;}
._3_c00273{width:4.980000px;}
._2_c00273{width:6.060000px;}
._7_c00273{width:7.140000px;}
._b_c00273{width:9.120000px;}
._6_c00273{width:10.800000px;}
._8_c00273{width:12.120000px;}
._c_c00273{width:13.320000px;}
._16_c00273{width:14.826108px;}
._13_c00273{width:16.140000px;}
._e_c00273{width:17.820000px;}
._18_c00273{width:23.310000px;}
._17_c00273{width:24.810000px;}
._f_c00273{width:178.620000px;}
.fc1_c00273{color:transparent;}
.fc0_c00273{color:rgb(35,31,32);}
.fs1_c00273{font-size:51.000000px;}
.fs0_c00273{font-size:60.000000px;}
.y0_c00273{bottom:0.000000px;}
.y29_c00273{bottom:64.425022px;}
.y28_c00273{bottom:110.175022px;}
.y27_c00273{bottom:125.325022px;}
.y26_c00273{bottom:140.775022px;}
.y25_c00273{bottom:156.225022px;}
.y24_c00273{bottom:171.750022px;}
.y23_c00273{bottom:186.825022px;}
.y22_c00273{bottom:201.975022px;}
.y21_c00273{bottom:217.125022px;}
.y20_c00273{bottom:232.950022px;}
.y1f_c00273{bottom:247.725022px;}
.y1e_c00273{bottom:263.175022px;}
.y1d_c00273{bottom:278.325022px;}
.y1c_c00273{bottom:293.775022px;}
.y1b_c00273{bottom:308.925022px;}
.y1a_c00273{bottom:324.750022px;}
.y19_c00273{bottom:339.825022px;}
.y18_c00273{bottom:355.350022px;}
.y17_c00273{bottom:370.425022px;}
.y16_c00273{bottom:385.575022px;}
.y15_c00273{bottom:401.025022px;}
.y14_c00273{bottom:416.175022px;}
.y13_c00273{bottom:431.625022px;}
.y12_c00273{bottom:447.150022px;}
.y11_c00273{bottom:461.925022px;}
.y10_c00273{bottom:477.375022px;}
.yf_c00273{bottom:536.025022px;}
.ye_c00273{bottom:555.525022px;}
.yd_c00273{bottom:575.325022px;}
.yc_c00273{bottom:594.375022px;}
.yb_c00273{bottom:613.800022px;}
.ya_c00273{bottom:633.225022px;}
.y9_c00273{bottom:671.400022px;}
.y7_c00273{bottom:728.625022px;}
.y6_c00273{bottom:748.125022px;}
.y5_c00273{bottom:767.175022px;}
.y4_c00273{bottom:786.225022px;}
.y3_c00273{bottom:805.725022px;}
.y2_c00273{bottom:825.450022px;}
.y1_c00273{bottom:844.950022px;}
.y8_c00273{bottom:886.725022px;}
.h3_c00273{height:50.028809px;}
.h4_c00273{height:50.053711px;}
.h2_c00273{height:58.886719px;}
.h1_c00273{height:957.750000px;}
.h0_c00273{height:957.975000px;}
.w0_c00273{width:641.850030px;}
.w1_c00273{width:642.000000px;}
.x0_c00273{left:0.000000px;}
.x1_c00273{left:81.000000px;}
.x4_c00273{left:87.825000px;}
.x5_c00273{left:120.225000px;}
.x3_c00273{left:121.350000px;}
.x2_c00273{left:143.625000px;}
.x6_c00273{left:531.375000px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls0_c00273{letter-spacing:0.000000pt;}
.ws1_c00273{word-spacing:-13.333333pt;}
.ws0_c00273{word-spacing:-11.333333pt;}
.ws2_c00273{word-spacing:0.000000pt;}
._d_c00273{margin-left:-13.386667pt;}
._11_c00273{margin-left:-11.146667pt;}
._4_c00273{margin-left:-9.973333pt;}
._5_c00273{margin-left:-8.853333pt;}
._14_c00273{margin-left:-7.074531pt;}
._12_c00273{margin-left:-5.943947pt;}
._a_c00273{margin-left:-4.426667pt;}
._15_c00273{margin-left:-3.522829pt;}
._10_c00273{margin-left:-2.400000pt;}
._9_c00273{margin-left:-1.386667pt;}
._0_c00273{width:1.600000pt;}
._1_c00273{width:2.933333pt;}
._3_c00273{width:4.426667pt;}
._2_c00273{width:5.386667pt;}
._7_c00273{width:6.346667pt;}
._b_c00273{width:8.106667pt;}
._6_c00273{width:9.600000pt;}
._8_c00273{width:10.773333pt;}
._c_c00273{width:11.840000pt;}
._16_c00273{width:13.178763pt;}
._13_c00273{width:14.346667pt;}
._e_c00273{width:15.840000pt;}
._18_c00273{width:20.720000pt;}
._17_c00273{width:22.053333pt;}
._f_c00273{width:158.773333pt;}
.fs1_c00273{font-size:45.333333pt;}
.fs0_c00273{font-size:53.333333pt;}
.y0_c00273{bottom:0.000000pt;}
.y29_c00273{bottom:57.266686pt;}
.y28_c00273{bottom:97.933353pt;}
.y27_c00273{bottom:111.400020pt;}
.y26_c00273{bottom:125.133353pt;}
.y25_c00273{bottom:138.866686pt;}
.y24_c00273{bottom:152.666686pt;}
.y23_c00273{bottom:166.066686pt;}
.y22_c00273{bottom:179.533353pt;}
.y21_c00273{bottom:193.000020pt;}
.y20_c00273{bottom:207.066686pt;}
.y1f_c00273{bottom:220.200020pt;}
.y1e_c00273{bottom:233.933353pt;}
.y1d_c00273{bottom:247.400020pt;}
.y1c_c00273{bottom:261.133353pt;}
.y1b_c00273{bottom:274.600020pt;}
.y1a_c00273{bottom:288.666686pt;}
.y19_c00273{bottom:302.066686pt;}
.y18_c00273{bottom:315.866686pt;}
.y17_c00273{bottom:329.266686pt;}
.y16_c00273{bottom:342.733353pt;}
.y15_c00273{bottom:356.466686pt;}
.y14_c00273{bottom:369.933353pt;}
.y13_c00273{bottom:383.666686pt;}
.y12_c00273{bottom:397.466686pt;}
.y11_c00273{bottom:410.600020pt;}
.y10_c00273{bottom:424.333353pt;}
.yf_c00273{bottom:476.466686pt;}
.ye_c00273{bottom:493.800020pt;}
.yd_c00273{bottom:511.400020pt;}
.yc_c00273{bottom:528.333353pt;}
.yb_c00273{bottom:545.600020pt;}
.ya_c00273{bottom:562.866686pt;}
.y9_c00273{bottom:596.800020pt;}
.y7_c00273{bottom:647.666686pt;}
.y6_c00273{bottom:665.000020pt;}
.y5_c00273{bottom:681.933353pt;}
.y4_c00273{bottom:698.866686pt;}
.y3_c00273{bottom:716.200020pt;}
.y2_c00273{bottom:733.733353pt;}
.y1_c00273{bottom:751.066686pt;}
.y8_c00273{bottom:788.200020pt;}
.h3_c00273{height:44.470052pt;}
.h4_c00273{height:44.492188pt;}
.h2_c00273{height:52.343750pt;}
.h1_c00273{height:851.333333pt;}
.h0_c00273{height:851.533333pt;}
.w0_c00273{width:570.533360pt;}
.w1_c00273{width:570.666667pt;}
.x0_c00273{left:0.000000pt;}
.x1_c00273{left:72.000000pt;}
.x4_c00273{left:78.066667pt;}
.x5_c00273{left:106.866667pt;}
.x3_c00273{left:107.866667pt;}
.x2_c00273{left:127.666667pt;}
.x6_c00273{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f4c073264221a9a41b917d8b.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00274;src:url('chunks/assets/font_1d1d4dd699e00e1c2733bab0.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00274{letter-spacing:0.000000px;}
.sc__c00274{text-shadow:none;}
.sc0_c00274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00274{-webkit-text-stroke:0px transparent;}
.sc0_c00274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00274{word-spacing:-15.000000px;}
.ws0_c00274{word-spacing:-12.750000px;}
.ws2_c00274{word-spacing:0.000000px;}
._c_c00274{margin-left:-12.660000px;}
._b_c00274{margin-left:-11.220000px;}
._14_c00274{margin-left:-8.340000px;}
._10_c00274{margin-left:-7.020000px;}
._17_c00274{margin-left:-5.400039px;}
._d_c00274{margin-left:-4.380000px;}
._e_c00274{margin-left:-3.240000px;}
._13_c00274{margin-left:-2.220000px;}
._6_c00274{margin-left:-1.080000px;}
._3_c00274{width:1.140000px;}
._0_c00274{width:2.160000px;}
._2_c00274{width:3.600000px;}
._4_c00274{width:5.400000px;}
._1_c00274{width:6.840000px;}
._7_c00274{width:8.820000px;}
._f_c00274{width:10.200000px;}
._8_c00274{width:11.460000px;}
._5_c00274{width:13.080000px;}
._16_c00274{width:14.541000px;}
._9_c00274{width:16.140000px;}
._a_c00274{width:17.160000px;}
._11_c00274{width:18.960000px;}
._12_c00274{width:20.580000px;}
._19_c00274{width:21.924063px;}
._15_c00274{width:24.390000px;}
._1a_c00274{width:25.739922px;}
._18_c00274{width:27.089991px;}
.fc1_c00274{color:transparent;}
.fc0_c00274{color:rgb(35,31,32);}
.fs1_c00274{font-size:51.000000px;}
.fs0_c00274{font-size:60.000000px;}
.y0_c00274{bottom:0.000000px;}
.y25_c00274{bottom:64.800022px;}
.y24_c00274{bottom:110.175022px;}
.y23_c00274{bottom:125.325022px;}
.y22_c00274{bottom:140.775022px;}
.y21_c00274{bottom:155.925022px;}
.y20_c00274{bottom:171.375022px;}
.y1f_c00274{bottom:186.825022px;}
.y1e_c00274{bottom:202.350022px;}
.y1d_c00274{bottom:217.125022px;}
.y1c_c00274{bottom:232.950022px;}
.y1b_c00274{bottom:247.725022px;}
.y1a_c00274{bottom:263.175022px;}
.y19_c00274{bottom:278.625022px;}
.y18_c00274{bottom:293.775022px;}
.y17_c00274{bottom:308.925022px;}
.y16_c00274{bottom:324.375022px;}
.y15_c00274{bottom:339.525022px;}
.y14_c00274{bottom:379.800022px;}
.y13_c00274{bottom:399.225022px;}
.y12_c00274{bottom:439.200022px;}
.y11_c00274{bottom:493.950022px;}
.y10_c00274{bottom:513.375022px;}
.yf_c00274{bottom:532.800022px;}
.ye_c00274{bottom:552.225022px;}
.yd_c00274{bottom:592.200022px;}
.yb_c00274{bottom:650.925022px;}
.ya_c00274{bottom:670.350022px;}
.y9_c00274{bottom:689.775022px;}
.y8_c00274{bottom:708.825022px;}
.y7_c00274{bottom:728.625022px;}
.y6_c00274{bottom:747.750022px;}
.y5_c00274{bottom:767.550022px;}
.y4_c00274{bottom:786.525022px;}
.y3_c00274{bottom:806.025022px;}
.y2_c00274{bottom:825.525022px;}
.y1_c00274{bottom:844.950022px;}
.yc_c00274{bottom:886.725022px;}
.h3_c00274{height:50.028809px;}
.h4_c00274{height:50.053711px;}
.h2_c00274{height:58.886719px;}
.h1_c00274{height:957.750000px;}
.h0_c00274{height:957.975000px;}
.w1_c00274{width:643.500000px;}
.w0_c00274{width:643.650000px;}
.x0_c00274{left:0.000000px;}
.x1_c00274{left:91.050000px;}
.x2_c00274{left:97.575000px;}
.x3_c00274{left:131.025000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls0_c00274{letter-spacing:0.000000pt;}
.ws1_c00274{word-spacing:-13.333333pt;}
.ws0_c00274{word-spacing:-11.333333pt;}
.ws2_c00274{word-spacing:0.000000pt;}
._c_c00274{margin-left:-11.253333pt;}
._b_c00274{margin-left:-9.973333pt;}
._14_c00274{margin-left:-7.413333pt;}
._10_c00274{margin-left:-6.240000pt;}
._17_c00274{margin-left:-4.800035pt;}
._d_c00274{margin-left:-3.893333pt;}
._e_c00274{margin-left:-2.880000pt;}
._13_c00274{margin-left:-1.973333pt;}
._6_c00274{margin-left:-0.960000pt;}
._3_c00274{width:1.013333pt;}
._0_c00274{width:1.920000pt;}
._2_c00274{width:3.200000pt;}
._4_c00274{width:4.800000pt;}
._1_c00274{width:6.080000pt;}
._7_c00274{width:7.840000pt;}
._f_c00274{width:9.066667pt;}
._8_c00274{width:10.186667pt;}
._5_c00274{width:11.626667pt;}
._16_c00274{width:12.925333pt;}
._9_c00274{width:14.346667pt;}
._a_c00274{width:15.253333pt;}
._11_c00274{width:16.853333pt;}
._12_c00274{width:18.293333pt;}
._19_c00274{width:19.488056pt;}
._15_c00274{width:21.680000pt;}
._1a_c00274{width:22.879931pt;}
._18_c00274{width:24.079992pt;}
.fs1_c00274{font-size:45.333333pt;}
.fs0_c00274{font-size:53.333333pt;}
.y0_c00274{bottom:0.000000pt;}
.y25_c00274{bottom:57.600020pt;}
.y24_c00274{bottom:97.933353pt;}
.y23_c00274{bottom:111.400020pt;}
.y22_c00274{bottom:125.133353pt;}
.y21_c00274{bottom:138.600020pt;}
.y20_c00274{bottom:152.333353pt;}
.y1f_c00274{bottom:166.066686pt;}
.y1e_c00274{bottom:179.866686pt;}
.y1d_c00274{bottom:193.000020pt;}
.y1c_c00274{bottom:207.066686pt;}
.y1b_c00274{bottom:220.200020pt;}
.y1a_c00274{bottom:233.933353pt;}
.y19_c00274{bottom:247.666686pt;}
.y18_c00274{bottom:261.133353pt;}
.y17_c00274{bottom:274.600020pt;}
.y16_c00274{bottom:288.333353pt;}
.y15_c00274{bottom:301.800020pt;}
.y14_c00274{bottom:337.600020pt;}
.y13_c00274{bottom:354.866686pt;}
.y12_c00274{bottom:390.400020pt;}
.y11_c00274{bottom:439.066686pt;}
.y10_c00274{bottom:456.333353pt;}
.yf_c00274{bottom:473.600020pt;}
.ye_c00274{bottom:490.866686pt;}
.yd_c00274{bottom:526.400020pt;}
.yb_c00274{bottom:578.600020pt;}
.ya_c00274{bottom:595.866686pt;}
.y9_c00274{bottom:613.133353pt;}
.y8_c00274{bottom:630.066686pt;}
.y7_c00274{bottom:647.666686pt;}
.y6_c00274{bottom:664.666686pt;}
.y5_c00274{bottom:682.266686pt;}
.y4_c00274{bottom:699.133353pt;}
.y3_c00274{bottom:716.466686pt;}
.y2_c00274{bottom:733.800020pt;}
.y1_c00274{bottom:751.066686pt;}
.yc_c00274{bottom:788.200020pt;}
.h3_c00274{height:44.470052pt;}
.h4_c00274{height:44.492188pt;}
.h2_c00274{height:52.343750pt;}
.h1_c00274{height:851.333333pt;}
.h0_c00274{height:851.533333pt;}
.w1_c00274{width:572.000000pt;}
.w0_c00274{width:572.133333pt;}
.x0_c00274{left:0.000000pt;}
.x1_c00274{left:80.933333pt;}
.x2_c00274{left:86.733333pt;}
.x3_c00274{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccdc65a0b3d3ae8c357a8da9.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00275;src:url('chunks/assets/font_c172f85e0637f08088c3019a.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00275{letter-spacing:0.000000px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00275{word-spacing:-15.000000px;}
.ws0_c00275{word-spacing:-12.750000px;}
.ws2_c00275{word-spacing:0.000000px;}
._12_c00275{margin-left:-16.380000px;}
._c_c00275{margin-left:-14.520000px;}
._d_c00275{margin-left:-13.080000px;}
._17_c00275{margin-left:-10.359090px;}
._f_c00275{margin-left:-7.800000px;}
._7_c00275{margin-left:-5.400000px;}
._16_c00275{margin-left:-4.265985px;}
._6_c00275{margin-left:-3.180000px;}
._2_c00275{margin-left:-1.740000px;}
._0_c00275{width:1.860000px;}
._4_c00275{width:3.000000px;}
._13_c00275{width:4.200000px;}
._a_c00275{width:6.000000px;}
._b_c00275{width:7.320000px;}
._9_c00275{width:9.300000px;}
._8_c00275{width:10.800000px;}
._e_c00275{width:11.940000px;}
._14_c00275{width:13.980000px;}
._5_c00275{width:16.740000px;}
._10_c00275{width:18.900000px;}
._11_c00275{width:20.340000px;}
._1_c00275{width:21.900000px;}
._3_c00275{width:24.240000px;}
._15_c00275{width:26.010030px;}
._18_c00275{width:27.690000px;}
.fc2_c00275{color:transparent;}
.fc1_c00275{color:rgb(0,0,0);}
.fc0_c00275{color:rgb(35,31,32);}
.fs1_c00275{font-size:51.000000px;}
.fs0_c00275{font-size:60.000000px;}
.y0_c00275{bottom:0.000000px;}
.y2c_c00275{bottom:64.425022px;}
.y2b_c00275{bottom:110.175022px;}
.y2a_c00275{bottom:125.625022px;}
.y29_c00275{bottom:140.775022px;}
.y28_c00275{bottom:156.225022px;}
.y27_c00275{bottom:171.750022px;}
.y26_c00275{bottom:186.825022px;}
.y25_c00275{bottom:201.975022px;}
.y24_c00275{bottom:217.125022px;}
.y23_c00275{bottom:232.950022px;}
.y22_c00275{bottom:248.025022px;}
.y21_c00275{bottom:263.550022px;}
.y20_c00275{bottom:278.325022px;}
.y1f_c00275{bottom:294.150022px;}
.y1e_c00275{bottom:308.925022px;}
.y1d_c00275{bottom:324.750022px;}
.y1c_c00275{bottom:339.825022px;}
.y1b_c00275{bottom:355.350022px;}
.y1a_c00275{bottom:370.125022px;}
.y19_c00275{bottom:385.575022px;}
.y18_c00275{bottom:401.025022px;}
.y17_c00275{bottom:416.175022px;}
.y16_c00275{bottom:431.325022px;}
.y15_c00275{bottom:447.150022px;}
.y14_c00275{bottom:461.925022px;}
.y13_c00275{bottom:477.375022px;}
.y12_c00275{bottom:492.525022px;}
.y11_c00275{bottom:508.350022px;}
.y10_c00275{bottom:523.125022px;}
.ye_c00275{bottom:592.200022px;}
.yd_c00275{bottom:611.925022px;}
.yc_c00275{bottom:631.425022px;}
.yb_c00275{bottom:650.925022px;}
.ya_c00275{bottom:670.350022px;}
.y9_c00275{bottom:689.400022px;}
.y8_c00275{bottom:709.200022px;}
.y7_c00275{bottom:728.325022px;}
.y6_c00275{bottom:747.750022px;}
.y5_c00275{bottom:767.550022px;}
.y4_c00275{bottom:786.225022px;}
.y3_c00275{bottom:806.025022px;}
.y2_c00275{bottom:825.525022px;}
.y1_c00275{bottom:844.575022px;}
.yf_c00275{bottom:886.725022px;}
.h3_c00275{height:50.028809px;}
.h4_c00275{height:50.053711px;}
.h2_c00275{height:58.886719px;}
.h1_c00275{height:957.750000px;}
.h0_c00275{height:957.975000px;}
.w0_c00275{width:641.850030px;}
.w1_c00275{width:642.000000px;}
.x0_c00275{left:0.000000px;}
.x1_c00275{left:81.000000px;}
.x3_c00275{left:87.825000px;}
.x4_c00275{left:120.225000px;}
.x5_c00275{left:121.650000px;}
.x2_c00275{left:143.625000px;}
.x6_c00275{left:531.375000px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls0_c00275{letter-spacing:0.000000pt;}
.ws1_c00275{word-spacing:-13.333333pt;}
.ws0_c00275{word-spacing:-11.333333pt;}
.ws2_c00275{word-spacing:0.000000pt;}
._12_c00275{margin-left:-14.560000pt;}
._c_c00275{margin-left:-12.906667pt;}
._d_c00275{margin-left:-11.626667pt;}
._17_c00275{margin-left:-9.208080pt;}
._f_c00275{margin-left:-6.933333pt;}
._7_c00275{margin-left:-4.800000pt;}
._16_c00275{margin-left:-3.791987pt;}
._6_c00275{margin-left:-2.826667pt;}
._2_c00275{margin-left:-1.546667pt;}
._0_c00275{width:1.653333pt;}
._4_c00275{width:2.666667pt;}
._13_c00275{width:3.733333pt;}
._a_c00275{width:5.333333pt;}
._b_c00275{width:6.506667pt;}
._9_c00275{width:8.266667pt;}
._8_c00275{width:9.600000pt;}
._e_c00275{width:10.613333pt;}
._14_c00275{width:12.426667pt;}
._5_c00275{width:14.880000pt;}
._10_c00275{width:16.800000pt;}
._11_c00275{width:18.080000pt;}
._1_c00275{width:19.466667pt;}
._3_c00275{width:21.546667pt;}
._15_c00275{width:23.120027pt;}
._18_c00275{width:24.613333pt;}
.fs1_c00275{font-size:45.333333pt;}
.fs0_c00275{font-size:53.333333pt;}
.y0_c00275{bottom:0.000000pt;}
.y2c_c00275{bottom:57.266686pt;}
.y2b_c00275{bottom:97.933353pt;}
.y2a_c00275{bottom:111.666686pt;}
.y29_c00275{bottom:125.133353pt;}
.y28_c00275{bottom:138.866686pt;}
.y27_c00275{bottom:152.666686pt;}
.y26_c00275{bottom:166.066686pt;}
.y25_c00275{bottom:179.533353pt;}
.y24_c00275{bottom:193.000020pt;}
.y23_c00275{bottom:207.066686pt;}
.y22_c00275{bottom:220.466686pt;}
.y21_c00275{bottom:234.266686pt;}
.y20_c00275{bottom:247.400020pt;}
.y1f_c00275{bottom:261.466686pt;}
.y1e_c00275{bottom:274.600020pt;}
.y1d_c00275{bottom:288.666686pt;}
.y1c_c00275{bottom:302.066686pt;}
.y1b_c00275{bottom:315.866686pt;}
.y1a_c00275{bottom:329.000020pt;}
.y19_c00275{bottom:342.733353pt;}
.y18_c00275{bottom:356.466686pt;}
.y17_c00275{bottom:369.933353pt;}
.y16_c00275{bottom:383.400020pt;}
.y15_c00275{bottom:397.466686pt;}
.y14_c00275{bottom:410.600020pt;}
.y13_c00275{bottom:424.333353pt;}
.y12_c00275{bottom:437.800020pt;}
.y11_c00275{bottom:451.866686pt;}
.y10_c00275{bottom:465.000020pt;}
.ye_c00275{bottom:526.400020pt;}
.yd_c00275{bottom:543.933353pt;}
.yc_c00275{bottom:561.266686pt;}
.yb_c00275{bottom:578.600020pt;}
.ya_c00275{bottom:595.866686pt;}
.y9_c00275{bottom:612.800020pt;}
.y8_c00275{bottom:630.400020pt;}
.y7_c00275{bottom:647.400020pt;}
.y6_c00275{bottom:664.666686pt;}
.y5_c00275{bottom:682.266686pt;}
.y4_c00275{bottom:698.866686pt;}
.y3_c00275{bottom:716.466686pt;}
.y2_c00275{bottom:733.800020pt;}
.y1_c00275{bottom:750.733353pt;}
.yf_c00275{bottom:788.200020pt;}
.h3_c00275{height:44.470052pt;}
.h4_c00275{height:44.492188pt;}
.h2_c00275{height:52.343750pt;}
.h1_c00275{height:851.333333pt;}
.h0_c00275{height:851.533333pt;}
.w0_c00275{width:570.533360pt;}
.w1_c00275{width:570.666667pt;}
.x0_c00275{left:0.000000pt;}
.x1_c00275{left:72.000000pt;}
.x3_c00275{left:78.066667pt;}
.x4_c00275{left:106.866667pt;}
.x5_c00275{left:108.133333pt;}
.x2_c00275{left:127.666667pt;}
.x6_c00275{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f46e465775f4f443b23a0d0.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00276;src:url('chunks/assets/font_8c39f4cbfa68bf042c4f8f6a.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00276{letter-spacing:0.000000px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00276{word-spacing:-15.000000px;}
.ws1_c00276{word-spacing:-12.750000px;}
.ws2_c00276{word-spacing:0.000000px;}
._6_c00276{margin-left:-13.920000px;}
._7_c00276{margin-left:-12.840000px;}
._13_c00276{margin-left:-11.460000px;}
._4_c00276{margin-left:-8.400000px;}
._2_c00276{margin-left:-6.180000px;}
._f_c00276{margin-left:-5.160000px;}
._19_c00276{margin-left:-3.542946px;}
._10_c00276{margin-left:-2.400000px;}
._8_c00276{margin-left:-1.140000px;}
._0_c00276{width:1.620000px;}
._9_c00276{width:2.760000px;}
._d_c00276{width:3.840000px;}
._e_c00276{width:5.820000px;}
._11_c00276{width:7.200000px;}
._c_c00276{width:8.700000px;}
._a_c00276{width:9.720000px;}
._b_c00276{width:11.340000px;}
._12_c00276{width:12.480000px;}
._5_c00276{width:13.800000px;}
._18_c00276{width:15.135027px;}
._1_c00276{width:16.800000px;}
._15_c00276{width:18.180000px;}
._14_c00276{width:19.860000px;}
._3_c00276{width:21.000000px;}
._1a_c00276{width:22.470000px;}
._1b_c00276{width:23.790000px;}
._17_c00276{width:24.989979px;}
._16_c00276{width:26.489991px;}
._1d_c00276{width:30.060021px;}
._1c_c00276{width:32.091030px;}
.fc2_c00276{color:transparent;}
.fc1_c00276{color:rgb(0,0,0);}
.fc0_c00276{color:rgb(35,31,32);}
.fs1_c00276{font-size:51.000000px;}
.fs0_c00276{font-size:60.000000px;}
.y0_c00276{bottom:0.000000px;}
.y2b_c00276{bottom:64.425022px;}
.y2a_c00276{bottom:110.175022px;}
.y29_c00276{bottom:125.325022px;}
.y28_c00276{bottom:141.150022px;}
.y27_c00276{bottom:156.225022px;}
.y26_c00276{bottom:171.375022px;}
.y25_c00276{bottom:186.525022px;}
.y24_c00276{bottom:201.975022px;}
.y23_c00276{bottom:217.125022px;}
.y22_c00276{bottom:232.575022px;}
.y21_c00276{bottom:247.725022px;}
.y20_c00276{bottom:263.175022px;}
.y1f_c00276{bottom:278.325022px;}
.y1e_c00276{bottom:293.775022px;}
.y1d_c00276{bottom:308.925022px;}
.y1c_c00276{bottom:324.750022px;}
.y1b_c00276{bottom:339.825022px;}
.y1a_c00276{bottom:354.975022px;}
.y19_c00276{bottom:370.125022px;}
.y18_c00276{bottom:385.950022px;}
.y17_c00276{bottom:400.725022px;}
.y15_c00276{bottom:456.525022px;}
.y14_c00276{bottom:475.575022px;}
.y13_c00276{bottom:495.375022px;}
.y12_c00276{bottom:514.425022px;}
.y11_c00276{bottom:534.225022px;}
.y10_c00276{bottom:553.725022px;}
.yf_c00276{bottom:573.150022px;}
.ye_c00276{bottom:592.575022px;}
.yd_c00276{bottom:611.625022px;}
.yc_c00276{bottom:631.425022px;}
.yb_c00276{bottom:650.550022px;}
.ya_c00276{bottom:669.975022px;}
.y9_c00276{bottom:689.775022px;}
.y8_c00276{bottom:708.825022px;}
.y7_c00276{bottom:728.625022px;}
.y6_c00276{bottom:748.125022px;}
.y5_c00276{bottom:767.175022px;}
.y4_c00276{bottom:786.600022px;}
.y3_c00276{bottom:806.025022px;}
.y2_c00276{bottom:825.525022px;}
.y1_c00276{bottom:844.575022px;}
.y16_c00276{bottom:886.725022px;}
.h3_c00276{height:50.028809px;}
.h4_c00276{height:50.053711px;}
.h2_c00276{height:58.886719px;}
.h1_c00276{height:957.750000px;}
.h0_c00276{height:957.975000px;}
.w1_c00276{width:643.500000px;}
.w0_c00276{width:643.650000px;}
.x0_c00276{left:0.000000px;}
.x3_c00276{left:90.375000px;}
.x1_c00276{left:91.425000px;}
.x4_c00276{left:97.575000px;}
.x2_c00276{left:106.950000px;}
.x6_c00276{left:130.350000px;}
.x5_c00276{left:131.400000px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls0_c00276{letter-spacing:0.000000pt;}
.ws0_c00276{word-spacing:-13.333333pt;}
.ws1_c00276{word-spacing:-11.333333pt;}
.ws2_c00276{word-spacing:0.000000pt;}
._6_c00276{margin-left:-12.373333pt;}
._7_c00276{margin-left:-11.413333pt;}
._13_c00276{margin-left:-10.186667pt;}
._4_c00276{margin-left:-7.466667pt;}
._2_c00276{margin-left:-5.493333pt;}
._f_c00276{margin-left:-4.586667pt;}
._19_c00276{margin-left:-3.149285pt;}
._10_c00276{margin-left:-2.133333pt;}
._8_c00276{margin-left:-1.013333pt;}
._0_c00276{width:1.440000pt;}
._9_c00276{width:2.453333pt;}
._d_c00276{width:3.413333pt;}
._e_c00276{width:5.173333pt;}
._11_c00276{width:6.400000pt;}
._c_c00276{width:7.733333pt;}
._a_c00276{width:8.640000pt;}
._b_c00276{width:10.080000pt;}
._12_c00276{width:11.093333pt;}
._5_c00276{width:12.266667pt;}
._18_c00276{width:13.453357pt;}
._1_c00276{width:14.933333pt;}
._15_c00276{width:16.160000pt;}
._14_c00276{width:17.653333pt;}
._3_c00276{width:18.666667pt;}
._1a_c00276{width:19.973333pt;}
._1b_c00276{width:21.146667pt;}
._17_c00276{width:22.213315pt;}
._16_c00276{width:23.546659pt;}
._1d_c00276{width:26.720019pt;}
._1c_c00276{width:28.525360pt;}
.fs1_c00276{font-size:45.333333pt;}
.fs0_c00276{font-size:53.333333pt;}
.y0_c00276{bottom:0.000000pt;}
.y2b_c00276{bottom:57.266686pt;}
.y2a_c00276{bottom:97.933353pt;}
.y29_c00276{bottom:111.400020pt;}
.y28_c00276{bottom:125.466686pt;}
.y27_c00276{bottom:138.866686pt;}
.y26_c00276{bottom:152.333353pt;}
.y25_c00276{bottom:165.800020pt;}
.y24_c00276{bottom:179.533353pt;}
.y23_c00276{bottom:193.000020pt;}
.y22_c00276{bottom:206.733353pt;}
.y21_c00276{bottom:220.200020pt;}
.y20_c00276{bottom:233.933353pt;}
.y1f_c00276{bottom:247.400020pt;}
.y1e_c00276{bottom:261.133353pt;}
.y1d_c00276{bottom:274.600020pt;}
.y1c_c00276{bottom:288.666686pt;}
.y1b_c00276{bottom:302.066686pt;}
.y1a_c00276{bottom:315.533353pt;}
.y19_c00276{bottom:329.000020pt;}
.y18_c00276{bottom:343.066686pt;}
.y17_c00276{bottom:356.200020pt;}
.y15_c00276{bottom:405.800020pt;}
.y14_c00276{bottom:422.733353pt;}
.y13_c00276{bottom:440.333353pt;}
.y12_c00276{bottom:457.266686pt;}
.y11_c00276{bottom:474.866686pt;}
.y10_c00276{bottom:492.200020pt;}
.yf_c00276{bottom:509.466686pt;}
.ye_c00276{bottom:526.733353pt;}
.yd_c00276{bottom:543.666686pt;}
.yc_c00276{bottom:561.266686pt;}
.yb_c00276{bottom:578.266686pt;}
.ya_c00276{bottom:595.533353pt;}
.y9_c00276{bottom:613.133353pt;}
.y8_c00276{bottom:630.066686pt;}
.y7_c00276{bottom:647.666686pt;}
.y6_c00276{bottom:665.000020pt;}
.y5_c00276{bottom:681.933353pt;}
.y4_c00276{bottom:699.200020pt;}
.y3_c00276{bottom:716.466686pt;}
.y2_c00276{bottom:733.800020pt;}
.y1_c00276{bottom:750.733353pt;}
.y16_c00276{bottom:788.200020pt;}
.h3_c00276{height:44.470052pt;}
.h4_c00276{height:44.492188pt;}
.h2_c00276{height:52.343750pt;}
.h1_c00276{height:851.333333pt;}
.h0_c00276{height:851.533333pt;}
.w1_c00276{width:572.000000pt;}
.w0_c00276{width:572.133333pt;}
.x0_c00276{left:0.000000pt;}
.x3_c00276{left:80.333333pt;}
.x1_c00276{left:81.266667pt;}
.x4_c00276{left:86.733333pt;}
.x2_c00276{left:95.066667pt;}
.x6_c00276{left:115.866667pt;}
.x5_c00276{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a32250e6c85186624fbcb046.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00277;src:url('chunks/assets/font_2bd06d2e7632f8679fc12c69.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00277{letter-spacing:0.000000px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00277{word-spacing:-15.000000px;}
.ws0_c00277{word-spacing:-12.750000px;}
.ws2_c00277{word-spacing:0.000000px;}
._11_c00277{margin-left:-13.260000px;}
._a_c00277{margin-left:-12.240000px;}
._b_c00277{margin-left:-11.160000px;}
._f_c00277{margin-left:-7.226940px;}
._10_c00277{margin-left:-5.340000px;}
._14_c00277{margin-left:-3.660000px;}
._8_c00277{margin-left:-1.920000px;}
._4_c00277{width:1.260000px;}
._1_c00277{width:2.700000px;}
._2_c00277{width:4.020000px;}
._9_c00277{width:5.760000px;}
._5_c00277{width:6.900000px;}
._3_c00277{width:8.100000px;}
._6_c00277{width:9.360000px;}
._0_c00277{width:10.740000px;}
._7_c00277{width:11.880000px;}
._e_c00277{width:13.560000px;}
._17_c00277{width:14.618982px;}
._d_c00277{width:17.160000px;}
._c_c00277{width:18.180000px;}
._13_c00277{width:20.820000px;}
._12_c00277{width:23.160000px;}
._15_c00277{width:25.530102px;}
._16_c00277{width:26.730030px;}
.fc1_c00277{color:transparent;}
.fc0_c00277{color:rgb(35,31,32);}
.fs1_c00277{font-size:51.000000px;}
.fs0_c00277{font-size:60.000000px;}
.y0_c00277{bottom:0.000000px;}
.y29_c00277{bottom:64.425022px;}
.y28_c00277{bottom:110.550022px;}
.y27_c00277{bottom:125.325022px;}
.y26_c00277{bottom:141.150022px;}
.y25_c00277{bottom:156.225022px;}
.y24_c00277{bottom:171.375022px;}
.y23_c00277{bottom:186.825022px;}
.y22_c00277{bottom:201.975022px;}
.y21_c00277{bottom:217.125022px;}
.y20_c00277{bottom:232.950022px;}
.y1f_c00277{bottom:247.725022px;}
.y1e_c00277{bottom:263.175022px;}
.y1d_c00277{bottom:278.325022px;}
.y1c_c00277{bottom:294.150022px;}
.y1b_c00277{bottom:309.225022px;}
.y1a_c00277{bottom:324.750022px;}
.y19_c00277{bottom:339.525022px;}
.y18_c00277{bottom:354.975022px;}
.y17_c00277{bottom:370.125022px;}
.y16_c00277{bottom:385.950022px;}
.y15_c00277{bottom:425.925022px;}
.y14_c00277{bottom:444.975022px;}
.y13_c00277{bottom:464.775022px;}
.y12_c00277{bottom:483.825022px;}
.y11_c00277{bottom:503.325022px;}
.y10_c00277{bottom:522.375022px;}
.yf_c00277{bottom:541.725022px;}
.ye_c00277{bottom:561.225022px;}
.yd_c00277{bottom:580.725022px;}
.yc_c00277{bottom:618.825022px;}
.yb_c00277{bottom:638.625022px;}
.y9_c00277{bottom:689.775022px;}
.y8_c00277{bottom:708.825022px;}
.y7_c00277{bottom:728.625022px;}
.y6_c00277{bottom:747.750022px;}
.y5_c00277{bottom:767.175022px;}
.y4_c00277{bottom:786.225022px;}
.y3_c00277{bottom:806.025022px;}
.y2_c00277{bottom:825.150022px;}
.y1_c00277{bottom:844.950022px;}
.ya_c00277{bottom:886.725022px;}
.h3_c00277{height:50.028809px;}
.h4_c00277{height:50.053711px;}
.h2_c00277{height:58.886719px;}
.h1_c00277{height:957.750000px;}
.h0_c00277{height:957.975000px;}
.w0_c00277{width:641.850030px;}
.w1_c00277{width:642.000000px;}
.x0_c00277{left:0.000000px;}
.x1_c00277{left:81.000000px;}
.x4_c00277{left:87.825000px;}
.x3_c00277{left:104.775000px;}
.x5_c00277{left:120.975000px;}
.x2_c00277{left:143.625000px;}
.x6_c00277{left:531.375000px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls0_c00277{letter-spacing:0.000000pt;}
.ws1_c00277{word-spacing:-13.333333pt;}
.ws0_c00277{word-spacing:-11.333333pt;}
.ws2_c00277{word-spacing:0.000000pt;}
._11_c00277{margin-left:-11.786667pt;}
._a_c00277{margin-left:-10.880000pt;}
._b_c00277{margin-left:-9.920000pt;}
._f_c00277{margin-left:-6.423947pt;}
._10_c00277{margin-left:-4.746667pt;}
._14_c00277{margin-left:-3.253333pt;}
._8_c00277{margin-left:-1.706667pt;}
._4_c00277{width:1.120000pt;}
._1_c00277{width:2.400000pt;}
._2_c00277{width:3.573333pt;}
._9_c00277{width:5.120000pt;}
._5_c00277{width:6.133333pt;}
._3_c00277{width:7.200000pt;}
._6_c00277{width:8.320000pt;}
._0_c00277{width:9.546667pt;}
._7_c00277{width:10.560000pt;}
._e_c00277{width:12.053333pt;}
._17_c00277{width:12.994651pt;}
._d_c00277{width:15.253333pt;}
._c_c00277{width:16.160000pt;}
._13_c00277{width:18.506667pt;}
._12_c00277{width:20.586667pt;}
._15_c00277{width:22.693424pt;}
._16_c00277{width:23.760027pt;}
.fs1_c00277{font-size:45.333333pt;}
.fs0_c00277{font-size:53.333333pt;}
.y0_c00277{bottom:0.000000pt;}
.y29_c00277{bottom:57.266686pt;}
.y28_c00277{bottom:98.266686pt;}
.y27_c00277{bottom:111.400020pt;}
.y26_c00277{bottom:125.466686pt;}
.y25_c00277{bottom:138.866686pt;}
.y24_c00277{bottom:152.333353pt;}
.y23_c00277{bottom:166.066686pt;}
.y22_c00277{bottom:179.533353pt;}
.y21_c00277{bottom:193.000020pt;}
.y20_c00277{bottom:207.066686pt;}
.y1f_c00277{bottom:220.200020pt;}
.y1e_c00277{bottom:233.933353pt;}
.y1d_c00277{bottom:247.400020pt;}
.y1c_c00277{bottom:261.466686pt;}
.y1b_c00277{bottom:274.866686pt;}
.y1a_c00277{bottom:288.666686pt;}
.y19_c00277{bottom:301.800020pt;}
.y18_c00277{bottom:315.533353pt;}
.y17_c00277{bottom:329.000020pt;}
.y16_c00277{bottom:343.066686pt;}
.y15_c00277{bottom:378.600020pt;}
.y14_c00277{bottom:395.533353pt;}
.y13_c00277{bottom:413.133353pt;}
.y12_c00277{bottom:430.066686pt;}
.y11_c00277{bottom:447.400020pt;}
.y10_c00277{bottom:464.333353pt;}
.yf_c00277{bottom:481.533353pt;}
.ye_c00277{bottom:498.866686pt;}
.yd_c00277{bottom:516.200020pt;}
.yc_c00277{bottom:550.066686pt;}
.yb_c00277{bottom:567.666686pt;}
.y9_c00277{bottom:613.133353pt;}
.y8_c00277{bottom:630.066686pt;}
.y7_c00277{bottom:647.666686pt;}
.y6_c00277{bottom:664.666686pt;}
.y5_c00277{bottom:681.933353pt;}
.y4_c00277{bottom:698.866686pt;}
.y3_c00277{bottom:716.466686pt;}
.y2_c00277{bottom:733.466686pt;}
.y1_c00277{bottom:751.066686pt;}
.ya_c00277{bottom:788.200020pt;}
.h3_c00277{height:44.470052pt;}
.h4_c00277{height:44.492188pt;}
.h2_c00277{height:52.343750pt;}
.h1_c00277{height:851.333333pt;}
.h0_c00277{height:851.533333pt;}
.w0_c00277{width:570.533360pt;}
.w1_c00277{width:570.666667pt;}
.x0_c00277{left:0.000000pt;}
.x1_c00277{left:72.000000pt;}
.x4_c00277{left:78.066667pt;}
.x3_c00277{left:93.133333pt;}
.x5_c00277{left:107.533333pt;}
.x2_c00277{left:127.666667pt;}
.x6_c00277{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_acc50e3c0563ac7613d8502f.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00278;src:url('chunks/assets/font_78cf5cd0ad18c673e87c520f.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00278{letter-spacing:0.000000px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00278{word-spacing:-15.000000px;}
.ws0_c00278{word-spacing:-12.750000px;}
.ws2_c00278{word-spacing:0.000000px;}
._10_c00278{margin-left:-14.520000px;}
._a_c00278{margin-left:-12.540000px;}
._f_c00278{margin-left:-11.100000px;}
._b_c00278{margin-left:-8.100000px;}
._12_c00278{margin-left:-5.744778px;}
._e_c00278{margin-left:-4.560000px;}
._c_c00278{margin-left:-2.820000px;}
._2_c00278{margin-left:-1.620000px;}
._0_c00278{width:1.560000px;}
._4_c00278{width:2.640000px;}
._7_c00278{width:4.620000px;}
._8_c00278{width:5.700000px;}
._9_c00278{width:7.560000px;}
._6_c00278{width:9.120000px;}
._3_c00278{width:10.620000px;}
._5_c00278{width:11.760000px;}
._1_c00278{width:13.260000px;}
._16_c00278{width:14.721024px;}
._14_c00278{width:16.374018px;}
._d_c00278{width:17.940000px;}
._13_c00278{width:22.409988px;}
._11_c00278{width:25.109979px;}
._15_c00278{width:26.609991px;}
._17_c00278{width:29.430000px;}
.fc1_c00278{color:transparent;}
.fc0_c00278{color:rgb(35,31,32);}
.fs1_c00278{font-size:51.000000px;}
.fs0_c00278{font-size:60.000000px;}
.y0_c00278{bottom:0.000000px;}
.y27_c00278{bottom:64.425022px;}
.y26_c00278{bottom:110.175022px;}
.y25_c00278{bottom:125.625022px;}
.y24_c00278{bottom:140.775022px;}
.y23_c00278{bottom:156.225022px;}
.y22_c00278{bottom:171.750022px;}
.y21_c00278{bottom:186.525022px;}
.y20_c00278{bottom:202.350022px;}
.y1f_c00278{bottom:217.125022px;}
.y1e_c00278{bottom:232.575022px;}
.y1d_c00278{bottom:248.025022px;}
.y1c_c00278{bottom:263.175022px;}
.y1b_c00278{bottom:278.625022px;}
.y1a_c00278{bottom:293.775022px;}
.y19_c00278{bottom:335.925022px;}
.y18_c00278{bottom:355.350022px;}
.y17_c00278{bottom:374.775022px;}
.y16_c00278{bottom:394.575022px;}
.y15_c00278{bottom:413.625022px;}
.y14_c00278{bottom:433.425022px;}
.y13_c00278{bottom:452.925022px;}
.y12_c00278{bottom:493.575022px;}
.y10_c00278{bottom:553.725022px;}
.yf_c00278{bottom:573.150022px;}
.ye_c00278{bottom:592.200022px;}
.yd_c00278{bottom:612.000022px;}
.yc_c00278{bottom:631.125022px;}
.yb_c00278{bottom:650.925022px;}
.ya_c00278{bottom:669.975022px;}
.y9_c00278{bottom:689.400022px;}
.y8_c00278{bottom:708.825022px;}
.y7_c00278{bottom:728.625022px;}
.y6_c00278{bottom:748.050022px;}
.y5_c00278{bottom:767.175022px;}
.y4_c00278{bottom:786.300022px;}
.y3_c00278{bottom:805.725022px;}
.y2_c00278{bottom:825.150022px;}
.y1_c00278{bottom:844.950022px;}
.y11_c00278{bottom:886.725022px;}
.h3_c00278{height:50.028809px;}
.h4_c00278{height:50.053711px;}
.h2_c00278{height:58.886719px;}
.h1_c00278{height:957.750000px;}
.h0_c00278{height:957.975000px;}
.w1_c00278{width:643.500000px;}
.w0_c00278{width:643.650000px;}
.x0_c00278{left:0.000000px;}
.x1_c00278{left:90.375000px;}
.x2_c00278{left:91.425000px;}
.x4_c00278{left:97.575000px;}
.x3_c00278{left:106.950000px;}
.x5_c00278{left:131.400000px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls0_c00278{letter-spacing:0.000000pt;}
.ws1_c00278{word-spacing:-13.333333pt;}
.ws0_c00278{word-spacing:-11.333333pt;}
.ws2_c00278{word-spacing:0.000000pt;}
._10_c00278{margin-left:-12.906667pt;}
._a_c00278{margin-left:-11.146667pt;}
._f_c00278{margin-left:-9.866667pt;}
._b_c00278{margin-left:-7.200000pt;}
._12_c00278{margin-left:-5.106469pt;}
._e_c00278{margin-left:-4.053333pt;}
._c_c00278{margin-left:-2.506667pt;}
._2_c00278{margin-left:-1.440000pt;}
._0_c00278{width:1.386667pt;}
._4_c00278{width:2.346667pt;}
._7_c00278{width:4.106667pt;}
._8_c00278{width:5.066667pt;}
._9_c00278{width:6.720000pt;}
._6_c00278{width:8.106667pt;}
._3_c00278{width:9.440000pt;}
._5_c00278{width:10.453333pt;}
._1_c00278{width:11.786667pt;}
._16_c00278{width:13.085355pt;}
._14_c00278{width:14.554683pt;}
._d_c00278{width:15.946667pt;}
._13_c00278{width:19.919989pt;}
._11_c00278{width:22.319981pt;}
._15_c00278{width:23.653325pt;}
._17_c00278{width:26.160000pt;}
.fs1_c00278{font-size:45.333333pt;}
.fs0_c00278{font-size:53.333333pt;}
.y0_c00278{bottom:0.000000pt;}
.y27_c00278{bottom:57.266686pt;}
.y26_c00278{bottom:97.933353pt;}
.y25_c00278{bottom:111.666686pt;}
.y24_c00278{bottom:125.133353pt;}
.y23_c00278{bottom:138.866686pt;}
.y22_c00278{bottom:152.666686pt;}
.y21_c00278{bottom:165.800020pt;}
.y20_c00278{bottom:179.866686pt;}
.y1f_c00278{bottom:193.000020pt;}
.y1e_c00278{bottom:206.733353pt;}
.y1d_c00278{bottom:220.466686pt;}
.y1c_c00278{bottom:233.933353pt;}
.y1b_c00278{bottom:247.666686pt;}
.y1a_c00278{bottom:261.133353pt;}
.y19_c00278{bottom:298.600020pt;}
.y18_c00278{bottom:315.866686pt;}
.y17_c00278{bottom:333.133353pt;}
.y16_c00278{bottom:350.733353pt;}
.y15_c00278{bottom:367.666686pt;}
.y14_c00278{bottom:385.266686pt;}
.y13_c00278{bottom:402.600020pt;}
.y12_c00278{bottom:438.733353pt;}
.y10_c00278{bottom:492.200020pt;}
.yf_c00278{bottom:509.466686pt;}
.ye_c00278{bottom:526.400020pt;}
.yd_c00278{bottom:544.000020pt;}
.yc_c00278{bottom:561.000020pt;}
.yb_c00278{bottom:578.600020pt;}
.ya_c00278{bottom:595.533353pt;}
.y9_c00278{bottom:612.800020pt;}
.y8_c00278{bottom:630.066686pt;}
.y7_c00278{bottom:647.666686pt;}
.y6_c00278{bottom:664.933353pt;}
.y5_c00278{bottom:681.933353pt;}
.y4_c00278{bottom:698.933353pt;}
.y3_c00278{bottom:716.200020pt;}
.y2_c00278{bottom:733.466686pt;}
.y1_c00278{bottom:751.066686pt;}
.y11_c00278{bottom:788.200020pt;}
.h3_c00278{height:44.470052pt;}
.h4_c00278{height:44.492188pt;}
.h2_c00278{height:52.343750pt;}
.h1_c00278{height:851.333333pt;}
.h0_c00278{height:851.533333pt;}
.w1_c00278{width:572.000000pt;}
.w0_c00278{width:572.133333pt;}
.x0_c00278{left:0.000000pt;}
.x1_c00278{left:80.333333pt;}
.x2_c00278{left:81.266667pt;}
.x4_c00278{left:86.733333pt;}
.x3_c00278{left:95.066667pt;}
.x5_c00278{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5ca9a80448dab7886fd08956.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00279;src:url('chunks/assets/font_0563b8329b5c205e5bd472f6.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00279{letter-spacing:0.000000px;}
.sc__c00279{text-shadow:none;}
.sc0_c00279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00279{-webkit-text-stroke:0px transparent;}
.sc0_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00279{word-spacing:-15.000000px;}
.ws1_c00279{word-spacing:-12.750000px;}
.ws2_c00279{word-spacing:0.000000px;}
._c_c00279{margin-left:-13.140000px;}
._b_c00279{margin-left:-11.880000px;}
._18_c00279{margin-left:-10.800000px;}
._19_c00279{margin-left:-8.460000px;}
._14_c00279{margin-left:-6.540000px;}
._1d_c00279{margin-left:-4.800000px;}
._13_c00279{margin-left:-3.300000px;}
._12_c00279{margin-left:-2.280000px;}
._7_c00279{margin-left:-1.080000px;}
._1_c00279{width:1.260000px;}
._0_c00279{width:2.940000px;}
._2_c00279{width:4.200000px;}
._4_c00279{width:6.240000px;}
._17_c00279{width:7.440000px;}
._3_c00279{width:8.640000px;}
._16_c00279{width:9.720000px;}
._5_c00279{width:10.980000px;}
._6_c00279{width:12.480000px;}
._15_c00279{width:13.620000px;}
._1f_c00279{width:15.167946px;}
._10_c00279{width:16.740000px;}
._11_c00279{width:17.760000px;}
._d_c00279{width:19.500000px;}
._9_c00279{width:20.520000px;}
._a_c00279{width:21.720000px;}
._8_c00279{width:23.160000px;}
._f_c00279{width:24.480000px;}
._e_c00279{width:26.220000px;}
._1e_c00279{width:29.670000px;}
._21_c00279{width:31.365084px;}
._20_c00279{width:33.158973px;}
._1a_c00279{width:34.680000px;}
._1c_c00279{width:36.300000px;}
._1b_c00279{width:37.620000px;}
.fc1_c00279{color:transparent;}
.fc0_c00279{color:rgb(35,31,32);}
.fs1_c00279{font-size:51.000000px;}
.fs0_c00279{font-size:60.000000px;}
.y0_c00279{bottom:0.000000px;}
.y2b_c00279{bottom:64.425022px;}
.y2a_c00279{bottom:110.550022px;}
.y29_c00279{bottom:125.325022px;}
.y28_c00279{bottom:140.775022px;}
.y27_c00279{bottom:155.925022px;}
.y26_c00279{bottom:171.375022px;}
.y25_c00279{bottom:186.525022px;}
.y24_c00279{bottom:201.975022px;}
.y23_c00279{bottom:217.425022px;}
.y22_c00279{bottom:232.575022px;}
.y21_c00279{bottom:247.725022px;}
.y20_c00279{bottom:263.550022px;}
.y1f_c00279{bottom:278.325022px;}
.y1e_c00279{bottom:294.150022px;}
.y1d_c00279{bottom:308.925022px;}
.y1c_c00279{bottom:324.750022px;}
.y1b_c00279{bottom:339.525022px;}
.y1a_c00279{bottom:354.975022px;}
.y19_c00279{bottom:370.125022px;}
.y17_c00279{bottom:417.600022px;}
.y16_c00279{bottom:437.025022px;}
.y15_c00279{bottom:456.150022px;}
.y14_c00279{bottom:475.575022px;}
.y13_c00279{bottom:495.000022px;}
.y12_c00279{bottom:514.800022px;}
.y11_c00279{bottom:533.925022px;}
.y10_c00279{bottom:553.725022px;}
.yf_c00279{bottom:572.775022px;}
.ye_c00279{bottom:592.575022px;}
.yd_c00279{bottom:612.000022px;}
.yc_c00279{bottom:631.125022px;}
.yb_c00279{bottom:650.925022px;}
.ya_c00279{bottom:670.350022px;}
.y9_c00279{bottom:689.775022px;}
.y8_c00279{bottom:708.825022px;}
.y7_c00279{bottom:728.325022px;}
.y6_c00279{bottom:747.750022px;}
.y5_c00279{bottom:767.175022px;}
.y4_c00279{bottom:786.300022px;}
.y3_c00279{bottom:805.725022px;}
.y2_c00279{bottom:825.150022px;}
.y1_c00279{bottom:844.575022px;}
.y18_c00279{bottom:886.725022px;}
.h3_c00279{height:50.028809px;}
.h4_c00279{height:50.053711px;}
.h2_c00279{height:58.886719px;}
.h1_c00279{height:957.750000px;}
.h0_c00279{height:957.975000px;}
.w0_c00279{width:641.850030px;}
.w1_c00279{width:642.000000px;}
.x0_c00279{left:0.000000px;}
.x2_c00279{left:80.250000px;}
.x1_c00279{left:81.375000px;}
.x5_c00279{left:87.825000px;}
.x3_c00279{left:97.200000px;}
.x6_c00279{left:120.975000px;}
.x4_c00279{left:143.625000px;}
.x7_c00279{left:531.375000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls0_c00279{letter-spacing:0.000000pt;}
.ws0_c00279{word-spacing:-13.333333pt;}
.ws1_c00279{word-spacing:-11.333333pt;}
.ws2_c00279{word-spacing:0.000000pt;}
._c_c00279{margin-left:-11.680000pt;}
._b_c00279{margin-left:-10.560000pt;}
._18_c00279{margin-left:-9.600000pt;}
._19_c00279{margin-left:-7.520000pt;}
._14_c00279{margin-left:-5.813333pt;}
._1d_c00279{margin-left:-4.266667pt;}
._13_c00279{margin-left:-2.933333pt;}
._12_c00279{margin-left:-2.026667pt;}
._7_c00279{margin-left:-0.960000pt;}
._1_c00279{width:1.120000pt;}
._0_c00279{width:2.613333pt;}
._2_c00279{width:3.733333pt;}
._4_c00279{width:5.546667pt;}
._17_c00279{width:6.613333pt;}
._3_c00279{width:7.680000pt;}
._16_c00279{width:8.640000pt;}
._5_c00279{width:9.760000pt;}
._6_c00279{width:11.093333pt;}
._15_c00279{width:12.106667pt;}
._1f_c00279{width:13.482619pt;}
._10_c00279{width:14.880000pt;}
._11_c00279{width:15.786667pt;}
._d_c00279{width:17.333333pt;}
._9_c00279{width:18.240000pt;}
._a_c00279{width:19.306667pt;}
._8_c00279{width:20.586667pt;}
._f_c00279{width:21.760000pt;}
._e_c00279{width:23.306667pt;}
._1e_c00279{width:26.373333pt;}
._21_c00279{width:27.880075pt;}
._20_c00279{width:29.474643pt;}
._1a_c00279{width:30.826667pt;}
._1c_c00279{width:32.266667pt;}
._1b_c00279{width:33.440000pt;}
.fs1_c00279{font-size:45.333333pt;}
.fs0_c00279{font-size:53.333333pt;}
.y0_c00279{bottom:0.000000pt;}
.y2b_c00279{bottom:57.266686pt;}
.y2a_c00279{bottom:98.266686pt;}
.y29_c00279{bottom:111.400020pt;}
.y28_c00279{bottom:125.133353pt;}
.y27_c00279{bottom:138.600020pt;}
.y26_c00279{bottom:152.333353pt;}
.y25_c00279{bottom:165.800020pt;}
.y24_c00279{bottom:179.533353pt;}
.y23_c00279{bottom:193.266686pt;}
.y22_c00279{bottom:206.733353pt;}
.y21_c00279{bottom:220.200020pt;}
.y20_c00279{bottom:234.266686pt;}
.y1f_c00279{bottom:247.400020pt;}
.y1e_c00279{bottom:261.466686pt;}
.y1d_c00279{bottom:274.600020pt;}
.y1c_c00279{bottom:288.666686pt;}
.y1b_c00279{bottom:301.800020pt;}
.y1a_c00279{bottom:315.533353pt;}
.y19_c00279{bottom:329.000020pt;}
.y17_c00279{bottom:371.200020pt;}
.y16_c00279{bottom:388.466686pt;}
.y15_c00279{bottom:405.466686pt;}
.y14_c00279{bottom:422.733353pt;}
.y13_c00279{bottom:440.000020pt;}
.y12_c00279{bottom:457.600020pt;}
.y11_c00279{bottom:474.600020pt;}
.y10_c00279{bottom:492.200020pt;}
.yf_c00279{bottom:509.133353pt;}
.ye_c00279{bottom:526.733353pt;}
.yd_c00279{bottom:544.000020pt;}
.yc_c00279{bottom:561.000020pt;}
.yb_c00279{bottom:578.600020pt;}
.ya_c00279{bottom:595.866686pt;}
.y9_c00279{bottom:613.133353pt;}
.y8_c00279{bottom:630.066686pt;}
.y7_c00279{bottom:647.400020pt;}
.y6_c00279{bottom:664.666686pt;}
.y5_c00279{bottom:681.933353pt;}
.y4_c00279{bottom:698.933353pt;}
.y3_c00279{bottom:716.200020pt;}
.y2_c00279{bottom:733.466686pt;}
.y1_c00279{bottom:750.733353pt;}
.y18_c00279{bottom:788.200020pt;}
.h3_c00279{height:44.470052pt;}
.h4_c00279{height:44.492188pt;}
.h2_c00279{height:52.343750pt;}
.h1_c00279{height:851.333333pt;}
.h0_c00279{height:851.533333pt;}
.w0_c00279{width:570.533360pt;}
.w1_c00279{width:570.666667pt;}
.x0_c00279{left:0.000000pt;}
.x2_c00279{left:71.333333pt;}
.x1_c00279{left:72.333333pt;}
.x5_c00279{left:78.066667pt;}
.x3_c00279{left:86.400000pt;}
.x6_c00279{left:107.533333pt;}
.x4_c00279{left:127.666667pt;}
.x7_c00279{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5026980cf21aa04651838398.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00280;src:url('chunks/assets/font_09b5ed636260d031ea0d118d.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00280{letter-spacing:0.000000px;}
.sc__c00280{text-shadow:none;}
.sc0_c00280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00280{-webkit-text-stroke:0px transparent;}
.sc0_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00280{word-spacing:-15.000000px;}
.ws0_c00280{word-spacing:-12.750000px;}
.ws2_c00280{word-spacing:0.000000px;}
._f_c00280{margin-left:-13.997175px;}
._e_c00280{margin-left:-12.402825px;}
._10_c00280{margin-left:-11.067402px;}
._d_c00280{margin-left:-8.472441px;}
._18_c00280{margin-left:-7.430925px;}
._6_c00280{margin-left:-5.400000px;}
._4_c00280{margin-left:-3.804243px;}
._0_c00280{margin-left:-2.622012px;}
._2_c00280{margin-left:-1.539027px;}
._3_c00280{width:1.062024px;}
._1_c00280{width:2.400009px;}
._9_c00280{width:3.527793px;}
._12_c00280{width:5.350122px;}
._11_c00280{width:7.196349px;}
._c_c00280{width:8.318955px;}
._7_c00280{width:10.119030px;}
._a_c00280{width:11.537958px;}
._8_c00280{width:12.893919px;}
._b_c00280{width:13.995294px;}
._5_c00280{width:17.036904px;}
._13_c00280{width:18.071664px;}
._17_c00280{width:21.290958px;}
._16_c00280{width:22.295925px;}
._15_c00280{width:24.720000px;}
._14_c00280{width:26.009871px;}
.fc1_c00280{color:transparent;}
.fc0_c00280{color:rgb(35,31,32);}
.fs0_c00280{font-size:51.000000px;}
.fs1_c00280{font-size:60.000000px;}
.y0_c00280{bottom:0.000000px;}
.y2a_c00280{bottom:64.425022px;}
.y29_c00280{bottom:110.175022px;}
.y28_c00280{bottom:125.325022px;}
.y27_c00280{bottom:141.150022px;}
.y26_c00280{bottom:155.925022px;}
.y25_c00280{bottom:171.375022px;}
.y24_c00280{bottom:186.525022px;}
.y23_c00280{bottom:201.975022px;}
.y22_c00280{bottom:217.125022px;}
.y21_c00280{bottom:232.950022px;}
.y20_c00280{bottom:248.025022px;}
.y1f_c00280{bottom:263.175022px;}
.y1e_c00280{bottom:278.325022px;}
.y1d_c00280{bottom:320.475022px;}
.y1c_c00280{bottom:339.900022px;}
.y1b_c00280{bottom:359.325022px;}
.y1a_c00280{bottom:378.750022px;}
.y19_c00280{bottom:398.175022px;}
.y18_c00280{bottom:417.225022px;}
.y17_c00280{bottom:436.725022px;}
.y16_c00280{bottom:456.150022px;}
.y15_c00280{bottom:475.575022px;}
.y14_c00280{bottom:495.000022px;}
.y13_c00280{bottom:514.425022px;}
.y12_c00280{bottom:534.225022px;}
.y11_c00280{bottom:553.350022px;}
.y10_c00280{bottom:572.775022px;}
.yf_c00280{bottom:592.575022px;}
.ye_c00280{bottom:611.625022px;}
.yd_c00280{bottom:631.425022px;}
.yc_c00280{bottom:650.925022px;}
.yb_c00280{bottom:669.975022px;}
.ya_c00280{bottom:689.775022px;}
.y9_c00280{bottom:708.825022px;}
.y8_c00280{bottom:728.625022px;}
.y7_c00280{bottom:747.750022px;}
.y6_c00280{bottom:767.550022px;}
.y5_c00280{bottom:786.600022px;}
.y4_c00280{bottom:805.725022px;}
.y3_c00280{bottom:825.150022px;}
.y2_c00280{bottom:844.575022px;}
.y1_c00280{bottom:886.725022px;}
.h2_c00280{height:50.028809px;}
.h4_c00280{height:50.053711px;}
.h3_c00280{height:58.886719px;}
.h1_c00280{height:957.750000px;}
.h0_c00280{height:957.975000px;}
.w1_c00280{width:643.500000px;}
.w0_c00280{width:643.650000px;}
.x0_c00280{left:0.000000px;}
.x1_c00280{left:91.050000px;}
.x3_c00280{left:97.575000px;}
.x2_c00280{left:107.250000px;}
.x4_c00280{left:131.025000px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls0_c00280{letter-spacing:0.000000pt;}
.ws1_c00280{word-spacing:-13.333333pt;}
.ws0_c00280{word-spacing:-11.333333pt;}
.ws2_c00280{word-spacing:0.000000pt;}
._f_c00280{margin-left:-12.441933pt;}
._e_c00280{margin-left:-11.024733pt;}
._10_c00280{margin-left:-9.837691pt;}
._d_c00280{margin-left:-7.531059pt;}
._18_c00280{margin-left:-6.605267pt;}
._6_c00280{margin-left:-4.800000pt;}
._4_c00280{margin-left:-3.381549pt;}
._0_c00280{margin-left:-2.330677pt;}
._2_c00280{margin-left:-1.368024pt;}
._3_c00280{width:0.944021pt;}
._1_c00280{width:2.133341pt;}
._9_c00280{width:3.135816pt;}
._12_c00280{width:4.755664pt;}
._11_c00280{width:6.396755pt;}
._c_c00280{width:7.394627pt;}
._7_c00280{width:8.994693pt;}
._a_c00280{width:10.255963pt;}
._8_c00280{width:11.461261pt;}
._b_c00280{width:12.440261pt;}
._5_c00280{width:15.143915pt;}
._13_c00280{width:16.063701pt;}
._17_c00280{width:18.925296pt;}
._16_c00280{width:19.818600pt;}
._15_c00280{width:21.973333pt;}
._14_c00280{width:23.119885pt;}
.fs0_c00280{font-size:45.333333pt;}
.fs1_c00280{font-size:53.333333pt;}
.y0_c00280{bottom:0.000000pt;}
.y2a_c00280{bottom:57.266686pt;}
.y29_c00280{bottom:97.933353pt;}
.y28_c00280{bottom:111.400020pt;}
.y27_c00280{bottom:125.466686pt;}
.y26_c00280{bottom:138.600020pt;}
.y25_c00280{bottom:152.333353pt;}
.y24_c00280{bottom:165.800020pt;}
.y23_c00280{bottom:179.533353pt;}
.y22_c00280{bottom:193.000020pt;}
.y21_c00280{bottom:207.066686pt;}
.y20_c00280{bottom:220.466686pt;}
.y1f_c00280{bottom:233.933353pt;}
.y1e_c00280{bottom:247.400020pt;}
.y1d_c00280{bottom:284.866686pt;}
.y1c_c00280{bottom:302.133353pt;}
.y1b_c00280{bottom:319.400020pt;}
.y1a_c00280{bottom:336.666686pt;}
.y19_c00280{bottom:353.933353pt;}
.y18_c00280{bottom:370.866686pt;}
.y17_c00280{bottom:388.200020pt;}
.y16_c00280{bottom:405.466686pt;}
.y15_c00280{bottom:422.733353pt;}
.y14_c00280{bottom:440.000020pt;}
.y13_c00280{bottom:457.266686pt;}
.y12_c00280{bottom:474.866686pt;}
.y11_c00280{bottom:491.866686pt;}
.y10_c00280{bottom:509.133353pt;}
.yf_c00280{bottom:526.733353pt;}
.ye_c00280{bottom:543.666686pt;}
.yd_c00280{bottom:561.266686pt;}
.yc_c00280{bottom:578.600020pt;}
.yb_c00280{bottom:595.533353pt;}
.ya_c00280{bottom:613.133353pt;}
.y9_c00280{bottom:630.066686pt;}
.y8_c00280{bottom:647.666686pt;}
.y7_c00280{bottom:664.666686pt;}
.y6_c00280{bottom:682.266686pt;}
.y5_c00280{bottom:699.200020pt;}
.y4_c00280{bottom:716.200020pt;}
.y3_c00280{bottom:733.466686pt;}
.y2_c00280{bottom:750.733353pt;}
.y1_c00280{bottom:788.200020pt;}
.h2_c00280{height:44.470052pt;}
.h4_c00280{height:44.492188pt;}
.h3_c00280{height:52.343750pt;}
.h1_c00280{height:851.333333pt;}
.h0_c00280{height:851.533333pt;}
.w1_c00280{width:572.000000pt;}
.w0_c00280{width:572.133333pt;}
.x0_c00280{left:0.000000pt;}
.x1_c00280{left:80.933333pt;}
.x3_c00280{left:86.733333pt;}
.x2_c00280{left:95.333333pt;}
.x4_c00280{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1a0904061de65e4d731414f3.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00281;src:url('chunks/assets/font_b981348b1c4bb6727bf03a8b.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00281{letter-spacing:0.000000px;}
.sc__c00281{text-shadow:none;}
.sc0_c00281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00281{-webkit-text-stroke:0px transparent;}
.sc0_c00281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00281{word-spacing:-15.000000px;}
.ws1_c00281{word-spacing:-12.750000px;}
.ws2_c00281{word-spacing:0.000000px;}
._12_c00281{margin-left:-12.020820px;}
._10_c00281{margin-left:-11.019180px;}
._f_c00281{margin-left:-9.380820px;}
._b_c00281{margin-left:-6.746940px;}
._15_c00281{margin-left:-5.351937px;}
._11_c00281{margin-left:-4.280820px;}
._c_c00281{margin-left:-2.760000px;}
._9_c00281{margin-left:-1.620000px;}
._1_c00281{width:1.020000px;}
._0_c00281{width:2.160000px;}
._2_c00281{width:3.180000px;}
._7_c00281{width:4.860000px;}
._a_c00281{width:6.720000px;}
._8_c00281{width:8.100000px;}
._6_c00281{width:10.080000px;}
._d_c00281{width:11.366940px;}
._5_c00281{width:12.600000px;}
._3_c00281{width:13.800000px;}
._e_c00281{width:16.353060px;}
._4_c00281{width:17.460000px;}
._13_c00281{width:18.738360px;}
._14_c00281{width:23.850000px;}
.fc1_c00281{color:transparent;}
.fc0_c00281{color:rgb(35,31,32);}
.fs1_c00281{font-size:51.000000px;}
.fs0_c00281{font-size:60.000000px;}
.y0_c00281{bottom:0.000000px;}
.y23_c00281{bottom:64.425022px;}
.y22_c00281{bottom:110.550022px;}
.y21_c00281{bottom:125.325022px;}
.y20_c00281{bottom:140.775022px;}
.y1f_c00281{bottom:155.925022px;}
.y1e_c00281{bottom:171.375022px;}
.y1d_c00281{bottom:186.525022px;}
.y1c_c00281{bottom:201.975022px;}
.y1b_c00281{bottom:217.125022px;}
.y1a_c00281{bottom:232.575022px;}
.y19_c00281{bottom:247.725022px;}
.y18_c00281{bottom:263.175022px;}
.y17_c00281{bottom:278.625022px;}
.y16_c00281{bottom:293.775022px;}
.y15_c00281{bottom:308.925022px;}
.y14_c00281{bottom:439.200022px;}
.y13_c00281{bottom:458.325022px;}
.y12_c00281{bottom:477.750022px;}
.y11_c00281{bottom:497.175022px;}
.y10_c00281{bottom:516.600022px;}
.yf_c00281{bottom:536.325022px;}
.ye_c00281{bottom:555.825022px;}
.yd_c00281{bottom:575.325022px;}
.yc_c00281{bottom:594.375022px;}
.yb_c00281{bottom:614.175022px;}
.ya_c00281{bottom:633.600022px;}
.y9_c00281{bottom:652.725022px;}
.y8_c00281{bottom:672.150022px;}
.y7_c00281{bottom:691.575022px;}
.y6_c00281{bottom:729.750022px;}
.y4_c00281{bottom:786.600022px;}
.y3_c00281{bottom:805.725022px;}
.y2_c00281{bottom:825.150022px;}
.y1_c00281{bottom:844.950022px;}
.y5_c00281{bottom:886.725022px;}
.h3_c00281{height:50.028809px;}
.h4_c00281{height:50.053711px;}
.h2_c00281{height:58.886719px;}
.h1_c00281{height:957.750000px;}
.h0_c00281{height:957.975000px;}
.w0_c00281{width:641.850030px;}
.w1_c00281{width:642.000000px;}
.x0_c00281{left:0.000000px;}
.x1_c00281{left:81.375000px;}
.x3_c00281{left:87.825000px;}
.x4_c00281{left:120.975000px;}
.x2_c00281{left:143.625000px;}
.x5_c00281{left:531.375000px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls0_c00281{letter-spacing:0.000000pt;}
.ws0_c00281{word-spacing:-13.333333pt;}
.ws1_c00281{word-spacing:-11.333333pt;}
.ws2_c00281{word-spacing:0.000000pt;}
._12_c00281{margin-left:-10.685173pt;}
._10_c00281{margin-left:-9.794827pt;}
._f_c00281{margin-left:-8.338507pt;}
._b_c00281{margin-left:-5.997280pt;}
._15_c00281{margin-left:-4.757277pt;}
._11_c00281{margin-left:-3.805173pt;}
._c_c00281{margin-left:-2.453333pt;}
._9_c00281{margin-left:-1.440000pt;}
._1_c00281{width:0.906667pt;}
._0_c00281{width:1.920000pt;}
._2_c00281{width:2.826667pt;}
._7_c00281{width:4.320000pt;}
._a_c00281{width:5.973333pt;}
._8_c00281{width:7.200000pt;}
._6_c00281{width:8.960000pt;}
._d_c00281{width:10.103947pt;}
._5_c00281{width:11.200000pt;}
._3_c00281{width:12.266667pt;}
._e_c00281{width:14.536053pt;}
._4_c00281{width:15.520000pt;}
._13_c00281{width:16.656320pt;}
._14_c00281{width:21.200000pt;}
.fs1_c00281{font-size:45.333333pt;}
.fs0_c00281{font-size:53.333333pt;}
.y0_c00281{bottom:0.000000pt;}
.y23_c00281{bottom:57.266686pt;}
.y22_c00281{bottom:98.266686pt;}
.y21_c00281{bottom:111.400020pt;}
.y20_c00281{bottom:125.133353pt;}
.y1f_c00281{bottom:138.600020pt;}
.y1e_c00281{bottom:152.333353pt;}
.y1d_c00281{bottom:165.800020pt;}
.y1c_c00281{bottom:179.533353pt;}
.y1b_c00281{bottom:193.000020pt;}
.y1a_c00281{bottom:206.733353pt;}
.y19_c00281{bottom:220.200020pt;}
.y18_c00281{bottom:233.933353pt;}
.y17_c00281{bottom:247.666686pt;}
.y16_c00281{bottom:261.133353pt;}
.y15_c00281{bottom:274.600020pt;}
.y14_c00281{bottom:390.400020pt;}
.y13_c00281{bottom:407.400020pt;}
.y12_c00281{bottom:424.666686pt;}
.y11_c00281{bottom:441.933353pt;}
.y10_c00281{bottom:459.200020pt;}
.yf_c00281{bottom:476.733353pt;}
.ye_c00281{bottom:494.066686pt;}
.yd_c00281{bottom:511.400020pt;}
.yc_c00281{bottom:528.333353pt;}
.yb_c00281{bottom:545.933353pt;}
.ya_c00281{bottom:563.200020pt;}
.y9_c00281{bottom:580.200020pt;}
.y8_c00281{bottom:597.466686pt;}
.y7_c00281{bottom:614.733353pt;}
.y6_c00281{bottom:648.666686pt;}
.y4_c00281{bottom:699.200020pt;}
.y3_c00281{bottom:716.200020pt;}
.y2_c00281{bottom:733.466686pt;}
.y1_c00281{bottom:751.066686pt;}
.y5_c00281{bottom:788.200020pt;}
.h3_c00281{height:44.470052pt;}
.h4_c00281{height:44.492188pt;}
.h2_c00281{height:52.343750pt;}
.h1_c00281{height:851.333333pt;}
.h0_c00281{height:851.533333pt;}
.w0_c00281{width:570.533360pt;}
.w1_c00281{width:570.666667pt;}
.x0_c00281{left:0.000000pt;}
.x1_c00281{left:72.333333pt;}
.x3_c00281{left:78.066667pt;}
.x4_c00281{left:107.533333pt;}
.x2_c00281{left:127.666667pt;}
.x5_c00281{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_294487198221be5618a0f4a7.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00282;src:url('chunks/assets/font_225f51890530691b421e7f48.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00282{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00282{letter-spacing:0.000000px;}
.sc__c00282{text-shadow:none;}
.sc0_c00282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00282{-webkit-text-stroke:0px transparent;}
.sc0_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00282{word-spacing:-15.000000px;}
.ws0_c00282{word-spacing:-12.750000px;}
.ws2_c00282{word-spacing:0.000000px;}
._f_c00282{margin-left:-14.400000px;}
._10_c00282{margin-left:-13.260000px;}
._a_c00282{margin-left:-11.940000px;}
._19_c00282{margin-left:-10.902018px;}
._1b_c00282{margin-left:-7.368024px;}
._16_c00282{margin-left:-5.883045px;}
._1_c00282{margin-left:-4.800000px;}
._0_c00282{margin-left:-2.880000px;}
._9_c00282{margin-left:-1.440000px;}
._3_c00282{width:1.440000px;}
._4_c00282{width:3.420000px;}
._6_c00282{width:5.400000px;}
._13_c00282{width:6.459003px;}
._5_c00282{width:7.620000px;}
._8_c00282{width:9.360000px;}
._2_c00282{width:10.500000px;}
._7_c00282{width:11.580000px;}
._e_c00282{width:13.080000px;}
._18_c00282{width:14.384973px;}
._14_c00282{width:15.407781px;}
._c_c00282{width:16.740000px;}
._d_c00282{width:18.060000px;}
._b_c00282{width:20.640000px;}
._1a_c00282{width:23.339937px;}
._11_c00282{width:25.184994px;}
._12_c00282{width:26.205078px;}
._17_c00282{width:27.749991px;}
._15_c00282{width:29.190093px;}
.fc1_c00282{color:transparent;}
.fc0_c00282{color:rgb(35,31,32);}
.fs1_c00282{font-size:51.000000px;}
.fs0_c00282{font-size:60.000000px;}
.y0_c00282{bottom:0.000000px;}
.y2a_c00282{bottom:64.800022px;}
.y29_c00282{bottom:110.175022px;}
.y28_c00282{bottom:125.325022px;}
.y27_c00282{bottom:141.150022px;}
.y26_c00282{bottom:155.925022px;}
.y25_c00282{bottom:171.375022px;}
.y24_c00282{bottom:186.525022px;}
.y23_c00282{bottom:202.350022px;}
.y22_c00282{bottom:217.125022px;}
.y21_c00282{bottom:232.950022px;}
.y20_c00282{bottom:247.725022px;}
.y1f_c00282{bottom:263.175022px;}
.y1e_c00282{bottom:278.625022px;}
.y1d_c00282{bottom:294.150022px;}
.y1c_c00282{bottom:308.925022px;}
.y1b_c00282{bottom:324.675022px;}
.y1a_c00282{bottom:339.825022px;}
.y19_c00282{bottom:354.975022px;}
.y18_c00282{bottom:370.125022px;}
.y17_c00282{bottom:385.950022px;}
.y16_c00282{bottom:400.725022px;}
.y15_c00282{bottom:416.175022px;}
.y14_c00282{bottom:431.625022px;}
.y13_c00282{bottom:446.775022px;}
.y12_c00282{bottom:461.925022px;}
.y11_c00282{bottom:477.750022px;}
.y10_c00282{bottom:492.525022px;}
.ye_c00282{bottom:573.825022px;}
.yd_c00282{bottom:592.950022px;}
.yc_c00282{bottom:612.750022px;}
.yb_c00282{bottom:631.800022px;}
.ya_c00282{bottom:651.225022px;}
.y9_c00282{bottom:671.100022px;}
.y8_c00282{bottom:690.525022px;}
.y7_c00282{bottom:709.950022px;}
.y6_c00282{bottom:728.625022px;}
.y5_c00282{bottom:748.425022px;}
.y4_c00282{bottom:767.550022px;}
.y3_c00282{bottom:786.975022px;}
.y2_c00282{bottom:806.775022px;}
.y1_c00282{bottom:844.575022px;}
.yf_c00282{bottom:886.725022px;}
.h3_c00282{height:50.028809px;}
.h4_c00282{height:50.053711px;}
.h5_c00282{height:50.353711px;}
.h2_c00282{height:58.886719px;}
.h1_c00282{height:957.750000px;}
.h0_c00282{height:957.975000px;}
.w1_c00282{width:643.500000px;}
.w0_c00282{width:643.650000px;}
.x0_c00282{left:0.000000px;}
.x2_c00282{left:90.375000px;}
.x1_c00282{left:91.800000px;}
.x3_c00282{left:97.575000px;}
.x5_c00282{left:130.650000px;}
.x4_c00282{left:131.775000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls0_c00282{letter-spacing:0.000000pt;}
.ws1_c00282{word-spacing:-13.333333pt;}
.ws0_c00282{word-spacing:-11.333333pt;}
.ws2_c00282{word-spacing:0.000000pt;}
._f_c00282{margin-left:-12.800000pt;}
._10_c00282{margin-left:-11.786667pt;}
._a_c00282{margin-left:-10.613333pt;}
._19_c00282{margin-left:-9.690683pt;}
._1b_c00282{margin-left:-6.549355pt;}
._16_c00282{margin-left:-5.229373pt;}
._1_c00282{margin-left:-4.266667pt;}
._0_c00282{margin-left:-2.560000pt;}
._9_c00282{margin-left:-1.280000pt;}
._3_c00282{width:1.280000pt;}
._4_c00282{width:3.040000pt;}
._6_c00282{width:4.800000pt;}
._13_c00282{width:5.741336pt;}
._5_c00282{width:6.773333pt;}
._8_c00282{width:8.320000pt;}
._2_c00282{width:9.333333pt;}
._7_c00282{width:10.293333pt;}
._e_c00282{width:11.626667pt;}
._18_c00282{width:12.786643pt;}
._14_c00282{width:13.695805pt;}
._c_c00282{width:14.880000pt;}
._d_c00282{width:16.053333pt;}
._b_c00282{width:18.346667pt;}
._1a_c00282{width:20.746611pt;}
._11_c00282{width:22.386661pt;}
._12_c00282{width:23.293403pt;}
._17_c00282{width:24.666659pt;}
._15_c00282{width:25.946749pt;}
.fs1_c00282{font-size:45.333333pt;}
.fs0_c00282{font-size:53.333333pt;}
.y0_c00282{bottom:0.000000pt;}
.y2a_c00282{bottom:57.600020pt;}
.y29_c00282{bottom:97.933353pt;}
.y28_c00282{bottom:111.400020pt;}
.y27_c00282{bottom:125.466686pt;}
.y26_c00282{bottom:138.600020pt;}
.y25_c00282{bottom:152.333353pt;}
.y24_c00282{bottom:165.800020pt;}
.y23_c00282{bottom:179.866686pt;}
.y22_c00282{bottom:193.000020pt;}
.y21_c00282{bottom:207.066686pt;}
.y20_c00282{bottom:220.200020pt;}
.y1f_c00282{bottom:233.933353pt;}
.y1e_c00282{bottom:247.666686pt;}
.y1d_c00282{bottom:261.466686pt;}
.y1c_c00282{bottom:274.600020pt;}
.y1b_c00282{bottom:288.600020pt;}
.y1a_c00282{bottom:302.066686pt;}
.y19_c00282{bottom:315.533353pt;}
.y18_c00282{bottom:329.000020pt;}
.y17_c00282{bottom:343.066686pt;}
.y16_c00282{bottom:356.200020pt;}
.y15_c00282{bottom:369.933353pt;}
.y14_c00282{bottom:383.666686pt;}
.y13_c00282{bottom:397.133353pt;}
.y12_c00282{bottom:410.600020pt;}
.y11_c00282{bottom:424.666686pt;}
.y10_c00282{bottom:437.800020pt;}
.ye_c00282{bottom:510.066686pt;}
.yd_c00282{bottom:527.066686pt;}
.yc_c00282{bottom:544.666686pt;}
.yb_c00282{bottom:561.600020pt;}
.ya_c00282{bottom:578.866686pt;}
.y9_c00282{bottom:596.533353pt;}
.y8_c00282{bottom:613.800020pt;}
.y7_c00282{bottom:631.066686pt;}
.y6_c00282{bottom:647.666686pt;}
.y5_c00282{bottom:665.266686pt;}
.y4_c00282{bottom:682.266686pt;}
.y3_c00282{bottom:699.533353pt;}
.y2_c00282{bottom:717.133353pt;}
.y1_c00282{bottom:750.733353pt;}
.yf_c00282{bottom:788.200020pt;}
.h3_c00282{height:44.470052pt;}
.h4_c00282{height:44.492188pt;}
.h5_c00282{height:44.758854pt;}
.h2_c00282{height:52.343750pt;}
.h1_c00282{height:851.333333pt;}
.h0_c00282{height:851.533333pt;}
.w1_c00282{width:572.000000pt;}
.w0_c00282{width:572.133333pt;}
.x0_c00282{left:0.000000pt;}
.x2_c00282{left:80.333333pt;}
.x1_c00282{left:81.600000pt;}
.x3_c00282{left:86.733333pt;}
.x5_c00282{left:116.133333pt;}
.x4_c00282{left:117.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7255d71f79045c07f4ef0416.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00283;src:url('chunks/assets/font_b8ca224b89a2dae06b02dd93.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00283{letter-spacing:0.000000px;}
.sc__c00283{text-shadow:none;}
.sc0_c00283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00283{-webkit-text-stroke:0px transparent;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00283{word-spacing:-15.000000px;}
.ws0_c00283{word-spacing:-12.750000px;}
.ws2_c00283{word-spacing:0.000000px;}
._d_c00283{margin-left:-16.320000px;}
._17_c00283{margin-left:-13.320000px;}
._5_c00283{margin-left:-12.000000px;}
._16_c00283{margin-left:-10.140000px;}
._13_c00283{margin-left:-9.060000px;}
._b_c00283{margin-left:-7.860000px;}
._15_c00283{margin-left:-6.420000px;}
._a_c00283{margin-left:-5.400000px;}
._19_c00283{margin-left:-4.236012px;}
._12_c00283{margin-left:-3.180000px;}
._2_c00283{margin-left:-2.040000px;}
._14_c00283{margin-left:-1.020000px;}
._0_c00283{width:1.860000px;}
._4_c00283{width:2.880000px;}
._1_c00283{width:3.900000px;}
._3_c00283{width:5.400000px;}
._6_c00283{width:7.260000px;}
._f_c00283{width:9.120000px;}
._10_c00283{width:10.140000px;}
._c_c00283{width:11.160000px;}
._e_c00283{width:12.420000px;}
._9_c00283{width:13.980000px;}
._1a_c00283{width:15.147000px;}
._8_c00283{width:16.980000px;}
._7_c00283{width:18.060000px;}
._11_c00283{width:19.080000px;}
._1c_c00283{width:20.490000px;}
._1b_c00283{width:22.470000px;}
._18_c00283{width:26.190030px;}
._1d_c00283{width:28.290000px;}
.fc1_c00283{color:transparent;}
.fc0_c00283{color:rgb(35,31,32);}
.fs1_c00283{font-size:51.000000px;}
.fs0_c00283{font-size:60.000000px;}
.y0_c00283{bottom:0.000000px;}
.y2a_c00283{bottom:64.425022px;}
.y29_c00283{bottom:110.175022px;}
.y28_c00283{bottom:125.325022px;}
.y27_c00283{bottom:140.775022px;}
.y26_c00283{bottom:155.925022px;}
.y25_c00283{bottom:171.375022px;}
.y24_c00283{bottom:186.525022px;}
.y23_c00283{bottom:201.975022px;}
.y22_c00283{bottom:217.125022px;}
.y21_c00283{bottom:232.575022px;}
.y20_c00283{bottom:247.725022px;}
.y1f_c00283{bottom:263.550022px;}
.y1e_c00283{bottom:278.325022px;}
.y1d_c00283{bottom:294.075022px;}
.y1c_c00283{bottom:309.225022px;}
.y1b_c00283{bottom:324.375022px;}
.y1a_c00283{bottom:339.525022px;}
.y18_c00283{bottom:397.800022px;}
.y17_c00283{bottom:417.225022px;}
.y16_c00283{bottom:437.025022px;}
.y15_c00283{bottom:456.150022px;}
.y14_c00283{bottom:475.575022px;}
.y13_c00283{bottom:495.000022px;}
.y12_c00283{bottom:514.800022px;}
.y11_c00283{bottom:533.925022px;}
.y10_c00283{bottom:553.725022px;}
.yf_c00283{bottom:572.775022px;}
.ye_c00283{bottom:592.200022px;}
.yd_c00283{bottom:612.000022px;}
.yc_c00283{bottom:631.125022px;}
.yb_c00283{bottom:650.925022px;}
.ya_c00283{bottom:669.975022px;}
.y9_c00283{bottom:689.400022px;}
.y8_c00283{bottom:708.825022px;}
.y7_c00283{bottom:728.325022px;}
.y6_c00283{bottom:747.750022px;}
.y5_c00283{bottom:767.550022px;}
.y4_c00283{bottom:786.300022px;}
.y3_c00283{bottom:805.725022px;}
.y2_c00283{bottom:825.150022px;}
.y1_c00283{bottom:844.575022px;}
.y19_c00283{bottom:886.725022px;}
.h3_c00283{height:50.028809px;}
.h4_c00283{height:50.053711px;}
.h2_c00283{height:58.886719px;}
.h1_c00283{height:957.750000px;}
.h0_c00283{height:957.975000px;}
.w0_c00283{width:641.850030px;}
.w1_c00283{width:642.000000px;}
.x0_c00283{left:0.000000px;}
.x2_c00283{left:81.000000px;}
.x5_c00283{left:87.825000px;}
.x1_c00283{left:96.150000px;}
.x3_c00283{left:97.200000px;}
.x6_c00283{left:120.975000px;}
.x4_c00283{left:143.625000px;}
.x7_c00283{left:531.375000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls0_c00283{letter-spacing:0.000000pt;}
.ws1_c00283{word-spacing:-13.333333pt;}
.ws0_c00283{word-spacing:-11.333333pt;}
.ws2_c00283{word-spacing:0.000000pt;}
._d_c00283{margin-left:-14.506667pt;}
._17_c00283{margin-left:-11.840000pt;}
._5_c00283{margin-left:-10.666667pt;}
._16_c00283{margin-left:-9.013333pt;}
._13_c00283{margin-left:-8.053333pt;}
._b_c00283{margin-left:-6.986667pt;}
._15_c00283{margin-left:-5.706667pt;}
._a_c00283{margin-left:-4.800000pt;}
._19_c00283{margin-left:-3.765344pt;}
._12_c00283{margin-left:-2.826667pt;}
._2_c00283{margin-left:-1.813333pt;}
._14_c00283{margin-left:-0.906667pt;}
._0_c00283{width:1.653333pt;}
._4_c00283{width:2.560000pt;}
._1_c00283{width:3.466667pt;}
._3_c00283{width:4.800000pt;}
._6_c00283{width:6.453333pt;}
._f_c00283{width:8.106667pt;}
._10_c00283{width:9.013333pt;}
._c_c00283{width:9.920000pt;}
._e_c00283{width:11.040000pt;}
._9_c00283{width:12.426667pt;}
._1a_c00283{width:13.464000pt;}
._8_c00283{width:15.093333pt;}
._7_c00283{width:16.053333pt;}
._11_c00283{width:16.960000pt;}
._1c_c00283{width:18.213333pt;}
._1b_c00283{width:19.973333pt;}
._18_c00283{width:23.280027pt;}
._1d_c00283{width:25.146667pt;}
.fs1_c00283{font-size:45.333333pt;}
.fs0_c00283{font-size:53.333333pt;}
.y0_c00283{bottom:0.000000pt;}
.y2a_c00283{bottom:57.266686pt;}
.y29_c00283{bottom:97.933353pt;}
.y28_c00283{bottom:111.400020pt;}
.y27_c00283{bottom:125.133353pt;}
.y26_c00283{bottom:138.600020pt;}
.y25_c00283{bottom:152.333353pt;}
.y24_c00283{bottom:165.800020pt;}
.y23_c00283{bottom:179.533353pt;}
.y22_c00283{bottom:193.000020pt;}
.y21_c00283{bottom:206.733353pt;}
.y20_c00283{bottom:220.200020pt;}
.y1f_c00283{bottom:234.266686pt;}
.y1e_c00283{bottom:247.400020pt;}
.y1d_c00283{bottom:261.400020pt;}
.y1c_c00283{bottom:274.866686pt;}
.y1b_c00283{bottom:288.333353pt;}
.y1a_c00283{bottom:301.800020pt;}
.y18_c00283{bottom:353.600020pt;}
.y17_c00283{bottom:370.866686pt;}
.y16_c00283{bottom:388.466686pt;}
.y15_c00283{bottom:405.466686pt;}
.y14_c00283{bottom:422.733353pt;}
.y13_c00283{bottom:440.000020pt;}
.y12_c00283{bottom:457.600020pt;}
.y11_c00283{bottom:474.600020pt;}
.y10_c00283{bottom:492.200020pt;}
.yf_c00283{bottom:509.133353pt;}
.ye_c00283{bottom:526.400020pt;}
.yd_c00283{bottom:544.000020pt;}
.yc_c00283{bottom:561.000020pt;}
.yb_c00283{bottom:578.600020pt;}
.ya_c00283{bottom:595.533353pt;}
.y9_c00283{bottom:612.800020pt;}
.y8_c00283{bottom:630.066686pt;}
.y7_c00283{bottom:647.400020pt;}
.y6_c00283{bottom:664.666686pt;}
.y5_c00283{bottom:682.266686pt;}
.y4_c00283{bottom:698.933353pt;}
.y3_c00283{bottom:716.200020pt;}
.y2_c00283{bottom:733.466686pt;}
.y1_c00283{bottom:750.733353pt;}
.y19_c00283{bottom:788.200020pt;}
.h3_c00283{height:44.470052pt;}
.h4_c00283{height:44.492188pt;}
.h2_c00283{height:52.343750pt;}
.h1_c00283{height:851.333333pt;}
.h0_c00283{height:851.533333pt;}
.w0_c00283{width:570.533360pt;}
.w1_c00283{width:570.666667pt;}
.x0_c00283{left:0.000000pt;}
.x2_c00283{left:72.000000pt;}
.x5_c00283{left:78.066667pt;}
.x1_c00283{left:85.466667pt;}
.x3_c00283{left:86.400000pt;}
.x6_c00283{left:107.533333pt;}
.x4_c00283{left:127.666667pt;}
.x7_c00283{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d9fdf259e7aa687d7d24c024.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00284;src:url('chunks/assets/font_3acb8028544894db59d999f1.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00284{letter-spacing:0.000000px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00284{word-spacing:-15.000000px;}
.ws1_c00284{word-spacing:-12.750000px;}
.ws2_c00284{word-spacing:0.000000px;}
._e_c00284{margin-left:-14.340000px;}
._11_c00284{margin-left:-12.720000px;}
._10_c00284{margin-left:-11.700000px;}
._f_c00284{margin-left:-10.500000px;}
._d_c00284{margin-left:-8.460000px;}
._a_c00284{margin-left:-6.240000px;}
._b_c00284{margin-left:-4.440000px;}
._16_c00284{margin-left:-3.300000px;}
._4_c00284{margin-left:-2.220000px;}
._5_c00284{margin-left:-1.200000px;}
._1_c00284{width:1.860000px;}
._7_c00284{width:3.300000px;}
._1b_c00284{width:4.313964px;}
._9_c00284{width:5.460000px;}
._0_c00284{width:6.780000px;}
._2_c00284{width:8.760000px;}
._8_c00284{width:10.620000px;}
._3_c00284{width:11.820000px;}
._6_c00284{width:13.500000px;}
._19_c00284{width:14.864970px;}
._c_c00284{width:16.140000px;}
._14_c00284{width:18.240000px;}
._13_c00284{width:19.500000px;}
._12_c00284{width:21.120000px;}
._15_c00284{width:23.160000px;}
._17_c00284{width:24.420000px;}
._1a_c00284{width:26.190000px;}
._18_c00284{width:28.409991px;}
.fc1_c00284{color:transparent;}
.fc0_c00284{color:rgb(35,31,32);}
.fs1_c00284{font-size:51.000000px;}
.fs0_c00284{font-size:60.000000px;}
.y0_c00284{bottom:0.000000px;}
.y27_c00284{bottom:64.800022px;}
.y26_c00284{bottom:110.175022px;}
.y25_c00284{bottom:125.325022px;}
.y24_c00284{bottom:140.775022px;}
.y23_c00284{bottom:155.925022px;}
.y22_c00284{bottom:171.375022px;}
.y21_c00284{bottom:186.825022px;}
.y20_c00284{bottom:201.975022px;}
.y1f_c00284{bottom:217.125022px;}
.y1e_c00284{bottom:232.950022px;}
.y1d_c00284{bottom:247.725022px;}
.y1c_c00284{bottom:263.175022px;}
.y1a_c00284{bottom:358.950022px;}
.y19_c00284{bottom:378.750022px;}
.y18_c00284{bottom:397.800022px;}
.y17_c00284{bottom:417.600022px;}
.y16_c00284{bottom:436.725022px;}
.y15_c00284{bottom:456.150022px;}
.y14_c00284{bottom:475.950022px;}
.y13_c00284{bottom:495.375022px;}
.y12_c00284{bottom:514.800022px;}
.y11_c00284{bottom:534.225022px;}
.y10_c00284{bottom:553.725022px;}
.yf_c00284{bottom:573.150022px;}
.ye_c00284{bottom:592.575022px;}
.yd_c00284{bottom:611.625022px;}
.yc_c00284{bottom:631.425022px;}
.yb_c00284{bottom:650.550022px;}
.ya_c00284{bottom:670.350022px;}
.y9_c00284{bottom:689.400022px;}
.y8_c00284{bottom:709.200022px;}
.y7_c00284{bottom:728.625022px;}
.y6_c00284{bottom:748.125022px;}
.y5_c00284{bottom:767.175022px;}
.y4_c00284{bottom:786.225022px;}
.y3_c00284{bottom:805.725022px;}
.y2_c00284{bottom:825.150022px;}
.y1_c00284{bottom:844.950022px;}
.y1b_c00284{bottom:886.725022px;}
.h3_c00284{height:50.028809px;}
.h4_c00284{height:50.053711px;}
.h2_c00284{height:58.886719px;}
.h1_c00284{height:957.750000px;}
.h0_c00284{height:957.975000px;}
.w1_c00284{width:643.500000px;}
.w0_c00284{width:643.650000px;}
.x0_c00284{left:0.000000px;}
.x2_c00284{left:90.375000px;}
.x1_c00284{left:91.425000px;}
.x4_c00284{left:97.575000px;}
.x3_c00284{left:106.575000px;}
.x5_c00284{left:131.025000px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls0_c00284{letter-spacing:0.000000pt;}
.ws0_c00284{word-spacing:-13.333333pt;}
.ws1_c00284{word-spacing:-11.333333pt;}
.ws2_c00284{word-spacing:0.000000pt;}
._e_c00284{margin-left:-12.746667pt;}
._11_c00284{margin-left:-11.306667pt;}
._10_c00284{margin-left:-10.400000pt;}
._f_c00284{margin-left:-9.333333pt;}
._d_c00284{margin-left:-7.520000pt;}
._a_c00284{margin-left:-5.546667pt;}
._b_c00284{margin-left:-3.946667pt;}
._16_c00284{margin-left:-2.933333pt;}
._4_c00284{margin-left:-1.973333pt;}
._5_c00284{margin-left:-1.066667pt;}
._1_c00284{width:1.653333pt;}
._7_c00284{width:2.933333pt;}
._1b_c00284{width:3.834635pt;}
._9_c00284{width:4.853333pt;}
._0_c00284{width:6.026667pt;}
._2_c00284{width:7.786667pt;}
._8_c00284{width:9.440000pt;}
._3_c00284{width:10.506667pt;}
._6_c00284{width:12.000000pt;}
._19_c00284{width:13.213307pt;}
._c_c00284{width:14.346667pt;}
._14_c00284{width:16.213333pt;}
._13_c00284{width:17.333333pt;}
._12_c00284{width:18.773333pt;}
._15_c00284{width:20.586667pt;}
._17_c00284{width:21.706667pt;}
._1a_c00284{width:23.280000pt;}
._18_c00284{width:25.253325pt;}
.fs1_c00284{font-size:45.333333pt;}
.fs0_c00284{font-size:53.333333pt;}
.y0_c00284{bottom:0.000000pt;}
.y27_c00284{bottom:57.600020pt;}
.y26_c00284{bottom:97.933353pt;}
.y25_c00284{bottom:111.400020pt;}
.y24_c00284{bottom:125.133353pt;}
.y23_c00284{bottom:138.600020pt;}
.y22_c00284{bottom:152.333353pt;}
.y21_c00284{bottom:166.066686pt;}
.y20_c00284{bottom:179.533353pt;}
.y1f_c00284{bottom:193.000020pt;}
.y1e_c00284{bottom:207.066686pt;}
.y1d_c00284{bottom:220.200020pt;}
.y1c_c00284{bottom:233.933353pt;}
.y1a_c00284{bottom:319.066686pt;}
.y19_c00284{bottom:336.666686pt;}
.y18_c00284{bottom:353.600020pt;}
.y17_c00284{bottom:371.200020pt;}
.y16_c00284{bottom:388.200020pt;}
.y15_c00284{bottom:405.466686pt;}
.y14_c00284{bottom:423.066686pt;}
.y13_c00284{bottom:440.333353pt;}
.y12_c00284{bottom:457.600020pt;}
.y11_c00284{bottom:474.866686pt;}
.y10_c00284{bottom:492.200020pt;}
.yf_c00284{bottom:509.466686pt;}
.ye_c00284{bottom:526.733353pt;}
.yd_c00284{bottom:543.666686pt;}
.yc_c00284{bottom:561.266686pt;}
.yb_c00284{bottom:578.266686pt;}
.ya_c00284{bottom:595.866686pt;}
.y9_c00284{bottom:612.800020pt;}
.y8_c00284{bottom:630.400020pt;}
.y7_c00284{bottom:647.666686pt;}
.y6_c00284{bottom:665.000020pt;}
.y5_c00284{bottom:681.933353pt;}
.y4_c00284{bottom:698.866686pt;}
.y3_c00284{bottom:716.200020pt;}
.y2_c00284{bottom:733.466686pt;}
.y1_c00284{bottom:751.066686pt;}
.y1b_c00284{bottom:788.200020pt;}
.h3_c00284{height:44.470052pt;}
.h4_c00284{height:44.492188pt;}
.h2_c00284{height:52.343750pt;}
.h1_c00284{height:851.333333pt;}
.h0_c00284{height:851.533333pt;}
.w1_c00284{width:572.000000pt;}
.w0_c00284{width:572.133333pt;}
.x0_c00284{left:0.000000pt;}
.x2_c00284{left:80.333333pt;}
.x1_c00284{left:81.266667pt;}
.x4_c00284{left:86.733333pt;}
.x3_c00284{left:94.733333pt;}
.x5_c00284{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0c8bb4f3d395346afda432bf.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00285;src:url('chunks/assets/font_e9acac5e9f08e9deabb148e9.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00285{letter-spacing:0.000000px;}
.sc__c00285{text-shadow:none;}
.sc0_c00285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00285{-webkit-text-stroke:0px transparent;}
.sc0_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00285{word-spacing:-15.000000px;}
.ws1_c00285{word-spacing:-12.750000px;}
.ws2_c00285{word-spacing:0.000000px;}
._8_c00285{margin-left:-13.680000px;}
._5_c00285{margin-left:-12.480000px;}
._3_c00285{margin-left:-11.340000px;}
._1c_c00285{margin-left:-10.218075px;}
._19_c00285{margin-left:-7.800000px;}
._d_c00285{margin-left:-6.686940px;}
._9_c00285{margin-left:-5.520000px;}
._b_c00285{margin-left:-4.380000px;}
._1b_c00285{margin-left:-3.003006px;}
._7_c00285{margin-left:-1.980000px;}
._1_c00285{width:1.020000px;}
._0_c00285{width:2.100000px;}
._4_c00285{width:3.120000px;}
._2_c00285{width:4.800000px;}
._6_c00285{width:5.940000px;}
._a_c00285{width:6.960000px;}
._c_c00285{width:8.580000px;}
._14_c00285{width:9.600000px;}
._13_c00285{width:11.580000px;}
._12_c00285{width:13.080000px;}
._1a_c00285{width:14.672985px;}
._1d_c00285{width:15.785940px;}
._10_c00285{width:16.860000px;}
._f_c00285{width:18.360000px;}
._11_c00285{width:19.560000px;}
._e_c00285{width:21.000000px;}
._15_c00285{width:22.560000px;}
._16_c00285{width:24.420000px;}
._18_c00285{width:27.120000px;}
._17_c00285{width:30.780000px;}
._1f_c00285{width:31.856934px;}
._20_c00285{width:34.122009px;}
._1e_c00285{width:35.949021px;}
._21_c00285{width:37.061955px;}
.fc1_c00285{color:transparent;}
.fc0_c00285{color:rgb(35,31,32);}
.fs1_c00285{font-size:51.000000px;}
.fs0_c00285{font-size:60.000000px;}
.y0_c00285{bottom:0.000000px;}
.y28_c00285{bottom:64.425022px;}
.y27_c00285{bottom:110.175022px;}
.y26_c00285{bottom:125.325022px;}
.y25_c00285{bottom:140.775022px;}
.y24_c00285{bottom:156.225022px;}
.y23_c00285{bottom:171.750022px;}
.y22_c00285{bottom:186.825022px;}
.y21_c00285{bottom:201.975022px;}
.y20_c00285{bottom:217.125022px;}
.y1f_c00285{bottom:232.575022px;}
.y1e_c00285{bottom:247.725022px;}
.y1d_c00285{bottom:263.175022px;}
.y1c_c00285{bottom:278.325022px;}
.y1b_c00285{bottom:293.775022px;}
.y1a_c00285{bottom:308.925022px;}
.y19_c00285{bottom:324.375022px;}
.y18_c00285{bottom:339.525022px;}
.y17_c00285{bottom:379.800022px;}
.y16_c00285{bottom:398.925022px;}
.y15_c00285{bottom:418.350022px;}
.y14_c00285{bottom:437.775022px;}
.y13_c00285{bottom:457.200022px;}
.y12_c00285{bottom:476.925022px;}
.y11_c00285{bottom:496.425022px;}
.y10_c00285{bottom:515.925022px;}
.yf_c00285{bottom:534.975022px;}
.ye_c00285{bottom:554.775022px;}
.yd_c00285{bottom:573.825022px;}
.yc_c00285{bottom:593.325022px;}
.yb_c00285{bottom:613.125022px;}
.ya_c00285{bottom:632.550022px;}
.y9_c00285{bottom:651.975022px;}
.y8_c00285{bottom:691.950022px;}
.y6_c00285{bottom:747.750022px;}
.y5_c00285{bottom:767.175022px;}
.y4_c00285{bottom:786.675022px;}
.y3_c00285{bottom:806.100022px;}
.y2_c00285{bottom:825.525022px;}
.y1_c00285{bottom:844.950022px;}
.y7_c00285{bottom:886.725022px;}
.h3_c00285{height:50.028809px;}
.h4_c00285{height:50.053711px;}
.h2_c00285{height:58.886719px;}
.h1_c00285{height:957.750000px;}
.h0_c00285{height:957.975000px;}
.w0_c00285{width:641.850030px;}
.w1_c00285{width:642.000000px;}
.x0_c00285{left:0.000000px;}
.x1_c00285{left:80.250000px;}
.x3_c00285{left:81.750000px;}
.x4_c00285{left:87.825000px;}
.x5_c00285{left:120.975000px;}
.x2_c00285{left:143.625000px;}
.x6_c00285{left:531.375000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls0_c00285{letter-spacing:0.000000pt;}
.ws0_c00285{word-spacing:-13.333333pt;}
.ws1_c00285{word-spacing:-11.333333pt;}
.ws2_c00285{word-spacing:0.000000pt;}
._8_c00285{margin-left:-12.160000pt;}
._5_c00285{margin-left:-11.093333pt;}
._3_c00285{margin-left:-10.080000pt;}
._1c_c00285{margin-left:-9.082733pt;}
._19_c00285{margin-left:-6.933333pt;}
._d_c00285{margin-left:-5.943947pt;}
._9_c00285{margin-left:-4.906667pt;}
._b_c00285{margin-left:-3.893333pt;}
._1b_c00285{margin-left:-2.669339pt;}
._7_c00285{margin-left:-1.760000pt;}
._1_c00285{width:0.906667pt;}
._0_c00285{width:1.866667pt;}
._4_c00285{width:2.773333pt;}
._2_c00285{width:4.266667pt;}
._6_c00285{width:5.280000pt;}
._a_c00285{width:6.186667pt;}
._c_c00285{width:7.626667pt;}
._14_c00285{width:8.533333pt;}
._13_c00285{width:10.293333pt;}
._12_c00285{width:11.626667pt;}
._1a_c00285{width:13.042653pt;}
._1d_c00285{width:14.031947pt;}
._10_c00285{width:14.986667pt;}
._f_c00285{width:16.320000pt;}
._11_c00285{width:17.386667pt;}
._e_c00285{width:18.666667pt;}
._15_c00285{width:20.053333pt;}
._16_c00285{width:21.706667pt;}
._18_c00285{width:24.106667pt;}
._17_c00285{width:27.360000pt;}
._1f_c00285{width:28.317275pt;}
._20_c00285{width:30.330675pt;}
._1e_c00285{width:31.954685pt;}
._21_c00285{width:32.943960pt;}
.fs1_c00285{font-size:45.333333pt;}
.fs0_c00285{font-size:53.333333pt;}
.y0_c00285{bottom:0.000000pt;}
.y28_c00285{bottom:57.266686pt;}
.y27_c00285{bottom:97.933353pt;}
.y26_c00285{bottom:111.400020pt;}
.y25_c00285{bottom:125.133353pt;}
.y24_c00285{bottom:138.866686pt;}
.y23_c00285{bottom:152.666686pt;}
.y22_c00285{bottom:166.066686pt;}
.y21_c00285{bottom:179.533353pt;}
.y20_c00285{bottom:193.000020pt;}
.y1f_c00285{bottom:206.733353pt;}
.y1e_c00285{bottom:220.200020pt;}
.y1d_c00285{bottom:233.933353pt;}
.y1c_c00285{bottom:247.400020pt;}
.y1b_c00285{bottom:261.133353pt;}
.y1a_c00285{bottom:274.600020pt;}
.y19_c00285{bottom:288.333353pt;}
.y18_c00285{bottom:301.800020pt;}
.y17_c00285{bottom:337.600020pt;}
.y16_c00285{bottom:354.600020pt;}
.y15_c00285{bottom:371.866686pt;}
.y14_c00285{bottom:389.133353pt;}
.y13_c00285{bottom:406.400020pt;}
.y12_c00285{bottom:423.933353pt;}
.y11_c00285{bottom:441.266686pt;}
.y10_c00285{bottom:458.600020pt;}
.yf_c00285{bottom:475.533353pt;}
.ye_c00285{bottom:493.133353pt;}
.yd_c00285{bottom:510.066686pt;}
.yc_c00285{bottom:527.400020pt;}
.yb_c00285{bottom:545.000020pt;}
.ya_c00285{bottom:562.266686pt;}
.y9_c00285{bottom:579.533353pt;}
.y8_c00285{bottom:615.066686pt;}
.y6_c00285{bottom:664.666686pt;}
.y5_c00285{bottom:681.933353pt;}
.y4_c00285{bottom:699.266686pt;}
.y3_c00285{bottom:716.533353pt;}
.y2_c00285{bottom:733.800020pt;}
.y1_c00285{bottom:751.066686pt;}
.y7_c00285{bottom:788.200020pt;}
.h3_c00285{height:44.470052pt;}
.h4_c00285{height:44.492188pt;}
.h2_c00285{height:52.343750pt;}
.h1_c00285{height:851.333333pt;}
.h0_c00285{height:851.533333pt;}
.w0_c00285{width:570.533360pt;}
.w1_c00285{width:570.666667pt;}
.x0_c00285{left:0.000000pt;}
.x1_c00285{left:71.333333pt;}
.x3_c00285{left:72.666667pt;}
.x4_c00285{left:78.066667pt;}
.x5_c00285{left:107.533333pt;}
.x2_c00285{left:127.666667pt;}
.x6_c00285{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_13109bb7c0e743593d147aab.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00286;src:url('chunks/assets/font_f464824a8a73b0c61d8fd82a.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00286{letter-spacing:0.000000px;}
.sc__c00286{text-shadow:none;}
.sc0_c00286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00286{-webkit-text-stroke:0px transparent;}
.sc0_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00286{word-spacing:-15.000000px;}
.ws0_c00286{word-spacing:-12.750000px;}
.ws2_c00286{word-spacing:0.000000px;}
._11_c00286{margin-left:-15.180000px;}
._d_c00286{margin-left:-12.480000px;}
._12_c00286{margin-left:-11.340000px;}
._19_c00286{margin-left:-6.798003px;}
._10_c00286{margin-left:-5.760000px;}
._e_c00286{margin-left:-4.500000px;}
._f_c00286{margin-left:-3.480000px;}
._0_c00286{margin-left:-1.680000px;}
._2_c00286{width:1.260000px;}
._1_c00286{width:2.580000px;}
._3_c00286{width:4.020000px;}
._6_c00286{width:5.100000px;}
._4_c00286{width:6.780000px;}
._5_c00286{width:8.400000px;}
._18_c00286{width:9.437775px;}
._c_c00286{width:10.560000px;}
._9_c00286{width:12.120000px;}
._a_c00286{width:13.620000px;}
._16_c00286{width:14.645970px;}
._8_c00286{width:16.200000px;}
._b_c00286{width:17.760000px;}
._7_c00286{width:18.900000px;}
._13_c00286{width:20.580000px;}
._14_c00286{width:22.020000px;}
._15_c00286{width:24.089979px;}
._17_c00286{width:25.589991px;}
.fc1_c00286{color:transparent;}
.fc0_c00286{color:rgb(35,31,32);}
.fs1_c00286{font-size:51.000000px;}
.fs0_c00286{font-size:60.000000px;}
.y0_c00286{bottom:0.000000px;}
.y2a_c00286{bottom:64.425022px;}
.y29_c00286{bottom:110.175022px;}
.y28_c00286{bottom:125.325022px;}
.y27_c00286{bottom:141.150022px;}
.y26_c00286{bottom:155.925022px;}
.y25_c00286{bottom:171.750022px;}
.y24_c00286{bottom:186.525022px;}
.y23_c00286{bottom:201.975022px;}
.y22_c00286{bottom:217.125022px;}
.y21_c00286{bottom:232.575022px;}
.y20_c00286{bottom:247.725022px;}
.y1f_c00286{bottom:263.175022px;}
.y1e_c00286{bottom:278.325022px;}
.y1d_c00286{bottom:293.700022px;}
.y1c_c00286{bottom:309.225022px;}
.y1b_c00286{bottom:324.750022px;}
.y1a_c00286{bottom:339.825022px;}
.y19_c00286{bottom:355.350022px;}
.y17_c00286{bottom:408.225022px;}
.y16_c00286{bottom:427.725022px;}
.y15_c00286{bottom:447.150022px;}
.y14_c00286{bottom:466.575022px;}
.y13_c00286{bottom:495.000022px;}
.y12_c00286{bottom:514.800022px;}
.y11_c00286{bottom:533.925022px;}
.y10_c00286{bottom:553.725022px;}
.yf_c00286{bottom:572.775022px;}
.ye_c00286{bottom:592.575022px;}
.yd_c00286{bottom:612.000022px;}
.yc_c00286{bottom:631.425022px;}
.yb_c00286{bottom:650.925022px;}
.ya_c00286{bottom:669.975022px;}
.y9_c00286{bottom:689.400022px;}
.y8_c00286{bottom:709.125022px;}
.y7_c00286{bottom:728.625022px;}
.y6_c00286{bottom:748.125022px;}
.y5_c00286{bottom:767.550022px;}
.y4_c00286{bottom:786.225022px;}
.y3_c00286{bottom:806.025022px;}
.y2_c00286{bottom:825.525022px;}
.y1_c00286{bottom:844.575022px;}
.y18_c00286{bottom:886.725022px;}
.h4_c00286{height:50.028809px;}
.h5_c00286{height:50.053711px;}
.h6_c00286{height:50.353711px;}
.h3_c00286{height:58.857422px;}
.h2_c00286{height:58.886719px;}
.h1_c00286{height:957.750000px;}
.h0_c00286{height:957.975000px;}
.w1_c00286{width:643.500000px;}
.w0_c00286{width:643.650000px;}
.x0_c00286{left:0.000000px;}
.x3_c00286{left:90.375000px;}
.x2_c00286{left:91.425000px;}
.x5_c00286{left:97.575000px;}
.x4_c00286{left:106.200000px;}
.x1_c00286{left:107.250000px;}
.x6_c00286{left:131.025000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls0_c00286{letter-spacing:0.000000pt;}
.ws1_c00286{word-spacing:-13.333333pt;}
.ws0_c00286{word-spacing:-11.333333pt;}
.ws2_c00286{word-spacing:0.000000pt;}
._11_c00286{margin-left:-13.493333pt;}
._d_c00286{margin-left:-11.093333pt;}
._12_c00286{margin-left:-10.080000pt;}
._19_c00286{margin-left:-6.042669pt;}
._10_c00286{margin-left:-5.120000pt;}
._e_c00286{margin-left:-4.000000pt;}
._f_c00286{margin-left:-3.093333pt;}
._0_c00286{margin-left:-1.493333pt;}
._2_c00286{width:1.120000pt;}
._1_c00286{width:2.293333pt;}
._3_c00286{width:3.573333pt;}
._6_c00286{width:4.533333pt;}
._4_c00286{width:6.026667pt;}
._5_c00286{width:7.466667pt;}
._18_c00286{width:8.389133pt;}
._c_c00286{width:9.386667pt;}
._9_c00286{width:10.773333pt;}
._a_c00286{width:12.106667pt;}
._16_c00286{width:13.018640pt;}
._8_c00286{width:14.400000pt;}
._b_c00286{width:15.786667pt;}
._7_c00286{width:16.800000pt;}
._13_c00286{width:18.293333pt;}
._14_c00286{width:19.573333pt;}
._15_c00286{width:21.413315pt;}
._17_c00286{width:22.746659pt;}
.fs1_c00286{font-size:45.333333pt;}
.fs0_c00286{font-size:53.333333pt;}
.y0_c00286{bottom:0.000000pt;}
.y2a_c00286{bottom:57.266686pt;}
.y29_c00286{bottom:97.933353pt;}
.y28_c00286{bottom:111.400020pt;}
.y27_c00286{bottom:125.466686pt;}
.y26_c00286{bottom:138.600020pt;}
.y25_c00286{bottom:152.666686pt;}
.y24_c00286{bottom:165.800020pt;}
.y23_c00286{bottom:179.533353pt;}
.y22_c00286{bottom:193.000020pt;}
.y21_c00286{bottom:206.733353pt;}
.y20_c00286{bottom:220.200020pt;}
.y1f_c00286{bottom:233.933353pt;}
.y1e_c00286{bottom:247.400020pt;}
.y1d_c00286{bottom:261.066686pt;}
.y1c_c00286{bottom:274.866686pt;}
.y1b_c00286{bottom:288.666686pt;}
.y1a_c00286{bottom:302.066686pt;}
.y19_c00286{bottom:315.866686pt;}
.y17_c00286{bottom:362.866686pt;}
.y16_c00286{bottom:380.200020pt;}
.y15_c00286{bottom:397.466686pt;}
.y14_c00286{bottom:414.733353pt;}
.y13_c00286{bottom:440.000020pt;}
.y12_c00286{bottom:457.600020pt;}
.y11_c00286{bottom:474.600020pt;}
.y10_c00286{bottom:492.200020pt;}
.yf_c00286{bottom:509.133353pt;}
.ye_c00286{bottom:526.733353pt;}
.yd_c00286{bottom:544.000020pt;}
.yc_c00286{bottom:561.266686pt;}
.yb_c00286{bottom:578.600020pt;}
.ya_c00286{bottom:595.533353pt;}
.y9_c00286{bottom:612.800020pt;}
.y8_c00286{bottom:630.333353pt;}
.y7_c00286{bottom:647.666686pt;}
.y6_c00286{bottom:665.000020pt;}
.y5_c00286{bottom:682.266686pt;}
.y4_c00286{bottom:698.866686pt;}
.y3_c00286{bottom:716.466686pt;}
.y2_c00286{bottom:733.800020pt;}
.y1_c00286{bottom:750.733353pt;}
.y18_c00286{bottom:788.200020pt;}
.h4_c00286{height:44.470052pt;}
.h5_c00286{height:44.492188pt;}
.h6_c00286{height:44.758854pt;}
.h3_c00286{height:52.317708pt;}
.h2_c00286{height:52.343750pt;}
.h1_c00286{height:851.333333pt;}
.h0_c00286{height:851.533333pt;}
.w1_c00286{width:572.000000pt;}
.w0_c00286{width:572.133333pt;}
.x0_c00286{left:0.000000pt;}
.x3_c00286{left:80.333333pt;}
.x2_c00286{left:81.266667pt;}
.x5_c00286{left:86.733333pt;}
.x4_c00286{left:94.400000pt;}
.x1_c00286{left:95.333333pt;}
.x6_c00286{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d8c809ee20f116a88145c33.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00287;src:url('chunks/assets/font_8166736595b6b2d48b4cfa56.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00287{letter-spacing:0.000000px;}
.sc__c00287{text-shadow:none;}
.sc0_c00287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00287{-webkit-text-stroke:0px transparent;}
.sc0_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00287{word-spacing:-15.000000px;}
.ws0_c00287{word-spacing:-12.750000px;}
.ws2_c00287{word-spacing:0.000000px;}
._14_c00287{margin-left:-30.480000px;}
._15_c00287{margin-left:-29.040000px;}
._b_c00287{margin-left:-14.040000px;}
._16_c00287{margin-left:-12.960000px;}
._17_c00287{margin-left:-11.040000px;}
._1b_c00287{margin-left:-9.660000px;}
._a_c00287{margin-left:-7.860000px;}
._19_c00287{margin-left:-6.180000px;}
._1d_c00287{margin-left:-5.043012px;}
._2_c00287{margin-left:-4.020000px;}
._20_c00287{margin-left:-2.997093px;}
._1_c00287{margin-left:-1.980000px;}
._0_c00287{width:1.800000px;}
._5_c00287{width:2.880000px;}
._18_c00287{width:3.960000px;}
._4_c00287{width:5.040000px;}
._3_c00287{width:6.360000px;}
._7_c00287{width:7.440000px;}
._1a_c00287{width:8.460000px;}
._9_c00287{width:9.480000px;}
._6_c00287{width:10.560000px;}
._8_c00287{width:11.880000px;}
._13_c00287{width:13.680000px;}
._1f_c00287{width:14.772036px;}
._c_c00287{width:16.320000px;}
._d_c00287{width:17.760000px;}
._f_c00287{width:19.440000px;}
._e_c00287{width:20.700000px;}
._1e_c00287{width:22.290000px;}
._10_c00287{width:25.020000px;}
._1c_c00287{width:29.009979px;}
._12_c00287{width:30.420000px;}
._11_c00287{width:32.940000px;}
.fc1_c00287{color:transparent;}
.fc0_c00287{color:rgb(35,31,32);}
.fs1_c00287{font-size:51.000000px;}
.fs0_c00287{font-size:60.000000px;}
.y0_c00287{bottom:0.000000px;}
.y28_c00287{bottom:64.425022px;}
.y27_c00287{bottom:110.550022px;}
.y26_c00287{bottom:125.325022px;}
.y25_c00287{bottom:140.775022px;}
.y24_c00287{bottom:155.925022px;}
.y23_c00287{bottom:171.375022px;}
.y22_c00287{bottom:186.525022px;}
.y21_c00287{bottom:201.975022px;}
.y20_c00287{bottom:217.425022px;}
.y1f_c00287{bottom:232.575022px;}
.y1e_c00287{bottom:247.725022px;}
.y1d_c00287{bottom:263.550022px;}
.y1c_c00287{bottom:278.325022px;}
.y1b_c00287{bottom:293.775022px;}
.y1a_c00287{bottom:308.925022px;}
.y19_c00287{bottom:324.375022px;}
.y18_c00287{bottom:339.825022px;}
.y17_c00287{bottom:354.975022px;}
.y16_c00287{bottom:370.125022px;}
.y15_c00287{bottom:385.950022px;}
.y14_c00287{bottom:425.550022px;}
.y13_c00287{bottom:445.350022px;}
.y12_c00287{bottom:485.325022px;}
.y10_c00287{bottom:544.350022px;}
.yf_c00287{bottom:563.775022px;}
.ye_c00287{bottom:583.575022px;}
.yd_c00287{bottom:602.625022px;}
.yc_c00287{bottom:622.425022px;}
.yb_c00287{bottom:641.550022px;}
.ya_c00287{bottom:660.975022px;}
.y9_c00287{bottom:680.400022px;}
.y8_c00287{bottom:699.825022px;}
.y7_c00287{bottom:719.700022px;}
.y6_c00287{bottom:739.125022px;}
.y5_c00287{bottom:758.550022px;}
.y4_c00287{bottom:777.225022px;}
.y3_c00287{bottom:805.725022px;}
.y2_c00287{bottom:825.150022px;}
.y1_c00287{bottom:844.575022px;}
.y11_c00287{bottom:886.725022px;}
.h4_c00287{height:50.028809px;}
.h5_c00287{height:50.053711px;}
.h2_c00287{height:58.857422px;}
.h3_c00287{height:58.886719px;}
.h1_c00287{height:957.750000px;}
.h0_c00287{height:957.975000px;}
.w0_c00287{width:641.850030px;}
.w1_c00287{width:642.000000px;}
.x0_c00287{left:0.000000px;}
.x3_c00287{left:81.375000px;}
.x5_c00287{left:87.825000px;}
.x2_c00287{left:95.775000px;}
.x1_c00287{left:97.200000px;}
.x6_c00287{left:120.975000px;}
.x4_c00287{left:143.625000px;}
.x7_c00287{left:531.375000px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls0_c00287{letter-spacing:0.000000pt;}
.ws1_c00287{word-spacing:-13.333333pt;}
.ws0_c00287{word-spacing:-11.333333pt;}
.ws2_c00287{word-spacing:0.000000pt;}
._14_c00287{margin-left:-27.093333pt;}
._15_c00287{margin-left:-25.813333pt;}
._b_c00287{margin-left:-12.480000pt;}
._16_c00287{margin-left:-11.520000pt;}
._17_c00287{margin-left:-9.813333pt;}
._1b_c00287{margin-left:-8.586667pt;}
._a_c00287{margin-left:-6.986667pt;}
._19_c00287{margin-left:-5.493333pt;}
._1d_c00287{margin-left:-4.482677pt;}
._2_c00287{margin-left:-3.573333pt;}
._20_c00287{margin-left:-2.664083pt;}
._1_c00287{margin-left:-1.760000pt;}
._0_c00287{width:1.600000pt;}
._5_c00287{width:2.560000pt;}
._18_c00287{width:3.520000pt;}
._4_c00287{width:4.480000pt;}
._3_c00287{width:5.653333pt;}
._7_c00287{width:6.613333pt;}
._1a_c00287{width:7.520000pt;}
._9_c00287{width:8.426667pt;}
._6_c00287{width:9.386667pt;}
._8_c00287{width:10.560000pt;}
._13_c00287{width:12.160000pt;}
._1f_c00287{width:13.130699pt;}
._c_c00287{width:14.506667pt;}
._d_c00287{width:15.786667pt;}
._f_c00287{width:17.280000pt;}
._e_c00287{width:18.400000pt;}
._1e_c00287{width:19.813333pt;}
._10_c00287{width:22.240000pt;}
._1c_c00287{width:25.786648pt;}
._12_c00287{width:27.040000pt;}
._11_c00287{width:29.280000pt;}
.fs1_c00287{font-size:45.333333pt;}
.fs0_c00287{font-size:53.333333pt;}
.y0_c00287{bottom:0.000000pt;}
.y28_c00287{bottom:57.266686pt;}
.y27_c00287{bottom:98.266686pt;}
.y26_c00287{bottom:111.400020pt;}
.y25_c00287{bottom:125.133353pt;}
.y24_c00287{bottom:138.600020pt;}
.y23_c00287{bottom:152.333353pt;}
.y22_c00287{bottom:165.800020pt;}
.y21_c00287{bottom:179.533353pt;}
.y20_c00287{bottom:193.266686pt;}
.y1f_c00287{bottom:206.733353pt;}
.y1e_c00287{bottom:220.200020pt;}
.y1d_c00287{bottom:234.266686pt;}
.y1c_c00287{bottom:247.400020pt;}
.y1b_c00287{bottom:261.133353pt;}
.y1a_c00287{bottom:274.600020pt;}
.y19_c00287{bottom:288.333353pt;}
.y18_c00287{bottom:302.066686pt;}
.y17_c00287{bottom:315.533353pt;}
.y16_c00287{bottom:329.000020pt;}
.y15_c00287{bottom:343.066686pt;}
.y14_c00287{bottom:378.266686pt;}
.y13_c00287{bottom:395.866686pt;}
.y12_c00287{bottom:431.400020pt;}
.y10_c00287{bottom:483.866686pt;}
.yf_c00287{bottom:501.133353pt;}
.ye_c00287{bottom:518.733353pt;}
.yd_c00287{bottom:535.666686pt;}
.yc_c00287{bottom:553.266686pt;}
.yb_c00287{bottom:570.266686pt;}
.ya_c00287{bottom:587.533353pt;}
.y9_c00287{bottom:604.800020pt;}
.y8_c00287{bottom:622.066686pt;}
.y7_c00287{bottom:639.733353pt;}
.y6_c00287{bottom:657.000020pt;}
.y5_c00287{bottom:674.266686pt;}
.y4_c00287{bottom:690.866686pt;}
.y3_c00287{bottom:716.200020pt;}
.y2_c00287{bottom:733.466686pt;}
.y1_c00287{bottom:750.733353pt;}
.y11_c00287{bottom:788.200020pt;}
.h4_c00287{height:44.470052pt;}
.h5_c00287{height:44.492188pt;}
.h2_c00287{height:52.317708pt;}
.h3_c00287{height:52.343750pt;}
.h1_c00287{height:851.333333pt;}
.h0_c00287{height:851.533333pt;}
.w0_c00287{width:570.533360pt;}
.w1_c00287{width:570.666667pt;}
.x0_c00287{left:0.000000pt;}
.x3_c00287{left:72.333333pt;}
.x5_c00287{left:78.066667pt;}
.x2_c00287{left:85.133333pt;}
.x1_c00287{left:86.400000pt;}
.x6_c00287{left:107.533333pt;}
.x4_c00287{left:127.666667pt;}
.x7_c00287{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d8f4ce8614d2a61fd4b35f45.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00288;src:url('chunks/assets/font_24c2f9b2facfe88d1e18ce21.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00288{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_c00288{vertical-align:0.000000px;}
.ls0_c00288{letter-spacing:0.000000px;}
.sc__c00288{text-shadow:none;}
.sc0_c00288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00288{-webkit-text-stroke:0px transparent;}
.sc0_c00288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00288{word-spacing:-15.000000px;}
.ws0_c00288{word-spacing:-12.750000px;}
.ws2_c00288{word-spacing:0.000000px;}
._f_c00288{margin-left:-15.060000px;}
._13_c00288{margin-left:-13.620000px;}
._d_c00288{margin-left:-11.940000px;}
._c_c00288{margin-left:-10.860000px;}
._17_c00288{margin-left:-8.673084px;}
._10_c00288{margin-left:-6.480000px;}
._e_c00288{margin-left:-5.400000px;}
._15_c00288{margin-left:-4.164054px;}
._11_c00288{margin-left:-3.000000px;}
._3_c00288{margin-left:-1.680000px;}
._0_c00288{width:1.560000px;}
._2_c00288{width:2.580000px;}
._a_c00288{width:4.140000px;}
._9_c00288{width:5.700000px;}
._5_c00288{width:7.500000px;}
._b_c00288{width:8.520000px;}
._12_c00288{width:10.200000px;}
._7_c00288{width:11.700000px;}
._4_c00288{width:12.720000px;}
._1_c00288{width:13.920000px;}
._18_c00288{width:15.339123px;}
._6_c00288{width:16.500000px;}
._8_c00288{width:18.180000px;}
._14_c00288{width:21.210000px;}
._16_c00288{width:22.410030px;}
._1a_c00288{width:25.409979px;}
._19_c00288{width:26.910000px;}
._1b_c00288{width:29.910000px;}
.fc1_c00288{color:transparent;}
.fc0_c00288{color:rgb(35,31,32);}
.fs1_c00288{font-size:51.000000px;}
.fs0_c00288{font-size:60.000000px;}
.y0_c00288{bottom:0.000000px;}
.y2a_c00288{bottom:64.425022px;}
.y29_c00288{bottom:110.175022px;}
.y28_c00288{bottom:125.625022px;}
.y27_c00288{bottom:140.775022px;}
.y26_c00288{bottom:155.925022px;}
.y25_c00288{bottom:171.375022px;}
.y24_c00288{bottom:186.825022px;}
.y23_c00288{bottom:201.975022px;}
.y22_c00288{bottom:217.125022px;}
.y21_c00288{bottom:232.575022px;}
.y20_c00288{bottom:247.725022px;}
.y1f_c00288{bottom:263.175022px;}
.y1e_c00288{bottom:278.325022px;}
.y1d_c00288{bottom:294.150022px;}
.y1c_c00288{bottom:308.925022px;}
.y1b_c00288{bottom:324.375022px;}
.y1a_c00288{bottom:339.525022px;}
.y19_c00288{bottom:355.350022px;}
.y18_c00288{bottom:370.125022px;}
.y17_c00288{bottom:385.575022px;}
.y16_c00288{bottom:400.725022px;}
.y14_c00288{bottom:475.575022px;}
.y13_c00288{bottom:495.375022px;}
.y12_c00288{bottom:514.425022px;}
.y11_c00288{bottom:533.925022px;}
.y10_c00288{bottom:553.350022px;}
.yf_c00288{bottom:572.775022px;}
.ye_c00288{bottom:592.200022px;}
.yd_c00288{bottom:612.000022px;}
.yc_c00288{bottom:631.125022px;}
.yb_c00288{bottom:650.925022px;}
.ya_c00288{bottom:669.975022px;}
.y9_c00288{bottom:689.400022px;}
.y8_c00288{bottom:709.200022px;}
.y7_c00288{bottom:728.325022px;}
.y6_c00288{bottom:747.750022px;}
.y5_c00288{bottom:767.550022px;}
.y4_c00288{bottom:786.600022px;}
.y3_c00288{bottom:805.725022px;}
.y2_c00288{bottom:825.150022px;}
.y1_c00288{bottom:844.575022px;}
.y15_c00288{bottom:886.725022px;}
.h3_c00288{height:50.028809px;}
.h4_c00288{height:50.053711px;}
.h2_c00288{height:58.886719px;}
.h1_c00288{height:957.750000px;}
.h0_c00288{height:957.975000px;}
.w1_c00288{width:643.500000px;}
.w0_c00288{width:643.650000px;}
.x0_c00288{left:0.000000px;}
.x1_c00288{left:91.050000px;}
.x2_c00288{left:97.575000px;}
.x3_c00288{left:131.400000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls0_c00288{letter-spacing:0.000000pt;}
.ws1_c00288{word-spacing:-13.333333pt;}
.ws0_c00288{word-spacing:-11.333333pt;}
.ws2_c00288{word-spacing:0.000000pt;}
._f_c00288{margin-left:-13.386667pt;}
._13_c00288{margin-left:-12.106667pt;}
._d_c00288{margin-left:-10.613333pt;}
._c_c00288{margin-left:-9.653333pt;}
._17_c00288{margin-left:-7.709408pt;}
._10_c00288{margin-left:-5.760000pt;}
._e_c00288{margin-left:-4.800000pt;}
._15_c00288{margin-left:-3.701381pt;}
._11_c00288{margin-left:-2.666667pt;}
._3_c00288{margin-left:-1.493333pt;}
._0_c00288{width:1.386667pt;}
._2_c00288{width:2.293333pt;}
._a_c00288{width:3.680000pt;}
._9_c00288{width:5.066667pt;}
._5_c00288{width:6.666667pt;}
._b_c00288{width:7.573333pt;}
._12_c00288{width:9.066667pt;}
._7_c00288{width:10.400000pt;}
._4_c00288{width:11.306667pt;}
._1_c00288{width:12.373333pt;}
._18_c00288{width:13.634776pt;}
._6_c00288{width:14.666667pt;}
._8_c00288{width:16.160000pt;}
._14_c00288{width:18.853333pt;}
._16_c00288{width:19.920027pt;}
._1a_c00288{width:22.586648pt;}
._19_c00288{width:23.920000pt;}
._1b_c00288{width:26.586667pt;}
.fs1_c00288{font-size:45.333333pt;}
.fs0_c00288{font-size:53.333333pt;}
.y0_c00288{bottom:0.000000pt;}
.y2a_c00288{bottom:57.266686pt;}
.y29_c00288{bottom:97.933353pt;}
.y28_c00288{bottom:111.666686pt;}
.y27_c00288{bottom:125.133353pt;}
.y26_c00288{bottom:138.600020pt;}
.y25_c00288{bottom:152.333353pt;}
.y24_c00288{bottom:166.066686pt;}
.y23_c00288{bottom:179.533353pt;}
.y22_c00288{bottom:193.000020pt;}
.y21_c00288{bottom:206.733353pt;}
.y20_c00288{bottom:220.200020pt;}
.y1f_c00288{bottom:233.933353pt;}
.y1e_c00288{bottom:247.400020pt;}
.y1d_c00288{bottom:261.466686pt;}
.y1c_c00288{bottom:274.600020pt;}
.y1b_c00288{bottom:288.333353pt;}
.y1a_c00288{bottom:301.800020pt;}
.y19_c00288{bottom:315.866686pt;}
.y18_c00288{bottom:329.000020pt;}
.y17_c00288{bottom:342.733353pt;}
.y16_c00288{bottom:356.200020pt;}
.y14_c00288{bottom:422.733353pt;}
.y13_c00288{bottom:440.333353pt;}
.y12_c00288{bottom:457.266686pt;}
.y11_c00288{bottom:474.600020pt;}
.y10_c00288{bottom:491.866686pt;}
.yf_c00288{bottom:509.133353pt;}
.ye_c00288{bottom:526.400020pt;}
.yd_c00288{bottom:544.000020pt;}
.yc_c00288{bottom:561.000020pt;}
.yb_c00288{bottom:578.600020pt;}
.ya_c00288{bottom:595.533353pt;}
.y9_c00288{bottom:612.800020pt;}
.y8_c00288{bottom:630.400020pt;}
.y7_c00288{bottom:647.400020pt;}
.y6_c00288{bottom:664.666686pt;}
.y5_c00288{bottom:682.266686pt;}
.y4_c00288{bottom:699.200020pt;}
.y3_c00288{bottom:716.200020pt;}
.y2_c00288{bottom:733.466686pt;}
.y1_c00288{bottom:750.733353pt;}
.y15_c00288{bottom:788.200020pt;}
.h3_c00288{height:44.470052pt;}
.h4_c00288{height:44.492188pt;}
.h2_c00288{height:52.343750pt;}
.h1_c00288{height:851.333333pt;}
.h0_c00288{height:851.533333pt;}
.w1_c00288{width:572.000000pt;}
.w0_c00288{width:572.133333pt;}
.x0_c00288{left:0.000000pt;}
.x1_c00288{left:80.933333pt;}
.x2_c00288{left:86.733333pt;}
.x3_c00288{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_51c1a54150cc84ce06fa1f3e.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00289;src:url('chunks/assets/font_fe38a688fcf8816bd58dd51c.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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:-15.000000px;}
.ws1_c00289{word-spacing:-12.750000px;}
.ws2_c00289{word-spacing:0.000000px;}
._b_c00289{margin-left:-11.760000px;}
._e_c00289{margin-left:-10.500000px;}
._10_c00289{margin-left:-7.286940px;}
._f_c00289{margin-left:-5.580000px;}
._d_c00289{margin-left:-3.480000px;}
._0_c00289{margin-left:-2.040000px;}
._11_c00289{margin-left:-1.020000px;}
._3_c00289{width:1.260000px;}
._2_c00289{width:2.760000px;}
._4_c00289{width:4.080000px;}
._c_c00289{width:5.160000px;}
._8_c00289{width:6.240000px;}
._1_c00289{width:7.260000px;}
._7_c00289{width:8.580000px;}
._6_c00289{width:9.660000px;}
._5_c00289{width:10.680000px;}
._9_c00289{width:12.180000px;}
._a_c00289{width:13.200000px;}
._17_c00289{width:14.328009px;}
._14_c00289{width:15.444027px;}
._13_c00289{width:16.757994px;}
._16_c00289{width:18.818847px;}
._18_c00289{width:20.672973px;}
._15_c00289{width:21.990027px;}
._12_c00289{width:26.190030px;}
.fc1_c00289{color:transparent;}
.fc0_c00289{color:rgb(35,31,32);}
.fs1_c00289{font-size:51.000000px;}
.fs0_c00289{font-size:60.000000px;}
.y0_c00289{bottom:0.000000px;}
.y29_c00289{bottom:64.425022px;}
.y28_c00289{bottom:110.175022px;}
.y27_c00289{bottom:125.325022px;}
.y26_c00289{bottom:141.150022px;}
.y25_c00289{bottom:155.925022px;}
.y24_c00289{bottom:171.375022px;}
.y23_c00289{bottom:186.525022px;}
.y22_c00289{bottom:201.975022px;}
.y21_c00289{bottom:217.125022px;}
.y20_c00289{bottom:232.950022px;}
.y1f_c00289{bottom:247.725022px;}
.y1e_c00289{bottom:263.550022px;}
.y1d_c00289{bottom:278.325022px;}
.y1c_c00289{bottom:293.775022px;}
.y1b_c00289{bottom:308.925022px;}
.y1a_c00289{bottom:324.750022px;}
.y19_c00289{bottom:339.825022px;}
.y18_c00289{bottom:354.975022px;}
.y17_c00289{bottom:370.425022px;}
.y16_c00289{bottom:385.575022px;}
.y15_c00289{bottom:401.025022px;}
.y14_c00289{bottom:416.175022px;}
.y12_c00289{bottom:496.125022px;}
.y11_c00289{bottom:515.175022px;}
.y10_c00289{bottom:534.975022px;}
.yf_c00289{bottom:554.025022px;}
.ye_c00289{bottom:573.525022px;}
.yd_c00289{bottom:593.325022px;}
.yc_c00289{bottom:612.375022px;}
.yb_c00289{bottom:632.175022px;}
.ya_c00289{bottom:651.600022px;}
.y9_c00289{bottom:670.800022px;}
.y8_c00289{bottom:690.225022px;}
.y7_c00289{bottom:709.650022px;}
.y6_c00289{bottom:729.075022px;}
.y5_c00289{bottom:748.500022px;}
.y4_c00289{bottom:767.925022px;}
.y3_c00289{bottom:787.350022px;}
.y2_c00289{bottom:806.400022px;}
.y1_c00289{bottom:844.950022px;}
.y13_c00289{bottom:886.725022px;}
.h3_c00289{height:50.028809px;}
.h4_c00289{height:50.053711px;}
.h2_c00289{height:58.886719px;}
.h1_c00289{height:957.750000px;}
.h0_c00289{height:957.975000px;}
.w0_c00289{width:641.850030px;}
.w1_c00289{width:642.000000px;}
.x0_c00289{left:0.000000px;}
.x1_c00289{left:81.375000px;}
.x3_c00289{left:87.825000px;}
.x5_c00289{left:120.225000px;}
.x4_c00289{left:121.350000px;}
.x2_c00289{left:143.625000px;}
.x6_c00289{left:531.375000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls0_c00289{letter-spacing:0.000000pt;}
.ws0_c00289{word-spacing:-13.333333pt;}
.ws1_c00289{word-spacing:-11.333333pt;}
.ws2_c00289{word-spacing:0.000000pt;}
._b_c00289{margin-left:-10.453333pt;}
._e_c00289{margin-left:-9.333333pt;}
._10_c00289{margin-left:-6.477280pt;}
._f_c00289{margin-left:-4.960000pt;}
._d_c00289{margin-left:-3.093333pt;}
._0_c00289{margin-left:-1.813333pt;}
._11_c00289{margin-left:-0.906667pt;}
._3_c00289{width:1.120000pt;}
._2_c00289{width:2.453333pt;}
._4_c00289{width:3.626667pt;}
._c_c00289{width:4.586667pt;}
._8_c00289{width:5.546667pt;}
._1_c00289{width:6.453333pt;}
._7_c00289{width:7.626667pt;}
._6_c00289{width:8.586667pt;}
._5_c00289{width:9.493333pt;}
._9_c00289{width:10.826667pt;}
._a_c00289{width:11.733333pt;}
._17_c00289{width:12.736008pt;}
._14_c00289{width:13.728024pt;}
._13_c00289{width:14.895995pt;}
._16_c00289{width:16.727864pt;}
._18_c00289{width:18.375976pt;}
._15_c00289{width:19.546691pt;}
._12_c00289{width:23.280027pt;}
.fs1_c00289{font-size:45.333333pt;}
.fs0_c00289{font-size:53.333333pt;}
.y0_c00289{bottom:0.000000pt;}
.y29_c00289{bottom:57.266686pt;}
.y28_c00289{bottom:97.933353pt;}
.y27_c00289{bottom:111.400020pt;}
.y26_c00289{bottom:125.466686pt;}
.y25_c00289{bottom:138.600020pt;}
.y24_c00289{bottom:152.333353pt;}
.y23_c00289{bottom:165.800020pt;}
.y22_c00289{bottom:179.533353pt;}
.y21_c00289{bottom:193.000020pt;}
.y20_c00289{bottom:207.066686pt;}
.y1f_c00289{bottom:220.200020pt;}
.y1e_c00289{bottom:234.266686pt;}
.y1d_c00289{bottom:247.400020pt;}
.y1c_c00289{bottom:261.133353pt;}
.y1b_c00289{bottom:274.600020pt;}
.y1a_c00289{bottom:288.666686pt;}
.y19_c00289{bottom:302.066686pt;}
.y18_c00289{bottom:315.533353pt;}
.y17_c00289{bottom:329.266686pt;}
.y16_c00289{bottom:342.733353pt;}
.y15_c00289{bottom:356.466686pt;}
.y14_c00289{bottom:369.933353pt;}
.y12_c00289{bottom:441.000020pt;}
.y11_c00289{bottom:457.933353pt;}
.y10_c00289{bottom:475.533353pt;}
.yf_c00289{bottom:492.466686pt;}
.ye_c00289{bottom:509.800020pt;}
.yd_c00289{bottom:527.400020pt;}
.yc_c00289{bottom:544.333353pt;}
.yb_c00289{bottom:561.933353pt;}
.ya_c00289{bottom:579.200020pt;}
.y9_c00289{bottom:596.266686pt;}
.y8_c00289{bottom:613.533353pt;}
.y7_c00289{bottom:630.800020pt;}
.y6_c00289{bottom:648.066686pt;}
.y5_c00289{bottom:665.333353pt;}
.y4_c00289{bottom:682.600020pt;}
.y3_c00289{bottom:699.866686pt;}
.y2_c00289{bottom:716.800020pt;}
.y1_c00289{bottom:751.066686pt;}
.y13_c00289{bottom:788.200020pt;}
.h3_c00289{height:44.470052pt;}
.h4_c00289{height:44.492188pt;}
.h2_c00289{height:52.343750pt;}
.h1_c00289{height:851.333333pt;}
.h0_c00289{height:851.533333pt;}
.w0_c00289{width:570.533360pt;}
.w1_c00289{width:570.666667pt;}
.x0_c00289{left:0.000000pt;}
.x1_c00289{left:72.333333pt;}
.x3_c00289{left:78.066667pt;}
.x5_c00289{left:106.866667pt;}
.x4_c00289{left:107.866667pt;}
.x2_c00289{left:127.666667pt;}
.x6_c00289{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb350bc78eb2a6b459a17cd3.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00290;src:url('chunks/assets/font_6cf93c232da23010fbe04965.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00290{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00290{word-spacing:-15.000000px;}
.ws1_c00290{word-spacing:-12.750000px;}
.ws2_c00290{word-spacing:0.000000px;}
._16_c00290{margin-left:-13.500000px;}
._f_c00290{margin-left:-12.300000px;}
._15_c00290{margin-left:-11.220000px;}
._12_c00290{margin-left:-10.200000px;}
._11_c00290{margin-left:-8.460000px;}
._1a_c00290{margin-left:-6.935994px;}
._4_c00290{margin-left:-5.700000px;}
._13_c00290{margin-left:-3.720000px;}
._10_c00290{margin-left:-2.700000px;}
._0_c00290{margin-left:-1.080000px;}
._3_c00290{width:1.320000px;}
._2_c00290{width:2.880000px;}
._e_c00290{width:4.500000px;}
._5_c00290{width:5.640000px;}
._6_c00290{width:6.780000px;}
._7_c00290{width:7.920000px;}
._1_c00290{width:9.420000px;}
._14_c00290{width:10.560000px;}
._d_c00290{width:11.640000px;}
._c_c00290{width:13.740000px;}
._8_c00290{width:16.740000px;}
._9_c00290{width:18.360000px;}
._b_c00290{width:19.560000px;}
._a_c00290{width:20.760000px;}
._18_c00290{width:22.710000px;}
._19_c00290{width:23.790042px;}
._17_c00290{width:25.410000px;}
._1b_c00290{width:28.230081px;}
.fc1_c00290{color:transparent;}
.fc0_c00290{color:rgb(35,31,32);}
.fs1_c00290{font-size:51.000000px;}
.fs0_c00290{font-size:60.000000px;}
.y0_c00290{bottom:0.000000px;}
.y29_c00290{bottom:64.425022px;}
.y28_c00290{bottom:110.175022px;}
.y27_c00290{bottom:125.325022px;}
.y26_c00290{bottom:140.775022px;}
.y25_c00290{bottom:155.925022px;}
.y24_c00290{bottom:171.375022px;}
.y23_c00290{bottom:186.825022px;}
.y22_c00290{bottom:201.975022px;}
.y21_c00290{bottom:217.125022px;}
.y20_c00290{bottom:232.575022px;}
.y1f_c00290{bottom:248.025022px;}
.y1e_c00290{bottom:263.550022px;}
.y1d_c00290{bottom:278.625022px;}
.y1c_c00290{bottom:293.775022px;}
.y1b_c00290{bottom:308.925022px;}
.y1a_c00290{bottom:324.750022px;}
.y19_c00290{bottom:339.525022px;}
.y17_c00290{bottom:398.925022px;}
.y16_c00290{bottom:418.350022px;}
.y15_c00290{bottom:437.775022px;}
.y14_c00290{bottom:456.825022px;}
.y13_c00290{bottom:476.625022px;}
.y12_c00290{bottom:496.125022px;}
.y11_c00290{bottom:515.175022px;}
.y10_c00290{bottom:534.975022px;}
.yf_c00290{bottom:554.100022px;}
.ye_c00290{bottom:573.525022px;}
.yd_c00290{bottom:592.950022px;}
.yc_c00290{bottom:612.375022px;}
.yb_c00290{bottom:632.025022px;}
.ya_c00290{bottom:651.525022px;}
.y9_c00290{bottom:671.025022px;}
.y8_c00290{bottom:690.525022px;}
.y7_c00290{bottom:709.575022px;}
.y6_c00290{bottom:729.000022px;}
.y5_c00290{bottom:748.425022px;}
.y4_c00290{bottom:767.550022px;}
.y3_c00290{bottom:787.350022px;}
.y2_c00290{bottom:806.400022px;}
.y1_c00290{bottom:844.950022px;}
.y18_c00290{bottom:886.725022px;}
.h3_c00290{height:50.028809px;}
.h4_c00290{height:50.053711px;}
.h2_c00290{height:58.886719px;}
.h1_c00290{height:957.750000px;}
.h0_c00290{height:957.975000px;}
.w1_c00290{width:643.500000px;}
.w0_c00290{width:643.650000px;}
.x0_c00290{left:0.000000px;}
.x2_c00290{left:90.375000px;}
.x1_c00290{left:91.425000px;}
.x4_c00290{left:97.575000px;}
.x3_c00290{left:107.250000px;}
.x5_c00290{left:130.650000px;}
.x6_c00290{left:131.775000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls0_c00290{letter-spacing:0.000000pt;}
.ws0_c00290{word-spacing:-13.333333pt;}
.ws1_c00290{word-spacing:-11.333333pt;}
.ws2_c00290{word-spacing:0.000000pt;}
._16_c00290{margin-left:-12.000000pt;}
._f_c00290{margin-left:-10.933333pt;}
._15_c00290{margin-left:-9.973333pt;}
._12_c00290{margin-left:-9.066667pt;}
._11_c00290{margin-left:-7.520000pt;}
._1a_c00290{margin-left:-6.165328pt;}
._4_c00290{margin-left:-5.066667pt;}
._13_c00290{margin-left:-3.306667pt;}
._10_c00290{margin-left:-2.400000pt;}
._0_c00290{margin-left:-0.960000pt;}
._3_c00290{width:1.173333pt;}
._2_c00290{width:2.560000pt;}
._e_c00290{width:4.000000pt;}
._5_c00290{width:5.013333pt;}
._6_c00290{width:6.026667pt;}
._7_c00290{width:7.040000pt;}
._1_c00290{width:8.373333pt;}
._14_c00290{width:9.386667pt;}
._d_c00290{width:10.346667pt;}
._c_c00290{width:12.213333pt;}
._8_c00290{width:14.880000pt;}
._9_c00290{width:16.320000pt;}
._b_c00290{width:17.386667pt;}
._a_c00290{width:18.453333pt;}
._18_c00290{width:20.186667pt;}
._19_c00290{width:21.146704pt;}
._17_c00290{width:22.586667pt;}
._1b_c00290{width:25.093405pt;}
.fs1_c00290{font-size:45.333333pt;}
.fs0_c00290{font-size:53.333333pt;}
.y0_c00290{bottom:0.000000pt;}
.y29_c00290{bottom:57.266686pt;}
.y28_c00290{bottom:97.933353pt;}
.y27_c00290{bottom:111.400020pt;}
.y26_c00290{bottom:125.133353pt;}
.y25_c00290{bottom:138.600020pt;}
.y24_c00290{bottom:152.333353pt;}
.y23_c00290{bottom:166.066686pt;}
.y22_c00290{bottom:179.533353pt;}
.y21_c00290{bottom:193.000020pt;}
.y20_c00290{bottom:206.733353pt;}
.y1f_c00290{bottom:220.466686pt;}
.y1e_c00290{bottom:234.266686pt;}
.y1d_c00290{bottom:247.666686pt;}
.y1c_c00290{bottom:261.133353pt;}
.y1b_c00290{bottom:274.600020pt;}
.y1a_c00290{bottom:288.666686pt;}
.y19_c00290{bottom:301.800020pt;}
.y17_c00290{bottom:354.600020pt;}
.y16_c00290{bottom:371.866686pt;}
.y15_c00290{bottom:389.133353pt;}
.y14_c00290{bottom:406.066686pt;}
.y13_c00290{bottom:423.666686pt;}
.y12_c00290{bottom:441.000020pt;}
.y11_c00290{bottom:457.933353pt;}
.y10_c00290{bottom:475.533353pt;}
.yf_c00290{bottom:492.533353pt;}
.ye_c00290{bottom:509.800020pt;}
.yd_c00290{bottom:527.066686pt;}
.yc_c00290{bottom:544.333353pt;}
.yb_c00290{bottom:561.800020pt;}
.ya_c00290{bottom:579.133353pt;}
.y9_c00290{bottom:596.466686pt;}
.y8_c00290{bottom:613.800020pt;}
.y7_c00290{bottom:630.733353pt;}
.y6_c00290{bottom:648.000020pt;}
.y5_c00290{bottom:665.266686pt;}
.y4_c00290{bottom:682.266686pt;}
.y3_c00290{bottom:699.866686pt;}
.y2_c00290{bottom:716.800020pt;}
.y1_c00290{bottom:751.066686pt;}
.y18_c00290{bottom:788.200020pt;}
.h3_c00290{height:44.470052pt;}
.h4_c00290{height:44.492188pt;}
.h2_c00290{height:52.343750pt;}
.h1_c00290{height:851.333333pt;}
.h0_c00290{height:851.533333pt;}
.w1_c00290{width:572.000000pt;}
.w0_c00290{width:572.133333pt;}
.x0_c00290{left:0.000000pt;}
.x2_c00290{left:80.333333pt;}
.x1_c00290{left:81.266667pt;}
.x4_c00290{left:86.733333pt;}
.x3_c00290{left:95.333333pt;}
.x5_c00290{left:116.133333pt;}
.x6_c00290{left:117.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_794c21830dfd35c8b6d168a3.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00291;src:url('chunks/assets/font_1421e1c817b4a94ce0c387dc.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00291{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_c00291{vertical-align:0.000000px;}
.ls0_c00291{letter-spacing:0.000000px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00291{word-spacing:-15.000000px;}
.ws0_c00291{word-spacing:-12.750000px;}
.ws2_c00291{word-spacing:0.000000px;}
._12_c00291{margin-left:-14.940000px;}
._14_c00291{margin-left:-12.300000px;}
._e_c00291{margin-left:-11.100000px;}
._15_c00291{margin-left:-9.720000px;}
._17_c00291{margin-left:-8.520000px;}
._11_c00291{margin-left:-7.320000px;}
._13_c00291{margin-left:-6.240000px;}
._10_c00291{margin-left:-5.100000px;}
._9_c00291{margin-left:-3.060000px;}
._0_c00291{margin-left:-2.040000px;}
._f_c00291{margin-left:-1.020000px;}
._3_c00291{width:1.380000px;}
._2_c00291{width:2.940000px;}
._c_c00291{width:4.020000px;}
._1c_c00291{width:5.088057px;}
._d_c00291{width:6.240000px;}
._8_c00291{width:7.980000px;}
._b_c00291{width:9.060000px;}
._7_c00291{width:10.620000px;}
._a_c00291{width:11.760000px;}
._6_c00291{width:13.680000px;}
._19_c00291{width:15.042114px;}
._4_c00291{width:16.920000px;}
._1_c00291{width:18.300000px;}
._5_c00291{width:19.320000px;}
._16_c00291{width:21.240000px;}
._18_c00291{width:23.490000px;}
._1a_c00291{width:24.990000px;}
._1b_c00291{width:26.190030px;}
.fc1_c00291{color:transparent;}
.fc0_c00291{color:rgb(35,31,32);}
.fs1_c00291{font-size:51.000000px;}
.fs0_c00291{font-size:60.000000px;}
.y0_c00291{bottom:0.000000px;}
.y2a_c00291{bottom:64.425022px;}
.y29_c00291{bottom:110.175022px;}
.y28_c00291{bottom:125.625022px;}
.y27_c00291{bottom:140.775022px;}
.y26_c00291{bottom:155.925022px;}
.y25_c00291{bottom:171.375022px;}
.y24_c00291{bottom:186.525022px;}
.y23_c00291{bottom:201.975022px;}
.y22_c00291{bottom:217.125022px;}
.y21_c00291{bottom:232.950022px;}
.y20_c00291{bottom:247.725022px;}
.y1f_c00291{bottom:263.175022px;}
.y1e_c00291{bottom:278.625022px;}
.y1d_c00291{bottom:293.775022px;}
.y1c_c00291{bottom:308.925022px;}
.y1a_c00291{bottom:359.325022px;}
.y19_c00291{bottom:378.375022px;}
.y18_c00291{bottom:397.800022px;}
.y17_c00291{bottom:417.600022px;}
.y16_c00291{bottom:437.025022px;}
.y15_c00291{bottom:456.150022px;}
.y14_c00291{bottom:475.950022px;}
.y13_c00291{bottom:495.375022px;}
.y12_c00291{bottom:514.500022px;}
.y11_c00291{bottom:533.925022px;}
.y10_c00291{bottom:553.350022px;}
.yf_c00291{bottom:572.775022px;}
.ye_c00291{bottom:592.200022px;}
.yd_c00291{bottom:611.625022px;}
.yc_c00291{bottom:631.425022px;}
.yb_c00291{bottom:650.925022px;}
.ya_c00291{bottom:669.975022px;}
.y9_c00291{bottom:689.775022px;}
.y8_c00291{bottom:708.825022px;}
.y7_c00291{bottom:728.625022px;}
.y6_c00291{bottom:748.125022px;}
.y5_c00291{bottom:767.550022px;}
.y4_c00291{bottom:786.225022px;}
.y3_c00291{bottom:806.025022px;}
.y2_c00291{bottom:825.150022px;}
.y1_c00291{bottom:844.950022px;}
.y1b_c00291{bottom:886.725022px;}
.h3_c00291{height:50.028809px;}
.h4_c00291{height:50.053711px;}
.h2_c00291{height:58.886719px;}
.h1_c00291{height:957.750000px;}
.h0_c00291{height:957.975000px;}
.w0_c00291{width:641.850030px;}
.w1_c00291{width:642.000000px;}
.x0_c00291{left:0.000000px;}
.x2_c00291{left:80.250000px;}
.x1_c00291{left:81.375000px;}
.x5_c00291{left:87.825000px;}
.x3_c00291{left:97.200000px;}
.x7_c00291{left:120.225000px;}
.x6_c00291{left:121.650000px;}
.x4_c00291{left:143.625000px;}
.x8_c00291{left:531.375000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls0_c00291{letter-spacing:0.000000pt;}
.ws1_c00291{word-spacing:-13.333333pt;}
.ws0_c00291{word-spacing:-11.333333pt;}
.ws2_c00291{word-spacing:0.000000pt;}
._12_c00291{margin-left:-13.280000pt;}
._14_c00291{margin-left:-10.933333pt;}
._e_c00291{margin-left:-9.866667pt;}
._15_c00291{margin-left:-8.640000pt;}
._17_c00291{margin-left:-7.573333pt;}
._11_c00291{margin-left:-6.506667pt;}
._13_c00291{margin-left:-5.546667pt;}
._10_c00291{margin-left:-4.533333pt;}
._9_c00291{margin-left:-2.720000pt;}
._0_c00291{margin-left:-1.813333pt;}
._f_c00291{margin-left:-0.906667pt;}
._3_c00291{width:1.226667pt;}
._2_c00291{width:2.613333pt;}
._c_c00291{width:3.573333pt;}
._1c_c00291{width:4.522717pt;}
._d_c00291{width:5.546667pt;}
._8_c00291{width:7.093333pt;}
._b_c00291{width:8.053333pt;}
._7_c00291{width:9.440000pt;}
._a_c00291{width:10.453333pt;}
._6_c00291{width:12.160000pt;}
._19_c00291{width:13.370768pt;}
._4_c00291{width:15.040000pt;}
._1_c00291{width:16.266667pt;}
._5_c00291{width:17.173333pt;}
._16_c00291{width:18.880000pt;}
._18_c00291{width:20.880000pt;}
._1a_c00291{width:22.213333pt;}
._1b_c00291{width:23.280027pt;}
.fs1_c00291{font-size:45.333333pt;}
.fs0_c00291{font-size:53.333333pt;}
.y0_c00291{bottom:0.000000pt;}
.y2a_c00291{bottom:57.266686pt;}
.y29_c00291{bottom:97.933353pt;}
.y28_c00291{bottom:111.666686pt;}
.y27_c00291{bottom:125.133353pt;}
.y26_c00291{bottom:138.600020pt;}
.y25_c00291{bottom:152.333353pt;}
.y24_c00291{bottom:165.800020pt;}
.y23_c00291{bottom:179.533353pt;}
.y22_c00291{bottom:193.000020pt;}
.y21_c00291{bottom:207.066686pt;}
.y20_c00291{bottom:220.200020pt;}
.y1f_c00291{bottom:233.933353pt;}
.y1e_c00291{bottom:247.666686pt;}
.y1d_c00291{bottom:261.133353pt;}
.y1c_c00291{bottom:274.600020pt;}
.y1a_c00291{bottom:319.400020pt;}
.y19_c00291{bottom:336.333353pt;}
.y18_c00291{bottom:353.600020pt;}
.y17_c00291{bottom:371.200020pt;}
.y16_c00291{bottom:388.466686pt;}
.y15_c00291{bottom:405.466686pt;}
.y14_c00291{bottom:423.066686pt;}
.y13_c00291{bottom:440.333353pt;}
.y12_c00291{bottom:457.333353pt;}
.y11_c00291{bottom:474.600020pt;}
.y10_c00291{bottom:491.866686pt;}
.yf_c00291{bottom:509.133353pt;}
.ye_c00291{bottom:526.400020pt;}
.yd_c00291{bottom:543.666686pt;}
.yc_c00291{bottom:561.266686pt;}
.yb_c00291{bottom:578.600020pt;}
.ya_c00291{bottom:595.533353pt;}
.y9_c00291{bottom:613.133353pt;}
.y8_c00291{bottom:630.066686pt;}
.y7_c00291{bottom:647.666686pt;}
.y6_c00291{bottom:665.000020pt;}
.y5_c00291{bottom:682.266686pt;}
.y4_c00291{bottom:698.866686pt;}
.y3_c00291{bottom:716.466686pt;}
.y2_c00291{bottom:733.466686pt;}
.y1_c00291{bottom:751.066686pt;}
.y1b_c00291{bottom:788.200020pt;}
.h3_c00291{height:44.470052pt;}
.h4_c00291{height:44.492188pt;}
.h2_c00291{height:52.343750pt;}
.h1_c00291{height:851.333333pt;}
.h0_c00291{height:851.533333pt;}
.w0_c00291{width:570.533360pt;}
.w1_c00291{width:570.666667pt;}
.x0_c00291{left:0.000000pt;}
.x2_c00291{left:71.333333pt;}
.x1_c00291{left:72.333333pt;}
.x5_c00291{left:78.066667pt;}
.x3_c00291{left:86.400000pt;}
.x7_c00291{left:106.866667pt;}
.x6_c00291{left:108.133333pt;}
.x4_c00291{left:127.666667pt;}
.x8_c00291{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_55ad778ecc8813242df59ea7.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00292;src:url('chunks/assets/font_4bc83ce0b6d2bc50a46da7f6.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00292{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00292{word-spacing:-12.750000px;}
.ws2_c00292{word-spacing:0.000000px;}
._17_c00292{margin-left:-14.520000px;}
._12_c00292{margin-left:-13.200000px;}
._5_c00292{margin-left:-11.400000px;}
._4_c00292{margin-left:-10.020000px;}
._d_c00292{margin-left:-8.220000px;}
._18_c00292{margin-left:-6.900000px;}
._19_c00292{margin-left:-5.580000px;}
._1a_c00292{margin-left:-4.274934px;}
._10_c00292{margin-left:-2.760000px;}
._9_c00292{margin-left:-1.620000px;}
._0_c00292{width:1.020000px;}
._2_c00292{width:2.280000px;}
._8_c00292{width:3.480000px;}
._11_c00292{width:4.500000px;}
._1_c00292{width:5.580000px;}
._3_c00292{width:6.780000px;}
._6_c00292{width:8.100000px;}
._c_c00292{width:9.540000px;}
._7_c00292{width:10.560000px;}
._1b_c00292{width:14.346045px;}
._b_c00292{width:16.320000px;}
._a_c00292{width:17.580000px;}
._f_c00292{width:18.600000px;}
._e_c00292{width:19.860000px;}
._14_c00292{width:22.320000px;}
._15_c00292{width:23.700000px;}
._13_c00292{width:25.500000px;}
._16_c00292{width:27.600000px;}
.fc1_c00292{color:transparent;}
.fc0_c00292{color:rgb(35,31,32);}
.fs1_c00292{font-size:51.000000px;}
.fs0_c00292{font-size:60.000000px;}
.y0_c00292{bottom:0.000000px;}
.y26_c00292{bottom:64.800022px;}
.y25_c00292{bottom:110.175022px;}
.y24_c00292{bottom:125.625022px;}
.y23_c00292{bottom:140.775022px;}
.y22_c00292{bottom:156.225022px;}
.y21_c00292{bottom:171.375022px;}
.y20_c00292{bottom:186.525022px;}
.y1f_c00292{bottom:202.350022px;}
.y1e_c00292{bottom:217.425022px;}
.y1d_c00292{bottom:232.500022px;}
.y1c_c00292{bottom:248.025022px;}
.y1b_c00292{bottom:263.550022px;}
.y1a_c00292{bottom:278.625022px;}
.y19_c00292{bottom:294.150022px;}
.y18_c00292{bottom:308.925022px;}
.y17_c00292{bottom:324.375022px;}
.y16_c00292{bottom:339.525022px;}
.y15_c00292{bottom:354.975022px;}
.y14_c00292{bottom:370.425022px;}
.y13_c00292{bottom:458.625022px;}
.y12_c00292{bottom:477.750022px;}
.y11_c00292{bottom:497.175022px;}
.y10_c00292{bottom:516.975022px;}
.yf_c00292{bottom:536.025022px;}
.ye_c00292{bottom:555.825022px;}
.yd_c00292{bottom:593.625022px;}
.yb_c00292{bottom:650.925022px;}
.ya_c00292{bottom:670.350022px;}
.y9_c00292{bottom:689.400022px;}
.y8_c00292{bottom:709.200022px;}
.y7_c00292{bottom:728.700022px;}
.y6_c00292{bottom:748.125022px;}
.y5_c00292{bottom:767.550022px;}
.y4_c00292{bottom:786.225022px;}
.y3_c00292{bottom:806.100022px;}
.y2_c00292{bottom:825.525022px;}
.y1_c00292{bottom:844.950022px;}
.yc_c00292{bottom:886.725022px;}
.h3_c00292{height:50.028809px;}
.h4_c00292{height:50.053711px;}
.h2_c00292{height:58.886719px;}
.h1_c00292{height:957.750000px;}
.h0_c00292{height:957.975000px;}
.w1_c00292{width:643.500000px;}
.w0_c00292{width:643.650000px;}
.x0_c00292{left:0.000000px;}
.x1_c00292{left:91.425000px;}
.x2_c00292{left:97.575000px;}
.x3_c00292{left:131.025000px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls0_c00292{letter-spacing:0.000000pt;}
.ws0_c00292{word-spacing:-13.333333pt;}
.ws1_c00292{word-spacing:-11.333333pt;}
.ws2_c00292{word-spacing:0.000000pt;}
._17_c00292{margin-left:-12.906667pt;}
._12_c00292{margin-left:-11.733333pt;}
._5_c00292{margin-left:-10.133333pt;}
._4_c00292{margin-left:-8.906667pt;}
._d_c00292{margin-left:-7.306667pt;}
._18_c00292{margin-left:-6.133333pt;}
._19_c00292{margin-left:-4.960000pt;}
._1a_c00292{margin-left:-3.799941pt;}
._10_c00292{margin-left:-2.453333pt;}
._9_c00292{margin-left:-1.440000pt;}
._0_c00292{width:0.906667pt;}
._2_c00292{width:2.026667pt;}
._8_c00292{width:3.093333pt;}
._11_c00292{width:4.000000pt;}
._1_c00292{width:4.960000pt;}
._3_c00292{width:6.026667pt;}
._6_c00292{width:7.200000pt;}
._c_c00292{width:8.480000pt;}
._7_c00292{width:9.386667pt;}
._1b_c00292{width:12.752040pt;}
._b_c00292{width:14.506667pt;}
._a_c00292{width:15.626667pt;}
._f_c00292{width:16.533333pt;}
._e_c00292{width:17.653333pt;}
._14_c00292{width:19.840000pt;}
._15_c00292{width:21.066667pt;}
._13_c00292{width:22.666667pt;}
._16_c00292{width:24.533333pt;}
.fs1_c00292{font-size:45.333333pt;}
.fs0_c00292{font-size:53.333333pt;}
.y0_c00292{bottom:0.000000pt;}
.y26_c00292{bottom:57.600020pt;}
.y25_c00292{bottom:97.933353pt;}
.y24_c00292{bottom:111.666686pt;}
.y23_c00292{bottom:125.133353pt;}
.y22_c00292{bottom:138.866686pt;}
.y21_c00292{bottom:152.333353pt;}
.y20_c00292{bottom:165.800020pt;}
.y1f_c00292{bottom:179.866686pt;}
.y1e_c00292{bottom:193.266686pt;}
.y1d_c00292{bottom:206.666686pt;}
.y1c_c00292{bottom:220.466686pt;}
.y1b_c00292{bottom:234.266686pt;}
.y1a_c00292{bottom:247.666686pt;}
.y19_c00292{bottom:261.466686pt;}
.y18_c00292{bottom:274.600020pt;}
.y17_c00292{bottom:288.333353pt;}
.y16_c00292{bottom:301.800020pt;}
.y15_c00292{bottom:315.533353pt;}
.y14_c00292{bottom:329.266686pt;}
.y13_c00292{bottom:407.666686pt;}
.y12_c00292{bottom:424.666686pt;}
.y11_c00292{bottom:441.933353pt;}
.y10_c00292{bottom:459.533353pt;}
.yf_c00292{bottom:476.466686pt;}
.ye_c00292{bottom:494.066686pt;}
.yd_c00292{bottom:527.666686pt;}
.yb_c00292{bottom:578.600020pt;}
.ya_c00292{bottom:595.866686pt;}
.y9_c00292{bottom:612.800020pt;}
.y8_c00292{bottom:630.400020pt;}
.y7_c00292{bottom:647.733353pt;}
.y6_c00292{bottom:665.000020pt;}
.y5_c00292{bottom:682.266686pt;}
.y4_c00292{bottom:698.866686pt;}
.y3_c00292{bottom:716.533353pt;}
.y2_c00292{bottom:733.800020pt;}
.y1_c00292{bottom:751.066686pt;}
.yc_c00292{bottom:788.200020pt;}
.h3_c00292{height:44.470052pt;}
.h4_c00292{height:44.492188pt;}
.h2_c00292{height:52.343750pt;}
.h1_c00292{height:851.333333pt;}
.h0_c00292{height:851.533333pt;}
.w1_c00292{width:572.000000pt;}
.w0_c00292{width:572.133333pt;}
.x0_c00292{left:0.000000pt;}
.x1_c00292{left:81.266667pt;}
.x2_c00292{left:86.733333pt;}
.x3_c00292{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8b72cb363c39818459c2b0a2.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00293;src:url('chunks/assets/font_bc9f3a14be66c52194e3491c.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00293{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00293{vertical-align:0.000000px;}
.ls1_c00293{letter-spacing:0.000000px;}
.ls0_c00293{letter-spacing:0.899997px;}
.sc__c00293{text-shadow:none;}
.sc0_c00293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00293{-webkit-text-stroke:0px transparent;}
.sc0_c00293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00293{word-spacing:-15.000000px;}
.ws0_c00293{word-spacing:-12.750000px;}
.ws2_c00293{word-spacing:0.000000px;}
._6_c00293{margin-left:-14.460000px;}
._5_c00293{margin-left:-12.540000px;}
._b_c00293{margin-left:-7.740000px;}
._17_c00293{margin-left:-6.098880px;}
._14_c00293{margin-left:-4.988994px;}
._11_c00293{margin-left:-3.900000px;}
._9_c00293{margin-left:-2.640000px;}
._8_c00293{margin-left:-1.440000px;}
._0_c00293{width:1.680000px;}
._2_c00293{width:3.300000px;}
._10_c00293{width:4.680000px;}
._a_c00293{width:5.700000px;}
._1_c00293{width:7.620000px;}
._4_c00293{width:9.000000px;}
._3_c00293{width:10.200000px;}
._7_c00293{width:11.760000px;}
._e_c00293{width:13.080000px;}
._15_c00293{width:14.093991px;}
._f_c00293{width:16.080000px;}
._c_c00293{width:17.460000px;}
._d_c00293{width:18.840000px;}
._16_c00293{width:21.810027px;}
._13_c00293{width:23.310000px;}
._12_c00293{width:25.710000px;}
.fc1_c00293{color:transparent;}
.fc0_c00293{color:rgb(35,31,32);}
.fs1_c00293{font-size:51.000000px;}
.fs0_c00293{font-size:60.000000px;}
.y0_c00293{bottom:0.000000px;}
.y2b_c00293{bottom:64.425022px;}
.y2a_c00293{bottom:110.175022px;}
.y29_c00293{bottom:125.625022px;}
.y28_c00293{bottom:140.775022px;}
.y27_c00293{bottom:155.925022px;}
.y26_c00293{bottom:171.375022px;}
.y25_c00293{bottom:186.525022px;}
.y24_c00293{bottom:201.975022px;}
.y23_c00293{bottom:217.425022px;}
.y22_c00293{bottom:232.950022px;}
.y21_c00293{bottom:247.725022px;}
.y20_c00293{bottom:263.175022px;}
.y1f_c00293{bottom:278.325022px;}
.y1e_c00293{bottom:293.775022px;}
.y1d_c00293{bottom:309.225022px;}
.y1c_c00293{bottom:324.750022px;}
.y1b_c00293{bottom:339.525022px;}
.y1a_c00293{bottom:354.975022px;}
.y19_c00293{bottom:370.125022px;}
.y18_c00293{bottom:385.950022px;}
.y17_c00293{bottom:401.025022px;}
.y16_c00293{bottom:416.175022px;}
.y15_c00293{bottom:431.625022px;}
.y13_c00293{bottom:495.375022px;}
.y12_c00293{bottom:514.425022px;}
.y11_c00293{bottom:534.225022px;}
.y10_c00293{bottom:553.725022px;}
.yf_c00293{bottom:573.150022px;}
.ye_c00293{bottom:592.575022px;}
.yd_c00293{bottom:612.000022px;}
.yc_c00293{bottom:631.125022px;}
.yb_c00293{bottom:650.925022px;}
.ya_c00293{bottom:670.350022px;}
.y9_c00293{bottom:689.400022px;}
.y8_c00293{bottom:708.825022px;}
.y7_c00293{bottom:728.325022px;}
.y6_c00293{bottom:748.125022px;}
.y5_c00293{bottom:767.550022px;}
.y4_c00293{bottom:786.225022px;}
.y3_c00293{bottom:805.725022px;}
.y2_c00293{bottom:825.150022px;}
.y1_c00293{bottom:844.950022px;}
.y14_c00293{bottom:886.725022px;}
.h3_c00293{height:50.028809px;}
.h4_c00293{height:50.053711px;}
.h2_c00293{height:58.886719px;}
.h1_c00293{height:957.750000px;}
.h0_c00293{height:957.975000px;}
.w0_c00293{width:641.850030px;}
.w1_c00293{width:642.000000px;}
.x0_c00293{left:0.000000px;}
.x2_c00293{left:80.250000px;}
.x1_c00293{left:81.375000px;}
.x4_c00293{left:87.825000px;}
.x5_c00293{left:120.975000px;}
.x3_c00293{left:143.625000px;}
.x6_c00293{left:531.375000px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls1_c00293{letter-spacing:0.000000pt;}
.ls0_c00293{letter-spacing:0.799997pt;}
.ws1_c00293{word-spacing:-13.333333pt;}
.ws0_c00293{word-spacing:-11.333333pt;}
.ws2_c00293{word-spacing:0.000000pt;}
._6_c00293{margin-left:-12.853333pt;}
._5_c00293{margin-left:-11.146667pt;}
._b_c00293{margin-left:-6.880000pt;}
._17_c00293{margin-left:-5.421227pt;}
._14_c00293{margin-left:-4.434661pt;}
._11_c00293{margin-left:-3.466667pt;}
._9_c00293{margin-left:-2.346667pt;}
._8_c00293{margin-left:-1.280000pt;}
._0_c00293{width:1.493333pt;}
._2_c00293{width:2.933333pt;}
._10_c00293{width:4.160000pt;}
._a_c00293{width:5.066667pt;}
._1_c00293{width:6.773333pt;}
._4_c00293{width:8.000000pt;}
._3_c00293{width:9.066667pt;}
._7_c00293{width:10.453333pt;}
._e_c00293{width:11.626667pt;}
._15_c00293{width:12.527992pt;}
._f_c00293{width:14.293333pt;}
._c_c00293{width:15.520000pt;}
._d_c00293{width:16.746667pt;}
._16_c00293{width:19.386691pt;}
._13_c00293{width:20.720000pt;}
._12_c00293{width:22.853333pt;}
.fs1_c00293{font-size:45.333333pt;}
.fs0_c00293{font-size:53.333333pt;}
.y0_c00293{bottom:0.000000pt;}
.y2b_c00293{bottom:57.266686pt;}
.y2a_c00293{bottom:97.933353pt;}
.y29_c00293{bottom:111.666686pt;}
.y28_c00293{bottom:125.133353pt;}
.y27_c00293{bottom:138.600020pt;}
.y26_c00293{bottom:152.333353pt;}
.y25_c00293{bottom:165.800020pt;}
.y24_c00293{bottom:179.533353pt;}
.y23_c00293{bottom:193.266686pt;}
.y22_c00293{bottom:207.066686pt;}
.y21_c00293{bottom:220.200020pt;}
.y20_c00293{bottom:233.933353pt;}
.y1f_c00293{bottom:247.400020pt;}
.y1e_c00293{bottom:261.133353pt;}
.y1d_c00293{bottom:274.866686pt;}
.y1c_c00293{bottom:288.666686pt;}
.y1b_c00293{bottom:301.800020pt;}
.y1a_c00293{bottom:315.533353pt;}
.y19_c00293{bottom:329.000020pt;}
.y18_c00293{bottom:343.066686pt;}
.y17_c00293{bottom:356.466686pt;}
.y16_c00293{bottom:369.933353pt;}
.y15_c00293{bottom:383.666686pt;}
.y13_c00293{bottom:440.333353pt;}
.y12_c00293{bottom:457.266686pt;}
.y11_c00293{bottom:474.866686pt;}
.y10_c00293{bottom:492.200020pt;}
.yf_c00293{bottom:509.466686pt;}
.ye_c00293{bottom:526.733353pt;}
.yd_c00293{bottom:544.000020pt;}
.yc_c00293{bottom:561.000020pt;}
.yb_c00293{bottom:578.600020pt;}
.ya_c00293{bottom:595.866686pt;}
.y9_c00293{bottom:612.800020pt;}
.y8_c00293{bottom:630.066686pt;}
.y7_c00293{bottom:647.400020pt;}
.y6_c00293{bottom:665.000020pt;}
.y5_c00293{bottom:682.266686pt;}
.y4_c00293{bottom:698.866686pt;}
.y3_c00293{bottom:716.200020pt;}
.y2_c00293{bottom:733.466686pt;}
.y1_c00293{bottom:751.066686pt;}
.y14_c00293{bottom:788.200020pt;}
.h3_c00293{height:44.470052pt;}
.h4_c00293{height:44.492188pt;}
.h2_c00293{height:52.343750pt;}
.h1_c00293{height:851.333333pt;}
.h0_c00293{height:851.533333pt;}
.w0_c00293{width:570.533360pt;}
.w1_c00293{width:570.666667pt;}
.x0_c00293{left:0.000000pt;}
.x2_c00293{left:71.333333pt;}
.x1_c00293{left:72.333333pt;}
.x4_c00293{left:78.066667pt;}
.x5_c00293{left:107.533333pt;}
.x3_c00293{left:127.666667pt;}
.x6_c00293{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a598c49160fd3dfa528a2566.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00294;src:url('chunks/assets/font_6b87ac8916a2c5b0456a081f.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00294{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00294{letter-spacing:0.000000px;}
.sc__c00294{text-shadow:none;}
.sc0_c00294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00294{-webkit-text-stroke:0px transparent;}
.sc0_c00294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00294{word-spacing:-15.000000px;}
.ws0_c00294{word-spacing:-12.750000px;}
.ws2_c00294{word-spacing:0.000000px;}
._13_c00294{margin-left:-14.580000px;}
._c_c00294{margin-left:-13.500000px;}
._b_c00294{margin-left:-12.300000px;}
._12_c00294{margin-left:-10.380000px;}
._1e_c00294{margin-left:-9.330024px;}
._1a_c00294{margin-left:-8.043042px;}
._17_c00294{margin-left:-7.020000px;}
._19_c00294{margin-left:-5.282997px;}
._16_c00294{margin-left:-4.200000px;}
._14_c00294{margin-left:-2.940000px;}
._6_c00294{margin-left:-1.740000px;}
._1_c00294{width:1.380000px;}
._3_c00294{width:2.580000px;}
._7_c00294{width:3.840000px;}
._4_c00294{width:5.340000px;}
._1b_c00294{width:6.372000px;}
._a_c00294{width:7.620000px;}
._8_c00294{width:9.000000px;}
._9_c00294{width:10.140000px;}
._5_c00294{width:11.280000px;}
._2_c00294{width:12.300000px;}
._0_c00294{width:13.560000px;}
._f_c00294{width:16.620000px;}
._11_c00294{width:17.880000px;}
._e_c00294{width:18.960000px;}
._10_c00294{width:19.980000px;}
._d_c00294{width:21.000000px;}
._15_c00294{width:22.980000px;}
._1c_c00294{width:25.469979px;}
._18_c00294{width:26.969991px;}
._1d_c00294{width:28.410081px;}
.fc1_c00294{color:transparent;}
.fc0_c00294{color:rgb(35,31,32);}
.fs1_c00294{font-size:51.000000px;}
.fs0_c00294{font-size:60.000000px;}
.y0_c00294{bottom:0.000000px;}
.y2b_c00294{bottom:64.800022px;}
.y2a_c00294{bottom:110.175022px;}
.y29_c00294{bottom:125.325022px;}
.y28_c00294{bottom:140.775022px;}
.y27_c00294{bottom:155.925022px;}
.y26_c00294{bottom:172.275022px;}
.y25_c00294{bottom:186.825022px;}
.y24_c00294{bottom:201.975022px;}
.y23_c00294{bottom:217.125022px;}
.y22_c00294{bottom:232.950022px;}
.y21_c00294{bottom:248.025022px;}
.y20_c00294{bottom:263.175022px;}
.y1f_c00294{bottom:278.325022px;}
.y1e_c00294{bottom:293.775022px;}
.y1d_c00294{bottom:308.925022px;}
.y1c_c00294{bottom:324.375022px;}
.y1b_c00294{bottom:339.825022px;}
.y1a_c00294{bottom:354.975022px;}
.y19_c00294{bottom:370.125022px;}
.y18_c00294{bottom:385.575022px;}
.y17_c00294{bottom:400.725022px;}
.y16_c00294{bottom:416.175022px;}
.y14_c00294{bottom:475.950022px;}
.y13_c00294{bottom:495.000022px;}
.y12_c00294{bottom:514.800022px;}
.y11_c00294{bottom:534.225022px;}
.y10_c00294{bottom:553.350022px;}
.yf_c00294{bottom:572.775022px;}
.ye_c00294{bottom:592.200022px;}
.yd_c00294{bottom:611.625022px;}
.yc_c00294{bottom:631.425022px;}
.yb_c00294{bottom:650.550022px;}
.ya_c00294{bottom:669.975022px;}
.y9_c00294{bottom:689.775022px;}
.y8_c00294{bottom:709.200022px;}
.y7_c00294{bottom:728.325022px;}
.y6_c00294{bottom:747.750022px;}
.y5_c00294{bottom:767.175022px;}
.y4_c00294{bottom:786.600022px;}
.y3_c00294{bottom:805.725022px;}
.y2_c00294{bottom:825.525022px;}
.y1_c00294{bottom:844.575022px;}
.y15_c00294{bottom:886.725022px;}
.h3_c00294{height:50.028809px;}
.h4_c00294{height:50.053711px;}
.h2_c00294{height:58.886719px;}
.h1_c00294{height:957.750000px;}
.h0_c00294{height:957.975000px;}
.w1_c00294{width:643.500000px;}
.w0_c00294{width:643.650000px;}
.x0_c00294{left:0.000000px;}
.x2_c00294{left:90.375000px;}
.x3_c00294{left:91.425000px;}
.x4_c00294{left:97.575000px;}
.x1_c00294{left:107.250000px;}
.x5_c00294{left:130.650000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls0_c00294{letter-spacing:0.000000pt;}
.ws1_c00294{word-spacing:-13.333333pt;}
.ws0_c00294{word-spacing:-11.333333pt;}
.ws2_c00294{word-spacing:0.000000pt;}
._13_c00294{margin-left:-12.960000pt;}
._c_c00294{margin-left:-12.000000pt;}
._b_c00294{margin-left:-10.933333pt;}
._12_c00294{margin-left:-9.226667pt;}
._1e_c00294{margin-left:-8.293355pt;}
._1a_c00294{margin-left:-7.149371pt;}
._17_c00294{margin-left:-6.240000pt;}
._19_c00294{margin-left:-4.695997pt;}
._16_c00294{margin-left:-3.733333pt;}
._14_c00294{margin-left:-2.613333pt;}
._6_c00294{margin-left:-1.546667pt;}
._1_c00294{width:1.226667pt;}
._3_c00294{width:2.293333pt;}
._7_c00294{width:3.413333pt;}
._4_c00294{width:4.746667pt;}
._1b_c00294{width:5.664000pt;}
._a_c00294{width:6.773333pt;}
._8_c00294{width:8.000000pt;}
._9_c00294{width:9.013333pt;}
._5_c00294{width:10.026667pt;}
._2_c00294{width:10.933333pt;}
._0_c00294{width:12.053333pt;}
._f_c00294{width:14.773333pt;}
._11_c00294{width:15.893333pt;}
._e_c00294{width:16.853333pt;}
._10_c00294{width:17.760000pt;}
._d_c00294{width:18.666667pt;}
._15_c00294{width:20.426667pt;}
._1c_c00294{width:22.639981pt;}
._18_c00294{width:23.973325pt;}
._1d_c00294{width:25.253405pt;}
.fs1_c00294{font-size:45.333333pt;}
.fs0_c00294{font-size:53.333333pt;}
.y0_c00294{bottom:0.000000pt;}
.y2b_c00294{bottom:57.600020pt;}
.y2a_c00294{bottom:97.933353pt;}
.y29_c00294{bottom:111.400020pt;}
.y28_c00294{bottom:125.133353pt;}
.y27_c00294{bottom:138.600020pt;}
.y26_c00294{bottom:153.133353pt;}
.y25_c00294{bottom:166.066686pt;}
.y24_c00294{bottom:179.533353pt;}
.y23_c00294{bottom:193.000020pt;}
.y22_c00294{bottom:207.066686pt;}
.y21_c00294{bottom:220.466686pt;}
.y20_c00294{bottom:233.933353pt;}
.y1f_c00294{bottom:247.400020pt;}
.y1e_c00294{bottom:261.133353pt;}
.y1d_c00294{bottom:274.600020pt;}
.y1c_c00294{bottom:288.333353pt;}
.y1b_c00294{bottom:302.066686pt;}
.y1a_c00294{bottom:315.533353pt;}
.y19_c00294{bottom:329.000020pt;}
.y18_c00294{bottom:342.733353pt;}
.y17_c00294{bottom:356.200020pt;}
.y16_c00294{bottom:369.933353pt;}
.y14_c00294{bottom:423.066686pt;}
.y13_c00294{bottom:440.000020pt;}
.y12_c00294{bottom:457.600020pt;}
.y11_c00294{bottom:474.866686pt;}
.y10_c00294{bottom:491.866686pt;}
.yf_c00294{bottom:509.133353pt;}
.ye_c00294{bottom:526.400020pt;}
.yd_c00294{bottom:543.666686pt;}
.yc_c00294{bottom:561.266686pt;}
.yb_c00294{bottom:578.266686pt;}
.ya_c00294{bottom:595.533353pt;}
.y9_c00294{bottom:613.133353pt;}
.y8_c00294{bottom:630.400020pt;}
.y7_c00294{bottom:647.400020pt;}
.y6_c00294{bottom:664.666686pt;}
.y5_c00294{bottom:681.933353pt;}
.y4_c00294{bottom:699.200020pt;}
.y3_c00294{bottom:716.200020pt;}
.y2_c00294{bottom:733.800020pt;}
.y1_c00294{bottom:750.733353pt;}
.y15_c00294{bottom:788.200020pt;}
.h3_c00294{height:44.470052pt;}
.h4_c00294{height:44.492188pt;}
.h2_c00294{height:52.343750pt;}
.h1_c00294{height:851.333333pt;}
.h0_c00294{height:851.533333pt;}
.w1_c00294{width:572.000000pt;}
.w0_c00294{width:572.133333pt;}
.x0_c00294{left:0.000000pt;}
.x2_c00294{left:80.333333pt;}
.x3_c00294{left:81.266667pt;}
.x4_c00294{left:86.733333pt;}
.x1_c00294{left:95.333333pt;}
.x5_c00294{left:116.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4bf157ea70bfc2da408bb80.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00295;src:url('chunks/assets/font_825ebb79b6f779c710a769ff.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00295{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls0_c00295{letter-spacing:0.000000px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00295{word-spacing:-15.000000px;}
.ws0_c00295{word-spacing:-12.750000px;}
.ws2_c00295{word-spacing:0.000000px;}
._f_c00295{margin-left:-30.060000px;}
._10_c00295{margin-left:-14.820000px;}
._11_c00295{margin-left:-12.000000px;}
._d_c00295{margin-left:-10.260000px;}
._17_c00295{margin-left:-8.186940px;}
._18_c00295{margin-left:-6.809949px;}
._19_c00295{margin-left:-5.376093px;}
._15_c00295{margin-left:-4.080000px;}
._12_c00295{margin-left:-3.060000px;}
._2_c00295{margin-left:-1.620000px;}
._0_c00295{width:1.740000px;}
._5_c00295{width:2.940000px;}
._13_c00295{width:4.680000px;}
._14_c00295{width:6.000000px;}
._e_c00295{width:7.380000px;}
._9_c00295{width:8.820000px;}
._3_c00295{width:10.320000px;}
._1_c00295{width:11.640000px;}
._4_c00295{width:13.320000px;}
._1a_c00295{width:14.667273px;}
._8_c00295{width:16.620000px;}
._16_c00295{width:19.140000px;}
._a_c00295{width:20.820000px;}
._7_c00295{width:23.700000px;}
._b_c00295{width:25.320000px;}
._c_c00295{width:27.000000px;}
._6_c00295{width:48.120000px;}
.fc1_c00295{color:transparent;}
.fc0_c00295{color:rgb(35,31,32);}
.fs1_c00295{font-size:51.000000px;}
.fs0_c00295{font-size:60.000000px;}
.y0_c00295{bottom:0.000000px;}
.y2b_c00295{bottom:64.425022px;}
.y2a_c00295{bottom:110.175022px;}
.y29_c00295{bottom:125.325022px;}
.y28_c00295{bottom:140.775022px;}
.y27_c00295{bottom:156.225022px;}
.y26_c00295{bottom:171.375022px;}
.y25_c00295{bottom:186.525022px;}
.y24_c00295{bottom:202.350022px;}
.y23_c00295{bottom:217.125022px;}
.y22_c00295{bottom:232.575022px;}
.y21_c00295{bottom:248.025022px;}
.y20_c00295{bottom:263.175022px;}
.y1f_c00295{bottom:278.325022px;}
.y1e_c00295{bottom:293.775022px;}
.y1d_c00295{bottom:308.925022px;}
.y1c_c00295{bottom:324.375022px;}
.y1b_c00295{bottom:339.825022px;}
.y1a_c00295{bottom:354.975022px;}
.y19_c00295{bottom:370.125022px;}
.y17_c00295{bottom:417.300022px;}
.y16_c00295{bottom:436.725022px;}
.y15_c00295{bottom:456.150022px;}
.y14_c00295{bottom:475.950022px;}
.y13_c00295{bottom:495.375022px;}
.y12_c00295{bottom:514.800022px;}
.y11_c00295{bottom:534.225022px;}
.y10_c00295{bottom:553.725022px;}
.yf_c00295{bottom:573.150022px;}
.ye_c00295{bottom:592.200022px;}
.yd_c00295{bottom:612.000022px;}
.yc_c00295{bottom:631.425022px;}
.yb_c00295{bottom:650.550022px;}
.ya_c00295{bottom:669.975022px;}
.y9_c00295{bottom:689.400022px;}
.y8_c00295{bottom:708.825022px;}
.y7_c00295{bottom:728.325022px;}
.y6_c00295{bottom:747.750022px;}
.y5_c00295{bottom:767.175022px;}
.y4_c00295{bottom:786.225022px;}
.y3_c00295{bottom:806.025022px;}
.y2_c00295{bottom:826.200022px;}
.y1_c00295{bottom:844.575022px;}
.y18_c00295{bottom:886.725022px;}
.h3_c00295{height:50.028809px;}
.h4_c00295{height:50.053711px;}
.h2_c00295{height:58.886719px;}
.h1_c00295{height:957.750000px;}
.h0_c00295{height:957.975000px;}
.w0_c00295{width:641.850030px;}
.w1_c00295{width:642.000000px;}
.x0_c00295{left:0.000000px;}
.x4_c00295{left:80.250000px;}
.x2_c00295{left:81.375000px;}
.x6_c00295{left:87.825000px;}
.x3_c00295{left:96.150000px;}
.x1_c00295{left:97.200000px;}
.x7_c00295{left:121.650000px;}
.x5_c00295{left:143.625000px;}
.x8_c00295{left:531.375000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls0_c00295{letter-spacing:0.000000pt;}
.ws1_c00295{word-spacing:-13.333333pt;}
.ws0_c00295{word-spacing:-11.333333pt;}
.ws2_c00295{word-spacing:0.000000pt;}
._f_c00295{margin-left:-26.720000pt;}
._10_c00295{margin-left:-13.173333pt;}
._11_c00295{margin-left:-10.666667pt;}
._d_c00295{margin-left:-9.120000pt;}
._17_c00295{margin-left:-7.277280pt;}
._18_c00295{margin-left:-6.053288pt;}
._19_c00295{margin-left:-4.778749pt;}
._15_c00295{margin-left:-3.626667pt;}
._12_c00295{margin-left:-2.720000pt;}
._2_c00295{margin-left:-1.440000pt;}
._0_c00295{width:1.546667pt;}
._5_c00295{width:2.613333pt;}
._13_c00295{width:4.160000pt;}
._14_c00295{width:5.333333pt;}
._e_c00295{width:6.560000pt;}
._9_c00295{width:7.840000pt;}
._3_c00295{width:9.173333pt;}
._1_c00295{width:10.346667pt;}
._4_c00295{width:11.840000pt;}
._1a_c00295{width:13.037576pt;}
._8_c00295{width:14.773333pt;}
._16_c00295{width:17.013333pt;}
._a_c00295{width:18.506667pt;}
._7_c00295{width:21.066667pt;}
._b_c00295{width:22.506667pt;}
._c_c00295{width:24.000000pt;}
._6_c00295{width:42.773333pt;}
.fs1_c00295{font-size:45.333333pt;}
.fs0_c00295{font-size:53.333333pt;}
.y0_c00295{bottom:0.000000pt;}
.y2b_c00295{bottom:57.266686pt;}
.y2a_c00295{bottom:97.933353pt;}
.y29_c00295{bottom:111.400020pt;}
.y28_c00295{bottom:125.133353pt;}
.y27_c00295{bottom:138.866686pt;}
.y26_c00295{bottom:152.333353pt;}
.y25_c00295{bottom:165.800020pt;}
.y24_c00295{bottom:179.866686pt;}
.y23_c00295{bottom:193.000020pt;}
.y22_c00295{bottom:206.733353pt;}
.y21_c00295{bottom:220.466686pt;}
.y20_c00295{bottom:233.933353pt;}
.y1f_c00295{bottom:247.400020pt;}
.y1e_c00295{bottom:261.133353pt;}
.y1d_c00295{bottom:274.600020pt;}
.y1c_c00295{bottom:288.333353pt;}
.y1b_c00295{bottom:302.066686pt;}
.y1a_c00295{bottom:315.533353pt;}
.y19_c00295{bottom:329.000020pt;}
.y17_c00295{bottom:370.933353pt;}
.y16_c00295{bottom:388.200020pt;}
.y15_c00295{bottom:405.466686pt;}
.y14_c00295{bottom:423.066686pt;}
.y13_c00295{bottom:440.333353pt;}
.y12_c00295{bottom:457.600020pt;}
.y11_c00295{bottom:474.866686pt;}
.y10_c00295{bottom:492.200020pt;}
.yf_c00295{bottom:509.466686pt;}
.ye_c00295{bottom:526.400020pt;}
.yd_c00295{bottom:544.000020pt;}
.yc_c00295{bottom:561.266686pt;}
.yb_c00295{bottom:578.266686pt;}
.ya_c00295{bottom:595.533353pt;}
.y9_c00295{bottom:612.800020pt;}
.y8_c00295{bottom:630.066686pt;}
.y7_c00295{bottom:647.400020pt;}
.y6_c00295{bottom:664.666686pt;}
.y5_c00295{bottom:681.933353pt;}
.y4_c00295{bottom:698.866686pt;}
.y3_c00295{bottom:716.466686pt;}
.y2_c00295{bottom:734.400020pt;}
.y1_c00295{bottom:750.733353pt;}
.y18_c00295{bottom:788.200020pt;}
.h3_c00295{height:44.470052pt;}
.h4_c00295{height:44.492188pt;}
.h2_c00295{height:52.343750pt;}
.h1_c00295{height:851.333333pt;}
.h0_c00295{height:851.533333pt;}
.w0_c00295{width:570.533360pt;}
.w1_c00295{width:570.666667pt;}
.x0_c00295{left:0.000000pt;}
.x4_c00295{left:71.333333pt;}
.x2_c00295{left:72.333333pt;}
.x6_c00295{left:78.066667pt;}
.x3_c00295{left:85.466667pt;}
.x1_c00295{left:86.400000pt;}
.x7_c00295{left:108.133333pt;}
.x5_c00295{left:127.666667pt;}
.x8_c00295{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2bcd2177067708c5003b6718.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00296;src:url('chunks/assets/font_6a0f058b60d3248189e1fbd0.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00296{letter-spacing:0.000000px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00296{word-spacing:-15.000000px;}
.ws0_c00296{word-spacing:-12.750000px;}
.ws2_c00296{word-spacing:0.000000px;}
._9_c00296{margin-left:-14.280000px;}
._8_c00296{margin-left:-12.720000px;}
._11_c00296{margin-left:-11.700000px;}
._10_c00296{margin-left:-10.560000px;}
._1c_c00296{margin-left:-7.100907px;}
._13_c00296{margin-left:-5.940000px;}
._12_c00296{margin-left:-4.800000px;}
._a_c00296{margin-left:-2.880000px;}
._6_c00296{margin-left:-1.260000px;}
._0_c00296{width:1.380000px;}
._2_c00296{width:2.700000px;}
._14_c00296{width:4.140000px;}
._15_c00296{width:5.280000px;}
._3_c00296{width:6.420000px;}
._4_c00296{width:8.280000px;}
._5_c00296{width:10.200000px;}
._16_c00296{width:11.220000px;}
._1_c00296{width:12.240000px;}
._b_c00296{width:13.380000px;}
._1b_c00296{width:14.946027px;}
._7_c00296{width:16.620000px;}
._f_c00296{width:17.760000px;}
._d_c00296{width:19.140000px;}
._e_c00296{width:20.160000px;}
._c_c00296{width:22.200000px;}
._1a_c00296{width:24.510000px;}
._19_c00296{width:26.070030px;}
._17_c00296{width:27.330081px;}
._18_c00296{width:28.710000px;}
.fc1_c00296{color:transparent;}
.fc0_c00296{color:rgb(35,31,32);}
.fs1_c00296{font-size:51.000000px;}
.fs0_c00296{font-size:60.000000px;}
.y0_c00296{bottom:0.000000px;}
.y2a_c00296{bottom:64.425022px;}
.y29_c00296{bottom:110.175022px;}
.y28_c00296{bottom:125.325022px;}
.y27_c00296{bottom:140.775022px;}
.y26_c00296{bottom:155.925022px;}
.y25_c00296{bottom:171.375022px;}
.y24_c00296{bottom:186.525022px;}
.y23_c00296{bottom:201.975022px;}
.y22_c00296{bottom:217.425022px;}
.y21_c00296{bottom:232.575022px;}
.y20_c00296{bottom:247.725022px;}
.y1f_c00296{bottom:263.550022px;}
.y1e_c00296{bottom:278.625022px;}
.y1d_c00296{bottom:293.775022px;}
.y1c_c00296{bottom:308.925022px;}
.y1b_c00296{bottom:324.375022px;}
.y1a_c00296{bottom:339.525022px;}
.y19_c00296{bottom:355.350022px;}
.y18_c00296{bottom:370.425022px;}
.y17_c00296{bottom:385.950022px;}
.y15_c00296{bottom:456.525022px;}
.y14_c00296{bottom:475.950022px;}
.y13_c00296{bottom:495.375022px;}
.y12_c00296{bottom:514.425022px;}
.y11_c00296{bottom:533.925022px;}
.y10_c00296{bottom:553.350022px;}
.yf_c00296{bottom:573.150022px;}
.ye_c00296{bottom:592.575022px;}
.yd_c00296{bottom:611.625022px;}
.yc_c00296{bottom:631.125022px;}
.yb_c00296{bottom:650.550022px;}
.ya_c00296{bottom:670.350022px;}
.y9_c00296{bottom:689.775022px;}
.y8_c00296{bottom:708.825022px;}
.y7_c00296{bottom:728.625022px;}
.y6_c00296{bottom:748.125022px;}
.y5_c00296{bottom:767.175022px;}
.y4_c00296{bottom:786.600022px;}
.y3_c00296{bottom:806.025022px;}
.y2_c00296{bottom:825.150022px;}
.y1_c00296{bottom:844.950022px;}
.y16_c00296{bottom:886.725022px;}
.h3_c00296{height:50.028809px;}
.h4_c00296{height:50.053711px;}
.h2_c00296{height:58.886719px;}
.h1_c00296{height:957.750000px;}
.h0_c00296{height:957.975000px;}
.w1_c00296{width:643.500000px;}
.w0_c00296{width:643.650000px;}
.x0_c00296{left:0.000000px;}
.x1_c00296{left:91.425000px;}
.x4_c00296{left:97.575000px;}
.x2_c00296{left:106.200000px;}
.x5_c00296{left:130.350000px;}
.x3_c00296{left:131.400000px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls0_c00296{letter-spacing:0.000000pt;}
.ws1_c00296{word-spacing:-13.333333pt;}
.ws0_c00296{word-spacing:-11.333333pt;}
.ws2_c00296{word-spacing:0.000000pt;}
._9_c00296{margin-left:-12.693333pt;}
._8_c00296{margin-left:-11.306667pt;}
._11_c00296{margin-left:-10.400000pt;}
._10_c00296{margin-left:-9.386667pt;}
._1c_c00296{margin-left:-6.311917pt;}
._13_c00296{margin-left:-5.280000pt;}
._12_c00296{margin-left:-4.266667pt;}
._a_c00296{margin-left:-2.560000pt;}
._6_c00296{margin-left:-1.120000pt;}
._0_c00296{width:1.226667pt;}
._2_c00296{width:2.400000pt;}
._14_c00296{width:3.680000pt;}
._15_c00296{width:4.693333pt;}
._3_c00296{width:5.706667pt;}
._4_c00296{width:7.360000pt;}
._5_c00296{width:9.066667pt;}
._16_c00296{width:9.973333pt;}
._1_c00296{width:10.880000pt;}
._b_c00296{width:11.893333pt;}
._1b_c00296{width:13.285357pt;}
._7_c00296{width:14.773333pt;}
._f_c00296{width:15.786667pt;}
._d_c00296{width:17.013333pt;}
._e_c00296{width:17.920000pt;}
._c_c00296{width:19.733333pt;}
._1a_c00296{width:21.786667pt;}
._19_c00296{width:23.173360pt;}
._17_c00296{width:24.293405pt;}
._18_c00296{width:25.520000pt;}
.fs1_c00296{font-size:45.333333pt;}
.fs0_c00296{font-size:53.333333pt;}
.y0_c00296{bottom:0.000000pt;}
.y2a_c00296{bottom:57.266686pt;}
.y29_c00296{bottom:97.933353pt;}
.y28_c00296{bottom:111.400020pt;}
.y27_c00296{bottom:125.133353pt;}
.y26_c00296{bottom:138.600020pt;}
.y25_c00296{bottom:152.333353pt;}
.y24_c00296{bottom:165.800020pt;}
.y23_c00296{bottom:179.533353pt;}
.y22_c00296{bottom:193.266686pt;}
.y21_c00296{bottom:206.733353pt;}
.y20_c00296{bottom:220.200020pt;}
.y1f_c00296{bottom:234.266686pt;}
.y1e_c00296{bottom:247.666686pt;}
.y1d_c00296{bottom:261.133353pt;}
.y1c_c00296{bottom:274.600020pt;}
.y1b_c00296{bottom:288.333353pt;}
.y1a_c00296{bottom:301.800020pt;}
.y19_c00296{bottom:315.866686pt;}
.y18_c00296{bottom:329.266686pt;}
.y17_c00296{bottom:343.066686pt;}
.y15_c00296{bottom:405.800020pt;}
.y14_c00296{bottom:423.066686pt;}
.y13_c00296{bottom:440.333353pt;}
.y12_c00296{bottom:457.266686pt;}
.y11_c00296{bottom:474.600020pt;}
.y10_c00296{bottom:491.866686pt;}
.yf_c00296{bottom:509.466686pt;}
.ye_c00296{bottom:526.733353pt;}
.yd_c00296{bottom:543.666686pt;}
.yc_c00296{bottom:561.000020pt;}
.yb_c00296{bottom:578.266686pt;}
.ya_c00296{bottom:595.866686pt;}
.y9_c00296{bottom:613.133353pt;}
.y8_c00296{bottom:630.066686pt;}
.y7_c00296{bottom:647.666686pt;}
.y6_c00296{bottom:665.000020pt;}
.y5_c00296{bottom:681.933353pt;}
.y4_c00296{bottom:699.200020pt;}
.y3_c00296{bottom:716.466686pt;}
.y2_c00296{bottom:733.466686pt;}
.y1_c00296{bottom:751.066686pt;}
.y16_c00296{bottom:788.200020pt;}
.h3_c00296{height:44.470052pt;}
.h4_c00296{height:44.492188pt;}
.h2_c00296{height:52.343750pt;}
.h1_c00296{height:851.333333pt;}
.h0_c00296{height:851.533333pt;}
.w1_c00296{width:572.000000pt;}
.w0_c00296{width:572.133333pt;}
.x0_c00296{left:0.000000pt;}
.x1_c00296{left:81.266667pt;}
.x4_c00296{left:86.733333pt;}
.x2_c00296{left:94.400000pt;}
.x5_c00296{left:115.866667pt;}
.x3_c00296{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_81e12ae5eb1828325166a9c6.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00297;src:url('chunks/assets/font_f6e91812def622831b7aa033.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00297{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00297{letter-spacing:0.000000px;}
.sc__c00297{text-shadow:none;}
.sc0_c00297{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00297{-webkit-text-stroke:0px transparent;}
.sc0_c00297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00297{word-spacing:-15.000000px;}
.ws0_c00297{word-spacing:-12.750000px;}
.ws2_c00297{word-spacing:0.000000px;}
._5_c00297{margin-left:-12.480000px;}
._6_c00297{margin-left:-11.040000px;}
._f_c00297{margin-left:-7.766940px;}
._16_c00297{margin-left:-6.216000px;}
._14_c00297{margin-left:-3.911889px;}
._e_c00297{margin-left:-2.640000px;}
._0_c00297{margin-left:-1.140000px;}
._2_c00297{width:1.380000px;}
._4_c00297{width:2.460000px;}
._a_c00297{width:3.480000px;}
._7_c00297{width:4.620000px;}
._8_c00297{width:6.540000px;}
._9_c00297{width:8.160000px;}
._c_c00297{width:9.300000px;}
._b_c00297{width:11.280000px;}
._d_c00297{width:12.480000px;}
._12_c00297{width:13.800000px;}
._13_c00297{width:16.140000px;}
._1_c00297{width:17.340000px;}
._10_c00297{width:18.360000px;}
._3_c00297{width:20.160000px;}
._11_c00297{width:21.900000px;}
._15_c00297{width:25.410000px;}
._17_c00297{width:26.610030px;}
.fc1_c00297{color:transparent;}
.fc0_c00297{color:rgb(35,31,32);}
.fs1_c00297{font-size:51.000000px;}
.fs0_c00297{font-size:60.000000px;}
.y0_c00297{bottom:0.000000px;}
.y26_c00297{bottom:64.425022px;}
.y25_c00297{bottom:110.175022px;}
.y24_c00297{bottom:125.625022px;}
.y23_c00297{bottom:140.775022px;}
.y22_c00297{bottom:155.925022px;}
.y21_c00297{bottom:171.375022px;}
.y20_c00297{bottom:186.525022px;}
.y1f_c00297{bottom:226.800022px;}
.y1e_c00297{bottom:245.925022px;}
.y1d_c00297{bottom:265.725022px;}
.y1c_c00297{bottom:285.150022px;}
.y1b_c00297{bottom:304.575022px;}
.y1a_c00297{bottom:323.625022px;}
.y19_c00297{bottom:342.750022px;}
.y18_c00297{bottom:362.550022px;}
.y17_c00297{bottom:381.525022px;}
.y16_c00297{bottom:401.025022px;}
.y15_c00297{bottom:420.525022px;}
.y14_c00297{bottom:440.325022px;}
.y13_c00297{bottom:459.750022px;}
.y12_c00297{bottom:479.175022px;}
.y11_c00297{bottom:498.600022px;}
.y10_c00297{bottom:517.725022px;}
.yf_c00297{bottom:537.150022px;}
.ye_c00297{bottom:556.575022px;}
.yd_c00297{bottom:576.000022px;}
.yc_c00297{bottom:613.800022px;}
.yb_c00297{bottom:633.225022px;}
.y9_c00297{bottom:689.400022px;}
.y8_c00297{bottom:709.200022px;}
.y7_c00297{bottom:728.625022px;}
.y6_c00297{bottom:748.125022px;}
.y5_c00297{bottom:767.175022px;}
.y4_c00297{bottom:786.975022px;}
.y3_c00297{bottom:806.400022px;}
.y2_c00297{bottom:825.825022px;}
.y1_c00297{bottom:844.950022px;}
.ya_c00297{bottom:886.725022px;}
.h3_c00297{height:50.028809px;}
.h4_c00297{height:50.053711px;}
.h2_c00297{height:58.886719px;}
.h1_c00297{height:957.750000px;}
.h0_c00297{height:957.975000px;}
.w0_c00297{width:641.850030px;}
.w1_c00297{width:642.000000px;}
.x0_c00297{left:0.000000px;}
.x2_c00297{left:80.250000px;}
.x1_c00297{left:81.375000px;}
.x3_c00297{left:85.350000px;}
.x6_c00297{left:87.825000px;}
.x5_c00297{left:99.750000px;}
.x7_c00297{left:121.350000px;}
.x4_c00297{left:143.625000px;}
.x8_c00297{left:531.375000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls0_c00297{letter-spacing:0.000000pt;}
.ws1_c00297{word-spacing:-13.333333pt;}
.ws0_c00297{word-spacing:-11.333333pt;}
.ws2_c00297{word-spacing:0.000000pt;}
._5_c00297{margin-left:-11.093333pt;}
._6_c00297{margin-left:-9.813333pt;}
._f_c00297{margin-left:-6.903947pt;}
._16_c00297{margin-left:-5.525333pt;}
._14_c00297{margin-left:-3.477235pt;}
._e_c00297{margin-left:-2.346667pt;}
._0_c00297{margin-left:-1.013333pt;}
._2_c00297{width:1.226667pt;}
._4_c00297{width:2.186667pt;}
._a_c00297{width:3.093333pt;}
._7_c00297{width:4.106667pt;}
._8_c00297{width:5.813333pt;}
._9_c00297{width:7.253333pt;}
._c_c00297{width:8.266667pt;}
._b_c00297{width:10.026667pt;}
._d_c00297{width:11.093333pt;}
._12_c00297{width:12.266667pt;}
._13_c00297{width:14.346667pt;}
._1_c00297{width:15.413333pt;}
._10_c00297{width:16.320000pt;}
._3_c00297{width:17.920000pt;}
._11_c00297{width:19.466667pt;}
._15_c00297{width:22.586667pt;}
._17_c00297{width:23.653360pt;}
.fs1_c00297{font-size:45.333333pt;}
.fs0_c00297{font-size:53.333333pt;}
.y0_c00297{bottom:0.000000pt;}
.y26_c00297{bottom:57.266686pt;}
.y25_c00297{bottom:97.933353pt;}
.y24_c00297{bottom:111.666686pt;}
.y23_c00297{bottom:125.133353pt;}
.y22_c00297{bottom:138.600020pt;}
.y21_c00297{bottom:152.333353pt;}
.y20_c00297{bottom:165.800020pt;}
.y1f_c00297{bottom:201.600020pt;}
.y1e_c00297{bottom:218.600020pt;}
.y1d_c00297{bottom:236.200020pt;}
.y1c_c00297{bottom:253.466686pt;}
.y1b_c00297{bottom:270.733353pt;}
.y1a_c00297{bottom:287.666686pt;}
.y19_c00297{bottom:304.666686pt;}
.y18_c00297{bottom:322.266686pt;}
.y17_c00297{bottom:339.133353pt;}
.y16_c00297{bottom:356.466686pt;}
.y15_c00297{bottom:373.800020pt;}
.y14_c00297{bottom:391.400020pt;}
.y13_c00297{bottom:408.666686pt;}
.y12_c00297{bottom:425.933353pt;}
.y11_c00297{bottom:443.200020pt;}
.y10_c00297{bottom:460.200020pt;}
.yf_c00297{bottom:477.466686pt;}
.ye_c00297{bottom:494.733353pt;}
.yd_c00297{bottom:512.000020pt;}
.yc_c00297{bottom:545.600020pt;}
.yb_c00297{bottom:562.866686pt;}
.y9_c00297{bottom:612.800020pt;}
.y8_c00297{bottom:630.400020pt;}
.y7_c00297{bottom:647.666686pt;}
.y6_c00297{bottom:665.000020pt;}
.y5_c00297{bottom:681.933353pt;}
.y4_c00297{bottom:699.533353pt;}
.y3_c00297{bottom:716.800020pt;}
.y2_c00297{bottom:734.066686pt;}
.y1_c00297{bottom:751.066686pt;}
.ya_c00297{bottom:788.200020pt;}
.h3_c00297{height:44.470052pt;}
.h4_c00297{height:44.492188pt;}
.h2_c00297{height:52.343750pt;}
.h1_c00297{height:851.333333pt;}
.h0_c00297{height:851.533333pt;}
.w0_c00297{width:570.533360pt;}
.w1_c00297{width:570.666667pt;}
.x0_c00297{left:0.000000pt;}
.x2_c00297{left:71.333333pt;}
.x1_c00297{left:72.333333pt;}
.x3_c00297{left:75.866667pt;}
.x6_c00297{left:78.066667pt;}
.x5_c00297{left:88.666667pt;}
.x7_c00297{left:107.866667pt;}
.x4_c00297{left:127.666667pt;}
.x8_c00297{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_239e8a9ebafab92bd2e1be07.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00298;src:url('chunks/assets/font_3036022c73084ab59efd3c51.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00298{letter-spacing:0.000000px;}
.sc__c00298{text-shadow:none;}
.sc0_c00298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00298{-webkit-text-stroke:0px transparent;}
.sc0_c00298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00298{word-spacing:-15.000000px;}
.ws1_c00298{word-spacing:-12.750000px;}
.ws2_c00298{word-spacing:0.000000px;}
._f_c00298{margin-left:-12.900000px;}
._e_c00298{margin-left:-11.640000px;}
._13_c00298{margin-left:-10.380000px;}
._15_c00298{margin-left:-8.100000px;}
._16_c00298{margin-left:-5.040000px;}
._a_c00298{margin-left:-3.180000px;}
._7_c00298{margin-left:-1.800000px;}
._0_c00298{width:1.020000px;}
._1_c00298{width:2.100000px;}
._4_c00298{width:3.600000px;}
._8_c00298{width:4.920000px;}
._6_c00298{width:6.180000px;}
._18_c00298{width:7.469991px;}
._3_c00298{width:8.640000px;}
._2_c00298{width:10.140000px;}
._5_c00298{width:11.700000px;}
._9_c00298{width:13.140000px;}
._12_c00298{width:16.320000px;}
._10_c00298{width:17.880000px;}
._11_c00298{width:19.620000px;}
._b_c00298{width:21.180000px;}
._c_c00298{width:22.440000px;}
._d_c00298{width:24.900000px;}
._14_c00298{width:26.700000px;}
._17_c00298{width:29.130093px;}
.fc1_c00298{color:transparent;}
.fc0_c00298{color:rgb(35,31,32);}
.fs1_c00298{font-size:51.000000px;}
.fs0_c00298{font-size:60.000000px;}
.y0_c00298{bottom:0.000000px;}
.y23_c00298{bottom:64.425022px;}
.y22_c00298{bottom:110.550022px;}
.y21_c00298{bottom:125.625022px;}
.y20_c00298{bottom:141.150022px;}
.y1f_c00298{bottom:156.225022px;}
.y1e_c00298{bottom:171.375022px;}
.y1d_c00298{bottom:186.525022px;}
.y1c_c00298{bottom:226.800022px;}
.y1b_c00298{bottom:245.925022px;}
.y1a_c00298{bottom:265.725022px;}
.y19_c00298{bottom:285.150022px;}
.y18_c00298{bottom:304.575022px;}
.y17_c00298{bottom:345.225022px;}
.y16_c00298{bottom:364.725022px;}
.y15_c00298{bottom:423.375022px;}
.y14_c00298{bottom:443.175022px;}
.y13_c00298{bottom:462.225022px;}
.y12_c00298{bottom:482.100022px;}
.y11_c00298{bottom:501.525022px;}
.y10_c00298{bottom:520.950022px;}
.yf_c00298{bottom:540.225022px;}
.ye_c00298{bottom:559.725022px;}
.yd_c00298{bottom:579.225022px;}
.yc_c00298{bottom:598.725022px;}
.yb_c00298{bottom:618.150022px;}
.ya_c00298{bottom:637.200022px;}
.y9_c00298{bottom:657.000022px;}
.y8_c00298{bottom:676.425022px;}
.y7_c00298{bottom:713.175022px;}
.y5_c00298{bottom:767.550022px;}
.y4_c00298{bottom:786.600022px;}
.y3_c00298{bottom:806.025022px;}
.y2_c00298{bottom:825.150022px;}
.y1_c00298{bottom:844.950022px;}
.y6_c00298{bottom:886.725022px;}
.h3_c00298{height:50.028809px;}
.h4_c00298{height:50.053711px;}
.h2_c00298{height:58.886719px;}
.h1_c00298{height:957.750000px;}
.h0_c00298{height:957.975000px;}
.w1_c00298{width:643.500000px;}
.w0_c00298{width:643.650000px;}
.x0_c00298{left:0.000000px;}
.x1_c00298{left:90.750000px;}
.x2_c00298{left:91.800000px;}
.x4_c00298{left:97.575000px;}
.x3_c00298{left:108.750000px;}
.x5_c00298{left:131.400000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls0_c00298{letter-spacing:0.000000pt;}
.ws0_c00298{word-spacing:-13.333333pt;}
.ws1_c00298{word-spacing:-11.333333pt;}
.ws2_c00298{word-spacing:0.000000pt;}
._f_c00298{margin-left:-11.466667pt;}
._e_c00298{margin-left:-10.346667pt;}
._13_c00298{margin-left:-9.226667pt;}
._15_c00298{margin-left:-7.200000pt;}
._16_c00298{margin-left:-4.480000pt;}
._a_c00298{margin-left:-2.826667pt;}
._7_c00298{margin-left:-1.600000pt;}
._0_c00298{width:0.906667pt;}
._1_c00298{width:1.866667pt;}
._4_c00298{width:3.200000pt;}
._8_c00298{width:4.373333pt;}
._6_c00298{width:5.493333pt;}
._18_c00298{width:6.639992pt;}
._3_c00298{width:7.680000pt;}
._2_c00298{width:9.013333pt;}
._5_c00298{width:10.400000pt;}
._9_c00298{width:11.680000pt;}
._12_c00298{width:14.506667pt;}
._10_c00298{width:15.893333pt;}
._11_c00298{width:17.440000pt;}
._b_c00298{width:18.826667pt;}
._c_c00298{width:19.946667pt;}
._d_c00298{width:22.133333pt;}
._14_c00298{width:23.733333pt;}
._17_c00298{width:25.893416pt;}
.fs1_c00298{font-size:45.333333pt;}
.fs0_c00298{font-size:53.333333pt;}
.y0_c00298{bottom:0.000000pt;}
.y23_c00298{bottom:57.266686pt;}
.y22_c00298{bottom:98.266686pt;}
.y21_c00298{bottom:111.666686pt;}
.y20_c00298{bottom:125.466686pt;}
.y1f_c00298{bottom:138.866686pt;}
.y1e_c00298{bottom:152.333353pt;}
.y1d_c00298{bottom:165.800020pt;}
.y1c_c00298{bottom:201.600020pt;}
.y1b_c00298{bottom:218.600020pt;}
.y1a_c00298{bottom:236.200020pt;}
.y19_c00298{bottom:253.466686pt;}
.y18_c00298{bottom:270.733353pt;}
.y17_c00298{bottom:306.866686pt;}
.y16_c00298{bottom:324.200020pt;}
.y15_c00298{bottom:376.333353pt;}
.y14_c00298{bottom:393.933353pt;}
.y13_c00298{bottom:410.866686pt;}
.y12_c00298{bottom:428.533353pt;}
.y11_c00298{bottom:445.800020pt;}
.y10_c00298{bottom:463.066686pt;}
.yf_c00298{bottom:480.200020pt;}
.ye_c00298{bottom:497.533353pt;}
.yd_c00298{bottom:514.866686pt;}
.yc_c00298{bottom:532.200020pt;}
.yb_c00298{bottom:549.466686pt;}
.ya_c00298{bottom:566.400020pt;}
.y9_c00298{bottom:584.000020pt;}
.y8_c00298{bottom:601.266686pt;}
.y7_c00298{bottom:633.933353pt;}
.y5_c00298{bottom:682.266686pt;}
.y4_c00298{bottom:699.200020pt;}
.y3_c00298{bottom:716.466686pt;}
.y2_c00298{bottom:733.466686pt;}
.y1_c00298{bottom:751.066686pt;}
.y6_c00298{bottom:788.200020pt;}
.h3_c00298{height:44.470052pt;}
.h4_c00298{height:44.492188pt;}
.h2_c00298{height:52.343750pt;}
.h1_c00298{height:851.333333pt;}
.h0_c00298{height:851.533333pt;}
.w1_c00298{width:572.000000pt;}
.w0_c00298{width:572.133333pt;}
.x0_c00298{left:0.000000pt;}
.x1_c00298{left:80.666667pt;}
.x2_c00298{left:81.600000pt;}
.x4_c00298{left:86.733333pt;}
.x3_c00298{left:96.666667pt;}
.x5_c00298{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_684fd60439fe12edd6bfc3db.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00299;src:url('chunks/assets/font_259299a3a639bcc95945a80e.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-15.000000px;}
.ws1_c00299{word-spacing:-12.750000px;}
.ws2_c00299{word-spacing:0.000000px;}
._14_c00299{margin-left:-14.858970px;}
._b_c00299{margin-left:-12.590880px;}
._a_c00299{margin-left:-10.809120px;}
._13_c00299{margin-left:-9.701610px;}
._2_c00299{margin-left:-7.307892px;}
._10_c00299{margin-left:-5.426748px;}
._15_c00299{margin-left:-3.939093px;}
._6_c00299{margin-left:-2.550000px;}
._7_c00299{margin-left:-1.355988px;}
._0_c00299{width:1.133985px;}
._1_c00299{width:2.151027px;}
._3_c00299{width:3.821991px;}
._5_c00299{width:5.661000px;}
._4_c00299{width:7.199976px;}
._f_c00299{width:8.721003px;}
._9_c00299{width:9.780000px;}
._8_c00299{width:11.751057px;}
._11_c00299{width:13.251018px;}
._17_c00299{width:15.059994px;}
._d_c00299{width:16.662006px;}
._c_c00299{width:18.140841px;}
._e_c00299{width:19.992177px;}
._12_c00299{width:22.847964px;}
._16_c00299{width:26.856090px;}
.fc1_c00299{color:transparent;}
.fc0_c00299{color:rgb(35,31,32);}
.fs0_c00299{font-size:51.000000px;}
.fs1_c00299{font-size:60.000000px;}
.y0_c00299{bottom:0.000000px;}
.y2c_c00299{bottom:64.425022px;}
.y2b_c00299{bottom:110.175022px;}
.y2a_c00299{bottom:125.625022px;}
.y29_c00299{bottom:140.775022px;}
.y28_c00299{bottom:155.925022px;}
.y27_c00299{bottom:171.750022px;}
.y26_c00299{bottom:186.825022px;}
.y25_c00299{bottom:201.975022px;}
.y24_c00299{bottom:217.125022px;}
.y23_c00299{bottom:232.950022px;}
.y22_c00299{bottom:247.725022px;}
.y21_c00299{bottom:263.550022px;}
.y20_c00299{bottom:278.325022px;}
.y1f_c00299{bottom:293.775022px;}
.y1e_c00299{bottom:309.225022px;}
.y1d_c00299{bottom:324.750022px;}
.y1c_c00299{bottom:339.825022px;}
.y1b_c00299{bottom:355.350022px;}
.y1a_c00299{bottom:370.125022px;}
.y19_c00299{bottom:385.575022px;}
.y18_c00299{bottom:401.025022px;}
.y17_c00299{bottom:416.175022px;}
.y16_c00299{bottom:456.525022px;}
.y15_c00299{bottom:475.575022px;}
.y14_c00299{bottom:495.375022px;}
.y13_c00299{bottom:514.425022px;}
.y12_c00299{bottom:533.925022px;}
.y11_c00299{bottom:553.725022px;}
.y10_c00299{bottom:572.775022px;}
.yf_c00299{bottom:592.200022px;}
.ye_c00299{bottom:611.925022px;}
.yd_c00299{bottom:631.425022px;}
.yc_c00299{bottom:650.925022px;}
.yb_c00299{bottom:670.350022px;}
.ya_c00299{bottom:689.775022px;}
.y9_c00299{bottom:708.825022px;}
.y8_c00299{bottom:728.625022px;}
.y7_c00299{bottom:747.750022px;}
.y6_c00299{bottom:767.175022px;}
.y5_c00299{bottom:786.600022px;}
.y4_c00299{bottom:806.025022px;}
.y3_c00299{bottom:825.525022px;}
.y2_c00299{bottom:844.950022px;}
.y1_c00299{bottom:886.725022px;}
.h2_c00299{height:50.028809px;}
.h4_c00299{height:50.053711px;}
.h3_c00299{height:58.886719px;}
.h1_c00299{height:957.750000px;}
.h0_c00299{height:957.975000px;}
.w0_c00299{width:641.850030px;}
.w1_c00299{width:642.000000px;}
.x0_c00299{left:0.000000px;}
.x2_c00299{left:81.375000px;}
.x4_c00299{left:87.825000px;}
.x3_c00299{left:97.200000px;}
.x5_c00299{left:121.350000px;}
.x1_c00299{left:143.625000px;}
.x6_c00299{left:531.375000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls0_c00299{letter-spacing:0.000000pt;}
.ws0_c00299{word-spacing:-13.333333pt;}
.ws1_c00299{word-spacing:-11.333333pt;}
.ws2_c00299{word-spacing:0.000000pt;}
._14_c00299{margin-left:-13.207973pt;}
._b_c00299{margin-left:-11.191893pt;}
._a_c00299{margin-left:-9.608107pt;}
._13_c00299{margin-left:-8.623653pt;}
._2_c00299{margin-left:-6.495904pt;}
._10_c00299{margin-left:-4.823776pt;}
._15_c00299{margin-left:-3.501416pt;}
._6_c00299{margin-left:-2.266667pt;}
._7_c00299{margin-left:-1.205323pt;}
._0_c00299{width:1.007987pt;}
._1_c00299{width:1.912024pt;}
._3_c00299{width:3.397325pt;}
._5_c00299{width:5.032000pt;}
._4_c00299{width:6.399979pt;}
._f_c00299{width:7.752003pt;}
._9_c00299{width:8.693333pt;}
._8_c00299{width:10.445384pt;}
._11_c00299{width:11.778683pt;}
._17_c00299{width:13.386661pt;}
._d_c00299{width:14.810672pt;}
._c_c00299{width:16.125192pt;}
._e_c00299{width:17.770824pt;}
._12_c00299{width:20.309301pt;}
._16_c00299{width:23.872080pt;}
.fs0_c00299{font-size:45.333333pt;}
.fs1_c00299{font-size:53.333333pt;}
.y0_c00299{bottom:0.000000pt;}
.y2c_c00299{bottom:57.266686pt;}
.y2b_c00299{bottom:97.933353pt;}
.y2a_c00299{bottom:111.666686pt;}
.y29_c00299{bottom:125.133353pt;}
.y28_c00299{bottom:138.600020pt;}
.y27_c00299{bottom:152.666686pt;}
.y26_c00299{bottom:166.066686pt;}
.y25_c00299{bottom:179.533353pt;}
.y24_c00299{bottom:193.000020pt;}
.y23_c00299{bottom:207.066686pt;}
.y22_c00299{bottom:220.200020pt;}
.y21_c00299{bottom:234.266686pt;}
.y20_c00299{bottom:247.400020pt;}
.y1f_c00299{bottom:261.133353pt;}
.y1e_c00299{bottom:274.866686pt;}
.y1d_c00299{bottom:288.666686pt;}
.y1c_c00299{bottom:302.066686pt;}
.y1b_c00299{bottom:315.866686pt;}
.y1a_c00299{bottom:329.000020pt;}
.y19_c00299{bottom:342.733353pt;}
.y18_c00299{bottom:356.466686pt;}
.y17_c00299{bottom:369.933353pt;}
.y16_c00299{bottom:405.800020pt;}
.y15_c00299{bottom:422.733353pt;}
.y14_c00299{bottom:440.333353pt;}
.y13_c00299{bottom:457.266686pt;}
.y12_c00299{bottom:474.600020pt;}
.y11_c00299{bottom:492.200020pt;}
.y10_c00299{bottom:509.133353pt;}
.yf_c00299{bottom:526.400020pt;}
.ye_c00299{bottom:543.933353pt;}
.yd_c00299{bottom:561.266686pt;}
.yc_c00299{bottom:578.600020pt;}
.yb_c00299{bottom:595.866686pt;}
.ya_c00299{bottom:613.133353pt;}
.y9_c00299{bottom:630.066686pt;}
.y8_c00299{bottom:647.666686pt;}
.y7_c00299{bottom:664.666686pt;}
.y6_c00299{bottom:681.933353pt;}
.y5_c00299{bottom:699.200020pt;}
.y4_c00299{bottom:716.466686pt;}
.y3_c00299{bottom:733.800020pt;}
.y2_c00299{bottom:751.066686pt;}
.y1_c00299{bottom:788.200020pt;}
.h2_c00299{height:44.470052pt;}
.h4_c00299{height:44.492188pt;}
.h3_c00299{height:52.343750pt;}
.h1_c00299{height:851.333333pt;}
.h0_c00299{height:851.533333pt;}
.w0_c00299{width:570.533360pt;}
.w1_c00299{width:570.666667pt;}
.x0_c00299{left:0.000000pt;}
.x2_c00299{left:72.333333pt;}
.x4_c00299{left:78.066667pt;}
.x3_c00299{left:86.400000pt;}
.x5_c00299{left:107.866667pt;}
.x1_c00299{left:127.666667pt;}
.x6_c00299{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9124ab3c2749574bcac82c2c.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00300;src:url('chunks/assets/font_59bef0f6c12d653e44fa3684.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00300{letter-spacing:0.000000px;}
.sc__c00300{text-shadow:none;}
.sc0_c00300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00300{-webkit-text-stroke:0px transparent;}
.sc0_c00300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00300{word-spacing:-15.000000px;}
.ws0_c00300{word-spacing:-12.750000px;}
.ws2_c00300{word-spacing:0.000000px;}
._b_c00300{margin-left:-11.640000px;}
._5_c00300{margin-left:-10.620000px;}
._f_c00300{margin-left:-9.240000px;}
._12_c00300{margin-left:-7.500000px;}
._10_c00300{margin-left:-5.760000px;}
._19_c00300{margin-left:-4.568568px;}
._a_c00300{margin-left:-3.240000px;}
._18_c00300{margin-left:-2.202060px;}
._7_c00300{margin-left:-1.020000px;}
._0_c00300{width:1.680000px;}
._2_c00300{width:3.420000px;}
._c_c00300{width:4.500000px;}
._1_c00300{width:6.600000px;}
._11_c00300{width:7.740000px;}
._3_c00300{width:8.880000px;}
._4_c00300{width:10.440000px;}
._16_c00300{width:11.520000px;}
._14_c00300{width:12.540000px;}
._13_c00300{width:13.620000px;}
._15_c00300{width:16.200000px;}
._e_c00300{width:17.220000px;}
._d_c00300{width:19.140000px;}
._6_c00300{width:20.460000px;}
._9_c00300{width:21.540000px;}
._8_c00300{width:22.740000px;}
._17_c00300{width:24.630000px;}
._1a_c00300{width:27.012060px;}
.fc1_c00300{color:transparent;}
.fc0_c00300{color:rgb(35,31,32);}
.fs1_c00300{font-size:51.000000px;}
.fs0_c00300{font-size:60.000000px;}
.y0_c00300{bottom:0.000000px;}
.y29_c00300{bottom:64.425022px;}
.y28_c00300{bottom:110.175022px;}
.y27_c00300{bottom:125.325022px;}
.y26_c00300{bottom:141.150022px;}
.y25_c00300{bottom:155.925022px;}
.y24_c00300{bottom:171.375022px;}
.y23_c00300{bottom:186.525022px;}
.y22_c00300{bottom:201.975022px;}
.y21_c00300{bottom:217.425022px;}
.y20_c00300{bottom:232.575022px;}
.y1f_c00300{bottom:247.725022px;}
.y1e_c00300{bottom:263.550022px;}
.y1d_c00300{bottom:278.625022px;}
.y1c_c00300{bottom:294.150022px;}
.y1b_c00300{bottom:308.925022px;}
.y1a_c00300{bottom:324.375022px;}
.y19_c00300{bottom:339.825022px;}
.y18_c00300{bottom:355.350022px;}
.y17_c00300{bottom:370.125022px;}
.y16_c00300{bottom:410.400022px;}
.y15_c00300{bottom:429.525022px;}
.y14_c00300{bottom:448.575022px;}
.y13_c00300{bottom:468.000022px;}
.y12_c00300{bottom:487.125022px;}
.y11_c00300{bottom:522.750022px;}
.yf_c00300{bottom:576.750022px;}
.ye_c00300{bottom:595.800022px;}
.yd_c00300{bottom:614.550022px;}
.yc_c00300{bottom:634.350022px;}
.yb_c00300{bottom:653.400022px;}
.ya_c00300{bottom:672.150022px;}
.y9_c00300{bottom:691.500022px;}
.y8_c00300{bottom:710.625022px;}
.y7_c00300{bottom:729.750022px;}
.y6_c00300{bottom:749.175022px;}
.y5_c00300{bottom:768.600022px;}
.y4_c00300{bottom:787.350022px;}
.y3_c00300{bottom:806.400022px;}
.y2_c00300{bottom:825.525022px;}
.y1_c00300{bottom:845.325022px;}
.y10_c00300{bottom:886.725022px;}
.h3_c00300{height:50.028809px;}
.h4_c00300{height:50.053711px;}
.h2_c00300{height:58.886719px;}
.h1_c00300{height:957.750000px;}
.h0_c00300{height:957.975000px;}
.w1_c00300{width:643.500000px;}
.w0_c00300{width:643.650000px;}
.x0_c00300{left:0.000000px;}
.x2_c00300{left:90.375000px;}
.x1_c00300{left:91.425000px;}
.x3_c00300{left:97.575000px;}
.x5_c00300{left:130.350000px;}
.x4_c00300{left:131.400000px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls0_c00300{letter-spacing:0.000000pt;}
.ws1_c00300{word-spacing:-13.333333pt;}
.ws0_c00300{word-spacing:-11.333333pt;}
.ws2_c00300{word-spacing:0.000000pt;}
._b_c00300{margin-left:-10.346667pt;}
._5_c00300{margin-left:-9.440000pt;}
._f_c00300{margin-left:-8.213333pt;}
._12_c00300{margin-left:-6.666667pt;}
._10_c00300{margin-left:-5.120000pt;}
._19_c00300{margin-left:-4.060949pt;}
._a_c00300{margin-left:-2.880000pt;}
._18_c00300{margin-left:-1.957387pt;}
._7_c00300{margin-left:-0.906667pt;}
._0_c00300{width:1.493333pt;}
._2_c00300{width:3.040000pt;}
._c_c00300{width:4.000000pt;}
._1_c00300{width:5.866667pt;}
._11_c00300{width:6.880000pt;}
._3_c00300{width:7.893333pt;}
._4_c00300{width:9.280000pt;}
._16_c00300{width:10.240000pt;}
._14_c00300{width:11.146667pt;}
._13_c00300{width:12.106667pt;}
._15_c00300{width:14.400000pt;}
._e_c00300{width:15.306667pt;}
._d_c00300{width:17.013333pt;}
._6_c00300{width:18.186667pt;}
._9_c00300{width:19.146667pt;}
._8_c00300{width:20.213333pt;}
._17_c00300{width:21.893333pt;}
._1a_c00300{width:24.010720pt;}
.fs1_c00300{font-size:45.333333pt;}
.fs0_c00300{font-size:53.333333pt;}
.y0_c00300{bottom:0.000000pt;}
.y29_c00300{bottom:57.266686pt;}
.y28_c00300{bottom:97.933353pt;}
.y27_c00300{bottom:111.400020pt;}
.y26_c00300{bottom:125.466686pt;}
.y25_c00300{bottom:138.600020pt;}
.y24_c00300{bottom:152.333353pt;}
.y23_c00300{bottom:165.800020pt;}
.y22_c00300{bottom:179.533353pt;}
.y21_c00300{bottom:193.266686pt;}
.y20_c00300{bottom:206.733353pt;}
.y1f_c00300{bottom:220.200020pt;}
.y1e_c00300{bottom:234.266686pt;}
.y1d_c00300{bottom:247.666686pt;}
.y1c_c00300{bottom:261.466686pt;}
.y1b_c00300{bottom:274.600020pt;}
.y1a_c00300{bottom:288.333353pt;}
.y19_c00300{bottom:302.066686pt;}
.y18_c00300{bottom:315.866686pt;}
.y17_c00300{bottom:329.000020pt;}
.y16_c00300{bottom:364.800020pt;}
.y15_c00300{bottom:381.800020pt;}
.y14_c00300{bottom:398.733353pt;}
.y13_c00300{bottom:416.000020pt;}
.y12_c00300{bottom:433.000020pt;}
.y11_c00300{bottom:464.666686pt;}
.yf_c00300{bottom:512.666686pt;}
.ye_c00300{bottom:529.600020pt;}
.yd_c00300{bottom:546.266686pt;}
.yc_c00300{bottom:563.866686pt;}
.yb_c00300{bottom:580.800020pt;}
.ya_c00300{bottom:597.466686pt;}
.y9_c00300{bottom:614.666686pt;}
.y8_c00300{bottom:631.666686pt;}
.y7_c00300{bottom:648.666686pt;}
.y6_c00300{bottom:665.933353pt;}
.y5_c00300{bottom:683.200020pt;}
.y4_c00300{bottom:699.866686pt;}
.y3_c00300{bottom:716.800020pt;}
.y2_c00300{bottom:733.800020pt;}
.y1_c00300{bottom:751.400020pt;}
.y10_c00300{bottom:788.200020pt;}
.h3_c00300{height:44.470052pt;}
.h4_c00300{height:44.492188pt;}
.h2_c00300{height:52.343750pt;}
.h1_c00300{height:851.333333pt;}
.h0_c00300{height:851.533333pt;}
.w1_c00300{width:572.000000pt;}
.w0_c00300{width:572.133333pt;}
.x0_c00300{left:0.000000pt;}
.x2_c00300{left:80.333333pt;}
.x1_c00300{left:81.266667pt;}
.x3_c00300{left:86.733333pt;}
.x5_c00300{left:115.866667pt;}
.x4_c00300{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_074d6ef0ae72da1b9e0f578f.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00301;src:url('chunks/assets/font_cdc3474ef318dce08f51099f.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00301{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00301{letter-spacing:0.000000px;}
.sc__c00301{text-shadow:none;}
.sc0_c00301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00301{-webkit-text-stroke:0px transparent;}
.sc0_c00301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00301{word-spacing:-15.000000px;}
.ws1_c00301{word-spacing:-12.750000px;}
.ws2_c00301{word-spacing:0.000000px;}
._16_c00301{margin-left:-30.900000px;}
._15_c00301{margin-left:-29.100000px;}
._10_c00301{margin-left:-16.020000px;}
._17_c00301{margin-left:-14.100000px;}
._18_c00301{margin-left:-11.400000px;}
._19_c00301{margin-left:-6.806940px;}
._f_c00301{margin-left:-4.380000px;}
._5_c00301{margin-left:-2.640000px;}
._c_c00301{margin-left:-1.500000px;}
._2_c00301{width:1.020000px;}
._3_c00301{width:2.220000px;}
._0_c00301{width:3.300000px;}
._a_c00301{width:4.560000px;}
._11_c00301{width:5.640000px;}
._e_c00301{width:6.840000px;}
._9_c00301{width:8.280000px;}
._4_c00301{width:9.360000px;}
._b_c00301{width:10.380000px;}
._d_c00301{width:11.700000px;}
._1_c00301{width:13.200000px;}
._7_c00301{width:16.080000px;}
._8_c00301{width:17.160000px;}
._6_c00301{width:18.960000px;}
._14_c00301{width:21.540000px;}
._12_c00301{width:22.620000px;}
._13_c00301{width:23.820000px;}
._1a_c00301{width:26.910000px;}
.fc1_c00301{color:transparent;}
.fc0_c00301{color:rgb(35,31,32);}
.fs1_c00301{font-size:51.000000px;}
.fs0_c00301{font-size:60.000000px;}
.y0_c00301{bottom:0.000000px;}
.y25_c00301{bottom:64.425022px;}
.y24_c00301{bottom:110.175022px;}
.y23_c00301{bottom:125.325022px;}
.y22_c00301{bottom:140.775022px;}
.y21_c00301{bottom:155.925022px;}
.y20_c00301{bottom:196.200022px;}
.y1f_c00301{bottom:215.325022px;}
.y1e_c00301{bottom:234.375022px;}
.y1d_c00301{bottom:253.800022px;}
.y1c_c00301{bottom:273.225022px;}
.y1b_c00301{bottom:292.350022px;}
.y1a_c00301{bottom:311.775022px;}
.y19_c00301{bottom:347.775022px;}
.y17_c00301{bottom:402.825022px;}
.y16_c00301{bottom:422.625022px;}
.y15_c00301{bottom:441.375022px;}
.y14_c00301{bottom:461.175022px;}
.y13_c00301{bottom:479.925022px;}
.y12_c00301{bottom:499.650022px;}
.y11_c00301{bottom:518.775022px;}
.y10_c00301{bottom:538.200022px;}
.yf_c00301{bottom:556.950022px;}
.ye_c00301{bottom:576.750022px;}
.yd_c00301{bottom:595.800022px;}
.yc_c00301{bottom:615.225022px;}
.yb_c00301{bottom:633.975022px;}
.ya_c00301{bottom:662.400022px;}
.y9_c00301{bottom:681.525022px;}
.y8_c00301{bottom:700.950022px;}
.y7_c00301{bottom:720.000022px;}
.y6_c00301{bottom:739.425022px;}
.y5_c00301{bottom:758.925022px;}
.y4_c00301{bottom:787.350022px;}
.y3_c00301{bottom:806.775022px;}
.y2_c00301{bottom:825.825022px;}
.y1_c00301{bottom:845.325022px;}
.y18_c00301{bottom:886.725022px;}
.h4_c00301{height:50.028809px;}
.h5_c00301{height:50.053711px;}
.h3_c00301{height:58.857422px;}
.h2_c00301{height:58.886719px;}
.h1_c00301{height:957.750000px;}
.h0_c00301{height:957.975000px;}
.w0_c00301{width:641.850030px;}
.w1_c00301{width:642.000000px;}
.x0_c00301{left:0.000000px;}
.x1_c00301{left:81.000000px;}
.x5_c00301{left:87.825000px;}
.x2_c00301{left:96.150000px;}
.x3_c00301{left:97.200000px;}
.x6_c00301{left:121.650000px;}
.x4_c00301{left:143.625000px;}
.x7_c00301{left:531.375000px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls0_c00301{letter-spacing:0.000000pt;}
.ws0_c00301{word-spacing:-13.333333pt;}
.ws1_c00301{word-spacing:-11.333333pt;}
.ws2_c00301{word-spacing:0.000000pt;}
._16_c00301{margin-left:-27.466667pt;}
._15_c00301{margin-left:-25.866667pt;}
._10_c00301{margin-left:-14.240000pt;}
._17_c00301{margin-left:-12.533333pt;}
._18_c00301{margin-left:-10.133333pt;}
._19_c00301{margin-left:-6.050613pt;}
._f_c00301{margin-left:-3.893333pt;}
._5_c00301{margin-left:-2.346667pt;}
._c_c00301{margin-left:-1.333333pt;}
._2_c00301{width:0.906667pt;}
._3_c00301{width:1.973333pt;}
._0_c00301{width:2.933333pt;}
._a_c00301{width:4.053333pt;}
._11_c00301{width:5.013333pt;}
._e_c00301{width:6.080000pt;}
._9_c00301{width:7.360000pt;}
._4_c00301{width:8.320000pt;}
._b_c00301{width:9.226667pt;}
._d_c00301{width:10.400000pt;}
._1_c00301{width:11.733333pt;}
._7_c00301{width:14.293333pt;}
._8_c00301{width:15.253333pt;}
._6_c00301{width:16.853333pt;}
._14_c00301{width:19.146667pt;}
._12_c00301{width:20.106667pt;}
._13_c00301{width:21.173333pt;}
._1a_c00301{width:23.920000pt;}
.fs1_c00301{font-size:45.333333pt;}
.fs0_c00301{font-size:53.333333pt;}
.y0_c00301{bottom:0.000000pt;}
.y25_c00301{bottom:57.266686pt;}
.y24_c00301{bottom:97.933353pt;}
.y23_c00301{bottom:111.400020pt;}
.y22_c00301{bottom:125.133353pt;}
.y21_c00301{bottom:138.600020pt;}
.y20_c00301{bottom:174.400020pt;}
.y1f_c00301{bottom:191.400020pt;}
.y1e_c00301{bottom:208.333353pt;}
.y1d_c00301{bottom:225.600020pt;}
.y1c_c00301{bottom:242.866686pt;}
.y1b_c00301{bottom:259.866686pt;}
.y1a_c00301{bottom:277.133353pt;}
.y19_c00301{bottom:309.133353pt;}
.y17_c00301{bottom:358.066686pt;}
.y16_c00301{bottom:375.666686pt;}
.y15_c00301{bottom:392.333353pt;}
.y14_c00301{bottom:409.933353pt;}
.y13_c00301{bottom:426.600020pt;}
.y12_c00301{bottom:444.133353pt;}
.y11_c00301{bottom:461.133353pt;}
.y10_c00301{bottom:478.400020pt;}
.yf_c00301{bottom:495.066686pt;}
.ye_c00301{bottom:512.666686pt;}
.yd_c00301{bottom:529.600020pt;}
.yc_c00301{bottom:546.866686pt;}
.yb_c00301{bottom:563.533353pt;}
.ya_c00301{bottom:588.800020pt;}
.y9_c00301{bottom:605.800020pt;}
.y8_c00301{bottom:623.066686pt;}
.y7_c00301{bottom:640.000020pt;}
.y6_c00301{bottom:657.266686pt;}
.y5_c00301{bottom:674.600020pt;}
.y4_c00301{bottom:699.866686pt;}
.y3_c00301{bottom:717.133353pt;}
.y2_c00301{bottom:734.066686pt;}
.y1_c00301{bottom:751.400020pt;}
.y18_c00301{bottom:788.200020pt;}
.h4_c00301{height:44.470052pt;}
.h5_c00301{height:44.492188pt;}
.h3_c00301{height:52.317708pt;}
.h2_c00301{height:52.343750pt;}
.h1_c00301{height:851.333333pt;}
.h0_c00301{height:851.533333pt;}
.w0_c00301{width:570.533360pt;}
.w1_c00301{width:570.666667pt;}
.x0_c00301{left:0.000000pt;}
.x1_c00301{left:72.000000pt;}
.x5_c00301{left:78.066667pt;}
.x2_c00301{left:85.466667pt;}
.x3_c00301{left:86.400000pt;}
.x6_c00301{left:108.133333pt;}
.x4_c00301{left:127.666667pt;}
.x7_c00301{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bec21c4b08df30a1b14b6a60.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00302;src:url('chunks/assets/font_42a1c7035932c4f78bdea4ae.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00302{letter-spacing:0.000000px;}
.ls0_c00302{letter-spacing:11.100000px;}
.sc__c00302{text-shadow:none;}
.sc0_c00302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00302{-webkit-text-stroke:0px transparent;}
.sc0_c00302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00302{word-spacing:-15.000000px;}
.ws1_c00302{word-spacing:-12.750000px;}
.ws2_c00302{word-spacing:0.000000px;}
._1d_c00302{margin-left:-16.020000px;}
._d_c00302{margin-left:-14.640000px;}
._16_c00302{margin-left:-12.840000px;}
._15_c00302{margin-left:-11.580000px;}
._1c_c00302{margin-left:-10.560000px;}
._1a_c00302{margin-left:-8.400000px;}
._1e_c00302{margin-left:-7.020000px;}
._18_c00302{margin-left:-6.000000px;}
._1_c00302{margin-left:-4.800000px;}
._0_c00302{margin-left:-2.880000px;}
._5_c00302{margin-left:-1.320000px;}
._2_c00302{width:1.860000px;}
._7_c00302{width:3.840000px;}
._f_c00302{width:5.760000px;}
._11_c00302{width:7.620000px;}
._10_c00302{width:9.360000px;}
._14_c00302{width:11.040000px;}
._17_c00302{width:12.300000px;}
._12_c00302{width:13.320000px;}
._1f_c00302{width:14.931006px;}
._9_c00302{width:16.200000px;}
._19_c00302{width:17.400000px;}
._13_c00302{width:18.600000px;}
._4_c00302{width:20.400000px;}
._8_c00302{width:21.960000px;}
._6_c00302{width:23.220000px;}
._3_c00302{width:24.720000px;}
._e_c00302{width:26.340000px;}
._b_c00302{width:27.360000px;}
._a_c00302{width:29.280000px;}
._c_c00302{width:31.080000px;}
._1b_c00302{width:32.700000px;}
.fc2_c00302{color:transparent;}
.fc1_c00302{color:rgb(0,0,0);}
.fc0_c00302{color:rgb(35,31,32);}
.fs1_c00302{font-size:51.000000px;}
.fs0_c00302{font-size:60.000000px;}
.y0_c00302{bottom:0.000000px;}
.y28_c00302{bottom:64.800022px;}
.y27_c00302{bottom:110.550022px;}
.y26_c00302{bottom:125.625022px;}
.y25_c00302{bottom:140.775022px;}
.y24_c00302{bottom:155.925022px;}
.y23_c00302{bottom:171.750022px;}
.y22_c00302{bottom:186.825022px;}
.y21_c00302{bottom:201.900022px;}
.y20_c00302{bottom:217.425022px;}
.y1f_c00302{bottom:232.950022px;}
.y1e_c00302{bottom:248.025022px;}
.y1d_c00302{bottom:263.475022px;}
.y1c_c00302{bottom:278.625022px;}
.y1b_c00302{bottom:293.775022px;}
.y1a_c00302{bottom:309.225022px;}
.y18_c00302{bottom:379.125022px;}
.y17_c00302{bottom:398.925022px;}
.y16_c00302{bottom:418.350022px;}
.y15_c00302{bottom:437.775022px;}
.y14_c00302{bottom:457.200022px;}
.y13_c00302{bottom:476.325022px;}
.y12_c00302{bottom:496.125022px;}
.y11_c00302{bottom:515.550022px;}
.y10_c00302{bottom:534.600022px;}
.yf_c00302{bottom:554.025022px;}
.ye_c00302{bottom:573.825022px;}
.yd_c00302{bottom:593.325022px;}
.yc_c00302{bottom:612.375022px;}
.yb_c00302{bottom:632.025022px;}
.ya_c00302{bottom:651.525022px;}
.y9_c00302{bottom:671.025022px;}
.y8_c00302{bottom:690.525022px;}
.y7_c00302{bottom:709.575022px;}
.y6_c00302{bottom:729.000022px;}
.y5_c00302{bottom:748.125022px;}
.y4_c00302{bottom:767.925022px;}
.y3_c00302{bottom:787.350022px;}
.y2_c00302{bottom:806.775022px;}
.y1_c00302{bottom:844.950022px;}
.y19_c00302{bottom:886.725022px;}
.h3_c00302{height:50.028809px;}
.h4_c00302{height:50.053711px;}
.h2_c00302{height:58.886719px;}
.h1_c00302{height:957.750000px;}
.h0_c00302{height:957.975000px;}
.w1_c00302{width:643.500000px;}
.w0_c00302{width:643.650000px;}
.x0_c00302{left:0.000000px;}
.x2_c00302{left:90.375000px;}
.x1_c00302{left:91.800000px;}
.x4_c00302{left:97.575000px;}
.x3_c00302{left:107.250000px;}
.x5_c00302{left:131.400000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls1_c00302{letter-spacing:0.000000pt;}
.ls0_c00302{letter-spacing:9.866667pt;}
.ws0_c00302{word-spacing:-13.333333pt;}
.ws1_c00302{word-spacing:-11.333333pt;}
.ws2_c00302{word-spacing:0.000000pt;}
._1d_c00302{margin-left:-14.240000pt;}
._d_c00302{margin-left:-13.013333pt;}
._16_c00302{margin-left:-11.413333pt;}
._15_c00302{margin-left:-10.293333pt;}
._1c_c00302{margin-left:-9.386667pt;}
._1a_c00302{margin-left:-7.466667pt;}
._1e_c00302{margin-left:-6.240000pt;}
._18_c00302{margin-left:-5.333333pt;}
._1_c00302{margin-left:-4.266667pt;}
._0_c00302{margin-left:-2.560000pt;}
._5_c00302{margin-left:-1.173333pt;}
._2_c00302{width:1.653333pt;}
._7_c00302{width:3.413333pt;}
._f_c00302{width:5.120000pt;}
._11_c00302{width:6.773333pt;}
._10_c00302{width:8.320000pt;}
._14_c00302{width:9.813333pt;}
._17_c00302{width:10.933333pt;}
._12_c00302{width:11.840000pt;}
._1f_c00302{width:13.272005pt;}
._9_c00302{width:14.400000pt;}
._19_c00302{width:15.466667pt;}
._13_c00302{width:16.533333pt;}
._4_c00302{width:18.133333pt;}
._8_c00302{width:19.520000pt;}
._6_c00302{width:20.640000pt;}
._3_c00302{width:21.973333pt;}
._e_c00302{width:23.413333pt;}
._b_c00302{width:24.320000pt;}
._a_c00302{width:26.026667pt;}
._c_c00302{width:27.626667pt;}
._1b_c00302{width:29.066667pt;}
.fs1_c00302{font-size:45.333333pt;}
.fs0_c00302{font-size:53.333333pt;}
.y0_c00302{bottom:0.000000pt;}
.y28_c00302{bottom:57.600020pt;}
.y27_c00302{bottom:98.266686pt;}
.y26_c00302{bottom:111.666686pt;}
.y25_c00302{bottom:125.133353pt;}
.y24_c00302{bottom:138.600020pt;}
.y23_c00302{bottom:152.666686pt;}
.y22_c00302{bottom:166.066686pt;}
.y21_c00302{bottom:179.466686pt;}
.y20_c00302{bottom:193.266686pt;}
.y1f_c00302{bottom:207.066686pt;}
.y1e_c00302{bottom:220.466686pt;}
.y1d_c00302{bottom:234.200020pt;}
.y1c_c00302{bottom:247.666686pt;}
.y1b_c00302{bottom:261.133353pt;}
.y1a_c00302{bottom:274.866686pt;}
.y18_c00302{bottom:337.000020pt;}
.y17_c00302{bottom:354.600020pt;}
.y16_c00302{bottom:371.866686pt;}
.y15_c00302{bottom:389.133353pt;}
.y14_c00302{bottom:406.400020pt;}
.y13_c00302{bottom:423.400020pt;}
.y12_c00302{bottom:441.000020pt;}
.y11_c00302{bottom:458.266686pt;}
.y10_c00302{bottom:475.200020pt;}
.yf_c00302{bottom:492.466686pt;}
.ye_c00302{bottom:510.066686pt;}
.yd_c00302{bottom:527.400020pt;}
.yc_c00302{bottom:544.333353pt;}
.yb_c00302{bottom:561.800020pt;}
.ya_c00302{bottom:579.133353pt;}
.y9_c00302{bottom:596.466686pt;}
.y8_c00302{bottom:613.800020pt;}
.y7_c00302{bottom:630.733353pt;}
.y6_c00302{bottom:648.000020pt;}
.y5_c00302{bottom:665.000020pt;}
.y4_c00302{bottom:682.600020pt;}
.y3_c00302{bottom:699.866686pt;}
.y2_c00302{bottom:717.133353pt;}
.y1_c00302{bottom:751.066686pt;}
.y19_c00302{bottom:788.200020pt;}
.h3_c00302{height:44.470052pt;}
.h4_c00302{height:44.492188pt;}
.h2_c00302{height:52.343750pt;}
.h1_c00302{height:851.333333pt;}
.h0_c00302{height:851.533333pt;}
.w1_c00302{width:572.000000pt;}
.w0_c00302{width:572.133333pt;}
.x0_c00302{left:0.000000pt;}
.x2_c00302{left:80.333333pt;}
.x1_c00302{left:81.600000pt;}
.x4_c00302{left:86.733333pt;}
.x3_c00302{left:95.333333pt;}
.x5_c00302{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_096dbb55e3db01f06b937cfc.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00303;src:url('chunks/assets/font_ddfed350b169b0ab10d2381a.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00303{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00303{vertical-align:0.000000px;}
.ls1_c00303{letter-spacing:0.000000px;}
.ls0_c00303{letter-spacing:11.100000px;}
.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:-15.000000px;}
.ws1_c00303{word-spacing:-12.750000px;}
.ws2_c00303{word-spacing:0.000000px;}
._d_c00303{margin-left:-14.820000px;}
._1e_c00303{margin-left:-12.600000px;}
._8_c00303{margin-left:-11.340000px;}
._e_c00303{margin-left:-8.100000px;}
._c_c00303{margin-left:-5.880000px;}
._f_c00303{margin-left:-4.440000px;}
._7_c00303{margin-left:-2.820000px;}
._6_c00303{margin-left:-1.020000px;}
._2_c00303{width:1.020000px;}
._1_c00303{width:2.820000px;}
._10_c00303{width:3.840000px;}
._5_c00303{width:4.860000px;}
._9_c00303{width:6.240000px;}
._0_c00303{width:7.260000px;}
._3_c00303{width:9.120000px;}
._4_c00303{width:10.560000px;}
._a_c00303{width:11.760000px;}
._b_c00303{width:13.140000px;}
._20_c00303{width:14.817138px;}
._1d_c00303{width:16.440000px;}
._1f_c00303{width:18.300000px;}
._1a_c00303{width:20.340000px;}
._1c_c00303{width:23.220000px;}
._1b_c00303{width:25.200000px;}
._14_c00303{width:27.540000px;}
._15_c00303{width:28.800000px;}
._13_c00303{width:30.600000px;}
._12_c00303{width:32.340000px;}
._11_c00303{width:33.540000px;}
._18_c00303{width:34.980000px;}
._19_c00303{width:36.660000px;}
._17_c00303{width:38.580000px;}
._16_c00303{width:41.460000px;}
.fc2_c00303{color:transparent;}
.fc1_c00303{color:rgb(0,0,0);}
.fc0_c00303{color:rgb(35,31,32);}
.fs1_c00303{font-size:51.000000px;}
.fs0_c00303{font-size:60.000000px;}
.y0_c00303{bottom:0.000000px;}
.y27_c00303{bottom:64.425022px;}
.y26_c00303{bottom:110.175022px;}
.y25_c00303{bottom:125.325022px;}
.y24_c00303{bottom:140.775022px;}
.y23_c00303{bottom:155.925022px;}
.y22_c00303{bottom:171.375022px;}
.y21_c00303{bottom:186.525022px;}
.y20_c00303{bottom:202.350022px;}
.y1f_c00303{bottom:217.425022px;}
.y1e_c00303{bottom:232.575022px;}
.y1d_c00303{bottom:248.025022px;}
.y1c_c00303{bottom:263.175022px;}
.y1b_c00303{bottom:303.150022px;}
.y1a_c00303{bottom:322.575022px;}
.y19_c00303{bottom:342.000022px;}
.y18_c00303{bottom:361.425022px;}
.y17_c00303{bottom:380.925022px;}
.y16_c00303{bottom:400.350022px;}
.y15_c00303{bottom:419.775022px;}
.y14_c00303{bottom:438.900022px;}
.y13_c00303{bottom:458.325022px;}
.y12_c00303{bottom:477.750022px;}
.y11_c00303{bottom:497.175022px;}
.y10_c00303{bottom:516.600022px;}
.yf_c00303{bottom:556.950022px;}
.yd_c00303{bottom:611.625022px;}
.yc_c00303{bottom:631.425022px;}
.yb_c00303{bottom:650.550022px;}
.ya_c00303{bottom:670.350022px;}
.y9_c00303{bottom:689.775022px;}
.y8_c00303{bottom:709.200022px;}
.y7_c00303{bottom:728.325022px;}
.y6_c00303{bottom:748.125022px;}
.y5_c00303{bottom:767.175022px;}
.y4_c00303{bottom:786.600022px;}
.y3_c00303{bottom:806.025022px;}
.y2_c00303{bottom:825.525022px;}
.y1_c00303{bottom:844.950022px;}
.ye_c00303{bottom:886.725022px;}
.h3_c00303{height:50.028809px;}
.h4_c00303{height:50.053711px;}
.h2_c00303{height:58.886719px;}
.h1_c00303{height:957.750000px;}
.h0_c00303{height:957.975000px;}
.w0_c00303{width:641.850030px;}
.w1_c00303{width:642.000000px;}
.x0_c00303{left:0.000000px;}
.x1_c00303{left:81.000000px;}
.x5_c00303{left:87.825000px;}
.x4_c00303{left:96.150000px;}
.x2_c00303{left:97.200000px;}
.x6_c00303{left:121.350000px;}
.x3_c00303{left:143.625000px;}
.x7_c00303{left:531.375000px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls1_c00303{letter-spacing:0.000000pt;}
.ls0_c00303{letter-spacing:9.866667pt;}
.ws0_c00303{word-spacing:-13.333333pt;}
.ws1_c00303{word-spacing:-11.333333pt;}
.ws2_c00303{word-spacing:0.000000pt;}
._d_c00303{margin-left:-13.173333pt;}
._1e_c00303{margin-left:-11.200000pt;}
._8_c00303{margin-left:-10.080000pt;}
._e_c00303{margin-left:-7.200000pt;}
._c_c00303{margin-left:-5.226667pt;}
._f_c00303{margin-left:-3.946667pt;}
._7_c00303{margin-left:-2.506667pt;}
._6_c00303{margin-left:-0.906667pt;}
._2_c00303{width:0.906667pt;}
._1_c00303{width:2.506667pt;}
._10_c00303{width:3.413333pt;}
._5_c00303{width:4.320000pt;}
._9_c00303{width:5.546667pt;}
._0_c00303{width:6.453333pt;}
._3_c00303{width:8.106667pt;}
._4_c00303{width:9.386667pt;}
._a_c00303{width:10.453333pt;}
._b_c00303{width:11.680000pt;}
._20_c00303{width:13.170789pt;}
._1d_c00303{width:14.613333pt;}
._1f_c00303{width:16.266667pt;}
._1a_c00303{width:18.080000pt;}
._1c_c00303{width:20.640000pt;}
._1b_c00303{width:22.400000pt;}
._14_c00303{width:24.480000pt;}
._15_c00303{width:25.600000pt;}
._13_c00303{width:27.200000pt;}
._12_c00303{width:28.746667pt;}
._11_c00303{width:29.813333pt;}
._18_c00303{width:31.093333pt;}
._19_c00303{width:32.586667pt;}
._17_c00303{width:34.293333pt;}
._16_c00303{width:36.853333pt;}
.fs1_c00303{font-size:45.333333pt;}
.fs0_c00303{font-size:53.333333pt;}
.y0_c00303{bottom:0.000000pt;}
.y27_c00303{bottom:57.266686pt;}
.y26_c00303{bottom:97.933353pt;}
.y25_c00303{bottom:111.400020pt;}
.y24_c00303{bottom:125.133353pt;}
.y23_c00303{bottom:138.600020pt;}
.y22_c00303{bottom:152.333353pt;}
.y21_c00303{bottom:165.800020pt;}
.y20_c00303{bottom:179.866686pt;}
.y1f_c00303{bottom:193.266686pt;}
.y1e_c00303{bottom:206.733353pt;}
.y1d_c00303{bottom:220.466686pt;}
.y1c_c00303{bottom:233.933353pt;}
.y1b_c00303{bottom:269.466686pt;}
.y1a_c00303{bottom:286.733353pt;}
.y19_c00303{bottom:304.000020pt;}
.y18_c00303{bottom:321.266686pt;}
.y17_c00303{bottom:338.600020pt;}
.y16_c00303{bottom:355.866686pt;}
.y15_c00303{bottom:373.133353pt;}
.y14_c00303{bottom:390.133353pt;}
.y13_c00303{bottom:407.400020pt;}
.y12_c00303{bottom:424.666686pt;}
.y11_c00303{bottom:441.933353pt;}
.y10_c00303{bottom:459.200020pt;}
.yf_c00303{bottom:495.066686pt;}
.yd_c00303{bottom:543.666686pt;}
.yc_c00303{bottom:561.266686pt;}
.yb_c00303{bottom:578.266686pt;}
.ya_c00303{bottom:595.866686pt;}
.y9_c00303{bottom:613.133353pt;}
.y8_c00303{bottom:630.400020pt;}
.y7_c00303{bottom:647.400020pt;}
.y6_c00303{bottom:665.000020pt;}
.y5_c00303{bottom:681.933353pt;}
.y4_c00303{bottom:699.200020pt;}
.y3_c00303{bottom:716.466686pt;}
.y2_c00303{bottom:733.800020pt;}
.y1_c00303{bottom:751.066686pt;}
.ye_c00303{bottom:788.200020pt;}
.h3_c00303{height:44.470052pt;}
.h4_c00303{height:44.492188pt;}
.h2_c00303{height:52.343750pt;}
.h1_c00303{height:851.333333pt;}
.h0_c00303{height:851.533333pt;}
.w0_c00303{width:570.533360pt;}
.w1_c00303{width:570.666667pt;}
.x0_c00303{left:0.000000pt;}
.x1_c00303{left:72.000000pt;}
.x5_c00303{left:78.066667pt;}
.x4_c00303{left:85.466667pt;}
.x2_c00303{left:86.400000pt;}
.x6_c00303{left:107.866667pt;}
.x3_c00303{left:127.666667pt;}
.x7_c00303{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98ea7a13e0141473fb9e7162.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00304;src:url('chunks/assets/font_67875c432243789fb6736adb.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00304{letter-spacing:0.000000px;}
.sc__c00304{text-shadow:none;}
.sc0_c00304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00304{-webkit-text-stroke:0px transparent;}
.sc0_c00304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00304{word-spacing:-15.000000px;}
.ws0_c00304{word-spacing:-12.750000px;}
.ws2_c00304{word-spacing:0.000000px;}
._e_c00304{margin-left:-15.480000px;}
._f_c00304{margin-left:-13.200000px;}
._10_c00304{margin-left:-11.820000px;}
._b_c00304{margin-left:-10.560000px;}
._14_c00304{margin-left:-8.862012px;}
._9_c00304{margin-left:-6.720000px;}
._c_c00304{margin-left:-5.040000px;}
._d_c00304{margin-left:-3.600000px;}
._4_c00304{margin-left:-1.680000px;}
._0_c00304{width:1.320000px;}
._3_c00304{width:3.300000px;}
._7_c00304{width:5.040000px;}
._a_c00304{width:6.600000px;}
._8_c00304{width:7.860000px;}
._1_c00304{width:9.480000px;}
._2_c00304{width:11.340000px;}
._5_c00304{width:12.840000px;}
._15_c00304{width:14.100021px;}
._16_c00304{width:15.194967px;}
._6_c00304{width:16.800000px;}
._11_c00304{width:18.000000px;}
._18_c00304{width:22.890000px;}
._12_c00304{width:24.089979px;}
._19_c00304{width:25.590000px;}
._17_c00304{width:27.269991px;}
._13_c00304{width:29.190093px;}
.fc1_c00304{color:transparent;}
.fc0_c00304{color:rgb(35,31,32);}
.fs1_c00304{font-size:51.000000px;}
.fs0_c00304{font-size:60.000000px;}
.y0_c00304{bottom:0.000000px;}
.y28_c00304{bottom:64.800022px;}
.y27_c00304{bottom:110.550022px;}
.y26_c00304{bottom:125.325022px;}
.y25_c00304{bottom:140.775022px;}
.y24_c00304{bottom:155.925022px;}
.y23_c00304{bottom:171.375022px;}
.y22_c00304{bottom:186.525022px;}
.y21_c00304{bottom:201.975022px;}
.y20_c00304{bottom:217.125022px;}
.y1f_c00304{bottom:232.575022px;}
.y1e_c00304{bottom:247.725022px;}
.y1d_c00304{bottom:263.550022px;}
.y1c_c00304{bottom:278.325022px;}
.y1b_c00304{bottom:293.775022px;}
.y1a_c00304{bottom:308.925022px;}
.y19_c00304{bottom:324.375022px;}
.y18_c00304{bottom:339.825022px;}
.y17_c00304{bottom:354.975022px;}
.y16_c00304{bottom:370.125022px;}
.y15_c00304{bottom:385.950022px;}
.y13_c00304{bottom:495.375022px;}
.y12_c00304{bottom:514.425022px;}
.y11_c00304{bottom:533.925022px;}
.y10_c00304{bottom:553.725022px;}
.yf_c00304{bottom:572.775022px;}
.ye_c00304{bottom:592.200022px;}
.yd_c00304{bottom:611.625022px;}
.yc_c00304{bottom:631.425022px;}
.yb_c00304{bottom:650.550022px;}
.ya_c00304{bottom:670.350022px;}
.y9_c00304{bottom:689.400022px;}
.y8_c00304{bottom:709.200022px;}
.y7_c00304{bottom:728.625022px;}
.y6_c00304{bottom:747.750022px;}
.y5_c00304{bottom:767.550022px;}
.y4_c00304{bottom:786.225022px;}
.y3_c00304{bottom:806.100022px;}
.y2_c00304{bottom:825.525022px;}
.y1_c00304{bottom:844.950022px;}
.y14_c00304{bottom:886.725022px;}
.h3_c00304{height:50.028809px;}
.h4_c00304{height:50.053711px;}
.h2_c00304{height:58.886719px;}
.h1_c00304{height:957.750000px;}
.h0_c00304{height:957.975000px;}
.w1_c00304{width:643.500000px;}
.w0_c00304{width:643.650000px;}
.x0_c00304{left:0.000000px;}
.x3_c00304{left:90.375000px;}
.x1_c00304{left:91.425000px;}
.x4_c00304{left:97.575000px;}
.x2_c00304{left:106.575000px;}
.x5_c00304{left:131.025000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls0_c00304{letter-spacing:0.000000pt;}
.ws1_c00304{word-spacing:-13.333333pt;}
.ws0_c00304{word-spacing:-11.333333pt;}
.ws2_c00304{word-spacing:0.000000pt;}
._e_c00304{margin-left:-13.760000pt;}
._f_c00304{margin-left:-11.733333pt;}
._10_c00304{margin-left:-10.506667pt;}
._b_c00304{margin-left:-9.386667pt;}
._14_c00304{margin-left:-7.877344pt;}
._9_c00304{margin-left:-5.973333pt;}
._c_c00304{margin-left:-4.480000pt;}
._d_c00304{margin-left:-3.200000pt;}
._4_c00304{margin-left:-1.493333pt;}
._0_c00304{width:1.173333pt;}
._3_c00304{width:2.933333pt;}
._7_c00304{width:4.480000pt;}
._a_c00304{width:5.866667pt;}
._8_c00304{width:6.986667pt;}
._1_c00304{width:8.426667pt;}
._2_c00304{width:10.080000pt;}
._5_c00304{width:11.413333pt;}
._15_c00304{width:12.533352pt;}
._16_c00304{width:13.506637pt;}
._6_c00304{width:14.933333pt;}
._11_c00304{width:16.000000pt;}
._18_c00304{width:20.346667pt;}
._12_c00304{width:21.413315pt;}
._19_c00304{width:22.746667pt;}
._17_c00304{width:24.239992pt;}
._13_c00304{width:25.946749pt;}
.fs1_c00304{font-size:45.333333pt;}
.fs0_c00304{font-size:53.333333pt;}
.y0_c00304{bottom:0.000000pt;}
.y28_c00304{bottom:57.600020pt;}
.y27_c00304{bottom:98.266686pt;}
.y26_c00304{bottom:111.400020pt;}
.y25_c00304{bottom:125.133353pt;}
.y24_c00304{bottom:138.600020pt;}
.y23_c00304{bottom:152.333353pt;}
.y22_c00304{bottom:165.800020pt;}
.y21_c00304{bottom:179.533353pt;}
.y20_c00304{bottom:193.000020pt;}
.y1f_c00304{bottom:206.733353pt;}
.y1e_c00304{bottom:220.200020pt;}
.y1d_c00304{bottom:234.266686pt;}
.y1c_c00304{bottom:247.400020pt;}
.y1b_c00304{bottom:261.133353pt;}
.y1a_c00304{bottom:274.600020pt;}
.y19_c00304{bottom:288.333353pt;}
.y18_c00304{bottom:302.066686pt;}
.y17_c00304{bottom:315.533353pt;}
.y16_c00304{bottom:329.000020pt;}
.y15_c00304{bottom:343.066686pt;}
.y13_c00304{bottom:440.333353pt;}
.y12_c00304{bottom:457.266686pt;}
.y11_c00304{bottom:474.600020pt;}
.y10_c00304{bottom:492.200020pt;}
.yf_c00304{bottom:509.133353pt;}
.ye_c00304{bottom:526.400020pt;}
.yd_c00304{bottom:543.666686pt;}
.yc_c00304{bottom:561.266686pt;}
.yb_c00304{bottom:578.266686pt;}
.ya_c00304{bottom:595.866686pt;}
.y9_c00304{bottom:612.800020pt;}
.y8_c00304{bottom:630.400020pt;}
.y7_c00304{bottom:647.666686pt;}
.y6_c00304{bottom:664.666686pt;}
.y5_c00304{bottom:682.266686pt;}
.y4_c00304{bottom:698.866686pt;}
.y3_c00304{bottom:716.533353pt;}
.y2_c00304{bottom:733.800020pt;}
.y1_c00304{bottom:751.066686pt;}
.y14_c00304{bottom:788.200020pt;}
.h3_c00304{height:44.470052pt;}
.h4_c00304{height:44.492188pt;}
.h2_c00304{height:52.343750pt;}
.h1_c00304{height:851.333333pt;}
.h0_c00304{height:851.533333pt;}
.w1_c00304{width:572.000000pt;}
.w0_c00304{width:572.133333pt;}
.x0_c00304{left:0.000000pt;}
.x3_c00304{left:80.333333pt;}
.x1_c00304{left:81.266667pt;}
.x4_c00304{left:86.733333pt;}
.x2_c00304{left:94.733333pt;}
.x5_c00304{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9dd52400ceef630cace25583.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00305;src:url('chunks/assets/font_d16bcb061bd1c1209ea0f881.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.ls1_c00305{letter-spacing:0.000000px;}
.ls0_c00305{letter-spacing:11.100000px;}
.sc__c00305{text-shadow:none;}
.sc0_c00305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00305{-webkit-text-stroke:0px transparent;}
.sc0_c00305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00305{word-spacing:-15.000000px;}
.ws1_c00305{word-spacing:-12.750000px;}
.ws2_c00305{word-spacing:0.000000px;}
._1b_c00305{margin-left:-13.680000px;}
._10_c00305{margin-left:-12.180000px;}
._6_c00305{margin-left:-10.620000px;}
._15_c00305{margin-left:-7.140000px;}
._17_c00305{margin-left:-5.400000px;}
._19_c00305{margin-left:-3.420000px;}
._1_c00305{margin-left:-2.400000px;}
._0_c00305{margin-left:-1.380000px;}
._2_c00305{width:1.680000px;}
._9_c00305{width:2.880000px;}
._3_c00305{width:4.620000px;}
._18_c00305{width:5.820000px;}
._4_c00305{width:6.840000px;}
._7_c00305{width:7.860000px;}
._5_c00305{width:8.940000px;}
._1a_c00305{width:10.020000px;}
._8_c00305{width:11.160000px;}
._1c_c00305{width:12.660000px;}
._f_c00305{width:13.740000px;}
._1e_c00305{width:14.984994px;}
._b_c00305{width:16.680000px;}
._e_c00305{width:17.760000px;}
._a_c00305{width:19.620000px;}
._d_c00305{width:21.600000px;}
._c_c00305{width:23.700000px;}
._1d_c00305{width:25.050000px;}
._12_c00305{width:26.940000px;}
._13_c00305{width:28.620000px;}
._11_c00305{width:30.480000px;}
._14_c00305{width:33.300000px;}
._16_c00305{width:35.400000px;}
.fc2_c00305{color:transparent;}
.fc1_c00305{color:rgb(0,0,0);}
.fc0_c00305{color:rgb(35,31,32);}
.fs1_c00305{font-size:51.000000px;}
.fs0_c00305{font-size:60.000000px;}
.y0_c00305{bottom:0.000000px;}
.y29_c00305{bottom:64.425022px;}
.y28_c00305{bottom:110.550022px;}
.y27_c00305{bottom:125.325022px;}
.y26_c00305{bottom:140.775022px;}
.y25_c00305{bottom:156.225022px;}
.y24_c00305{bottom:171.750022px;}
.y23_c00305{bottom:186.825022px;}
.y22_c00305{bottom:201.975022px;}
.y21_c00305{bottom:217.425022px;}
.y20_c00305{bottom:232.950022px;}
.y1f_c00305{bottom:247.725022px;}
.y1e_c00305{bottom:263.550022px;}
.y1d_c00305{bottom:278.325022px;}
.y1c_c00305{bottom:293.775022px;}
.y1b_c00305{bottom:308.550022px;}
.y1a_c00305{bottom:324.375022px;}
.y19_c00305{bottom:339.825022px;}
.y17_c00305{bottom:398.550022px;}
.y16_c00305{bottom:418.350022px;}
.y15_c00305{bottom:437.400022px;}
.y14_c00305{bottom:457.200022px;}
.y13_c00305{bottom:476.325022px;}
.y12_c00305{bottom:496.125022px;}
.y11_c00305{bottom:515.550022px;}
.y10_c00305{bottom:534.600022px;}
.yf_c00305{bottom:554.025022px;}
.ye_c00305{bottom:573.825022px;}
.yd_c00305{bottom:593.325022px;}
.yc_c00305{bottom:612.750022px;}
.yb_c00305{bottom:632.175022px;}
.ya_c00305{bottom:651.600022px;}
.y9_c00305{bottom:670.725022px;}
.y8_c00305{bottom:690.525022px;}
.y7_c00305{bottom:709.575022px;}
.y6_c00305{bottom:729.000022px;}
.y5_c00305{bottom:748.125022px;}
.y4_c00305{bottom:767.925022px;}
.y3_c00305{bottom:787.350022px;}
.y2_c00305{bottom:806.400022px;}
.y1_c00305{bottom:844.575022px;}
.y18_c00305{bottom:886.725022px;}
.h3_c00305{height:50.028809px;}
.h4_c00305{height:50.053711px;}
.h2_c00305{height:58.886719px;}
.h1_c00305{height:957.750000px;}
.h0_c00305{height:957.975000px;}
.w0_c00305{width:641.850030px;}
.w1_c00305{width:642.000000px;}
.x0_c00305{left:0.000000px;}
.x2_c00305{left:80.250000px;}
.x1_c00305{left:81.750000px;}
.x5_c00305{left:87.825000px;}
.x3_c00305{left:96.450000px;}
.x7_c00305{left:119.850000px;}
.x6_c00305{left:120.975000px;}
.x4_c00305{left:143.625000px;}
.x8_c00305{left:531.375000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls1_c00305{letter-spacing:0.000000pt;}
.ls0_c00305{letter-spacing:9.866667pt;}
.ws0_c00305{word-spacing:-13.333333pt;}
.ws1_c00305{word-spacing:-11.333333pt;}
.ws2_c00305{word-spacing:0.000000pt;}
._1b_c00305{margin-left:-12.160000pt;}
._10_c00305{margin-left:-10.826667pt;}
._6_c00305{margin-left:-9.440000pt;}
._15_c00305{margin-left:-6.346667pt;}
._17_c00305{margin-left:-4.800000pt;}
._19_c00305{margin-left:-3.040000pt;}
._1_c00305{margin-left:-2.133333pt;}
._0_c00305{margin-left:-1.226667pt;}
._2_c00305{width:1.493333pt;}
._9_c00305{width:2.560000pt;}
._3_c00305{width:4.106667pt;}
._18_c00305{width:5.173333pt;}
._4_c00305{width:6.080000pt;}
._7_c00305{width:6.986667pt;}
._5_c00305{width:7.946667pt;}
._1a_c00305{width:8.906667pt;}
._8_c00305{width:9.920000pt;}
._1c_c00305{width:11.253333pt;}
._f_c00305{width:12.213333pt;}
._1e_c00305{width:13.319995pt;}
._b_c00305{width:14.826667pt;}
._e_c00305{width:15.786667pt;}
._a_c00305{width:17.440000pt;}
._d_c00305{width:19.200000pt;}
._c_c00305{width:21.066667pt;}
._1d_c00305{width:22.266667pt;}
._12_c00305{width:23.946667pt;}
._13_c00305{width:25.440000pt;}
._11_c00305{width:27.093333pt;}
._14_c00305{width:29.600000pt;}
._16_c00305{width:31.466667pt;}
.fs1_c00305{font-size:45.333333pt;}
.fs0_c00305{font-size:53.333333pt;}
.y0_c00305{bottom:0.000000pt;}
.y29_c00305{bottom:57.266686pt;}
.y28_c00305{bottom:98.266686pt;}
.y27_c00305{bottom:111.400020pt;}
.y26_c00305{bottom:125.133353pt;}
.y25_c00305{bottom:138.866686pt;}
.y24_c00305{bottom:152.666686pt;}
.y23_c00305{bottom:166.066686pt;}
.y22_c00305{bottom:179.533353pt;}
.y21_c00305{bottom:193.266686pt;}
.y20_c00305{bottom:207.066686pt;}
.y1f_c00305{bottom:220.200020pt;}
.y1e_c00305{bottom:234.266686pt;}
.y1d_c00305{bottom:247.400020pt;}
.y1c_c00305{bottom:261.133353pt;}
.y1b_c00305{bottom:274.266686pt;}
.y1a_c00305{bottom:288.333353pt;}
.y19_c00305{bottom:302.066686pt;}
.y17_c00305{bottom:354.266686pt;}
.y16_c00305{bottom:371.866686pt;}
.y15_c00305{bottom:388.800020pt;}
.y14_c00305{bottom:406.400020pt;}
.y13_c00305{bottom:423.400020pt;}
.y12_c00305{bottom:441.000020pt;}
.y11_c00305{bottom:458.266686pt;}
.y10_c00305{bottom:475.200020pt;}
.yf_c00305{bottom:492.466686pt;}
.ye_c00305{bottom:510.066686pt;}
.yd_c00305{bottom:527.400020pt;}
.yc_c00305{bottom:544.666686pt;}
.yb_c00305{bottom:561.933353pt;}
.ya_c00305{bottom:579.200020pt;}
.y9_c00305{bottom:596.200020pt;}
.y8_c00305{bottom:613.800020pt;}
.y7_c00305{bottom:630.733353pt;}
.y6_c00305{bottom:648.000020pt;}
.y5_c00305{bottom:665.000020pt;}
.y4_c00305{bottom:682.600020pt;}
.y3_c00305{bottom:699.866686pt;}
.y2_c00305{bottom:716.800020pt;}
.y1_c00305{bottom:750.733353pt;}
.y18_c00305{bottom:788.200020pt;}
.h3_c00305{height:44.470052pt;}
.h4_c00305{height:44.492188pt;}
.h2_c00305{height:52.343750pt;}
.h1_c00305{height:851.333333pt;}
.h0_c00305{height:851.533333pt;}
.w0_c00305{width:570.533360pt;}
.w1_c00305{width:570.666667pt;}
.x0_c00305{left:0.000000pt;}
.x2_c00305{left:71.333333pt;}
.x1_c00305{left:72.666667pt;}
.x5_c00305{left:78.066667pt;}
.x3_c00305{left:85.733333pt;}
.x7_c00305{left:106.533333pt;}
.x6_c00305{left:107.533333pt;}
.x4_c00305{left:127.666667pt;}
.x8_c00305{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_58de97d2dee333e99a8ecae7.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00306;src:url('chunks/assets/font_04d3363e4a6ff5a7a378ce4a.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00306{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00306{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00306{word-spacing:-12.750000px;}
.ws2_c00306{word-spacing:0.000000px;}
._12_c00306{margin-left:-16.644003px;}
._8_c00306{margin-left:-12.420000px;}
._7_c00306{margin-left:-10.980000px;}
._13_c00306{margin-left:-7.643982px;}
._10_c00306{margin-left:-4.998039px;}
._a_c00306{margin-left:-3.900000px;}
._15_c00306{margin-left:-2.763039px;}
._2_c00306{margin-left:-1.680000px;}
._1_c00306{width:1.440000px;}
._3_c00306{width:2.760000px;}
._9_c00306{width:4.320000px;}
._5_c00306{width:5.760000px;}
._6_c00306{width:7.560000px;}
._4_c00306{width:8.760000px;}
._0_c00306{width:9.780000px;}
._c_c00306{width:11.700000px;}
._b_c00306{width:13.080000px;}
._14_c00306{width:14.934126px;}
._e_c00306{width:16.080000px;}
._d_c00306{width:17.400000px;}
._f_c00306{width:19.080000px;}
._11_c00306{width:25.589991px;}
._16_c00306{width:26.673030px;}
.fc1_c00306{color:transparent;}
.fc0_c00306{color:rgb(35,31,32);}
.fs1_c00306{font-size:51.000000px;}
.fs0_c00306{font-size:60.000000px;}
.y0_c00306{bottom:0.000000px;}
.y28_c00306{bottom:64.425022px;}
.y27_c00306{bottom:110.550022px;}
.y26_c00306{bottom:125.325022px;}
.y25_c00306{bottom:141.150022px;}
.y24_c00306{bottom:155.925022px;}
.y23_c00306{bottom:171.375022px;}
.y22_c00306{bottom:186.525022px;}
.y21_c00306{bottom:202.200022px;}
.y20_c00306{bottom:217.125022px;}
.y1f_c00306{bottom:232.575022px;}
.y1e_c00306{bottom:247.725022px;}
.y1d_c00306{bottom:263.550022px;}
.y1b_c00306{bottom:339.825022px;}
.y1a_c00306{bottom:358.950022px;}
.y19_c00306{bottom:378.750022px;}
.y18_c00306{bottom:397.800022px;}
.y17_c00306{bottom:417.225022px;}
.y16_c00306{bottom:437.025022px;}
.y15_c00306{bottom:456.525022px;}
.y14_c00306{bottom:475.575022px;}
.y13_c00306{bottom:495.375022px;}
.y12_c00306{bottom:514.425022px;}
.y11_c00306{bottom:533.925022px;}
.y10_c00306{bottom:553.350022px;}
.yf_c00306{bottom:573.150022px;}
.ye_c00306{bottom:592.200022px;}
.yd_c00306{bottom:611.625022px;}
.yc_c00306{bottom:631.125022px;}
.yb_c00306{bottom:650.550022px;}
.ya_c00306{bottom:669.975022px;}
.y9_c00306{bottom:689.775022px;}
.y8_c00306{bottom:708.825022px;}
.y7_c00306{bottom:728.325022px;}
.y6_c00306{bottom:747.750022px;}
.y5_c00306{bottom:767.550022px;}
.y4_c00306{bottom:786.600022px;}
.y3_c00306{bottom:805.725022px;}
.y2_c00306{bottom:825.150022px;}
.y1_c00306{bottom:844.575022px;}
.y1c_c00306{bottom:886.725022px;}
.h3_c00306{height:50.028809px;}
.h4_c00306{height:50.053711px;}
.h2_c00306{height:58.886719px;}
.h1_c00306{height:957.750000px;}
.h0_c00306{height:957.975000px;}
.w1_c00306{width:643.500000px;}
.w0_c00306{width:643.650000px;}
.x0_c00306{left:0.000000px;}
.x3_c00306{left:90.375000px;}
.x1_c00306{left:91.425000px;}
.x4_c00306{left:97.575000px;}
.x2_c00306{left:107.250000px;}
.x5_c00306{left:131.025000px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls0_c00306{letter-spacing:0.000000pt;}
.ws0_c00306{word-spacing:-13.333333pt;}
.ws1_c00306{word-spacing:-11.333333pt;}
.ws2_c00306{word-spacing:0.000000pt;}
._12_c00306{margin-left:-14.794669pt;}
._8_c00306{margin-left:-11.040000pt;}
._7_c00306{margin-left:-9.760000pt;}
._13_c00306{margin-left:-6.794651pt;}
._10_c00306{margin-left:-4.442701pt;}
._a_c00306{margin-left:-3.466667pt;}
._15_c00306{margin-left:-2.456035pt;}
._2_c00306{margin-left:-1.493333pt;}
._1_c00306{width:1.280000pt;}
._3_c00306{width:2.453333pt;}
._9_c00306{width:3.840000pt;}
._5_c00306{width:5.120000pt;}
._6_c00306{width:6.720000pt;}
._4_c00306{width:7.786667pt;}
._0_c00306{width:8.693333pt;}
._c_c00306{width:10.400000pt;}
._b_c00306{width:11.626667pt;}
._14_c00306{width:13.274779pt;}
._e_c00306{width:14.293333pt;}
._d_c00306{width:15.466667pt;}
._f_c00306{width:16.960000pt;}
._11_c00306{width:22.746659pt;}
._16_c00306{width:23.709360pt;}
.fs1_c00306{font-size:45.333333pt;}
.fs0_c00306{font-size:53.333333pt;}
.y0_c00306{bottom:0.000000pt;}
.y28_c00306{bottom:57.266686pt;}
.y27_c00306{bottom:98.266686pt;}
.y26_c00306{bottom:111.400020pt;}
.y25_c00306{bottom:125.466686pt;}
.y24_c00306{bottom:138.600020pt;}
.y23_c00306{bottom:152.333353pt;}
.y22_c00306{bottom:165.800020pt;}
.y21_c00306{bottom:179.733353pt;}
.y20_c00306{bottom:193.000020pt;}
.y1f_c00306{bottom:206.733353pt;}
.y1e_c00306{bottom:220.200020pt;}
.y1d_c00306{bottom:234.266686pt;}
.y1b_c00306{bottom:302.066686pt;}
.y1a_c00306{bottom:319.066686pt;}
.y19_c00306{bottom:336.666686pt;}
.y18_c00306{bottom:353.600020pt;}
.y17_c00306{bottom:370.866686pt;}
.y16_c00306{bottom:388.466686pt;}
.y15_c00306{bottom:405.800020pt;}
.y14_c00306{bottom:422.733353pt;}
.y13_c00306{bottom:440.333353pt;}
.y12_c00306{bottom:457.266686pt;}
.y11_c00306{bottom:474.600020pt;}
.y10_c00306{bottom:491.866686pt;}
.yf_c00306{bottom:509.466686pt;}
.ye_c00306{bottom:526.400020pt;}
.yd_c00306{bottom:543.666686pt;}
.yc_c00306{bottom:561.000020pt;}
.yb_c00306{bottom:578.266686pt;}
.ya_c00306{bottom:595.533353pt;}
.y9_c00306{bottom:613.133353pt;}
.y8_c00306{bottom:630.066686pt;}
.y7_c00306{bottom:647.400020pt;}
.y6_c00306{bottom:664.666686pt;}
.y5_c00306{bottom:682.266686pt;}
.y4_c00306{bottom:699.200020pt;}
.y3_c00306{bottom:716.200020pt;}
.y2_c00306{bottom:733.466686pt;}
.y1_c00306{bottom:750.733353pt;}
.y1c_c00306{bottom:788.200020pt;}
.h3_c00306{height:44.470052pt;}
.h4_c00306{height:44.492188pt;}
.h2_c00306{height:52.343750pt;}
.h1_c00306{height:851.333333pt;}
.h0_c00306{height:851.533333pt;}
.w1_c00306{width:572.000000pt;}
.w0_c00306{width:572.133333pt;}
.x0_c00306{left:0.000000pt;}
.x3_c00306{left:80.333333pt;}
.x1_c00306{left:81.266667pt;}
.x4_c00306{left:86.733333pt;}
.x2_c00306{left:95.333333pt;}
.x5_c00306{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_142eef4eccb6dc754a1002cd.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00307;src:url('chunks/assets/font_a906b452111fb87836befcda.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00307{letter-spacing:0.000000px;}
.sc__c00307{text-shadow:none;}
.sc0_c00307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00307{-webkit-text-stroke:0px transparent;}
.sc0_c00307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00307{word-spacing:-15.000000px;}
.ws0_c00307{word-spacing:-12.750000px;}
.ws2_c00307{word-spacing:0.000000px;}
._f_c00307{margin-left:-16.542000px;}
._5_c00307{margin-left:-12.480000px;}
._4_c00307{margin-left:-10.920000px;}
._1a_c00307{margin-left:-8.874084px;}
._6_c00307{margin-left:-7.166940px;}
._d_c00307{margin-left:-5.430000px;}
._e_c00307{margin-left:-3.834000px;}
._9_c00307{margin-left:-2.550000px;}
._2_c00307{margin-left:-1.380000px;}
._0_c00307{width:1.020000px;}
._1_c00307{width:2.580000px;}
._3_c00307{width:3.660000px;}
._8_c00307{width:5.661000px;}
._7_c00307{width:7.361967px;}
._c_c00307{width:8.402967px;}
._a_c00307{width:9.480000px;}
._b_c00307{width:10.695066px;}
._15_c00307{width:11.760000px;}
._16_c00307{width:13.440000px;}
._11_c00307{width:16.166940px;}
._10_c00307{width:17.310000px;}
._18_c00307{width:18.431997px;}
._12_c00307{width:19.680000px;}
._14_c00307{width:21.420000px;}
._13_c00307{width:23.100000px;}
._17_c00307{width:25.620000px;}
._19_c00307{width:26.910030px;}
.fc1_c00307{color:transparent;}
.fc0_c00307{color:rgb(35,31,32);}
.fs1_c00307{font-size:51.000000px;}
.fs0_c00307{font-size:60.000000px;}
.y0_c00307{bottom:0.000000px;}
.y23_c00307{bottom:64.425022px;}
.y22_c00307{bottom:110.175022px;}
.y21_c00307{bottom:125.625022px;}
.y20_c00307{bottom:140.775022px;}
.y1f_c00307{bottom:155.925022px;}
.y1e_c00307{bottom:171.375022px;}
.y1d_c00307{bottom:186.525022px;}
.y1c_c00307{bottom:226.725022px;}
.y1b_c00307{bottom:246.225022px;}
.y1a_c00307{bottom:265.725022px;}
.y19_c00307{bottom:284.775022px;}
.y18_c00307{bottom:304.575022px;}
.y17_c00307{bottom:323.625022px;}
.y16_c00307{bottom:343.125022px;}
.y15_c00307{bottom:362.925022px;}
.y14_c00307{bottom:381.975022px;}
.y13_c00307{bottom:401.400022px;}
.y12_c00307{bottom:421.200022px;}
.y11_c00307{bottom:440.325022px;}
.y10_c00307{bottom:459.750022px;}
.yf_c00307{bottom:479.550022px;}
.ye_c00307{bottom:498.975022px;}
.yd_c00307{bottom:538.200022px;}
.yc_c00307{bottom:591.525022px;}
.yb_c00307{bottom:610.950022px;}
.ya_c00307{bottom:630.750022px;}
.y9_c00307{bottom:649.800022px;}
.y8_c00307{bottom:669.225022px;}
.y7_c00307{bottom:689.025022px;}
.y6_c00307{bottom:708.525022px;}
.y5_c00307{bottom:727.575022px;}
.y4_c00307{bottom:767.175022px;}
.y2_c00307{bottom:825.150022px;}
.y1_c00307{bottom:844.575022px;}
.y3_c00307{bottom:886.725022px;}
.h3_c00307{height:50.028809px;}
.h4_c00307{height:50.053711px;}
.h2_c00307{height:58.886719px;}
.h1_c00307{height:957.750000px;}
.h0_c00307{height:957.975000px;}
.w0_c00307{width:641.850030px;}
.w1_c00307{width:642.000000px;}
.x0_c00307{left:0.000000px;}
.x3_c00307{left:80.250000px;}
.x1_c00307{left:81.375000px;}
.x4_c00307{left:87.825000px;}
.x5_c00307{left:121.350000px;}
.x2_c00307{left:143.625000px;}
.x6_c00307{left:531.375000px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls0_c00307{letter-spacing:0.000000pt;}
.ws1_c00307{word-spacing:-13.333333pt;}
.ws0_c00307{word-spacing:-11.333333pt;}
.ws2_c00307{word-spacing:0.000000pt;}
._f_c00307{margin-left:-14.704000pt;}
._5_c00307{margin-left:-11.093333pt;}
._4_c00307{margin-left:-9.706667pt;}
._1a_c00307{margin-left:-7.888075pt;}
._6_c00307{margin-left:-6.370613pt;}
._d_c00307{margin-left:-4.826667pt;}
._e_c00307{margin-left:-3.408000pt;}
._9_c00307{margin-left:-2.266667pt;}
._2_c00307{margin-left:-1.226667pt;}
._0_c00307{width:0.906667pt;}
._1_c00307{width:2.293333pt;}
._3_c00307{width:3.253333pt;}
._8_c00307{width:5.032000pt;}
._7_c00307{width:6.543971pt;}
._c_c00307{width:7.469304pt;}
._a_c00307{width:8.426667pt;}
._b_c00307{width:9.506725pt;}
._15_c00307{width:10.453333pt;}
._16_c00307{width:11.946667pt;}
._11_c00307{width:14.370613pt;}
._10_c00307{width:15.386667pt;}
._18_c00307{width:16.383997pt;}
._12_c00307{width:17.493333pt;}
._14_c00307{width:19.040000pt;}
._13_c00307{width:20.533333pt;}
._17_c00307{width:22.773333pt;}
._19_c00307{width:23.920027pt;}
.fs1_c00307{font-size:45.333333pt;}
.fs0_c00307{font-size:53.333333pt;}
.y0_c00307{bottom:0.000000pt;}
.y23_c00307{bottom:57.266686pt;}
.y22_c00307{bottom:97.933353pt;}
.y21_c00307{bottom:111.666686pt;}
.y20_c00307{bottom:125.133353pt;}
.y1f_c00307{bottom:138.600020pt;}
.y1e_c00307{bottom:152.333353pt;}
.y1d_c00307{bottom:165.800020pt;}
.y1c_c00307{bottom:201.533353pt;}
.y1b_c00307{bottom:218.866686pt;}
.y1a_c00307{bottom:236.200020pt;}
.y19_c00307{bottom:253.133353pt;}
.y18_c00307{bottom:270.733353pt;}
.y17_c00307{bottom:287.666686pt;}
.y16_c00307{bottom:305.000020pt;}
.y15_c00307{bottom:322.600020pt;}
.y14_c00307{bottom:339.533353pt;}
.y13_c00307{bottom:356.800020pt;}
.y12_c00307{bottom:374.400020pt;}
.y11_c00307{bottom:391.400020pt;}
.y10_c00307{bottom:408.666686pt;}
.yf_c00307{bottom:426.266686pt;}
.ye_c00307{bottom:443.533353pt;}
.yd_c00307{bottom:478.400020pt;}
.yc_c00307{bottom:525.800020pt;}
.yb_c00307{bottom:543.066686pt;}
.ya_c00307{bottom:560.666686pt;}
.y9_c00307{bottom:577.600020pt;}
.y8_c00307{bottom:594.866686pt;}
.y7_c00307{bottom:612.466686pt;}
.y6_c00307{bottom:629.800020pt;}
.y5_c00307{bottom:646.733353pt;}
.y4_c00307{bottom:681.933353pt;}
.y2_c00307{bottom:733.466686pt;}
.y1_c00307{bottom:750.733353pt;}
.y3_c00307{bottom:788.200020pt;}
.h3_c00307{height:44.470052pt;}
.h4_c00307{height:44.492188pt;}
.h2_c00307{height:52.343750pt;}
.h1_c00307{height:851.333333pt;}
.h0_c00307{height:851.533333pt;}
.w0_c00307{width:570.533360pt;}
.w1_c00307{width:570.666667pt;}
.x0_c00307{left:0.000000pt;}
.x3_c00307{left:71.333333pt;}
.x1_c00307{left:72.333333pt;}
.x4_c00307{left:78.066667pt;}
.x5_c00307{left:107.866667pt;}
.x2_c00307{left:127.666667pt;}
.x6_c00307{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_25bf0e738f89bbaf305748a2.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00308;src:url('chunks/assets/font_8f1394371bf622a459122e68.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00308{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00308{letter-spacing:0.000000px;}
.sc__c00308{text-shadow:none;}
.sc0_c00308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00308{-webkit-text-stroke:0px transparent;}
.sc0_c00308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00308{word-spacing:-15.000000px;}
.ws0_c00308{word-spacing:-12.750000px;}
.ws2_c00308{word-spacing:0.000000px;}
._11_c00308{margin-left:-15.420000px;}
._14_c00308{margin-left:-14.100000px;}
._a_c00308{margin-left:-12.660000px;}
._9_c00308{margin-left:-10.740000px;}
._16_c00308{margin-left:-9.720000px;}
._12_c00308{margin-left:-8.460000px;}
._8_c00308{margin-left:-7.260000px;}
._1b_c00308{margin-left:-6.158985px;}
._f_c00308{margin-left:-4.980000px;}
._e_c00308{margin-left:-3.900000px;}
._6_c00308{margin-left:-2.760000px;}
._7_c00308{margin-left:-1.260000px;}
._0_c00308{width:1.500000px;}
._1_c00308{width:3.300000px;}
._b_c00308{width:4.860000px;}
._13_c00308{width:6.360000px;}
._2_c00308{width:7.860000px;}
._4_c00308{width:9.540000px;}
._15_c00308{width:10.560000px;}
._5_c00308{width:11.640000px;}
._3_c00308{width:12.720000px;}
._18_c00308{width:13.806012px;}
._c_c00308{width:16.020000px;}
._10_c00308{width:17.640000px;}
._d_c00308{width:18.780000px;}
._21_c00308{width:19.913955px;}
._22_c00308{width:21.054018px;}
._20_c00308{width:22.566021px;}
._1f_c00308{width:24.390000px;}
._17_c00308{width:25.590000px;}
._19_c00308{width:27.089991px;}
._1a_c00308{width:28.590093px;}
._1d_c00308{width:47.103027px;}
._1e_c00308{width:48.134955px;}
._1c_c00308{width:49.449021px;}
.fc1_c00308{color:transparent;}
.fc0_c00308{color:rgb(35,31,32);}
.fs1_c00308{font-size:51.000000px;}
.fs0_c00308{font-size:60.000000px;}
.y0_c00308{bottom:0.000000px;}
.y2a_c00308{bottom:64.425022px;}
.y29_c00308{bottom:110.175022px;}
.y28_c00308{bottom:125.325022px;}
.y27_c00308{bottom:141.150022px;}
.y26_c00308{bottom:155.925022px;}
.y25_c00308{bottom:171.750022px;}
.y24_c00308{bottom:186.825022px;}
.y23_c00308{bottom:201.975022px;}
.y22_c00308{bottom:217.125022px;}
.y21_c00308{bottom:232.575022px;}
.y20_c00308{bottom:247.725022px;}
.y1f_c00308{bottom:263.175022px;}
.y1e_c00308{bottom:278.625022px;}
.y1c_c00308{bottom:320.400022px;}
.y1b_c00308{bottom:339.525022px;}
.y1a_c00308{bottom:359.325022px;}
.y19_c00308{bottom:378.750022px;}
.y18_c00308{bottom:397.800022px;}
.y17_c00308{bottom:417.600022px;}
.y16_c00308{bottom:437.025022px;}
.y15_c00308{bottom:456.150022px;}
.y14_c00308{bottom:475.575022px;}
.y13_c00308{bottom:495.375022px;}
.y12_c00308{bottom:514.800022px;}
.y11_c00308{bottom:533.925022px;}
.y10_c00308{bottom:553.725022px;}
.yf_c00308{bottom:573.150022px;}
.ye_c00308{bottom:592.200022px;}
.yd_c00308{bottom:612.000022px;}
.yc_c00308{bottom:631.425022px;}
.yb_c00308{bottom:650.550022px;}
.ya_c00308{bottom:669.975022px;}
.y9_c00308{bottom:689.400022px;}
.y8_c00308{bottom:709.200022px;}
.y7_c00308{bottom:728.325022px;}
.y6_c00308{bottom:748.125022px;}
.y5_c00308{bottom:767.550022px;}
.y4_c00308{bottom:786.225022px;}
.y3_c00308{bottom:806.100022px;}
.y2_c00308{bottom:825.525022px;}
.y1_c00308{bottom:844.950022px;}
.y1d_c00308{bottom:886.725022px;}
.h3_c00308{height:50.028809px;}
.h4_c00308{height:50.053711px;}
.h2_c00308{height:58.886719px;}
.h1_c00308{height:957.750000px;}
.h0_c00308{height:957.975000px;}
.w1_c00308{width:643.500000px;}
.w0_c00308{width:643.650000px;}
.x0_c00308{left:0.000000px;}
.x1_c00308{left:91.050000px;}
.x3_c00308{left:97.575000px;}
.x2_c00308{left:107.250000px;}
.x4_c00308{left:131.400000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls0_c00308{letter-spacing:0.000000pt;}
.ws1_c00308{word-spacing:-13.333333pt;}
.ws0_c00308{word-spacing:-11.333333pt;}
.ws2_c00308{word-spacing:0.000000pt;}
._11_c00308{margin-left:-13.706667pt;}
._14_c00308{margin-left:-12.533333pt;}
._a_c00308{margin-left:-11.253333pt;}
._9_c00308{margin-left:-9.546667pt;}
._16_c00308{margin-left:-8.640000pt;}
._12_c00308{margin-left:-7.520000pt;}
._8_c00308{margin-left:-6.453333pt;}
._1b_c00308{margin-left:-5.474653pt;}
._f_c00308{margin-left:-4.426667pt;}
._e_c00308{margin-left:-3.466667pt;}
._6_c00308{margin-left:-2.453333pt;}
._7_c00308{margin-left:-1.120000pt;}
._0_c00308{width:1.333333pt;}
._1_c00308{width:2.933333pt;}
._b_c00308{width:4.320000pt;}
._13_c00308{width:5.653333pt;}
._2_c00308{width:6.986667pt;}
._4_c00308{width:8.480000pt;}
._15_c00308{width:9.386667pt;}
._5_c00308{width:10.346667pt;}
._3_c00308{width:11.306667pt;}
._18_c00308{width:12.272011pt;}
._c_c00308{width:14.240000pt;}
._10_c00308{width:15.680000pt;}
._d_c00308{width:16.693333pt;}
._21_c00308{width:17.701293pt;}
._22_c00308{width:18.714683pt;}
._20_c00308{width:20.058685pt;}
._1f_c00308{width:21.680000pt;}
._17_c00308{width:22.746667pt;}
._19_c00308{width:24.079992pt;}
._1a_c00308{width:25.413416pt;}
._1d_c00308{width:41.869357pt;}
._1e_c00308{width:42.786627pt;}
._1c_c00308{width:43.954685pt;}
.fs1_c00308{font-size:45.333333pt;}
.fs0_c00308{font-size:53.333333pt;}
.y0_c00308{bottom:0.000000pt;}
.y2a_c00308{bottom:57.266686pt;}
.y29_c00308{bottom:97.933353pt;}
.y28_c00308{bottom:111.400020pt;}
.y27_c00308{bottom:125.466686pt;}
.y26_c00308{bottom:138.600020pt;}
.y25_c00308{bottom:152.666686pt;}
.y24_c00308{bottom:166.066686pt;}
.y23_c00308{bottom:179.533353pt;}
.y22_c00308{bottom:193.000020pt;}
.y21_c00308{bottom:206.733353pt;}
.y20_c00308{bottom:220.200020pt;}
.y1f_c00308{bottom:233.933353pt;}
.y1e_c00308{bottom:247.666686pt;}
.y1c_c00308{bottom:284.800020pt;}
.y1b_c00308{bottom:301.800020pt;}
.y1a_c00308{bottom:319.400020pt;}
.y19_c00308{bottom:336.666686pt;}
.y18_c00308{bottom:353.600020pt;}
.y17_c00308{bottom:371.200020pt;}
.y16_c00308{bottom:388.466686pt;}
.y15_c00308{bottom:405.466686pt;}
.y14_c00308{bottom:422.733353pt;}
.y13_c00308{bottom:440.333353pt;}
.y12_c00308{bottom:457.600020pt;}
.y11_c00308{bottom:474.600020pt;}
.y10_c00308{bottom:492.200020pt;}
.yf_c00308{bottom:509.466686pt;}
.ye_c00308{bottom:526.400020pt;}
.yd_c00308{bottom:544.000020pt;}
.yc_c00308{bottom:561.266686pt;}
.yb_c00308{bottom:578.266686pt;}
.ya_c00308{bottom:595.533353pt;}
.y9_c00308{bottom:612.800020pt;}
.y8_c00308{bottom:630.400020pt;}
.y7_c00308{bottom:647.400020pt;}
.y6_c00308{bottom:665.000020pt;}
.y5_c00308{bottom:682.266686pt;}
.y4_c00308{bottom:698.866686pt;}
.y3_c00308{bottom:716.533353pt;}
.y2_c00308{bottom:733.800020pt;}
.y1_c00308{bottom:751.066686pt;}
.y1d_c00308{bottom:788.200020pt;}
.h3_c00308{height:44.470052pt;}
.h4_c00308{height:44.492188pt;}
.h2_c00308{height:52.343750pt;}
.h1_c00308{height:851.333333pt;}
.h0_c00308{height:851.533333pt;}
.w1_c00308{width:572.000000pt;}
.w0_c00308{width:572.133333pt;}
.x0_c00308{left:0.000000pt;}
.x1_c00308{left:80.933333pt;}
.x3_c00308{left:86.733333pt;}
.x2_c00308{left:95.333333pt;}
.x4_c00308{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c162533a0880da9738230019.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00309;src:url('chunks/assets/font_f5d53d15cba01f2c836fcc20.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00309{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00309{word-spacing:-15.000000px;}
.ws1_c00309{word-spacing:-12.750000px;}
.ws2_c00309{word-spacing:0.000000px;}
._13_c00309{margin-left:-14.820000px;}
._b_c00309{margin-left:-11.940000px;}
._11_c00309{margin-left:-10.380000px;}
._16_c00309{margin-left:-7.980000px;}
._a_c00309{margin-left:-6.000000px;}
._c_c00309{margin-left:-4.800000px;}
._1d_c00309{margin-left:-3.654096px;}
._15_c00309{margin-left:-2.640000px;}
._3_c00309{margin-left:-1.560000px;}
._0_c00309{width:1.200000px;}
._2_c00309{width:2.220000px;}
._10_c00309{width:3.240000px;}
._f_c00309{width:4.260000px;}
._14_c00309{width:5.400000px;}
._12_c00309{width:6.780000px;}
._e_c00309{width:8.280000px;}
._9_c00309{width:9.540000px;}
._d_c00309{width:10.800000px;}
._4_c00309{width:11.820000px;}
._1_c00309{width:13.080000px;}
._1c_c00309{width:14.646012px;}
._8_c00309{width:16.920000px;}
._7_c00309{width:18.360000px;}
._6_c00309{width:19.680000px;}
._5_c00309{width:21.120000px;}
._18_c00309{width:22.530000px;}
._1a_c00309{width:23.744967px;}
._19_c00309{width:24.833994px;}
._17_c00309{width:25.890000px;}
._1f_c00309{width:26.904126px;}
._1e_c00309{width:28.404096px;}
._1b_c00309{width:29.754048px;}
.fc1_c00309{color:transparent;}
.fc0_c00309{color:rgb(35,31,32);}
.fs1_c00309{font-size:51.000000px;}
.fs0_c00309{font-size:60.000000px;}
.y0_c00309{bottom:0.000000px;}
.y2a_c00309{bottom:64.425022px;}
.y29_c00309{bottom:110.175022px;}
.y28_c00309{bottom:125.625022px;}
.y27_c00309{bottom:140.775022px;}
.y26_c00309{bottom:156.225022px;}
.y25_c00309{bottom:171.750022px;}
.y24_c00309{bottom:186.525022px;}
.y23_c00309{bottom:201.975022px;}
.y22_c00309{bottom:217.125022px;}
.y21_c00309{bottom:232.950022px;}
.y20_c00309{bottom:248.025022px;}
.y1f_c00309{bottom:263.175022px;}
.y1e_c00309{bottom:278.325022px;}
.y1d_c00309{bottom:293.775022px;}
.y1c_c00309{bottom:308.925022px;}
.y1a_c00309{bottom:359.325022px;}
.y19_c00309{bottom:378.375022px;}
.y18_c00309{bottom:398.175022px;}
.y17_c00309{bottom:417.225022px;}
.y16_c00309{bottom:437.025022px;}
.y15_c00309{bottom:456.150022px;}
.y14_c00309{bottom:475.575022px;}
.y13_c00309{bottom:495.375022px;}
.y12_c00309{bottom:514.800022px;}
.y11_c00309{bottom:534.225022px;}
.y10_c00309{bottom:553.350022px;}
.yf_c00309{bottom:572.775022px;}
.ye_c00309{bottom:592.575022px;}
.yd_c00309{bottom:612.000022px;}
.yc_c00309{bottom:631.125022px;}
.yb_c00309{bottom:650.925022px;}
.ya_c00309{bottom:669.975022px;}
.y9_c00309{bottom:689.775022px;}
.y8_c00309{bottom:709.200022px;}
.y7_c00309{bottom:728.625022px;}
.y6_c00309{bottom:747.750022px;}
.y5_c00309{bottom:767.475022px;}
.y4_c00309{bottom:786.600022px;}
.y3_c00309{bottom:805.725022px;}
.y2_c00309{bottom:825.150022px;}
.y1_c00309{bottom:844.575022px;}
.y1b_c00309{bottom:886.725022px;}
.h3_c00309{height:50.028809px;}
.h4_c00309{height:50.053711px;}
.h2_c00309{height:58.886719px;}
.h1_c00309{height:957.750000px;}
.h0_c00309{height:957.975000px;}
.w0_c00309{width:641.850030px;}
.w1_c00309{width:642.000000px;}
.x0_c00309{left:0.000000px;}
.x3_c00309{left:80.250000px;}
.x1_c00309{left:81.375000px;}
.x5_c00309{left:87.825000px;}
.x2_c00309{left:97.200000px;}
.x6_c00309{left:121.350000px;}
.x4_c00309{left:143.625000px;}
.x7_c00309{left:531.375000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls0_c00309{letter-spacing:0.000000pt;}
.ws0_c00309{word-spacing:-13.333333pt;}
.ws1_c00309{word-spacing:-11.333333pt;}
.ws2_c00309{word-spacing:0.000000pt;}
._13_c00309{margin-left:-13.173333pt;}
._b_c00309{margin-left:-10.613333pt;}
._11_c00309{margin-left:-9.226667pt;}
._16_c00309{margin-left:-7.093333pt;}
._a_c00309{margin-left:-5.333333pt;}
._c_c00309{margin-left:-4.266667pt;}
._1d_c00309{margin-left:-3.248085pt;}
._15_c00309{margin-left:-2.346667pt;}
._3_c00309{margin-left:-1.386667pt;}
._0_c00309{width:1.066667pt;}
._2_c00309{width:1.973333pt;}
._10_c00309{width:2.880000pt;}
._f_c00309{width:3.786667pt;}
._14_c00309{width:4.800000pt;}
._12_c00309{width:6.026667pt;}
._e_c00309{width:7.360000pt;}
._9_c00309{width:8.480000pt;}
._d_c00309{width:9.600000pt;}
._4_c00309{width:10.506667pt;}
._1_c00309{width:11.626667pt;}
._1c_c00309{width:13.018677pt;}
._8_c00309{width:15.040000pt;}
._7_c00309{width:16.320000pt;}
._6_c00309{width:17.493333pt;}
._5_c00309{width:18.773333pt;}
._18_c00309{width:20.026667pt;}
._1a_c00309{width:21.106637pt;}
._19_c00309{width:22.074661pt;}
._17_c00309{width:23.013333pt;}
._1f_c00309{width:23.914779pt;}
._1e_c00309{width:25.248085pt;}
._1b_c00309{width:26.448043pt;}
.fs1_c00309{font-size:45.333333pt;}
.fs0_c00309{font-size:53.333333pt;}
.y0_c00309{bottom:0.000000pt;}
.y2a_c00309{bottom:57.266686pt;}
.y29_c00309{bottom:97.933353pt;}
.y28_c00309{bottom:111.666686pt;}
.y27_c00309{bottom:125.133353pt;}
.y26_c00309{bottom:138.866686pt;}
.y25_c00309{bottom:152.666686pt;}
.y24_c00309{bottom:165.800020pt;}
.y23_c00309{bottom:179.533353pt;}
.y22_c00309{bottom:193.000020pt;}
.y21_c00309{bottom:207.066686pt;}
.y20_c00309{bottom:220.466686pt;}
.y1f_c00309{bottom:233.933353pt;}
.y1e_c00309{bottom:247.400020pt;}
.y1d_c00309{bottom:261.133353pt;}
.y1c_c00309{bottom:274.600020pt;}
.y1a_c00309{bottom:319.400020pt;}
.y19_c00309{bottom:336.333353pt;}
.y18_c00309{bottom:353.933353pt;}
.y17_c00309{bottom:370.866686pt;}
.y16_c00309{bottom:388.466686pt;}
.y15_c00309{bottom:405.466686pt;}
.y14_c00309{bottom:422.733353pt;}
.y13_c00309{bottom:440.333353pt;}
.y12_c00309{bottom:457.600020pt;}
.y11_c00309{bottom:474.866686pt;}
.y10_c00309{bottom:491.866686pt;}
.yf_c00309{bottom:509.133353pt;}
.ye_c00309{bottom:526.733353pt;}
.yd_c00309{bottom:544.000020pt;}
.yc_c00309{bottom:561.000020pt;}
.yb_c00309{bottom:578.600020pt;}
.ya_c00309{bottom:595.533353pt;}
.y9_c00309{bottom:613.133353pt;}
.y8_c00309{bottom:630.400020pt;}
.y7_c00309{bottom:647.666686pt;}
.y6_c00309{bottom:664.666686pt;}
.y5_c00309{bottom:682.200020pt;}
.y4_c00309{bottom:699.200020pt;}
.y3_c00309{bottom:716.200020pt;}
.y2_c00309{bottom:733.466686pt;}
.y1_c00309{bottom:750.733353pt;}
.y1b_c00309{bottom:788.200020pt;}
.h3_c00309{height:44.470052pt;}
.h4_c00309{height:44.492188pt;}
.h2_c00309{height:52.343750pt;}
.h1_c00309{height:851.333333pt;}
.h0_c00309{height:851.533333pt;}
.w0_c00309{width:570.533360pt;}
.w1_c00309{width:570.666667pt;}
.x0_c00309{left:0.000000pt;}
.x3_c00309{left:71.333333pt;}
.x1_c00309{left:72.333333pt;}
.x5_c00309{left:78.066667pt;}
.x2_c00309{left:86.400000pt;}
.x6_c00309{left:107.866667pt;}
.x4_c00309{left:127.666667pt;}
.x7_c00309{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e50cbb4f5165cba4d85a7f7.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00310;src:url('chunks/assets/font_1fdf5795c93b9d1390555bdc.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00310{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00310{word-spacing:-15.000000px;}
.ws1_c00310{word-spacing:-12.750000px;}
.ws2_c00310{word-spacing:0.000000px;}
._9_c00310{margin-left:-11.946135px;}
._d_c00310{margin-left:-10.884324px;}
._12_c00310{margin-left:-7.122057px;}
._18_c00310{margin-left:-5.851845px;}
._11_c00310{margin-left:-4.806312px;}
._4_c00310{margin-left:-3.804243px;}
._0_c00310{margin-left:-2.622012px;}
._2_c00310{margin-left:-1.539027px;}
._3_c00310{width:1.062024px;}
._1_c00310{width:2.400009px;}
._5_c00310{width:3.797967px;}
._6_c00310{width:4.901766px;}
._8_c00310{width:6.240237px;}
._7_c00310{width:8.069880px;}
._c_c00310{width:10.385823px;}
._b_c00310{width:11.888478px;}
._a_c00310{width:13.338405px;}
._17_c00310{width:14.599650px;}
._10_c00310{width:16.271826px;}
._e_c00310{width:17.340000px;}
._f_c00310{width:19.127856px;}
._14_c00310{width:20.385108px;}
._15_c00310{width:22.455321px;}
._16_c00310{width:25.206108px;}
._13_c00310{width:26.706108px;}
.fc1_c00310{color:transparent;}
.fc0_c00310{color:rgb(35,31,32);}
.fs0_c00310{font-size:51.000000px;}
.fs1_c00310{font-size:60.000000px;}
.y0_c00310{bottom:0.000000px;}
.y2a_c00310{bottom:64.425022px;}
.y29_c00310{bottom:110.175022px;}
.y28_c00310{bottom:125.325022px;}
.y27_c00310{bottom:141.150022px;}
.y26_c00310{bottom:155.925022px;}
.y25_c00310{bottom:171.375022px;}
.y24_c00310{bottom:186.525022px;}
.y23_c00310{bottom:201.975022px;}
.y22_c00310{bottom:217.125022px;}
.y21_c00310{bottom:232.575022px;}
.y20_c00310{bottom:247.725022px;}
.y1f_c00310{bottom:263.175022px;}
.y1e_c00310{bottom:278.325022px;}
.y1d_c00310{bottom:293.775022px;}
.y1c_c00310{bottom:339.825022px;}
.y1b_c00310{bottom:359.325022px;}
.y1a_c00310{bottom:378.750022px;}
.y19_c00310{bottom:397.800022px;}
.y18_c00310{bottom:417.600022px;}
.y17_c00310{bottom:436.725022px;}
.y16_c00310{bottom:456.525022px;}
.y15_c00310{bottom:475.575022px;}
.y14_c00310{bottom:495.375022px;}
.y13_c00310{bottom:514.425022px;}
.y12_c00310{bottom:534.225022px;}
.y11_c00310{bottom:553.350022px;}
.y10_c00310{bottom:573.150022px;}
.yf_c00310{bottom:592.200022px;}
.ye_c00310{bottom:611.625022px;}
.yd_c00310{bottom:631.125022px;}
.yc_c00310{bottom:650.925022px;}
.yb_c00310{bottom:670.350022px;}
.ya_c00310{bottom:689.400022px;}
.y9_c00310{bottom:708.825022px;}
.y8_c00310{bottom:728.700022px;}
.y7_c00310{bottom:748.125022px;}
.y6_c00310{bottom:767.550022px;}
.y5_c00310{bottom:786.600022px;}
.y4_c00310{bottom:805.725022px;}
.y3_c00310{bottom:825.150022px;}
.y2_c00310{bottom:844.575022px;}
.y1_c00310{bottom:886.725022px;}
.h2_c00310{height:50.028809px;}
.h4_c00310{height:50.053711px;}
.h3_c00310{height:58.886719px;}
.h1_c00310{height:957.750000px;}
.h0_c00310{height:957.975000px;}
.w1_c00310{width:643.500000px;}
.w0_c00310{width:643.650000px;}
.x0_c00310{left:0.000000px;}
.x1_c00310{left:91.050000px;}
.x3_c00310{left:97.575000px;}
.x2_c00310{left:106.950000px;}
.x4_c00310{left:131.025000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls0_c00310{letter-spacing:0.000000pt;}
.ws0_c00310{word-spacing:-13.333333pt;}
.ws1_c00310{word-spacing:-11.333333pt;}
.ws2_c00310{word-spacing:0.000000pt;}
._9_c00310{margin-left:-10.618787pt;}
._d_c00310{margin-left:-9.674955pt;}
._12_c00310{margin-left:-6.330717pt;}
._18_c00310{margin-left:-5.201640pt;}
._11_c00310{margin-left:-4.272277pt;}
._4_c00310{margin-left:-3.381549pt;}
._0_c00310{margin-left:-2.330677pt;}
._2_c00310{margin-left:-1.368024pt;}
._3_c00310{width:0.944021pt;}
._1_c00310{width:2.133341pt;}
._5_c00310{width:3.375971pt;}
._6_c00310{width:4.357125pt;}
._8_c00310{width:5.546877pt;}
._7_c00310{width:7.173227pt;}
._c_c00310{width:9.231843pt;}
._b_c00310{width:10.567536pt;}
._a_c00310{width:11.856360pt;}
._17_c00310{width:12.977467pt;}
._10_c00310{width:14.463845pt;}
._e_c00310{width:15.413333pt;}
._f_c00310{width:17.002539pt;}
._14_c00310{width:18.120096pt;}
._15_c00310{width:19.960285pt;}
._16_c00310{width:22.405429pt;}
._13_c00310{width:23.738763pt;}
.fs0_c00310{font-size:45.333333pt;}
.fs1_c00310{font-size:53.333333pt;}
.y0_c00310{bottom:0.000000pt;}
.y2a_c00310{bottom:57.266686pt;}
.y29_c00310{bottom:97.933353pt;}
.y28_c00310{bottom:111.400020pt;}
.y27_c00310{bottom:125.466686pt;}
.y26_c00310{bottom:138.600020pt;}
.y25_c00310{bottom:152.333353pt;}
.y24_c00310{bottom:165.800020pt;}
.y23_c00310{bottom:179.533353pt;}
.y22_c00310{bottom:193.000020pt;}
.y21_c00310{bottom:206.733353pt;}
.y20_c00310{bottom:220.200020pt;}
.y1f_c00310{bottom:233.933353pt;}
.y1e_c00310{bottom:247.400020pt;}
.y1d_c00310{bottom:261.133353pt;}
.y1c_c00310{bottom:302.066686pt;}
.y1b_c00310{bottom:319.400020pt;}
.y1a_c00310{bottom:336.666686pt;}
.y19_c00310{bottom:353.600020pt;}
.y18_c00310{bottom:371.200020pt;}
.y17_c00310{bottom:388.200020pt;}
.y16_c00310{bottom:405.800020pt;}
.y15_c00310{bottom:422.733353pt;}
.y14_c00310{bottom:440.333353pt;}
.y13_c00310{bottom:457.266686pt;}
.y12_c00310{bottom:474.866686pt;}
.y11_c00310{bottom:491.866686pt;}
.y10_c00310{bottom:509.466686pt;}
.yf_c00310{bottom:526.400020pt;}
.ye_c00310{bottom:543.666686pt;}
.yd_c00310{bottom:561.000020pt;}
.yc_c00310{bottom:578.600020pt;}
.yb_c00310{bottom:595.866686pt;}
.ya_c00310{bottom:612.800020pt;}
.y9_c00310{bottom:630.066686pt;}
.y8_c00310{bottom:647.733353pt;}
.y7_c00310{bottom:665.000020pt;}
.y6_c00310{bottom:682.266686pt;}
.y5_c00310{bottom:699.200020pt;}
.y4_c00310{bottom:716.200020pt;}
.y3_c00310{bottom:733.466686pt;}
.y2_c00310{bottom:750.733353pt;}
.y1_c00310{bottom:788.200020pt;}
.h2_c00310{height:44.470052pt;}
.h4_c00310{height:44.492188pt;}
.h3_c00310{height:52.343750pt;}
.h1_c00310{height:851.333333pt;}
.h0_c00310{height:851.533333pt;}
.w1_c00310{width:572.000000pt;}
.w0_c00310{width:572.133333pt;}
.x0_c00310{left:0.000000pt;}
.x1_c00310{left:80.933333pt;}
.x3_c00310{left:86.733333pt;}
.x2_c00310{left:95.066667pt;}
.x4_c00310{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_920d0fbb76bd839e6cf10aa6.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00311;src:url('chunks/assets/font_afef4a5460a87b89d4330236.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00311{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00311{letter-spacing:0.000000px;}
.sc__c00311{text-shadow:none;}
.sc0_c00311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00311{-webkit-text-stroke:0px transparent;}
.sc0_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00311{word-spacing:-15.000000px;}
.ws1_c00311{word-spacing:-12.750000px;}
.ws2_c00311{word-spacing:0.000000px;}
._4_c00311{margin-left:-12.660000px;}
._3_c00311{margin-left:-10.740000px;}
._11_c00311{margin-left:-6.986940px;}
._d_c00311{margin-left:-4.800000px;}
._19_c00311{margin-left:-3.752979px;}
._c_c00311{margin-left:-2.640000px;}
._b_c00311{margin-left:-1.500000px;}
._1_c00311{width:1.080000px;}
._0_c00311{width:2.100000px;}
._9_c00311{width:3.480000px;}
._10_c00311{width:4.500000px;}
._7_c00311{width:5.520000px;}
._2_c00311{width:6.600000px;}
._6_c00311{width:8.400000px;}
._5_c00311{width:10.260000px;}
._8_c00311{width:11.580000px;}
._a_c00311{width:12.900000px;}
._18_c00311{width:17.126940px;}
._f_c00311{width:18.180000px;}
._e_c00311{width:20.100000px;}
._14_c00311{width:21.360000px;}
._12_c00311{width:23.160000px;}
._13_c00311{width:24.180000px;}
._15_c00311{width:26.700000px;}
._16_c00311{width:28.440000px;}
._17_c00311{width:30.120000px;}
.fc1_c00311{color:transparent;}
.fc0_c00311{color:rgb(35,31,32);}
.fs1_c00311{font-size:51.000000px;}
.fs0_c00311{font-size:60.000000px;}
.y0_c00311{bottom:0.000000px;}
.y26_c00311{bottom:64.425022px;}
.y25_c00311{bottom:110.475022px;}
.y24_c00311{bottom:125.625022px;}
.y23_c00311{bottom:140.775022px;}
.y22_c00311{bottom:155.925022px;}
.y21_c00311{bottom:171.750022px;}
.y20_c00311{bottom:186.525022px;}
.y1f_c00311{bottom:201.975022px;}
.y1e_c00311{bottom:241.950022px;}
.y1d_c00311{bottom:261.750022px;}
.y1c_c00311{bottom:281.175022px;}
.y1b_c00311{bottom:300.600022px;}
.y1a_c00311{bottom:319.725022px;}
.y19_c00311{bottom:339.150022px;}
.y18_c00311{bottom:358.575022px;}
.y17_c00311{bottom:378.000022px;}
.y16_c00311{bottom:397.425022px;}
.y15_c00311{bottom:416.850022px;}
.y14_c00311{bottom:435.975022px;}
.y13_c00311{bottom:477.750022px;}
.y11_c00311{bottom:534.225022px;}
.y10_c00311{bottom:553.350022px;}
.yf_c00311{bottom:573.150022px;}
.ye_c00311{bottom:592.575022px;}
.yd_c00311{bottom:612.000022px;}
.yc_c00311{bottom:631.125022px;}
.yb_c00311{bottom:650.925022px;}
.ya_c00311{bottom:670.350022px;}
.y9_c00311{bottom:689.400022px;}
.y8_c00311{bottom:709.200022px;}
.y7_c00311{bottom:728.625022px;}
.y6_c00311{bottom:748.125022px;}
.y5_c00311{bottom:767.025022px;}
.y4_c00311{bottom:786.525022px;}
.y3_c00311{bottom:806.025022px;}
.y2_c00311{bottom:825.525022px;}
.y1_c00311{bottom:844.575022px;}
.y12_c00311{bottom:886.725022px;}
.h3_c00311{height:50.028809px;}
.h4_c00311{height:50.053711px;}
.h2_c00311{height:58.886719px;}
.h1_c00311{height:957.750000px;}
.h0_c00311{height:957.975000px;}
.w0_c00311{width:641.850030px;}
.w1_c00311{width:642.000000px;}
.x0_c00311{left:0.000000px;}
.x2_c00311{left:80.250000px;}
.x1_c00311{left:81.375000px;}
.x4_c00311{left:87.825000px;}
.x5_c00311{left:121.350000px;}
.x3_c00311{left:143.625000px;}
.x6_c00311{left:531.375000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls0_c00311{letter-spacing:0.000000pt;}
.ws0_c00311{word-spacing:-13.333333pt;}
.ws1_c00311{word-spacing:-11.333333pt;}
.ws2_c00311{word-spacing:0.000000pt;}
._4_c00311{margin-left:-11.253333pt;}
._3_c00311{margin-left:-9.546667pt;}
._11_c00311{margin-left:-6.210613pt;}
._d_c00311{margin-left:-4.266667pt;}
._19_c00311{margin-left:-3.335981pt;}
._c_c00311{margin-left:-2.346667pt;}
._b_c00311{margin-left:-1.333333pt;}
._1_c00311{width:0.960000pt;}
._0_c00311{width:1.866667pt;}
._9_c00311{width:3.093333pt;}
._10_c00311{width:4.000000pt;}
._7_c00311{width:4.906667pt;}
._2_c00311{width:5.866667pt;}
._6_c00311{width:7.466667pt;}
._5_c00311{width:9.120000pt;}
._8_c00311{width:10.293333pt;}
._a_c00311{width:11.466667pt;}
._18_c00311{width:15.223947pt;}
._f_c00311{width:16.160000pt;}
._e_c00311{width:17.866667pt;}
._14_c00311{width:18.986667pt;}
._12_c00311{width:20.586667pt;}
._13_c00311{width:21.493333pt;}
._15_c00311{width:23.733333pt;}
._16_c00311{width:25.280000pt;}
._17_c00311{width:26.773333pt;}
.fs1_c00311{font-size:45.333333pt;}
.fs0_c00311{font-size:53.333333pt;}
.y0_c00311{bottom:0.000000pt;}
.y26_c00311{bottom:57.266686pt;}
.y25_c00311{bottom:98.200020pt;}
.y24_c00311{bottom:111.666686pt;}
.y23_c00311{bottom:125.133353pt;}
.y22_c00311{bottom:138.600020pt;}
.y21_c00311{bottom:152.666686pt;}
.y20_c00311{bottom:165.800020pt;}
.y1f_c00311{bottom:179.533353pt;}
.y1e_c00311{bottom:215.066686pt;}
.y1d_c00311{bottom:232.666686pt;}
.y1c_c00311{bottom:249.933353pt;}
.y1b_c00311{bottom:267.200020pt;}
.y1a_c00311{bottom:284.200020pt;}
.y19_c00311{bottom:301.466686pt;}
.y18_c00311{bottom:318.733353pt;}
.y17_c00311{bottom:336.000020pt;}
.y16_c00311{bottom:353.266686pt;}
.y15_c00311{bottom:370.533353pt;}
.y14_c00311{bottom:387.533353pt;}
.y13_c00311{bottom:424.666686pt;}
.y11_c00311{bottom:474.866686pt;}
.y10_c00311{bottom:491.866686pt;}
.yf_c00311{bottom:509.466686pt;}
.ye_c00311{bottom:526.733353pt;}
.yd_c00311{bottom:544.000020pt;}
.yc_c00311{bottom:561.000020pt;}
.yb_c00311{bottom:578.600020pt;}
.ya_c00311{bottom:595.866686pt;}
.y9_c00311{bottom:612.800020pt;}
.y8_c00311{bottom:630.400020pt;}
.y7_c00311{bottom:647.666686pt;}
.y6_c00311{bottom:665.000020pt;}
.y5_c00311{bottom:681.800020pt;}
.y4_c00311{bottom:699.133353pt;}
.y3_c00311{bottom:716.466686pt;}
.y2_c00311{bottom:733.800020pt;}
.y1_c00311{bottom:750.733353pt;}
.y12_c00311{bottom:788.200020pt;}
.h3_c00311{height:44.470052pt;}
.h4_c00311{height:44.492188pt;}
.h2_c00311{height:52.343750pt;}
.h1_c00311{height:851.333333pt;}
.h0_c00311{height:851.533333pt;}
.w0_c00311{width:570.533360pt;}
.w1_c00311{width:570.666667pt;}
.x0_c00311{left:0.000000pt;}
.x2_c00311{left:71.333333pt;}
.x1_c00311{left:72.333333pt;}
.x4_c00311{left:78.066667pt;}
.x5_c00311{left:107.866667pt;}
.x3_c00311{left:127.666667pt;}
.x6_c00311{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_91262619ef8e50c09e9c1ede.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00312;src:url('chunks/assets/font_b4837593ab5fde35b15111c3.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00312{letter-spacing:0.000000px;}
.sc__c00312{text-shadow:none;}
.sc0_c00312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00312{-webkit-text-stroke:0px transparent;}
.sc0_c00312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00312{word-spacing:-15.000000px;}
.ws0_c00312{word-spacing:-12.750000px;}
.ws2_c00312{word-spacing:0.000000px;}
._5_c00312{margin-left:-11.699934px;}
._6_c00312{margin-left:-10.200132px;}
._17_c00312{margin-left:-7.322790px;}
._18_c00312{margin-left:-5.922354px;}
._14_c00312{margin-left:-4.868970px;}
._4_c00312{margin-left:-3.804243px;}
._0_c00312{margin-left:-2.622012px;}
._2_c00312{margin-left:-1.539027px;}
._3_c00312{width:1.062024px;}
._1_c00312{width:2.400009px;}
._d_c00312{width:3.426312px;}
._7_c00312{width:5.100000px;}
._12_c00312{width:6.413919px;}
._8_c00312{width:7.547598px;}
._c_c00312{width:8.574168px;}
._a_c00312{width:9.617958px;}
._9_c00312{width:10.932633px;}
._b_c00312{width:11.950917px;}
._e_c00312{width:13.559475px;}
._16_c00312{width:15.068238px;}
._f_c00312{width:16.901748px;}
._10_c00312{width:18.180000px;}
._11_c00312{width:19.625583px;}
._13_c00312{width:24.006108px;}
._15_c00312{width:25.833081px;}
.fc1_c00312{color:transparent;}
.fc0_c00312{color:rgb(35,31,32);}
.fs0_c00312{font-size:51.000000px;}
.fs1_c00312{font-size:60.000000px;}
.y0_c00312{bottom:0.000000px;}
.y29_c00312{bottom:64.800022px;}
.y28_c00312{bottom:110.175022px;}
.y27_c00312{bottom:125.325022px;}
.y26_c00312{bottom:140.775022px;}
.y25_c00312{bottom:155.925022px;}
.y24_c00312{bottom:171.675022px;}
.y23_c00312{bottom:186.825022px;}
.y22_c00312{bottom:201.900022px;}
.y21_c00312{bottom:217.425022px;}
.y20_c00312{bottom:232.950022px;}
.y1f_c00312{bottom:247.875022px;}
.y1e_c00312{bottom:263.175022px;}
.y1d_c00312{bottom:278.625022px;}
.y1c_c00312{bottom:293.775022px;}
.y1b_c00312{bottom:308.925022px;}
.y1a_c00312{bottom:324.375022px;}
.y19_c00312{bottom:339.525022px;}
.y18_c00312{bottom:355.350022px;}
.y17_c00312{bottom:370.125022px;}
.y16_c00312{bottom:385.800022px;}
.y15_c00312{bottom:401.025022px;}
.y14_c00312{bottom:416.550022px;}
.y13_c00312{bottom:456.525022px;}
.y12_c00312{bottom:475.575022px;}
.y11_c00312{bottom:495.000022px;}
.y10_c00312{bottom:514.800022px;}
.yf_c00312{bottom:533.925022px;}
.ye_c00312{bottom:553.350022px;}
.yd_c00312{bottom:572.775022px;}
.yc_c00312{bottom:592.200022px;}
.yb_c00312{bottom:611.625022px;}
.ya_c00312{bottom:631.050022px;}
.y9_c00312{bottom:671.775022px;}
.y8_c00312{bottom:728.625022px;}
.y7_c00312{bottom:747.750022px;}
.y6_c00312{bottom:767.175022px;}
.y5_c00312{bottom:786.600022px;}
.y4_c00312{bottom:806.025022px;}
.y3_c00312{bottom:825.525022px;}
.y2_c00312{bottom:844.875022px;}
.y1_c00312{bottom:886.725022px;}
.h2_c00312{height:50.028809px;}
.h4_c00312{height:50.053711px;}
.h5_c00312{height:50.353711px;}
.h3_c00312{height:58.886719px;}
.h1_c00312{height:957.750000px;}
.h0_c00312{height:957.975000px;}
.w1_c00312{width:643.500000px;}
.w0_c00312{width:643.650000px;}
.x0_c00312{left:0.000000px;}
.x1_c00312{left:91.050000px;}
.x2_c00312{left:97.575000px;}
.x3_c00312{left:131.025000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls0_c00312{letter-spacing:0.000000pt;}
.ws1_c00312{word-spacing:-13.333333pt;}
.ws0_c00312{word-spacing:-11.333333pt;}
.ws2_c00312{word-spacing:0.000000pt;}
._5_c00312{margin-left:-10.399941pt;}
._6_c00312{margin-left:-9.066784pt;}
._17_c00312{margin-left:-6.509147pt;}
._18_c00312{margin-left:-5.264315pt;}
._14_c00312{margin-left:-4.327973pt;}
._4_c00312{margin-left:-3.381549pt;}
._0_c00312{margin-left:-2.330677pt;}
._2_c00312{margin-left:-1.368024pt;}
._3_c00312{width:0.944021pt;}
._1_c00312{width:2.133341pt;}
._d_c00312{width:3.045611pt;}
._7_c00312{width:4.533333pt;}
._12_c00312{width:5.701261pt;}
._8_c00312{width:6.708976pt;}
._c_c00312{width:7.621483pt;}
._a_c00312{width:8.549296pt;}
._9_c00312{width:9.717896pt;}
._b_c00312{width:10.623037pt;}
._e_c00312{width:12.052867pt;}
._16_c00312{width:13.393989pt;}
._f_c00312{width:15.023776pt;}
._10_c00312{width:16.160000pt;}
._11_c00312{width:17.444963pt;}
._13_c00312{width:21.338763pt;}
._15_c00312{width:22.962739pt;}
.fs0_c00312{font-size:45.333333pt;}
.fs1_c00312{font-size:53.333333pt;}
.y0_c00312{bottom:0.000000pt;}
.y29_c00312{bottom:57.600020pt;}
.y28_c00312{bottom:97.933353pt;}
.y27_c00312{bottom:111.400020pt;}
.y26_c00312{bottom:125.133353pt;}
.y25_c00312{bottom:138.600020pt;}
.y24_c00312{bottom:152.600020pt;}
.y23_c00312{bottom:166.066686pt;}
.y22_c00312{bottom:179.466686pt;}
.y21_c00312{bottom:193.266686pt;}
.y20_c00312{bottom:207.066686pt;}
.y1f_c00312{bottom:220.333353pt;}
.y1e_c00312{bottom:233.933353pt;}
.y1d_c00312{bottom:247.666686pt;}
.y1c_c00312{bottom:261.133353pt;}
.y1b_c00312{bottom:274.600020pt;}
.y1a_c00312{bottom:288.333353pt;}
.y19_c00312{bottom:301.800020pt;}
.y18_c00312{bottom:315.866686pt;}
.y17_c00312{bottom:329.000020pt;}
.y16_c00312{bottom:342.933353pt;}
.y15_c00312{bottom:356.466686pt;}
.y14_c00312{bottom:370.266686pt;}
.y13_c00312{bottom:405.800020pt;}
.y12_c00312{bottom:422.733353pt;}
.y11_c00312{bottom:440.000020pt;}
.y10_c00312{bottom:457.600020pt;}
.yf_c00312{bottom:474.600020pt;}
.ye_c00312{bottom:491.866686pt;}
.yd_c00312{bottom:509.133353pt;}
.yc_c00312{bottom:526.400020pt;}
.yb_c00312{bottom:543.666686pt;}
.ya_c00312{bottom:560.933353pt;}
.y9_c00312{bottom:597.133353pt;}
.y8_c00312{bottom:647.666686pt;}
.y7_c00312{bottom:664.666686pt;}
.y6_c00312{bottom:681.933353pt;}
.y5_c00312{bottom:699.200020pt;}
.y4_c00312{bottom:716.466686pt;}
.y3_c00312{bottom:733.800020pt;}
.y2_c00312{bottom:751.000020pt;}
.y1_c00312{bottom:788.200020pt;}
.h2_c00312{height:44.470052pt;}
.h4_c00312{height:44.492188pt;}
.h5_c00312{height:44.758854pt;}
.h3_c00312{height:52.343750pt;}
.h1_c00312{height:851.333333pt;}
.h0_c00312{height:851.533333pt;}
.w1_c00312{width:572.000000pt;}
.w0_c00312{width:572.133333pt;}
.x0_c00312{left:0.000000pt;}
.x1_c00312{left:80.933333pt;}
.x2_c00312{left:86.733333pt;}
.x3_c00312{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f01f082c4f30008745076a6.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00313;src:url('chunks/assets/font_2516267c7b81e0a31bb5bb14.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00313{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00313{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_c00313{vertical-align:0.000000px;}
.ls0_c00313{letter-spacing:0.000000px;}
.sc__c00313{text-shadow:none;}
.sc0_c00313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00313{-webkit-text-stroke:0px transparent;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00313{word-spacing:-15.000000px;}
.ws1_c00313{word-spacing:-12.750000px;}
.ws2_c00313{word-spacing:0.000000px;}
._d_c00313{margin-left:-15.120000px;}
._f_c00313{margin-left:-11.520000px;}
._11_c00313{margin-left:-10.200000px;}
._c_c00313{margin-left:-7.140000px;}
._e_c00313{margin-left:-5.820000px;}
._13_c00313{margin-left:-4.680000px;}
._b_c00313{margin-left:-3.480000px;}
._6_c00313{margin-left:-2.280000px;}
._5_c00313{margin-left:-1.020000px;}
._0_c00313{width:1.860000px;}
._3_c00313{width:3.060000px;}
._a_c00313{width:4.920000px;}
._4_c00313{width:6.600000px;}
._2_c00313{width:7.980000px;}
._7_c00313{width:9.240000px;}
._1_c00313{width:11.100000px;}
._10_c00313{width:12.540000px;}
._8_c00313{width:13.620000px;}
._1b_c00313{width:15.002979px;}
._12_c00313{width:16.320000px;}
._14_c00313{width:17.400000px;}
._9_c00313{width:18.420000px;}
._15_c00313{width:19.860000px;}
._16_c00313{width:21.540000px;}
._17_c00313{width:23.040000px;}
._18_c00313{width:24.209988px;}
._19_c00313{width:25.710000px;}
._1a_c00313{width:26.910030px;}
.fc1_c00313{color:transparent;}
.fc0_c00313{color:rgb(35,31,32);}
.fs2_c00313{font-size:42.000000px;}
.fs1_c00313{font-size:51.000000px;}
.fs0_c00313{font-size:60.000000px;}
.y0_c00313{bottom:0.000000px;}
.y2a_c00313{bottom:64.425022px;}
.y29_c00313{bottom:110.550022px;}
.y28_c00313{bottom:125.325022px;}
.y27_c00313{bottom:140.775022px;}
.y26_c00313{bottom:156.225022px;}
.y25_c00313{bottom:171.750022px;}
.y24_c00313{bottom:186.525022px;}
.y23_c00313{bottom:201.975022px;}
.y22_c00313{bottom:217.125022px;}
.y21_c00313{bottom:232.950022px;}
.y20_c00313{bottom:248.025022px;}
.y1f_c00313{bottom:263.175022px;}
.y1e_c00313{bottom:278.325022px;}
.y1d_c00313{bottom:293.775022px;}
.y1c_c00313{bottom:308.925022px;}
.y1a_c00313{bottom:358.950022px;}
.y19_c00313{bottom:378.750022px;}
.y18_c00313{bottom:397.800022px;}
.y17_c00313{bottom:417.600022px;}
.y16_c00313{bottom:437.100022px;}
.y15_c00313{bottom:456.525022px;}
.y14_c00313{bottom:475.950022px;}
.y13_c00313{bottom:495.000022px;}
.y12_c00313{bottom:514.800022px;}
.y11_c00313{bottom:533.925022px;}
.y10_c00313{bottom:553.725022px;}
.yf_c00313{bottom:573.150022px;}
.ye_c00313{bottom:592.200022px;}
.yd_c00313{bottom:612.000022px;}
.yc_c00313{bottom:631.125022px;}
.yb_c00313{bottom:650.925022px;}
.ya_c00313{bottom:669.975022px;}
.y9_c00313{bottom:689.775022px;}
.y8_c00313{bottom:709.200022px;}
.y7_c00313{bottom:728.325022px;}
.y6_c00313{bottom:748.125022px;}
.y5_c00313{bottom:767.550022px;}
.y4_c00313{bottom:786.300022px;}
.y3_c00313{bottom:805.725022px;}
.y2_c00313{bottom:825.150022px;}
.y1_c00313{bottom:844.950022px;}
.y1b_c00313{bottom:886.725022px;}
.h3_c00313{height:50.028809px;}
.h4_c00313{height:50.053711px;}
.h2_c00313{height:58.886719px;}
.h1_c00313{height:957.750000px;}
.h0_c00313{height:957.975000px;}
.w0_c00313{width:641.850030px;}
.w1_c00313{width:642.000000px;}
.x0_c00313{left:0.000000px;}
.x2_c00313{left:80.250000px;}
.x1_c00313{left:81.375000px;}
.x5_c00313{left:87.825000px;}
.x3_c00313{left:97.200000px;}
.x6_c00313{left:121.350000px;}
.x4_c00313{left:143.625000px;}
.x7_c00313{left:531.375000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls0_c00313{letter-spacing:0.000000pt;}
.ws0_c00313{word-spacing:-13.333333pt;}
.ws1_c00313{word-spacing:-11.333333pt;}
.ws2_c00313{word-spacing:0.000000pt;}
._d_c00313{margin-left:-13.440000pt;}
._f_c00313{margin-left:-10.240000pt;}
._11_c00313{margin-left:-9.066667pt;}
._c_c00313{margin-left:-6.346667pt;}
._e_c00313{margin-left:-5.173333pt;}
._13_c00313{margin-left:-4.160000pt;}
._b_c00313{margin-left:-3.093333pt;}
._6_c00313{margin-left:-2.026667pt;}
._5_c00313{margin-left:-0.906667pt;}
._0_c00313{width:1.653333pt;}
._3_c00313{width:2.720000pt;}
._a_c00313{width:4.373333pt;}
._4_c00313{width:5.866667pt;}
._2_c00313{width:7.093333pt;}
._7_c00313{width:8.213333pt;}
._1_c00313{width:9.866667pt;}
._10_c00313{width:11.146667pt;}
._8_c00313{width:12.106667pt;}
._1b_c00313{width:13.335981pt;}
._12_c00313{width:14.506667pt;}
._14_c00313{width:15.466667pt;}
._9_c00313{width:16.373333pt;}
._15_c00313{width:17.653333pt;}
._16_c00313{width:19.146667pt;}
._17_c00313{width:20.480000pt;}
._18_c00313{width:21.519989pt;}
._19_c00313{width:22.853333pt;}
._1a_c00313{width:23.920027pt;}
.fs2_c00313{font-size:37.333333pt;}
.fs1_c00313{font-size:45.333333pt;}
.fs0_c00313{font-size:53.333333pt;}
.y0_c00313{bottom:0.000000pt;}
.y2a_c00313{bottom:57.266686pt;}
.y29_c00313{bottom:98.266686pt;}
.y28_c00313{bottom:111.400020pt;}
.y27_c00313{bottom:125.133353pt;}
.y26_c00313{bottom:138.866686pt;}
.y25_c00313{bottom:152.666686pt;}
.y24_c00313{bottom:165.800020pt;}
.y23_c00313{bottom:179.533353pt;}
.y22_c00313{bottom:193.000020pt;}
.y21_c00313{bottom:207.066686pt;}
.y20_c00313{bottom:220.466686pt;}
.y1f_c00313{bottom:233.933353pt;}
.y1e_c00313{bottom:247.400020pt;}
.y1d_c00313{bottom:261.133353pt;}
.y1c_c00313{bottom:274.600020pt;}
.y1a_c00313{bottom:319.066686pt;}
.y19_c00313{bottom:336.666686pt;}
.y18_c00313{bottom:353.600020pt;}
.y17_c00313{bottom:371.200020pt;}
.y16_c00313{bottom:388.533353pt;}
.y15_c00313{bottom:405.800020pt;}
.y14_c00313{bottom:423.066686pt;}
.y13_c00313{bottom:440.000020pt;}
.y12_c00313{bottom:457.600020pt;}
.y11_c00313{bottom:474.600020pt;}
.y10_c00313{bottom:492.200020pt;}
.yf_c00313{bottom:509.466686pt;}
.ye_c00313{bottom:526.400020pt;}
.yd_c00313{bottom:544.000020pt;}
.yc_c00313{bottom:561.000020pt;}
.yb_c00313{bottom:578.600020pt;}
.ya_c00313{bottom:595.533353pt;}
.y9_c00313{bottom:613.133353pt;}
.y8_c00313{bottom:630.400020pt;}
.y7_c00313{bottom:647.400020pt;}
.y6_c00313{bottom:665.000020pt;}
.y5_c00313{bottom:682.266686pt;}
.y4_c00313{bottom:698.933353pt;}
.y3_c00313{bottom:716.200020pt;}
.y2_c00313{bottom:733.466686pt;}
.y1_c00313{bottom:751.066686pt;}
.y1b_c00313{bottom:788.200020pt;}
.h3_c00313{height:44.470052pt;}
.h4_c00313{height:44.492188pt;}
.h2_c00313{height:52.343750pt;}
.h1_c00313{height:851.333333pt;}
.h0_c00313{height:851.533333pt;}
.w0_c00313{width:570.533360pt;}
.w1_c00313{width:570.666667pt;}
.x0_c00313{left:0.000000pt;}
.x2_c00313{left:71.333333pt;}
.x1_c00313{left:72.333333pt;}
.x5_c00313{left:78.066667pt;}
.x3_c00313{left:86.400000pt;}
.x6_c00313{left:107.866667pt;}
.x4_c00313{left:127.666667pt;}
.x7_c00313{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b27271562195de10abae9539.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00314;src:url('chunks/assets/font_8b23af7e28b71738973ef4d7.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00314{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00314{letter-spacing:0.000000px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00314{word-spacing:-15.000000px;}
.ws0_c00314{word-spacing:-12.750000px;}
.ws2_c00314{word-spacing:0.000000px;}
._16_c00314{margin-left:-16.260000px;}
._e_c00314{margin-left:-13.680000px;}
._18_c00314{margin-left:-7.538979px;}
._c_c00314{margin-left:-6.480000px;}
._15_c00314{margin-left:-5.100000px;}
._13_c00314{margin-left:-3.660000px;}
._a_c00314{margin-left:-2.460000px;}
._2_c00314{margin-left:-1.200000px;}
._0_c00314{width:1.800000px;}
._3_c00314{width:3.060000px;}
._8_c00314{width:4.200000px;}
._5_c00314{width:5.340000px;}
._6_c00314{width:7.260000px;}
._12_c00314{width:8.460000px;}
._7_c00314{width:9.480000px;}
._4_c00314{width:10.980000px;}
._14_c00314{width:12.300000px;}
._1_c00314{width:13.860000px;}
._9_c00314{width:16.500000px;}
._b_c00314{width:18.300000px;}
._d_c00314{width:19.800000px;}
._10_c00314{width:20.820000px;}
._11_c00314{width:22.200000px;}
._f_c00314{width:24.360000px;}
._17_c00314{width:27.630081px;}
.fc1_c00314{color:transparent;}
.fc0_c00314{color:rgb(35,31,32);}
.fs1_c00314{font-size:51.000000px;}
.fs0_c00314{font-size:60.000000px;}
.y0_c00314{bottom:0.000000px;}
.y29_c00314{bottom:64.800022px;}
.y28_c00314{bottom:110.550022px;}
.y27_c00314{bottom:125.625022px;}
.y26_c00314{bottom:141.150022px;}
.y25_c00314{bottom:155.925022px;}
.y24_c00314{bottom:171.750022px;}
.y23_c00314{bottom:186.825022px;}
.y22_c00314{bottom:202.350022px;}
.y21_c00314{bottom:217.125022px;}
.y20_c00314{bottom:232.950022px;}
.y1e_c00314{bottom:281.550022px;}
.y1d_c00314{bottom:300.975022px;}
.y1c_c00314{bottom:320.400022px;}
.y1b_c00314{bottom:339.825022px;}
.y1a_c00314{bottom:359.325022px;}
.y19_c00314{bottom:378.375022px;}
.y18_c00314{bottom:398.175022px;}
.y17_c00314{bottom:417.600022px;}
.y16_c00314{bottom:437.025022px;}
.y15_c00314{bottom:456.525022px;}
.y14_c00314{bottom:475.950022px;}
.y13_c00314{bottom:495.375022px;}
.y12_c00314{bottom:514.425022px;}
.y11_c00314{bottom:533.925022px;}
.y10_c00314{bottom:553.725022px;}
.yf_c00314{bottom:573.150022px;}
.ye_c00314{bottom:592.575022px;}
.yd_c00314{bottom:612.000022px;}
.yc_c00314{bottom:631.125022px;}
.yb_c00314{bottom:650.550022px;}
.ya_c00314{bottom:670.350022px;}
.y9_c00314{bottom:689.775022px;}
.y8_c00314{bottom:708.825022px;}
.y7_c00314{bottom:728.625022px;}
.y6_c00314{bottom:747.750022px;}
.y5_c00314{bottom:767.550022px;}
.y4_c00314{bottom:786.600022px;}
.y3_c00314{bottom:806.025022px;}
.y2_c00314{bottom:825.150022px;}
.y1_c00314{bottom:844.950022px;}
.y1f_c00314{bottom:886.725022px;}
.h3_c00314{height:50.028809px;}
.h4_c00314{height:50.053711px;}
.h2_c00314{height:58.886719px;}
.h1_c00314{height:957.750000px;}
.h0_c00314{height:957.975000px;}
.w1_c00314{width:643.500000px;}
.w0_c00314{width:643.650000px;}
.x0_c00314{left:0.000000px;}
.x2_c00314{left:90.375000px;}
.x1_c00314{left:91.425000px;}
.x4_c00314{left:97.575000px;}
.x3_c00314{left:106.200000px;}
.x5_c00314{left:131.025000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls0_c00314{letter-spacing:0.000000pt;}
.ws1_c00314{word-spacing:-13.333333pt;}
.ws0_c00314{word-spacing:-11.333333pt;}
.ws2_c00314{word-spacing:0.000000pt;}
._16_c00314{margin-left:-14.453333pt;}
._e_c00314{margin-left:-12.160000pt;}
._18_c00314{margin-left:-6.701315pt;}
._c_c00314{margin-left:-5.760000pt;}
._15_c00314{margin-left:-4.533333pt;}
._13_c00314{margin-left:-3.253333pt;}
._a_c00314{margin-left:-2.186667pt;}
._2_c00314{margin-left:-1.066667pt;}
._0_c00314{width:1.600000pt;}
._3_c00314{width:2.720000pt;}
._8_c00314{width:3.733333pt;}
._5_c00314{width:4.746667pt;}
._6_c00314{width:6.453333pt;}
._12_c00314{width:7.520000pt;}
._7_c00314{width:8.426667pt;}
._4_c00314{width:9.760000pt;}
._14_c00314{width:10.933333pt;}
._1_c00314{width:12.320000pt;}
._9_c00314{width:14.666667pt;}
._b_c00314{width:16.266667pt;}
._d_c00314{width:17.600000pt;}
._10_c00314{width:18.506667pt;}
._11_c00314{width:19.733333pt;}
._f_c00314{width:21.653333pt;}
._17_c00314{width:24.560072pt;}
.fs1_c00314{font-size:45.333333pt;}
.fs0_c00314{font-size:53.333333pt;}
.y0_c00314{bottom:0.000000pt;}
.y29_c00314{bottom:57.600020pt;}
.y28_c00314{bottom:98.266686pt;}
.y27_c00314{bottom:111.666686pt;}
.y26_c00314{bottom:125.466686pt;}
.y25_c00314{bottom:138.600020pt;}
.y24_c00314{bottom:152.666686pt;}
.y23_c00314{bottom:166.066686pt;}
.y22_c00314{bottom:179.866686pt;}
.y21_c00314{bottom:193.000020pt;}
.y20_c00314{bottom:207.066686pt;}
.y1e_c00314{bottom:250.266686pt;}
.y1d_c00314{bottom:267.533353pt;}
.y1c_c00314{bottom:284.800020pt;}
.y1b_c00314{bottom:302.066686pt;}
.y1a_c00314{bottom:319.400020pt;}
.y19_c00314{bottom:336.333353pt;}
.y18_c00314{bottom:353.933353pt;}
.y17_c00314{bottom:371.200020pt;}
.y16_c00314{bottom:388.466686pt;}
.y15_c00314{bottom:405.800020pt;}
.y14_c00314{bottom:423.066686pt;}
.y13_c00314{bottom:440.333353pt;}
.y12_c00314{bottom:457.266686pt;}
.y11_c00314{bottom:474.600020pt;}
.y10_c00314{bottom:492.200020pt;}
.yf_c00314{bottom:509.466686pt;}
.ye_c00314{bottom:526.733353pt;}
.yd_c00314{bottom:544.000020pt;}
.yc_c00314{bottom:561.000020pt;}
.yb_c00314{bottom:578.266686pt;}
.ya_c00314{bottom:595.866686pt;}
.y9_c00314{bottom:613.133353pt;}
.y8_c00314{bottom:630.066686pt;}
.y7_c00314{bottom:647.666686pt;}
.y6_c00314{bottom:664.666686pt;}
.y5_c00314{bottom:682.266686pt;}
.y4_c00314{bottom:699.200020pt;}
.y3_c00314{bottom:716.466686pt;}
.y2_c00314{bottom:733.466686pt;}
.y1_c00314{bottom:751.066686pt;}
.y1f_c00314{bottom:788.200020pt;}
.h3_c00314{height:44.470052pt;}
.h4_c00314{height:44.492188pt;}
.h2_c00314{height:52.343750pt;}
.h1_c00314{height:851.333333pt;}
.h0_c00314{height:851.533333pt;}
.w1_c00314{width:572.000000pt;}
.w0_c00314{width:572.133333pt;}
.x0_c00314{left:0.000000pt;}
.x2_c00314{left:80.333333pt;}
.x1_c00314{left:81.266667pt;}
.x4_c00314{left:86.733333pt;}
.x3_c00314{left:94.400000pt;}
.x5_c00314{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_208b7f81cf2c0b7bff4cc55e.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00315;src:url('chunks/assets/font_7a43c3eae1906842fe79dab6.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00315{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00315{vertical-align:0.000000px;}
.ls1_c00315{letter-spacing:0.000000px;}
.ls0_c00315{letter-spacing:1.199979px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00315{word-spacing:-15.000000px;}
.ws1_c00315{word-spacing:-13.949979px;}
.ws0_c00315{word-spacing:-12.750000px;}
.ws3_c00315{word-spacing:0.000000px;}
._d_c00315{margin-left:-14.640000px;}
._c_c00315{margin-left:-13.560000px;}
._10_c00315{margin-left:-12.540000px;}
._e_c00315{margin-left:-6.926940px;}
._9_c00315{margin-left:-4.920000px;}
._b_c00315{margin-left:-3.840000px;}
._a_c00315{margin-left:-2.760000px;}
._3_c00315{margin-left:-1.200000px;}
._0_c00315{width:1.860000px;}
._1_c00315{width:3.000000px;}
._7_c00315{width:4.860000px;}
._2_c00315{width:6.420000px;}
._6_c00315{width:7.500000px;}
._4_c00315{width:8.520000px;}
._5_c00315{width:10.620000px;}
._f_c00315{width:12.060000px;}
._8_c00315{width:13.140000px;}
._18_c00315{width:14.172024px;}
._16_c00315{width:15.243039px;}
._11_c00315{width:16.620000px;}
._13_c00315{width:17.640000px;}
._12_c00315{width:19.560000px;}
._14_c00315{width:21.960000px;}
._17_c00315{width:24.210000px;}
._15_c00315{width:26.970000px;}
.fc1_c00315{color:transparent;}
.fc0_c00315{color:rgb(35,31,32);}
.fs1_c00315{font-size:51.000000px;}
.fs0_c00315{font-size:60.000000px;}
.y0_c00315{bottom:0.000000px;}
.y28_c00315{bottom:64.425022px;}
.y27_c00315{bottom:110.175022px;}
.y26_c00315{bottom:125.325022px;}
.y25_c00315{bottom:140.775022px;}
.y24_c00315{bottom:156.225022px;}
.y23_c00315{bottom:171.375022px;}
.y22_c00315{bottom:186.525022px;}
.y21_c00315{bottom:202.350022px;}
.y20_c00315{bottom:217.125022px;}
.y1f_c00315{bottom:232.950022px;}
.y1e_c00315{bottom:248.025022px;}
.y1d_c00315{bottom:263.175022px;}
.y1c_c00315{bottom:278.625022px;}
.y1b_c00315{bottom:294.150022px;}
.y1a_c00315{bottom:309.225022px;}
.y19_c00315{bottom:324.375022px;}
.y18_c00315{bottom:339.525022px;}
.y17_c00315{bottom:379.800022px;}
.y16_c00315{bottom:399.225022px;}
.y15_c00315{bottom:418.350022px;}
.y14_c00315{bottom:438.150022px;}
.y13_c00315{bottom:457.575022px;}
.y12_c00315{bottom:476.625022px;}
.y11_c00315{bottom:496.425022px;}
.y10_c00315{bottom:515.850022px;}
.yf_c00315{bottom:535.350022px;}
.ye_c00315{bottom:554.775022px;}
.yd_c00315{bottom:574.200022px;}
.yc_c00315{bottom:593.625022px;}
.yb_c00315{bottom:613.050022px;}
.ya_c00315{bottom:653.400022px;}
.y8_c00315{bottom:709.200022px;}
.y7_c00315{bottom:728.625022px;}
.y6_c00315{bottom:747.750022px;}
.y5_c00315{bottom:767.550022px;}
.y4_c00315{bottom:786.675022px;}
.y3_c00315{bottom:806.100022px;}
.y2_c00315{bottom:825.525022px;}
.y1_c00315{bottom:844.950022px;}
.y9_c00315{bottom:886.725022px;}
.h3_c00315{height:50.028809px;}
.h4_c00315{height:50.053711px;}
.h2_c00315{height:58.886719px;}
.h1_c00315{height:957.750000px;}
.h0_c00315{height:957.975000px;}
.w0_c00315{width:641.850030px;}
.w1_c00315{width:642.000000px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:81.000000px;}
.x4_c00315{left:87.825000px;}
.x3_c00315{left:97.200000px;}
.x5_c00315{left:120.975000px;}
.x2_c00315{left:143.625000px;}
.x6_c00315{left:531.375000px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls1_c00315{letter-spacing:0.000000pt;}
.ls0_c00315{letter-spacing:1.066648pt;}
.ws2_c00315{word-spacing:-13.333333pt;}
.ws1_c00315{word-spacing:-12.399981pt;}
.ws0_c00315{word-spacing:-11.333333pt;}
.ws3_c00315{word-spacing:0.000000pt;}
._d_c00315{margin-left:-13.013333pt;}
._c_c00315{margin-left:-12.053333pt;}
._10_c00315{margin-left:-11.146667pt;}
._e_c00315{margin-left:-6.157280pt;}
._9_c00315{margin-left:-4.373333pt;}
._b_c00315{margin-left:-3.413333pt;}
._a_c00315{margin-left:-2.453333pt;}
._3_c00315{margin-left:-1.066667pt;}
._0_c00315{width:1.653333pt;}
._1_c00315{width:2.666667pt;}
._7_c00315{width:4.320000pt;}
._2_c00315{width:5.706667pt;}
._6_c00315{width:6.666667pt;}
._4_c00315{width:7.573333pt;}
._5_c00315{width:9.440000pt;}
._f_c00315{width:10.720000pt;}
._8_c00315{width:11.680000pt;}
._18_c00315{width:12.597355pt;}
._16_c00315{width:13.549368pt;}
._11_c00315{width:14.773333pt;}
._13_c00315{width:15.680000pt;}
._12_c00315{width:17.386667pt;}
._14_c00315{width:19.520000pt;}
._17_c00315{width:21.520000pt;}
._15_c00315{width:23.973333pt;}
.fs1_c00315{font-size:45.333333pt;}
.fs0_c00315{font-size:53.333333pt;}
.y0_c00315{bottom:0.000000pt;}
.y28_c00315{bottom:57.266686pt;}
.y27_c00315{bottom:97.933353pt;}
.y26_c00315{bottom:111.400020pt;}
.y25_c00315{bottom:125.133353pt;}
.y24_c00315{bottom:138.866686pt;}
.y23_c00315{bottom:152.333353pt;}
.y22_c00315{bottom:165.800020pt;}
.y21_c00315{bottom:179.866686pt;}
.y20_c00315{bottom:193.000020pt;}
.y1f_c00315{bottom:207.066686pt;}
.y1e_c00315{bottom:220.466686pt;}
.y1d_c00315{bottom:233.933353pt;}
.y1c_c00315{bottom:247.666686pt;}
.y1b_c00315{bottom:261.466686pt;}
.y1a_c00315{bottom:274.866686pt;}
.y19_c00315{bottom:288.333353pt;}
.y18_c00315{bottom:301.800020pt;}
.y17_c00315{bottom:337.600020pt;}
.y16_c00315{bottom:354.866686pt;}
.y15_c00315{bottom:371.866686pt;}
.y14_c00315{bottom:389.466686pt;}
.y13_c00315{bottom:406.733353pt;}
.y12_c00315{bottom:423.666686pt;}
.y11_c00315{bottom:441.266686pt;}
.y10_c00315{bottom:458.533353pt;}
.yf_c00315{bottom:475.866686pt;}
.ye_c00315{bottom:493.133353pt;}
.yd_c00315{bottom:510.400020pt;}
.yc_c00315{bottom:527.666686pt;}
.yb_c00315{bottom:544.933353pt;}
.ya_c00315{bottom:580.800020pt;}
.y8_c00315{bottom:630.400020pt;}
.y7_c00315{bottom:647.666686pt;}
.y6_c00315{bottom:664.666686pt;}
.y5_c00315{bottom:682.266686pt;}
.y4_c00315{bottom:699.266686pt;}
.y3_c00315{bottom:716.533353pt;}
.y2_c00315{bottom:733.800020pt;}
.y1_c00315{bottom:751.066686pt;}
.y9_c00315{bottom:788.200020pt;}
.h3_c00315{height:44.470052pt;}
.h4_c00315{height:44.492188pt;}
.h2_c00315{height:52.343750pt;}
.h1_c00315{height:851.333333pt;}
.h0_c00315{height:851.533333pt;}
.w0_c00315{width:570.533360pt;}
.w1_c00315{width:570.666667pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:72.000000pt;}
.x4_c00315{left:78.066667pt;}
.x3_c00315{left:86.400000pt;}
.x5_c00315{left:107.533333pt;}
.x2_c00315{left:127.666667pt;}
.x6_c00315{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_140a440db3ca5406b2daf324.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00316;src:url('chunks/assets/font_a5036f33cba749a2afec9d8b.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00316{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_c00316{vertical-align:0.000000px;}
.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:-15.000000px;}
.ws1_c00316{word-spacing:-12.750000px;}
.ws2_c00316{word-spacing:0.000000px;}
._16_c00316{margin-left:-21.000000px;}
._a_c00316{margin-left:-14.340000px;}
._9_c00316{margin-left:-13.260000px;}
._14_c00316{margin-left:-12.240000px;}
._11_c00316{margin-left:-11.040000px;}
._1d_c00316{margin-left:-9.635907px;}
._12_c00316{margin-left:-8.400000px;}
._19_c00316{margin-left:-6.992880px;}
._10_c00316{margin-left:-5.400000px;}
._17_c00316{margin-left:-3.498039px;}
._b_c00316{margin-left:-2.460000px;}
._c_c00316{margin-left:-1.380000px;}
._1_c00316{width:1.860000px;}
._4_c00316{width:3.000000px;}
._5_c00316{width:4.560000px;}
._13_c00316{width:6.300000px;}
._7_c00316{width:7.500000px;}
._6_c00316{width:9.360000px;}
._f_c00316{width:10.380000px;}
._8_c00316{width:11.520000px;}
._15_c00316{width:12.540000px;}
._0_c00316{width:13.560000px;}
._3_c00316{width:16.620000px;}
._e_c00316{width:18.000000px;}
._2_c00316{width:19.320000px;}
._d_c00316{width:21.720000px;}
._18_c00316{width:24.450000px;}
._1c_c00316{width:25.649979px;}
._1a_c00316{width:27.149991px;}
._1b_c00316{width:29.310093px;}
.fc1_c00316{color:transparent;}
.fc0_c00316{color:rgb(35,31,32);}
.fs1_c00316{font-size:51.000000px;}
.fs0_c00316{font-size:60.000000px;}
.y0_c00316{bottom:0.000000px;}
.y29_c00316{bottom:64.425022px;}
.y28_c00316{bottom:110.175022px;}
.y27_c00316{bottom:125.325022px;}
.y26_c00316{bottom:140.775022px;}
.y25_c00316{bottom:155.925022px;}
.y24_c00316{bottom:171.375022px;}
.y23_c00316{bottom:186.525022px;}
.y22_c00316{bottom:201.975022px;}
.y21_c00316{bottom:217.125022px;}
.y20_c00316{bottom:232.575022px;}
.y1f_c00316{bottom:247.725022px;}
.y1d_c00316{bottom:301.350022px;}
.y1c_c00316{bottom:320.025022px;}
.y1b_c00316{bottom:339.525022px;}
.y1a_c00316{bottom:359.250022px;}
.y19_c00316{bottom:378.750022px;}
.y18_c00316{bottom:398.175022px;}
.y17_c00316{bottom:417.600022px;}
.y16_c00316{bottom:437.025022px;}
.y15_c00316{bottom:456.150022px;}
.y14_c00316{bottom:475.950022px;}
.y13_c00316{bottom:495.375022px;}
.y12_c00316{bottom:514.800022px;}
.y11_c00316{bottom:533.925022px;}
.y10_c00316{bottom:553.350022px;}
.yf_c00316{bottom:573.150022px;}
.ye_c00316{bottom:592.575022px;}
.yd_c00316{bottom:611.625022px;}
.yc_c00316{bottom:631.125022px;}
.yb_c00316{bottom:650.550022px;}
.ya_c00316{bottom:669.975022px;}
.y9_c00316{bottom:689.700022px;}
.y8_c00316{bottom:709.200022px;}
.y7_c00316{bottom:728.700022px;}
.y6_c00316{bottom:748.125022px;}
.y5_c00316{bottom:767.550022px;}
.y4_c00316{bottom:786.600022px;}
.y3_c00316{bottom:806.025022px;}
.y2_c00316{bottom:825.150022px;}
.y1_c00316{bottom:844.950022px;}
.y1e_c00316{bottom:886.725022px;}
.h3_c00316{height:50.028809px;}
.h4_c00316{height:50.053711px;}
.h2_c00316{height:58.886719px;}
.h1_c00316{height:957.750000px;}
.h0_c00316{height:957.975000px;}
.w1_c00316{width:643.500000px;}
.w0_c00316{width:643.650000px;}
.x0_c00316{left:0.000000px;}
.x1_c00316{left:91.050000px;}
.x3_c00316{left:97.575000px;}
.x2_c00316{left:107.250000px;}
.x4_c00316{left:131.775000px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls0_c00316{letter-spacing:0.000000pt;}
.ws0_c00316{word-spacing:-13.333333pt;}
.ws1_c00316{word-spacing:-11.333333pt;}
.ws2_c00316{word-spacing:0.000000pt;}
._16_c00316{margin-left:-18.666667pt;}
._a_c00316{margin-left:-12.746667pt;}
._9_c00316{margin-left:-11.786667pt;}
._14_c00316{margin-left:-10.880000pt;}
._11_c00316{margin-left:-9.813333pt;}
._1d_c00316{margin-left:-8.565251pt;}
._12_c00316{margin-left:-7.466667pt;}
._19_c00316{margin-left:-6.215893pt;}
._10_c00316{margin-left:-4.800000pt;}
._17_c00316{margin-left:-3.109368pt;}
._b_c00316{margin-left:-2.186667pt;}
._c_c00316{margin-left:-1.226667pt;}
._1_c00316{width:1.653333pt;}
._4_c00316{width:2.666667pt;}
._5_c00316{width:4.053333pt;}
._13_c00316{width:5.600000pt;}
._7_c00316{width:6.666667pt;}
._6_c00316{width:8.320000pt;}
._f_c00316{width:9.226667pt;}
._8_c00316{width:10.240000pt;}
._15_c00316{width:11.146667pt;}
._0_c00316{width:12.053333pt;}
._3_c00316{width:14.773333pt;}
._e_c00316{width:16.000000pt;}
._2_c00316{width:17.173333pt;}
._d_c00316{width:19.306667pt;}
._18_c00316{width:21.733333pt;}
._1c_c00316{width:22.799981pt;}
._1a_c00316{width:24.133325pt;}
._1b_c00316{width:26.053416pt;}
.fs1_c00316{font-size:45.333333pt;}
.fs0_c00316{font-size:53.333333pt;}
.y0_c00316{bottom:0.000000pt;}
.y29_c00316{bottom:57.266686pt;}
.y28_c00316{bottom:97.933353pt;}
.y27_c00316{bottom:111.400020pt;}
.y26_c00316{bottom:125.133353pt;}
.y25_c00316{bottom:138.600020pt;}
.y24_c00316{bottom:152.333353pt;}
.y23_c00316{bottom:165.800020pt;}
.y22_c00316{bottom:179.533353pt;}
.y21_c00316{bottom:193.000020pt;}
.y20_c00316{bottom:206.733353pt;}
.y1f_c00316{bottom:220.200020pt;}
.y1d_c00316{bottom:267.866686pt;}
.y1c_c00316{bottom:284.466686pt;}
.y1b_c00316{bottom:301.800020pt;}
.y1a_c00316{bottom:319.333353pt;}
.y19_c00316{bottom:336.666686pt;}
.y18_c00316{bottom:353.933353pt;}
.y17_c00316{bottom:371.200020pt;}
.y16_c00316{bottom:388.466686pt;}
.y15_c00316{bottom:405.466686pt;}
.y14_c00316{bottom:423.066686pt;}
.y13_c00316{bottom:440.333353pt;}
.y12_c00316{bottom:457.600020pt;}
.y11_c00316{bottom:474.600020pt;}
.y10_c00316{bottom:491.866686pt;}
.yf_c00316{bottom:509.466686pt;}
.ye_c00316{bottom:526.733353pt;}
.yd_c00316{bottom:543.666686pt;}
.yc_c00316{bottom:561.000020pt;}
.yb_c00316{bottom:578.266686pt;}
.ya_c00316{bottom:595.533353pt;}
.y9_c00316{bottom:613.066686pt;}
.y8_c00316{bottom:630.400020pt;}
.y7_c00316{bottom:647.733353pt;}
.y6_c00316{bottom:665.000020pt;}
.y5_c00316{bottom:682.266686pt;}
.y4_c00316{bottom:699.200020pt;}
.y3_c00316{bottom:716.466686pt;}
.y2_c00316{bottom:733.466686pt;}
.y1_c00316{bottom:751.066686pt;}
.y1e_c00316{bottom:788.200020pt;}
.h3_c00316{height:44.470052pt;}
.h4_c00316{height:44.492188pt;}
.h2_c00316{height:52.343750pt;}
.h1_c00316{height:851.333333pt;}
.h0_c00316{height:851.533333pt;}
.w1_c00316{width:572.000000pt;}
.w0_c00316{width:572.133333pt;}
.x0_c00316{left:0.000000pt;}
.x1_c00316{left:80.933333pt;}
.x3_c00316{left:86.733333pt;}
.x2_c00316{left:95.333333pt;}
.x4_c00316{left:117.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_298b9351d634a3db5d40b170.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00317;src:url('chunks/assets/font_dbd8ce3bf7b79ba72cc058a6.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00317{letter-spacing:0.000000px;}
.sc__c00317{text-shadow:none;}
.sc0_c00317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00317{-webkit-text-stroke:0px transparent;}
.sc0_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00317{word-spacing:-15.000000px;}
.ws0_c00317{word-spacing:-12.750000px;}
.ws2_c00317{word-spacing:0.000000px;}
._18_c00317{margin-left:-14.400000px;}
._e_c00317{margin-left:-12.720000px;}
._7_c00317{margin-left:-11.100000px;}
._16_c00317{margin-left:-7.740000px;}
._8_c00317{margin-left:-5.700000px;}
._19_c00317{margin-left:-3.963003px;}
._6_c00317{margin-left:-2.280000px;}
._9_c00317{margin-left:-1.260000px;}
._0_c00317{width:1.080000px;}
._3_c00317{width:2.340000px;}
._5_c00317{width:3.720000px;}
._17_c00317{width:4.860000px;}
._15_c00317{width:5.880000px;}
._a_c00317{width:7.020000px;}
._2_c00317{width:8.820000px;}
._14_c00317{width:9.840000px;}
._4_c00317{width:10.920000px;}
._1_c00317{width:12.420000px;}
._13_c00317{width:13.920000px;}
._1b_c00317{width:15.015027px;}
._f_c00317{width:16.260000px;}
._10_c00317{width:17.700000px;}
._11_c00317{width:18.720000px;}
._12_c00317{width:20.100000px;}
._d_c00317{width:21.840000px;}
._b_c00317{width:22.920000px;}
._c_c00317{width:24.180000px;}
._1a_c00317{width:26.130030px;}
._1c_c00317{width:29.852982px;}
.fc1_c00317{color:transparent;}
.fc0_c00317{color:rgb(35,31,32);}
.fs1_c00317{font-size:51.000000px;}
.fs0_c00317{font-size:60.000000px;}
.y0_c00317{bottom:0.000000px;}
.y29_c00317{bottom:64.425022px;}
.y28_c00317{bottom:110.550022px;}
.y27_c00317{bottom:125.325022px;}
.y26_c00317{bottom:140.775022px;}
.y25_c00317{bottom:155.925022px;}
.y24_c00317{bottom:171.375022px;}
.y23_c00317{bottom:186.525022px;}
.y22_c00317{bottom:201.975022px;}
.y21_c00317{bottom:217.125022px;}
.y20_c00317{bottom:232.575022px;}
.y1f_c00317{bottom:247.725022px;}
.y1e_c00317{bottom:263.175022px;}
.y1d_c00317{bottom:278.325022px;}
.y1b_c00317{bottom:339.525022px;}
.y1a_c00317{bottom:358.950022px;}
.y19_c00317{bottom:378.375022px;}
.y18_c00317{bottom:398.175022px;}
.y17_c00317{bottom:417.225022px;}
.y16_c00317{bottom:437.025022px;}
.y15_c00317{bottom:456.150022px;}
.y14_c00317{bottom:475.875022px;}
.y13_c00317{bottom:495.000022px;}
.y12_c00317{bottom:514.725022px;}
.y11_c00317{bottom:534.225022px;}
.y10_c00317{bottom:553.725022px;}
.yf_c00317{bottom:573.150022px;}
.ye_c00317{bottom:592.575022px;}
.yd_c00317{bottom:612.000022px;}
.yc_c00317{bottom:631.425022px;}
.yb_c00317{bottom:650.550022px;}
.ya_c00317{bottom:669.975022px;}
.y9_c00317{bottom:689.775022px;}
.y8_c00317{bottom:708.825022px;}
.y7_c00317{bottom:728.625022px;}
.y6_c00317{bottom:748.125022px;}
.y5_c00317{bottom:767.175022px;}
.y4_c00317{bottom:786.525022px;}
.y3_c00317{bottom:806.025022px;}
.y2_c00317{bottom:825.525022px;}
.y1_c00317{bottom:844.950022px;}
.y1c_c00317{bottom:886.725022px;}
.h3_c00317{height:50.028809px;}
.h4_c00317{height:50.053711px;}
.h2_c00317{height:58.886719px;}
.h1_c00317{height:957.750000px;}
.h0_c00317{height:957.975000px;}
.w0_c00317{width:641.850030px;}
.w1_c00317{width:642.000000px;}
.x0_c00317{left:0.000000px;}
.x1_c00317{left:80.250000px;}
.x2_c00317{left:81.375000px;}
.x4_c00317{left:87.825000px;}
.x5_c00317{left:120.600000px;}
.x6_c00317{left:121.650000px;}
.x3_c00317{left:143.625000px;}
.x7_c00317{left:531.375000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls0_c00317{letter-spacing:0.000000pt;}
.ws1_c00317{word-spacing:-13.333333pt;}
.ws0_c00317{word-spacing:-11.333333pt;}
.ws2_c00317{word-spacing:0.000000pt;}
._18_c00317{margin-left:-12.800000pt;}
._e_c00317{margin-left:-11.306667pt;}
._7_c00317{margin-left:-9.866667pt;}
._16_c00317{margin-left:-6.880000pt;}
._8_c00317{margin-left:-5.066667pt;}
._19_c00317{margin-left:-3.522669pt;}
._6_c00317{margin-left:-2.026667pt;}
._9_c00317{margin-left:-1.120000pt;}
._0_c00317{width:0.960000pt;}
._3_c00317{width:2.080000pt;}
._5_c00317{width:3.306667pt;}
._17_c00317{width:4.320000pt;}
._15_c00317{width:5.226667pt;}
._a_c00317{width:6.240000pt;}
._2_c00317{width:7.840000pt;}
._14_c00317{width:8.746667pt;}
._4_c00317{width:9.706667pt;}
._1_c00317{width:11.040000pt;}
._13_c00317{width:12.373333pt;}
._1b_c00317{width:13.346691pt;}
._f_c00317{width:14.453333pt;}
._10_c00317{width:15.733333pt;}
._11_c00317{width:16.640000pt;}
._12_c00317{width:17.866667pt;}
._d_c00317{width:19.413333pt;}
._b_c00317{width:20.373333pt;}
._c_c00317{width:21.493333pt;}
._1a_c00317{width:23.226693pt;}
._1c_c00317{width:26.535984pt;}
.fs1_c00317{font-size:45.333333pt;}
.fs0_c00317{font-size:53.333333pt;}
.y0_c00317{bottom:0.000000pt;}
.y29_c00317{bottom:57.266686pt;}
.y28_c00317{bottom:98.266686pt;}
.y27_c00317{bottom:111.400020pt;}
.y26_c00317{bottom:125.133353pt;}
.y25_c00317{bottom:138.600020pt;}
.y24_c00317{bottom:152.333353pt;}
.y23_c00317{bottom:165.800020pt;}
.y22_c00317{bottom:179.533353pt;}
.y21_c00317{bottom:193.000020pt;}
.y20_c00317{bottom:206.733353pt;}
.y1f_c00317{bottom:220.200020pt;}
.y1e_c00317{bottom:233.933353pt;}
.y1d_c00317{bottom:247.400020pt;}
.y1b_c00317{bottom:301.800020pt;}
.y1a_c00317{bottom:319.066686pt;}
.y19_c00317{bottom:336.333353pt;}
.y18_c00317{bottom:353.933353pt;}
.y17_c00317{bottom:370.866686pt;}
.y16_c00317{bottom:388.466686pt;}
.y15_c00317{bottom:405.466686pt;}
.y14_c00317{bottom:423.000020pt;}
.y13_c00317{bottom:440.000020pt;}
.y12_c00317{bottom:457.533353pt;}
.y11_c00317{bottom:474.866686pt;}
.y10_c00317{bottom:492.200020pt;}
.yf_c00317{bottom:509.466686pt;}
.ye_c00317{bottom:526.733353pt;}
.yd_c00317{bottom:544.000020pt;}
.yc_c00317{bottom:561.266686pt;}
.yb_c00317{bottom:578.266686pt;}
.ya_c00317{bottom:595.533353pt;}
.y9_c00317{bottom:613.133353pt;}
.y8_c00317{bottom:630.066686pt;}
.y7_c00317{bottom:647.666686pt;}
.y6_c00317{bottom:665.000020pt;}
.y5_c00317{bottom:681.933353pt;}
.y4_c00317{bottom:699.133353pt;}
.y3_c00317{bottom:716.466686pt;}
.y2_c00317{bottom:733.800020pt;}
.y1_c00317{bottom:751.066686pt;}
.y1c_c00317{bottom:788.200020pt;}
.h3_c00317{height:44.470052pt;}
.h4_c00317{height:44.492188pt;}
.h2_c00317{height:52.343750pt;}
.h1_c00317{height:851.333333pt;}
.h0_c00317{height:851.533333pt;}
.w0_c00317{width:570.533360pt;}
.w1_c00317{width:570.666667pt;}
.x0_c00317{left:0.000000pt;}
.x1_c00317{left:71.333333pt;}
.x2_c00317{left:72.333333pt;}
.x4_c00317{left:78.066667pt;}
.x5_c00317{left:107.200000pt;}
.x6_c00317{left:108.133333pt;}
.x3_c00317{left:127.666667pt;}
.x7_c00317{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2bdf41441e2bcee46049bfad.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00318;src:url('chunks/assets/font_bb758dcd24ac19a880eefdc4.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00318{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00318{word-spacing:-15.000000px;}
.ws1_c00318{word-spacing:-12.750000px;}
.ws2_c00318{word-spacing:0.000000px;}
._c_c00318{margin-left:-12.168432px;}
._15_c00318{margin-left:-10.680084px;}
._18_c00318{margin-left:-6.266754px;}
._16_c00318{margin-left:-4.986375px;}
._4_c00318{margin-left:-3.804243px;}
._0_c00318{margin-left:-2.622012px;}
._2_c00318{margin-left:-1.539027px;}
._3_c00318{width:1.062024px;}
._1_c00318{width:2.400009px;}
._d_c00318{width:3.517626px;}
._6_c00318{width:4.547610px;}
._9_c00318{width:5.844969px;}
._5_c00318{width:7.302012px;}
._8_c00318{width:8.717988px;}
._7_c00318{width:10.091904px;}
._a_c00318{width:11.435952px;}
._b_c00318{width:12.461775px;}
._e_c00318{width:13.764012px;}
._10_c00318{width:16.043763px;}
._14_c00318{width:17.415669px;}
._f_c00318{width:18.500388px;}
._12_c00318{width:20.967468px;}
._13_c00318{width:22.922403px;}
._11_c00318{width:24.099027px;}
._17_c00318{width:25.833081px;}
.fc1_c00318{color:transparent;}
.fc0_c00318{color:rgb(35,31,32);}
.fs0_c00318{font-size:51.000000px;}
.fs1_c00318{font-size:60.000000px;}
.y0_c00318{bottom:0.000000px;}
.y28_c00318{bottom:64.425022px;}
.y27_c00318{bottom:110.175022px;}
.y26_c00318{bottom:125.625022px;}
.y25_c00318{bottom:141.150022px;}
.y24_c00318{bottom:155.925022px;}
.y23_c00318{bottom:171.375022px;}
.y22_c00318{bottom:186.825022px;}
.y21_c00318{bottom:226.800022px;}
.y20_c00318{bottom:246.225022px;}
.y1f_c00318{bottom:265.725022px;}
.y1e_c00318{bottom:284.775022px;}
.y1d_c00318{bottom:303.825022px;}
.y1c_c00318{bottom:323.625022px;}
.y1b_c00318{bottom:342.750022px;}
.y1a_c00318{bottom:362.175022px;}
.y19_c00318{bottom:381.225022px;}
.y18_c00318{bottom:401.025022px;}
.y17_c00318{bottom:420.150022px;}
.y16_c00318{bottom:439.950022px;}
.y15_c00318{bottom:459.000022px;}
.y14_c00318{bottom:478.425022px;}
.y13_c00318{bottom:497.925022px;}
.y12_c00318{bottom:517.350022px;}
.y11_c00318{bottom:536.400022px;}
.y10_c00318{bottom:555.825022px;}
.yf_c00318{bottom:575.325022px;}
.ye_c00318{bottom:594.375022px;}
.yd_c00318{bottom:614.100022px;}
.yc_c00318{bottom:633.225022px;}
.yb_c00318{bottom:652.350022px;}
.ya_c00318{bottom:672.150022px;}
.y9_c00318{bottom:691.575022px;}
.y8_c00318{bottom:711.000022px;}
.y7_c00318{bottom:730.125022px;}
.y6_c00318{bottom:749.175022px;}
.y5_c00318{bottom:768.600022px;}
.y4_c00318{bottom:788.025022px;}
.y3_c00318{bottom:825.825022px;}
.y2_c00318{bottom:844.875022px;}
.y1_c00318{bottom:886.725022px;}
.h2_c00318{height:50.028809px;}
.h4_c00318{height:50.053711px;}
.h3_c00318{height:58.886719px;}
.h1_c00318{height:957.750000px;}
.h0_c00318{height:957.975000px;}
.w1_c00318{width:643.500000px;}
.w0_c00318{width:643.650000px;}
.x0_c00318{left:0.000000px;}
.x1_c00318{left:91.050000px;}
.x4_c00318{left:94.650000px;}
.x5_c00318{left:97.575000px;}
.x3_c00318{left:107.250000px;}
.x2_c00318{left:108.375000px;}
.x7_c00318{left:130.650000px;}
.x6_c00318{left:131.775000px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls0_c00318{letter-spacing:0.000000pt;}
.ws0_c00318{word-spacing:-13.333333pt;}
.ws1_c00318{word-spacing:-11.333333pt;}
.ws2_c00318{word-spacing:0.000000pt;}
._c_c00318{margin-left:-10.816384pt;}
._15_c00318{margin-left:-9.493408pt;}
._18_c00318{margin-left:-5.570448pt;}
._16_c00318{margin-left:-4.432333pt;}
._4_c00318{margin-left:-3.381549pt;}
._0_c00318{margin-left:-2.330677pt;}
._2_c00318{margin-left:-1.368024pt;}
._3_c00318{width:0.944021pt;}
._1_c00318{width:2.133341pt;}
._d_c00318{width:3.126779pt;}
._6_c00318{width:4.042320pt;}
._9_c00318{width:5.195528pt;}
._5_c00318{width:6.490677pt;}
._8_c00318{width:7.749323pt;}
._7_c00318{width:8.970581pt;}
._a_c00318{width:10.165291pt;}
._b_c00318{width:11.077133pt;}
._e_c00318{width:12.234677pt;}
._10_c00318{width:14.261123pt;}
._14_c00318{width:15.480595pt;}
._f_c00318{width:16.444789pt;}
._12_c00318{width:18.637749pt;}
._13_c00318{width:20.375469pt;}
._11_c00318{width:21.421357pt;}
._17_c00318{width:22.962739pt;}
.fs0_c00318{font-size:45.333333pt;}
.fs1_c00318{font-size:53.333333pt;}
.y0_c00318{bottom:0.000000pt;}
.y28_c00318{bottom:57.266686pt;}
.y27_c00318{bottom:97.933353pt;}
.y26_c00318{bottom:111.666686pt;}
.y25_c00318{bottom:125.466686pt;}
.y24_c00318{bottom:138.600020pt;}
.y23_c00318{bottom:152.333353pt;}
.y22_c00318{bottom:166.066686pt;}
.y21_c00318{bottom:201.600020pt;}
.y20_c00318{bottom:218.866686pt;}
.y1f_c00318{bottom:236.200020pt;}
.y1e_c00318{bottom:253.133353pt;}
.y1d_c00318{bottom:270.066686pt;}
.y1c_c00318{bottom:287.666686pt;}
.y1b_c00318{bottom:304.666686pt;}
.y1a_c00318{bottom:321.933353pt;}
.y19_c00318{bottom:338.866686pt;}
.y18_c00318{bottom:356.466686pt;}
.y17_c00318{bottom:373.466686pt;}
.y16_c00318{bottom:391.066686pt;}
.y15_c00318{bottom:408.000020pt;}
.y14_c00318{bottom:425.266686pt;}
.y13_c00318{bottom:442.600020pt;}
.y12_c00318{bottom:459.866686pt;}
.y11_c00318{bottom:476.800020pt;}
.y10_c00318{bottom:494.066686pt;}
.yf_c00318{bottom:511.400020pt;}
.ye_c00318{bottom:528.333353pt;}
.yd_c00318{bottom:545.866686pt;}
.yc_c00318{bottom:562.866686pt;}
.yb_c00318{bottom:579.866686pt;}
.ya_c00318{bottom:597.466686pt;}
.y9_c00318{bottom:614.733353pt;}
.y8_c00318{bottom:632.000020pt;}
.y7_c00318{bottom:649.000020pt;}
.y6_c00318{bottom:665.933353pt;}
.y5_c00318{bottom:683.200020pt;}
.y4_c00318{bottom:700.466686pt;}
.y3_c00318{bottom:734.066686pt;}
.y2_c00318{bottom:751.000020pt;}
.y1_c00318{bottom:788.200020pt;}
.h2_c00318{height:44.470052pt;}
.h4_c00318{height:44.492188pt;}
.h3_c00318{height:52.343750pt;}
.h1_c00318{height:851.333333pt;}
.h0_c00318{height:851.533333pt;}
.w1_c00318{width:572.000000pt;}
.w0_c00318{width:572.133333pt;}
.x0_c00318{left:0.000000pt;}
.x1_c00318{left:80.933333pt;}
.x4_c00318{left:84.133333pt;}
.x5_c00318{left:86.733333pt;}
.x3_c00318{left:95.333333pt;}
.x2_c00318{left:96.333333pt;}
.x7_c00318{left:116.133333pt;}
.x6_c00318{left:117.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_570537d988d4f67e9b1a2ca0.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00319;src:url('chunks/assets/font_be0274de3af1e5121f68b9b4.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00319{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.ls1_c00319{letter-spacing:0.000000px;}
.ls0_c00319{letter-spacing:15.300000px;}
.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;}
}
.ws0_c00319{word-spacing:-15.000000px;}
.ws1_c00319{word-spacing:0.000000px;}
._16_c00319{margin-left:-15.852528px;}
._12_c00319{margin-left:-13.140000px;}
._11_c00319{margin-left:-11.880000px;}
._15_c00319{margin-left:-10.265934px;}
._17_c00319{margin-left:-8.750862px;}
._f_c00319{margin-left:-7.466940px;}
._13_c00319{margin-left:-4.691868px;}
._7_c00319{margin-left:-3.300000px;}
._3_c00319{margin-left:-1.560000px;}
._0_c00319{width:1.020000px;}
._1_c00319{width:2.880000px;}
._a_c00319{width:4.320000px;}
._10_c00319{width:6.302967px;}
._d_c00319{width:7.500000px;}
._14_c00319{width:8.820000px;}
._e_c00319{width:9.900000px;}
._8_c00319{width:11.460000px;}
._9_c00319{width:12.780000px;}
._b_c00319{width:13.920000px;}
._c_c00319{width:16.020000px;}
._6_c00319{width:17.520000px;}
._5_c00319{width:18.840000px;}
._2_c00319{width:19.920000px;}
._4_c00319{width:21.000000px;}
._1a_c00319{width:22.530000px;}
._18_c00319{width:24.090000px;}
._19_c00319{width:25.290030px;}
.fc2_c00319{color:transparent;}
.fc1_c00319{color:rgb(0,0,0);}
.fc0_c00319{color:rgb(35,31,32);}
.fs1_c00319{font-size:51.000000px;}
.fs0_c00319{font-size:60.000000px;}
.y0_c00319{bottom:0.000000px;}
.y23_c00319{bottom:64.425022px;}
.y22_c00319{bottom:110.175022px;}
.y21_c00319{bottom:125.325022px;}
.y20_c00319{bottom:140.775022px;}
.y1f_c00319{bottom:156.225022px;}
.y1e_c00319{bottom:195.825022px;}
.y1d_c00319{bottom:215.325022px;}
.y1c_c00319{bottom:234.750022px;}
.y1b_c00319{bottom:254.175022px;}
.y1a_c00319{bottom:273.600022px;}
.y19_c00319{bottom:293.025022px;}
.y18_c00319{bottom:312.825022px;}
.y17_c00319{bottom:332.325022px;}
.y16_c00319{bottom:351.375022px;}
.y15_c00319{bottom:390.600022px;}
.y14_c00319{bottom:447.825022px;}
.y13_c00319{bottom:467.625022px;}
.y12_c00319{bottom:486.825022px;}
.y11_c00319{bottom:506.175022px;}
.y10_c00319{bottom:525.525022px;}
.yf_c00319{bottom:545.025022px;}
.ye_c00319{bottom:564.525022px;}
.yd_c00319{bottom:583.950022px;}
.yc_c00319{bottom:603.375022px;}
.yb_c00319{bottom:623.175022px;}
.ya_c00319{bottom:642.225022px;}
.y9_c00319{bottom:662.025022px;}
.y8_c00319{bottom:681.150022px;}
.y7_c00319{bottom:716.400022px;}
.y5_c00319{bottom:767.550022px;}
.y4_c00319{bottom:786.225022px;}
.y3_c00319{bottom:805.725022px;}
.y2_c00319{bottom:825.150022px;}
.y1_c00319{bottom:844.575022px;}
.y6_c00319{bottom:886.725022px;}
.h3_c00319{height:50.028809px;}
.h4_c00319{height:50.053711px;}
.h2_c00319{height:58.886719px;}
.h1_c00319{height:957.750000px;}
.h0_c00319{height:957.975000px;}
.w0_c00319{width:641.850030px;}
.w1_c00319{width:642.000000px;}
.x0_c00319{left:0.000000px;}
.x3_c00319{left:80.250000px;}
.x1_c00319{left:81.375000px;}
.x4_c00319{left:87.825000px;}
.x5_c00319{left:120.600000px;}
.x2_c00319{left:143.625000px;}
.x6_c00319{left:531.375000px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls1_c00319{letter-spacing:0.000000pt;}
.ls0_c00319{letter-spacing:13.600000pt;}
.ws0_c00319{word-spacing:-13.333333pt;}
.ws1_c00319{word-spacing:0.000000pt;}
._16_c00319{margin-left:-14.091136pt;}
._12_c00319{margin-left:-11.680000pt;}
._11_c00319{margin-left:-10.560000pt;}
._15_c00319{margin-left:-9.125275pt;}
._17_c00319{margin-left:-7.778544pt;}
._f_c00319{margin-left:-6.637280pt;}
._13_c00319{margin-left:-4.170549pt;}
._7_c00319{margin-left:-2.933333pt;}
._3_c00319{margin-left:-1.386667pt;}
._0_c00319{width:0.906667pt;}
._1_c00319{width:2.560000pt;}
._a_c00319{width:3.840000pt;}
._10_c00319{width:5.602637pt;}
._d_c00319{width:6.666667pt;}
._14_c00319{width:7.840000pt;}
._e_c00319{width:8.800000pt;}
._8_c00319{width:10.186667pt;}
._9_c00319{width:11.360000pt;}
._b_c00319{width:12.373333pt;}
._c_c00319{width:14.240000pt;}
._6_c00319{width:15.573333pt;}
._5_c00319{width:16.746667pt;}
._2_c00319{width:17.706667pt;}
._4_c00319{width:18.666667pt;}
._1a_c00319{width:20.026667pt;}
._18_c00319{width:21.413333pt;}
._19_c00319{width:22.480027pt;}
.fs1_c00319{font-size:45.333333pt;}
.fs0_c00319{font-size:53.333333pt;}
.y0_c00319{bottom:0.000000pt;}
.y23_c00319{bottom:57.266686pt;}
.y22_c00319{bottom:97.933353pt;}
.y21_c00319{bottom:111.400020pt;}
.y20_c00319{bottom:125.133353pt;}
.y1f_c00319{bottom:138.866686pt;}
.y1e_c00319{bottom:174.066686pt;}
.y1d_c00319{bottom:191.400020pt;}
.y1c_c00319{bottom:208.666686pt;}
.y1b_c00319{bottom:225.933353pt;}
.y1a_c00319{bottom:243.200020pt;}
.y19_c00319{bottom:260.466686pt;}
.y18_c00319{bottom:278.066686pt;}
.y17_c00319{bottom:295.400020pt;}
.y16_c00319{bottom:312.333353pt;}
.y15_c00319{bottom:347.200020pt;}
.y14_c00319{bottom:398.066686pt;}
.y13_c00319{bottom:415.666686pt;}
.y12_c00319{bottom:432.733353pt;}
.y11_c00319{bottom:449.933353pt;}
.y10_c00319{bottom:467.133353pt;}
.yf_c00319{bottom:484.466686pt;}
.ye_c00319{bottom:501.800020pt;}
.yd_c00319{bottom:519.066686pt;}
.yc_c00319{bottom:536.333353pt;}
.yb_c00319{bottom:553.933353pt;}
.ya_c00319{bottom:570.866686pt;}
.y9_c00319{bottom:588.466686pt;}
.y8_c00319{bottom:605.466686pt;}
.y7_c00319{bottom:636.800020pt;}
.y5_c00319{bottom:682.266686pt;}
.y4_c00319{bottom:698.866686pt;}
.y3_c00319{bottom:716.200020pt;}
.y2_c00319{bottom:733.466686pt;}
.y1_c00319{bottom:750.733353pt;}
.y6_c00319{bottom:788.200020pt;}
.h3_c00319{height:44.470052pt;}
.h4_c00319{height:44.492188pt;}
.h2_c00319{height:52.343750pt;}
.h1_c00319{height:851.333333pt;}
.h0_c00319{height:851.533333pt;}
.w0_c00319{width:570.533360pt;}
.w1_c00319{width:570.666667pt;}
.x0_c00319{left:0.000000pt;}
.x3_c00319{left:71.333333pt;}
.x1_c00319{left:72.333333pt;}
.x4_c00319{left:78.066667pt;}
.x5_c00319{left:107.200000pt;}
.x2_c00319{left:127.666667pt;}
.x6_c00319{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b93d23e6133e5c47a297d2ae.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00320;src:url('chunks/assets/font_a69215696249e064235cb89b.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00320{vertical-align:0.000000px;}
.ls0_c00320{letter-spacing:0.000000px;}
.sc__c00320{text-shadow:none;}
.sc0_c00320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00320{-webkit-text-stroke:0px transparent;}
.sc0_c00320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00320{word-spacing:-15.000000px;}
.ws0_c00320{word-spacing:-12.750000px;}
.ws2_c00320{word-spacing:0.000000px;}
._13_c00320{margin-left:-16.140000px;}
._18_c00320{margin-left:-14.880000px;}
._f_c00320{margin-left:-12.720000px;}
._e_c00320{margin-left:-11.280000px;}
._b_c00320{margin-left:-8.100000px;}
._a_c00320{margin-left:-6.960000px;}
._12_c00320{margin-left:-5.760000px;}
._10_c00320{margin-left:-4.680000px;}
._9_c00320{margin-left:-3.660000px;}
._6_c00320{margin-left:-1.860000px;}
._0_c00320{width:1.560000px;}
._c_c00320{width:2.940000px;}
._2_c00320{width:3.960000px;}
._8_c00320{width:5.520000px;}
._1_c00320{width:6.600000px;}
._3_c00320{width:8.580000px;}
._7_c00320{width:10.020000px;}
._5_c00320{width:11.160000px;}
._4_c00320{width:12.300000px;}
._d_c00320{width:13.380000px;}
._1a_c00320{width:15.396003px;}
._14_c00320{width:16.680000px;}
._11_c00320{width:18.000000px;}
._1b_c00320{width:24.629979px;}
._19_c00320{width:26.129991px;}
._15_c00320{width:28.140000px;}
._17_c00320{width:29.220000px;}
._16_c00320{width:31.200000px;}
.fc1_c00320{color:transparent;}
.fc0_c00320{color:rgb(35,31,32);}
.fs1_c00320{font-size:51.000000px;}
.fs0_c00320{font-size:60.000000px;}
.y0_c00320{bottom:0.000000px;}
.y2a_c00320{bottom:64.425022px;}
.y29_c00320{bottom:110.175022px;}
.y28_c00320{bottom:125.325022px;}
.y27_c00320{bottom:140.775022px;}
.y26_c00320{bottom:155.925022px;}
.y25_c00320{bottom:171.375022px;}
.y24_c00320{bottom:186.525022px;}
.y23_c00320{bottom:201.975022px;}
.y22_c00320{bottom:217.125022px;}
.y21_c00320{bottom:232.575022px;}
.y20_c00320{bottom:247.725022px;}
.y1e_c00320{bottom:287.625022px;}
.y1d_c00320{bottom:306.750022px;}
.y1c_c00320{bottom:326.550022px;}
.y1b_c00320{bottom:345.225022px;}
.y1a_c00320{bottom:364.350022px;}
.y19_c00320{bottom:383.775022px;}
.y18_c00320{bottom:402.825022px;}
.y17_c00320{bottom:422.325022px;}
.y16_c00320{bottom:441.750022px;}
.y15_c00320{bottom:460.800022px;}
.y14_c00320{bottom:480.225022px;}
.y13_c00320{bottom:499.350022px;}
.y12_c00320{bottom:518.400022px;}
.y11_c00320{bottom:537.525022px;}
.y10_c00320{bottom:556.950022px;}
.yf_c00320{bottom:575.625022px;}
.ye_c00320{bottom:595.125022px;}
.yd_c00320{bottom:614.550022px;}
.yc_c00320{bottom:633.975022px;}
.yb_c00320{bottom:653.025022px;}
.ya_c00320{bottom:671.775022px;}
.y9_c00320{bottom:691.275022px;}
.y8_c00320{bottom:710.325022px;}
.y7_c00320{bottom:729.375022px;}
.y6_c00320{bottom:749.175022px;}
.y5_c00320{bottom:767.925022px;}
.y4_c00320{bottom:787.725022px;}
.y3_c00320{bottom:806.775022px;}
.y2_c00320{bottom:825.525022px;}
.y1_c00320{bottom:845.325022px;}
.y1f_c00320{bottom:886.725022px;}
.h3_c00320{height:50.028809px;}
.h4_c00320{height:50.053711px;}
.h2_c00320{height:58.886719px;}
.h1_c00320{height:957.750000px;}
.h0_c00320{height:957.975000px;}
.w1_c00320{width:643.500000px;}
.w0_c00320{width:643.650000px;}
.x0_c00320{left:0.000000px;}
.x3_c00320{left:90.375000px;}
.x1_c00320{left:91.425000px;}
.x4_c00320{left:97.575000px;}
.x2_c00320{left:106.950000px;}
.x6_c00320{left:130.350000px;}
.x5_c00320{left:131.775000px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls0_c00320{letter-spacing:0.000000pt;}
.ws1_c00320{word-spacing:-13.333333pt;}
.ws0_c00320{word-spacing:-11.333333pt;}
.ws2_c00320{word-spacing:0.000000pt;}
._13_c00320{margin-left:-14.346667pt;}
._18_c00320{margin-left:-13.226667pt;}
._f_c00320{margin-left:-11.306667pt;}
._e_c00320{margin-left:-10.026667pt;}
._b_c00320{margin-left:-7.200000pt;}
._a_c00320{margin-left:-6.186667pt;}
._12_c00320{margin-left:-5.120000pt;}
._10_c00320{margin-left:-4.160000pt;}
._9_c00320{margin-left:-3.253333pt;}
._6_c00320{margin-left:-1.653333pt;}
._0_c00320{width:1.386667pt;}
._c_c00320{width:2.613333pt;}
._2_c00320{width:3.520000pt;}
._8_c00320{width:4.906667pt;}
._1_c00320{width:5.866667pt;}
._3_c00320{width:7.626667pt;}
._7_c00320{width:8.906667pt;}
._5_c00320{width:9.920000pt;}
._4_c00320{width:10.933333pt;}
._d_c00320{width:11.893333pt;}
._1a_c00320{width:13.685336pt;}
._14_c00320{width:14.826667pt;}
._11_c00320{width:16.000000pt;}
._1b_c00320{width:21.893315pt;}
._19_c00320{width:23.226659pt;}
._15_c00320{width:25.013333pt;}
._17_c00320{width:25.973333pt;}
._16_c00320{width:27.733333pt;}
.fs1_c00320{font-size:45.333333pt;}
.fs0_c00320{font-size:53.333333pt;}
.y0_c00320{bottom:0.000000pt;}
.y2a_c00320{bottom:57.266686pt;}
.y29_c00320{bottom:97.933353pt;}
.y28_c00320{bottom:111.400020pt;}
.y27_c00320{bottom:125.133353pt;}
.y26_c00320{bottom:138.600020pt;}
.y25_c00320{bottom:152.333353pt;}
.y24_c00320{bottom:165.800020pt;}
.y23_c00320{bottom:179.533353pt;}
.y22_c00320{bottom:193.000020pt;}
.y21_c00320{bottom:206.733353pt;}
.y20_c00320{bottom:220.200020pt;}
.y1e_c00320{bottom:255.666686pt;}
.y1d_c00320{bottom:272.666686pt;}
.y1c_c00320{bottom:290.266686pt;}
.y1b_c00320{bottom:306.866686pt;}
.y1a_c00320{bottom:323.866686pt;}
.y19_c00320{bottom:341.133353pt;}
.y18_c00320{bottom:358.066686pt;}
.y17_c00320{bottom:375.400020pt;}
.y16_c00320{bottom:392.666686pt;}
.y15_c00320{bottom:409.600020pt;}
.y14_c00320{bottom:426.866686pt;}
.y13_c00320{bottom:443.866686pt;}
.y12_c00320{bottom:460.800020pt;}
.y11_c00320{bottom:477.800020pt;}
.y10_c00320{bottom:495.066686pt;}
.yf_c00320{bottom:511.666686pt;}
.ye_c00320{bottom:529.000020pt;}
.yd_c00320{bottom:546.266686pt;}
.yc_c00320{bottom:563.533353pt;}
.yb_c00320{bottom:580.466686pt;}
.ya_c00320{bottom:597.133353pt;}
.y9_c00320{bottom:614.466686pt;}
.y8_c00320{bottom:631.400020pt;}
.y7_c00320{bottom:648.333353pt;}
.y6_c00320{bottom:665.933353pt;}
.y5_c00320{bottom:682.600020pt;}
.y4_c00320{bottom:700.200020pt;}
.y3_c00320{bottom:717.133353pt;}
.y2_c00320{bottom:733.800020pt;}
.y1_c00320{bottom:751.400020pt;}
.y1f_c00320{bottom:788.200020pt;}
.h3_c00320{height:44.470052pt;}
.h4_c00320{height:44.492188pt;}
.h2_c00320{height:52.343750pt;}
.h1_c00320{height:851.333333pt;}
.h0_c00320{height:851.533333pt;}
.w1_c00320{width:572.000000pt;}
.w0_c00320{width:572.133333pt;}
.x0_c00320{left:0.000000pt;}
.x3_c00320{left:80.333333pt;}
.x1_c00320{left:81.266667pt;}
.x4_c00320{left:86.733333pt;}
.x2_c00320{left:95.066667pt;}
.x6_c00320{left:115.866667pt;}
.x5_c00320{left:117.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e8a8cc19fce159c5481c0ec.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00321;src:url('chunks/assets/font_e5e9016ed73734b4e8b61c4c.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00321{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00321{vertical-align:0.000000px;}
.ls1_c00321{letter-spacing:0.000000px;}
.ls0_c00321{letter-spacing:16.800000px;}
.sc__c00321{text-shadow:none;}
.sc0_c00321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00321{-webkit-text-stroke:0px transparent;}
.sc0_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00321{word-spacing:-15.000000px;}
.ws1_c00321{word-spacing:-12.750000px;}
.ws2_c00321{word-spacing:0.000000px;}
._11_c00321{margin-left:-13.172511px;}
._b_c00321{margin-left:-11.865063px;}
._a_c00321{margin-left:-10.634937px;}
._2_c00321{margin-left:-7.307892px;}
._13_c00321{margin-left:-5.400000px;}
._15_c00321{margin-left:-4.041927px;}
._6_c00321{margin-left:-2.550000px;}
._7_c00321{margin-left:-1.355988px;}
._0_c00321{width:1.133985px;}
._1_c00321{width:2.151027px;}
._3_c00321{width:3.821991px;}
._5_c00321{width:5.661000px;}
._4_c00321{width:7.199976px;}
._10_c00321{width:8.379075px;}
._e_c00321{width:9.395988px;}
._8_c00321{width:10.803108px;}
._9_c00321{width:12.182772px;}
._f_c00321{width:13.911951px;}
._12_c00321{width:16.056051px;}
._c_c00321{width:17.265063px;}
._d_c00321{width:18.569976px;}
._14_c00321{width:21.000000px;}
._16_c00321{width:25.661976px;}
._17_c00321{width:26.862006px;}
.fc2_c00321{color:transparent;}
.fc1_c00321{color:rgb(0,0,0);}
.fc0_c00321{color:rgb(35,31,32);}
.fs0_c00321{font-size:51.000000px;}
.fs1_c00321{font-size:60.000000px;}
.y0_c00321{bottom:0.000000px;}
.y27_c00321{bottom:64.800022px;}
.y26_c00321{bottom:110.175022px;}
.y25_c00321{bottom:125.325022px;}
.y24_c00321{bottom:141.150022px;}
.y23_c00321{bottom:155.925022px;}
.y22_c00321{bottom:171.375022px;}
.y21_c00321{bottom:186.825022px;}
.y20_c00321{bottom:202.350022px;}
.y1f_c00321{bottom:217.425022px;}
.y1e_c00321{bottom:232.950022px;}
.y1d_c00321{bottom:248.025022px;}
.y1c_c00321{bottom:263.550022px;}
.y1b_c00321{bottom:278.325022px;}
.y1a_c00321{bottom:293.775022px;}
.y19_c00321{bottom:308.925022px;}
.y18_c00321{bottom:324.750022px;}
.y17_c00321{bottom:339.825022px;}
.y16_c00321{bottom:354.975022px;}
.y15_c00321{bottom:370.425022px;}
.y14_c00321{bottom:411.525022px;}
.y13_c00321{bottom:430.575022px;}
.y12_c00321{bottom:450.375022px;}
.y11_c00321{bottom:469.800022px;}
.y10_c00321{bottom:489.225022px;}
.yf_c00321{bottom:508.350022px;}
.ye_c00321{bottom:528.150022px;}
.yd_c00321{bottom:547.200022px;}
.yc_c00321{bottom:567.075022px;}
.yb_c00321{bottom:586.500022px;}
.ya_c00321{bottom:605.925022px;}
.y9_c00321{bottom:625.350022px;}
.y8_c00321{bottom:644.775022px;}
.y7_c00321{bottom:664.200022px;}
.y6_c00321{bottom:705.225022px;}
.y5_c00321{bottom:765.000022px;}
.y4_c00321{bottom:784.425022px;}
.y3_c00321{bottom:803.550022px;}
.y2_c00321{bottom:844.950022px;}
.y1_c00321{bottom:886.725022px;}
.h2_c00321{height:50.028809px;}
.h4_c00321{height:50.053711px;}
.h3_c00321{height:58.886719px;}
.h1_c00321{height:957.750000px;}
.h0_c00321{height:957.975000px;}
.w0_c00321{width:641.850030px;}
.w1_c00321{width:642.000000px;}
.x0_c00321{left:0.000000px;}
.x2_c00321{left:81.000000px;}
.x3_c00321{left:87.825000px;}
.x5_c00321{left:120.225000px;}
.x4_c00321{left:121.350000px;}
.x1_c00321{left:143.625000px;}
.x6_c00321{left:531.375000px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls1_c00321{letter-spacing:0.000000pt;}
.ls0_c00321{letter-spacing:14.933333pt;}
.ws0_c00321{word-spacing:-13.333333pt;}
.ws1_c00321{word-spacing:-11.333333pt;}
.ws2_c00321{word-spacing:0.000000pt;}
._11_c00321{margin-left:-11.708899pt;}
._b_c00321{margin-left:-10.546723pt;}
._a_c00321{margin-left:-9.453277pt;}
._2_c00321{margin-left:-6.495904pt;}
._13_c00321{margin-left:-4.800000pt;}
._15_c00321{margin-left:-3.592824pt;}
._6_c00321{margin-left:-2.266667pt;}
._7_c00321{margin-left:-1.205323pt;}
._0_c00321{width:1.007987pt;}
._1_c00321{width:1.912024pt;}
._3_c00321{width:3.397325pt;}
._5_c00321{width:5.032000pt;}
._4_c00321{width:6.399979pt;}
._10_c00321{width:7.448067pt;}
._e_c00321{width:8.351989pt;}
._8_c00321{width:9.602763pt;}
._9_c00321{width:10.829131pt;}
._f_c00321{width:12.366179pt;}
._12_c00321{width:14.272045pt;}
._c_c00321{width:15.346723pt;}
._d_c00321{width:16.506645pt;}
._14_c00321{width:18.666667pt;}
._16_c00321{width:22.810645pt;}
._17_c00321{width:23.877339pt;}
.fs0_c00321{font-size:45.333333pt;}
.fs1_c00321{font-size:53.333333pt;}
.y0_c00321{bottom:0.000000pt;}
.y27_c00321{bottom:57.600020pt;}
.y26_c00321{bottom:97.933353pt;}
.y25_c00321{bottom:111.400020pt;}
.y24_c00321{bottom:125.466686pt;}
.y23_c00321{bottom:138.600020pt;}
.y22_c00321{bottom:152.333353pt;}
.y21_c00321{bottom:166.066686pt;}
.y20_c00321{bottom:179.866686pt;}
.y1f_c00321{bottom:193.266686pt;}
.y1e_c00321{bottom:207.066686pt;}
.y1d_c00321{bottom:220.466686pt;}
.y1c_c00321{bottom:234.266686pt;}
.y1b_c00321{bottom:247.400020pt;}
.y1a_c00321{bottom:261.133353pt;}
.y19_c00321{bottom:274.600020pt;}
.y18_c00321{bottom:288.666686pt;}
.y17_c00321{bottom:302.066686pt;}
.y16_c00321{bottom:315.533353pt;}
.y15_c00321{bottom:329.266686pt;}
.y14_c00321{bottom:365.800020pt;}
.y13_c00321{bottom:382.733353pt;}
.y12_c00321{bottom:400.333353pt;}
.y11_c00321{bottom:417.600020pt;}
.y10_c00321{bottom:434.866686pt;}
.yf_c00321{bottom:451.866686pt;}
.ye_c00321{bottom:469.466686pt;}
.yd_c00321{bottom:486.400020pt;}
.yc_c00321{bottom:504.066686pt;}
.yb_c00321{bottom:521.333353pt;}
.ya_c00321{bottom:538.600020pt;}
.y9_c00321{bottom:555.866686pt;}
.y8_c00321{bottom:573.133353pt;}
.y7_c00321{bottom:590.400020pt;}
.y6_c00321{bottom:626.866686pt;}
.y5_c00321{bottom:680.000020pt;}
.y4_c00321{bottom:697.266686pt;}
.y3_c00321{bottom:714.266686pt;}
.y2_c00321{bottom:751.066686pt;}
.y1_c00321{bottom:788.200020pt;}
.h2_c00321{height:44.470052pt;}
.h4_c00321{height:44.492188pt;}
.h3_c00321{height:52.343750pt;}
.h1_c00321{height:851.333333pt;}
.h0_c00321{height:851.533333pt;}
.w0_c00321{width:570.533360pt;}
.w1_c00321{width:570.666667pt;}
.x0_c00321{left:0.000000pt;}
.x2_c00321{left:72.000000pt;}
.x3_c00321{left:78.066667pt;}
.x5_c00321{left:106.866667pt;}
.x4_c00321{left:107.866667pt;}
.x1_c00321{left:127.666667pt;}
.x6_c00321{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e7283751e04529ad54006b2f.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00322;src:url('chunks/assets/font_efa34ff78f89b339af66c2cc.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00322{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00322{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00322{word-spacing:-12.750000px;}
.ws2_c00322{word-spacing:0.000000px;}
._12_c00322{margin-left:-15.600000px;}
._1b_c00322{margin-left:-13.980000px;}
._16_c00322{margin-left:-12.060000px;}
._4_c00322{margin-left:-10.800000px;}
._13_c00322{margin-left:-8.580000px;}
._1a_c00322{margin-left:-7.080000px;}
._a_c00322{margin-left:-4.980000px;}
._b_c00322{margin-left:-3.480000px;}
._8_c00322{margin-left:-1.800000px;}
._0_c00322{width:1.260000px;}
._1_c00322{width:2.340000px;}
._7_c00322{width:3.360000px;}
._17_c00322{width:4.500000px;}
._9_c00322{width:5.520000px;}
._6_c00322{width:6.660000px;}
._5_c00322{width:7.800000px;}
._14_c00322{width:8.820000px;}
._18_c00322{width:10.020000px;}
._3_c00322{width:11.100000px;}
._2_c00322{width:12.600000px;}
._c_c00322{width:13.920000px;}
._1e_c00322{width:14.943096px;}
._11_c00322{width:16.140000px;}
._19_c00322{width:17.400000px;}
._f_c00322{width:19.020000px;}
._15_c00322{width:20.280000px;}
._10_c00322{width:22.080000px;}
._1f_c00322{width:23.250000px;}
._d_c00322{width:24.480000px;}
._e_c00322{width:26.340000px;}
._1c_c00322{width:27.450000px;}
._1d_c00322{width:29.343042px;}
.fc1_c00322{color:transparent;}
.fc0_c00322{color:rgb(35,31,32);}
.fs1_c00322{font-size:51.000000px;}
.fs0_c00322{font-size:60.000000px;}
.y0_c00322{bottom:0.000000px;}
.y26_c00322{bottom:64.800022px;}
.y25_c00322{bottom:110.550022px;}
.y24_c00322{bottom:125.325022px;}
.y23_c00322{bottom:141.150022px;}
.y22_c00322{bottom:155.925022px;}
.y21_c00322{bottom:171.375022px;}
.y20_c00322{bottom:186.525022px;}
.y1f_c00322{bottom:201.975022px;}
.y1e_c00322{bottom:217.125022px;}
.y1d_c00322{bottom:258.150022px;}
.y1c_c00322{bottom:277.950022px;}
.y1b_c00322{bottom:297.000022px;}
.y1a_c00322{bottom:316.500022px;}
.y19_c00322{bottom:335.925022px;}
.y18_c00322{bottom:355.350022px;}
.y17_c00322{bottom:374.775022px;}
.y16_c00322{bottom:394.200022px;}
.y15_c00322{bottom:414.000022px;}
.y14_c00322{bottom:433.500022px;}
.y13_c00322{bottom:452.925022px;}
.y12_c00322{bottom:472.350022px;}
.y11_c00322{bottom:491.400022px;}
.y10_c00322{bottom:510.525022px;}
.yf_c00322{bottom:552.225022px;}
.yd_c00322{bottom:612.000022px;}
.yc_c00322{bottom:631.125022px;}
.yb_c00322{bottom:650.550022px;}
.ya_c00322{bottom:670.350022px;}
.y9_c00322{bottom:689.400022px;}
.y8_c00322{bottom:708.825022px;}
.y7_c00322{bottom:728.325022px;}
.y6_c00322{bottom:747.750022px;}
.y5_c00322{bottom:767.550022px;}
.y4_c00322{bottom:786.600022px;}
.y3_c00322{bottom:806.100022px;}
.y2_c00322{bottom:825.525022px;}
.y1_c00322{bottom:844.950022px;}
.ye_c00322{bottom:886.725022px;}
.h3_c00322{height:50.028809px;}
.h4_c00322{height:50.053711px;}
.h2_c00322{height:58.886719px;}
.h1_c00322{height:957.750000px;}
.h0_c00322{height:957.975000px;}
.w1_c00322{width:643.500000px;}
.w0_c00322{width:643.650000px;}
.x0_c00322{left:0.000000px;}
.x2_c00322{left:90.375000px;}
.x1_c00322{left:91.425000px;}
.x3_c00322{left:97.575000px;}
.x4_c00322{left:131.400000px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls0_c00322{letter-spacing:0.000000pt;}
.ws0_c00322{word-spacing:-13.333333pt;}
.ws1_c00322{word-spacing:-11.333333pt;}
.ws2_c00322{word-spacing:0.000000pt;}
._12_c00322{margin-left:-13.866667pt;}
._1b_c00322{margin-left:-12.426667pt;}
._16_c00322{margin-left:-10.720000pt;}
._4_c00322{margin-left:-9.600000pt;}
._13_c00322{margin-left:-7.626667pt;}
._1a_c00322{margin-left:-6.293333pt;}
._a_c00322{margin-left:-4.426667pt;}
._b_c00322{margin-left:-3.093333pt;}
._8_c00322{margin-left:-1.600000pt;}
._0_c00322{width:1.120000pt;}
._1_c00322{width:2.080000pt;}
._7_c00322{width:2.986667pt;}
._17_c00322{width:4.000000pt;}
._9_c00322{width:4.906667pt;}
._6_c00322{width:5.920000pt;}
._5_c00322{width:6.933333pt;}
._14_c00322{width:7.840000pt;}
._18_c00322{width:8.906667pt;}
._3_c00322{width:9.866667pt;}
._2_c00322{width:11.200000pt;}
._c_c00322{width:12.373333pt;}
._1e_c00322{width:13.282752pt;}
._11_c00322{width:14.346667pt;}
._19_c00322{width:15.466667pt;}
._f_c00322{width:16.906667pt;}
._15_c00322{width:18.026667pt;}
._10_c00322{width:19.626667pt;}
._1f_c00322{width:20.666667pt;}
._d_c00322{width:21.760000pt;}
._e_c00322{width:23.413333pt;}
._1c_c00322{width:24.400000pt;}
._1d_c00322{width:26.082704pt;}
.fs1_c00322{font-size:45.333333pt;}
.fs0_c00322{font-size:53.333333pt;}
.y0_c00322{bottom:0.000000pt;}
.y26_c00322{bottom:57.600020pt;}
.y25_c00322{bottom:98.266686pt;}
.y24_c00322{bottom:111.400020pt;}
.y23_c00322{bottom:125.466686pt;}
.y22_c00322{bottom:138.600020pt;}
.y21_c00322{bottom:152.333353pt;}
.y20_c00322{bottom:165.800020pt;}
.y1f_c00322{bottom:179.533353pt;}
.y1e_c00322{bottom:193.000020pt;}
.y1d_c00322{bottom:229.466686pt;}
.y1c_c00322{bottom:247.066686pt;}
.y1b_c00322{bottom:264.000020pt;}
.y1a_c00322{bottom:281.333353pt;}
.y19_c00322{bottom:298.600020pt;}
.y18_c00322{bottom:315.866686pt;}
.y17_c00322{bottom:333.133353pt;}
.y16_c00322{bottom:350.400020pt;}
.y15_c00322{bottom:368.000020pt;}
.y14_c00322{bottom:385.333353pt;}
.y13_c00322{bottom:402.600020pt;}
.y12_c00322{bottom:419.866686pt;}
.y11_c00322{bottom:436.800020pt;}
.y10_c00322{bottom:453.800020pt;}
.yf_c00322{bottom:490.866686pt;}
.yd_c00322{bottom:544.000020pt;}
.yc_c00322{bottom:561.000020pt;}
.yb_c00322{bottom:578.266686pt;}
.ya_c00322{bottom:595.866686pt;}
.y9_c00322{bottom:612.800020pt;}
.y8_c00322{bottom:630.066686pt;}
.y7_c00322{bottom:647.400020pt;}
.y6_c00322{bottom:664.666686pt;}
.y5_c00322{bottom:682.266686pt;}
.y4_c00322{bottom:699.200020pt;}
.y3_c00322{bottom:716.533353pt;}
.y2_c00322{bottom:733.800020pt;}
.y1_c00322{bottom:751.066686pt;}
.ye_c00322{bottom:788.200020pt;}
.h3_c00322{height:44.470052pt;}
.h4_c00322{height:44.492188pt;}
.h2_c00322{height:52.343750pt;}
.h1_c00322{height:851.333333pt;}
.h0_c00322{height:851.533333pt;}
.w1_c00322{width:572.000000pt;}
.w0_c00322{width:572.133333pt;}
.x0_c00322{left:0.000000pt;}
.x2_c00322{left:80.333333pt;}
.x1_c00322{left:81.266667pt;}
.x3_c00322{left:86.733333pt;}
.x4_c00322{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5b0fb6d18227714b05c0a51b.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00323;src:url('chunks/assets/font_455900c4b28e7890c13ba8c1.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00323{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_c00323{vertical-align:0.000000px;}
.ls0_c00323{letter-spacing:0.000000px;}
.sc__c00323{text-shadow:none;}
.sc0_c00323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00323{-webkit-text-stroke:0px transparent;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00323{word-spacing:-15.000000px;}
.ws0_c00323{word-spacing:-12.750000px;}
.ws2_c00323{word-spacing:0.000000px;}
._c_c00323{margin-left:-13.020000px;}
._b_c00323{margin-left:-11.580000px;}
._7_c00323{margin-left:-8.580000px;}
._14_c00323{margin-left:-6.806940px;}
._15_c00323{margin-left:-4.575072px;}
._12_c00323{margin-left:-2.880000px;}
._3_c00323{margin-left:-1.680000px;}
._0_c00323{width:1.260000px;}
._1_c00323{width:2.280000px;}
._2_c00323{width:4.020000px;}
._13_c00323{width:5.100000px;}
._f_c00323{width:6.540000px;}
._11_c00323{width:7.860000px;}
._10_c00323{width:9.060000px;}
._a_c00323{width:10.200000px;}
._9_c00323{width:11.580000px;}
._8_c00323{width:13.560000px;}
._6_c00323{width:16.020000px;}
._5_c00323{width:17.220000px;}
._4_c00323{width:18.960000px;}
._e_c00323{width:21.900000px;}
._d_c00323{width:23.820000px;}
._17_c00323{width:25.770030px;}
._16_c00323{width:28.170081px;}
.fc1_c00323{color:transparent;}
.fc0_c00323{color:rgb(35,31,32);}
.fs1_c00323{font-size:51.000000px;}
.fs0_c00323{font-size:60.000000px;}
.y0_c00323{bottom:0.000000px;}
.y26_c00323{bottom:64.425022px;}
.y25_c00323{bottom:110.175022px;}
.y24_c00323{bottom:124.950022px;}
.y23_c00323{bottom:141.150022px;}
.y22_c00323{bottom:155.925022px;}
.y21_c00323{bottom:171.375022px;}
.y20_c00323{bottom:186.825022px;}
.y1f_c00323{bottom:202.350022px;}
.y1e_c00323{bottom:217.125022px;}
.y1d_c00323{bottom:232.575022px;}
.y1c_c00323{bottom:277.950022px;}
.y1b_c00323{bottom:297.000022px;}
.y1a_c00323{bottom:316.800022px;}
.y19_c00323{bottom:335.925022px;}
.y18_c00323{bottom:355.725022px;}
.y17_c00323{bottom:375.225022px;}
.y16_c00323{bottom:394.575022px;}
.y15_c00323{bottom:413.925022px;}
.y14_c00323{bottom:433.425022px;}
.y13_c00323{bottom:452.925022px;}
.y12_c00323{bottom:472.350022px;}
.y11_c00323{bottom:491.400022px;}
.y10_c00323{bottom:532.800022px;}
.ye_c00323{bottom:592.200022px;}
.yd_c00323{bottom:612.000022px;}
.yc_c00323{bottom:631.125022px;}
.yb_c00323{bottom:650.925022px;}
.ya_c00323{bottom:670.350022px;}
.y9_c00323{bottom:689.775022px;}
.y8_c00323{bottom:708.825022px;}
.y7_c00323{bottom:728.625022px;}
.y6_c00323{bottom:748.125022px;}
.y5_c00323{bottom:767.550022px;}
.y4_c00323{bottom:786.600022px;}
.y3_c00323{bottom:806.025022px;}
.y2_c00323{bottom:825.150022px;}
.y1_c00323{bottom:844.950022px;}
.yf_c00323{bottom:886.725022px;}
.h3_c00323{height:50.028809px;}
.h4_c00323{height:50.053711px;}
.h2_c00323{height:58.886719px;}
.h1_c00323{height:957.750000px;}
.h0_c00323{height:957.975000px;}
.w0_c00323{width:641.850030px;}
.w1_c00323{width:642.000000px;}
.x0_c00323{left:0.000000px;}
.x1_c00323{left:81.000000px;}
.x2_c00323{left:82.050000px;}
.x5_c00323{left:87.825000px;}
.x3_c00323{left:96.825000px;}
.x6_c00323{left:121.350000px;}
.x4_c00323{left:143.625000px;}
.x7_c00323{left:531.375000px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls0_c00323{letter-spacing:0.000000pt;}
.ws1_c00323{word-spacing:-13.333333pt;}
.ws0_c00323{word-spacing:-11.333333pt;}
.ws2_c00323{word-spacing:0.000000pt;}
._c_c00323{margin-left:-11.573333pt;}
._b_c00323{margin-left:-10.293333pt;}
._7_c00323{margin-left:-7.626667pt;}
._14_c00323{margin-left:-6.050613pt;}
._15_c00323{margin-left:-4.066731pt;}
._12_c00323{margin-left:-2.560000pt;}
._3_c00323{margin-left:-1.493333pt;}
._0_c00323{width:1.120000pt;}
._1_c00323{width:2.026667pt;}
._2_c00323{width:3.573333pt;}
._13_c00323{width:4.533333pt;}
._f_c00323{width:5.813333pt;}
._11_c00323{width:6.986667pt;}
._10_c00323{width:8.053333pt;}
._a_c00323{width:9.066667pt;}
._9_c00323{width:10.293333pt;}
._8_c00323{width:12.053333pt;}
._6_c00323{width:14.240000pt;}
._5_c00323{width:15.306667pt;}
._4_c00323{width:16.853333pt;}
._e_c00323{width:19.466667pt;}
._d_c00323{width:21.173333pt;}
._17_c00323{width:22.906693pt;}
._16_c00323{width:25.040072pt;}
.fs1_c00323{font-size:45.333333pt;}
.fs0_c00323{font-size:53.333333pt;}
.y0_c00323{bottom:0.000000pt;}
.y26_c00323{bottom:57.266686pt;}
.y25_c00323{bottom:97.933353pt;}
.y24_c00323{bottom:111.066686pt;}
.y23_c00323{bottom:125.466686pt;}
.y22_c00323{bottom:138.600020pt;}
.y21_c00323{bottom:152.333353pt;}
.y20_c00323{bottom:166.066686pt;}
.y1f_c00323{bottom:179.866686pt;}
.y1e_c00323{bottom:193.000020pt;}
.y1d_c00323{bottom:206.733353pt;}
.y1c_c00323{bottom:247.066686pt;}
.y1b_c00323{bottom:264.000020pt;}
.y1a_c00323{bottom:281.600020pt;}
.y19_c00323{bottom:298.600020pt;}
.y18_c00323{bottom:316.200020pt;}
.y17_c00323{bottom:333.533353pt;}
.y16_c00323{bottom:350.733353pt;}
.y15_c00323{bottom:367.933353pt;}
.y14_c00323{bottom:385.266686pt;}
.y13_c00323{bottom:402.600020pt;}
.y12_c00323{bottom:419.866686pt;}
.y11_c00323{bottom:436.800020pt;}
.y10_c00323{bottom:473.600020pt;}
.ye_c00323{bottom:526.400020pt;}
.yd_c00323{bottom:544.000020pt;}
.yc_c00323{bottom:561.000020pt;}
.yb_c00323{bottom:578.600020pt;}
.ya_c00323{bottom:595.866686pt;}
.y9_c00323{bottom:613.133353pt;}
.y8_c00323{bottom:630.066686pt;}
.y7_c00323{bottom:647.666686pt;}
.y6_c00323{bottom:665.000020pt;}
.y5_c00323{bottom:682.266686pt;}
.y4_c00323{bottom:699.200020pt;}
.y3_c00323{bottom:716.466686pt;}
.y2_c00323{bottom:733.466686pt;}
.y1_c00323{bottom:751.066686pt;}
.yf_c00323{bottom:788.200020pt;}
.h3_c00323{height:44.470052pt;}
.h4_c00323{height:44.492188pt;}
.h2_c00323{height:52.343750pt;}
.h1_c00323{height:851.333333pt;}
.h0_c00323{height:851.533333pt;}
.w0_c00323{width:570.533360pt;}
.w1_c00323{width:570.666667pt;}
.x0_c00323{left:0.000000pt;}
.x1_c00323{left:72.000000pt;}
.x2_c00323{left:72.933333pt;}
.x5_c00323{left:78.066667pt;}
.x3_c00323{left:86.066667pt;}
.x6_c00323{left:107.866667pt;}
.x4_c00323{left:127.666667pt;}
.x7_c00323{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_904f2f633f207d2be543343b.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00324;src:url('chunks/assets/font_474fa56a221d898a5105a2d7.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00324{letter-spacing:0.000000px;}
.ls0_c00324{letter-spacing:12.600000px;}
.sc__c00324{text-shadow:none;}
.sc0_c00324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00324{-webkit-text-stroke:0px transparent;}
.sc0_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00324{word-spacing:-15.000000px;}
.ws1_c00324{word-spacing:-12.750000px;}
.ws2_c00324{word-spacing:0.000000px;}
._14_c00324{margin-left:-16.467003px;}
._10_c00324{margin-left:-14.783382px;}
._e_c00324{margin-left:-12.666378px;}
._d_c00324{margin-left:-11.333622px;}
._11_c00324{margin-left:-7.320000px;}
._16_c00324{margin-left:-5.923764px;}
._12_c00324{margin-left:-4.853874px;}
._4_c00324{margin-left:-3.804243px;}
._0_c00324{margin-left:-2.622012px;}
._2_c00324{margin-left:-1.539027px;}
._3_c00324{width:1.062024px;}
._1_c00324{width:2.400009px;}
._a_c00324{width:4.070835px;}
._c_c00324{width:6.060000px;}
._f_c00324{width:7.101048px;}
._b_c00324{width:9.065529px;}
._8_c00324{width:10.581039px;}
._9_c00324{width:12.191877px;}
._7_c00324{width:13.965096px;}
._5_c00324{width:16.955934px;}
._6_c00324{width:18.431895px;}
._13_c00324{width:19.500000px;}
._17_c00324{width:21.006108px;}
._18_c00324{width:22.445874px;}
._19_c00324{width:23.583063px;}
._15_c00324{width:24.711081px;}
._1a_c00324{width:28.206108px;}
.fc2_c00324{color:transparent;}
.fc1_c00324{color:rgb(0,0,0);}
.fc0_c00324{color:rgb(35,31,32);}
.fs0_c00324{font-size:51.000000px;}
.fs1_c00324{font-size:60.000000px;}
.y0_c00324{bottom:0.000000px;}
.y23_c00324{bottom:41.775022px;}
.y22_c00324{bottom:110.175022px;}
.y21_c00324{bottom:125.325022px;}
.y20_c00324{bottom:141.150022px;}
.y1f_c00324{bottom:154.650022px;}
.y1e_c00324{bottom:171.375022px;}
.y1d_c00324{bottom:186.525022px;}
.y1c_c00324{bottom:226.425022px;}
.y1b_c00324{bottom:246.225022px;}
.y1a_c00324{bottom:265.725022px;}
.y19_c00324{bottom:284.775022px;}
.y18_c00324{bottom:304.575022px;}
.y17_c00324{bottom:323.925022px;}
.y16_c00324{bottom:343.425022px;}
.y15_c00324{bottom:362.925022px;}
.y14_c00324{bottom:381.975022px;}
.y13_c00324{bottom:420.525022px;}
.y12_c00324{bottom:477.750022px;}
.y11_c00324{bottom:496.725022px;}
.y10_c00324{bottom:516.225022px;}
.yf_c00324{bottom:535.725022px;}
.ye_c00324{bottom:555.525022px;}
.yd_c00324{bottom:574.950022px;}
.yc_c00324{bottom:594.375022px;}
.yb_c00324{bottom:613.800022px;}
.ya_c00324{bottom:651.600022px;}
.y9_c00324{bottom:709.200022px;}
.y8_c00324{bottom:728.625022px;}
.y7_c00324{bottom:747.750022px;}
.y6_c00324{bottom:767.175022px;}
.y5_c00324{bottom:786.225022px;}
.y4_c00324{bottom:806.025022px;}
.y3_c00324{bottom:825.525022px;}
.y2_c00324{bottom:844.950022px;}
.y1_c00324{bottom:886.725022px;}
.h2_c00324{height:50.028809px;}
.h4_c00324{height:50.053711px;}
.h3_c00324{height:58.886719px;}
.h1_c00324{height:957.750000px;}
.h0_c00324{height:957.975000px;}
.w1_c00324{width:643.500000px;}
.w0_c00324{width:643.650000px;}
.x0_c00324{left:0.000000px;}
.x1_c00324{left:91.050000px;}
.x2_c00324{left:97.575000px;}
.x3_c00324{left:131.400000px;}
.x4_c00324{left:183.975000px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls1_c00324{letter-spacing:0.000000pt;}
.ls0_c00324{letter-spacing:11.200000pt;}
.ws0_c00324{word-spacing:-13.333333pt;}
.ws1_c00324{word-spacing:-11.333333pt;}
.ws2_c00324{word-spacing:0.000000pt;}
._14_c00324{margin-left:-14.637336pt;}
._10_c00324{margin-left:-13.140784pt;}
._e_c00324{margin-left:-11.259003pt;}
._d_c00324{margin-left:-10.074331pt;}
._11_c00324{margin-left:-6.506667pt;}
._16_c00324{margin-left:-5.265568pt;}
._12_c00324{margin-left:-4.314555pt;}
._4_c00324{margin-left:-3.381549pt;}
._0_c00324{margin-left:-2.330677pt;}
._2_c00324{margin-left:-1.368024pt;}
._3_c00324{width:0.944021pt;}
._1_c00324{width:2.133341pt;}
._a_c00324{width:3.618520pt;}
._c_c00324{width:5.386667pt;}
._f_c00324{width:6.312043pt;}
._b_c00324{width:8.058248pt;}
._8_c00324{width:9.405368pt;}
._9_c00324{width:10.837224pt;}
._7_c00324{width:12.413419pt;}
._5_c00324{width:15.071941pt;}
._6_c00324{width:16.383907pt;}
._13_c00324{width:17.333333pt;}
._17_c00324{width:18.672096pt;}
._18_c00324{width:19.951888pt;}
._19_c00324{width:20.962723pt;}
._15_c00324{width:21.965405pt;}
._1a_c00324{width:25.072096pt;}
.fs0_c00324{font-size:45.333333pt;}
.fs1_c00324{font-size:53.333333pt;}
.y0_c00324{bottom:0.000000pt;}
.y23_c00324{bottom:37.133353pt;}
.y22_c00324{bottom:97.933353pt;}
.y21_c00324{bottom:111.400020pt;}
.y20_c00324{bottom:125.466686pt;}
.y1f_c00324{bottom:137.466686pt;}
.y1e_c00324{bottom:152.333353pt;}
.y1d_c00324{bottom:165.800020pt;}
.y1c_c00324{bottom:201.266686pt;}
.y1b_c00324{bottom:218.866686pt;}
.y1a_c00324{bottom:236.200020pt;}
.y19_c00324{bottom:253.133353pt;}
.y18_c00324{bottom:270.733353pt;}
.y17_c00324{bottom:287.933353pt;}
.y16_c00324{bottom:305.266686pt;}
.y15_c00324{bottom:322.600020pt;}
.y14_c00324{bottom:339.533353pt;}
.y13_c00324{bottom:373.800020pt;}
.y12_c00324{bottom:424.666686pt;}
.y11_c00324{bottom:441.533353pt;}
.y10_c00324{bottom:458.866686pt;}
.yf_c00324{bottom:476.200020pt;}
.ye_c00324{bottom:493.800020pt;}
.yd_c00324{bottom:511.066686pt;}
.yc_c00324{bottom:528.333353pt;}
.yb_c00324{bottom:545.600020pt;}
.ya_c00324{bottom:579.200020pt;}
.y9_c00324{bottom:630.400020pt;}
.y8_c00324{bottom:647.666686pt;}
.y7_c00324{bottom:664.666686pt;}
.y6_c00324{bottom:681.933353pt;}
.y5_c00324{bottom:698.866686pt;}
.y4_c00324{bottom:716.466686pt;}
.y3_c00324{bottom:733.800020pt;}
.y2_c00324{bottom:751.066686pt;}
.y1_c00324{bottom:788.200020pt;}
.h2_c00324{height:44.470052pt;}
.h4_c00324{height:44.492188pt;}
.h3_c00324{height:52.343750pt;}
.h1_c00324{height:851.333333pt;}
.h0_c00324{height:851.533333pt;}
.w1_c00324{width:572.000000pt;}
.w0_c00324{width:572.133333pt;}
.x0_c00324{left:0.000000pt;}
.x1_c00324{left:80.933333pt;}
.x2_c00324{left:86.733333pt;}
.x3_c00324{left:116.800000pt;}
.x4_c00324{left:163.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6acfa51c158086018687aa1e.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00325;src:url('chunks/assets/font_fd412b28e650bca027e9784e.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00325{letter-spacing:0.000000px;}
.sc__c00325{text-shadow:none;}
.sc0_c00325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00325{-webkit-text-stroke:0px transparent;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00325{word-spacing:-15.000000px;}
.ws1_c00325{word-spacing:-12.750000px;}
.ws2_c00325{word-spacing:0.000000px;}
._14_c00325{margin-left:-16.380000px;}
._11_c00325{margin-left:-15.240000px;}
._e_c00325{margin-left:-14.040000px;}
._6_c00325{margin-left:-12.060000px;}
._5_c00325{margin-left:-10.440000px;}
._19_c00325{margin-left:-7.800000px;}
._12_c00325{margin-left:-6.660000px;}
._1d_c00325{margin-left:-5.633988px;}
._8_c00325{margin-left:-4.500000px;}
._13_c00325{margin-left:-3.000000px;}
._9_c00325{margin-left:-1.980000px;}
._1_c00325{width:1.080000px;}
._0_c00325{width:2.100000px;}
._c_c00325{width:3.300000px;}
._18_c00325{width:4.320000px;}
._10_c00325{width:5.460000px;}
._f_c00325{width:6.900000px;}
._b_c00325{width:8.100000px;}
._17_c00325{width:10.020000px;}
._d_c00325{width:11.460000px;}
._16_c00325{width:12.600000px;}
._a_c00325{width:13.620000px;}
._1a_c00325{width:15.341982px;}
._7_c00325{width:16.920000px;}
._2_c00325{width:18.300000px;}
._3_c00325{width:20.280000px;}
._4_c00325{width:22.020000px;}
._15_c00325{width:23.640000px;}
._1c_c00325{width:26.790102px;}
._1b_c00325{width:27.810000px;}
.fc1_c00325{color:transparent;}
.fc0_c00325{color:rgb(35,31,32);}
.fs1_c00325{font-size:51.000000px;}
.fs0_c00325{font-size:60.000000px;}
.y0_c00325{bottom:0.000000px;}
.y2a_c00325{bottom:64.425022px;}
.y29_c00325{bottom:110.175022px;}
.y28_c00325{bottom:125.325022px;}
.y27_c00325{bottom:140.775022px;}
.y26_c00325{bottom:155.925022px;}
.y25_c00325{bottom:171.375022px;}
.y24_c00325{bottom:186.525022px;}
.y23_c00325{bottom:201.975022px;}
.y22_c00325{bottom:217.125022px;}
.y21_c00325{bottom:232.950022px;}
.y20_c00325{bottom:248.025022px;}
.y1f_c00325{bottom:263.550022px;}
.y1e_c00325{bottom:278.325022px;}
.y1d_c00325{bottom:293.775022px;}
.y1c_c00325{bottom:308.925022px;}
.y1a_c00325{bottom:359.325022px;}
.y19_c00325{bottom:378.375022px;}
.y18_c00325{bottom:397.725022px;}
.y17_c00325{bottom:417.225022px;}
.y16_c00325{bottom:436.725022px;}
.y15_c00325{bottom:456.525022px;}
.y14_c00325{bottom:475.575022px;}
.y13_c00325{bottom:495.000022px;}
.y12_c00325{bottom:514.800022px;}
.y11_c00325{bottom:534.225022px;}
.y10_c00325{bottom:553.725022px;}
.yf_c00325{bottom:573.150022px;}
.ye_c00325{bottom:592.200022px;}
.yd_c00325{bottom:611.625022px;}
.yc_c00325{bottom:631.425022px;}
.yb_c00325{bottom:650.925022px;}
.ya_c00325{bottom:669.975022px;}
.y9_c00325{bottom:689.775022px;}
.y8_c00325{bottom:708.825022px;}
.y7_c00325{bottom:728.325022px;}
.y6_c00325{bottom:747.750022px;}
.y5_c00325{bottom:767.175022px;}
.y4_c00325{bottom:786.225022px;}
.y3_c00325{bottom:806.025022px;}
.y2_c00325{bottom:825.150022px;}
.y1_c00325{bottom:844.950022px;}
.y1b_c00325{bottom:886.725022px;}
.h3_c00325{height:50.028809px;}
.h4_c00325{height:50.053711px;}
.h2_c00325{height:58.886719px;}
.h1_c00325{height:957.750000px;}
.h0_c00325{height:957.975000px;}
.w0_c00325{width:641.850030px;}
.w1_c00325{width:642.000000px;}
.x0_c00325{left:0.000000px;}
.x3_c00325{left:80.250000px;}
.x1_c00325{left:81.375000px;}
.x5_c00325{left:87.825000px;}
.x2_c00325{left:97.200000px;}
.x6_c00325{left:120.975000px;}
.x4_c00325{left:143.625000px;}
.x7_c00325{left:531.375000px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls0_c00325{letter-spacing:0.000000pt;}
.ws0_c00325{word-spacing:-13.333333pt;}
.ws1_c00325{word-spacing:-11.333333pt;}
.ws2_c00325{word-spacing:0.000000pt;}
._14_c00325{margin-left:-14.560000pt;}
._11_c00325{margin-left:-13.546667pt;}
._e_c00325{margin-left:-12.480000pt;}
._6_c00325{margin-left:-10.720000pt;}
._5_c00325{margin-left:-9.280000pt;}
._19_c00325{margin-left:-6.933333pt;}
._12_c00325{margin-left:-5.920000pt;}
._1d_c00325{margin-left:-5.007989pt;}
._8_c00325{margin-left:-4.000000pt;}
._13_c00325{margin-left:-2.666667pt;}
._9_c00325{margin-left:-1.760000pt;}
._1_c00325{width:0.960000pt;}
._0_c00325{width:1.866667pt;}
._c_c00325{width:2.933333pt;}
._18_c00325{width:3.840000pt;}
._10_c00325{width:4.853333pt;}
._f_c00325{width:6.133333pt;}
._b_c00325{width:7.200000pt;}
._17_c00325{width:8.906667pt;}
._d_c00325{width:10.186667pt;}
._16_c00325{width:11.200000pt;}
._a_c00325{width:12.106667pt;}
._1a_c00325{width:13.637317pt;}
._7_c00325{width:15.040000pt;}
._2_c00325{width:16.266667pt;}
._3_c00325{width:18.026667pt;}
._4_c00325{width:19.573333pt;}
._15_c00325{width:21.013333pt;}
._1c_c00325{width:23.813424pt;}
._1b_c00325{width:24.720000pt;}
.fs1_c00325{font-size:45.333333pt;}
.fs0_c00325{font-size:53.333333pt;}
.y0_c00325{bottom:0.000000pt;}
.y2a_c00325{bottom:57.266686pt;}
.y29_c00325{bottom:97.933353pt;}
.y28_c00325{bottom:111.400020pt;}
.y27_c00325{bottom:125.133353pt;}
.y26_c00325{bottom:138.600020pt;}
.y25_c00325{bottom:152.333353pt;}
.y24_c00325{bottom:165.800020pt;}
.y23_c00325{bottom:179.533353pt;}
.y22_c00325{bottom:193.000020pt;}
.y21_c00325{bottom:207.066686pt;}
.y20_c00325{bottom:220.466686pt;}
.y1f_c00325{bottom:234.266686pt;}
.y1e_c00325{bottom:247.400020pt;}
.y1d_c00325{bottom:261.133353pt;}
.y1c_c00325{bottom:274.600020pt;}
.y1a_c00325{bottom:319.400020pt;}
.y19_c00325{bottom:336.333353pt;}
.y18_c00325{bottom:353.533353pt;}
.y17_c00325{bottom:370.866686pt;}
.y16_c00325{bottom:388.200020pt;}
.y15_c00325{bottom:405.800020pt;}
.y14_c00325{bottom:422.733353pt;}
.y13_c00325{bottom:440.000020pt;}
.y12_c00325{bottom:457.600020pt;}
.y11_c00325{bottom:474.866686pt;}
.y10_c00325{bottom:492.200020pt;}
.yf_c00325{bottom:509.466686pt;}
.ye_c00325{bottom:526.400020pt;}
.yd_c00325{bottom:543.666686pt;}
.yc_c00325{bottom:561.266686pt;}
.yb_c00325{bottom:578.600020pt;}
.ya_c00325{bottom:595.533353pt;}
.y9_c00325{bottom:613.133353pt;}
.y8_c00325{bottom:630.066686pt;}
.y7_c00325{bottom:647.400020pt;}
.y6_c00325{bottom:664.666686pt;}
.y5_c00325{bottom:681.933353pt;}
.y4_c00325{bottom:698.866686pt;}
.y3_c00325{bottom:716.466686pt;}
.y2_c00325{bottom:733.466686pt;}
.y1_c00325{bottom:751.066686pt;}
.y1b_c00325{bottom:788.200020pt;}
.h3_c00325{height:44.470052pt;}
.h4_c00325{height:44.492188pt;}
.h2_c00325{height:52.343750pt;}
.h1_c00325{height:851.333333pt;}
.h0_c00325{height:851.533333pt;}
.w0_c00325{width:570.533360pt;}
.w1_c00325{width:570.666667pt;}
.x0_c00325{left:0.000000pt;}
.x3_c00325{left:71.333333pt;}
.x1_c00325{left:72.333333pt;}
.x5_c00325{left:78.066667pt;}
.x2_c00325{left:86.400000pt;}
.x6_c00325{left:107.533333pt;}
.x4_c00325{left:127.666667pt;}
.x7_c00325{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7269df5a5cd9fe4d61090129.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00326;src:url('chunks/assets/font_f8642424c6f78a3b6264591a.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00326{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.ls0_c00326{letter-spacing:0.000000px;}
.sc__c00326{text-shadow:none;}
.sc0_c00326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00326{-webkit-text-stroke:0px transparent;}
.sc0_c00326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00326{word-spacing:-15.000000px;}
.ws1_c00326{word-spacing:-12.750000px;}
.ws2_c00326{word-spacing:0.000000px;}
._12_c00326{margin-left:-14.700000px;}
._e_c00326{margin-left:-12.660000px;}
._8_c00326{margin-left:-11.280000px;}
._9_c00326{margin-left:-10.140000px;}
._c_c00326{margin-left:-8.400000px;}
._17_c00326{margin-left:-6.854997px;}
._10_c00326{margin-left:-5.760000px;}
._11_c00326{margin-left:-4.740000px;}
._a_c00326{margin-left:-3.300000px;}
._7_c00326{margin-left:-1.740000px;}
._0_c00326{width:1.500000px;}
._3_c00326{width:2.820000px;}
._4_c00326{width:4.740000px;}
._b_c00326{width:6.600000px;}
._5_c00326{width:7.860000px;}
._d_c00326{width:8.940000px;}
._1_c00326{width:10.320000px;}
._6_c00326{width:11.340000px;}
._2_c00326{width:13.080000px;}
._18_c00326{width:14.427009px;}
._13_c00326{width:16.200000px;}
._f_c00326{width:17.760000px;}
._15_c00326{width:22.530030px;}
._14_c00326{width:24.089979px;}
._16_c00326{width:25.589991px;}
._19_c00326{width:27.570081px;}
.fc1_c00326{color:transparent;}
.fc0_c00326{color:rgb(35,31,32);}
.fs1_c00326{font-size:51.000000px;}
.fs0_c00326{font-size:60.000000px;}
.y0_c00326{bottom:0.000000px;}
.y2a_c00326{bottom:64.425022px;}
.y29_c00326{bottom:110.550022px;}
.y28_c00326{bottom:125.625022px;}
.y27_c00326{bottom:141.150022px;}
.y26_c00326{bottom:155.925022px;}
.y25_c00326{bottom:171.375022px;}
.y24_c00326{bottom:186.825022px;}
.y23_c00326{bottom:201.975022px;}
.y22_c00326{bottom:217.125022px;}
.y21_c00326{bottom:232.575022px;}
.y20_c00326{bottom:247.725022px;}
.y1f_c00326{bottom:263.175022px;}
.y1e_c00326{bottom:278.625022px;}
.y1d_c00326{bottom:293.700022px;}
.y1c_c00326{bottom:309.225022px;}
.y1b_c00326{bottom:324.750022px;}
.y1a_c00326{bottom:339.825022px;}
.y19_c00326{bottom:354.975022px;}
.y18_c00326{bottom:370.125022px;}
.y16_c00326{bottom:418.350022px;}
.y15_c00326{bottom:437.400022px;}
.y14_c00326{bottom:456.825022px;}
.y13_c00326{bottom:476.325022px;}
.y12_c00326{bottom:496.125022px;}
.y11_c00326{bottom:515.175022px;}
.y10_c00326{bottom:534.600022px;}
.yf_c00326{bottom:554.400022px;}
.ye_c00326{bottom:573.525022px;}
.yd_c00326{bottom:592.950022px;}
.yc_c00326{bottom:612.750022px;}
.yb_c00326{bottom:632.175022px;}
.ya_c00326{bottom:651.225022px;}
.y9_c00326{bottom:670.725022px;}
.y8_c00326{bottom:690.525022px;}
.y7_c00326{bottom:709.950022px;}
.y6_c00326{bottom:729.000022px;}
.y5_c00326{bottom:748.425022px;}
.y4_c00326{bottom:767.925022px;}
.y3_c00326{bottom:787.350022px;}
.y2_c00326{bottom:806.775022px;}
.y1_c00326{bottom:844.950022px;}
.y17_c00326{bottom:886.725022px;}
.h3_c00326{height:50.028809px;}
.h4_c00326{height:50.053711px;}
.h2_c00326{height:58.886719px;}
.h1_c00326{height:957.750000px;}
.h0_c00326{height:957.975000px;}
.w1_c00326{width:643.500000px;}
.w0_c00326{width:643.650000px;}
.x0_c00326{left:0.000000px;}
.x1_c00326{left:91.050000px;}
.x3_c00326{left:97.575000px;}
.x2_c00326{left:106.950000px;}
.x4_c00326{left:131.025000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls0_c00326{letter-spacing:0.000000pt;}
.ws0_c00326{word-spacing:-13.333333pt;}
.ws1_c00326{word-spacing:-11.333333pt;}
.ws2_c00326{word-spacing:0.000000pt;}
._12_c00326{margin-left:-13.066667pt;}
._e_c00326{margin-left:-11.253333pt;}
._8_c00326{margin-left:-10.026667pt;}
._9_c00326{margin-left:-9.013333pt;}
._c_c00326{margin-left:-7.466667pt;}
._17_c00326{margin-left:-6.093331pt;}
._10_c00326{margin-left:-5.120000pt;}
._11_c00326{margin-left:-4.213333pt;}
._a_c00326{margin-left:-2.933333pt;}
._7_c00326{margin-left:-1.546667pt;}
._0_c00326{width:1.333333pt;}
._3_c00326{width:2.506667pt;}
._4_c00326{width:4.213333pt;}
._b_c00326{width:5.866667pt;}
._5_c00326{width:6.986667pt;}
._d_c00326{width:7.946667pt;}
._1_c00326{width:9.173333pt;}
._6_c00326{width:10.080000pt;}
._2_c00326{width:11.626667pt;}
._18_c00326{width:12.824008pt;}
._13_c00326{width:14.400000pt;}
._f_c00326{width:15.786667pt;}
._15_c00326{width:20.026693pt;}
._14_c00326{width:21.413315pt;}
._16_c00326{width:22.746659pt;}
._19_c00326{width:24.506739pt;}
.fs1_c00326{font-size:45.333333pt;}
.fs0_c00326{font-size:53.333333pt;}
.y0_c00326{bottom:0.000000pt;}
.y2a_c00326{bottom:57.266686pt;}
.y29_c00326{bottom:98.266686pt;}
.y28_c00326{bottom:111.666686pt;}
.y27_c00326{bottom:125.466686pt;}
.y26_c00326{bottom:138.600020pt;}
.y25_c00326{bottom:152.333353pt;}
.y24_c00326{bottom:166.066686pt;}
.y23_c00326{bottom:179.533353pt;}
.y22_c00326{bottom:193.000020pt;}
.y21_c00326{bottom:206.733353pt;}
.y20_c00326{bottom:220.200020pt;}
.y1f_c00326{bottom:233.933353pt;}
.y1e_c00326{bottom:247.666686pt;}
.y1d_c00326{bottom:261.066686pt;}
.y1c_c00326{bottom:274.866686pt;}
.y1b_c00326{bottom:288.666686pt;}
.y1a_c00326{bottom:302.066686pt;}
.y19_c00326{bottom:315.533353pt;}
.y18_c00326{bottom:329.000020pt;}
.y16_c00326{bottom:371.866686pt;}
.y15_c00326{bottom:388.800020pt;}
.y14_c00326{bottom:406.066686pt;}
.y13_c00326{bottom:423.400020pt;}
.y12_c00326{bottom:441.000020pt;}
.y11_c00326{bottom:457.933353pt;}
.y10_c00326{bottom:475.200020pt;}
.yf_c00326{bottom:492.800020pt;}
.ye_c00326{bottom:509.800020pt;}
.yd_c00326{bottom:527.066686pt;}
.yc_c00326{bottom:544.666686pt;}
.yb_c00326{bottom:561.933353pt;}
.ya_c00326{bottom:578.866686pt;}
.y9_c00326{bottom:596.200020pt;}
.y8_c00326{bottom:613.800020pt;}
.y7_c00326{bottom:631.066686pt;}
.y6_c00326{bottom:648.000020pt;}
.y5_c00326{bottom:665.266686pt;}
.y4_c00326{bottom:682.600020pt;}
.y3_c00326{bottom:699.866686pt;}
.y2_c00326{bottom:717.133353pt;}
.y1_c00326{bottom:751.066686pt;}
.y17_c00326{bottom:788.200020pt;}
.h3_c00326{height:44.470052pt;}
.h4_c00326{height:44.492188pt;}
.h2_c00326{height:52.343750pt;}
.h1_c00326{height:851.333333pt;}
.h0_c00326{height:851.533333pt;}
.w1_c00326{width:572.000000pt;}
.w0_c00326{width:572.133333pt;}
.x0_c00326{left:0.000000pt;}
.x1_c00326{left:80.933333pt;}
.x3_c00326{left:86.733333pt;}
.x2_c00326{left:95.066667pt;}
.x4_c00326{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b9229b8a903021aae0f442a.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00327;src:url('chunks/assets/font_cddb494f7b4a19143e39f9a0.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00327{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_c00327{vertical-align:0.000000px;}
.ls0_c00327{letter-spacing:0.000000px;}
.sc__c00327{text-shadow:none;}
.sc0_c00327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00327{-webkit-text-stroke:0px transparent;}
.sc0_c00327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00327{word-spacing:-15.000000px;}
.ws0_c00327{word-spacing:-12.750000px;}
.ws2_c00327{word-spacing:0.000000px;}
._10_c00327{margin-left:-12.918171px;}
._f_c00327{margin-left:-11.081829px;}
._2_c00327{margin-left:-7.307892px;}
._b_c00327{margin-left:-5.400000px;}
._d_c00327{margin-left:-3.600000px;}
._6_c00327{margin-left:-2.550000px;}
._7_c00327{margin-left:-1.355988px;}
._0_c00327{width:1.133985px;}
._1_c00327{width:2.151027px;}
._3_c00327{width:3.821991px;}
._5_c00327{width:5.661000px;}
._4_c00327{width:7.199976px;}
._9_c00327{width:8.202132px;}
._a_c00327{width:9.389976px;}
._8_c00327{width:10.575138px;}
._e_c00327{width:11.916012px;}
._c_c00327{width:13.800000px;}
._11_c00327{width:16.185063px;}
._12_c00327{width:17.876946px;}
._13_c00327{width:21.360201px;}
._15_c00327{width:23.856066px;}
._16_c00327{width:25.661976px;}
._14_c00327{width:26.862006px;}
.fc1_c00327{color:transparent;}
.fc0_c00327{color:rgb(35,31,32);}
.fs0_c00327{font-size:51.000000px;}
.fs1_c00327{font-size:60.000000px;}
.y0_c00327{bottom:0.000000px;}
.y2a_c00327{bottom:64.425022px;}
.y29_c00327{bottom:110.550022px;}
.y28_c00327{bottom:125.325022px;}
.y27_c00327{bottom:140.775022px;}
.y26_c00327{bottom:155.925022px;}
.y25_c00327{bottom:171.750022px;}
.y24_c00327{bottom:186.825022px;}
.y23_c00327{bottom:202.350022px;}
.y22_c00327{bottom:217.125022px;}
.y21_c00327{bottom:232.575022px;}
.y20_c00327{bottom:247.725022px;}
.y1f_c00327{bottom:263.550022px;}
.y1e_c00327{bottom:278.325022px;}
.y1d_c00327{bottom:294.150022px;}
.y1c_c00327{bottom:339.525022px;}
.y1b_c00327{bottom:358.950022px;}
.y1a_c00327{bottom:378.750022px;}
.y19_c00327{bottom:397.800022px;}
.y18_c00327{bottom:417.600022px;}
.y17_c00327{bottom:436.725022px;}
.y16_c00327{bottom:456.525022px;}
.y15_c00327{bottom:475.575022px;}
.y14_c00327{bottom:495.375022px;}
.y13_c00327{bottom:514.425022px;}
.y12_c00327{bottom:533.925022px;}
.y11_c00327{bottom:553.350022px;}
.y10_c00327{bottom:572.775022px;}
.yf_c00327{bottom:592.575022px;}
.ye_c00327{bottom:612.000022px;}
.yd_c00327{bottom:631.125022px;}
.yc_c00327{bottom:650.550022px;}
.yb_c00327{bottom:670.350022px;}
.ya_c00327{bottom:689.775022px;}
.y9_c00327{bottom:709.200022px;}
.y8_c00327{bottom:728.325022px;}
.y7_c00327{bottom:747.750022px;}
.y6_c00327{bottom:767.550022px;}
.y5_c00327{bottom:786.225022px;}
.y4_c00327{bottom:806.025022px;}
.y3_c00327{bottom:825.150022px;}
.y2_c00327{bottom:844.575022px;}
.y1_c00327{bottom:886.725022px;}
.h2_c00327{height:50.028809px;}
.h4_c00327{height:50.053711px;}
.h3_c00327{height:58.886719px;}
.h1_c00327{height:957.750000px;}
.h0_c00327{height:957.975000px;}
.w0_c00327{width:641.850030px;}
.w1_c00327{width:642.000000px;}
.x0_c00327{left:0.000000px;}
.x3_c00327{left:80.250000px;}
.x2_c00327{left:81.375000px;}
.x5_c00327{left:87.825000px;}
.x4_c00327{left:96.450000px;}
.x6_c00327{left:120.975000px;}
.x1_c00327{left:143.625000px;}
.x7_c00327{left:531.375000px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls0_c00327{letter-spacing:0.000000pt;}
.ws1_c00327{word-spacing:-13.333333pt;}
.ws0_c00327{word-spacing:-11.333333pt;}
.ws2_c00327{word-spacing:0.000000pt;}
._10_c00327{margin-left:-11.482819pt;}
._f_c00327{margin-left:-9.850515pt;}
._2_c00327{margin-left:-6.495904pt;}
._b_c00327{margin-left:-4.800000pt;}
._d_c00327{margin-left:-3.200000pt;}
._6_c00327{margin-left:-2.266667pt;}
._7_c00327{margin-left:-1.205323pt;}
._0_c00327{width:1.007987pt;}
._1_c00327{width:1.912024pt;}
._3_c00327{width:3.397325pt;}
._5_c00327{width:5.032000pt;}
._4_c00327{width:6.399979pt;}
._9_c00327{width:7.290784pt;}
._a_c00327{width:8.346645pt;}
._8_c00327{width:9.400123pt;}
._e_c00327{width:10.592011pt;}
._c_c00327{width:12.266667pt;}
._11_c00327{width:14.386723pt;}
._12_c00327{width:15.890619pt;}
._13_c00327{width:18.986845pt;}
._15_c00327{width:21.205392pt;}
._16_c00327{width:22.810645pt;}
._14_c00327{width:23.877339pt;}
.fs0_c00327{font-size:45.333333pt;}
.fs1_c00327{font-size:53.333333pt;}
.y0_c00327{bottom:0.000000pt;}
.y2a_c00327{bottom:57.266686pt;}
.y29_c00327{bottom:98.266686pt;}
.y28_c00327{bottom:111.400020pt;}
.y27_c00327{bottom:125.133353pt;}
.y26_c00327{bottom:138.600020pt;}
.y25_c00327{bottom:152.666686pt;}
.y24_c00327{bottom:166.066686pt;}
.y23_c00327{bottom:179.866686pt;}
.y22_c00327{bottom:193.000020pt;}
.y21_c00327{bottom:206.733353pt;}
.y20_c00327{bottom:220.200020pt;}
.y1f_c00327{bottom:234.266686pt;}
.y1e_c00327{bottom:247.400020pt;}
.y1d_c00327{bottom:261.466686pt;}
.y1c_c00327{bottom:301.800020pt;}
.y1b_c00327{bottom:319.066686pt;}
.y1a_c00327{bottom:336.666686pt;}
.y19_c00327{bottom:353.600020pt;}
.y18_c00327{bottom:371.200020pt;}
.y17_c00327{bottom:388.200020pt;}
.y16_c00327{bottom:405.800020pt;}
.y15_c00327{bottom:422.733353pt;}
.y14_c00327{bottom:440.333353pt;}
.y13_c00327{bottom:457.266686pt;}
.y12_c00327{bottom:474.600020pt;}
.y11_c00327{bottom:491.866686pt;}
.y10_c00327{bottom:509.133353pt;}
.yf_c00327{bottom:526.733353pt;}
.ye_c00327{bottom:544.000020pt;}
.yd_c00327{bottom:561.000020pt;}
.yc_c00327{bottom:578.266686pt;}
.yb_c00327{bottom:595.866686pt;}
.ya_c00327{bottom:613.133353pt;}
.y9_c00327{bottom:630.400020pt;}
.y8_c00327{bottom:647.400020pt;}
.y7_c00327{bottom:664.666686pt;}
.y6_c00327{bottom:682.266686pt;}
.y5_c00327{bottom:698.866686pt;}
.y4_c00327{bottom:716.466686pt;}
.y3_c00327{bottom:733.466686pt;}
.y2_c00327{bottom:750.733353pt;}
.y1_c00327{bottom:788.200020pt;}
.h2_c00327{height:44.470052pt;}
.h4_c00327{height:44.492188pt;}
.h3_c00327{height:52.343750pt;}
.h1_c00327{height:851.333333pt;}
.h0_c00327{height:851.533333pt;}
.w0_c00327{width:570.533360pt;}
.w1_c00327{width:570.666667pt;}
.x0_c00327{left:0.000000pt;}
.x3_c00327{left:71.333333pt;}
.x2_c00327{left:72.333333pt;}
.x5_c00327{left:78.066667pt;}
.x4_c00327{left:85.733333pt;}
.x6_c00327{left:107.533333pt;}
.x1_c00327{left:127.666667pt;}
.x7_c00327{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f795e49d88fca9aa6ccdb6d.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00328;src:url('chunks/assets/font_8f57070f749638ffdcf66e05.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00328{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_c00328{vertical-align:0.000000px;}
.ls0_c00328{letter-spacing:0.000000px;}
.sc__c00328{text-shadow:none;}
.sc0_c00328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00328{-webkit-text-stroke:0px transparent;}
.sc0_c00328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00328{word-spacing:-15.000000px;}
.ws0_c00328{word-spacing:-12.750000px;}
.ws2_c00328{word-spacing:0.000000px;}
._13_c00328{margin-left:-14.100000px;}
._9_c00328{margin-left:-12.480000px;}
._a_c00328{margin-left:-11.040000px;}
._11_c00328{margin-left:-10.020000px;}
._d_c00328{margin-left:-7.620000px;}
._1b_c00328{margin-left:-6.249000px;}
._12_c00328{margin-left:-4.800000px;}
._10_c00328{margin-left:-3.720000px;}
._6_c00328{margin-left:-2.520000px;}
._0_c00328{margin-left:-1.440000px;}
._2_c00328{width:1.500000px;}
._7_c00328{width:3.300000px;}
._5_c00328{width:4.380000px;}
._8_c00328{width:5.580000px;}
._15_c00328{width:6.600000px;}
._3_c00328{width:8.100000px;}
._4_c00328{width:9.900000px;}
._1_c00328{width:11.160000px;}
._14_c00328{width:12.180000px;}
._f_c00328{width:13.920000px;}
._e_c00328{width:16.560000px;}
._16_c00328{width:17.640000px;}
._b_c00328{width:18.780000px;}
._c_c00328{width:20.220000px;}
._19_c00328{width:23.610000px;}
._1c_c00328{width:24.809979px;}
._17_c00328{width:26.010000px;}
._1a_c00328{width:28.050081px;}
._18_c00328{width:29.310000px;}
.fc1_c00328{color:transparent;}
.fc0_c00328{color:rgb(35,31,32);}
.fs1_c00328{font-size:51.000000px;}
.fs0_c00328{font-size:60.000000px;}
.y0_c00328{bottom:0.000000px;}
.y2a_c00328{bottom:64.425022px;}
.y29_c00328{bottom:110.550022px;}
.y28_c00328{bottom:125.625022px;}
.y27_c00328{bottom:140.775022px;}
.y26_c00328{bottom:155.925022px;}
.y25_c00328{bottom:171.375022px;}
.y24_c00328{bottom:186.525022px;}
.y23_c00328{bottom:202.350022px;}
.y22_c00328{bottom:217.425022px;}
.y21_c00328{bottom:232.950022px;}
.y20_c00328{bottom:247.725022px;}
.y1f_c00328{bottom:263.175022px;}
.y1e_c00328{bottom:278.325022px;}
.y1d_c00328{bottom:293.775022px;}
.y1c_c00328{bottom:308.925022px;}
.y1b_c00328{bottom:324.375022px;}
.y1a_c00328{bottom:339.825022px;}
.y19_c00328{bottom:354.975022px;}
.y18_c00328{bottom:370.125022px;}
.y16_c00328{bottom:418.350022px;}
.y15_c00328{bottom:437.775022px;}
.y14_c00328{bottom:456.825022px;}
.y13_c00328{bottom:476.325022px;}
.y12_c00328{bottom:495.750022px;}
.y11_c00328{bottom:515.550022px;}
.y10_c00328{bottom:534.600022px;}
.yf_c00328{bottom:554.400022px;}
.ye_c00328{bottom:573.825022px;}
.yd_c00328{bottom:592.950022px;}
.yc_c00328{bottom:612.750022px;}
.yb_c00328{bottom:631.800022px;}
.ya_c00328{bottom:651.225022px;}
.y9_c00328{bottom:670.725022px;}
.y8_c00328{bottom:690.525022px;}
.y7_c00328{bottom:709.950022px;}
.y6_c00328{bottom:728.625022px;}
.y5_c00328{bottom:748.425022px;}
.y4_c00328{bottom:767.925022px;}
.y3_c00328{bottom:786.975022px;}
.y2_c00328{bottom:806.775022px;}
.y1_c00328{bottom:844.575022px;}
.y17_c00328{bottom:886.725022px;}
.h3_c00328{height:50.028809px;}
.h4_c00328{height:50.053711px;}
.h2_c00328{height:58.886719px;}
.h1_c00328{height:957.750000px;}
.h0_c00328{height:957.975000px;}
.w1_c00328{width:643.500000px;}
.w0_c00328{width:643.650000px;}
.x0_c00328{left:0.000000px;}
.x2_c00328{left:90.375000px;}
.x1_c00328{left:91.425000px;}
.x5_c00328{left:97.575000px;}
.x3_c00328{left:107.250000px;}
.x4_c00328{left:130.350000px;}
.x6_c00328{left:131.400000px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls0_c00328{letter-spacing:0.000000pt;}
.ws1_c00328{word-spacing:-13.333333pt;}
.ws0_c00328{word-spacing:-11.333333pt;}
.ws2_c00328{word-spacing:0.000000pt;}
._13_c00328{margin-left:-12.533333pt;}
._9_c00328{margin-left:-11.093333pt;}
._a_c00328{margin-left:-9.813333pt;}
._11_c00328{margin-left:-8.906667pt;}
._d_c00328{margin-left:-6.773333pt;}
._1b_c00328{margin-left:-5.554667pt;}
._12_c00328{margin-left:-4.266667pt;}
._10_c00328{margin-left:-3.306667pt;}
._6_c00328{margin-left:-2.240000pt;}
._0_c00328{margin-left:-1.280000pt;}
._2_c00328{width:1.333333pt;}
._7_c00328{width:2.933333pt;}
._5_c00328{width:3.893333pt;}
._8_c00328{width:4.960000pt;}
._15_c00328{width:5.866667pt;}
._3_c00328{width:7.200000pt;}
._4_c00328{width:8.800000pt;}
._1_c00328{width:9.920000pt;}
._14_c00328{width:10.826667pt;}
._f_c00328{width:12.373333pt;}
._e_c00328{width:14.720000pt;}
._16_c00328{width:15.680000pt;}
._b_c00328{width:16.693333pt;}
._c_c00328{width:17.973333pt;}
._19_c00328{width:20.986667pt;}
._1c_c00328{width:22.053315pt;}
._17_c00328{width:23.120000pt;}
._1a_c00328{width:24.933405pt;}
._18_c00328{width:26.053333pt;}
.fs1_c00328{font-size:45.333333pt;}
.fs0_c00328{font-size:53.333333pt;}
.y0_c00328{bottom:0.000000pt;}
.y2a_c00328{bottom:57.266686pt;}
.y29_c00328{bottom:98.266686pt;}
.y28_c00328{bottom:111.666686pt;}
.y27_c00328{bottom:125.133353pt;}
.y26_c00328{bottom:138.600020pt;}
.y25_c00328{bottom:152.333353pt;}
.y24_c00328{bottom:165.800020pt;}
.y23_c00328{bottom:179.866686pt;}
.y22_c00328{bottom:193.266686pt;}
.y21_c00328{bottom:207.066686pt;}
.y20_c00328{bottom:220.200020pt;}
.y1f_c00328{bottom:233.933353pt;}
.y1e_c00328{bottom:247.400020pt;}
.y1d_c00328{bottom:261.133353pt;}
.y1c_c00328{bottom:274.600020pt;}
.y1b_c00328{bottom:288.333353pt;}
.y1a_c00328{bottom:302.066686pt;}
.y19_c00328{bottom:315.533353pt;}
.y18_c00328{bottom:329.000020pt;}
.y16_c00328{bottom:371.866686pt;}
.y15_c00328{bottom:389.133353pt;}
.y14_c00328{bottom:406.066686pt;}
.y13_c00328{bottom:423.400020pt;}
.y12_c00328{bottom:440.666686pt;}
.y11_c00328{bottom:458.266686pt;}
.y10_c00328{bottom:475.200020pt;}
.yf_c00328{bottom:492.800020pt;}
.ye_c00328{bottom:510.066686pt;}
.yd_c00328{bottom:527.066686pt;}
.yc_c00328{bottom:544.666686pt;}
.yb_c00328{bottom:561.600020pt;}
.ya_c00328{bottom:578.866686pt;}
.y9_c00328{bottom:596.200020pt;}
.y8_c00328{bottom:613.800020pt;}
.y7_c00328{bottom:631.066686pt;}
.y6_c00328{bottom:647.666686pt;}
.y5_c00328{bottom:665.266686pt;}
.y4_c00328{bottom:682.600020pt;}
.y3_c00328{bottom:699.533353pt;}
.y2_c00328{bottom:717.133353pt;}
.y1_c00328{bottom:750.733353pt;}
.y17_c00328{bottom:788.200020pt;}
.h3_c00328{height:44.470052pt;}
.h4_c00328{height:44.492188pt;}
.h2_c00328{height:52.343750pt;}
.h1_c00328{height:851.333333pt;}
.h0_c00328{height:851.533333pt;}
.w1_c00328{width:572.000000pt;}
.w0_c00328{width:572.133333pt;}
.x0_c00328{left:0.000000pt;}
.x2_c00328{left:80.333333pt;}
.x1_c00328{left:81.266667pt;}
.x5_c00328{left:86.733333pt;}
.x3_c00328{left:95.333333pt;}
.x4_c00328{left:115.866667pt;}
.x6_c00328{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_14aa61eb2ba5b84e191dfe0e.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00329;src:url('chunks/assets/font_d7a2ab1682955dee758f7b49.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00329{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_c00329{vertical-align:0.000000px;}
.ls0_c00329{letter-spacing:0.000000px;}
.sc__c00329{text-shadow:none;}
.sc0_c00329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00329{-webkit-text-stroke:0px transparent;}
.sc0_c00329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00329{word-spacing:-15.000000px;}
.ws1_c00329{word-spacing:-12.750000px;}
.ws2_c00329{word-spacing:0.000000px;}
._9_c00329{margin-left:-12.000000px;}
._e_c00329{margin-left:-10.260000px;}
._a_c00329{margin-left:-6.746940px;}
._f_c00329{margin-left:-5.100000px;}
._12_c00329{margin-left:-3.660000px;}
._13_c00329{margin-left:-2.640000px;}
._5_c00329{margin-left:-1.440000px;}
._0_c00329{width:1.020000px;}
._1_c00329{width:2.160000px;}
._2_c00329{width:3.240000px;}
._4_c00329{width:4.380000px;}
._8_c00329{width:5.880000px;}
._3_c00329{width:7.080000px;}
._6_c00329{width:8.880000px;}
._10_c00329{width:10.020000px;}
._b_c00329{width:12.000000px;}
._11_c00329{width:13.320000px;}
._16_c00329{width:15.396054px;}
._7_c00329{width:16.740000px;}
._18_c00329{width:17.804775px;}
._c_c00329{width:18.960000px;}
._d_c00329{width:20.400000px;}
._14_c00329{width:22.020000px;}
._17_c00329{width:23.610000px;}
._15_c00329{width:24.810000px;}
.fc1_c00329{color:transparent;}
.fc0_c00329{color:rgb(35,31,32);}
.fs1_c00329{font-size:51.000000px;}
.fs0_c00329{font-size:60.000000px;}
.y0_c00329{bottom:0.000000px;}
.y28_c00329{bottom:64.425022px;}
.y27_c00329{bottom:110.550022px;}
.y26_c00329{bottom:125.325022px;}
.y25_c00329{bottom:140.775022px;}
.y24_c00329{bottom:156.225022px;}
.y23_c00329{bottom:171.375022px;}
.y22_c00329{bottom:186.525022px;}
.y21_c00329{bottom:202.350022px;}
.y20_c00329{bottom:217.125022px;}
.y1f_c00329{bottom:232.575022px;}
.y1e_c00329{bottom:247.725022px;}
.y1d_c00329{bottom:263.175022px;}
.y1c_c00329{bottom:278.625022px;}
.y1b_c00329{bottom:293.775022px;}
.y1a_c00329{bottom:309.225022px;}
.y19_c00329{bottom:324.375022px;}
.y18_c00329{bottom:339.525022px;}
.y17_c00329{bottom:355.350022px;}
.y16_c00329{bottom:370.125022px;}
.y15_c00329{bottom:413.625022px;}
.y14_c00329{bottom:433.425022px;}
.y13_c00329{bottom:452.550022px;}
.y12_c00329{bottom:471.975022px;}
.y11_c00329{bottom:491.025022px;}
.y10_c00329{bottom:510.525022px;}
.yf_c00329{bottom:529.950022px;}
.ye_c00329{bottom:549.750022px;}
.yd_c00329{bottom:568.800022px;}
.yc_c00329{bottom:588.600022px;}
.yb_c00329{bottom:608.025022px;}
.ya_c00329{bottom:627.525022px;}
.y9_c00329{bottom:646.575022px;}
.y8_c00329{bottom:666.375022px;}
.y7_c00329{bottom:685.800022px;}
.y6_c00329{bottom:726.825022px;}
.y4_c00329{bottom:786.600022px;}
.y3_c00329{bottom:806.025022px;}
.y2_c00329{bottom:825.150022px;}
.y1_c00329{bottom:844.575022px;}
.y5_c00329{bottom:886.725022px;}
.h3_c00329{height:50.028809px;}
.h4_c00329{height:50.053711px;}
.h2_c00329{height:58.886719px;}
.h1_c00329{height:957.750000px;}
.h0_c00329{height:957.975000px;}
.w0_c00329{width:641.850030px;}
.w1_c00329{width:642.000000px;}
.x0_c00329{left:0.000000px;}
.x1_c00329{left:81.375000px;}
.x3_c00329{left:87.825000px;}
.x5_c00329{left:120.225000px;}
.x4_c00329{left:121.350000px;}
.x2_c00329{left:143.625000px;}
.x6_c00329{left:531.375000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls0_c00329{letter-spacing:0.000000pt;}
.ws0_c00329{word-spacing:-13.333333pt;}
.ws1_c00329{word-spacing:-11.333333pt;}
.ws2_c00329{word-spacing:0.000000pt;}
._9_c00329{margin-left:-10.666667pt;}
._e_c00329{margin-left:-9.120000pt;}
._a_c00329{margin-left:-5.997280pt;}
._f_c00329{margin-left:-4.533333pt;}
._12_c00329{margin-left:-3.253333pt;}
._13_c00329{margin-left:-2.346667pt;}
._5_c00329{margin-left:-1.280000pt;}
._0_c00329{width:0.906667pt;}
._1_c00329{width:1.920000pt;}
._2_c00329{width:2.880000pt;}
._4_c00329{width:3.893333pt;}
._8_c00329{width:5.226667pt;}
._3_c00329{width:6.293333pt;}
._6_c00329{width:7.893333pt;}
._10_c00329{width:8.906667pt;}
._b_c00329{width:10.666667pt;}
._11_c00329{width:11.840000pt;}
._16_c00329{width:13.685381pt;}
._7_c00329{width:14.880000pt;}
._18_c00329{width:15.826467pt;}
._c_c00329{width:16.853333pt;}
._d_c00329{width:18.133333pt;}
._14_c00329{width:19.573333pt;}
._17_c00329{width:20.986667pt;}
._15_c00329{width:22.053333pt;}
.fs1_c00329{font-size:45.333333pt;}
.fs0_c00329{font-size:53.333333pt;}
.y0_c00329{bottom:0.000000pt;}
.y28_c00329{bottom:57.266686pt;}
.y27_c00329{bottom:98.266686pt;}
.y26_c00329{bottom:111.400020pt;}
.y25_c00329{bottom:125.133353pt;}
.y24_c00329{bottom:138.866686pt;}
.y23_c00329{bottom:152.333353pt;}
.y22_c00329{bottom:165.800020pt;}
.y21_c00329{bottom:179.866686pt;}
.y20_c00329{bottom:193.000020pt;}
.y1f_c00329{bottom:206.733353pt;}
.y1e_c00329{bottom:220.200020pt;}
.y1d_c00329{bottom:233.933353pt;}
.y1c_c00329{bottom:247.666686pt;}
.y1b_c00329{bottom:261.133353pt;}
.y1a_c00329{bottom:274.866686pt;}
.y19_c00329{bottom:288.333353pt;}
.y18_c00329{bottom:301.800020pt;}
.y17_c00329{bottom:315.866686pt;}
.y16_c00329{bottom:329.000020pt;}
.y15_c00329{bottom:367.666686pt;}
.y14_c00329{bottom:385.266686pt;}
.y13_c00329{bottom:402.266686pt;}
.y12_c00329{bottom:419.533353pt;}
.y11_c00329{bottom:436.466686pt;}
.y10_c00329{bottom:453.800020pt;}
.yf_c00329{bottom:471.066686pt;}
.ye_c00329{bottom:488.666686pt;}
.yd_c00329{bottom:505.600020pt;}
.yc_c00329{bottom:523.200020pt;}
.yb_c00329{bottom:540.466686pt;}
.ya_c00329{bottom:557.800020pt;}
.y9_c00329{bottom:574.733353pt;}
.y8_c00329{bottom:592.333353pt;}
.y7_c00329{bottom:609.600020pt;}
.y6_c00329{bottom:646.066686pt;}
.y4_c00329{bottom:699.200020pt;}
.y3_c00329{bottom:716.466686pt;}
.y2_c00329{bottom:733.466686pt;}
.y1_c00329{bottom:750.733353pt;}
.y5_c00329{bottom:788.200020pt;}
.h3_c00329{height:44.470052pt;}
.h4_c00329{height:44.492188pt;}
.h2_c00329{height:52.343750pt;}
.h1_c00329{height:851.333333pt;}
.h0_c00329{height:851.533333pt;}
.w0_c00329{width:570.533360pt;}
.w1_c00329{width:570.666667pt;}
.x0_c00329{left:0.000000pt;}
.x1_c00329{left:72.333333pt;}
.x3_c00329{left:78.066667pt;}
.x5_c00329{left:106.866667pt;}
.x4_c00329{left:107.866667pt;}
.x2_c00329{left:127.666667pt;}
.x6_c00329{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b1c5aa54519fa97fc5cb12da.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00330;src:url('chunks/assets/font_c7736f3a03478bfdc8f728f7.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00330{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_c00330{vertical-align:0.000000px;}
.ls0_c00330{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00330{word-spacing:-15.000000px;}
.ws1_c00330{word-spacing:-12.750000px;}
.ws2_c00330{word-spacing:0.000000px;}
._13_c00330{margin-left:-14.345613px;}
._7_c00330{margin-left:-12.021777px;}
._c_c00330{margin-left:-9.372030px;}
._f_c00330{margin-left:-5.434869px;}
._4_c00330{margin-left:-3.804243px;}
._0_c00330{margin-left:-2.622012px;}
._2_c00330{margin-left:-1.539027px;}
._3_c00330{width:1.062024px;}
._1_c00330{width:2.400009px;}
._6_c00330{width:4.115943px;}
._5_c00330{width:5.135925px;}
._a_c00330{width:6.137754px;}
._d_c00330{width:7.224027px;}
._b_c00330{width:8.489865px;}
._e_c00330{width:10.211886px;}
._10_c00330{width:11.332149px;}
._8_c00330{width:12.569880px;}
._14_c00330{width:13.870470px;}
._11_c00330{width:16.415943px;}
._9_c00330{width:17.459724px;}
._12_c00330{width:20.148096px;}
._15_c00330{width:25.206087px;}
._16_c00330{width:26.706099px;}
._17_c00330{width:28.206108px;}
.fc1_c00330{color:transparent;}
.fc0_c00330{color:rgb(35,31,32);}
.fs0_c00330{font-size:51.000000px;}
.fs1_c00330{font-size:60.000000px;}
.y0_c00330{bottom:0.000000px;}
.y27_c00330{bottom:64.425022px;}
.y26_c00330{bottom:110.175022px;}
.y25_c00330{bottom:125.625022px;}
.y24_c00330{bottom:141.150022px;}
.y23_c00330{bottom:156.225022px;}
.y22_c00330{bottom:171.375022px;}
.y21_c00330{bottom:186.825022px;}
.y20_c00330{bottom:202.350022px;}
.y1f_c00330{bottom:217.125022px;}
.y1e_c00330{bottom:232.575022px;}
.y1d_c00330{bottom:248.025022px;}
.y1c_c00330{bottom:263.175022px;}
.y1b_c00330{bottom:278.625022px;}
.y1a_c00330{bottom:318.675022px;}
.y19_c00330{bottom:338.100022px;}
.y18_c00330{bottom:357.525022px;}
.y17_c00330{bottom:376.950022px;}
.y16_c00330{bottom:396.000022px;}
.y15_c00330{bottom:415.425022px;}
.y14_c00330{bottom:434.925022px;}
.y13_c00330{bottom:454.725022px;}
.y12_c00330{bottom:474.150022px;}
.y11_c00330{bottom:514.425022px;}
.y10_c00330{bottom:533.925022px;}
.yf_c00330{bottom:592.575022px;}
.ye_c00330{bottom:612.000022px;}
.yd_c00330{bottom:631.425022px;}
.yc_c00330{bottom:650.550022px;}
.yb_c00330{bottom:670.350022px;}
.ya_c00330{bottom:689.775022px;}
.y9_c00330{bottom:709.200022px;}
.y8_c00330{bottom:728.325022px;}
.y7_c00330{bottom:748.125022px;}
.y6_c00330{bottom:767.175022px;}
.y5_c00330{bottom:786.225022px;}
.y4_c00330{bottom:805.725022px;}
.y3_c00330{bottom:825.150022px;}
.y2_c00330{bottom:844.950022px;}
.y1_c00330{bottom:886.725022px;}
.h2_c00330{height:50.028809px;}
.h4_c00330{height:50.053711px;}
.h3_c00330{height:58.886719px;}
.h1_c00330{height:957.750000px;}
.h0_c00330{height:957.975000px;}
.w1_c00330{width:643.500000px;}
.w0_c00330{width:643.650000px;}
.x0_c00330{left:0.000000px;}
.x1_c00330{left:91.050000px;}
.x4_c00330{left:97.575000px;}
.x2_c00330{left:107.250000px;}
.x3_c00330{left:109.800000px;}
.x5_c00330{left:131.025000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls0_c00330{letter-spacing:0.000000pt;}
.ws0_c00330{word-spacing:-13.333333pt;}
.ws1_c00330{word-spacing:-11.333333pt;}
.ws2_c00330{word-spacing:0.000000pt;}
._13_c00330{margin-left:-12.751656pt;}
._7_c00330{margin-left:-10.686024pt;}
._c_c00330{margin-left:-8.330693pt;}
._f_c00330{margin-left:-4.830995pt;}
._4_c00330{margin-left:-3.381549pt;}
._0_c00330{margin-left:-2.330677pt;}
._2_c00330{margin-left:-1.368024pt;}
._3_c00330{width:0.944021pt;}
._1_c00330{width:2.133341pt;}
._6_c00330{width:3.658616pt;}
._5_c00330{width:4.565267pt;}
._a_c00330{width:5.455781pt;}
._d_c00330{width:6.421357pt;}
._b_c00330{width:7.546547pt;}
._e_c00330{width:9.077232pt;}
._10_c00330{width:10.073021pt;}
._8_c00330{width:11.173227pt;}
._14_c00330{width:12.329307pt;}
._11_c00330{width:14.591949pt;}
._9_c00330{width:15.519755pt;}
._12_c00330{width:17.909419pt;}
._15_c00330{width:22.405411pt;}
._16_c00330{width:23.738755pt;}
._17_c00330{width:25.072096pt;}
.fs0_c00330{font-size:45.333333pt;}
.fs1_c00330{font-size:53.333333pt;}
.y0_c00330{bottom:0.000000pt;}
.y27_c00330{bottom:57.266686pt;}
.y26_c00330{bottom:97.933353pt;}
.y25_c00330{bottom:111.666686pt;}
.y24_c00330{bottom:125.466686pt;}
.y23_c00330{bottom:138.866686pt;}
.y22_c00330{bottom:152.333353pt;}
.y21_c00330{bottom:166.066686pt;}
.y20_c00330{bottom:179.866686pt;}
.y1f_c00330{bottom:193.000020pt;}
.y1e_c00330{bottom:206.733353pt;}
.y1d_c00330{bottom:220.466686pt;}
.y1c_c00330{bottom:233.933353pt;}
.y1b_c00330{bottom:247.666686pt;}
.y1a_c00330{bottom:283.266686pt;}
.y19_c00330{bottom:300.533353pt;}
.y18_c00330{bottom:317.800020pt;}
.y17_c00330{bottom:335.066686pt;}
.y16_c00330{bottom:352.000020pt;}
.y15_c00330{bottom:369.266686pt;}
.y14_c00330{bottom:386.600020pt;}
.y13_c00330{bottom:404.200020pt;}
.y12_c00330{bottom:421.466686pt;}
.y11_c00330{bottom:457.266686pt;}
.y10_c00330{bottom:474.600020pt;}
.yf_c00330{bottom:526.733353pt;}
.ye_c00330{bottom:544.000020pt;}
.yd_c00330{bottom:561.266686pt;}
.yc_c00330{bottom:578.266686pt;}
.yb_c00330{bottom:595.866686pt;}
.ya_c00330{bottom:613.133353pt;}
.y9_c00330{bottom:630.400020pt;}
.y8_c00330{bottom:647.400020pt;}
.y7_c00330{bottom:665.000020pt;}
.y6_c00330{bottom:681.933353pt;}
.y5_c00330{bottom:698.866686pt;}
.y4_c00330{bottom:716.200020pt;}
.y3_c00330{bottom:733.466686pt;}
.y2_c00330{bottom:751.066686pt;}
.y1_c00330{bottom:788.200020pt;}
.h2_c00330{height:44.470052pt;}
.h4_c00330{height:44.492188pt;}
.h3_c00330{height:52.343750pt;}
.h1_c00330{height:851.333333pt;}
.h0_c00330{height:851.533333pt;}
.w1_c00330{width:572.000000pt;}
.w0_c00330{width:572.133333pt;}
.x0_c00330{left:0.000000pt;}
.x1_c00330{left:80.933333pt;}
.x4_c00330{left:86.733333pt;}
.x2_c00330{left:95.333333pt;}
.x3_c00330{left:97.600000pt;}
.x5_c00330{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c1954e658c6226c2e2ace635.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00331;src:url('chunks/assets/font_8ecf7bbb627426b426ba7080.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls1_c00331{letter-spacing:0.000000px;}
.ls0_c00331{letter-spacing:18.750000px;}
.sc__c00331{text-shadow:none;}
.sc0_c00331{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00331{-webkit-text-stroke:0px transparent;}
.sc0_c00331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00331{word-spacing:-15.000000px;}
.ws1_c00331{word-spacing:-12.750000px;}
.ws2_c00331{word-spacing:0.000000px;}
._10_c00331{margin-left:-15.600000px;}
._14_c00331{margin-left:-12.600000px;}
._13_c00331{margin-left:-11.400000px;}
._b_c00331{margin-left:-6.000000px;}
._c_c00331{margin-left:-4.140000px;}
._e_c00331{margin-left:-2.520000px;}
._0_c00331{margin-left:-1.380000px;}
._3_c00331{width:1.860000px;}
._8_c00331{width:2.880000px;}
._6_c00331{width:4.140000px;}
._9_c00331{width:6.120000px;}
._a_c00331{width:7.140000px;}
._1_c00331{width:8.220000px;}
._4_c00331{width:9.540000px;}
._f_c00331{width:10.740000px;}
._5_c00331{width:11.880000px;}
._7_c00331{width:12.960000px;}
._2_c00331{width:16.800000px;}
._12_c00331{width:17.880000px;}
._d_c00331{width:19.080000px;}
._11_c00331{width:21.600000px;}
.fc2_c00331{color:transparent;}
.fc1_c00331{color:rgb(0,0,0);}
.fc0_c00331{color:rgb(35,31,32);}
.fs1_c00331{font-size:51.000000px;}
.fs0_c00331{font-size:60.000000px;}
.y0_c00331{bottom:0.000000px;}
.y25_c00331{bottom:64.425022px;}
.y24_c00331{bottom:110.400022px;}
.y23_c00331{bottom:125.625022px;}
.y22_c00331{bottom:165.225022px;}
.y21_c00331{bottom:185.100022px;}
.y20_c00331{bottom:204.525022px;}
.y1f_c00331{bottom:223.950022px;}
.y1e_c00331{bottom:243.375022px;}
.y1d_c00331{bottom:262.500022px;}
.y1c_c00331{bottom:281.925022px;}
.y1b_c00331{bottom:301.350022px;}
.y1a_c00331{bottom:321.150022px;}
.y19_c00331{bottom:340.575022px;}
.y18_c00331{bottom:359.625022px;}
.y17_c00331{bottom:379.425022px;}
.y16_c00331{bottom:398.925022px;}
.y15_c00331{bottom:417.975022px;}
.y14_c00331{bottom:456.825022px;}
.y13_c00331{bottom:475.950022px;}
.y11_c00331{bottom:533.925022px;}
.y10_c00331{bottom:553.350022px;}
.yf_c00331{bottom:573.150022px;}
.ye_c00331{bottom:592.200022px;}
.yd_c00331{bottom:612.000022px;}
.yc_c00331{bottom:631.425022px;}
.yb_c00331{bottom:650.550022px;}
.ya_c00331{bottom:669.975022px;}
.y9_c00331{bottom:689.400022px;}
.y8_c00331{bottom:708.825022px;}
.y7_c00331{bottom:728.625022px;}
.y6_c00331{bottom:747.750022px;}
.y5_c00331{bottom:767.175022px;}
.y4_c00331{bottom:786.600022px;}
.y3_c00331{bottom:806.025022px;}
.y2_c00331{bottom:825.525022px;}
.y1_c00331{bottom:844.575022px;}
.y12_c00331{bottom:886.725022px;}
.h3_c00331{height:50.028809px;}
.h4_c00331{height:50.053711px;}
.h2_c00331{height:58.886719px;}
.h1_c00331{height:957.750000px;}
.h0_c00331{height:957.975000px;}
.w0_c00331{width:641.850030px;}
.w1_c00331{width:642.000000px;}
.x0_c00331{left:0.000000px;}
.x1_c00331{left:81.000000px;}
.x5_c00331{left:87.825000px;}
.x2_c00331{left:96.450000px;}
.x4_c00331{left:106.575000px;}
.x6_c00331{left:120.975000px;}
.x3_c00331{left:157.650000px;}
.x7_c00331{left:531.375000px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls1_c00331{letter-spacing:0.000000pt;}
.ls0_c00331{letter-spacing:16.666667pt;}
.ws0_c00331{word-spacing:-13.333333pt;}
.ws1_c00331{word-spacing:-11.333333pt;}
.ws2_c00331{word-spacing:0.000000pt;}
._10_c00331{margin-left:-13.866667pt;}
._14_c00331{margin-left:-11.200000pt;}
._13_c00331{margin-left:-10.133333pt;}
._b_c00331{margin-left:-5.333333pt;}
._c_c00331{margin-left:-3.680000pt;}
._e_c00331{margin-left:-2.240000pt;}
._0_c00331{margin-left:-1.226667pt;}
._3_c00331{width:1.653333pt;}
._8_c00331{width:2.560000pt;}
._6_c00331{width:3.680000pt;}
._9_c00331{width:5.440000pt;}
._a_c00331{width:6.346667pt;}
._1_c00331{width:7.306667pt;}
._4_c00331{width:8.480000pt;}
._f_c00331{width:9.546667pt;}
._5_c00331{width:10.560000pt;}
._7_c00331{width:11.520000pt;}
._2_c00331{width:14.933333pt;}
._12_c00331{width:15.893333pt;}
._d_c00331{width:16.960000pt;}
._11_c00331{width:19.200000pt;}
.fs1_c00331{font-size:45.333333pt;}
.fs0_c00331{font-size:53.333333pt;}
.y0_c00331{bottom:0.000000pt;}
.y25_c00331{bottom:57.266686pt;}
.y24_c00331{bottom:98.133353pt;}
.y23_c00331{bottom:111.666686pt;}
.y22_c00331{bottom:146.866686pt;}
.y21_c00331{bottom:164.533353pt;}
.y20_c00331{bottom:181.800020pt;}
.y1f_c00331{bottom:199.066686pt;}
.y1e_c00331{bottom:216.333353pt;}
.y1d_c00331{bottom:233.333353pt;}
.y1c_c00331{bottom:250.600020pt;}
.y1b_c00331{bottom:267.866686pt;}
.y1a_c00331{bottom:285.466686pt;}
.y19_c00331{bottom:302.733353pt;}
.y18_c00331{bottom:319.666686pt;}
.y17_c00331{bottom:337.266686pt;}
.y16_c00331{bottom:354.600020pt;}
.y15_c00331{bottom:371.533353pt;}
.y14_c00331{bottom:406.066686pt;}
.y13_c00331{bottom:423.066686pt;}
.y11_c00331{bottom:474.600020pt;}
.y10_c00331{bottom:491.866686pt;}
.yf_c00331{bottom:509.466686pt;}
.ye_c00331{bottom:526.400020pt;}
.yd_c00331{bottom:544.000020pt;}
.yc_c00331{bottom:561.266686pt;}
.yb_c00331{bottom:578.266686pt;}
.ya_c00331{bottom:595.533353pt;}
.y9_c00331{bottom:612.800020pt;}
.y8_c00331{bottom:630.066686pt;}
.y7_c00331{bottom:647.666686pt;}
.y6_c00331{bottom:664.666686pt;}
.y5_c00331{bottom:681.933353pt;}
.y4_c00331{bottom:699.200020pt;}
.y3_c00331{bottom:716.466686pt;}
.y2_c00331{bottom:733.800020pt;}
.y1_c00331{bottom:750.733353pt;}
.y12_c00331{bottom:788.200020pt;}
.h3_c00331{height:44.470052pt;}
.h4_c00331{height:44.492188pt;}
.h2_c00331{height:52.343750pt;}
.h1_c00331{height:851.333333pt;}
.h0_c00331{height:851.533333pt;}
.w0_c00331{width:570.533360pt;}
.w1_c00331{width:570.666667pt;}
.x0_c00331{left:0.000000pt;}
.x1_c00331{left:72.000000pt;}
.x5_c00331{left:78.066667pt;}
.x2_c00331{left:85.733333pt;}
.x4_c00331{left:94.733333pt;}
.x6_c00331{left:107.533333pt;}
.x3_c00331{left:140.133333pt;}
.x7_c00331{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_91ca96595e940bf8b9bdfeca.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00332;src:url('chunks/assets/font_26686ee1f79619e1cca21e8c.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00332{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.ls1_c00332{letter-spacing:0.000000px;}
.ls0_c00332{letter-spacing:14.100000px;}
.sc__c00332{text-shadow:none;}
.sc0_c00332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00332{-webkit-text-stroke:0px transparent;}
.sc0_c00332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00332{word-spacing:-15.000000px;}
.ws1_c00332{word-spacing:-12.750000px;}
.ws2_c00332{word-spacing:0.000000px;}
._f_c00332{margin-left:-11.700000px;}
._11_c00332{margin-left:-10.500000px;}
._10_c00332{margin-left:-6.000000px;}
._e_c00332{margin-left:-4.038039px;}
._c_c00332{margin-left:-2.940000px;}
._3_c00332{margin-left:-1.680000px;}
._0_c00332{width:1.980000px;}
._4_c00332{width:3.480000px;}
._6_c00332{width:4.500000px;}
._1_c00332{width:5.820000px;}
._2_c00332{width:7.080000px;}
._7_c00332{width:8.940000px;}
._5_c00332{width:9.960000px;}
._8_c00332{width:11.760000px;}
._b_c00332{width:12.780000px;}
._12_c00332{width:14.432940px;}
._13_c00332{width:15.516018px;}
._a_c00332{width:16.560000px;}
._9_c00332{width:17.580000px;}
._d_c00332{width:19.860000px;}
._15_c00332{width:22.410030px;}
._14_c00332{width:25.349979px;}
.fc2_c00332{color:transparent;}
.fc1_c00332{color:rgb(0,0,0);}
.fc0_c00332{color:rgb(35,31,32);}
.fs1_c00332{font-size:51.000000px;}
.fs0_c00332{font-size:60.000000px;}
.y0_c00332{bottom:0.000000px;}
.y27_c00332{bottom:64.800022px;}
.y26_c00332{bottom:110.175022px;}
.y25_c00332{bottom:125.325022px;}
.y24_c00332{bottom:141.150022px;}
.y23_c00332{bottom:155.925022px;}
.y22_c00332{bottom:171.375022px;}
.y21_c00332{bottom:186.825022px;}
.y20_c00332{bottom:201.975022px;}
.y1f_c00332{bottom:217.425022px;}
.y1e_c00332{bottom:232.575022px;}
.y1d_c00332{bottom:247.725022px;}
.y1c_c00332{bottom:263.550022px;}
.y1b_c00332{bottom:278.625022px;}
.y1a_c00332{bottom:324.750022px;}
.y19_c00332{bottom:344.175022px;}
.y18_c00332{bottom:363.600022px;}
.y17_c00332{bottom:383.400022px;}
.y16_c00332{bottom:402.525022px;}
.y15_c00332{bottom:421.950022px;}
.y14_c00332{bottom:441.375022px;}
.y13_c00332{bottom:461.175022px;}
.y12_c00332{bottom:480.600022px;}
.y11_c00332{bottom:499.725022px;}
.y10_c00332{bottom:519.150022px;}
.yf_c00332{bottom:538.950022px;}
.ye_c00332{bottom:558.000022px;}
.yd_c00332{bottom:595.425022px;}
.yb_c00332{bottom:650.925022px;}
.ya_c00332{bottom:670.350022px;}
.y9_c00332{bottom:689.775022px;}
.y8_c00332{bottom:708.825022px;}
.y7_c00332{bottom:728.325022px;}
.y6_c00332{bottom:748.125022px;}
.y5_c00332{bottom:767.550022px;}
.y4_c00332{bottom:786.525022px;}
.y3_c00332{bottom:806.025022px;}
.y2_c00332{bottom:825.525022px;}
.y1_c00332{bottom:844.575022px;}
.yc_c00332{bottom:886.725022px;}
.h3_c00332{height:50.028809px;}
.h4_c00332{height:50.053711px;}
.h2_c00332{height:58.886719px;}
.h1_c00332{height:957.750000px;}
.h0_c00332{height:957.975000px;}
.w1_c00332{width:643.500000px;}
.w0_c00332{width:643.650000px;}
.x0_c00332{left:0.000000px;}
.x1_c00332{left:90.750000px;}
.x2_c00332{left:91.800000px;}
.x4_c00332{left:97.575000px;}
.x3_c00332{left:131.400000px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls1_c00332{letter-spacing:0.000000pt;}
.ls0_c00332{letter-spacing:12.533333pt;}
.ws0_c00332{word-spacing:-13.333333pt;}
.ws1_c00332{word-spacing:-11.333333pt;}
.ws2_c00332{word-spacing:0.000000pt;}
._f_c00332{margin-left:-10.400000pt;}
._11_c00332{margin-left:-9.333333pt;}
._10_c00332{margin-left:-5.333333pt;}
._e_c00332{margin-left:-3.589368pt;}
._c_c00332{margin-left:-2.613333pt;}
._3_c00332{margin-left:-1.493333pt;}
._0_c00332{width:1.760000pt;}
._4_c00332{width:3.093333pt;}
._6_c00332{width:4.000000pt;}
._1_c00332{width:5.173333pt;}
._2_c00332{width:6.293333pt;}
._7_c00332{width:7.946667pt;}
._5_c00332{width:8.853333pt;}
._8_c00332{width:10.453333pt;}
._b_c00332{width:11.360000pt;}
._12_c00332{width:12.829280pt;}
._13_c00332{width:13.792016pt;}
._a_c00332{width:14.720000pt;}
._9_c00332{width:15.626667pt;}
._d_c00332{width:17.653333pt;}
._15_c00332{width:19.920027pt;}
._14_c00332{width:22.533315pt;}
.fs1_c00332{font-size:45.333333pt;}
.fs0_c00332{font-size:53.333333pt;}
.y0_c00332{bottom:0.000000pt;}
.y27_c00332{bottom:57.600020pt;}
.y26_c00332{bottom:97.933353pt;}
.y25_c00332{bottom:111.400020pt;}
.y24_c00332{bottom:125.466686pt;}
.y23_c00332{bottom:138.600020pt;}
.y22_c00332{bottom:152.333353pt;}
.y21_c00332{bottom:166.066686pt;}
.y20_c00332{bottom:179.533353pt;}
.y1f_c00332{bottom:193.266686pt;}
.y1e_c00332{bottom:206.733353pt;}
.y1d_c00332{bottom:220.200020pt;}
.y1c_c00332{bottom:234.266686pt;}
.y1b_c00332{bottom:247.666686pt;}
.y1a_c00332{bottom:288.666686pt;}
.y19_c00332{bottom:305.933353pt;}
.y18_c00332{bottom:323.200020pt;}
.y17_c00332{bottom:340.800020pt;}
.y16_c00332{bottom:357.800020pt;}
.y15_c00332{bottom:375.066686pt;}
.y14_c00332{bottom:392.333353pt;}
.y13_c00332{bottom:409.933353pt;}
.y12_c00332{bottom:427.200020pt;}
.y11_c00332{bottom:444.200020pt;}
.y10_c00332{bottom:461.466686pt;}
.yf_c00332{bottom:479.066686pt;}
.ye_c00332{bottom:496.000020pt;}
.yd_c00332{bottom:529.266686pt;}
.yb_c00332{bottom:578.600020pt;}
.ya_c00332{bottom:595.866686pt;}
.y9_c00332{bottom:613.133353pt;}
.y8_c00332{bottom:630.066686pt;}
.y7_c00332{bottom:647.400020pt;}
.y6_c00332{bottom:665.000020pt;}
.y5_c00332{bottom:682.266686pt;}
.y4_c00332{bottom:699.133353pt;}
.y3_c00332{bottom:716.466686pt;}
.y2_c00332{bottom:733.800020pt;}
.y1_c00332{bottom:750.733353pt;}
.yc_c00332{bottom:788.200020pt;}
.h3_c00332{height:44.470052pt;}
.h4_c00332{height:44.492188pt;}
.h2_c00332{height:52.343750pt;}
.h1_c00332{height:851.333333pt;}
.h0_c00332{height:851.533333pt;}
.w1_c00332{width:572.000000pt;}
.w0_c00332{width:572.133333pt;}
.x0_c00332{left:0.000000pt;}
.x1_c00332{left:80.666667pt;}
.x2_c00332{left:81.600000pt;}
.x4_c00332{left:86.733333pt;}
.x3_c00332{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_00a5f4da8ec0903b8796e876.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00333;src:url('chunks/assets/font_c70f114f59744d42c031349c.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00333{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00333{letter-spacing:0.000000px;}
.sc__c00333{text-shadow:none;}
.sc0_c00333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00333{-webkit-text-stroke:0px transparent;}
.sc0_c00333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00333{word-spacing:-15.000000px;}
.ws0_c00333{word-spacing:-12.750000px;}
.ws2_c00333{word-spacing:0.000000px;}
._11_c00333{margin-left:-14.100000px;}
._a_c00333{margin-left:-12.000000px;}
._d_c00333{margin-left:-10.560000px;}
._17_c00333{margin-left:-8.172042px;}
._10_c00333{margin-left:-7.080000px;}
._c_c00333{margin-left:-4.500000px;}
._6_c00333{margin-left:-2.520000px;}
._7_c00333{margin-left:-1.080000px;}
._0_c00333{width:1.560000px;}
._8_c00333{width:3.060000px;}
._9_c00333{width:4.200000px;}
._b_c00333{width:5.760000px;}
._2_c00333{width:7.800000px;}
._18_c00333{width:8.831904px;}
._5_c00333{width:9.840000px;}
._3_c00333{width:10.920000px;}
._4_c00333{width:12.180000px;}
._1_c00333{width:13.440000px;}
._19_c00333{width:14.888976px;}
._f_c00333{width:16.020000px;}
._12_c00333{width:17.520000px;}
._e_c00333{width:19.200000px;}
._13_c00333{width:20.550000px;}
._15_c00333{width:21.593985px;}
._14_c00333{width:24.975012px;}
._16_c00333{width:26.241006px;}
._1a_c00333{width:29.129979px;}
.fc1_c00333{color:transparent;}
.fc0_c00333{color:rgb(35,31,32);}
.fs1_c00333{font-size:51.000000px;}
.fs0_c00333{font-size:60.000000px;}
.y0_c00333{bottom:0.000000px;}
.y2b_c00333{bottom:64.425022px;}
.y2a_c00333{bottom:110.550022px;}
.y29_c00333{bottom:125.325022px;}
.y28_c00333{bottom:140.775022px;}
.y27_c00333{bottom:155.925022px;}
.y26_c00333{bottom:171.375022px;}
.y25_c00333{bottom:186.525022px;}
.y24_c00333{bottom:201.975022px;}
.y23_c00333{bottom:217.125022px;}
.y22_c00333{bottom:232.950022px;}
.y21_c00333{bottom:247.725022px;}
.y20_c00333{bottom:263.175022px;}
.y1f_c00333{bottom:278.625022px;}
.y1e_c00333{bottom:293.775022px;}
.y1d_c00333{bottom:309.225022px;}
.y1c_c00333{bottom:324.750022px;}
.y1b_c00333{bottom:339.525022px;}
.y1a_c00333{bottom:354.975022px;}
.y19_c00333{bottom:370.125022px;}
.y18_c00333{bottom:385.575022px;}
.y17_c00333{bottom:400.725022px;}
.y15_c00333{bottom:456.150022px;}
.y14_c00333{bottom:475.950022px;}
.y13_c00333{bottom:495.375022px;}
.y12_c00333{bottom:514.425022px;}
.y11_c00333{bottom:534.225022px;}
.y10_c00333{bottom:553.725022px;}
.yf_c00333{bottom:572.775022px;}
.ye_c00333{bottom:592.575022px;}
.yd_c00333{bottom:612.000022px;}
.yc_c00333{bottom:631.425022px;}
.yb_c00333{bottom:650.550022px;}
.ya_c00333{bottom:670.350022px;}
.y9_c00333{bottom:689.400022px;}
.y8_c00333{bottom:709.125022px;}
.y7_c00333{bottom:728.625022px;}
.y6_c00333{bottom:748.125022px;}
.y5_c00333{bottom:767.475022px;}
.y4_c00333{bottom:786.600022px;}
.y3_c00333{bottom:805.725022px;}
.y2_c00333{bottom:825.150022px;}
.y1_c00333{bottom:844.950022px;}
.y16_c00333{bottom:886.725022px;}
.h3_c00333{height:50.028809px;}
.h4_c00333{height:50.053711px;}
.h2_c00333{height:58.886719px;}
.h1_c00333{height:957.750000px;}
.h0_c00333{height:957.975000px;}
.w0_c00333{width:641.850030px;}
.w1_c00333{width:642.000000px;}
.x0_c00333{left:0.000000px;}
.x1_c00333{left:81.000000px;}
.x4_c00333{left:87.825000px;}
.x2_c00333{left:96.825000px;}
.x6_c00333{left:120.600000px;}
.x5_c00333{left:121.650000px;}
.x3_c00333{left:157.650000px;}
.x7_c00333{left:531.375000px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls0_c00333{letter-spacing:0.000000pt;}
.ws1_c00333{word-spacing:-13.333333pt;}
.ws0_c00333{word-spacing:-11.333333pt;}
.ws2_c00333{word-spacing:0.000000pt;}
._11_c00333{margin-left:-12.533333pt;}
._a_c00333{margin-left:-10.666667pt;}
._d_c00333{margin-left:-9.386667pt;}
._17_c00333{margin-left:-7.264037pt;}
._10_c00333{margin-left:-6.293333pt;}
._c_c00333{margin-left:-4.000000pt;}
._6_c00333{margin-left:-2.240000pt;}
._7_c00333{margin-left:-0.960000pt;}
._0_c00333{width:1.386667pt;}
._8_c00333{width:2.720000pt;}
._9_c00333{width:3.733333pt;}
._b_c00333{width:5.120000pt;}
._2_c00333{width:6.933333pt;}
._18_c00333{width:7.850581pt;}
._5_c00333{width:8.746667pt;}
._3_c00333{width:9.706667pt;}
._4_c00333{width:10.826667pt;}
._1_c00333{width:11.946667pt;}
._19_c00333{width:13.234645pt;}
._f_c00333{width:14.240000pt;}
._12_c00333{width:15.573333pt;}
._e_c00333{width:17.066667pt;}
._13_c00333{width:18.266667pt;}
._15_c00333{width:19.194653pt;}
._14_c00333{width:22.200011pt;}
._16_c00333{width:23.325339pt;}
._1a_c00333{width:25.893315pt;}
.fs1_c00333{font-size:45.333333pt;}
.fs0_c00333{font-size:53.333333pt;}
.y0_c00333{bottom:0.000000pt;}
.y2b_c00333{bottom:57.266686pt;}
.y2a_c00333{bottom:98.266686pt;}
.y29_c00333{bottom:111.400020pt;}
.y28_c00333{bottom:125.133353pt;}
.y27_c00333{bottom:138.600020pt;}
.y26_c00333{bottom:152.333353pt;}
.y25_c00333{bottom:165.800020pt;}
.y24_c00333{bottom:179.533353pt;}
.y23_c00333{bottom:193.000020pt;}
.y22_c00333{bottom:207.066686pt;}
.y21_c00333{bottom:220.200020pt;}
.y20_c00333{bottom:233.933353pt;}
.y1f_c00333{bottom:247.666686pt;}
.y1e_c00333{bottom:261.133353pt;}
.y1d_c00333{bottom:274.866686pt;}
.y1c_c00333{bottom:288.666686pt;}
.y1b_c00333{bottom:301.800020pt;}
.y1a_c00333{bottom:315.533353pt;}
.y19_c00333{bottom:329.000020pt;}
.y18_c00333{bottom:342.733353pt;}
.y17_c00333{bottom:356.200020pt;}
.y15_c00333{bottom:405.466686pt;}
.y14_c00333{bottom:423.066686pt;}
.y13_c00333{bottom:440.333353pt;}
.y12_c00333{bottom:457.266686pt;}
.y11_c00333{bottom:474.866686pt;}
.y10_c00333{bottom:492.200020pt;}
.yf_c00333{bottom:509.133353pt;}
.ye_c00333{bottom:526.733353pt;}
.yd_c00333{bottom:544.000020pt;}
.yc_c00333{bottom:561.266686pt;}
.yb_c00333{bottom:578.266686pt;}
.ya_c00333{bottom:595.866686pt;}
.y9_c00333{bottom:612.800020pt;}
.y8_c00333{bottom:630.333353pt;}
.y7_c00333{bottom:647.666686pt;}
.y6_c00333{bottom:665.000020pt;}
.y5_c00333{bottom:682.200020pt;}
.y4_c00333{bottom:699.200020pt;}
.y3_c00333{bottom:716.200020pt;}
.y2_c00333{bottom:733.466686pt;}
.y1_c00333{bottom:751.066686pt;}
.y16_c00333{bottom:788.200020pt;}
.h3_c00333{height:44.470052pt;}
.h4_c00333{height:44.492188pt;}
.h2_c00333{height:52.343750pt;}
.h1_c00333{height:851.333333pt;}
.h0_c00333{height:851.533333pt;}
.w0_c00333{width:570.533360pt;}
.w1_c00333{width:570.666667pt;}
.x0_c00333{left:0.000000pt;}
.x1_c00333{left:72.000000pt;}
.x4_c00333{left:78.066667pt;}
.x2_c00333{left:86.066667pt;}
.x6_c00333{left:107.200000pt;}
.x5_c00333{left:108.133333pt;}
.x3_c00333{left:140.133333pt;}
.x7_c00333{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ca925871ab2872bb8dc37277.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00334;src:url('chunks/assets/font_2e14e6b2d291d23a7806cfad.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00334{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls1_c00334{letter-spacing:0.000000px;}
.ls0_c00334{letter-spacing:13.800000px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00334{word-spacing:-15.000000px;}
.ws1_c00334{word-spacing:-12.750000px;}
.ws2_c00334{word-spacing:0.000000px;}
._4_c00334{margin-left:-11.220000px;}
._3_c00334{margin-left:-9.780000px;}
._6_c00334{margin-left:-7.200000px;}
._17_c00334{margin-left:-5.156946px;}
._c_c00334{margin-left:-4.020000px;}
._d_c00334{margin-left:-2.700000px;}
._a_c00334{margin-left:-1.500000px;}
._0_c00334{width:1.320000px;}
._1_c00334{width:2.340000px;}
._9_c00334{width:3.720000px;}
._8_c00334{width:5.640000px;}
._b_c00334{width:6.660000px;}
._5_c00334{width:8.640000px;}
._2_c00334{width:9.660000px;}
._7_c00334{width:10.800000px;}
._e_c00334{width:12.540000px;}
._14_c00334{width:13.980000px;}
._f_c00334{width:16.140000px;}
._10_c00334{width:18.060000px;}
._12_c00334{width:19.560000px;}
._11_c00334{width:21.780000px;}
._13_c00334{width:23.520000px;}
._16_c00334{width:26.549991px;}
._15_c00334{width:28.050000px;}
.fc2_c00334{color:transparent;}
.fc1_c00334{color:rgb(0,0,0);}
.fc0_c00334{color:rgb(35,31,32);}
.fs1_c00334{font-size:51.000000px;}
.fs0_c00334{font-size:60.000000px;}
.y0_c00334{bottom:0.000000px;}
.y26_c00334{bottom:64.800022px;}
.y25_c00334{bottom:110.175022px;}
.y24_c00334{bottom:125.325022px;}
.y23_c00334{bottom:140.775022px;}
.y22_c00334{bottom:156.225022px;}
.y21_c00334{bottom:171.375022px;}
.y20_c00334{bottom:186.825022px;}
.y1f_c00334{bottom:201.975022px;}
.y1e_c00334{bottom:217.125022px;}
.y1d_c00334{bottom:232.575022px;}
.y1c_c00334{bottom:247.725022px;}
.y1b_c00334{bottom:263.175022px;}
.y1a_c00334{bottom:278.325022px;}
.y19_c00334{bottom:353.550022px;}
.y18_c00334{bottom:372.975022px;}
.y17_c00334{bottom:392.025022px;}
.y16_c00334{bottom:411.525022px;}
.y15_c00334{bottom:430.950022px;}
.y14_c00334{bottom:450.375022px;}
.y13_c00334{bottom:470.175022px;}
.y12_c00334{bottom:489.225022px;}
.y11_c00334{bottom:508.725022px;}
.y10_c00334{bottom:528.525022px;}
.yf_c00334{bottom:547.950022px;}
.ye_c00334{bottom:567.375022px;}
.yd_c00334{bottom:586.425022px;}
.yc_c00334{bottom:606.225022px;}
.yb_c00334{bottom:625.350022px;}
.ya_c00334{bottom:644.775022px;}
.y9_c00334{bottom:664.200022px;}
.y8_c00334{bottom:698.775022px;}
.y6_c00334{bottom:748.125022px;}
.y5_c00334{bottom:767.550022px;}
.y4_c00334{bottom:786.600022px;}
.y3_c00334{bottom:805.725022px;}
.y2_c00334{bottom:825.150022px;}
.y1_c00334{bottom:844.950022px;}
.y7_c00334{bottom:886.725022px;}
.h3_c00334{height:50.028809px;}
.h4_c00334{height:50.053711px;}
.h2_c00334{height:58.886719px;}
.h1_c00334{height:957.750000px;}
.h0_c00334{height:957.975000px;}
.w1_c00334{width:643.500000px;}
.w0_c00334{width:643.650000px;}
.x0_c00334{left:0.000000px;}
.x1_c00334{left:91.425000px;}
.x2_c00334{left:97.575000px;}
.x3_c00334{left:131.775000px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls1_c00334{letter-spacing:0.000000pt;}
.ls0_c00334{letter-spacing:12.266667pt;}
.ws0_c00334{word-spacing:-13.333333pt;}
.ws1_c00334{word-spacing:-11.333333pt;}
.ws2_c00334{word-spacing:0.000000pt;}
._4_c00334{margin-left:-9.973333pt;}
._3_c00334{margin-left:-8.693333pt;}
._6_c00334{margin-left:-6.400000pt;}
._17_c00334{margin-left:-4.583952pt;}
._c_c00334{margin-left:-3.573333pt;}
._d_c00334{margin-left:-2.400000pt;}
._a_c00334{margin-left:-1.333333pt;}
._0_c00334{width:1.173333pt;}
._1_c00334{width:2.080000pt;}
._9_c00334{width:3.306667pt;}
._8_c00334{width:5.013333pt;}
._b_c00334{width:5.920000pt;}
._5_c00334{width:7.680000pt;}
._2_c00334{width:8.586667pt;}
._7_c00334{width:9.600000pt;}
._e_c00334{width:11.146667pt;}
._14_c00334{width:12.426667pt;}
._f_c00334{width:14.346667pt;}
._10_c00334{width:16.053333pt;}
._12_c00334{width:17.386667pt;}
._11_c00334{width:19.360000pt;}
._13_c00334{width:20.906667pt;}
._16_c00334{width:23.599992pt;}
._15_c00334{width:24.933333pt;}
.fs1_c00334{font-size:45.333333pt;}
.fs0_c00334{font-size:53.333333pt;}
.y0_c00334{bottom:0.000000pt;}
.y26_c00334{bottom:57.600020pt;}
.y25_c00334{bottom:97.933353pt;}
.y24_c00334{bottom:111.400020pt;}
.y23_c00334{bottom:125.133353pt;}
.y22_c00334{bottom:138.866686pt;}
.y21_c00334{bottom:152.333353pt;}
.y20_c00334{bottom:166.066686pt;}
.y1f_c00334{bottom:179.533353pt;}
.y1e_c00334{bottom:193.000020pt;}
.y1d_c00334{bottom:206.733353pt;}
.y1c_c00334{bottom:220.200020pt;}
.y1b_c00334{bottom:233.933353pt;}
.y1a_c00334{bottom:247.400020pt;}
.y19_c00334{bottom:314.266686pt;}
.y18_c00334{bottom:331.533353pt;}
.y17_c00334{bottom:348.466686pt;}
.y16_c00334{bottom:365.800020pt;}
.y15_c00334{bottom:383.066686pt;}
.y14_c00334{bottom:400.333353pt;}
.y13_c00334{bottom:417.933353pt;}
.y12_c00334{bottom:434.866686pt;}
.y11_c00334{bottom:452.200020pt;}
.y10_c00334{bottom:469.800020pt;}
.yf_c00334{bottom:487.066686pt;}
.ye_c00334{bottom:504.333353pt;}
.yd_c00334{bottom:521.266686pt;}
.yc_c00334{bottom:538.866686pt;}
.yb_c00334{bottom:555.866686pt;}
.ya_c00334{bottom:573.133353pt;}
.y9_c00334{bottom:590.400020pt;}
.y8_c00334{bottom:621.133353pt;}
.y6_c00334{bottom:665.000020pt;}
.y5_c00334{bottom:682.266686pt;}
.y4_c00334{bottom:699.200020pt;}
.y3_c00334{bottom:716.200020pt;}
.y2_c00334{bottom:733.466686pt;}
.y1_c00334{bottom:751.066686pt;}
.y7_c00334{bottom:788.200020pt;}
.h3_c00334{height:44.470052pt;}
.h4_c00334{height:44.492188pt;}
.h2_c00334{height:52.343750pt;}
.h1_c00334{height:851.333333pt;}
.h0_c00334{height:851.533333pt;}
.w1_c00334{width:572.000000pt;}
.w0_c00334{width:572.133333pt;}
.x0_c00334{left:0.000000pt;}
.x1_c00334{left:81.266667pt;}
.x2_c00334{left:86.733333pt;}
.x3_c00334{left:117.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_08886a57d8f220e898e42922.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00335;src:url('chunks/assets/font_63ea0e59557f8f8f717b11df.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00335{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00335{vertical-align:0.000000px;}
.ls1_c00335{letter-spacing:0.000000px;}
.ls0_c00335{letter-spacing:16.500000px;}
.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:-15.000000px;}
.ws1_c00335{word-spacing:-12.750000px;}
.ws2_c00335{word-spacing:0.000000px;}
._9_c00335{margin-left:-15.900000px;}
._a_c00335{margin-left:-14.700000px;}
._2_c00335{margin-left:-13.200000px;}
._11_c00335{margin-left:-11.640000px;}
._10_c00335{margin-left:-5.220000px;}
._f_c00335{margin-left:-3.752820px;}
._8_c00335{margin-left:-2.580000px;}
._b_c00335{margin-left:-1.500000px;}
._1_c00335{width:1.140000px;}
._0_c00335{width:2.580000px;}
._6_c00335{width:3.720000px;}
._e_c00335{width:4.740000px;}
._5_c00335{width:5.760000px;}
._7_c00335{width:7.380000px;}
._4_c00335{width:9.300000px;}
._3_c00335{width:11.400000px;}
._c_c00335{width:13.200000px;}
._14_c00335{width:14.394153px;}
._d_c00335{width:16.080000px;}
._18_c00335{width:19.088970px;}
._16_c00335{width:20.408982px;}
._19_c00335{width:22.718490px;}
._17_c00335{width:23.810532px;}
._15_c00335{width:24.930000px;}
._12_c00335{width:26.130030px;}
._13_c00335{width:29.369979px;}
.fc2_c00335{color:transparent;}
.fc1_c00335{color:rgb(0,0,0);}
.fc0_c00335{color:rgb(35,31,32);}
.fs1_c00335{font-size:51.000000px;}
.fs0_c00335{font-size:60.000000px;}
.y0_c00335{bottom:0.000000px;}
.y2a_c00335{bottom:64.425022px;}
.y29_c00335{bottom:110.550022px;}
.y28_c00335{bottom:125.625022px;}
.y27_c00335{bottom:141.150022px;}
.y26_c00335{bottom:155.925022px;}
.y25_c00335{bottom:171.750022px;}
.y24_c00335{bottom:186.525022px;}
.y23_c00335{bottom:201.975022px;}
.y22_c00335{bottom:217.425022px;}
.y21_c00335{bottom:232.575022px;}
.y20_c00335{bottom:247.725022px;}
.y1f_c00335{bottom:263.175022px;}
.y1e_c00335{bottom:278.625022px;}
.y1d_c00335{bottom:294.150022px;}
.y1c_c00335{bottom:308.925022px;}
.y1b_c00335{bottom:324.375022px;}
.y1a_c00335{bottom:339.825022px;}
.y19_c00335{bottom:355.350022px;}
.y18_c00335{bottom:370.425022px;}
.y17_c00335{bottom:385.575022px;}
.y16_c00335{bottom:401.025022px;}
.y15_c00335{bottom:416.550022px;}
.y14_c00335{bottom:431.325022px;}
.y13_c00335{bottom:446.775022px;}
.y12_c00335{bottom:461.925022px;}
.y11_c00335{bottom:501.825022px;}
.y10_c00335{bottom:521.325022px;}
.yf_c00335{bottom:541.125022px;}
.ye_c00335{bottom:560.550022px;}
.yd_c00335{bottom:579.600022px;}
.yc_c00335{bottom:616.350022px;}
.ya_c00335{bottom:670.350022px;}
.y9_c00335{bottom:689.400022px;}
.y8_c00335{bottom:708.825022px;}
.y7_c00335{bottom:728.700022px;}
.y6_c00335{bottom:748.125022px;}
.y5_c00335{bottom:767.550022px;}
.y4_c00335{bottom:786.225022px;}
.y3_c00335{bottom:806.025022px;}
.y2_c00335{bottom:825.150022px;}
.y1_c00335{bottom:844.575022px;}
.yb_c00335{bottom:886.725022px;}
.h3_c00335{height:50.028809px;}
.h4_c00335{height:50.053711px;}
.h2_c00335{height:58.886719px;}
.h1_c00335{height:957.750000px;}
.h0_c00335{height:957.975000px;}
.w0_c00335{width:641.850030px;}
.w1_c00335{width:642.000000px;}
.x0_c00335{left:0.000000px;}
.x1_c00335{left:81.375000px;}
.x3_c00335{left:87.825000px;}
.x4_c00335{left:120.975000px;}
.x2_c00335{left:157.650000px;}
.x5_c00335{left:531.375000px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls1_c00335{letter-spacing:0.000000pt;}
.ls0_c00335{letter-spacing:14.666667pt;}
.ws0_c00335{word-spacing:-13.333333pt;}
.ws1_c00335{word-spacing:-11.333333pt;}
.ws2_c00335{word-spacing:0.000000pt;}
._9_c00335{margin-left:-14.133333pt;}
._a_c00335{margin-left:-13.066667pt;}
._2_c00335{margin-left:-11.733333pt;}
._11_c00335{margin-left:-10.346667pt;}
._10_c00335{margin-left:-4.640000pt;}
._f_c00335{margin-left:-3.335840pt;}
._8_c00335{margin-left:-2.293333pt;}
._b_c00335{margin-left:-1.333333pt;}
._1_c00335{width:1.013333pt;}
._0_c00335{width:2.293333pt;}
._6_c00335{width:3.306667pt;}
._e_c00335{width:4.213333pt;}
._5_c00335{width:5.120000pt;}
._7_c00335{width:6.560000pt;}
._4_c00335{width:8.266667pt;}
._3_c00335{width:10.133333pt;}
._c_c00335{width:11.733333pt;}
._14_c00335{width:12.794803pt;}
._d_c00335{width:14.293333pt;}
._18_c00335{width:16.967973pt;}
._16_c00335{width:18.141317pt;}
._19_c00335{width:20.194213pt;}
._17_c00335{width:21.164917pt;}
._15_c00335{width:22.160000pt;}
._12_c00335{width:23.226693pt;}
._13_c00335{width:26.106648pt;}
.fs1_c00335{font-size:45.333333pt;}
.fs0_c00335{font-size:53.333333pt;}
.y0_c00335{bottom:0.000000pt;}
.y2a_c00335{bottom:57.266686pt;}
.y29_c00335{bottom:98.266686pt;}
.y28_c00335{bottom:111.666686pt;}
.y27_c00335{bottom:125.466686pt;}
.y26_c00335{bottom:138.600020pt;}
.y25_c00335{bottom:152.666686pt;}
.y24_c00335{bottom:165.800020pt;}
.y23_c00335{bottom:179.533353pt;}
.y22_c00335{bottom:193.266686pt;}
.y21_c00335{bottom:206.733353pt;}
.y20_c00335{bottom:220.200020pt;}
.y1f_c00335{bottom:233.933353pt;}
.y1e_c00335{bottom:247.666686pt;}
.y1d_c00335{bottom:261.466686pt;}
.y1c_c00335{bottom:274.600020pt;}
.y1b_c00335{bottom:288.333353pt;}
.y1a_c00335{bottom:302.066686pt;}
.y19_c00335{bottom:315.866686pt;}
.y18_c00335{bottom:329.266686pt;}
.y17_c00335{bottom:342.733353pt;}
.y16_c00335{bottom:356.466686pt;}
.y15_c00335{bottom:370.266686pt;}
.y14_c00335{bottom:383.400020pt;}
.y13_c00335{bottom:397.133353pt;}
.y12_c00335{bottom:410.600020pt;}
.y11_c00335{bottom:446.066686pt;}
.y10_c00335{bottom:463.400020pt;}
.yf_c00335{bottom:481.000020pt;}
.ye_c00335{bottom:498.266686pt;}
.yd_c00335{bottom:515.200020pt;}
.yc_c00335{bottom:547.866686pt;}
.ya_c00335{bottom:595.866686pt;}
.y9_c00335{bottom:612.800020pt;}
.y8_c00335{bottom:630.066686pt;}
.y7_c00335{bottom:647.733353pt;}
.y6_c00335{bottom:665.000020pt;}
.y5_c00335{bottom:682.266686pt;}
.y4_c00335{bottom:698.866686pt;}
.y3_c00335{bottom:716.466686pt;}
.y2_c00335{bottom:733.466686pt;}
.y1_c00335{bottom:750.733353pt;}
.yb_c00335{bottom:788.200020pt;}
.h3_c00335{height:44.470052pt;}
.h4_c00335{height:44.492188pt;}
.h2_c00335{height:52.343750pt;}
.h1_c00335{height:851.333333pt;}
.h0_c00335{height:851.533333pt;}
.w0_c00335{width:570.533360pt;}
.w1_c00335{width:570.666667pt;}
.x0_c00335{left:0.000000pt;}
.x1_c00335{left:72.333333pt;}
.x3_c00335{left:78.066667pt;}
.x4_c00335{left:107.533333pt;}
.x2_c00335{left:140.133333pt;}
.x5_c00335{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_92c4728b7e37d01e363f4afa.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00336;src:url('chunks/assets/font_108da80a878418bb88e8a638.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00336{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00336{letter-spacing:0.000000px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00336{word-spacing:-15.000000px;}
.ws0_c00336{word-spacing:-12.750000px;}
.ws2_c00336{word-spacing:0.000000px;}
._10_c00336{margin-left:-14.160000px;}
._f_c00336{margin-left:-12.840000px;}
._11_c00336{margin-left:-11.700000px;}
._16_c00336{margin-left:-5.009808px;}
._12_c00336{margin-left:-3.378039px;}
._7_c00336{margin-left:-2.160000px;}
._8_c00336{margin-left:-1.080000px;}
._0_c00336{width:1.020000px;}
._2_c00336{width:2.460000px;}
._e_c00336{width:3.660000px;}
._c_c00336{width:4.920000px;}
._6_c00336{width:6.420000px;}
._9_c00336{width:7.500000px;}
._5_c00336{width:9.060000px;}
._a_c00336{width:10.200000px;}
._d_c00336{width:11.520000px;}
._b_c00336{width:13.140000px;}
._14_c00336{width:14.214000px;}
._15_c00336{width:15.321030px;}
._3_c00336{width:17.100000px;}
._4_c00336{width:19.140000px;}
._1_c00336{width:20.340000px;}
._17_c00336{width:22.829988px;}
._18_c00336{width:24.330000px;}
._13_c00336{width:25.529979px;}
.fc1_c00336{color:transparent;}
.fc0_c00336{color:rgb(35,31,32);}
.fs1_c00336{font-size:51.000000px;}
.fs0_c00336{font-size:60.000000px;}
.y0_c00336{bottom:0.000000px;}
.y27_c00336{bottom:64.425022px;}
.y26_c00336{bottom:110.175022px;}
.y25_c00336{bottom:125.325022px;}
.y24_c00336{bottom:141.150022px;}
.y23_c00336{bottom:155.925022px;}
.y22_c00336{bottom:171.375022px;}
.y21_c00336{bottom:186.525022px;}
.y20_c00336{bottom:201.975022px;}
.y1f_c00336{bottom:217.425022px;}
.y1e_c00336{bottom:232.575022px;}
.y1d_c00336{bottom:248.025022px;}
.y1c_c00336{bottom:263.175022px;}
.y1b_c00336{bottom:278.325022px;}
.y1a_c00336{bottom:293.775022px;}
.y19_c00336{bottom:308.925022px;}
.y18_c00336{bottom:324.375022px;}
.y16_c00336{bottom:437.025022px;}
.y15_c00336{bottom:456.525022px;}
.y14_c00336{bottom:475.575022px;}
.y13_c00336{bottom:495.375022px;}
.y12_c00336{bottom:514.425022px;}
.y11_c00336{bottom:534.225022px;}
.y10_c00336{bottom:553.350022px;}
.yf_c00336{bottom:573.150022px;}
.ye_c00336{bottom:592.200022px;}
.yd_c00336{bottom:612.000022px;}
.yc_c00336{bottom:631.125022px;}
.yb_c00336{bottom:650.925022px;}
.ya_c00336{bottom:670.350022px;}
.y9_c00336{bottom:689.775022px;}
.y8_c00336{bottom:708.825022px;}
.y7_c00336{bottom:728.625022px;}
.y6_c00336{bottom:748.125022px;}
.y5_c00336{bottom:767.550022px;}
.y4_c00336{bottom:786.225022px;}
.y3_c00336{bottom:806.100022px;}
.y2_c00336{bottom:825.525022px;}
.y1_c00336{bottom:844.950022px;}
.y17_c00336{bottom:886.725022px;}
.h3_c00336{height:50.028809px;}
.h4_c00336{height:50.053711px;}
.h2_c00336{height:58.886719px;}
.h1_c00336{height:957.750000px;}
.h0_c00336{height:957.975000px;}
.w1_c00336{width:643.500000px;}
.w0_c00336{width:643.650000px;}
.x0_c00336{left:0.000000px;}
.x3_c00336{left:90.375000px;}
.x1_c00336{left:91.425000px;}
.x4_c00336{left:97.575000px;}
.x2_c00336{left:107.250000px;}
.x5_c00336{left:131.400000px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls0_c00336{letter-spacing:0.000000pt;}
.ws1_c00336{word-spacing:-13.333333pt;}
.ws0_c00336{word-spacing:-11.333333pt;}
.ws2_c00336{word-spacing:0.000000pt;}
._10_c00336{margin-left:-12.586667pt;}
._f_c00336{margin-left:-11.413333pt;}
._11_c00336{margin-left:-10.400000pt;}
._16_c00336{margin-left:-4.453163pt;}
._12_c00336{margin-left:-3.002701pt;}
._7_c00336{margin-left:-1.920000pt;}
._8_c00336{margin-left:-0.960000pt;}
._0_c00336{width:0.906667pt;}
._2_c00336{width:2.186667pt;}
._e_c00336{width:3.253333pt;}
._c_c00336{width:4.373333pt;}
._6_c00336{width:5.706667pt;}
._9_c00336{width:6.666667pt;}
._5_c00336{width:8.053333pt;}
._a_c00336{width:9.066667pt;}
._d_c00336{width:10.240000pt;}
._b_c00336{width:11.680000pt;}
._14_c00336{width:12.634667pt;}
._15_c00336{width:13.618693pt;}
._3_c00336{width:15.200000pt;}
._4_c00336{width:17.013333pt;}
._1_c00336{width:18.080000pt;}
._17_c00336{width:20.293323pt;}
._18_c00336{width:21.626667pt;}
._13_c00336{width:22.693315pt;}
.fs1_c00336{font-size:45.333333pt;}
.fs0_c00336{font-size:53.333333pt;}
.y0_c00336{bottom:0.000000pt;}
.y27_c00336{bottom:57.266686pt;}
.y26_c00336{bottom:97.933353pt;}
.y25_c00336{bottom:111.400020pt;}
.y24_c00336{bottom:125.466686pt;}
.y23_c00336{bottom:138.600020pt;}
.y22_c00336{bottom:152.333353pt;}
.y21_c00336{bottom:165.800020pt;}
.y20_c00336{bottom:179.533353pt;}
.y1f_c00336{bottom:193.266686pt;}
.y1e_c00336{bottom:206.733353pt;}
.y1d_c00336{bottom:220.466686pt;}
.y1c_c00336{bottom:233.933353pt;}
.y1b_c00336{bottom:247.400020pt;}
.y1a_c00336{bottom:261.133353pt;}
.y19_c00336{bottom:274.600020pt;}
.y18_c00336{bottom:288.333353pt;}
.y16_c00336{bottom:388.466686pt;}
.y15_c00336{bottom:405.800020pt;}
.y14_c00336{bottom:422.733353pt;}
.y13_c00336{bottom:440.333353pt;}
.y12_c00336{bottom:457.266686pt;}
.y11_c00336{bottom:474.866686pt;}
.y10_c00336{bottom:491.866686pt;}
.yf_c00336{bottom:509.466686pt;}
.ye_c00336{bottom:526.400020pt;}
.yd_c00336{bottom:544.000020pt;}
.yc_c00336{bottom:561.000020pt;}
.yb_c00336{bottom:578.600020pt;}
.ya_c00336{bottom:595.866686pt;}
.y9_c00336{bottom:613.133353pt;}
.y8_c00336{bottom:630.066686pt;}
.y7_c00336{bottom:647.666686pt;}
.y6_c00336{bottom:665.000020pt;}
.y5_c00336{bottom:682.266686pt;}
.y4_c00336{bottom:698.866686pt;}
.y3_c00336{bottom:716.533353pt;}
.y2_c00336{bottom:733.800020pt;}
.y1_c00336{bottom:751.066686pt;}
.y17_c00336{bottom:788.200020pt;}
.h3_c00336{height:44.470052pt;}
.h4_c00336{height:44.492188pt;}
.h2_c00336{height:52.343750pt;}
.h1_c00336{height:851.333333pt;}
.h0_c00336{height:851.533333pt;}
.w1_c00336{width:572.000000pt;}
.w0_c00336{width:572.133333pt;}
.x0_c00336{left:0.000000pt;}
.x3_c00336{left:80.333333pt;}
.x1_c00336{left:81.266667pt;}
.x4_c00336{left:86.733333pt;}
.x2_c00336{left:95.333333pt;}
.x5_c00336{left:116.800000pt;}
}





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

.ir_c00337:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00337{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00337;src:url('chunks/assets/font_25c14eb0f3390c0d7a825935.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00337;src:url('chunks/assets/font_c3d2f8459e3452c06d693eed.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00337{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00337{vertical-align:0.000000px;}
.ls1_c00337{letter-spacing:0.000000px;}
.ls0_c00337{letter-spacing:12.600000px;}
.sc__c00337{text-shadow:none;}
.sc0_c00337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00337{-webkit-text-stroke:0px transparent;}
.sc0_c00337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00337{word-spacing:-15.000000px;}
.ws1_c00337{word-spacing:-12.750000px;}
.ws2_c00337{word-spacing:0.000000px;}
._8_c00337{margin-left:-13.425375px;}
._11_c00337{margin-left:-12.189027px;}
._7_c00337{margin-left:-10.971111px;}
._15_c00337{margin-left:-8.316030px;}
._19_c00337{margin-left:-6.422796px;}
._4_c00337{margin-left:-4.464081px;}
._9_c00337{margin-left:-3.300000px;}
._1_c00337{margin-left:-1.799994px;}
._3_c00337{width:1.395003px;}
._2_c00337{width:3.345039px;}
._14_c00337{width:4.574991px;}
._5_c00337{width:5.580000px;}
._0_c00337{width:7.251027px;}
._6_c00337{width:8.273916px;}
._e_c00337{width:9.480000px;}
._13_c00337{width:10.601994px;}
._d_c00337{width:11.699976px;}
._12_c00337{width:12.857988px;}
._a_c00337{width:13.919988px;}
._18_c00337{width:15.155913px;}
._b_c00337{width:16.529982px;}
._c_c00337{width:17.744955px;}
._f_c00337{width:19.020072px;}
._10_c00337{width:20.640000px;}
._1c_c00337{width:23.549976px;}
._1a_c00337{width:25.049976px;}
._16_c00337{width:26.250006px;}
._1b_c00337{width:27.750063px;}
._17_c00337{width:29.249988px;}
.fc2_c00337{color:transparent;}
.fc1_c00337{color:rgb(0,0,0);}
.fc0_c00337{color:rgb(35,31,32);}
.fs0_c00337{font-size:51.000000px;}
.fs1_c00337{font-size:60.000000px;}
.y0_c00337{bottom:0.000000px;}
.y28_c00337{bottom:64.425022px;}
.y27_c00337{bottom:110.175022px;}
.y26_c00337{bottom:125.325022px;}
.y25_c00337{bottom:140.775022px;}
.y24_c00337{bottom:156.225022px;}
.y23_c00337{bottom:171.375022px;}
.y22_c00337{bottom:186.525022px;}
.y21_c00337{bottom:202.350022px;}
.y20_c00337{bottom:217.125022px;}
.y1f_c00337{bottom:232.575022px;}
.y1e_c00337{bottom:248.025022px;}
.y1d_c00337{bottom:263.175022px;}
.y1c_c00337{bottom:278.325022px;}
.y1b_c00337{bottom:293.775022px;}
.y1a_c00337{bottom:309.225022px;}
.y19_c00337{bottom:324.375022px;}
.y18_c00337{bottom:339.825022px;}
.y17_c00337{bottom:383.325022px;}
.y16_c00337{bottom:402.825022px;}
.y15_c00337{bottom:422.325022px;}
.y14_c00337{bottom:441.375022px;}
.y13_c00337{bottom:460.800022px;}
.y12_c00337{bottom:480.600022px;}
.y11_c00337{bottom:499.725022px;}
.y10_c00337{bottom:519.150022px;}
.yf_c00337{bottom:538.950022px;}
.ye_c00337{bottom:558.375022px;}
.yd_c00337{bottom:577.800022px;}
.yc_c00337{bottom:597.225022px;}
.yb_c00337{bottom:616.725022px;}
.ya_c00337{bottom:636.075022px;}
.y9_c00337{bottom:655.200022px;}
.y8_c00337{bottom:674.325022px;}
.y7_c00337{bottom:694.125022px;}
.y6_c00337{bottom:713.550022px;}
.y5_c00337{bottom:732.600022px;}
.y4_c00337{bottom:770.400022px;}
.y3_c00337{bottom:825.525022px;}
.y2_c00337{bottom:844.575022px;}
.y1_c00337{bottom:886.725022px;}
.h2_c00337{height:50.028809px;}
.h4_c00337{height:50.053711px;}
.h3_c00337{height:58.886719px;}
.h1_c00337{height:957.750000px;}
.h0_c00337{height:957.975000px;}
.w0_c00337{width:641.850030px;}
.w1_c00337{width:642.000000px;}
.x0_c00337{left:0.000000px;}
.x3_c00337{left:80.250000px;}
.x2_c00337{left:81.375000px;}
.x4_c00337{left:87.825000px;}
.x5_c00337{left:120.975000px;}
.x1_c00337{left:157.650000px;}
.x6_c00337{left:531.375000px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls1_c00337{letter-spacing:0.000000pt;}
.ls0_c00337{letter-spacing:11.200000pt;}
.ws0_c00337{word-spacing:-13.333333pt;}
.ws1_c00337{word-spacing:-11.333333pt;}
.ws2_c00337{word-spacing:0.000000pt;}
._8_c00337{margin-left:-11.933667pt;}
._11_c00337{margin-left:-10.834691pt;}
._7_c00337{margin-left:-9.752099pt;}
._15_c00337{margin-left:-7.392027pt;}
._19_c00337{margin-left:-5.709152pt;}
._4_c00337{margin-left:-3.968072pt;}
._9_c00337{margin-left:-2.933333pt;}
._1_c00337{margin-left:-1.599995pt;}
._3_c00337{width:1.240003pt;}
._2_c00337{width:2.973368pt;}
._14_c00337{width:4.066659pt;}
._5_c00337{width:4.960000pt;}
._0_c00337{width:6.445357pt;}
._6_c00337{width:7.354592pt;}
._e_c00337{width:8.426667pt;}
._13_c00337{width:9.423995pt;}
._d_c00337{width:10.399979pt;}
._12_c00337{width:11.429323pt;}
._a_c00337{width:12.373323pt;}
._18_c00337{width:13.471923pt;}
._b_c00337{width:14.693317pt;}
._c_c00337{width:15.773293pt;}
._f_c00337{width:16.906731pt;}
._10_c00337{width:18.346667pt;}
._1c_c00337{width:20.933312pt;}
._1a_c00337{width:22.266645pt;}
._16_c00337{width:23.333339pt;}
._1b_c00337{width:24.666723pt;}
._17_c00337{width:25.999989pt;}
.fs0_c00337{font-size:45.333333pt;}
.fs1_c00337{font-size:53.333333pt;}
.y0_c00337{bottom:0.000000pt;}
.y28_c00337{bottom:57.266686pt;}
.y27_c00337{bottom:97.933353pt;}
.y26_c00337{bottom:111.400020pt;}
.y25_c00337{bottom:125.133353pt;}
.y24_c00337{bottom:138.866686pt;}
.y23_c00337{bottom:152.333353pt;}
.y22_c00337{bottom:165.800020pt;}
.y21_c00337{bottom:179.866686pt;}
.y20_c00337{bottom:193.000020pt;}
.y1f_c00337{bottom:206.733353pt;}
.y1e_c00337{bottom:220.466686pt;}
.y1d_c00337{bottom:233.933353pt;}
.y1c_c00337{bottom:247.400020pt;}
.y1b_c00337{bottom:261.133353pt;}
.y1a_c00337{bottom:274.866686pt;}
.y19_c00337{bottom:288.333353pt;}
.y18_c00337{bottom:302.066686pt;}
.y17_c00337{bottom:340.733353pt;}
.y16_c00337{bottom:358.066686pt;}
.y15_c00337{bottom:375.400020pt;}
.y14_c00337{bottom:392.333353pt;}
.y13_c00337{bottom:409.600020pt;}
.y12_c00337{bottom:427.200020pt;}
.y11_c00337{bottom:444.200020pt;}
.y10_c00337{bottom:461.466686pt;}
.yf_c00337{bottom:479.066686pt;}
.ye_c00337{bottom:496.333353pt;}
.yd_c00337{bottom:513.600020pt;}
.yc_c00337{bottom:530.866686pt;}
.yb_c00337{bottom:548.200020pt;}
.ya_c00337{bottom:565.400020pt;}
.y9_c00337{bottom:582.400020pt;}
.y8_c00337{bottom:599.400020pt;}
.y7_c00337{bottom:617.000020pt;}
.y6_c00337{bottom:634.266686pt;}
.y5_c00337{bottom:651.200020pt;}
.y4_c00337{bottom:684.800020pt;}
.y3_c00337{bottom:733.800020pt;}
.y2_c00337{bottom:750.733353pt;}
.y1_c00337{bottom:788.200020pt;}
.h2_c00337{height:44.470052pt;}
.h4_c00337{height:44.492188pt;}
.h3_c00337{height:52.343750pt;}
.h1_c00337{height:851.333333pt;}
.h0_c00337{height:851.533333pt;}
.w0_c00337{width:570.533360pt;}
.w1_c00337{width:570.666667pt;}
.x0_c00337{left:0.000000pt;}
.x3_c00337{left:71.333333pt;}
.x2_c00337{left:72.333333pt;}
.x4_c00337{left:78.066667pt;}
.x5_c00337{left:107.533333pt;}
.x1_c00337{left:140.133333pt;}
.x6_c00337{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f8642424c6f78a3b6264591a.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00338;src:url('chunks/assets/font_d1819ad9493b0995c40ca3ec.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00338{letter-spacing:0.000000px;}
.ls0_c00338{letter-spacing:19.050000px;}
.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;}
}
.ws0_c00338{word-spacing:-15.000000px;}
.ws1_c00338{word-spacing:-12.750000px;}
.ws2_c00338{word-spacing:0.000000px;}
._f_c00338{margin-left:-11.499615px;}
._4_c00338{margin-left:-3.804243px;}
._0_c00338{margin-left:-2.622012px;}
._2_c00338{margin-left:-1.539027px;}
._3_c00338{width:1.062024px;}
._1_c00338{width:2.400009px;}
._c_c00338{width:3.557967px;}
._10_c00338{width:4.586550px;}
._e_c00338{width:6.267366px;}
._5_c00338{width:7.571904px;}
._6_c00338{width:8.993919px;}
._7_c00338{width:10.175919px;}
._9_c00338{width:11.520363px;}
._8_c00338{width:13.229844px;}
._a_c00338{width:16.023111px;}
._b_c00338{width:18.071886px;}
._d_c00338{width:20.388114px;}
.fc2_c00338{color:transparent;}
.fc1_c00338{color:rgb(0,0,0);}
.fc0_c00338{color:rgb(35,31,32);}
.fs0_c00338{font-size:51.000000px;}
.fs1_c00338{font-size:60.000000px;}
.y0_c00338{bottom:0.000000px;}
.y10_c00338{bottom:64.425022px;}
.yf_c00338{bottom:110.175022px;}
.ye_c00338{bottom:125.325022px;}
.yd_c00338{bottom:631.500022px;}
.yc_c00338{bottom:650.925022px;}
.yb_c00338{bottom:670.350022px;}
.ya_c00338{bottom:689.775022px;}
.y9_c00338{bottom:709.200022px;}
.y8_c00338{bottom:728.325022px;}
.y7_c00338{bottom:747.750022px;}
.y6_c00338{bottom:767.550022px;}
.y5_c00338{bottom:786.225022px;}
.y4_c00338{bottom:805.725022px;}
.y3_c00338{bottom:825.150022px;}
.y2_c00338{bottom:844.575022px;}
.y1_c00338{bottom:886.725022px;}
.h2_c00338{height:50.028809px;}
.h4_c00338{height:50.053711px;}
.h3_c00338{height:58.886719px;}
.h1_c00338{height:957.750000px;}
.h0_c00338{height:957.975000px;}
.w1_c00338{width:643.500000px;}
.w0_c00338{width:643.650000px;}
.x0_c00338{left:0.000000px;}
.x1_c00338{left:91.050000px;}
.x3_c00338{left:97.575000px;}
.x2_c00338{left:107.250000px;}
.x4_c00338{left:131.025000px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls1_c00338{letter-spacing:0.000000pt;}
.ls0_c00338{letter-spacing:16.933333pt;}
.ws0_c00338{word-spacing:-13.333333pt;}
.ws1_c00338{word-spacing:-11.333333pt;}
.ws2_c00338{word-spacing:0.000000pt;}
._f_c00338{margin-left:-10.221880pt;}
._4_c00338{margin-left:-3.381549pt;}
._0_c00338{margin-left:-2.330677pt;}
._2_c00338{margin-left:-1.368024pt;}
._3_c00338{width:0.944021pt;}
._1_c00338{width:2.133341pt;}
._c_c00338{width:3.162637pt;}
._10_c00338{width:4.076933pt;}
._e_c00338{width:5.570992pt;}
._5_c00338{width:6.730581pt;}
._6_c00338{width:7.994595pt;}
._7_c00338{width:9.045261pt;}
._9_c00338{width:10.240323pt;}
._8_c00338{width:11.759861pt;}
._a_c00338{width:14.242765pt;}
._b_c00338{width:16.063899pt;}
._d_c00338{width:18.122768pt;}
.fs0_c00338{font-size:45.333333pt;}
.fs1_c00338{font-size:53.333333pt;}
.y0_c00338{bottom:0.000000pt;}
.y10_c00338{bottom:57.266686pt;}
.yf_c00338{bottom:97.933353pt;}
.ye_c00338{bottom:111.400020pt;}
.yd_c00338{bottom:561.333353pt;}
.yc_c00338{bottom:578.600020pt;}
.yb_c00338{bottom:595.866686pt;}
.ya_c00338{bottom:613.133353pt;}
.y9_c00338{bottom:630.400020pt;}
.y8_c00338{bottom:647.400020pt;}
.y7_c00338{bottom:664.666686pt;}
.y6_c00338{bottom:682.266686pt;}
.y5_c00338{bottom:698.866686pt;}
.y4_c00338{bottom:716.200020pt;}
.y3_c00338{bottom:733.466686pt;}
.y2_c00338{bottom:750.733353pt;}
.y1_c00338{bottom:788.200020pt;}
.h2_c00338{height:44.470052pt;}
.h4_c00338{height:44.492188pt;}
.h3_c00338{height:52.343750pt;}
.h1_c00338{height:851.333333pt;}
.h0_c00338{height:851.533333pt;}
.w1_c00338{width:572.000000pt;}
.w0_c00338{width:572.133333pt;}
.x0_c00338{left:0.000000pt;}
.x1_c00338{left:80.933333pt;}
.x3_c00338{left:86.733333pt;}
.x2_c00338{left:95.333333pt;}
.x4_c00338{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5fbc7ce05d2dd7d16f05505e.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.ls1_c00339{letter-spacing:0.000000px;}
.ls0_c00339{letter-spacing:15.300000px;}
.sc__c00339{text-shadow:none;}
.sc0_c00339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00339{-webkit-text-stroke:0px transparent;}
.sc0_c00339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00339{word-spacing:-16.500000px;}
.ws1_c00339{word-spacing:-15.000000px;}
.ws2_c00339{word-spacing:0.000000px;}
._e_c00339{margin-left:-5.747856px;}
._10_c00339{margin-left:-4.152018px;}
._12_c00339{margin-left:-2.700000px;}
._0_c00339{margin-left:-1.625976px;}
._11_c00339{width:1.001910px;}
._1_c00339{width:2.004006px;}
._2_c00339{width:3.186180px;}
._3_c00339{width:4.535838px;}
._4_c00339{width:5.837928px;}
._b_c00339{width:7.799940px;}
._6_c00339{width:8.831988px;}
._d_c00339{width:9.869868px;}
._7_c00339{width:10.883916px;}
._5_c00339{width:12.060000px;}
._c_c00339{width:13.188012px;}
._f_c00339{width:16.260000px;}
._9_c00339{width:17.687886px;}
._8_c00339{width:19.751988px;}
._a_c00339{width:21.396090px;}
.fc2_c00339{color:transparent;}
.fc1_c00339{color:rgb(0,0,0);}
.fc0_c00339{color:rgb(35,31,32);}
.fs1_c00339{font-size:60.000000px;}
.fs0_c00339{font-size:66.000000px;}
.y0_c00339{bottom:0.000000px;}
.y1e_c00339{bottom:64.425022px;}
.y1d_c00339{bottom:227.550022px;}
.y1c_c00339{bottom:247.350022px;}
.y1b_c00339{bottom:266.775022px;}
.y1a_c00339{bottom:286.200022px;}
.y19_c00339{bottom:305.625022px;}
.y18_c00339{bottom:324.750022px;}
.y17_c00339{bottom:344.550022px;}
.y16_c00339{bottom:363.975022px;}
.y15_c00339{bottom:383.025022px;}
.y14_c00339{bottom:402.525022px;}
.y13_c00339{bottom:422.325022px;}
.y12_c00339{bottom:441.750022px;}
.y11_c00339{bottom:460.425022px;}
.y10_c00339{bottom:480.300022px;}
.yf_c00339{bottom:499.725022px;}
.ye_c00339{bottom:519.150022px;}
.yd_c00339{bottom:538.575022px;}
.yc_c00339{bottom:558.000022px;}
.yb_c00339{bottom:577.425022px;}
.ya_c00339{bottom:596.550022px;}
.y9_c00339{bottom:615.975022px;}
.y8_c00339{bottom:635.775022px;}
.y7_c00339{bottom:655.200022px;}
.y6_c00339{bottom:674.625022px;}
.y5_c00339{bottom:693.750022px;}
.y4_c00339{bottom:713.550022px;}
.y3_c00339{bottom:732.600022px;}
.y2_c00339{bottom:752.025022px;}
.y1_c00339{bottom:843.525022px;}
.h3_c00339{height:58.886719px;}
.h2_c00339{height:64.775391px;}
.h1_c00339{height:957.750000px;}
.h0_c00339{height:957.975000px;}
.w0_c00339{width:641.850030px;}
.w1_c00339{width:642.000000px;}
.x0_c00339{left:0.000000px;}
.x2_c00339{left:80.250000px;}
.x1_c00339{left:81.375000px;}
.x3_c00339{left:97.200000px;}
.x4_c00339{left:531.375000px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls1_c00339{letter-spacing:0.000000pt;}
.ls0_c00339{letter-spacing:13.600000pt;}
.ws0_c00339{word-spacing:-14.666667pt;}
.ws1_c00339{word-spacing:-13.333333pt;}
.ws2_c00339{word-spacing:0.000000pt;}
._e_c00339{margin-left:-5.109205pt;}
._10_c00339{margin-left:-3.690683pt;}
._12_c00339{margin-left:-2.400000pt;}
._0_c00339{margin-left:-1.445312pt;}
._11_c00339{width:0.890587pt;}
._1_c00339{width:1.781339pt;}
._2_c00339{width:2.832160pt;}
._3_c00339{width:4.031856pt;}
._4_c00339{width:5.189269pt;}
._b_c00339{width:6.933280pt;}
._6_c00339{width:7.850656pt;}
._d_c00339{width:8.773216pt;}
._7_c00339{width:9.674592pt;}
._5_c00339{width:10.720000pt;}
._c_c00339{width:11.722677pt;}
._f_c00339{width:14.453333pt;}
._9_c00339{width:15.722565pt;}
._8_c00339{width:17.557323pt;}
._a_c00339{width:19.018747pt;}
.fs1_c00339{font-size:53.333333pt;}
.fs0_c00339{font-size:58.666667pt;}
.y0_c00339{bottom:0.000000pt;}
.y1e_c00339{bottom:57.266686pt;}
.y1d_c00339{bottom:202.266686pt;}
.y1c_c00339{bottom:219.866686pt;}
.y1b_c00339{bottom:237.133353pt;}
.y1a_c00339{bottom:254.400020pt;}
.y19_c00339{bottom:271.666686pt;}
.y18_c00339{bottom:288.666686pt;}
.y17_c00339{bottom:306.266686pt;}
.y16_c00339{bottom:323.533353pt;}
.y15_c00339{bottom:340.466686pt;}
.y14_c00339{bottom:357.800020pt;}
.y13_c00339{bottom:375.400020pt;}
.y12_c00339{bottom:392.666686pt;}
.y11_c00339{bottom:409.266686pt;}
.y10_c00339{bottom:426.933353pt;}
.yf_c00339{bottom:444.200020pt;}
.ye_c00339{bottom:461.466686pt;}
.yd_c00339{bottom:478.733353pt;}
.yc_c00339{bottom:496.000020pt;}
.yb_c00339{bottom:513.266686pt;}
.ya_c00339{bottom:530.266686pt;}
.y9_c00339{bottom:547.533353pt;}
.y8_c00339{bottom:565.133353pt;}
.y7_c00339{bottom:582.400020pt;}
.y6_c00339{bottom:599.666686pt;}
.y5_c00339{bottom:616.666686pt;}
.y4_c00339{bottom:634.266686pt;}
.y3_c00339{bottom:651.200020pt;}
.y2_c00339{bottom:668.466686pt;}
.y1_c00339{bottom:749.800020pt;}
.h3_c00339{height:52.343750pt;}
.h2_c00339{height:57.578125pt;}
.h1_c00339{height:851.333333pt;}
.h0_c00339{height:851.533333pt;}
.w0_c00339{width:570.533360pt;}
.w1_c00339{width:570.666667pt;}
.x0_c00339{left:0.000000pt;}
.x2_c00339{left:71.333333pt;}
.x1_c00339{left:72.333333pt;}
.x3_c00339{left:86.400000pt;}
.x4_c00339{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88480e97fcb44cc2be445617.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00340;src:url('chunks/assets/font_11a1b92a49d16ac58983b509.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00340{letter-spacing:0.000000px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00340{word-spacing:-15.000000px;}
.ws0_c00340{word-spacing:-12.750000px;}
.ws2_c00340{word-spacing:0.000000px;}
._12_c00340{margin-left:-13.638198px;}
._d_c00340{margin-left:-12.395994px;}
._9_c00340{margin-left:-10.758012px;}
._14_c00340{margin-left:-7.275348px;}
._17_c00340{margin-left:-6.243072px;}
._5_c00340{margin-left:-4.976979px;}
._1_c00340{margin-left:-3.300006px;}
._0_c00340{margin-left:-1.760979px;}
._2_c00340{width:1.839009px;}
._3_c00340{width:3.320967px;}
._f_c00340{width:4.506054px;}
._10_c00340{width:5.636865px;}
._4_c00340{width:6.941958px;}
._e_c00340{width:8.571033px;}
._c_c00340{width:9.602973px;}
._b_c00340{width:11.621934px;}
._8_c00340{width:13.049958px;}
._16_c00340{width:14.339796px;}
._a_c00340{width:16.230180px;}
._11_c00340{width:17.288955px;}
._7_c00340{width:18.302949px;}
._6_c00340{width:20.340000px;}
._13_c00340{width:21.371958px;}
._15_c00340{width:24.110964px;}
._18_c00340{width:29.133036px;}
.fc1_c00340{color:transparent;}
.fc0_c00340{color:rgb(35,31,32);}
.fs0_c00340{font-size:51.000000px;}
.fs1_c00340{font-size:60.000000px;}
.y0_c00340{bottom:0.000000px;}
.y2b_c00340{bottom:64.425022px;}
.y2a_c00340{bottom:110.175022px;}
.y29_c00340{bottom:125.325022px;}
.y28_c00340{bottom:140.775022px;}
.y27_c00340{bottom:155.925022px;}
.y26_c00340{bottom:171.750022px;}
.y25_c00340{bottom:186.525022px;}
.y24_c00340{bottom:202.350022px;}
.y23_c00340{bottom:217.125022px;}
.y22_c00340{bottom:232.575022px;}
.y21_c00340{bottom:247.725022px;}
.y20_c00340{bottom:263.550022px;}
.y1f_c00340{bottom:278.625022px;}
.y1e_c00340{bottom:294.150022px;}
.y1d_c00340{bottom:308.925022px;}
.y1c_c00340{bottom:324.375022px;}
.y1b_c00340{bottom:339.525022px;}
.y1a_c00340{bottom:354.975022px;}
.y19_c00340{bottom:370.425022px;}
.y18_c00340{bottom:385.575022px;}
.y17_c00340{bottom:401.025022px;}
.y16_c00340{bottom:416.175022px;}
.y15_c00340{bottom:456.150022px;}
.y14_c00340{bottom:475.950022px;}
.y13_c00340{bottom:495.375022px;}
.y12_c00340{bottom:514.425022px;}
.y11_c00340{bottom:533.925022px;}
.y10_c00340{bottom:552.975022px;}
.yf_c00340{bottom:572.775022px;}
.ye_c00340{bottom:592.200022px;}
.yd_c00340{bottom:611.625022px;}
.yc_c00340{bottom:630.750022px;}
.yb_c00340{bottom:650.550022px;}
.ya_c00340{bottom:669.975022px;}
.y9_c00340{bottom:689.400022px;}
.y8_c00340{bottom:708.825022px;}
.y7_c00340{bottom:727.950022px;}
.y6_c00340{bottom:747.375022px;}
.y5_c00340{bottom:766.800022px;}
.y4_c00340{bottom:786.600022px;}
.y3_c00340{bottom:806.025022px;}
.y2_c00340{bottom:844.950022px;}
.y1_c00340{bottom:886.875022px;}
.h2_c00340{height:50.028809px;}
.h4_c00340{height:50.053711px;}
.h3_c00340{height:58.886719px;}
.h1_c00340{height:957.750000px;}
.h0_c00340{height:957.975000px;}
.w1_c00340{width:643.500000px;}
.w0_c00340{width:643.650000px;}
.x0_c00340{left:0.000000px;}
.x1_c00340{left:90.750000px;}
.x3_c00340{left:97.575000px;}
.x2_c00340{left:106.950000px;}
.x4_c00340{left:131.025000px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls0_c00340{letter-spacing:0.000000pt;}
.ws1_c00340{word-spacing:-13.333333pt;}
.ws0_c00340{word-spacing:-11.333333pt;}
.ws2_c00340{word-spacing:0.000000pt;}
._12_c00340{margin-left:-12.122843pt;}
._d_c00340{margin-left:-11.018661pt;}
._9_c00340{margin-left:-9.562677pt;}
._14_c00340{margin-left:-6.466976pt;}
._17_c00340{margin-left:-5.549397pt;}
._5_c00340{margin-left:-4.423981pt;}
._1_c00340{margin-left:-2.933339pt;}
._0_c00340{margin-left:-1.565315pt;}
._2_c00340{width:1.634675pt;}
._3_c00340{width:2.951971pt;}
._f_c00340{width:4.005381pt;}
._10_c00340{width:5.010547pt;}
._4_c00340{width:6.170629pt;}
._e_c00340{width:7.618696pt;}
._c_c00340{width:8.535976pt;}
._b_c00340{width:10.330608pt;}
._8_c00340{width:11.599963pt;}
._16_c00340{width:12.746485pt;}
._a_c00340{width:14.426827pt;}
._11_c00340{width:15.367960pt;}
._7_c00340{width:16.269288pt;}
._6_c00340{width:18.080000pt;}
._13_c00340{width:18.997296pt;}
._15_c00340{width:21.431968pt;}
._18_c00340{width:25.896032pt;}
.fs0_c00340{font-size:45.333333pt;}
.fs1_c00340{font-size:53.333333pt;}
.y0_c00340{bottom:0.000000pt;}
.y2b_c00340{bottom:57.266686pt;}
.y2a_c00340{bottom:97.933353pt;}
.y29_c00340{bottom:111.400020pt;}
.y28_c00340{bottom:125.133353pt;}
.y27_c00340{bottom:138.600020pt;}
.y26_c00340{bottom:152.666686pt;}
.y25_c00340{bottom:165.800020pt;}
.y24_c00340{bottom:179.866686pt;}
.y23_c00340{bottom:193.000020pt;}
.y22_c00340{bottom:206.733353pt;}
.y21_c00340{bottom:220.200020pt;}
.y20_c00340{bottom:234.266686pt;}
.y1f_c00340{bottom:247.666686pt;}
.y1e_c00340{bottom:261.466686pt;}
.y1d_c00340{bottom:274.600020pt;}
.y1c_c00340{bottom:288.333353pt;}
.y1b_c00340{bottom:301.800020pt;}
.y1a_c00340{bottom:315.533353pt;}
.y19_c00340{bottom:329.266686pt;}
.y18_c00340{bottom:342.733353pt;}
.y17_c00340{bottom:356.466686pt;}
.y16_c00340{bottom:369.933353pt;}
.y15_c00340{bottom:405.466686pt;}
.y14_c00340{bottom:423.066686pt;}
.y13_c00340{bottom:440.333353pt;}
.y12_c00340{bottom:457.266686pt;}
.y11_c00340{bottom:474.600020pt;}
.y10_c00340{bottom:491.533353pt;}
.yf_c00340{bottom:509.133353pt;}
.ye_c00340{bottom:526.400020pt;}
.yd_c00340{bottom:543.666686pt;}
.yc_c00340{bottom:560.666686pt;}
.yb_c00340{bottom:578.266686pt;}
.ya_c00340{bottom:595.533353pt;}
.y9_c00340{bottom:612.800020pt;}
.y8_c00340{bottom:630.066686pt;}
.y7_c00340{bottom:647.066686pt;}
.y6_c00340{bottom:664.333353pt;}
.y5_c00340{bottom:681.600020pt;}
.y4_c00340{bottom:699.200020pt;}
.y3_c00340{bottom:716.466686pt;}
.y2_c00340{bottom:751.066686pt;}
.y1_c00340{bottom:788.333353pt;}
.h2_c00340{height:44.470052pt;}
.h4_c00340{height:44.492188pt;}
.h3_c00340{height:52.343750pt;}
.h1_c00340{height:851.333333pt;}
.h0_c00340{height:851.533333pt;}
.w1_c00340{width:572.000000pt;}
.w0_c00340{width:572.133333pt;}
.x0_c00340{left:0.000000pt;}
.x1_c00340{left:80.666667pt;}
.x3_c00340{left:86.733333pt;}
.x2_c00340{left:95.066667pt;}
.x4_c00340{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_14737da695d2722c0a6bef3d.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00341;src:url('chunks/assets/font_27da97bd3ec1b32452c47af3.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.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;}
}
.ws0_c00341{word-spacing:-15.000000px;}
.ws1_c00341{word-spacing:-12.750000px;}
.ws2_c00341{word-spacing:0.000000px;}
._a_c00341{margin-left:-12.852219px;}
._9_c00341{margin-left:-11.147781px;}
._11_c00341{margin-left:-9.822291px;}
._17_c00341{margin-left:-7.166334px;}
._f_c00341{margin-left:-5.052219px;}
._3_c00341{margin-left:-3.504261px;}
._16_c00341{margin-left:-2.447949px;}
._0_c00341{margin-left:-1.383018px;}
._2_c00341{width:1.656021px;}
._1_c00341{width:2.700042px;}
._8_c00341{width:4.523685px;}
._b_c00341{width:5.745903px;}
._5_c00341{width:6.983874px;}
._7_c00341{width:8.361213px;}
._6_c00341{width:9.878955px;}
._c_c00341{width:11.054328px;}
._4_c00341{width:12.971811px;}
._10_c00341{width:16.247958px;}
._e_c00341{width:18.011832px;}
._d_c00341{width:20.027958px;}
._14_c00341{width:21.596829px;}
._13_c00341{width:22.854108px;}
._15_c00341{width:24.729327px;}
._12_c00341{width:26.703315px;}
.fc1_c00341{color:transparent;}
.fc0_c00341{color:rgb(35,31,32);}
.fs0_c00341{font-size:51.000000px;}
.fs1_c00341{font-size:60.000000px;}
.y0_c00341{bottom:0.000000px;}
.y29_c00341{bottom:64.800022px;}
.y28_c00341{bottom:110.175022px;}
.y27_c00341{bottom:125.325022px;}
.y26_c00341{bottom:141.150022px;}
.y25_c00341{bottom:155.925022px;}
.y24_c00341{bottom:171.375022px;}
.y23_c00341{bottom:186.525022px;}
.y22_c00341{bottom:202.350022px;}
.y21_c00341{bottom:217.125022px;}
.y20_c00341{bottom:232.950022px;}
.y1f_c00341{bottom:247.725022px;}
.y1e_c00341{bottom:263.550022px;}
.y1d_c00341{bottom:278.325022px;}
.y1c_c00341{bottom:294.150022px;}
.y1b_c00341{bottom:308.925022px;}
.y1a_c00341{bottom:324.750022px;}
.y19_c00341{bottom:339.525022px;}
.y18_c00341{bottom:354.975022px;}
.y17_c00341{bottom:370.125022px;}
.y16_c00341{bottom:385.575022px;}
.y15_c00341{bottom:425.550022px;}
.y14_c00341{bottom:444.975022px;}
.y13_c00341{bottom:464.775022px;}
.y12_c00341{bottom:484.275022px;}
.y11_c00341{bottom:503.325022px;}
.y10_c00341{bottom:522.375022px;}
.yf_c00341{bottom:542.175022px;}
.ye_c00341{bottom:561.600022px;}
.yd_c00341{bottom:580.725022px;}
.yc_c00341{bottom:600.525022px;}
.yb_c00341{bottom:636.825022px;}
.ya_c00341{bottom:689.775022px;}
.y9_c00341{bottom:708.825022px;}
.y8_c00341{bottom:728.625022px;}
.y7_c00341{bottom:747.750022px;}
.y6_c00341{bottom:767.175022px;}
.y5_c00341{bottom:786.600022px;}
.y4_c00341{bottom:806.025022px;}
.y3_c00341{bottom:825.150022px;}
.y2_c00341{bottom:844.575022px;}
.y1_c00341{bottom:886.725022px;}
.h2_c00341{height:50.028809px;}
.h4_c00341{height:50.053711px;}
.h3_c00341{height:58.886719px;}
.h1_c00341{height:957.750000px;}
.h0_c00341{height:957.975000px;}
.w0_c00341{width:641.850030px;}
.w1_c00341{width:642.000000px;}
.x0_c00341{left:0.000000px;}
.x3_c00341{left:80.250000px;}
.x2_c00341{left:81.375000px;}
.x4_c00341{left:87.825000px;}
.x5_c00341{left:120.975000px;}
.x1_c00341{left:417.600000px;}
.x6_c00341{left:531.375000px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls0_c00341{letter-spacing:0.000000pt;}
.ws0_c00341{word-spacing:-13.333333pt;}
.ws1_c00341{word-spacing:-11.333333pt;}
.ws2_c00341{word-spacing:0.000000pt;}
._a_c00341{margin-left:-11.424195pt;}
._9_c00341{margin-left:-9.909139pt;}
._11_c00341{margin-left:-8.730925pt;}
._17_c00341{margin-left:-6.370075pt;}
._f_c00341{margin-left:-4.490861pt;}
._3_c00341{margin-left:-3.114899pt;}
._16_c00341{margin-left:-2.175955pt;}
._0_c00341{margin-left:-1.229349pt;}
._2_c00341{width:1.472019pt;}
._1_c00341{width:2.400037pt;}
._8_c00341{width:4.021053pt;}
._b_c00341{width:5.107469pt;}
._5_c00341{width:6.207888pt;}
._7_c00341{width:7.432189pt;}
._6_c00341{width:8.781293pt;}
._c_c00341{width:9.826069pt;}
._4_c00341{width:11.530499pt;}
._10_c00341{width:14.442629pt;}
._e_c00341{width:16.010517pt;}
._d_c00341{width:17.802629pt;}
._14_c00341{width:19.197181pt;}
._13_c00341{width:20.314763pt;}
._15_c00341{width:21.981624pt;}
._12_c00341{width:23.736280pt;}
.fs0_c00341{font-size:45.333333pt;}
.fs1_c00341{font-size:53.333333pt;}
.y0_c00341{bottom:0.000000pt;}
.y29_c00341{bottom:57.600020pt;}
.y28_c00341{bottom:97.933353pt;}
.y27_c00341{bottom:111.400020pt;}
.y26_c00341{bottom:125.466686pt;}
.y25_c00341{bottom:138.600020pt;}
.y24_c00341{bottom:152.333353pt;}
.y23_c00341{bottom:165.800020pt;}
.y22_c00341{bottom:179.866686pt;}
.y21_c00341{bottom:193.000020pt;}
.y20_c00341{bottom:207.066686pt;}
.y1f_c00341{bottom:220.200020pt;}
.y1e_c00341{bottom:234.266686pt;}
.y1d_c00341{bottom:247.400020pt;}
.y1c_c00341{bottom:261.466686pt;}
.y1b_c00341{bottom:274.600020pt;}
.y1a_c00341{bottom:288.666686pt;}
.y19_c00341{bottom:301.800020pt;}
.y18_c00341{bottom:315.533353pt;}
.y17_c00341{bottom:329.000020pt;}
.y16_c00341{bottom:342.733353pt;}
.y15_c00341{bottom:378.266686pt;}
.y14_c00341{bottom:395.533353pt;}
.y13_c00341{bottom:413.133353pt;}
.y12_c00341{bottom:430.466686pt;}
.y11_c00341{bottom:447.400020pt;}
.y10_c00341{bottom:464.333353pt;}
.yf_c00341{bottom:481.933353pt;}
.ye_c00341{bottom:499.200020pt;}
.yd_c00341{bottom:516.200020pt;}
.yc_c00341{bottom:533.800020pt;}
.yb_c00341{bottom:566.066686pt;}
.ya_c00341{bottom:613.133353pt;}
.y9_c00341{bottom:630.066686pt;}
.y8_c00341{bottom:647.666686pt;}
.y7_c00341{bottom:664.666686pt;}
.y6_c00341{bottom:681.933353pt;}
.y5_c00341{bottom:699.200020pt;}
.y4_c00341{bottom:716.466686pt;}
.y3_c00341{bottom:733.466686pt;}
.y2_c00341{bottom:750.733353pt;}
.y1_c00341{bottom:788.200020pt;}
.h2_c00341{height:44.470052pt;}
.h4_c00341{height:44.492188pt;}
.h3_c00341{height:52.343750pt;}
.h1_c00341{height:851.333333pt;}
.h0_c00341{height:851.533333pt;}
.w0_c00341{width:570.533360pt;}
.w1_c00341{width:570.666667pt;}
.x0_c00341{left:0.000000pt;}
.x3_c00341{left:71.333333pt;}
.x2_c00341{left:72.333333pt;}
.x4_c00341{left:78.066667pt;}
.x5_c00341{left:107.533333pt;}
.x1_c00341{left:371.200000pt;}
.x6_c00341{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_101c990c1eec279d007d4795.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00342;src:url('chunks/assets/font_5f033c2c0d3d75382bfca38a.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00342{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00342{word-spacing:-15.000000px;}
.ws1_c00342{word-spacing:-12.750000px;}
.ws2_c00342{word-spacing:0.000000px;}
._d_c00342{margin-left:-12.939009px;}
._10_c00342{margin-left:-11.363988px;}
._f_c00342{margin-left:-9.636012px;}
._e_c00342{margin-left:-6.758805px;}
._13_c00342{margin-left:-5.154009px;}
._1_c00342{margin-left:-3.300006px;}
._0_c00342{margin-left:-1.760979px;}
._2_c00342{width:1.839009px;}
._3_c00342{width:3.320967px;}
._a_c00342{width:5.102973px;}
._9_c00342{width:7.001982px;}
._7_c00342{width:9.060000px;}
._8_c00342{width:10.823964px;}
._b_c00342{width:12.428919px;}
._5_c00342{width:13.898979px;}
._c_c00342{width:16.076895px;}
._4_c00342{width:17.282997px;}
._6_c00342{width:18.476967px;}
._11_c00342{width:20.021982px;}
._18_c00342{width:21.291081px;}
._14_c00342{width:22.910985px;}
._17_c00342{width:24.110964px;}
._16_c00342{width:26.093916px;}
._12_c00342{width:27.633024px;}
._15_c00342{width:62.627925px;}
.fc1_c00342{color:transparent;}
.fc0_c00342{color:rgb(35,31,32);}
.fs0_c00342{font-size:51.000000px;}
.fs1_c00342{font-size:60.000000px;}
.y0_c00342{bottom:0.000000px;}
.y29_c00342{bottom:64.800022px;}
.y28_c00342{bottom:110.175022px;}
.y27_c00342{bottom:125.325022px;}
.y26_c00342{bottom:141.150022px;}
.y25_c00342{bottom:156.225022px;}
.y24_c00342{bottom:171.375022px;}
.y23_c00342{bottom:186.525022px;}
.y22_c00342{bottom:202.350022px;}
.y21_c00342{bottom:217.125022px;}
.y20_c00342{bottom:232.500022px;}
.y1f_c00342{bottom:248.025022px;}
.y1e_c00342{bottom:263.550022px;}
.y1d_c00342{bottom:278.625022px;}
.y1c_c00342{bottom:294.150022px;}
.y1b_c00342{bottom:308.925022px;}
.y1a_c00342{bottom:324.375022px;}
.y19_c00342{bottom:339.525022px;}
.y18_c00342{bottom:354.975022px;}
.y17_c00342{bottom:370.125022px;}
.y16_c00342{bottom:410.025022px;}
.y15_c00342{bottom:429.525022px;}
.y14_c00342{bottom:448.575022px;}
.y13_c00342{bottom:467.625022px;}
.y12_c00342{bottom:487.125022px;}
.y11_c00342{bottom:506.175022px;}
.y10_c00342{bottom:524.925022px;}
.yf_c00342{bottom:544.350022px;}
.ye_c00342{bottom:563.775022px;}
.yd_c00342{bottom:582.525022px;}
.yc_c00342{bottom:601.950022px;}
.yb_c00342{bottom:621.000022px;}
.ya_c00342{bottom:640.125022px;}
.y9_c00342{bottom:659.550022px;}
.y8_c00342{bottom:678.975022px;}
.y7_c00342{bottom:714.225022px;}
.y6_c00342{bottom:768.225022px;}
.y5_c00342{bottom:787.725022px;}
.y4_c00342{bottom:806.400022px;}
.y3_c00342{bottom:825.525022px;}
.y2_c00342{bottom:844.950022px;}
.y1_c00342{bottom:886.875022px;}
.h2_c00342{height:50.028809px;}
.h4_c00342{height:50.053711px;}
.h5_c00342{height:50.353711px;}
.h3_c00342{height:58.886719px;}
.h1_c00342{height:957.750000px;}
.h0_c00342{height:957.975000px;}
.w1_c00342{width:643.500000px;}
.w0_c00342{width:643.650000px;}
.x0_c00342{left:0.000000px;}
.x1_c00342{left:90.750000px;}
.x2_c00342{left:97.575000px;}
.x3_c00342{left:131.025000px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls0_c00342{letter-spacing:0.000000pt;}
.ws0_c00342{word-spacing:-13.333333pt;}
.ws1_c00342{word-spacing:-11.333333pt;}
.ws2_c00342{word-spacing:0.000000pt;}
._d_c00342{margin-left:-11.501341pt;}
._10_c00342{margin-left:-10.101323pt;}
._f_c00342{margin-left:-8.565344pt;}
._e_c00342{margin-left:-6.007827pt;}
._13_c00342{margin-left:-4.581341pt;}
._1_c00342{margin-left:-2.933339pt;}
._0_c00342{margin-left:-1.565315pt;}
._2_c00342{width:1.634675pt;}
._3_c00342{width:2.951971pt;}
._a_c00342{width:4.535976pt;}
._9_c00342{width:6.223984pt;}
._7_c00342{width:8.053333pt;}
._8_c00342{width:9.621301pt;}
._b_c00342{width:11.047928pt;}
._5_c00342{width:12.354648pt;}
._c_c00342{width:14.290573pt;}
._4_c00342{width:15.362664pt;}
._6_c00342{width:16.423971pt;}
._11_c00342{width:17.797317pt;}
._18_c00342{width:18.925405pt;}
._14_c00342{width:20.365320pt;}
._17_c00342{width:21.431968pt;}
._16_c00342{width:23.194592pt;}
._12_c00342{width:24.562688pt;}
._15_c00342{width:55.669267pt;}
.fs0_c00342{font-size:45.333333pt;}
.fs1_c00342{font-size:53.333333pt;}
.y0_c00342{bottom:0.000000pt;}
.y29_c00342{bottom:57.600020pt;}
.y28_c00342{bottom:97.933353pt;}
.y27_c00342{bottom:111.400020pt;}
.y26_c00342{bottom:125.466686pt;}
.y25_c00342{bottom:138.866686pt;}
.y24_c00342{bottom:152.333353pt;}
.y23_c00342{bottom:165.800020pt;}
.y22_c00342{bottom:179.866686pt;}
.y21_c00342{bottom:193.000020pt;}
.y20_c00342{bottom:206.666686pt;}
.y1f_c00342{bottom:220.466686pt;}
.y1e_c00342{bottom:234.266686pt;}
.y1d_c00342{bottom:247.666686pt;}
.y1c_c00342{bottom:261.466686pt;}
.y1b_c00342{bottom:274.600020pt;}
.y1a_c00342{bottom:288.333353pt;}
.y19_c00342{bottom:301.800020pt;}
.y18_c00342{bottom:315.533353pt;}
.y17_c00342{bottom:329.000020pt;}
.y16_c00342{bottom:364.466686pt;}
.y15_c00342{bottom:381.800020pt;}
.y14_c00342{bottom:398.733353pt;}
.y13_c00342{bottom:415.666686pt;}
.y12_c00342{bottom:433.000020pt;}
.y11_c00342{bottom:449.933353pt;}
.y10_c00342{bottom:466.600020pt;}
.yf_c00342{bottom:483.866686pt;}
.ye_c00342{bottom:501.133353pt;}
.yd_c00342{bottom:517.800020pt;}
.yc_c00342{bottom:535.066686pt;}
.yb_c00342{bottom:552.000020pt;}
.ya_c00342{bottom:569.000020pt;}
.y9_c00342{bottom:586.266686pt;}
.y8_c00342{bottom:603.533353pt;}
.y7_c00342{bottom:634.866686pt;}
.y6_c00342{bottom:682.866686pt;}
.y5_c00342{bottom:700.200020pt;}
.y4_c00342{bottom:716.800020pt;}
.y3_c00342{bottom:733.800020pt;}
.y2_c00342{bottom:751.066686pt;}
.y1_c00342{bottom:788.333353pt;}
.h2_c00342{height:44.470052pt;}
.h4_c00342{height:44.492188pt;}
.h5_c00342{height:44.758854pt;}
.h3_c00342{height:52.343750pt;}
.h1_c00342{height:851.333333pt;}
.h0_c00342{height:851.533333pt;}
.w1_c00342{width:572.000000pt;}
.w0_c00342{width:572.133333pt;}
.x0_c00342{left:0.000000pt;}
.x1_c00342{left:80.666667pt;}
.x2_c00342{left:86.733333pt;}
.x3_c00342{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af3e34451aeaa65fa0834c94.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00343;src:url('chunks/assets/font_9f2c748e59a46d74bdaf1cbc.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.000000px;}
.ls0_c00343{letter-spacing:13.050000px;}
.sc__c00343{text-shadow:none;}
.sc0_c00343{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00343{-webkit-text-stroke:0px transparent;}
.sc0_c00343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00343{word-spacing:-15.000000px;}
.ws0_c00343{word-spacing:-12.750000px;}
.ws2_c00343{word-spacing:0.000000px;}
._10_c00343{margin-left:-10.343592px;}
._12_c00343{margin-left:-5.844357px;}
._14_c00343{margin-left:-4.787268px;}
._3_c00343{margin-left:-3.504261px;}
._13_c00343{margin-left:-2.411571px;}
._0_c00343{margin-left:-1.383018px;}
._2_c00343{width:1.656021px;}
._1_c00343{width:2.700042px;}
._f_c00343{width:3.851403px;}
._8_c00343{width:5.063727px;}
._7_c00343{width:6.083979px;}
._d_c00343{width:7.758351px;}
._c_c00343{width:8.795811px;}
._4_c00343{width:10.379895px;}
._5_c00343{width:12.107958px;}
._6_c00343{width:13.286997px;}
._15_c00343{width:15.128184px;}
._e_c00343{width:16.680000px;}
._b_c00343{width:17.867748px;}
._11_c00343{width:19.212042px;}
._9_c00343{width:20.220000px;}
._a_c00343{width:21.743874px;}
.fc2_c00343{color:transparent;}
.fc1_c00343{color:rgb(0,0,0);}
.fc0_c00343{color:rgb(35,31,32);}
.fs0_c00343{font-size:51.000000px;}
.fs1_c00343{font-size:60.000000px;}
.y0_c00343{bottom:0.000000px;}
.y27_c00343{bottom:64.425022px;}
.y26_c00343{bottom:110.175022px;}
.y25_c00343{bottom:125.625022px;}
.y24_c00343{bottom:141.150022px;}
.y23_c00343{bottom:155.925022px;}
.y22_c00343{bottom:171.300022px;}
.y21_c00343{bottom:186.825022px;}
.y20_c00343{bottom:202.350022px;}
.y1f_c00343{bottom:217.425022px;}
.y1e_c00343{bottom:232.575022px;}
.y1d_c00343{bottom:247.725022px;}
.y1c_c00343{bottom:263.550022px;}
.y1b_c00343{bottom:278.325022px;}
.y1a_c00343{bottom:378.750022px;}
.y19_c00343{bottom:398.175022px;}
.y18_c00343{bottom:417.600022px;}
.y17_c00343{bottom:437.025022px;}
.y16_c00343{bottom:456.525022px;}
.y15_c00343{bottom:475.575022px;}
.y14_c00343{bottom:495.000022px;}
.y13_c00343{bottom:514.800022px;}
.y12_c00343{bottom:533.925022px;}
.y11_c00343{bottom:553.725022px;}
.y10_c00343{bottom:572.775022px;}
.yf_c00343{bottom:592.200022px;}
.ye_c00343{bottom:611.625022px;}
.yd_c00343{bottom:631.425022px;}
.yc_c00343{bottom:650.925022px;}
.yb_c00343{bottom:669.975022px;}
.ya_c00343{bottom:689.775022px;}
.y9_c00343{bottom:709.200022px;}
.y8_c00343{bottom:728.625022px;}
.y7_c00343{bottom:748.125022px;}
.y6_c00343{bottom:767.475022px;}
.y5_c00343{bottom:786.600022px;}
.y4_c00343{bottom:805.725022px;}
.y3_c00343{bottom:825.150022px;}
.y2_c00343{bottom:844.950022px;}
.y1_c00343{bottom:886.725022px;}
.h2_c00343{height:50.028809px;}
.h4_c00343{height:50.053711px;}
.h5_c00343{height:50.353711px;}
.h3_c00343{height:58.886719px;}
.h1_c00343{height:957.750000px;}
.h0_c00343{height:957.975000px;}
.w0_c00343{width:641.850030px;}
.w1_c00343{width:642.000000px;}
.x0_c00343{left:0.000000px;}
.x2_c00343{left:81.375000px;}
.x4_c00343{left:87.825000px;}
.x3_c00343{left:97.200000px;}
.x5_c00343{left:120.975000px;}
.x1_c00343{left:417.600000px;}
.x6_c00343{left:531.375000px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls1_c00343{letter-spacing:0.000000pt;}
.ls0_c00343{letter-spacing:11.600000pt;}
.ws1_c00343{word-spacing:-13.333333pt;}
.ws0_c00343{word-spacing:-11.333333pt;}
.ws2_c00343{word-spacing:0.000000pt;}
._10_c00343{margin-left:-9.194304pt;}
._12_c00343{margin-left:-5.194984pt;}
._14_c00343{margin-left:-4.255349pt;}
._3_c00343{margin-left:-3.114899pt;}
._13_c00343{margin-left:-2.143619pt;}
._0_c00343{margin-left:-1.229349pt;}
._2_c00343{width:1.472019pt;}
._1_c00343{width:2.400037pt;}
._f_c00343{width:3.423469pt;}
._8_c00343{width:4.501091pt;}
._7_c00343{width:5.407981pt;}
._d_c00343{width:6.896312pt;}
._c_c00343{width:7.818499pt;}
._4_c00343{width:9.226573pt;}
._5_c00343{width:10.762629pt;}
._6_c00343{width:11.810664pt;}
._15_c00343{width:13.447275pt;}
._e_c00343{width:14.826667pt;}
._b_c00343{width:15.882443pt;}
._11_c00343{width:17.077371pt;}
._9_c00343{width:17.973333pt;}
._a_c00343{width:19.327888pt;}
.fs0_c00343{font-size:45.333333pt;}
.fs1_c00343{font-size:53.333333pt;}
.y0_c00343{bottom:0.000000pt;}
.y27_c00343{bottom:57.266686pt;}
.y26_c00343{bottom:97.933353pt;}
.y25_c00343{bottom:111.666686pt;}
.y24_c00343{bottom:125.466686pt;}
.y23_c00343{bottom:138.600020pt;}
.y22_c00343{bottom:152.266686pt;}
.y21_c00343{bottom:166.066686pt;}
.y20_c00343{bottom:179.866686pt;}
.y1f_c00343{bottom:193.266686pt;}
.y1e_c00343{bottom:206.733353pt;}
.y1d_c00343{bottom:220.200020pt;}
.y1c_c00343{bottom:234.266686pt;}
.y1b_c00343{bottom:247.400020pt;}
.y1a_c00343{bottom:336.666686pt;}
.y19_c00343{bottom:353.933353pt;}
.y18_c00343{bottom:371.200020pt;}
.y17_c00343{bottom:388.466686pt;}
.y16_c00343{bottom:405.800020pt;}
.y15_c00343{bottom:422.733353pt;}
.y14_c00343{bottom:440.000020pt;}
.y13_c00343{bottom:457.600020pt;}
.y12_c00343{bottom:474.600020pt;}
.y11_c00343{bottom:492.200020pt;}
.y10_c00343{bottom:509.133353pt;}
.yf_c00343{bottom:526.400020pt;}
.ye_c00343{bottom:543.666686pt;}
.yd_c00343{bottom:561.266686pt;}
.yc_c00343{bottom:578.600020pt;}
.yb_c00343{bottom:595.533353pt;}
.ya_c00343{bottom:613.133353pt;}
.y9_c00343{bottom:630.400020pt;}
.y8_c00343{bottom:647.666686pt;}
.y7_c00343{bottom:665.000020pt;}
.y6_c00343{bottom:682.200020pt;}
.y5_c00343{bottom:699.200020pt;}
.y4_c00343{bottom:716.200020pt;}
.y3_c00343{bottom:733.466686pt;}
.y2_c00343{bottom:751.066686pt;}
.y1_c00343{bottom:788.200020pt;}
.h2_c00343{height:44.470052pt;}
.h4_c00343{height:44.492188pt;}
.h5_c00343{height:44.758854pt;}
.h3_c00343{height:52.343750pt;}
.h1_c00343{height:851.333333pt;}
.h0_c00343{height:851.533333pt;}
.w0_c00343{width:570.533360pt;}
.w1_c00343{width:570.666667pt;}
.x0_c00343{left:0.000000pt;}
.x2_c00343{left:72.333333pt;}
.x4_c00343{left:78.066667pt;}
.x3_c00343{left:86.400000pt;}
.x5_c00343{left:107.533333pt;}
.x1_c00343{left:371.200000pt;}
.x6_c00343{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d41ec18fa56b9f3416ee026f.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00344;src:url('chunks/assets/font_6392c314d1b129e7d1e84e1a.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00344{letter-spacing:0.000000px;}
.sc__c00344{text-shadow:none;}
.sc0_c00344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00344{-webkit-text-stroke:0px transparent;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00344{word-spacing:-15.000000px;}
.ws0_c00344{word-spacing:-12.750000px;}
.ws2_c00344{word-spacing:0.000000px;}
._8_c00344{margin-left:-11.621982px;}
._7_c00344{margin-left:-10.539009px;}
._11_c00344{margin-left:-5.454030px;}
._16_c00344{margin-left:-4.416153px;}
._1_c00344{margin-left:-3.300006px;}
._0_c00344{margin-left:-1.760979px;}
._2_c00344{width:1.839009px;}
._3_c00344{width:3.320967px;}
._a_c00344{width:4.962006px;}
._b_c00344{width:6.219009px;}
._c_c00344{width:7.823988px;}
._e_c00344{width:9.185970px;}
._d_c00344{width:10.484727px;}
._13_c00344{width:11.712072px;}
._10_c00344{width:12.989910px;}
._14_c00344{width:14.462790px;}
._15_c00344{width:15.698892px;}
._12_c00344{width:16.731033px;}
._f_c00344{width:17.753898px;}
._9_c00344{width:19.040991px;}
._5_c00344{width:20.723964px;}
._6_c00344{width:22.883964px;}
._4_c00344{width:24.545970px;}
.fc1_c00344{color:transparent;}
.fc0_c00344{color:rgb(35,31,32);}
.fs0_c00344{font-size:51.000000px;}
.fs1_c00344{font-size:60.000000px;}
.y0_c00344{bottom:0.000000px;}
.y26_c00344{bottom:64.800022px;}
.y25_c00344{bottom:110.175022px;}
.y24_c00344{bottom:125.325022px;}
.y23_c00344{bottom:140.775022px;}
.y22_c00344{bottom:156.225022px;}
.y21_c00344{bottom:171.375022px;}
.y20_c00344{bottom:186.525022px;}
.y1f_c00344{bottom:202.350022px;}
.y1e_c00344{bottom:217.425022px;}
.y1d_c00344{bottom:232.950022px;}
.y1c_c00344{bottom:247.725022px;}
.y1b_c00344{bottom:303.525022px;}
.y1a_c00344{bottom:322.875022px;}
.y19_c00344{bottom:342.000022px;}
.y18_c00344{bottom:361.125022px;}
.y17_c00344{bottom:380.925022px;}
.y16_c00344{bottom:400.350022px;}
.y15_c00344{bottom:419.400022px;}
.y14_c00344{bottom:439.200022px;}
.y13_c00344{bottom:458.325022px;}
.y12_c00344{bottom:477.750022px;}
.y11_c00344{bottom:497.550022px;}
.y10_c00344{bottom:516.975022px;}
.yf_c00344{bottom:536.400022px;}
.ye_c00344{bottom:555.825022px;}
.yd_c00344{bottom:594.000022px;}
.yc_c00344{bottom:650.925022px;}
.yb_c00344{bottom:670.350022px;}
.ya_c00344{bottom:689.775022px;}
.y9_c00344{bottom:709.200022px;}
.y8_c00344{bottom:728.625022px;}
.y7_c00344{bottom:748.125022px;}
.y6_c00344{bottom:767.550022px;}
.y5_c00344{bottom:786.600022px;}
.y4_c00344{bottom:805.725022px;}
.y3_c00344{bottom:825.150022px;}
.y2_c00344{bottom:844.950022px;}
.y1_c00344{bottom:886.875022px;}
.h2_c00344{height:50.028809px;}
.h4_c00344{height:50.053711px;}
.h3_c00344{height:58.886719px;}
.h1_c00344{height:957.750000px;}
.h0_c00344{height:957.975000px;}
.w1_c00344{width:643.500000px;}
.w0_c00344{width:643.650000px;}
.x0_c00344{left:0.000000px;}
.x1_c00344{left:90.750000px;}
.x2_c00344{left:97.575000px;}
.x3_c00344{left:131.025000px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls0_c00344{letter-spacing:0.000000pt;}
.ws1_c00344{word-spacing:-13.333333pt;}
.ws0_c00344{word-spacing:-11.333333pt;}
.ws2_c00344{word-spacing:0.000000pt;}
._8_c00344{margin-left:-10.330651pt;}
._7_c00344{margin-left:-9.368008pt;}
._11_c00344{margin-left:-4.848027pt;}
._16_c00344{margin-left:-3.925469pt;}
._1_c00344{margin-left:-2.933339pt;}
._0_c00344{margin-left:-1.565315pt;}
._2_c00344{width:1.634675pt;}
._3_c00344{width:2.951971pt;}
._a_c00344{width:4.410672pt;}
._b_c00344{width:5.528008pt;}
._c_c00344{width:6.954656pt;}
._e_c00344{width:8.165307pt;}
._d_c00344{width:9.319757pt;}
._13_c00344{width:10.410731pt;}
._10_c00344{width:11.546587pt;}
._14_c00344{width:12.855813pt;}
._15_c00344{width:13.954571pt;}
._12_c00344{width:14.872029pt;}
._f_c00344{width:15.781243pt;}
._9_c00344{width:16.925325pt;}
._5_c00344{width:18.421301pt;}
._6_c00344{width:20.341301pt;}
._4_c00344{width:21.818640pt;}
.fs0_c00344{font-size:45.333333pt;}
.fs1_c00344{font-size:53.333333pt;}
.y0_c00344{bottom:0.000000pt;}
.y26_c00344{bottom:57.600020pt;}
.y25_c00344{bottom:97.933353pt;}
.y24_c00344{bottom:111.400020pt;}
.y23_c00344{bottom:125.133353pt;}
.y22_c00344{bottom:138.866686pt;}
.y21_c00344{bottom:152.333353pt;}
.y20_c00344{bottom:165.800020pt;}
.y1f_c00344{bottom:179.866686pt;}
.y1e_c00344{bottom:193.266686pt;}
.y1d_c00344{bottom:207.066686pt;}
.y1c_c00344{bottom:220.200020pt;}
.y1b_c00344{bottom:269.800020pt;}
.y1a_c00344{bottom:287.000020pt;}
.y19_c00344{bottom:304.000020pt;}
.y18_c00344{bottom:321.000020pt;}
.y17_c00344{bottom:338.600020pt;}
.y16_c00344{bottom:355.866686pt;}
.y15_c00344{bottom:372.800020pt;}
.y14_c00344{bottom:390.400020pt;}
.y13_c00344{bottom:407.400020pt;}
.y12_c00344{bottom:424.666686pt;}
.y11_c00344{bottom:442.266686pt;}
.y10_c00344{bottom:459.533353pt;}
.yf_c00344{bottom:476.800020pt;}
.ye_c00344{bottom:494.066686pt;}
.yd_c00344{bottom:528.000020pt;}
.yc_c00344{bottom:578.600020pt;}
.yb_c00344{bottom:595.866686pt;}
.ya_c00344{bottom:613.133353pt;}
.y9_c00344{bottom:630.400020pt;}
.y8_c00344{bottom:647.666686pt;}
.y7_c00344{bottom:665.000020pt;}
.y6_c00344{bottom:682.266686pt;}
.y5_c00344{bottom:699.200020pt;}
.y4_c00344{bottom:716.200020pt;}
.y3_c00344{bottom:733.466686pt;}
.y2_c00344{bottom:751.066686pt;}
.y1_c00344{bottom:788.333353pt;}
.h2_c00344{height:44.470052pt;}
.h4_c00344{height:44.492188pt;}
.h3_c00344{height:52.343750pt;}
.h1_c00344{height:851.333333pt;}
.h0_c00344{height:851.533333pt;}
.w1_c00344{width:572.000000pt;}
.w0_c00344{width:572.133333pt;}
.x0_c00344{left:0.000000pt;}
.x1_c00344{left:80.666667pt;}
.x2_c00344{left:86.733333pt;}
.x3_c00344{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7e4dbd7cc7c1e44a2045ae06.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00345;src:url('chunks/assets/font_8038e1158131c9ecb8732ab5.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00345{letter-spacing:0.000000px;}
.sc__c00345{text-shadow:none;}
.sc0_c00345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00345{-webkit-text-stroke:0px transparent;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00345{word-spacing:-15.000000px;}
.ws0_c00345{word-spacing:-12.750000px;}
.ws2_c00345{word-spacing:0.000000px;}
._c_c00345{margin-left:-14.375769px;}
._b_c00345{margin-left:-12.624231px;}
._f_c00345{margin-left:-11.307009px;}
._15_c00345{margin-left:-9.978024px;}
._14_c00345{margin-left:-6.935958px;}
._18_c00345{margin-left:-5.929683px;}
._11_c00345{margin-left:-4.706736px;}
._3_c00345{margin-left:-3.504261px;}
._13_c00345{margin-left:-2.490321px;}
._0_c00345{margin-left:-1.383018px;}
._2_c00345{width:1.656021px;}
._1_c00345{width:2.700042px;}
._d_c00345{width:3.851433px;}
._4_c00345{width:4.967748px;}
._6_c00345{width:6.543144px;}
._7_c00345{width:8.435811px;}
._5_c00345{width:10.307958px;}
._12_c00345{width:11.649453px;}
._a_c00345{width:12.659853px;}
._10_c00345{width:13.962363px;}
._1a_c00345{width:14.969301px;}
._8_c00345{width:16.031832px;}
._9_c00345{width:17.459895px;}
._e_c00345{width:19.451937px;}
._17_c00345{width:23.844582px;}
._19_c00345{width:26.704083px;}
._16_c00345{width:28.917900px;}
.fc1_c00345{color:transparent;}
.fc0_c00345{color:rgb(35,31,32);}
.fs0_c00345{font-size:51.000000px;}
.fs1_c00345{font-size:60.000000px;}
.y0_c00345{bottom:0.000000px;}
.y2a_c00345{bottom:64.425022px;}
.y29_c00345{bottom:110.550022px;}
.y28_c00345{bottom:125.325022px;}
.y27_c00345{bottom:141.150022px;}
.y26_c00345{bottom:156.225022px;}
.y25_c00345{bottom:171.375022px;}
.y24_c00345{bottom:186.525022px;}
.y23_c00345{bottom:201.975022px;}
.y22_c00345{bottom:217.125022px;}
.y21_c00345{bottom:232.575022px;}
.y20_c00345{bottom:248.025022px;}
.y1f_c00345{bottom:263.175022px;}
.y1e_c00345{bottom:278.625022px;}
.y1d_c00345{bottom:293.775022px;}
.y1c_c00345{bottom:339.525022px;}
.y1b_c00345{bottom:359.325022px;}
.y1a_c00345{bottom:378.375022px;}
.y19_c00345{bottom:398.175022px;}
.y18_c00345{bottom:417.600022px;}
.y17_c00345{bottom:437.025022px;}
.y16_c00345{bottom:456.150022px;}
.y15_c00345{bottom:475.575022px;}
.y14_c00345{bottom:495.375022px;}
.y13_c00345{bottom:514.800022px;}
.y12_c00345{bottom:533.925022px;}
.y11_c00345{bottom:553.350022px;}
.y10_c00345{bottom:572.775022px;}
.yf_c00345{bottom:592.575022px;}
.ye_c00345{bottom:612.000022px;}
.yd_c00345{bottom:631.425022px;}
.yc_c00345{bottom:650.925022px;}
.yb_c00345{bottom:670.350022px;}
.ya_c00345{bottom:689.700022px;}
.y9_c00345{bottom:709.200022px;}
.y8_c00345{bottom:728.700022px;}
.y7_c00345{bottom:748.125022px;}
.y6_c00345{bottom:767.550022px;}
.y5_c00345{bottom:786.225022px;}
.y4_c00345{bottom:806.025022px;}
.y3_c00345{bottom:825.150022px;}
.y2_c00345{bottom:844.950022px;}
.y1_c00345{bottom:886.725022px;}
.h2_c00345{height:50.028809px;}
.h4_c00345{height:50.053711px;}
.h3_c00345{height:58.886719px;}
.h1_c00345{height:957.750000px;}
.h0_c00345{height:957.975000px;}
.w0_c00345{width:641.850030px;}
.w1_c00345{width:642.000000px;}
.x0_c00345{left:0.000000px;}
.x2_c00345{left:81.375000px;}
.x4_c00345{left:87.825000px;}
.x3_c00345{left:97.200000px;}
.x5_c00345{left:121.350000px;}
.x1_c00345{left:417.600000px;}
.x6_c00345{left:531.375000px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls0_c00345{letter-spacing:0.000000pt;}
.ws1_c00345{word-spacing:-13.333333pt;}
.ws0_c00345{word-spacing:-11.333333pt;}
.ws2_c00345{word-spacing:0.000000pt;}
._c_c00345{margin-left:-12.778461pt;}
._b_c00345{margin-left:-11.221539pt;}
._f_c00345{margin-left:-10.050675pt;}
._15_c00345{margin-left:-8.869355pt;}
._14_c00345{margin-left:-6.165296pt;}
._18_c00345{margin-left:-5.270829pt;}
._11_c00345{margin-left:-4.183765pt;}
._3_c00345{margin-left:-3.114899pt;}
._13_c00345{margin-left:-2.213619pt;}
._0_c00345{margin-left:-1.229349pt;}
._2_c00345{width:1.472019pt;}
._1_c00345{width:2.400037pt;}
._d_c00345{width:3.423496pt;}
._4_c00345{width:4.415776pt;}
._6_c00345{width:5.816128pt;}
._7_c00345{width:7.498499pt;}
._5_c00345{width:9.162629pt;}
._12_c00345{width:10.355069pt;}
._a_c00345{width:11.253203pt;}
._10_c00345{width:12.410989pt;}
._1a_c00345{width:13.306045pt;}
._8_c00345{width:14.250517pt;}
._9_c00345{width:15.519907pt;}
._e_c00345{width:17.290611pt;}
._17_c00345{width:21.195184pt;}
._19_c00345{width:23.736963pt;}
._16_c00345{width:25.704800pt;}
.fs0_c00345{font-size:45.333333pt;}
.fs1_c00345{font-size:53.333333pt;}
.y0_c00345{bottom:0.000000pt;}
.y2a_c00345{bottom:57.266686pt;}
.y29_c00345{bottom:98.266686pt;}
.y28_c00345{bottom:111.400020pt;}
.y27_c00345{bottom:125.466686pt;}
.y26_c00345{bottom:138.866686pt;}
.y25_c00345{bottom:152.333353pt;}
.y24_c00345{bottom:165.800020pt;}
.y23_c00345{bottom:179.533353pt;}
.y22_c00345{bottom:193.000020pt;}
.y21_c00345{bottom:206.733353pt;}
.y20_c00345{bottom:220.466686pt;}
.y1f_c00345{bottom:233.933353pt;}
.y1e_c00345{bottom:247.666686pt;}
.y1d_c00345{bottom:261.133353pt;}
.y1c_c00345{bottom:301.800020pt;}
.y1b_c00345{bottom:319.400020pt;}
.y1a_c00345{bottom:336.333353pt;}
.y19_c00345{bottom:353.933353pt;}
.y18_c00345{bottom:371.200020pt;}
.y17_c00345{bottom:388.466686pt;}
.y16_c00345{bottom:405.466686pt;}
.y15_c00345{bottom:422.733353pt;}
.y14_c00345{bottom:440.333353pt;}
.y13_c00345{bottom:457.600020pt;}
.y12_c00345{bottom:474.600020pt;}
.y11_c00345{bottom:491.866686pt;}
.y10_c00345{bottom:509.133353pt;}
.yf_c00345{bottom:526.733353pt;}
.ye_c00345{bottom:544.000020pt;}
.yd_c00345{bottom:561.266686pt;}
.yc_c00345{bottom:578.600020pt;}
.yb_c00345{bottom:595.866686pt;}
.ya_c00345{bottom:613.066686pt;}
.y9_c00345{bottom:630.400020pt;}
.y8_c00345{bottom:647.733353pt;}
.y7_c00345{bottom:665.000020pt;}
.y6_c00345{bottom:682.266686pt;}
.y5_c00345{bottom:698.866686pt;}
.y4_c00345{bottom:716.466686pt;}
.y3_c00345{bottom:733.466686pt;}
.y2_c00345{bottom:751.066686pt;}
.y1_c00345{bottom:788.200020pt;}
.h2_c00345{height:44.470052pt;}
.h4_c00345{height:44.492188pt;}
.h3_c00345{height:52.343750pt;}
.h1_c00345{height:851.333333pt;}
.h0_c00345{height:851.533333pt;}
.w0_c00345{width:570.533360pt;}
.w1_c00345{width:570.666667pt;}
.x0_c00345{left:0.000000pt;}
.x2_c00345{left:72.333333pt;}
.x4_c00345{left:78.066667pt;}
.x3_c00345{left:86.400000pt;}
.x5_c00345{left:107.866667pt;}
.x1_c00345{left:371.200000pt;}
.x6_c00345{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_39eede629549199a5c2214fa.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00346;src:url('chunks/assets/font_9c32a4a61bd9aca582b1b67d.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00346{letter-spacing:0.000000px;}
.sc__c00346{text-shadow:none;}
.sc0_c00346{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00346{-webkit-text-stroke:0px transparent;}
.sc0_c00346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00346{word-spacing:-15.000000px;}
.ws0_c00346{word-spacing:-12.750000px;}
.ws2_c00346{word-spacing:0.000000px;}
._e_c00346{margin-left:-12.720000px;}
._d_c00346{margin-left:-11.640000px;}
._13_c00346{margin-left:-10.080000px;}
._17_c00346{margin-left:-6.411000px;}
._f_c00346{margin-left:-4.080000px;}
._b_c00346{margin-left:-2.100000px;}
._2_c00346{margin-left:-1.020000px;}
._0_c00346{width:1.260000px;}
._9_c00346{width:2.280000px;}
._5_c00346{width:3.360000px;}
._4_c00346{width:4.440000px;}
._3_c00346{width:5.880000px;}
._1_c00346{width:7.500000px;}
._6_c00346{width:9.300000px;}
._a_c00346{width:10.500000px;}
._8_c00346{width:11.700000px;}
._7_c00346{width:12.960000px;}
._14_c00346{width:13.980000px;}
._c_c00346{width:16.260000px;}
._10_c00346{width:18.180000px;}
._12_c00346{width:19.620000px;}
._11_c00346{width:21.420000px;}
._16_c00346{width:24.150000px;}
._15_c00346{width:25.349979px;}
.fc1_c00346{color:transparent;}
.fc0_c00346{color:rgb(35,31,32);}
.fs1_c00346{font-size:51.000000px;}
.fs0_c00346{font-size:60.000000px;}
.y0_c00346{bottom:0.000000px;}
.y29_c00346{bottom:64.425022px;}
.y28_c00346{bottom:110.175022px;}
.y27_c00346{bottom:125.625022px;}
.y26_c00346{bottom:140.775022px;}
.y25_c00346{bottom:155.925022px;}
.y24_c00346{bottom:171.375022px;}
.y23_c00346{bottom:186.525022px;}
.y22_c00346{bottom:201.975022px;}
.y20_c00346{bottom:243.000022px;}
.y1f_c00346{bottom:262.425022px;}
.y1e_c00346{bottom:281.925022px;}
.y1d_c00346{bottom:300.975022px;}
.y1c_c00346{bottom:320.025022px;}
.y1b_c00346{bottom:339.825022px;}
.y1a_c00346{bottom:358.950022px;}
.y19_c00346{bottom:378.375022px;}
.y18_c00346{bottom:397.800022px;}
.y17_c00346{bottom:417.600022px;}
.y16_c00346{bottom:437.025022px;}
.y15_c00346{bottom:456.525022px;}
.y14_c00346{bottom:475.950022px;}
.y13_c00346{bottom:495.375022px;}
.y12_c00346{bottom:514.425022px;}
.y11_c00346{bottom:534.300022px;}
.y10_c00346{bottom:553.725022px;}
.yf_c00346{bottom:573.150022px;}
.ye_c00346{bottom:592.575022px;}
.yd_c00346{bottom:611.625022px;}
.yc_c00346{bottom:631.425022px;}
.yb_c00346{bottom:650.925022px;}
.ya_c00346{bottom:669.975022px;}
.y9_c00346{bottom:689.400022px;}
.y8_c00346{bottom:709.200022px;}
.y7_c00346{bottom:728.625022px;}
.y6_c00346{bottom:747.750022px;}
.y5_c00346{bottom:767.175022px;}
.y4_c00346{bottom:786.600022px;}
.y3_c00346{bottom:805.725022px;}
.y2_c00346{bottom:825.150022px;}
.y1_c00346{bottom:844.575022px;}
.y21_c00346{bottom:886.875022px;}
.h3_c00346{height:50.028809px;}
.h4_c00346{height:50.053711px;}
.h2_c00346{height:58.886719px;}
.h1_c00346{height:957.750000px;}
.h0_c00346{height:957.975000px;}
.w1_c00346{width:643.500000px;}
.w0_c00346{width:643.650000px;}
.x0_c00346{left:0.000000px;}
.x3_c00346{left:90.375000px;}
.x1_c00346{left:91.425000px;}
.x5_c00346{left:97.575000px;}
.x2_c00346{left:106.950000px;}
.x4_c00346{left:130.650000px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls0_c00346{letter-spacing:0.000000pt;}
.ws1_c00346{word-spacing:-13.333333pt;}
.ws0_c00346{word-spacing:-11.333333pt;}
.ws2_c00346{word-spacing:0.000000pt;}
._e_c00346{margin-left:-11.306667pt;}
._d_c00346{margin-left:-10.346667pt;}
._13_c00346{margin-left:-8.960000pt;}
._17_c00346{margin-left:-5.698667pt;}
._f_c00346{margin-left:-3.626667pt;}
._b_c00346{margin-left:-1.866667pt;}
._2_c00346{margin-left:-0.906667pt;}
._0_c00346{width:1.120000pt;}
._9_c00346{width:2.026667pt;}
._5_c00346{width:2.986667pt;}
._4_c00346{width:3.946667pt;}
._3_c00346{width:5.226667pt;}
._1_c00346{width:6.666667pt;}
._6_c00346{width:8.266667pt;}
._a_c00346{width:9.333333pt;}
._8_c00346{width:10.400000pt;}
._7_c00346{width:11.520000pt;}
._14_c00346{width:12.426667pt;}
._c_c00346{width:14.453333pt;}
._10_c00346{width:16.160000pt;}
._12_c00346{width:17.440000pt;}
._11_c00346{width:19.040000pt;}
._16_c00346{width:21.466667pt;}
._15_c00346{width:22.533315pt;}
.fs1_c00346{font-size:45.333333pt;}
.fs0_c00346{font-size:53.333333pt;}
.y0_c00346{bottom:0.000000pt;}
.y29_c00346{bottom:57.266686pt;}
.y28_c00346{bottom:97.933353pt;}
.y27_c00346{bottom:111.666686pt;}
.y26_c00346{bottom:125.133353pt;}
.y25_c00346{bottom:138.600020pt;}
.y24_c00346{bottom:152.333353pt;}
.y23_c00346{bottom:165.800020pt;}
.y22_c00346{bottom:179.533353pt;}
.y20_c00346{bottom:216.000020pt;}
.y1f_c00346{bottom:233.266686pt;}
.y1e_c00346{bottom:250.600020pt;}
.y1d_c00346{bottom:267.533353pt;}
.y1c_c00346{bottom:284.466686pt;}
.y1b_c00346{bottom:302.066686pt;}
.y1a_c00346{bottom:319.066686pt;}
.y19_c00346{bottom:336.333353pt;}
.y18_c00346{bottom:353.600020pt;}
.y17_c00346{bottom:371.200020pt;}
.y16_c00346{bottom:388.466686pt;}
.y15_c00346{bottom:405.800020pt;}
.y14_c00346{bottom:423.066686pt;}
.y13_c00346{bottom:440.333353pt;}
.y12_c00346{bottom:457.266686pt;}
.y11_c00346{bottom:474.933353pt;}
.y10_c00346{bottom:492.200020pt;}
.yf_c00346{bottom:509.466686pt;}
.ye_c00346{bottom:526.733353pt;}
.yd_c00346{bottom:543.666686pt;}
.yc_c00346{bottom:561.266686pt;}
.yb_c00346{bottom:578.600020pt;}
.ya_c00346{bottom:595.533353pt;}
.y9_c00346{bottom:612.800020pt;}
.y8_c00346{bottom:630.400020pt;}
.y7_c00346{bottom:647.666686pt;}
.y6_c00346{bottom:664.666686pt;}
.y5_c00346{bottom:681.933353pt;}
.y4_c00346{bottom:699.200020pt;}
.y3_c00346{bottom:716.200020pt;}
.y2_c00346{bottom:733.466686pt;}
.y1_c00346{bottom:750.733353pt;}
.y21_c00346{bottom:788.333353pt;}
.h3_c00346{height:44.470052pt;}
.h4_c00346{height:44.492188pt;}
.h2_c00346{height:52.343750pt;}
.h1_c00346{height:851.333333pt;}
.h0_c00346{height:851.533333pt;}
.w1_c00346{width:572.000000pt;}
.w0_c00346{width:572.133333pt;}
.x0_c00346{left:0.000000pt;}
.x3_c00346{left:80.333333pt;}
.x1_c00346{left:81.266667pt;}
.x5_c00346{left:86.733333pt;}
.x2_c00346{left:95.066667pt;}
.x4_c00346{left:116.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d63c473202026f757e15038e.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00347;src:url('chunks/assets/font_816f84b6e02eff5642b498f8.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.sc__c00347{text-shadow:none;}
.sc0_c00347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00347{-webkit-text-stroke:0px transparent;}
.sc0_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00347{word-spacing:-15.000000px;}
.ws0_c00347{word-spacing:-12.750000px;}
.ws2_c00347{word-spacing:0.000000px;}
._13_c00347{margin-left:-12.527298px;}
._12_c00347{margin-left:-11.472702px;}
._17_c00347{margin-left:-6.804315px;}
._15_c00347{margin-left:-5.187840px;}
._3_c00347{margin-left:-3.504261px;}
._11_c00347{margin-left:-2.495739px;}
._0_c00347{margin-left:-1.383018px;}
._2_c00347{width:1.656021px;}
._1_c00347{width:2.700042px;}
._4_c00347{width:3.899916px;}
._9_c00347{width:5.883018px;}
._10_c00347{width:7.005096px;}
._8_c00347{width:8.375916px;}
._a_c00347{width:9.542997px;}
._6_c00347{width:10.883979px;}
._5_c00347{width:12.300000px;}
._7_c00347{width:13.535811px;}
._b_c00347{width:16.343979px;}
._c_c00347{width:17.760000px;}
._d_c00347{width:18.947769px;}
._f_c00347{width:20.040000px;}
._e_c00347{width:21.629763px;}
._14_c00347{width:22.841478px;}
._16_c00347{width:23.850000px;}
.fc1_c00347{color:transparent;}
.fc0_c00347{color:rgb(35,31,32);}
.fs0_c00347{font-size:51.000000px;}
.fs1_c00347{font-size:60.000000px;}
.y0_c00347{bottom:0.000000px;}
.y1f_c00347{bottom:64.425022px;}
.y1e_c00347{bottom:110.175022px;}
.y1d_c00347{bottom:125.325022px;}
.y1c_c00347{bottom:165.225022px;}
.y1b_c00347{bottom:184.725022px;}
.y1a_c00347{bottom:225.375022px;}
.y19_c00347{bottom:285.150022px;}
.y18_c00347{bottom:304.200022px;}
.y17_c00347{bottom:323.625022px;}
.y16_c00347{bottom:343.425022px;}
.y15_c00347{bottom:362.925022px;}
.y14_c00347{bottom:403.200022px;}
.y13_c00347{bottom:462.600022px;}
.y12_c00347{bottom:482.025022px;}
.y11_c00347{bottom:501.150022px;}
.y10_c00347{bottom:520.950022px;}
.yf_c00347{bottom:540.000022px;}
.ye_c00347{bottom:559.800022px;}
.yd_c00347{bottom:579.225022px;}
.yc_c00347{bottom:598.350022px;}
.yb_c00347{bottom:618.150022px;}
.ya_c00347{bottom:654.825022px;}
.y9_c00347{bottom:709.200022px;}
.y8_c00347{bottom:728.700022px;}
.y7_c00347{bottom:748.125022px;}
.y6_c00347{bottom:767.550022px;}
.y5_c00347{bottom:786.525022px;}
.y4_c00347{bottom:806.025022px;}
.y3_c00347{bottom:825.525022px;}
.y2_c00347{bottom:844.950022px;}
.y1_c00347{bottom:886.725022px;}
.h2_c00347{height:50.028809px;}
.h4_c00347{height:50.053711px;}
.h3_c00347{height:58.886719px;}
.h1_c00347{height:957.750000px;}
.h0_c00347{height:957.975000px;}
.w0_c00347{width:641.850030px;}
.w1_c00347{width:642.000000px;}
.x0_c00347{left:0.000000px;}
.x3_c00347{left:80.250000px;}
.x2_c00347{left:81.375000px;}
.x4_c00347{left:87.825000px;}
.x1_c00347{left:417.600000px;}
.x5_c00347{left:531.375000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls0_c00347{letter-spacing:0.000000pt;}
.ws1_c00347{word-spacing:-13.333333pt;}
.ws0_c00347{word-spacing:-11.333333pt;}
.ws2_c00347{word-spacing:0.000000pt;}
._13_c00347{margin-left:-11.135376pt;}
._12_c00347{margin-left:-10.197957pt;}
._17_c00347{margin-left:-6.048280pt;}
._15_c00347{margin-left:-4.611413pt;}
._3_c00347{margin-left:-3.114899pt;}
._11_c00347{margin-left:-2.218435pt;}
._0_c00347{margin-left:-1.229349pt;}
._2_c00347{width:1.472019pt;}
._1_c00347{width:2.400037pt;}
._4_c00347{width:3.466592pt;}
._9_c00347{width:5.229349pt;}
._10_c00347{width:6.226752pt;}
._8_c00347{width:7.445259pt;}
._a_c00347{width:8.482664pt;}
._6_c00347{width:9.674648pt;}
._5_c00347{width:10.933333pt;}
._7_c00347{width:12.031832pt;}
._b_c00347{width:14.527981pt;}
._c_c00347{width:15.786667pt;}
._d_c00347{width:16.842461pt;}
._f_c00347{width:17.813333pt;}
._e_c00347{width:19.226456pt;}
._14_c00347{width:20.303536pt;}
._16_c00347{width:21.200000pt;}
.fs0_c00347{font-size:45.333333pt;}
.fs1_c00347{font-size:53.333333pt;}
.y0_c00347{bottom:0.000000pt;}
.y1f_c00347{bottom:57.266686pt;}
.y1e_c00347{bottom:97.933353pt;}
.y1d_c00347{bottom:111.400020pt;}
.y1c_c00347{bottom:146.866686pt;}
.y1b_c00347{bottom:164.200020pt;}
.y1a_c00347{bottom:200.333353pt;}
.y19_c00347{bottom:253.466686pt;}
.y18_c00347{bottom:270.400020pt;}
.y17_c00347{bottom:287.666686pt;}
.y16_c00347{bottom:305.266686pt;}
.y15_c00347{bottom:322.600020pt;}
.y14_c00347{bottom:358.400020pt;}
.y13_c00347{bottom:411.200020pt;}
.y12_c00347{bottom:428.466686pt;}
.y11_c00347{bottom:445.466686pt;}
.y10_c00347{bottom:463.066686pt;}
.yf_c00347{bottom:480.000020pt;}
.ye_c00347{bottom:497.600020pt;}
.yd_c00347{bottom:514.866686pt;}
.yc_c00347{bottom:531.866686pt;}
.yb_c00347{bottom:549.466686pt;}
.ya_c00347{bottom:582.066686pt;}
.y9_c00347{bottom:630.400020pt;}
.y8_c00347{bottom:647.733353pt;}
.y7_c00347{bottom:665.000020pt;}
.y6_c00347{bottom:682.266686pt;}
.y5_c00347{bottom:699.133353pt;}
.y4_c00347{bottom:716.466686pt;}
.y3_c00347{bottom:733.800020pt;}
.y2_c00347{bottom:751.066686pt;}
.y1_c00347{bottom:788.200020pt;}
.h2_c00347{height:44.470052pt;}
.h4_c00347{height:44.492188pt;}
.h3_c00347{height:52.343750pt;}
.h1_c00347{height:851.333333pt;}
.h0_c00347{height:851.533333pt;}
.w0_c00347{width:570.533360pt;}
.w1_c00347{width:570.666667pt;}
.x0_c00347{left:0.000000pt;}
.x3_c00347{left:71.333333pt;}
.x2_c00347{left:72.333333pt;}
.x4_c00347{left:78.066667pt;}
.x1_c00347{left:371.200000pt;}
.x5_c00347{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a7e434c704abf166644cabf4.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00348;src:url('chunks/assets/font_aa9284355004974595e82245.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00348{letter-spacing:0.000000px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00348{word-spacing:-15.000000px;}
.ws0_c00348{word-spacing:-12.750000px;}
.ws2_c00348{word-spacing:0.000000px;}
._7_c00348{margin-left:-12.662973px;}
._6_c00348{margin-left:-11.337027px;}
._c_c00348{margin-left:-10.046721px;}
._d_c00348{margin-left:-7.304859px;}
._17_c00348{margin-left:-5.556042px;}
._16_c00348{margin-left:-4.430997px;}
._1_c00348{margin-left:-3.300006px;}
._0_c00348{margin-left:-1.760979px;}
._2_c00348{width:1.839009px;}
._3_c00348{width:3.320967px;}
._4_c00348{width:5.282973px;}
._9_c00348{width:6.297051px;}
._5_c00348{width:7.419057px;}
._b_c00348{width:8.789886px;}
._8_c00348{width:10.262973px;}
._e_c00348{width:11.324967px;}
._a_c00348{width:12.435045px;}
._f_c00348{width:13.790901px;}
._18_c00348{width:15.719874px;}
._13_c00348{width:17.223057px;}
._15_c00348{width:18.305991px;}
._12_c00348{width:19.571913px;}
._11_c00348{width:20.850024px;}
._14_c00348{width:22.301943px;}
._10_c00348{width:24.110964px;}
._1a_c00348{width:25.439922px;}
._1b_c00348{width:27.498129px;}
._19_c00348{width:30.632943px;}
.fc1_c00348{color:transparent;}
.fc0_c00348{color:rgb(35,31,32);}
.fs0_c00348{font-size:51.000000px;}
.fs1_c00348{font-size:60.000000px;}
.y0_c00348{bottom:0.000000px;}
.y28_c00348{bottom:64.425022px;}
.y27_c00348{bottom:110.175022px;}
.y26_c00348{bottom:125.325022px;}
.y25_c00348{bottom:141.150022px;}
.y24_c00348{bottom:156.225022px;}
.y23_c00348{bottom:171.375022px;}
.y22_c00348{bottom:186.525022px;}
.y21_c00348{bottom:201.975022px;}
.y20_c00348{bottom:217.425022px;}
.y1f_c00348{bottom:232.575022px;}
.y1e_c00348{bottom:248.025022px;}
.y1d_c00348{bottom:263.175022px;}
.y1c_c00348{bottom:278.625022px;}
.y1b_c00348{bottom:293.775022px;}
.y1a_c00348{bottom:309.225022px;}
.y19_c00348{bottom:324.750022px;}
.y18_c00348{bottom:339.525022px;}
.y17_c00348{bottom:355.350022px;}
.y16_c00348{bottom:395.325022px;}
.y15_c00348{bottom:414.375022px;}
.y14_c00348{bottom:434.100022px;}
.y13_c00348{bottom:453.225022px;}
.y12_c00348{bottom:472.350022px;}
.y11_c00348{bottom:492.150022px;}
.y10_c00348{bottom:532.800022px;}
.yf_c00348{bottom:592.575022px;}
.ye_c00348{bottom:611.925022px;}
.yd_c00348{bottom:631.425022px;}
.yc_c00348{bottom:650.925022px;}
.yb_c00348{bottom:669.975022px;}
.ya_c00348{bottom:689.775022px;}
.y9_c00348{bottom:709.200022px;}
.y8_c00348{bottom:728.625022px;}
.y7_c00348{bottom:747.750022px;}
.y6_c00348{bottom:767.175022px;}
.y5_c00348{bottom:786.225022px;}
.y4_c00348{bottom:806.025022px;}
.y3_c00348{bottom:825.525022px;}
.y2_c00348{bottom:844.575022px;}
.y1_c00348{bottom:886.875022px;}
.h2_c00348{height:50.028809px;}
.h4_c00348{height:50.053711px;}
.h3_c00348{height:58.886719px;}
.h1_c00348{height:957.750000px;}
.h0_c00348{height:957.975000px;}
.w1_c00348{width:643.500000px;}
.w0_c00348{width:643.650000px;}
.x0_c00348{left:0.000000px;}
.x1_c00348{left:90.750000px;}
.x2_c00348{left:97.575000px;}
.x3_c00348{left:131.025000px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls0_c00348{letter-spacing:0.000000pt;}
.ws1_c00348{word-spacing:-13.333333pt;}
.ws0_c00348{word-spacing:-11.333333pt;}
.ws2_c00348{word-spacing:0.000000pt;}
._7_c00348{margin-left:-11.255976pt;}
._6_c00348{margin-left:-10.077357pt;}
._c_c00348{margin-left:-8.930419pt;}
._d_c00348{margin-left:-6.493208pt;}
._17_c00348{margin-left:-4.938704pt;}
._16_c00348{margin-left:-3.938664pt;}
._1_c00348{margin-left:-2.933339pt;}
._0_c00348{margin-left:-1.565315pt;}
._2_c00348{width:1.634675pt;}
._3_c00348{width:2.951971pt;}
._4_c00348{width:4.695976pt;}
._9_c00348{width:5.597379pt;}
._5_c00348{width:6.594717pt;}
._b_c00348{width:7.813232pt;}
._8_c00348{width:9.122643pt;}
._e_c00348{width:10.066637pt;}
._a_c00348{width:11.053373pt;}
._f_c00348{width:12.258579pt;}
._18_c00348{width:13.973221pt;}
._13_c00348{width:15.309384pt;}
._15_c00348{width:16.271992pt;}
._12_c00348{width:17.397256pt;}
._11_c00348{width:18.533355pt;}
._14_c00348{width:19.823949pt;}
._10_c00348{width:21.431968pt;}
._1a_c00348{width:22.613264pt;}
._1b_c00348{width:24.442781pt;}
._19_c00348{width:27.229283pt;}
.fs0_c00348{font-size:45.333333pt;}
.fs1_c00348{font-size:53.333333pt;}
.y0_c00348{bottom:0.000000pt;}
.y28_c00348{bottom:57.266686pt;}
.y27_c00348{bottom:97.933353pt;}
.y26_c00348{bottom:111.400020pt;}
.y25_c00348{bottom:125.466686pt;}
.y24_c00348{bottom:138.866686pt;}
.y23_c00348{bottom:152.333353pt;}
.y22_c00348{bottom:165.800020pt;}
.y21_c00348{bottom:179.533353pt;}
.y20_c00348{bottom:193.266686pt;}
.y1f_c00348{bottom:206.733353pt;}
.y1e_c00348{bottom:220.466686pt;}
.y1d_c00348{bottom:233.933353pt;}
.y1c_c00348{bottom:247.666686pt;}
.y1b_c00348{bottom:261.133353pt;}
.y1a_c00348{bottom:274.866686pt;}
.y19_c00348{bottom:288.666686pt;}
.y18_c00348{bottom:301.800020pt;}
.y17_c00348{bottom:315.866686pt;}
.y16_c00348{bottom:351.400020pt;}
.y15_c00348{bottom:368.333353pt;}
.y14_c00348{bottom:385.866686pt;}
.y13_c00348{bottom:402.866686pt;}
.y12_c00348{bottom:419.866686pt;}
.y11_c00348{bottom:437.466686pt;}
.y10_c00348{bottom:473.600020pt;}
.yf_c00348{bottom:526.733353pt;}
.ye_c00348{bottom:543.933353pt;}
.yd_c00348{bottom:561.266686pt;}
.yc_c00348{bottom:578.600020pt;}
.yb_c00348{bottom:595.533353pt;}
.ya_c00348{bottom:613.133353pt;}
.y9_c00348{bottom:630.400020pt;}
.y8_c00348{bottom:647.666686pt;}
.y7_c00348{bottom:664.666686pt;}
.y6_c00348{bottom:681.933353pt;}
.y5_c00348{bottom:698.866686pt;}
.y4_c00348{bottom:716.466686pt;}
.y3_c00348{bottom:733.800020pt;}
.y2_c00348{bottom:750.733353pt;}
.y1_c00348{bottom:788.333353pt;}
.h2_c00348{height:44.470052pt;}
.h4_c00348{height:44.492188pt;}
.h3_c00348{height:52.343750pt;}
.h1_c00348{height:851.333333pt;}
.h0_c00348{height:851.533333pt;}
.w1_c00348{width:572.000000pt;}
.w0_c00348{width:572.133333pt;}
.x0_c00348{left:0.000000pt;}
.x1_c00348{left:80.666667pt;}
.x2_c00348{left:86.733333pt;}
.x3_c00348{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4c97abfc6fb95193e33bac3.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00349;src:url('chunks/assets/font_e087cfad386dfd15d2826898.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00349{letter-spacing:0.000000px;}
.sc__c00349{text-shadow:none;}
.sc0_c00349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00349{-webkit-text-stroke:0px transparent;}
.sc0_c00349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00349{word-spacing:-15.000000px;}
.ws0_c00349{word-spacing:-12.750000px;}
.ws2_c00349{word-spacing:0.000000px;}
._c_c00349{margin-left:-11.346339px;}
._d_c00349{margin-left:-10.007322px;}
._12_c00349{margin-left:-5.957952px;}
._16_c00349{margin-left:-4.543992px;}
._3_c00349{margin-left:-3.504261px;}
._10_c00349{margin-left:-2.466006px;}
._0_c00349{margin-left:-1.383018px;}
._2_c00349{width:1.656021px;}
._1_c00349{width:2.700042px;}
._6_c00349{width:4.019958px;}
._b_c00349{width:5.889054px;}
._8_c00349{width:7.583664px;}
._9_c00349{width:9.383811px;}
._a_c00349{width:10.740000px;}
._e_c00349{width:12.119790px;}
._7_c00349{width:13.679958px;}
._f_c00349{width:16.559895px;}
._4_c00349{width:18.167916px;}
._5_c00349{width:19.403979px;}
._11_c00349{width:21.000000px;}
._15_c00349{width:22.782012px;}
._13_c00349{width:23.820267px;}
._14_c00349{width:61.725234px;}
.fc1_c00349{color:transparent;}
.fc0_c00349{color:rgb(35,31,32);}
.fs0_c00349{font-size:51.000000px;}
.fs1_c00349{font-size:60.000000px;}
.y0_c00349{bottom:0.000000px;}
.y28_c00349{bottom:64.425022px;}
.y27_c00349{bottom:110.175022px;}
.y26_c00349{bottom:125.325022px;}
.y25_c00349{bottom:140.775022px;}
.y24_c00349{bottom:155.925022px;}
.y23_c00349{bottom:171.375022px;}
.y22_c00349{bottom:186.525022px;}
.y21_c00349{bottom:202.350022px;}
.y20_c00349{bottom:217.125022px;}
.y1f_c00349{bottom:232.575022px;}
.y1e_c00349{bottom:248.025022px;}
.y1d_c00349{bottom:320.400022px;}
.y1c_c00349{bottom:339.825022px;}
.y1b_c00349{bottom:358.950022px;}
.y1a_c00349{bottom:378.750022px;}
.y19_c00349{bottom:397.800022px;}
.y18_c00349{bottom:417.600022px;}
.y17_c00349{bottom:436.725022px;}
.y16_c00349{bottom:456.525022px;}
.y15_c00349{bottom:475.950022px;}
.y14_c00349{bottom:495.000022px;}
.y13_c00349{bottom:514.800022px;}
.y12_c00349{bottom:534.225022px;}
.y11_c00349{bottom:553.350022px;}
.y10_c00349{bottom:572.775022px;}
.yf_c00349{bottom:592.575022px;}
.ye_c00349{bottom:612.000022px;}
.yd_c00349{bottom:631.425022px;}
.yc_c00349{bottom:650.550022px;}
.yb_c00349{bottom:669.975022px;}
.ya_c00349{bottom:689.775022px;}
.y9_c00349{bottom:709.200022px;}
.y8_c00349{bottom:728.625022px;}
.y7_c00349{bottom:748.125022px;}
.y6_c00349{bottom:767.550022px;}
.y5_c00349{bottom:786.225022px;}
.y4_c00349{bottom:806.025022px;}
.y3_c00349{bottom:825.525022px;}
.y2_c00349{bottom:844.950022px;}
.y1_c00349{bottom:886.725022px;}
.h2_c00349{height:50.028809px;}
.h4_c00349{height:50.053711px;}
.h3_c00349{height:58.886719px;}
.h1_c00349{height:957.750000px;}
.h0_c00349{height:957.975000px;}
.w0_c00349{width:641.850030px;}
.w1_c00349{width:642.000000px;}
.x0_c00349{left:0.000000px;}
.x2_c00349{left:81.000000px;}
.x4_c00349{left:87.825000px;}
.x3_c00349{left:97.200000px;}
.x6_c00349{left:119.850000px;}
.x5_c00349{left:120.975000px;}
.x1_c00349{left:417.600000px;}
.x7_c00349{left:531.375000px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls0_c00349{letter-spacing:0.000000pt;}
.ws1_c00349{word-spacing:-13.333333pt;}
.ws0_c00349{word-spacing:-11.333333pt;}
.ws2_c00349{word-spacing:0.000000pt;}
._c_c00349{margin-left:-10.085635pt;}
._d_c00349{margin-left:-8.895397pt;}
._12_c00349{margin-left:-5.295957pt;}
._16_c00349{margin-left:-4.039104pt;}
._3_c00349{margin-left:-3.114899pt;}
._10_c00349{margin-left:-2.192005pt;}
._0_c00349{margin-left:-1.229349pt;}
._2_c00349{width:1.472019pt;}
._1_c00349{width:2.400037pt;}
._6_c00349{width:3.573296pt;}
._b_c00349{width:5.234715pt;}
._8_c00349{width:6.741035pt;}
._9_c00349{width:8.341165pt;}
._a_c00349{width:9.546667pt;}
._e_c00349{width:10.773147pt;}
._7_c00349{width:12.159963pt;}
._f_c00349{width:14.719907pt;}
._4_c00349{width:16.149259pt;}
._5_c00349{width:17.247981pt;}
._11_c00349{width:18.666667pt;}
._15_c00349{width:20.250677pt;}
._13_c00349{width:21.173571pt;}
._14_c00349{width:54.866875pt;}
.fs0_c00349{font-size:45.333333pt;}
.fs1_c00349{font-size:53.333333pt;}
.y0_c00349{bottom:0.000000pt;}
.y28_c00349{bottom:57.266686pt;}
.y27_c00349{bottom:97.933353pt;}
.y26_c00349{bottom:111.400020pt;}
.y25_c00349{bottom:125.133353pt;}
.y24_c00349{bottom:138.600020pt;}
.y23_c00349{bottom:152.333353pt;}
.y22_c00349{bottom:165.800020pt;}
.y21_c00349{bottom:179.866686pt;}
.y20_c00349{bottom:193.000020pt;}
.y1f_c00349{bottom:206.733353pt;}
.y1e_c00349{bottom:220.466686pt;}
.y1d_c00349{bottom:284.800020pt;}
.y1c_c00349{bottom:302.066686pt;}
.y1b_c00349{bottom:319.066686pt;}
.y1a_c00349{bottom:336.666686pt;}
.y19_c00349{bottom:353.600020pt;}
.y18_c00349{bottom:371.200020pt;}
.y17_c00349{bottom:388.200020pt;}
.y16_c00349{bottom:405.800020pt;}
.y15_c00349{bottom:423.066686pt;}
.y14_c00349{bottom:440.000020pt;}
.y13_c00349{bottom:457.600020pt;}
.y12_c00349{bottom:474.866686pt;}
.y11_c00349{bottom:491.866686pt;}
.y10_c00349{bottom:509.133353pt;}
.yf_c00349{bottom:526.733353pt;}
.ye_c00349{bottom:544.000020pt;}
.yd_c00349{bottom:561.266686pt;}
.yc_c00349{bottom:578.266686pt;}
.yb_c00349{bottom:595.533353pt;}
.ya_c00349{bottom:613.133353pt;}
.y9_c00349{bottom:630.400020pt;}
.y8_c00349{bottom:647.666686pt;}
.y7_c00349{bottom:665.000020pt;}
.y6_c00349{bottom:682.266686pt;}
.y5_c00349{bottom:698.866686pt;}
.y4_c00349{bottom:716.466686pt;}
.y3_c00349{bottom:733.800020pt;}
.y2_c00349{bottom:751.066686pt;}
.y1_c00349{bottom:788.200020pt;}
.h2_c00349{height:44.470052pt;}
.h4_c00349{height:44.492188pt;}
.h3_c00349{height:52.343750pt;}
.h1_c00349{height:851.333333pt;}
.h0_c00349{height:851.533333pt;}
.w0_c00349{width:570.533360pt;}
.w1_c00349{width:570.666667pt;}
.x0_c00349{left:0.000000pt;}
.x2_c00349{left:72.000000pt;}
.x4_c00349{left:78.066667pt;}
.x3_c00349{left:86.400000pt;}
.x6_c00349{left:106.533333pt;}
.x5_c00349{left:107.533333pt;}
.x1_c00349{left:371.200000pt;}
.x7_c00349{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_929db7796ccfb477261f9962.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00350;src:url('chunks/assets/font_7cc328a8567624f20edde055.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00350{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00350{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00350{word-spacing:-12.750000px;}
.ws2_c00350{word-spacing:0.000000px;}
._e_c00350{margin-left:-14.100000px;}
._6_c00350{margin-left:-12.480000px;}
._3_c00350{margin-left:-11.340000px;}
._18_c00350{margin-left:-5.915937px;}
._16_c00350{margin-left:-4.380000px;}
._5_c00350{margin-left:-3.060000px;}
._13_c00350{margin-left:-2.040000px;}
._c_c00350{margin-left:-1.020000px;}
._2_c00350{width:1.620000px;}
._0_c00350{width:3.000000px;}
._8_c00350{width:4.500000px;}
._7_c00350{width:5.940000px;}
._9_c00350{width:7.800000px;}
._12_c00350{width:8.820000px;}
._b_c00350{width:10.080000px;}
._a_c00350{width:11.700000px;}
._d_c00350{width:13.560000px;}
._11_c00350{width:16.980000px;}
._10_c00350{width:18.060000px;}
._14_c00350{width:19.200000px;}
._f_c00350{width:20.400000px;}
._17_c00350{width:22.950000px;}
._4_c00350{width:24.060000px;}
._15_c00350{width:25.080000px;}
._1_c00350{width:27.300000px;}
.fc1_c00350{color:transparent;}
.fc0_c00350{color:rgb(35,31,32);}
.fs1_c00350{font-size:51.000000px;}
.fs0_c00350{font-size:60.000000px;}
.y0_c00350{bottom:0.000000px;}
.y29_c00350{bottom:64.425022px;}
.y28_c00350{bottom:110.550022px;}
.y27_c00350{bottom:125.325022px;}
.y26_c00350{bottom:141.150022px;}
.y25_c00350{bottom:155.925022px;}
.y24_c00350{bottom:171.375022px;}
.y23_c00350{bottom:186.525022px;}
.y22_c00350{bottom:202.350022px;}
.y21_c00350{bottom:217.125022px;}
.y20_c00350{bottom:232.950022px;}
.y1f_c00350{bottom:248.025022px;}
.y1e_c00350{bottom:263.175022px;}
.y1d_c00350{bottom:278.325022px;}
.y1c_c00350{bottom:294.150022px;}
.y1b_c00350{bottom:308.925022px;}
.y1a_c00350{bottom:324.375022px;}
.y19_c00350{bottom:339.525022px;}
.y18_c00350{bottom:354.975022px;}
.y16_c00350{bottom:437.025022px;}
.y15_c00350{bottom:456.150022px;}
.y14_c00350{bottom:475.575022px;}
.y13_c00350{bottom:495.000022px;}
.y12_c00350{bottom:514.800022px;}
.y11_c00350{bottom:534.225022px;}
.y10_c00350{bottom:553.350022px;}
.yf_c00350{bottom:573.150022px;}
.ye_c00350{bottom:592.575022px;}
.yd_c00350{bottom:612.000022px;}
.yc_c00350{bottom:631.500022px;}
.yb_c00350{bottom:650.925022px;}
.ya_c00350{bottom:670.350022px;}
.y9_c00350{bottom:689.325022px;}
.y8_c00350{bottom:708.825022px;}
.y7_c00350{bottom:728.325022px;}
.y6_c00350{bottom:748.125022px;}
.y5_c00350{bottom:767.550022px;}
.y4_c00350{bottom:786.600022px;}
.y3_c00350{bottom:806.025022px;}
.y2_c00350{bottom:825.150022px;}
.y1_c00350{bottom:844.950022px;}
.y17_c00350{bottom:886.875022px;}
.h3_c00350{height:50.028809px;}
.h4_c00350{height:50.053711px;}
.h2_c00350{height:58.886719px;}
.h1_c00350{height:957.750000px;}
.h0_c00350{height:957.975000px;}
.w1_c00350{width:643.500000px;}
.w0_c00350{width:643.650000px;}
.x0_c00350{left:0.000000px;}
.x1_c00350{left:91.050000px;}
.x3_c00350{left:97.575000px;}
.x2_c00350{left:107.250000px;}
.x4_c00350{left:131.025000px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls0_c00350{letter-spacing:0.000000pt;}
.ws0_c00350{word-spacing:-13.333333pt;}
.ws1_c00350{word-spacing:-11.333333pt;}
.ws2_c00350{word-spacing:0.000000pt;}
._e_c00350{margin-left:-12.533333pt;}
._6_c00350{margin-left:-11.093333pt;}
._3_c00350{margin-left:-10.080000pt;}
._18_c00350{margin-left:-5.258611pt;}
._16_c00350{margin-left:-3.893333pt;}
._5_c00350{margin-left:-2.720000pt;}
._13_c00350{margin-left:-1.813333pt;}
._c_c00350{margin-left:-0.906667pt;}
._2_c00350{width:1.440000pt;}
._0_c00350{width:2.666667pt;}
._8_c00350{width:4.000000pt;}
._7_c00350{width:5.280000pt;}
._9_c00350{width:6.933333pt;}
._12_c00350{width:7.840000pt;}
._b_c00350{width:8.960000pt;}
._a_c00350{width:10.400000pt;}
._d_c00350{width:12.053333pt;}
._11_c00350{width:15.093333pt;}
._10_c00350{width:16.053333pt;}
._14_c00350{width:17.066667pt;}
._f_c00350{width:18.133333pt;}
._17_c00350{width:20.400000pt;}
._4_c00350{width:21.386667pt;}
._15_c00350{width:22.293333pt;}
._1_c00350{width:24.266667pt;}
.fs1_c00350{font-size:45.333333pt;}
.fs0_c00350{font-size:53.333333pt;}
.y0_c00350{bottom:0.000000pt;}
.y29_c00350{bottom:57.266686pt;}
.y28_c00350{bottom:98.266686pt;}
.y27_c00350{bottom:111.400020pt;}
.y26_c00350{bottom:125.466686pt;}
.y25_c00350{bottom:138.600020pt;}
.y24_c00350{bottom:152.333353pt;}
.y23_c00350{bottom:165.800020pt;}
.y22_c00350{bottom:179.866686pt;}
.y21_c00350{bottom:193.000020pt;}
.y20_c00350{bottom:207.066686pt;}
.y1f_c00350{bottom:220.466686pt;}
.y1e_c00350{bottom:233.933353pt;}
.y1d_c00350{bottom:247.400020pt;}
.y1c_c00350{bottom:261.466686pt;}
.y1b_c00350{bottom:274.600020pt;}
.y1a_c00350{bottom:288.333353pt;}
.y19_c00350{bottom:301.800020pt;}
.y18_c00350{bottom:315.533353pt;}
.y16_c00350{bottom:388.466686pt;}
.y15_c00350{bottom:405.466686pt;}
.y14_c00350{bottom:422.733353pt;}
.y13_c00350{bottom:440.000020pt;}
.y12_c00350{bottom:457.600020pt;}
.y11_c00350{bottom:474.866686pt;}
.y10_c00350{bottom:491.866686pt;}
.yf_c00350{bottom:509.466686pt;}
.ye_c00350{bottom:526.733353pt;}
.yd_c00350{bottom:544.000020pt;}
.yc_c00350{bottom:561.333353pt;}
.yb_c00350{bottom:578.600020pt;}
.ya_c00350{bottom:595.866686pt;}
.y9_c00350{bottom:612.733353pt;}
.y8_c00350{bottom:630.066686pt;}
.y7_c00350{bottom:647.400020pt;}
.y6_c00350{bottom:665.000020pt;}
.y5_c00350{bottom:682.266686pt;}
.y4_c00350{bottom:699.200020pt;}
.y3_c00350{bottom:716.466686pt;}
.y2_c00350{bottom:733.466686pt;}
.y1_c00350{bottom:751.066686pt;}
.y17_c00350{bottom:788.333353pt;}
.h3_c00350{height:44.470052pt;}
.h4_c00350{height:44.492188pt;}
.h2_c00350{height:52.343750pt;}
.h1_c00350{height:851.333333pt;}
.h0_c00350{height:851.533333pt;}
.w1_c00350{width:572.000000pt;}
.w0_c00350{width:572.133333pt;}
.x0_c00350{left:0.000000pt;}
.x1_c00350{left:80.933333pt;}
.x3_c00350{left:86.733333pt;}
.x2_c00350{left:95.333333pt;}
.x4_c00350{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_104facb3610f9677d897f885.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00351;src:url('chunks/assets/font_1bb1324e333dc9bae6e6072d.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00351{letter-spacing:0.000000px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00351{word-spacing:-15.000000px;}
.ws1_c00351{word-spacing:-12.750000px;}
.ws2_c00351{word-spacing:0.000000px;}
._a_c00351{margin-left:-12.578967px;}
._13_c00351{margin-left:-10.448640px;}
._15_c00351{margin-left:-5.254755px;}
._3_c00351{margin-left:-3.504261px;}
._12_c00351{margin-left:-2.484231px;}
._0_c00351{margin-left:-1.383018px;}
._2_c00351{width:1.656021px;}
._1_c00351{width:2.700042px;}
._7_c00351{width:4.517961px;}
._f_c00351{width:5.793126px;}
._9_c00351{width:6.962736px;}
._8_c00351{width:8.403018px;}
._6_c00351{width:9.731937px;}
._4_c00351{width:10.989054px;}
._5_c00351{width:12.689745px;}
._b_c00351{width:13.817772px;}
._e_c00351{width:16.103664px;}
._c_c00351{width:17.220000px;}
._10_c00351{width:18.263727px;}
._d_c00351{width:19.463874px;}
._11_c00351{width:21.491937px;}
._14_c00351{width:23.838492px;}
.fc1_c00351{color:transparent;}
.fc0_c00351{color:rgb(35,31,32);}
.fs0_c00351{font-size:51.000000px;}
.fs1_c00351{font-size:60.000000px;}
.y0_c00351{bottom:0.000000px;}
.y27_c00351{bottom:64.425022px;}
.y26_c00351{bottom:110.175022px;}
.y25_c00351{bottom:125.325022px;}
.y24_c00351{bottom:140.775022px;}
.y23_c00351{bottom:155.925022px;}
.y22_c00351{bottom:204.825022px;}
.y21_c00351{bottom:224.325022px;}
.y20_c00351{bottom:243.375022px;}
.y1f_c00351{bottom:262.425022px;}
.y1e_c00351{bottom:281.925022px;}
.y1d_c00351{bottom:301.725022px;}
.y1c_c00351{bottom:321.150022px;}
.y1b_c00351{bottom:340.575022px;}
.y1a_c00351{bottom:359.625022px;}
.y19_c00351{bottom:379.425022px;}
.y18_c00351{bottom:398.925022px;}
.y17_c00351{bottom:417.975022px;}
.y16_c00351{bottom:437.775022px;}
.y15_c00351{bottom:457.125022px;}
.y14_c00351{bottom:476.625022px;}
.y13_c00351{bottom:496.125022px;}
.y12_c00351{bottom:515.550022px;}
.y11_c00351{bottom:534.600022px;}
.y10_c00351{bottom:554.400022px;}
.yf_c00351{bottom:573.825022px;}
.ye_c00351{bottom:592.950022px;}
.yd_c00351{bottom:612.375022px;}
.yc_c00351{bottom:632.175022px;}
.yb_c00351{bottom:651.600022px;}
.ya_c00351{bottom:670.725022px;}
.y9_c00351{bottom:690.150022px;}
.y8_c00351{bottom:709.950022px;}
.y7_c00351{bottom:728.625022px;}
.y6_c00351{bottom:748.425022px;}
.y5_c00351{bottom:767.925022px;}
.y4_c00351{bottom:787.350022px;}
.y3_c00351{bottom:806.775022px;}
.y2_c00351{bottom:844.575022px;}
.y1_c00351{bottom:886.725022px;}
.h2_c00351{height:50.028809px;}
.h4_c00351{height:50.053711px;}
.h3_c00351{height:58.886719px;}
.h1_c00351{height:957.750000px;}
.h0_c00351{height:957.975000px;}
.w0_c00351{width:641.850030px;}
.w1_c00351{width:642.000000px;}
.x0_c00351{left:0.000000px;}
.x2_c00351{left:81.375000px;}
.x4_c00351{left:87.825000px;}
.x3_c00351{left:97.200000px;}
.x5_c00351{left:120.975000px;}
.x1_c00351{left:417.600000px;}
.x6_c00351{left:531.375000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls0_c00351{letter-spacing:0.000000pt;}
.ws0_c00351{word-spacing:-13.333333pt;}
.ws1_c00351{word-spacing:-11.333333pt;}
.ws2_c00351{word-spacing:0.000000pt;}
._a_c00351{margin-left:-11.181304pt;}
._13_c00351{margin-left:-9.287680pt;}
._15_c00351{margin-left:-4.670893pt;}
._3_c00351{margin-left:-3.114899pt;}
._12_c00351{margin-left:-2.208205pt;}
._0_c00351{margin-left:-1.229349pt;}
._2_c00351{width:1.472019pt;}
._1_c00351{width:2.400037pt;}
._7_c00351{width:4.015965pt;}
._f_c00351{width:5.149445pt;}
._9_c00351{width:6.189099pt;}
._8_c00351{width:7.469349pt;}
._6_c00351{width:8.650611pt;}
._4_c00351{width:9.768048pt;}
._5_c00351{width:11.279773pt;}
._b_c00351{width:12.282464pt;}
._e_c00351{width:14.314368pt;}
._c_c00351{width:15.306667pt;}
._10_c00351{width:16.234424pt;}
._d_c00351{width:17.301221pt;}
._11_c00351{width:19.103944pt;}
._14_c00351{width:21.189771pt;}
.fs0_c00351{font-size:45.333333pt;}
.fs1_c00351{font-size:53.333333pt;}
.y0_c00351{bottom:0.000000pt;}
.y27_c00351{bottom:57.266686pt;}
.y26_c00351{bottom:97.933353pt;}
.y25_c00351{bottom:111.400020pt;}
.y24_c00351{bottom:125.133353pt;}
.y23_c00351{bottom:138.600020pt;}
.y22_c00351{bottom:182.066686pt;}
.y21_c00351{bottom:199.400020pt;}
.y20_c00351{bottom:216.333353pt;}
.y1f_c00351{bottom:233.266686pt;}
.y1e_c00351{bottom:250.600020pt;}
.y1d_c00351{bottom:268.200020pt;}
.y1c_c00351{bottom:285.466686pt;}
.y1b_c00351{bottom:302.733353pt;}
.y1a_c00351{bottom:319.666686pt;}
.y19_c00351{bottom:337.266686pt;}
.y18_c00351{bottom:354.600020pt;}
.y17_c00351{bottom:371.533353pt;}
.y16_c00351{bottom:389.133353pt;}
.y15_c00351{bottom:406.333353pt;}
.y14_c00351{bottom:423.666686pt;}
.y13_c00351{bottom:441.000020pt;}
.y12_c00351{bottom:458.266686pt;}
.y11_c00351{bottom:475.200020pt;}
.y10_c00351{bottom:492.800020pt;}
.yf_c00351{bottom:510.066686pt;}
.ye_c00351{bottom:527.066686pt;}
.yd_c00351{bottom:544.333353pt;}
.yc_c00351{bottom:561.933353pt;}
.yb_c00351{bottom:579.200020pt;}
.ya_c00351{bottom:596.200020pt;}
.y9_c00351{bottom:613.466686pt;}
.y8_c00351{bottom:631.066686pt;}
.y7_c00351{bottom:647.666686pt;}
.y6_c00351{bottom:665.266686pt;}
.y5_c00351{bottom:682.600020pt;}
.y4_c00351{bottom:699.866686pt;}
.y3_c00351{bottom:717.133353pt;}
.y2_c00351{bottom:750.733353pt;}
.y1_c00351{bottom:788.200020pt;}
.h2_c00351{height:44.470052pt;}
.h4_c00351{height:44.492188pt;}
.h3_c00351{height:52.343750pt;}
.h1_c00351{height:851.333333pt;}
.h0_c00351{height:851.533333pt;}
.w0_c00351{width:570.533360pt;}
.w1_c00351{width:570.666667pt;}
.x0_c00351{left:0.000000pt;}
.x2_c00351{left:72.333333pt;}
.x4_c00351{left:78.066667pt;}
.x3_c00351{left:86.400000pt;}
.x5_c00351{left:107.533333pt;}
.x1_c00351{left:371.200000pt;}
.x6_c00351{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5ad2df05ca2db58961efeee4.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00352;src:url('chunks/assets/font_5f77871c2cb7d6bb4e8bc36d.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00352{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00352{vertical-align:0.000000px;}
.ls2_c00352{letter-spacing:0.000000px;}
.ls1_c00352{letter-spacing:0.899997px;}
.ls0_c00352{letter-spacing:19.050000px;}
.sc__c00352{text-shadow:none;}
.sc0_c00352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00352{-webkit-text-stroke:0px transparent;}
.sc0_c00352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00352{word-spacing:-15.000000px;}
.ws1_c00352{word-spacing:-13.649997px;}
.ws0_c00352{word-spacing:-12.750000px;}
.ws3_c00352{word-spacing:0.000000px;}
._10_c00352{margin-left:-21.618030px;}
._12_c00352{margin-left:-11.280000px;}
._11_c00352{margin-left:-8.520000px;}
._f_c00352{margin-left:-7.239015px;}
._13_c00352{margin-left:-5.258961px;}
._7_c00352{margin-left:-3.740985px;}
._9_c00352{margin-left:-2.739009px;}
._5_c00352{margin-left:-1.320000px;}
._0_c00352{width:1.260000px;}
._3_c00352{width:2.580000px;}
._8_c00352{width:3.759009px;}
._b_c00352{width:5.460000px;}
._a_c00352{width:6.900000px;}
._6_c00352{width:8.160000px;}
._4_c00352{width:9.720000px;}
._e_c00352{width:10.740000px;}
._2_c00352{width:12.000000px;}
._1_c00352{width:13.260000px;}
._15_c00352{width:14.574051px;}
._14_c00352{width:16.022988px;}
._d_c00352{width:25.620000px;}
._c_c00352{width:26.760000px;}
.fc2_c00352{color:transparent;}
.fc1_c00352{color:rgb(0,0,0);}
.fc0_c00352{color:rgb(35,31,32);}
.fs1_c00352{font-size:51.000000px;}
.fs0_c00352{font-size:60.000000px;}
.y0_c00352{bottom:0.000000px;}
.y26_c00352{bottom:64.800022px;}
.y25_c00352{bottom:110.175022px;}
.y24_c00352{bottom:125.325022px;}
.y23_c00352{bottom:140.775022px;}
.y22_c00352{bottom:156.225022px;}
.y21_c00352{bottom:171.375022px;}
.y20_c00352{bottom:210.975022px;}
.y1f_c00352{bottom:230.775022px;}
.y1e_c00352{bottom:250.200022px;}
.y1d_c00352{bottom:268.950022px;}
.y1c_c00352{bottom:288.375022px;}
.y1b_c00352{bottom:308.100022px;}
.y1a_c00352{bottom:327.225022px;}
.y19_c00352{bottom:346.350022px;}
.y18_c00352{bottom:366.150022px;}
.y17_c00352{bottom:385.200022px;}
.y16_c00352{bottom:404.625022px;}
.y15_c00352{bottom:423.750022px;}
.y14_c00352{bottom:443.175022px;}
.y13_c00352{bottom:462.225022px;}
.y12_c00352{bottom:481.725022px;}
.y11_c00352{bottom:500.775022px;}
.y10_c00352{bottom:520.200022px;}
.yf_c00352{bottom:540.075022px;}
.ye_c00352{bottom:559.125022px;}
.yd_c00352{bottom:578.175022px;}
.yc_c00352{bottom:597.600022px;}
.yb_c00352{bottom:617.025022px;}
.ya_c00352{bottom:636.525022px;}
.y9_c00352{bottom:655.575022px;}
.y8_c00352{bottom:675.300022px;}
.y7_c00352{bottom:694.425022px;}
.y6_c00352{bottom:713.550022px;}
.y5_c00352{bottom:732.975022px;}
.y4_c00352{bottom:769.725022px;}
.y2_c00352{bottom:825.525022px;}
.y1_c00352{bottom:845.325022px;}
.y3_c00352{bottom:886.875022px;}
.h3_c00352{height:50.028809px;}
.h4_c00352{height:50.053711px;}
.h2_c00352{height:58.886719px;}
.h1_c00352{height:957.750000px;}
.h0_c00352{height:957.975000px;}
.w1_c00352{width:643.500000px;}
.w0_c00352{width:643.650000px;}
.x0_c00352{left:0.000000px;}
.x1_c00352{left:91.425000px;}
.x3_c00352{left:97.575000px;}
.x2_c00352{left:107.250000px;}
.x4_c00352{left:130.650000px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls2_c00352{letter-spacing:0.000000pt;}
.ls1_c00352{letter-spacing:0.799997pt;}
.ls0_c00352{letter-spacing:16.933333pt;}
.ws2_c00352{word-spacing:-13.333333pt;}
.ws1_c00352{word-spacing:-12.133331pt;}
.ws0_c00352{word-spacing:-11.333333pt;}
.ws3_c00352{word-spacing:0.000000pt;}
._10_c00352{margin-left:-19.216027pt;}
._12_c00352{margin-left:-10.026667pt;}
._11_c00352{margin-left:-7.573333pt;}
._f_c00352{margin-left:-6.434680pt;}
._13_c00352{margin-left:-4.674632pt;}
._7_c00352{margin-left:-3.325320pt;}
._9_c00352{margin-left:-2.434675pt;}
._5_c00352{margin-left:-1.173333pt;}
._0_c00352{width:1.120000pt;}
._3_c00352{width:2.293333pt;}
._8_c00352{width:3.341341pt;}
._b_c00352{width:4.853333pt;}
._a_c00352{width:6.133333pt;}
._6_c00352{width:7.253333pt;}
._4_c00352{width:8.640000pt;}
._e_c00352{width:9.546667pt;}
._2_c00352{width:10.666667pt;}
._1_c00352{width:11.786667pt;}
._15_c00352{width:12.954712pt;}
._14_c00352{width:14.242656pt;}
._d_c00352{width:22.773333pt;}
._c_c00352{width:23.786667pt;}
.fs1_c00352{font-size:45.333333pt;}
.fs0_c00352{font-size:53.333333pt;}
.y0_c00352{bottom:0.000000pt;}
.y26_c00352{bottom:57.600020pt;}
.y25_c00352{bottom:97.933353pt;}
.y24_c00352{bottom:111.400020pt;}
.y23_c00352{bottom:125.133353pt;}
.y22_c00352{bottom:138.866686pt;}
.y21_c00352{bottom:152.333353pt;}
.y20_c00352{bottom:187.533353pt;}
.y1f_c00352{bottom:205.133353pt;}
.y1e_c00352{bottom:222.400020pt;}
.y1d_c00352{bottom:239.066686pt;}
.y1c_c00352{bottom:256.333353pt;}
.y1b_c00352{bottom:273.866686pt;}
.y1a_c00352{bottom:290.866686pt;}
.y19_c00352{bottom:307.866686pt;}
.y18_c00352{bottom:325.466686pt;}
.y17_c00352{bottom:342.400020pt;}
.y16_c00352{bottom:359.666686pt;}
.y15_c00352{bottom:376.666686pt;}
.y14_c00352{bottom:393.933353pt;}
.y13_c00352{bottom:410.866686pt;}
.y12_c00352{bottom:428.200020pt;}
.y11_c00352{bottom:445.133353pt;}
.y10_c00352{bottom:462.400020pt;}
.yf_c00352{bottom:480.066686pt;}
.ye_c00352{bottom:497.000020pt;}
.yd_c00352{bottom:513.933353pt;}
.yc_c00352{bottom:531.200020pt;}
.yb_c00352{bottom:548.466686pt;}
.ya_c00352{bottom:565.800020pt;}
.y9_c00352{bottom:582.733353pt;}
.y8_c00352{bottom:600.266686pt;}
.y7_c00352{bottom:617.266686pt;}
.y6_c00352{bottom:634.266686pt;}
.y5_c00352{bottom:651.533353pt;}
.y4_c00352{bottom:684.200020pt;}
.y2_c00352{bottom:733.800020pt;}
.y1_c00352{bottom:751.400020pt;}
.y3_c00352{bottom:788.333353pt;}
.h3_c00352{height:44.470052pt;}
.h4_c00352{height:44.492188pt;}
.h2_c00352{height:52.343750pt;}
.h1_c00352{height:851.333333pt;}
.h0_c00352{height:851.533333pt;}
.w1_c00352{width:572.000000pt;}
.w0_c00352{width:572.133333pt;}
.x0_c00352{left:0.000000pt;}
.x1_c00352{left:81.266667pt;}
.x3_c00352{left:86.733333pt;}
.x2_c00352{left:95.333333pt;}
.x4_c00352{left:116.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b62d7e2baa746c352dcb9e5b.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00353;src:url('chunks/assets/font_84fa09c9512a40d1c6c61d30.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00353{letter-spacing:0.000000px;}
.ls0_c00353{letter-spacing:17.250000px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00353{word-spacing:-15.000000px;}
.ws0_c00353{word-spacing:-12.750000px;}
.ws2_c00353{word-spacing:0.000000px;}
._12_c00353{margin-left:-12.000525px;}
._d_c00353{margin-left:-5.193153px;}
._3_c00353{margin-left:-3.504261px;}
._8_c00353{margin-left:-2.385087px;}
._0_c00353{margin-left:-1.383018px;}
._2_c00353{width:1.656021px;}
._1_c00353{width:2.700042px;}
._9_c00353{width:4.092042px;}
._6_c00353{width:6.005931px;}
._c_c00353{width:7.283685px;}
._5_c00353{width:8.303979px;}
._e_c00353{width:9.371937px;}
._4_c00353{width:10.499895px;}
._7_c00353{width:12.179895px;}
._a_c00353{width:13.295916px;}
._13_c00353{width:15.059943px;}
._b_c00353{width:16.088940px;}
._14_c00353{width:17.154084px;}
._11_c00353{width:18.263874px;}
._10_c00353{width:20.739018px;}
._f_c00353{width:21.947958px;}
.fc2_c00353{color:transparent;}
.fc1_c00353{color:rgb(0,0,0);}
.fc0_c00353{color:rgb(35,31,32);}
.fs0_c00353{font-size:51.000000px;}
.fs1_c00353{font-size:60.000000px;}
.y0_c00353{bottom:0.000000px;}
.y28_c00353{bottom:64.425022px;}
.y27_c00353{bottom:110.100022px;}
.y26_c00353{bottom:125.625022px;}
.y25_c00353{bottom:141.150022px;}
.y24_c00353{bottom:184.725022px;}
.y23_c00353{bottom:204.075022px;}
.y22_c00353{bottom:223.575022px;}
.y21_c00353{bottom:243.000022px;}
.y20_c00353{bottom:262.425022px;}
.y1f_c00353{bottom:281.925022px;}
.y1e_c00353{bottom:301.275022px;}
.y1d_c00353{bottom:320.400022px;}
.y1c_c00353{bottom:339.525022px;}
.y1b_c00353{bottom:358.950022px;}
.y1a_c00353{bottom:378.750022px;}
.y19_c00353{bottom:397.800022px;}
.y18_c00353{bottom:417.600022px;}
.y17_c00353{bottom:437.025022px;}
.y16_c00353{bottom:456.525022px;}
.y15_c00353{bottom:475.950022px;}
.y14_c00353{bottom:495.375022px;}
.y13_c00353{bottom:514.800022px;}
.y12_c00353{bottom:534.225022px;}
.y11_c00353{bottom:553.725022px;}
.y10_c00353{bottom:572.775022px;}
.yf_c00353{bottom:592.575022px;}
.ye_c00353{bottom:611.625022px;}
.yd_c00353{bottom:631.425022px;}
.yc_c00353{bottom:650.925022px;}
.yb_c00353{bottom:670.350022px;}
.ya_c00353{bottom:689.775022px;}
.y9_c00353{bottom:709.200022px;}
.y8_c00353{bottom:728.625022px;}
.y7_c00353{bottom:748.125022px;}
.y6_c00353{bottom:767.550022px;}
.y5_c00353{bottom:786.600022px;}
.y4_c00353{bottom:806.025022px;}
.y3_c00353{bottom:825.150022px;}
.y2_c00353{bottom:844.950022px;}
.y1_c00353{bottom:886.725022px;}
.h2_c00353{height:50.028809px;}
.h4_c00353{height:50.053711px;}
.h3_c00353{height:58.886719px;}
.h1_c00353{height:957.750000px;}
.h0_c00353{height:957.975000px;}
.w0_c00353{width:641.850030px;}
.w1_c00353{width:642.000000px;}
.x0_c00353{left:0.000000px;}
.x2_c00353{left:81.000000px;}
.x4_c00353{left:87.825000px;}
.x3_c00353{left:97.200000px;}
.x5_c00353{left:120.975000px;}
.x1_c00353{left:417.600000px;}
.x6_c00353{left:531.375000px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls1_c00353{letter-spacing:0.000000pt;}
.ls0_c00353{letter-spacing:15.333333pt;}
.ws1_c00353{word-spacing:-13.333333pt;}
.ws0_c00353{word-spacing:-11.333333pt;}
.ws2_c00353{word-spacing:0.000000pt;}
._12_c00353{margin-left:-10.667133pt;}
._d_c00353{margin-left:-4.616136pt;}
._3_c00353{margin-left:-3.114899pt;}
._8_c00353{margin-left:-2.120077pt;}
._0_c00353{margin-left:-1.229349pt;}
._2_c00353{width:1.472019pt;}
._1_c00353{width:2.400037pt;}
._9_c00353{width:3.637371pt;}
._6_c00353{width:5.338605pt;}
._c_c00353{width:6.474387pt;}
._5_c00353{width:7.381315pt;}
._e_c00353{width:8.330611pt;}
._4_c00353{width:9.333240pt;}
._7_c00353{width:10.826573pt;}
._a_c00353{width:11.818592pt;}
._13_c00353{width:13.386616pt;}
._b_c00353{width:14.301280pt;}
._14_c00353{width:15.248075pt;}
._11_c00353{width:16.234555pt;}
._10_c00353{width:18.434683pt;}
._f_c00353{width:19.509296pt;}
.fs0_c00353{font-size:45.333333pt;}
.fs1_c00353{font-size:53.333333pt;}
.y0_c00353{bottom:0.000000pt;}
.y28_c00353{bottom:57.266686pt;}
.y27_c00353{bottom:97.866686pt;}
.y26_c00353{bottom:111.666686pt;}
.y25_c00353{bottom:125.466686pt;}
.y24_c00353{bottom:164.200020pt;}
.y23_c00353{bottom:181.400020pt;}
.y22_c00353{bottom:198.733353pt;}
.y21_c00353{bottom:216.000020pt;}
.y20_c00353{bottom:233.266686pt;}
.y1f_c00353{bottom:250.600020pt;}
.y1e_c00353{bottom:267.800020pt;}
.y1d_c00353{bottom:284.800020pt;}
.y1c_c00353{bottom:301.800020pt;}
.y1b_c00353{bottom:319.066686pt;}
.y1a_c00353{bottom:336.666686pt;}
.y19_c00353{bottom:353.600020pt;}
.y18_c00353{bottom:371.200020pt;}
.y17_c00353{bottom:388.466686pt;}
.y16_c00353{bottom:405.800020pt;}
.y15_c00353{bottom:423.066686pt;}
.y14_c00353{bottom:440.333353pt;}
.y13_c00353{bottom:457.600020pt;}
.y12_c00353{bottom:474.866686pt;}
.y11_c00353{bottom:492.200020pt;}
.y10_c00353{bottom:509.133353pt;}
.yf_c00353{bottom:526.733353pt;}
.ye_c00353{bottom:543.666686pt;}
.yd_c00353{bottom:561.266686pt;}
.yc_c00353{bottom:578.600020pt;}
.yb_c00353{bottom:595.866686pt;}
.ya_c00353{bottom:613.133353pt;}
.y9_c00353{bottom:630.400020pt;}
.y8_c00353{bottom:647.666686pt;}
.y7_c00353{bottom:665.000020pt;}
.y6_c00353{bottom:682.266686pt;}
.y5_c00353{bottom:699.200020pt;}
.y4_c00353{bottom:716.466686pt;}
.y3_c00353{bottom:733.466686pt;}
.y2_c00353{bottom:751.066686pt;}
.y1_c00353{bottom:788.200020pt;}
.h2_c00353{height:44.470052pt;}
.h4_c00353{height:44.492188pt;}
.h3_c00353{height:52.343750pt;}
.h1_c00353{height:851.333333pt;}
.h0_c00353{height:851.533333pt;}
.w0_c00353{width:570.533360pt;}
.w1_c00353{width:570.666667pt;}
.x0_c00353{left:0.000000pt;}
.x2_c00353{left:72.000000pt;}
.x4_c00353{left:78.066667pt;}
.x3_c00353{left:86.400000pt;}
.x5_c00353{left:107.533333pt;}
.x1_c00353{left:371.200000pt;}
.x6_c00353{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0606e43cd59420298f040974.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00354;src:url('chunks/assets/font_4c6d184ab3d9b02771fb8273.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00354{letter-spacing:0.000000px;}
.ls0_c00354{letter-spacing:17.550000px;}
.sc__c00354{text-shadow:none;}
.sc0_c00354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00354{-webkit-text-stroke:0px transparent;}
.sc0_c00354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00354{word-spacing:-15.000000px;}
.ws1_c00354{word-spacing:-12.750000px;}
.ws2_c00354{word-spacing:0.000000px;}
._c_c00354{margin-left:-12.362973px;}
._b_c00354{margin-left:-11.037027px;}
._e_c00354{margin-left:-4.631970px;}
._1_c00354{margin-left:-3.300006px;}
._0_c00354{margin-left:-1.760979px;}
._2_c00354{width:1.839009px;}
._3_c00354{width:3.320967px;}
._5_c00354{width:4.943976px;}
._4_c00354{width:6.780000px;}
._6_c00354{width:8.360979px;}
._7_c00354{width:10.382997px;}
._8_c00354{width:11.729922px;}
._9_c00354{width:13.185123px;}
._a_c00354{width:16.457850px;}
._d_c00354{width:17.892456px;}
._10_c00354{width:19.937991px;}
._f_c00354{width:22.049304px;}
.fc2_c00354{color:transparent;}
.fc1_c00354{color:rgb(0,0,0);}
.fc0_c00354{color:rgb(35,31,32);}
.fs0_c00354{font-size:51.000000px;}
.fs1_c00354{font-size:60.000000px;}
.y0_c00354{bottom:0.000000px;}
.y26_c00354{bottom:64.800022px;}
.y25_c00354{bottom:110.175022px;}
.y24_c00354{bottom:125.325022px;}
.y23_c00354{bottom:141.150022px;}
.y22_c00354{bottom:180.375022px;}
.y21_c00354{bottom:200.175022px;}
.y20_c00354{bottom:219.225022px;}
.y1f_c00354{bottom:238.350022px;}
.y1e_c00354{bottom:257.475022px;}
.y1d_c00354{bottom:276.525022px;}
.y1c_c00354{bottom:295.575022px;}
.y1b_c00354{bottom:314.625022px;}
.y1a_c00354{bottom:334.125022px;}
.y19_c00354{bottom:353.175022px;}
.y18_c00354{bottom:372.225022px;}
.y17_c00354{bottom:391.725022px;}
.y16_c00354{bottom:410.400022px;}
.y15_c00354{bottom:429.825022px;}
.y14_c00354{bottom:449.325022px;}
.y13_c00354{bottom:468.375022px;}
.y12_c00354{bottom:487.425022px;}
.y11_c00354{bottom:506.550022px;}
.y10_c00354{bottom:525.600022px;}
.yf_c00354{bottom:545.025022px;}
.ye_c00354{bottom:564.150022px;}
.yd_c00354{bottom:583.200022px;}
.yc_c00354{bottom:602.325022px;}
.yb_c00354{bottom:621.750022px;}
.ya_c00354{bottom:640.425022px;}
.y9_c00354{bottom:659.550022px;}
.y8_c00354{bottom:679.350022px;}
.y7_c00354{bottom:714.600022px;}
.y6_c00354{bottom:768.600022px;}
.y5_c00354{bottom:787.725022px;}
.y4_c00354{bottom:806.775022px;}
.y3_c00354{bottom:825.825022px;}
.y2_c00354{bottom:844.950022px;}
.y1_c00354{bottom:886.875022px;}
.h2_c00354{height:50.028809px;}
.h4_c00354{height:50.053711px;}
.h3_c00354{height:58.886719px;}
.h1_c00354{height:957.750000px;}
.h0_c00354{height:957.975000px;}
.w1_c00354{width:643.500000px;}
.w0_c00354{width:643.650000px;}
.x0_c00354{left:0.000000px;}
.x1_c00354{left:90.750000px;}
.x2_c00354{left:92.550000px;}
.x4_c00354{left:97.575000px;}
.x3_c00354{left:107.250000px;}
.x5_c00354{left:131.025000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls1_c00354{letter-spacing:0.000000pt;}
.ls0_c00354{letter-spacing:15.600000pt;}
.ws0_c00354{word-spacing:-13.333333pt;}
.ws1_c00354{word-spacing:-11.333333pt;}
.ws2_c00354{word-spacing:0.000000pt;}
._c_c00354{margin-left:-10.989309pt;}
._b_c00354{margin-left:-9.810691pt;}
._e_c00354{margin-left:-4.117307pt;}
._1_c00354{margin-left:-2.933339pt;}
._0_c00354{margin-left:-1.565315pt;}
._2_c00354{width:1.634675pt;}
._3_c00354{width:2.951971pt;}
._5_c00354{width:4.394645pt;}
._4_c00354{width:6.026667pt;}
._6_c00354{width:7.431981pt;}
._7_c00354{width:9.229331pt;}
._8_c00354{width:10.426597pt;}
._9_c00354{width:11.720109pt;}
._a_c00354{width:14.629200pt;}
._d_c00354{width:15.904405pt;}
._10_c00354{width:17.722659pt;}
._f_c00354{width:19.599381pt;}
.fs0_c00354{font-size:45.333333pt;}
.fs1_c00354{font-size:53.333333pt;}
.y0_c00354{bottom:0.000000pt;}
.y26_c00354{bottom:57.600020pt;}
.y25_c00354{bottom:97.933353pt;}
.y24_c00354{bottom:111.400020pt;}
.y23_c00354{bottom:125.466686pt;}
.y22_c00354{bottom:160.333353pt;}
.y21_c00354{bottom:177.933353pt;}
.y20_c00354{bottom:194.866686pt;}
.y1f_c00354{bottom:211.866686pt;}
.y1e_c00354{bottom:228.866686pt;}
.y1d_c00354{bottom:245.800020pt;}
.y1c_c00354{bottom:262.733353pt;}
.y1b_c00354{bottom:279.666686pt;}
.y1a_c00354{bottom:297.000020pt;}
.y19_c00354{bottom:313.933353pt;}
.y18_c00354{bottom:330.866686pt;}
.y17_c00354{bottom:348.200020pt;}
.y16_c00354{bottom:364.800020pt;}
.y15_c00354{bottom:382.066686pt;}
.y14_c00354{bottom:399.400020pt;}
.y13_c00354{bottom:416.333353pt;}
.y12_c00354{bottom:433.266686pt;}
.y11_c00354{bottom:450.266686pt;}
.y10_c00354{bottom:467.200020pt;}
.yf_c00354{bottom:484.466686pt;}
.ye_c00354{bottom:501.466686pt;}
.yd_c00354{bottom:518.400020pt;}
.yc_c00354{bottom:535.400020pt;}
.yb_c00354{bottom:552.666686pt;}
.ya_c00354{bottom:569.266686pt;}
.y9_c00354{bottom:586.266686pt;}
.y8_c00354{bottom:603.866686pt;}
.y7_c00354{bottom:635.200020pt;}
.y6_c00354{bottom:683.200020pt;}
.y5_c00354{bottom:700.200020pt;}
.y4_c00354{bottom:717.133353pt;}
.y3_c00354{bottom:734.066686pt;}
.y2_c00354{bottom:751.066686pt;}
.y1_c00354{bottom:788.333353pt;}
.h2_c00354{height:44.470052pt;}
.h4_c00354{height:44.492188pt;}
.h3_c00354{height:52.343750pt;}
.h1_c00354{height:851.333333pt;}
.h0_c00354{height:851.533333pt;}
.w1_c00354{width:572.000000pt;}
.w0_c00354{width:572.133333pt;}
.x0_c00354{left:0.000000pt;}
.x1_c00354{left:80.666667pt;}
.x2_c00354{left:82.266667pt;}
.x4_c00354{left:86.733333pt;}
.x3_c00354{left:95.333333pt;}
.x5_c00354{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e124bce0108190257eb41332.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00355;src:url('chunks/assets/font_d5f5daace0c4f8abfcb4f739.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00355{letter-spacing:0.000000px;}
.sc__c00355{text-shadow:none;}
.sc0_c00355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00355{-webkit-text-stroke:0px transparent;}
.sc0_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00355{word-spacing:-15.000000px;}
.ws0_c00355{word-spacing:-12.750000px;}
.ws2_c00355{word-spacing:0.000000px;}
._12_c00355{margin-left:-13.488063px;}
._10_c00355{margin-left:-12.059790px;}
._11_c00355{margin-left:-9.840210px;}
._15_c00355{margin-left:-4.836168px;}
._3_c00355{margin-left:-3.504261px;}
._f_c00355{margin-left:-2.495739px;}
._0_c00355{margin-left:-1.383018px;}
._2_c00355{width:1.656021px;}
._1_c00355{width:2.700042px;}
._c_c00355{width:4.104273px;}
._e_c00355{width:5.106174px;}
._8_c00355{width:6.206514px;}
._6_c00355{width:7.344462px;}
._9_c00355{width:8.867475px;}
._5_c00355{width:9.983979px;}
._7_c00355{width:11.387916px;}
._4_c00355{width:12.563685px;}
._d_c00355{width:13.668861px;}
._14_c00355{width:14.712021px;}
._17_c00355{width:15.974811px;}
._a_c00355{width:17.100000px;}
._b_c00355{width:19.206003px;}
._13_c00355{width:23.850000px;}
._16_c00355{width:28.928736px;}
.fc1_c00355{color:transparent;}
.fc0_c00355{color:rgb(35,31,32);}
.fs0_c00355{font-size:51.000000px;}
.fs1_c00355{font-size:60.000000px;}
.y0_c00355{bottom:0.000000px;}
.y27_c00355{bottom:64.425022px;}
.y26_c00355{bottom:110.100022px;}
.y25_c00355{bottom:125.625022px;}
.y24_c00355{bottom:141.150022px;}
.y23_c00355{bottom:156.225022px;}
.y22_c00355{bottom:171.375022px;}
.y21_c00355{bottom:186.525022px;}
.y20_c00355{bottom:202.350022px;}
.y1f_c00355{bottom:217.425022px;}
.y1e_c00355{bottom:232.950022px;}
.y1d_c00355{bottom:272.550022px;}
.y1c_c00355{bottom:291.975022px;}
.y1b_c00355{bottom:311.775022px;}
.y1a_c00355{bottom:331.275022px;}
.y19_c00355{bottom:350.325022px;}
.y18_c00355{bottom:369.375022px;}
.y17_c00355{bottom:388.800022px;}
.y16_c00355{bottom:408.225022px;}
.y15_c00355{bottom:443.925022px;}
.y14_c00355{bottom:495.000022px;}
.y13_c00355{bottom:514.425022px;}
.y12_c00355{bottom:533.925022px;}
.y11_c00355{bottom:553.725022px;}
.y10_c00355{bottom:572.775022px;}
.yf_c00355{bottom:592.200022px;}
.ye_c00355{bottom:611.625022px;}
.yd_c00355{bottom:631.425022px;}
.yc_c00355{bottom:650.925022px;}
.yb_c00355{bottom:670.425022px;}
.ya_c00355{bottom:689.850022px;}
.y9_c00355{bottom:709.275022px;}
.y8_c00355{bottom:728.700022px;}
.y7_c00355{bottom:748.125022px;}
.y6_c00355{bottom:767.550022px;}
.y5_c00355{bottom:786.225022px;}
.y4_c00355{bottom:806.100022px;}
.y3_c00355{bottom:825.525022px;}
.y2_c00355{bottom:844.950022px;}
.y1_c00355{bottom:886.725022px;}
.h2_c00355{height:50.028809px;}
.h4_c00355{height:50.053711px;}
.h3_c00355{height:58.886719px;}
.h1_c00355{height:957.750000px;}
.h0_c00355{height:957.975000px;}
.w0_c00355{width:641.850030px;}
.w1_c00355{width:642.000000px;}
.x0_c00355{left:0.000000px;}
.x2_c00355{left:81.000000px;}
.x3_c00355{left:87.825000px;}
.x4_c00355{left:120.975000px;}
.x1_c00355{left:417.600000px;}
.x5_c00355{left:531.375000px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls0_c00355{letter-spacing:0.000000pt;}
.ws1_c00355{word-spacing:-13.333333pt;}
.ws0_c00355{word-spacing:-11.333333pt;}
.ws2_c00355{word-spacing:0.000000pt;}
._12_c00355{margin-left:-11.989389pt;}
._10_c00355{margin-left:-10.719813pt;}
._11_c00355{margin-left:-8.746853pt;}
._15_c00355{margin-left:-4.298816pt;}
._3_c00355{margin-left:-3.114899pt;}
._f_c00355{margin-left:-2.218435pt;}
._0_c00355{margin-left:-1.229349pt;}
._2_c00355{width:1.472019pt;}
._1_c00355{width:2.400037pt;}
._c_c00355{width:3.648243pt;}
._e_c00355{width:4.538821pt;}
._8_c00355{width:5.516901pt;}
._6_c00355{width:6.528411pt;}
._9_c00355{width:7.882200pt;}
._5_c00355{width:8.874648pt;}
._7_c00355{width:10.122592pt;}
._4_c00355{width:11.167720pt;}
._d_c00355{width:12.150099pt;}
._14_c00355{width:13.077352pt;}
._17_c00355{width:14.199832pt;}
._a_c00355{width:15.200000pt;}
._b_c00355{width:17.072003pt;}
._13_c00355{width:21.200000pt;}
._16_c00355{width:25.714432pt;}
.fs0_c00355{font-size:45.333333pt;}
.fs1_c00355{font-size:53.333333pt;}
.y0_c00355{bottom:0.000000pt;}
.y27_c00355{bottom:57.266686pt;}
.y26_c00355{bottom:97.866686pt;}
.y25_c00355{bottom:111.666686pt;}
.y24_c00355{bottom:125.466686pt;}
.y23_c00355{bottom:138.866686pt;}
.y22_c00355{bottom:152.333353pt;}
.y21_c00355{bottom:165.800020pt;}
.y20_c00355{bottom:179.866686pt;}
.y1f_c00355{bottom:193.266686pt;}
.y1e_c00355{bottom:207.066686pt;}
.y1d_c00355{bottom:242.266686pt;}
.y1c_c00355{bottom:259.533353pt;}
.y1b_c00355{bottom:277.133353pt;}
.y1a_c00355{bottom:294.466686pt;}
.y19_c00355{bottom:311.400020pt;}
.y18_c00355{bottom:328.333353pt;}
.y17_c00355{bottom:345.600020pt;}
.y16_c00355{bottom:362.866686pt;}
.y15_c00355{bottom:394.600020pt;}
.y14_c00355{bottom:440.000020pt;}
.y13_c00355{bottom:457.266686pt;}
.y12_c00355{bottom:474.600020pt;}
.y11_c00355{bottom:492.200020pt;}
.y10_c00355{bottom:509.133353pt;}
.yf_c00355{bottom:526.400020pt;}
.ye_c00355{bottom:543.666686pt;}
.yd_c00355{bottom:561.266686pt;}
.yc_c00355{bottom:578.600020pt;}
.yb_c00355{bottom:595.933353pt;}
.ya_c00355{bottom:613.200020pt;}
.y9_c00355{bottom:630.466686pt;}
.y8_c00355{bottom:647.733353pt;}
.y7_c00355{bottom:665.000020pt;}
.y6_c00355{bottom:682.266686pt;}
.y5_c00355{bottom:698.866686pt;}
.y4_c00355{bottom:716.533353pt;}
.y3_c00355{bottom:733.800020pt;}
.y2_c00355{bottom:751.066686pt;}
.y1_c00355{bottom:788.200020pt;}
.h2_c00355{height:44.470052pt;}
.h4_c00355{height:44.492188pt;}
.h3_c00355{height:52.343750pt;}
.h1_c00355{height:851.333333pt;}
.h0_c00355{height:851.533333pt;}
.w0_c00355{width:570.533360pt;}
.w1_c00355{width:570.666667pt;}
.x0_c00355{left:0.000000pt;}
.x2_c00355{left:72.000000pt;}
.x3_c00355{left:78.066667pt;}
.x4_c00355{left:107.533333pt;}
.x1_c00355{left:371.200000pt;}
.x5_c00355{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f0ca3e21ec358eaada0ddeef.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00356;src:url('chunks/assets/font_ad4581beca0eeb5bd7ccabfe.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00356{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00356{vertical-align:0.000000px;}
.ls0_c00356{letter-spacing:0.000000px;}
.sc__c00356{text-shadow:none;}
.sc0_c00356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00356{-webkit-text-stroke:0px transparent;}
.sc0_c00356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00356{word-spacing:-15.000000px;}
.ws1_c00356{word-spacing:-12.750000px;}
.ws2_c00356{word-spacing:0.000000px;}
._6_c00356{margin-left:-11.853147px;}
._8_c00356{margin-left:-10.527117px;}
._13_c00356{margin-left:-7.869774px;}
._12_c00356{margin-left:-6.530178px;}
._11_c00356{margin-left:-4.655994px;}
._1_c00356{margin-left:-3.300006px;}
._0_c00356{margin-left:-1.760979px;}
._2_c00356{width:1.839009px;}
._3_c00356{width:3.320967px;}
._f_c00356{width:4.505562px;}
._9_c00356{width:5.559441px;}
._7_c00356{width:6.780000px;}
._a_c00356{width:8.486037px;}
._4_c00356{width:9.500979px;}
._b_c00356{width:10.744833px;}
._e_c00356{width:12.659988px;}
._5_c00356{width:13.928919px;}
._15_c00356{width:15.064380px;}
._10_c00356{width:16.285053px;}
._c_c00356{width:17.702973px;}
._d_c00356{width:19.055988px;}
._17_c00356{width:22.910985px;}
._16_c00356{width:24.110964px;}
._14_c00356{width:25.610976px;}
.fc1_c00356{color:transparent;}
.fc0_c00356{color:rgb(35,31,32);}
.fs0_c00356{font-size:51.000000px;}
.fs1_c00356{font-size:60.000000px;}
.y0_c00356{bottom:0.000000px;}
.y2d_c00356{bottom:64.425022px;}
.y2c_c00356{bottom:110.550022px;}
.y2b_c00356{bottom:125.625022px;}
.y2a_c00356{bottom:140.775022px;}
.y29_c00356{bottom:155.925022px;}
.y28_c00356{bottom:171.375022px;}
.y27_c00356{bottom:186.525022px;}
.y26_c00356{bottom:202.350022px;}
.y25_c00356{bottom:217.125022px;}
.y24_c00356{bottom:232.575022px;}
.y23_c00356{bottom:248.025022px;}
.y22_c00356{bottom:263.175022px;}
.y21_c00356{bottom:278.625022px;}
.y20_c00356{bottom:293.775022px;}
.y1f_c00356{bottom:308.925022px;}
.y1e_c00356{bottom:324.750022px;}
.y1d_c00356{bottom:339.525022px;}
.y1c_c00356{bottom:355.350022px;}
.y1b_c00356{bottom:370.125022px;}
.y1a_c00356{bottom:385.950022px;}
.y19_c00356{bottom:400.725022px;}
.y18_c00356{bottom:416.100022px;}
.y17_c00356{bottom:431.625022px;}
.y16_c00356{bottom:447.150022px;}
.y15_c00356{bottom:461.925022px;}
.y14_c00356{bottom:477.750022px;}
.y13_c00356{bottom:492.525022px;}
.y12_c00356{bottom:507.975022px;}
.y11_c00356{bottom:523.125022px;}
.y10_c00356{bottom:573.150022px;}
.yf_c00356{bottom:592.575022px;}
.ye_c00356{bottom:612.000022px;}
.yd_c00356{bottom:631.125022px;}
.yc_c00356{bottom:650.550022px;}
.yb_c00356{bottom:670.350022px;}
.ya_c00356{bottom:689.400022px;}
.y9_c00356{bottom:709.275022px;}
.y8_c00356{bottom:728.700022px;}
.y7_c00356{bottom:748.125022px;}
.y6_c00356{bottom:767.550022px;}
.y5_c00356{bottom:786.600022px;}
.y4_c00356{bottom:805.725022px;}
.y3_c00356{bottom:825.525022px;}
.y2_c00356{bottom:844.950022px;}
.y1_c00356{bottom:886.875022px;}
.h2_c00356{height:50.028809px;}
.h4_c00356{height:50.053711px;}
.h5_c00356{height:50.353711px;}
.h3_c00356{height:58.886719px;}
.h1_c00356{height:957.750000px;}
.h0_c00356{height:957.975000px;}
.w1_c00356{width:643.500000px;}
.w0_c00356{width:643.650000px;}
.x0_c00356{left:0.000000px;}
.x1_c00356{left:90.750000px;}
.x3_c00356{left:97.575000px;}
.x2_c00356{left:131.025000px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls0_c00356{letter-spacing:0.000000pt;}
.ws0_c00356{word-spacing:-13.333333pt;}
.ws1_c00356{word-spacing:-11.333333pt;}
.ws2_c00356{word-spacing:0.000000pt;}
._6_c00356{margin-left:-10.536131pt;}
._8_c00356{margin-left:-9.357437pt;}
._13_c00356{margin-left:-6.995355pt;}
._12_c00356{margin-left:-5.804603pt;}
._11_c00356{margin-left:-4.138661pt;}
._1_c00356{margin-left:-2.933339pt;}
._0_c00356{margin-left:-1.565315pt;}
._2_c00356{width:1.634675pt;}
._3_c00356{width:2.951971pt;}
._f_c00356{width:4.004944pt;}
._9_c00356{width:4.941725pt;}
._7_c00356{width:6.026667pt;}
._a_c00356{width:7.543144pt;}
._4_c00356{width:8.445315pt;}
._b_c00356{width:9.550963pt;}
._e_c00356{width:11.253323pt;}
._5_c00356{width:12.381261pt;}
._15_c00356{width:13.390560pt;}
._10_c00356{width:14.475603pt;}
._c_c00356{width:15.735976pt;}
._d_c00356{width:16.938656pt;}
._17_c00356{width:20.365320pt;}
._16_c00356{width:21.431968pt;}
._14_c00356{width:22.765312pt;}
.fs0_c00356{font-size:45.333333pt;}
.fs1_c00356{font-size:53.333333pt;}
.y0_c00356{bottom:0.000000pt;}
.y2d_c00356{bottom:57.266686pt;}
.y2c_c00356{bottom:98.266686pt;}
.y2b_c00356{bottom:111.666686pt;}
.y2a_c00356{bottom:125.133353pt;}
.y29_c00356{bottom:138.600020pt;}
.y28_c00356{bottom:152.333353pt;}
.y27_c00356{bottom:165.800020pt;}
.y26_c00356{bottom:179.866686pt;}
.y25_c00356{bottom:193.000020pt;}
.y24_c00356{bottom:206.733353pt;}
.y23_c00356{bottom:220.466686pt;}
.y22_c00356{bottom:233.933353pt;}
.y21_c00356{bottom:247.666686pt;}
.y20_c00356{bottom:261.133353pt;}
.y1f_c00356{bottom:274.600020pt;}
.y1e_c00356{bottom:288.666686pt;}
.y1d_c00356{bottom:301.800020pt;}
.y1c_c00356{bottom:315.866686pt;}
.y1b_c00356{bottom:329.000020pt;}
.y1a_c00356{bottom:343.066686pt;}
.y19_c00356{bottom:356.200020pt;}
.y18_c00356{bottom:369.866686pt;}
.y17_c00356{bottom:383.666686pt;}
.y16_c00356{bottom:397.466686pt;}
.y15_c00356{bottom:410.600020pt;}
.y14_c00356{bottom:424.666686pt;}
.y13_c00356{bottom:437.800020pt;}
.y12_c00356{bottom:451.533353pt;}
.y11_c00356{bottom:465.000020pt;}
.y10_c00356{bottom:509.466686pt;}
.yf_c00356{bottom:526.733353pt;}
.ye_c00356{bottom:544.000020pt;}
.yd_c00356{bottom:561.000020pt;}
.yc_c00356{bottom:578.266686pt;}
.yb_c00356{bottom:595.866686pt;}
.ya_c00356{bottom:612.800020pt;}
.y9_c00356{bottom:630.466686pt;}
.y8_c00356{bottom:647.733353pt;}
.y7_c00356{bottom:665.000020pt;}
.y6_c00356{bottom:682.266686pt;}
.y5_c00356{bottom:699.200020pt;}
.y4_c00356{bottom:716.200020pt;}
.y3_c00356{bottom:733.800020pt;}
.y2_c00356{bottom:751.066686pt;}
.y1_c00356{bottom:788.333353pt;}
.h2_c00356{height:44.470052pt;}
.h4_c00356{height:44.492188pt;}
.h5_c00356{height:44.758854pt;}
.h3_c00356{height:52.343750pt;}
.h1_c00356{height:851.333333pt;}
.h0_c00356{height:851.533333pt;}
.w1_c00356{width:572.000000pt;}
.w0_c00356{width:572.133333pt;}
.x0_c00356{left:0.000000pt;}
.x1_c00356{left:80.666667pt;}
.x3_c00356{left:86.733333pt;}
.x2_c00356{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ddb33591ec951b69acae31c0.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00357;src:url('chunks/assets/font_b44a186a3374742aa306ccb1.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.ls1_c00357{letter-spacing:0.000000px;}
.ls0_c00357{letter-spacing:13.800000px;}
.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;}
}
.ws0_c00357{word-spacing:-15.000000px;}
.ws1_c00357{word-spacing:-12.750000px;}
.ws2_c00357{word-spacing:0.000000px;}
._15_c00357{margin-left:-13.865586px;}
._e_c00357{margin-left:-12.378078px;}
._d_c00357{margin-left:-10.421922px;}
._14_c00357{margin-left:-5.964021px;}
._18_c00357{margin-left:-4.656630px;}
._3_c00357{margin-left:-3.504261px;}
._17_c00357{margin-left:-2.455530px;}
._0_c00357{margin-left:-1.383018px;}
._2_c00357{width:1.656021px;}
._1_c00357{width:2.700042px;}
._9_c00357{width:3.779622px;}
._4_c00357{width:4.787853px;}
._5_c00357{width:5.867958px;}
._13_c00357{width:7.524084px;}
._c_c00357{width:8.567958px;}
._16_c00357{width:9.695664px;}
._a_c00357{width:10.823874px;}
._f_c00357{width:12.012042px;}
._b_c00357{width:13.320000px;}
._10_c00357{width:16.191018px;}
._8_c00357{width:17.349054px;}
._7_c00357{width:19.560000px;}
._6_c00357{width:20.699790px;}
._11_c00357{width:21.840000px;}
._12_c00357{width:23.975706px;}
._19_c00357{width:25.009821px;}
.fc2_c00357{color:transparent;}
.fc1_c00357{color:rgb(0,0,0);}
.fc0_c00357{color:rgb(35,31,32);}
.fs0_c00357{font-size:51.000000px;}
.fs1_c00357{font-size:60.000000px;}
.y0_c00357{bottom:0.000000px;}
.y29_c00357{bottom:64.425022px;}
.y28_c00357{bottom:110.550022px;}
.y27_c00357{bottom:125.325022px;}
.y26_c00357{bottom:141.150022px;}
.y25_c00357{bottom:156.225022px;}
.y24_c00357{bottom:171.750022px;}
.y23_c00357{bottom:186.525022px;}
.y22_c00357{bottom:201.975022px;}
.y21_c00357{bottom:217.125022px;}
.y20_c00357{bottom:232.575022px;}
.y1f_c00357{bottom:247.725022px;}
.y1e_c00357{bottom:263.175022px;}
.y1d_c00357{bottom:278.325022px;}
.y1c_c00357{bottom:293.775022px;}
.y1b_c00357{bottom:309.225022px;}
.y1a_c00357{bottom:324.375022px;}
.y19_c00357{bottom:339.525022px;}
.y18_c00357{bottom:354.975022px;}
.y17_c00357{bottom:370.125022px;}
.y16_c00357{bottom:385.950022px;}
.y15_c00357{bottom:400.725022px;}
.y14_c00357{bottom:416.550022px;}
.y13_c00357{bottom:456.525022px;}
.y12_c00357{bottom:475.950022px;}
.y11_c00357{bottom:495.300022px;}
.y10_c00357{bottom:514.425022px;}
.yf_c00357{bottom:533.550022px;}
.ye_c00357{bottom:552.975022px;}
.yd_c00357{bottom:592.950022px;}
.yc_c00357{bottom:612.375022px;}
.yb_c00357{bottom:670.350022px;}
.ya_c00357{bottom:689.775022px;}
.y9_c00357{bottom:709.200022px;}
.y8_c00357{bottom:728.625022px;}
.y7_c00357{bottom:748.125022px;}
.y6_c00357{bottom:767.175022px;}
.y5_c00357{bottom:786.600022px;}
.y4_c00357{bottom:805.725022px;}
.y3_c00357{bottom:825.150022px;}
.y2_c00357{bottom:844.950022px;}
.y1_c00357{bottom:886.725022px;}
.h2_c00357{height:50.028809px;}
.h4_c00357{height:50.053711px;}
.h3_c00357{height:58.886719px;}
.h1_c00357{height:957.750000px;}
.h0_c00357{height:957.975000px;}
.w0_c00357{width:641.850030px;}
.w1_c00357{width:642.000000px;}
.x0_c00357{left:0.000000px;}
.x4_c00357{left:80.250000px;}
.x3_c00357{left:81.375000px;}
.x7_c00357{left:87.825000px;}
.x2_c00357{left:97.200000px;}
.x5_c00357{left:98.625000px;}
.x6_c00357{left:120.975000px;}
.x1_c00357{left:417.600000px;}
.x8_c00357{left:531.375000px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls1_c00357{letter-spacing:0.000000pt;}
.ls0_c00357{letter-spacing:12.266667pt;}
.ws0_c00357{word-spacing:-13.333333pt;}
.ws1_c00357{word-spacing:-11.333333pt;}
.ws2_c00357{word-spacing:0.000000pt;}
._15_c00357{margin-left:-12.324965pt;}
._e_c00357{margin-left:-11.002736pt;}
._d_c00357{margin-left:-9.263931pt;}
._14_c00357{margin-left:-5.301352pt;}
._18_c00357{margin-left:-4.139227pt;}
._3_c00357{margin-left:-3.114899pt;}
._17_c00357{margin-left:-2.182693pt;}
._0_c00357{margin-left:-1.229349pt;}
._2_c00357{width:1.472019pt;}
._1_c00357{width:2.400037pt;}
._9_c00357{width:3.359664pt;}
._4_c00357{width:4.255869pt;}
._5_c00357{width:5.215963pt;}
._13_c00357{width:6.688075pt;}
._c_c00357{width:7.615963pt;}
._16_c00357{width:8.618368pt;}
._a_c00357{width:9.621221pt;}
._f_c00357{width:10.677371pt;}
._b_c00357{width:11.840000pt;}
._10_c00357{width:14.392016pt;}
._8_c00357{width:15.421381pt;}
._7_c00357{width:17.386667pt;}
._6_c00357{width:18.399813pt;}
._11_c00357{width:19.413333pt;}
._12_c00357{width:21.311739pt;}
._19_c00357{width:22.230952pt;}
.fs0_c00357{font-size:45.333333pt;}
.fs1_c00357{font-size:53.333333pt;}
.y0_c00357{bottom:0.000000pt;}
.y29_c00357{bottom:57.266686pt;}
.y28_c00357{bottom:98.266686pt;}
.y27_c00357{bottom:111.400020pt;}
.y26_c00357{bottom:125.466686pt;}
.y25_c00357{bottom:138.866686pt;}
.y24_c00357{bottom:152.666686pt;}
.y23_c00357{bottom:165.800020pt;}
.y22_c00357{bottom:179.533353pt;}
.y21_c00357{bottom:193.000020pt;}
.y20_c00357{bottom:206.733353pt;}
.y1f_c00357{bottom:220.200020pt;}
.y1e_c00357{bottom:233.933353pt;}
.y1d_c00357{bottom:247.400020pt;}
.y1c_c00357{bottom:261.133353pt;}
.y1b_c00357{bottom:274.866686pt;}
.y1a_c00357{bottom:288.333353pt;}
.y19_c00357{bottom:301.800020pt;}
.y18_c00357{bottom:315.533353pt;}
.y17_c00357{bottom:329.000020pt;}
.y16_c00357{bottom:343.066686pt;}
.y15_c00357{bottom:356.200020pt;}
.y14_c00357{bottom:370.266686pt;}
.y13_c00357{bottom:405.800020pt;}
.y12_c00357{bottom:423.066686pt;}
.y11_c00357{bottom:440.266686pt;}
.y10_c00357{bottom:457.266686pt;}
.yf_c00357{bottom:474.266686pt;}
.ye_c00357{bottom:491.533353pt;}
.yd_c00357{bottom:527.066686pt;}
.yc_c00357{bottom:544.333353pt;}
.yb_c00357{bottom:595.866686pt;}
.ya_c00357{bottom:613.133353pt;}
.y9_c00357{bottom:630.400020pt;}
.y8_c00357{bottom:647.666686pt;}
.y7_c00357{bottom:665.000020pt;}
.y6_c00357{bottom:681.933353pt;}
.y5_c00357{bottom:699.200020pt;}
.y4_c00357{bottom:716.200020pt;}
.y3_c00357{bottom:733.466686pt;}
.y2_c00357{bottom:751.066686pt;}
.y1_c00357{bottom:788.200020pt;}
.h2_c00357{height:44.470052pt;}
.h4_c00357{height:44.492188pt;}
.h3_c00357{height:52.343750pt;}
.h1_c00357{height:851.333333pt;}
.h0_c00357{height:851.533333pt;}
.w0_c00357{width:570.533360pt;}
.w1_c00357{width:570.666667pt;}
.x0_c00357{left:0.000000pt;}
.x4_c00357{left:71.333333pt;}
.x3_c00357{left:72.333333pt;}
.x7_c00357{left:78.066667pt;}
.x2_c00357{left:86.400000pt;}
.x5_c00357{left:87.666667pt;}
.x6_c00357{left:107.533333pt;}
.x1_c00357{left:371.200000pt;}
.x8_c00357{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0162c0d92af461d237b9c190.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00358;src:url('chunks/assets/font_7bac170a36e7e67329127022.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00358{letter-spacing:0.000000px;}
.ls0_c00358{letter-spacing:14.100000px;}
.ls1_c00358{letter-spacing:17.250000px;}
.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:-15.000000px;}
.ws1_c00358{word-spacing:-12.750000px;}
.ws2_c00358{word-spacing:0.000000px;}
._13_c00358{margin-left:-12.441219px;}
._10_c00358{margin-left:-11.295045px;}
._11_c00358{margin-left:-7.685766px;}
._12_c00358{margin-left:-5.699964px;}
._4_c00358{margin-left:-4.425267px;}
._1_c00358{margin-left:-3.300006px;}
._0_c00358{margin-left:-1.760979px;}
._2_c00358{width:1.839009px;}
._3_c00358{width:3.320967px;}
._9_c00358{width:4.340979px;}
._8_c00358{width:5.519880px;}
._b_c00358{width:7.521015px;}
._5_c00358{width:8.582973px;}
._7_c00358{width:10.301982px;}
._6_c00358{width:12.180000px;}
._a_c00358{width:13.253994px;}
._15_c00358{width:15.293874px;}
._e_c00358{width:16.436847px;}
._d_c00358{width:17.780991px;}
._c_c00358{width:19.082973px;}
._f_c00358{width:20.382210px;}
._14_c00358{width:22.616979px;}
.fc2_c00358{color:transparent;}
.fc1_c00358{color:rgb(0,0,0);}
.fc0_c00358{color:rgb(35,31,32);}
.fs0_c00358{font-size:51.000000px;}
.fs1_c00358{font-size:60.000000px;}
.y0_c00358{bottom:0.000000px;}
.y26_c00358{bottom:64.425022px;}
.y25_c00358{bottom:110.175022px;}
.y24_c00358{bottom:125.325022px;}
.y23_c00358{bottom:141.675022px;}
.y22_c00358{bottom:155.925022px;}
.y21_c00358{bottom:195.900022px;}
.y20_c00358{bottom:215.325022px;}
.y1f_c00358{bottom:234.750022px;}
.y1e_c00358{bottom:253.425022px;}
.y1d_c00358{bottom:273.225022px;}
.y1c_c00358{bottom:291.975022px;}
.y1b_c00358{bottom:311.775022px;}
.y1a_c00358{bottom:330.825022px;}
.y19_c00358{bottom:350.325022px;}
.y18_c00358{bottom:369.375022px;}
.y17_c00358{bottom:388.425022px;}
.y16_c00358{bottom:407.925022px;}
.y15_c00358{bottom:426.600022px;}
.y14_c00358{bottom:463.350022px;}
.y13_c00358{bottom:518.025022px;}
.y12_c00358{bottom:536.775022px;}
.y11_c00358{bottom:556.200022px;}
.y10_c00358{bottom:575.325022px;}
.yf_c00358{bottom:595.125022px;}
.ye_c00358{bottom:614.175022px;}
.yd_c00358{bottom:633.600022px;}
.yc_c00358{bottom:652.350022px;}
.yb_c00358{bottom:672.150022px;}
.ya_c00358{bottom:691.200022px;}
.y9_c00358{bottom:710.325022px;}
.y8_c00358{bottom:729.750022px;}
.y7_c00358{bottom:748.800022px;}
.y6_c00358{bottom:768.225022px;}
.y5_c00358{bottom:787.350022px;}
.y4_c00358{bottom:806.400022px;}
.y3_c00358{bottom:825.825022px;}
.y2_c00358{bottom:844.950022px;}
.y1_c00358{bottom:886.875022px;}
.h2_c00358{height:50.028809px;}
.h4_c00358{height:50.053711px;}
.h3_c00358{height:58.886719px;}
.h1_c00358{height:957.750000px;}
.h0_c00358{height:957.975000px;}
.w1_c00358{width:643.500000px;}
.w0_c00358{width:643.650000px;}
.x0_c00358{left:0.000000px;}
.x1_c00358{left:90.750000px;}
.x3_c00358{left:97.575000px;}
.x2_c00358{left:130.650000px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls2_c00358{letter-spacing:0.000000pt;}
.ls0_c00358{letter-spacing:12.533333pt;}
.ls1_c00358{letter-spacing:15.333333pt;}
.ws0_c00358{word-spacing:-13.333333pt;}
.ws1_c00358{word-spacing:-11.333333pt;}
.ws2_c00358{word-spacing:0.000000pt;}
._13_c00358{margin-left:-11.058861pt;}
._10_c00358{margin-left:-10.040040pt;}
._11_c00358{margin-left:-6.831792pt;}
._12_c00358{margin-left:-5.066635pt;}
._4_c00358{margin-left:-3.933571pt;}
._1_c00358{margin-left:-2.933339pt;}
._0_c00358{margin-left:-1.565315pt;}
._2_c00358{width:1.634675pt;}
._3_c00358{width:2.951971pt;}
._9_c00358{width:3.858648pt;}
._8_c00358{width:4.906560pt;}
._b_c00358{width:6.685347pt;}
._5_c00358{width:7.629309pt;}
._7_c00358{width:9.157317pt;}
._6_c00358{width:10.826667pt;}
._a_c00358{width:11.781328pt;}
._15_c00358{width:13.594555pt;}
._e_c00358{width:14.610531pt;}
._d_c00358{width:15.805325pt;}
._c_c00358{width:16.962643pt;}
._f_c00358{width:18.117520pt;}
._14_c00358{width:20.103981pt;}
.fs0_c00358{font-size:45.333333pt;}
.fs1_c00358{font-size:53.333333pt;}
.y0_c00358{bottom:0.000000pt;}
.y26_c00358{bottom:57.266686pt;}
.y25_c00358{bottom:97.933353pt;}
.y24_c00358{bottom:111.400020pt;}
.y23_c00358{bottom:125.933353pt;}
.y22_c00358{bottom:138.600020pt;}
.y21_c00358{bottom:174.133353pt;}
.y20_c00358{bottom:191.400020pt;}
.y1f_c00358{bottom:208.666686pt;}
.y1e_c00358{bottom:225.266686pt;}
.y1d_c00358{bottom:242.866686pt;}
.y1c_c00358{bottom:259.533353pt;}
.y1b_c00358{bottom:277.133353pt;}
.y1a_c00358{bottom:294.066686pt;}
.y19_c00358{bottom:311.400020pt;}
.y18_c00358{bottom:328.333353pt;}
.y17_c00358{bottom:345.266686pt;}
.y16_c00358{bottom:362.600020pt;}
.y15_c00358{bottom:379.200020pt;}
.y14_c00358{bottom:411.866686pt;}
.y13_c00358{bottom:460.466686pt;}
.y12_c00358{bottom:477.133353pt;}
.y11_c00358{bottom:494.400020pt;}
.y10_c00358{bottom:511.400020pt;}
.yf_c00358{bottom:529.000020pt;}
.ye_c00358{bottom:545.933353pt;}
.yd_c00358{bottom:563.200020pt;}
.yc_c00358{bottom:579.866686pt;}
.yb_c00358{bottom:597.466686pt;}
.ya_c00358{bottom:614.400020pt;}
.y9_c00358{bottom:631.400020pt;}
.y8_c00358{bottom:648.666686pt;}
.y7_c00358{bottom:665.600020pt;}
.y6_c00358{bottom:682.866686pt;}
.y5_c00358{bottom:699.866686pt;}
.y4_c00358{bottom:716.800020pt;}
.y3_c00358{bottom:734.066686pt;}
.y2_c00358{bottom:751.066686pt;}
.y1_c00358{bottom:788.333353pt;}
.h2_c00358{height:44.470052pt;}
.h4_c00358{height:44.492188pt;}
.h3_c00358{height:52.343750pt;}
.h1_c00358{height:851.333333pt;}
.h0_c00358{height:851.533333pt;}
.w1_c00358{width:572.000000pt;}
.w0_c00358{width:572.133333pt;}
.x0_c00358{left:0.000000pt;}
.x1_c00358{left:80.666667pt;}
.x3_c00358{left:86.733333pt;}
.x2_c00358{left:116.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e124bce0108190257eb41332.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00359;src:url('chunks/assets/font_17a0a4ecf0e2b6a5ffbd4ba9.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00359{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.ls1_c00359{letter-spacing:0.000000px;}
.ls0_c00359{letter-spacing:14.250000px;}
.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;}
}
.ws1_c00359{word-spacing:-15.000000px;}
.ws0_c00359{word-spacing:-12.750000px;}
.ws2_c00359{word-spacing:0.000000px;}
._15_c00359{margin-left:-11.525607px;}
._14_c00359{margin-left:-10.374393px;}
._12_c00359{margin-left:-8.388063px;}
._16_c00359{margin-left:-5.893584px;}
._17_c00359{margin-left:-4.631415px;}
._3_c00359{margin-left:-3.504261px;}
._c_c00359{margin-left:-2.460000px;}
._0_c00359{margin-left:-1.383018px;}
._2_c00359{width:1.656021px;}
._1_c00359{width:2.700042px;}
._8_c00359{width:3.701742px;}
._4_c00359{width:4.860000px;}
._9_c00359{width:6.095874px;}
._6_c00359{width:7.367958px;}
._5_c00359{width:8.580000px;}
._7_c00359{width:10.019895px;}
._a_c00359{width:12.153129px;}
._13_c00359{width:13.263165px;}
._18_c00359{width:15.601608px;}
._d_c00359{width:16.751895px;}
._e_c00359{width:18.123060px;}
._b_c00359{width:19.163790px;}
._10_c00359{width:20.340000px;}
._11_c00359{width:21.875916px;}
._f_c00359{width:23.163018px;}
.fc2_c00359{color:transparent;}
.fc1_c00359{color:rgb(0,0,0);}
.fc0_c00359{color:rgb(35,31,32);}
.fs0_c00359{font-size:51.000000px;}
.fs1_c00359{font-size:60.000000px;}
.y0_c00359{bottom:0.000000px;}
.y28_c00359{bottom:64.425022px;}
.y27_c00359{bottom:110.175022px;}
.y26_c00359{bottom:125.325022px;}
.y25_c00359{bottom:140.775022px;}
.y24_c00359{bottom:184.725022px;}
.y23_c00359{bottom:203.775022px;}
.y22_c00359{bottom:223.200022px;}
.y21_c00359{bottom:243.000022px;}
.y20_c00359{bottom:262.425022px;}
.y1f_c00359{bottom:281.550022px;}
.y1e_c00359{bottom:301.350022px;}
.y1d_c00359{bottom:320.025022px;}
.y1c_c00359{bottom:339.825022px;}
.y1b_c00359{bottom:358.950022px;}
.y1a_c00359{bottom:378.750022px;}
.y19_c00359{bottom:398.175022px;}
.y18_c00359{bottom:417.225022px;}
.y17_c00359{bottom:437.025022px;}
.y16_c00359{bottom:456.525022px;}
.y15_c00359{bottom:475.575022px;}
.y14_c00359{bottom:495.000022px;}
.y13_c00359{bottom:514.425022px;}
.y12_c00359{bottom:534.225022px;}
.y11_c00359{bottom:553.725022px;}
.y10_c00359{bottom:573.150022px;}
.yf_c00359{bottom:592.200022px;}
.ye_c00359{bottom:611.625022px;}
.yd_c00359{bottom:631.425022px;}
.yc_c00359{bottom:650.925022px;}
.yb_c00359{bottom:669.975022px;}
.ya_c00359{bottom:689.775022px;}
.y9_c00359{bottom:709.125022px;}
.y8_c00359{bottom:728.625022px;}
.y7_c00359{bottom:748.125022px;}
.y6_c00359{bottom:767.175022px;}
.y5_c00359{bottom:786.600022px;}
.y4_c00359{bottom:805.725022px;}
.y3_c00359{bottom:825.525022px;}
.y2_c00359{bottom:844.575022px;}
.y1_c00359{bottom:886.725022px;}
.h2_c00359{height:50.028809px;}
.h4_c00359{height:50.053711px;}
.h3_c00359{height:58.886719px;}
.h1_c00359{height:957.750000px;}
.h0_c00359{height:957.975000px;}
.w0_c00359{width:641.850030px;}
.w1_c00359{width:642.000000px;}
.x0_c00359{left:0.000000px;}
.x3_c00359{left:80.250000px;}
.x2_c00359{left:81.375000px;}
.x5_c00359{left:87.825000px;}
.x4_c00359{left:97.200000px;}
.x6_c00359{left:120.600000px;}
.x1_c00359{left:417.600000px;}
.x7_c00359{left:531.375000px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls1_c00359{letter-spacing:0.000000pt;}
.ls0_c00359{letter-spacing:12.666667pt;}
.ws1_c00359{word-spacing:-13.333333pt;}
.ws0_c00359{word-spacing:-11.333333pt;}
.ws2_c00359{word-spacing:0.000000pt;}
._15_c00359{margin-left:-10.244984pt;}
._14_c00359{margin-left:-9.221683pt;}
._12_c00359{margin-left:-7.456056pt;}
._16_c00359{margin-left:-5.238741pt;}
._17_c00359{margin-left:-4.116813pt;}
._3_c00359{margin-left:-3.114899pt;}
._c_c00359{margin-left:-2.186667pt;}
._0_c00359{margin-left:-1.229349pt;}
._2_c00359{width:1.472019pt;}
._1_c00359{width:2.400037pt;}
._8_c00359{width:3.290437pt;}
._4_c00359{width:4.320000pt;}
._9_c00359{width:5.418555pt;}
._6_c00359{width:6.549296pt;}
._5_c00359{width:7.626667pt;}
._7_c00359{width:8.906573pt;}
._a_c00359{width:10.802781pt;}
._13_c00359{width:11.789480pt;}
._18_c00359{width:13.868096pt;}
._d_c00359{width:14.890573pt;}
._e_c00359{width:16.109387pt;}
._b_c00359{width:17.034480pt;}
._10_c00359{width:18.080000pt;}
._11_c00359{width:19.445259pt;}
._f_c00359{width:20.589349pt;}
.fs0_c00359{font-size:45.333333pt;}
.fs1_c00359{font-size:53.333333pt;}
.y0_c00359{bottom:0.000000pt;}
.y28_c00359{bottom:57.266686pt;}
.y27_c00359{bottom:97.933353pt;}
.y26_c00359{bottom:111.400020pt;}
.y25_c00359{bottom:125.133353pt;}
.y24_c00359{bottom:164.200020pt;}
.y23_c00359{bottom:181.133353pt;}
.y22_c00359{bottom:198.400020pt;}
.y21_c00359{bottom:216.000020pt;}
.y20_c00359{bottom:233.266686pt;}
.y1f_c00359{bottom:250.266686pt;}
.y1e_c00359{bottom:267.866686pt;}
.y1d_c00359{bottom:284.466686pt;}
.y1c_c00359{bottom:302.066686pt;}
.y1b_c00359{bottom:319.066686pt;}
.y1a_c00359{bottom:336.666686pt;}
.y19_c00359{bottom:353.933353pt;}
.y18_c00359{bottom:370.866686pt;}
.y17_c00359{bottom:388.466686pt;}
.y16_c00359{bottom:405.800020pt;}
.y15_c00359{bottom:422.733353pt;}
.y14_c00359{bottom:440.000020pt;}
.y13_c00359{bottom:457.266686pt;}
.y12_c00359{bottom:474.866686pt;}
.y11_c00359{bottom:492.200020pt;}
.y10_c00359{bottom:509.466686pt;}
.yf_c00359{bottom:526.400020pt;}
.ye_c00359{bottom:543.666686pt;}
.yd_c00359{bottom:561.266686pt;}
.yc_c00359{bottom:578.600020pt;}
.yb_c00359{bottom:595.533353pt;}
.ya_c00359{bottom:613.133353pt;}
.y9_c00359{bottom:630.333353pt;}
.y8_c00359{bottom:647.666686pt;}
.y7_c00359{bottom:665.000020pt;}
.y6_c00359{bottom:681.933353pt;}
.y5_c00359{bottom:699.200020pt;}
.y4_c00359{bottom:716.200020pt;}
.y3_c00359{bottom:733.800020pt;}
.y2_c00359{bottom:750.733353pt;}
.y1_c00359{bottom:788.200020pt;}
.h2_c00359{height:44.470052pt;}
.h4_c00359{height:44.492188pt;}
.h3_c00359{height:52.343750pt;}
.h1_c00359{height:851.333333pt;}
.h0_c00359{height:851.533333pt;}
.w0_c00359{width:570.533360pt;}
.w1_c00359{width:570.666667pt;}
.x0_c00359{left:0.000000pt;}
.x3_c00359{left:71.333333pt;}
.x2_c00359{left:72.333333pt;}
.x5_c00359{left:78.066667pt;}
.x4_c00359{left:86.400000pt;}
.x6_c00359{left:107.200000pt;}
.x1_c00359{left:371.200000pt;}
.x7_c00359{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c9670bdad597773518194da7.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00360;src:url('chunks/assets/font_7f22c1fa84cb20ca1f269398.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00360{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.ls2_c00360{letter-spacing:0.000000px;}
.ls0_c00360{letter-spacing:12.600000px;}
.ls1_c00360{letter-spacing:16.050000px;}
.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:-15.000000px;}
.ws1_c00360{word-spacing:-12.750000px;}
.ws2_c00360{word-spacing:0.000000px;}
._e_c00360{margin-left:-12.960000px;}
._d_c00360{margin-left:-11.040000px;}
._8_c00360{margin-left:-7.980000px;}
._10_c00360{margin-left:-6.933033px;}
._f_c00360{margin-left:-5.460000px;}
._9_c00360{margin-left:-4.200000px;}
._7_c00360{margin-left:-2.160000px;}
._2_c00360{margin-left:-1.140000px;}
._0_c00360{width:1.800000px;}
._5_c00360{width:2.820000px;}
._4_c00360{width:4.500000px;}
._1_c00360{width:6.300000px;}
._3_c00360{width:7.440000px;}
._6_c00360{width:8.760000px;}
._a_c00360{width:10.620000px;}
._b_c00360{width:12.660000px;}
._c_c00360{width:13.920000px;}
.fc2_c00360{color:transparent;}
.fc1_c00360{color:rgb(0,0,0);}
.fc0_c00360{color:rgb(35,31,32);}
.fs1_c00360{font-size:51.000000px;}
.fs0_c00360{font-size:60.000000px;}
.y0_c00360{bottom:0.000000px;}
.y26_c00360{bottom:64.425022px;}
.y25_c00360{bottom:110.175022px;}
.y24_c00360{bottom:125.325022px;}
.y23_c00360{bottom:140.775022px;}
.y22_c00360{bottom:155.925022px;}
.y21_c00360{bottom:171.375022px;}
.y20_c00360{bottom:211.350022px;}
.y1f_c00360{bottom:230.775022px;}
.y1e_c00360{bottom:249.825022px;}
.y1d_c00360{bottom:269.325022px;}
.y1c_c00360{bottom:288.375022px;}
.y1b_c00360{bottom:308.175022px;}
.y1a_c00360{bottom:326.925022px;}
.y19_c00360{bottom:346.350022px;}
.y18_c00360{bottom:366.150022px;}
.y17_c00360{bottom:385.125022px;}
.y16_c00360{bottom:404.625022px;}
.y15_c00360{bottom:424.125022px;}
.y14_c00360{bottom:442.725022px;}
.y13_c00360{bottom:462.225022px;}
.y12_c00360{bottom:481.725022px;}
.y11_c00360{bottom:500.850022px;}
.y10_c00360{bottom:520.275022px;}
.yf_c00360{bottom:539.700022px;}
.ye_c00360{bottom:559.125022px;}
.yd_c00360{bottom:578.550022px;}
.yc_c00360{bottom:597.975022px;}
.yb_c00360{bottom:617.025022px;}
.ya_c00360{bottom:636.525022px;}
.y9_c00360{bottom:655.575022px;}
.y8_c00360{bottom:675.000022px;}
.y7_c00360{bottom:694.125022px;}
.y6_c00360{bottom:713.550022px;}
.y5_c00360{bottom:750.975022px;}
.y4_c00360{bottom:769.725022px;}
.y2_c00360{bottom:825.525022px;}
.y1_c00360{bottom:844.950022px;}
.y3_c00360{bottom:886.875022px;}
.h3_c00360{height:50.028809px;}
.h4_c00360{height:50.053711px;}
.h2_c00360{height:58.886719px;}
.h1_c00360{height:957.750000px;}
.h0_c00360{height:957.975000px;}
.w1_c00360{width:643.500000px;}
.w0_c00360{width:643.650000px;}
.x0_c00360{left:0.000000px;}
.x4_c00360{left:90.375000px;}
.x1_c00360{left:91.425000px;}
.x5_c00360{left:97.575000px;}
.x3_c00360{left:107.250000px;}
.x2_c00360{left:108.375000px;}
.x6_c00360{left:131.025000px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls2_c00360{letter-spacing:0.000000pt;}
.ls0_c00360{letter-spacing:11.200000pt;}
.ls1_c00360{letter-spacing:14.266667pt;}
.ws0_c00360{word-spacing:-13.333333pt;}
.ws1_c00360{word-spacing:-11.333333pt;}
.ws2_c00360{word-spacing:0.000000pt;}
._e_c00360{margin-left:-11.520000pt;}
._d_c00360{margin-left:-9.813333pt;}
._8_c00360{margin-left:-7.093333pt;}
._10_c00360{margin-left:-6.162696pt;}
._f_c00360{margin-left:-4.853333pt;}
._9_c00360{margin-left:-3.733333pt;}
._7_c00360{margin-left:-1.920000pt;}
._2_c00360{margin-left:-1.013333pt;}
._0_c00360{width:1.600000pt;}
._5_c00360{width:2.506667pt;}
._4_c00360{width:4.000000pt;}
._1_c00360{width:5.600000pt;}
._3_c00360{width:6.613333pt;}
._6_c00360{width:7.786667pt;}
._a_c00360{width:9.440000pt;}
._b_c00360{width:11.253333pt;}
._c_c00360{width:12.373333pt;}
.fs1_c00360{font-size:45.333333pt;}
.fs0_c00360{font-size:53.333333pt;}
.y0_c00360{bottom:0.000000pt;}
.y26_c00360{bottom:57.266686pt;}
.y25_c00360{bottom:97.933353pt;}
.y24_c00360{bottom:111.400020pt;}
.y23_c00360{bottom:125.133353pt;}
.y22_c00360{bottom:138.600020pt;}
.y21_c00360{bottom:152.333353pt;}
.y20_c00360{bottom:187.866686pt;}
.y1f_c00360{bottom:205.133353pt;}
.y1e_c00360{bottom:222.066686pt;}
.y1d_c00360{bottom:239.400020pt;}
.y1c_c00360{bottom:256.333353pt;}
.y1b_c00360{bottom:273.933353pt;}
.y1a_c00360{bottom:290.600020pt;}
.y19_c00360{bottom:307.866686pt;}
.y18_c00360{bottom:325.466686pt;}
.y17_c00360{bottom:342.333353pt;}
.y16_c00360{bottom:359.666686pt;}
.y15_c00360{bottom:377.000020pt;}
.y14_c00360{bottom:393.533353pt;}
.y13_c00360{bottom:410.866686pt;}
.y12_c00360{bottom:428.200020pt;}
.y11_c00360{bottom:445.200020pt;}
.y10_c00360{bottom:462.466686pt;}
.yf_c00360{bottom:479.733353pt;}
.ye_c00360{bottom:497.000020pt;}
.yd_c00360{bottom:514.266686pt;}
.yc_c00360{bottom:531.533353pt;}
.yb_c00360{bottom:548.466686pt;}
.ya_c00360{bottom:565.800020pt;}
.y9_c00360{bottom:582.733353pt;}
.y8_c00360{bottom:600.000020pt;}
.y7_c00360{bottom:617.000020pt;}
.y6_c00360{bottom:634.266686pt;}
.y5_c00360{bottom:667.533353pt;}
.y4_c00360{bottom:684.200020pt;}
.y2_c00360{bottom:733.800020pt;}
.y1_c00360{bottom:751.066686pt;}
.y3_c00360{bottom:788.333353pt;}
.h3_c00360{height:44.470052pt;}
.h4_c00360{height:44.492188pt;}
.h2_c00360{height:52.343750pt;}
.h1_c00360{height:851.333333pt;}
.h0_c00360{height:851.533333pt;}
.w1_c00360{width:572.000000pt;}
.w0_c00360{width:572.133333pt;}
.x0_c00360{left:0.000000pt;}
.x4_c00360{left:80.333333pt;}
.x1_c00360{left:81.266667pt;}
.x5_c00360{left:86.733333pt;}
.x3_c00360{left:95.333333pt;}
.x2_c00360{left:96.333333pt;}
.x6_c00360{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_17504d5c4b7f20d943c71813.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00361;src:url('chunks/assets/font_fb07ce29d6e86e6f96a79bbd.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00361{letter-spacing:0.000000px;}
.ls0_c00361{letter-spacing:15.750000px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00361{word-spacing:-15.000000px;}
.ws1_c00361{word-spacing:-12.750000px;}
.ws2_c00361{word-spacing:0.000000px;}
._e_c00361{margin-left:-11.579865px;}
._12_c00361{margin-left:-5.415321px;}
._3_c00361{margin-left:-3.504261px;}
._10_c00361{margin-left:-2.445942px;}
._0_c00361{margin-left:-1.383018px;}
._2_c00361{width:1.656021px;}
._1_c00361{width:2.700042px;}
._d_c00361{width:3.869019px;}
._b_c00361{width:5.127165px;}
._a_c00361{width:6.935832px;}
._8_c00361{width:9.011937px;}
._9_c00361{width:10.524114px;}
._6_c00361{width:12.038904px;}
._7_c00361{width:13.785075px;}
._11_c00361{width:15.563196px;}
._4_c00361{width:16.604970px;}
._f_c00361{width:17.660781px;}
._5_c00361{width:18.773859px;}
._c_c00361{width:20.481564px;}
.fc2_c00361{color:transparent;}
.fc1_c00361{color:rgb(0,0,0);}
.fc0_c00361{color:rgb(35,31,32);}
.fs0_c00361{font-size:51.000000px;}
.fs1_c00361{font-size:60.000000px;}
.y0_c00361{bottom:0.000000px;}
.y25_c00361{bottom:64.425022px;}
.y24_c00361{bottom:110.175022px;}
.y23_c00361{bottom:125.325022px;}
.y22_c00361{bottom:169.950022px;}
.y21_c00361{bottom:189.000022px;}
.y20_c00361{bottom:208.425022px;}
.y1f_c00361{bottom:245.925022px;}
.y1e_c00361{bottom:301.350022px;}
.y1d_c00361{bottom:320.400022px;}
.y1c_c00361{bottom:339.525022px;}
.y1b_c00361{bottom:358.950022px;}
.y1a_c00361{bottom:378.750022px;}
.y19_c00361{bottom:398.175022px;}
.y18_c00361{bottom:417.600022px;}
.y17_c00361{bottom:436.725022px;}
.y16_c00361{bottom:456.525022px;}
.y15_c00361{bottom:475.950022px;}
.y14_c00361{bottom:495.375022px;}
.y13_c00361{bottom:514.800022px;}
.y12_c00361{bottom:534.225022px;}
.y11_c00361{bottom:553.725022px;}
.y10_c00361{bottom:572.775022px;}
.yf_c00361{bottom:592.575022px;}
.ye_c00361{bottom:612.000022px;}
.yd_c00361{bottom:631.125022px;}
.yc_c00361{bottom:650.925022px;}
.yb_c00361{bottom:669.975022px;}
.ya_c00361{bottom:689.775022px;}
.y9_c00361{bottom:709.200022px;}
.y8_c00361{bottom:728.325022px;}
.y7_c00361{bottom:747.750022px;}
.y6_c00361{bottom:767.550022px;}
.y5_c00361{bottom:786.225022px;}
.y4_c00361{bottom:806.025022px;}
.y3_c00361{bottom:825.150022px;}
.y2_c00361{bottom:844.575022px;}
.y1_c00361{bottom:886.725022px;}
.h2_c00361{height:50.028809px;}
.h4_c00361{height:50.053711px;}
.h3_c00361{height:58.886719px;}
.h1_c00361{height:957.750000px;}
.h0_c00361{height:957.975000px;}
.w0_c00361{width:641.850030px;}
.w1_c00361{width:642.000000px;}
.x0_c00361{left:0.000000px;}
.x2_c00361{left:81.000000px;}
.x4_c00361{left:87.825000px;}
.x3_c00361{left:97.200000px;}
.x5_c00361{left:121.350000px;}
.x1_c00361{left:417.600000px;}
.x6_c00361{left:531.375000px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls1_c00361{letter-spacing:0.000000pt;}
.ls0_c00361{letter-spacing:14.000000pt;}
.ws0_c00361{word-spacing:-13.333333pt;}
.ws1_c00361{word-spacing:-11.333333pt;}
.ws2_c00361{word-spacing:0.000000pt;}
._e_c00361{margin-left:-10.293213pt;}
._12_c00361{margin-left:-4.813619pt;}
._3_c00361{margin-left:-3.114899pt;}
._10_c00361{margin-left:-2.174171pt;}
._0_c00361{margin-left:-1.229349pt;}
._2_c00361{width:1.472019pt;}
._1_c00361{width:2.400037pt;}
._d_c00361{width:3.439128pt;}
._b_c00361{width:4.557480pt;}
._a_c00361{width:6.165184pt;}
._8_c00361{width:8.010611pt;}
._9_c00361{width:9.354768pt;}
._6_c00361{width:10.701248pt;}
._7_c00361{width:12.253400pt;}
._11_c00361{width:13.833952pt;}
._4_c00361{width:14.759973pt;}
._f_c00361{width:15.698472pt;}
._5_c00361{width:16.687875pt;}
._c_c00361{width:18.205835pt;}
.fs0_c00361{font-size:45.333333pt;}
.fs1_c00361{font-size:53.333333pt;}
.y0_c00361{bottom:0.000000pt;}
.y25_c00361{bottom:57.266686pt;}
.y24_c00361{bottom:97.933353pt;}
.y23_c00361{bottom:111.400020pt;}
.y22_c00361{bottom:151.066686pt;}
.y21_c00361{bottom:168.000020pt;}
.y20_c00361{bottom:185.266686pt;}
.y1f_c00361{bottom:218.600020pt;}
.y1e_c00361{bottom:267.866686pt;}
.y1d_c00361{bottom:284.800020pt;}
.y1c_c00361{bottom:301.800020pt;}
.y1b_c00361{bottom:319.066686pt;}
.y1a_c00361{bottom:336.666686pt;}
.y19_c00361{bottom:353.933353pt;}
.y18_c00361{bottom:371.200020pt;}
.y17_c00361{bottom:388.200020pt;}
.y16_c00361{bottom:405.800020pt;}
.y15_c00361{bottom:423.066686pt;}
.y14_c00361{bottom:440.333353pt;}
.y13_c00361{bottom:457.600020pt;}
.y12_c00361{bottom:474.866686pt;}
.y11_c00361{bottom:492.200020pt;}
.y10_c00361{bottom:509.133353pt;}
.yf_c00361{bottom:526.733353pt;}
.ye_c00361{bottom:544.000020pt;}
.yd_c00361{bottom:561.000020pt;}
.yc_c00361{bottom:578.600020pt;}
.yb_c00361{bottom:595.533353pt;}
.ya_c00361{bottom:613.133353pt;}
.y9_c00361{bottom:630.400020pt;}
.y8_c00361{bottom:647.400020pt;}
.y7_c00361{bottom:664.666686pt;}
.y6_c00361{bottom:682.266686pt;}
.y5_c00361{bottom:698.866686pt;}
.y4_c00361{bottom:716.466686pt;}
.y3_c00361{bottom:733.466686pt;}
.y2_c00361{bottom:750.733353pt;}
.y1_c00361{bottom:788.200020pt;}
.h2_c00361{height:44.470052pt;}
.h4_c00361{height:44.492188pt;}
.h3_c00361{height:52.343750pt;}
.h1_c00361{height:851.333333pt;}
.h0_c00361{height:851.533333pt;}
.w0_c00361{width:570.533360pt;}
.w1_c00361{width:570.666667pt;}
.x0_c00361{left:0.000000pt;}
.x2_c00361{left:72.000000pt;}
.x4_c00361{left:78.066667pt;}
.x3_c00361{left:86.400000pt;}
.x5_c00361{left:107.866667pt;}
.x1_c00361{left:371.200000pt;}
.x6_c00361{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38d294129d8e045e475239a3.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00362;src:url('chunks/assets/font_233452a380a2fc5cca38c9de.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00362{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00362{letter-spacing:0.000000px;}
.sc__c00362{text-shadow:none;}
.sc0_c00362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00362{-webkit-text-stroke:0px transparent;}
.sc0_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00362{word-spacing:-15.000000px;}
.ws0_c00362{word-spacing:-12.750000px;}
.ws2_c00362{word-spacing:0.000000px;}
._11_c00362{margin-left:-14.280000px;}
._6_c00362{margin-left:-11.880000px;}
._7_c00362{margin-left:-10.620000px;}
._4_c00362{margin-left:-8.460000px;}
._19_c00362{margin-left:-5.535096px;}
._18_c00362{margin-left:-4.364922px;}
._12_c00362{margin-left:-3.240000px;}
._0_c00362{margin-left:-1.260000px;}
._2_c00362{width:1.800000px;}
._8_c00362{width:2.880000px;}
._5_c00362{width:4.140000px;}
._13_c00362{width:5.160000px;}
._a_c00362{width:6.720000px;}
._b_c00362{width:7.740000px;}
._c_c00362{width:8.880000px;}
._9_c00362{width:10.320000px;}
._1_c00362{width:11.340000px;}
._3_c00362{width:12.360000px;}
._10_c00362{width:13.980000px;}
._14_c00362{width:16.080000px;}
._e_c00362{width:17.100000px;}
._d_c00362{width:18.960000px;}
._f_c00362{width:20.520000px;}
._17_c00362{width:21.630000px;}
._16_c00362{width:22.920000px;}
._15_c00362{width:24.300000px;}
._1a_c00362{width:25.590000px;}
._1b_c00362{width:29.550093px;}
.fc1_c00362{color:transparent;}
.fc0_c00362{color:rgb(35,31,32);}
.fs1_c00362{font-size:51.000000px;}
.fs0_c00362{font-size:60.000000px;}
.y0_c00362{bottom:0.000000px;}
.y2b_c00362{bottom:64.800022px;}
.y2a_c00362{bottom:110.175022px;}
.y29_c00362{bottom:125.625022px;}
.y28_c00362{bottom:141.150022px;}
.y27_c00362{bottom:155.925022px;}
.y26_c00362{bottom:171.750022px;}
.y25_c00362{bottom:186.525022px;}
.y24_c00362{bottom:202.350022px;}
.y23_c00362{bottom:217.125022px;}
.y22_c00362{bottom:232.575022px;}
.y21_c00362{bottom:247.725022px;}
.y20_c00362{bottom:263.175022px;}
.y1f_c00362{bottom:278.325022px;}
.y1e_c00362{bottom:294.150022px;}
.y1d_c00362{bottom:309.225022px;}
.y1c_c00362{bottom:324.375022px;}
.y1b_c00362{bottom:339.525022px;}
.y1a_c00362{bottom:355.275022px;}
.y19_c00362{bottom:370.425022px;}
.y18_c00362{bottom:385.575022px;}
.y16_c00362{bottom:437.100022px;}
.y15_c00362{bottom:456.525022px;}
.y14_c00362{bottom:475.950022px;}
.y13_c00362{bottom:495.000022px;}
.y12_c00362{bottom:514.425022px;}
.y11_c00362{bottom:534.225022px;}
.y10_c00362{bottom:553.350022px;}
.yf_c00362{bottom:572.775022px;}
.ye_c00362{bottom:592.575022px;}
.yd_c00362{bottom:612.000022px;}
.yc_c00362{bottom:631.425022px;}
.yb_c00362{bottom:650.925022px;}
.ya_c00362{bottom:670.350022px;}
.y9_c00362{bottom:689.775022px;}
.y8_c00362{bottom:708.825022px;}
.y7_c00362{bottom:728.325022px;}
.y6_c00362{bottom:748.125022px;}
.y5_c00362{bottom:767.550022px;}
.y4_c00362{bottom:786.225022px;}
.y3_c00362{bottom:806.025022px;}
.y2_c00362{bottom:825.525022px;}
.y1_c00362{bottom:844.575022px;}
.y17_c00362{bottom:886.875022px;}
.h3_c00362{height:50.028809px;}
.h4_c00362{height:50.053711px;}
.h5_c00362{height:50.353711px;}
.h2_c00362{height:58.886719px;}
.h1_c00362{height:957.750000px;}
.h0_c00362{height:957.975000px;}
.w1_c00362{width:643.500000px;}
.w0_c00362{width:643.650000px;}
.x0_c00362{left:0.000000px;}
.x2_c00362{left:90.375000px;}
.x1_c00362{left:91.425000px;}
.x4_c00362{left:97.575000px;}
.x3_c00362{left:106.950000px;}
.x5_c00362{left:131.025000px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls0_c00362{letter-spacing:0.000000pt;}
.ws1_c00362{word-spacing:-13.333333pt;}
.ws0_c00362{word-spacing:-11.333333pt;}
.ws2_c00362{word-spacing:0.000000pt;}
._11_c00362{margin-left:-12.693333pt;}
._6_c00362{margin-left:-10.560000pt;}
._7_c00362{margin-left:-9.440000pt;}
._4_c00362{margin-left:-7.520000pt;}
._19_c00362{margin-left:-4.920085pt;}
._18_c00362{margin-left:-3.879931pt;}
._12_c00362{margin-left:-2.880000pt;}
._0_c00362{margin-left:-1.120000pt;}
._2_c00362{width:1.600000pt;}
._8_c00362{width:2.560000pt;}
._5_c00362{width:3.680000pt;}
._13_c00362{width:4.586667pt;}
._a_c00362{width:5.973333pt;}
._b_c00362{width:6.880000pt;}
._c_c00362{width:7.893333pt;}
._9_c00362{width:9.173333pt;}
._1_c00362{width:10.080000pt;}
._3_c00362{width:10.986667pt;}
._10_c00362{width:12.426667pt;}
._14_c00362{width:14.293333pt;}
._e_c00362{width:15.200000pt;}
._d_c00362{width:16.853333pt;}
._f_c00362{width:18.240000pt;}
._17_c00362{width:19.226667pt;}
._16_c00362{width:20.373333pt;}
._15_c00362{width:21.600000pt;}
._1a_c00362{width:22.746667pt;}
._1b_c00362{width:26.266749pt;}
.fs1_c00362{font-size:45.333333pt;}
.fs0_c00362{font-size:53.333333pt;}
.y0_c00362{bottom:0.000000pt;}
.y2b_c00362{bottom:57.600020pt;}
.y2a_c00362{bottom:97.933353pt;}
.y29_c00362{bottom:111.666686pt;}
.y28_c00362{bottom:125.466686pt;}
.y27_c00362{bottom:138.600020pt;}
.y26_c00362{bottom:152.666686pt;}
.y25_c00362{bottom:165.800020pt;}
.y24_c00362{bottom:179.866686pt;}
.y23_c00362{bottom:193.000020pt;}
.y22_c00362{bottom:206.733353pt;}
.y21_c00362{bottom:220.200020pt;}
.y20_c00362{bottom:233.933353pt;}
.y1f_c00362{bottom:247.400020pt;}
.y1e_c00362{bottom:261.466686pt;}
.y1d_c00362{bottom:274.866686pt;}
.y1c_c00362{bottom:288.333353pt;}
.y1b_c00362{bottom:301.800020pt;}
.y1a_c00362{bottom:315.800020pt;}
.y19_c00362{bottom:329.266686pt;}
.y18_c00362{bottom:342.733353pt;}
.y16_c00362{bottom:388.533353pt;}
.y15_c00362{bottom:405.800020pt;}
.y14_c00362{bottom:423.066686pt;}
.y13_c00362{bottom:440.000020pt;}
.y12_c00362{bottom:457.266686pt;}
.y11_c00362{bottom:474.866686pt;}
.y10_c00362{bottom:491.866686pt;}
.yf_c00362{bottom:509.133353pt;}
.ye_c00362{bottom:526.733353pt;}
.yd_c00362{bottom:544.000020pt;}
.yc_c00362{bottom:561.266686pt;}
.yb_c00362{bottom:578.600020pt;}
.ya_c00362{bottom:595.866686pt;}
.y9_c00362{bottom:613.133353pt;}
.y8_c00362{bottom:630.066686pt;}
.y7_c00362{bottom:647.400020pt;}
.y6_c00362{bottom:665.000020pt;}
.y5_c00362{bottom:682.266686pt;}
.y4_c00362{bottom:698.866686pt;}
.y3_c00362{bottom:716.466686pt;}
.y2_c00362{bottom:733.800020pt;}
.y1_c00362{bottom:750.733353pt;}
.y17_c00362{bottom:788.333353pt;}
.h3_c00362{height:44.470052pt;}
.h4_c00362{height:44.492188pt;}
.h5_c00362{height:44.758854pt;}
.h2_c00362{height:52.343750pt;}
.h1_c00362{height:851.333333pt;}
.h0_c00362{height:851.533333pt;}
.w1_c00362{width:572.000000pt;}
.w0_c00362{width:572.133333pt;}
.x0_c00362{left:0.000000pt;}
.x2_c00362{left:80.333333pt;}
.x1_c00362{left:81.266667pt;}
.x4_c00362{left:86.733333pt;}
.x3_c00362{left:95.066667pt;}
.x5_c00362{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_41e938440a74294943ba9b0d.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00363;src:url('chunks/assets/font_1fd5473ced7a99b69ad3cb8c.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.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:-15.000000px;}
.ws1_c00363{word-spacing:-12.750000px;}
.ws2_c00363{word-spacing:0.000000px;}
._18_c00363{margin-left:-15.821844px;}
._6_c00363{margin-left:-12.794970px;}
._7_c00363{margin-left:-11.205030px;}
._11_c00363{margin-left:-10.032168px;}
._17_c00363{margin-left:-8.805108px;}
._f_c00363{margin-left:-7.763496px;}
._16_c00363{margin-left:-5.654970px;}
._12_c00363{margin-left:-3.882222px;}
._1_c00363{margin-left:-2.879766px;}
._2_c00363{margin-left:-1.448910px;}
._0_c00363{width:1.850994px;}
._8_c00363{width:2.889126px;}
._c_c00363{width:4.547712px;}
._3_c00363{width:6.576024px;}
._a_c00363{width:7.758012px;}
._5_c00363{width:9.078012px;}
._4_c00363{width:10.620000px;}
._b_c00363{width:11.925030px;}
._9_c00363{width:13.058946px;}
._d_c00363{width:16.137078px;}
._e_c00363{width:17.943066px;}
._10_c00363{width:19.500000px;}
._15_c00363{width:20.697078px;}
._14_c00363{width:22.485030px;}
._13_c00363{width:24.161988px;}
.fc1_c00363{color:transparent;}
.fc0_c00363{color:rgb(35,31,32);}
.fs0_c00363{font-size:51.000000px;}
.fs1_c00363{font-size:60.000000px;}
.y0_c00363{bottom:0.000000px;}
.y26_c00363{bottom:64.425022px;}
.y25_c00363{bottom:110.175022px;}
.y24_c00363{bottom:125.325022px;}
.y23_c00363{bottom:141.150022px;}
.y22_c00363{bottom:155.925022px;}
.y21_c00363{bottom:171.375022px;}
.y20_c00363{bottom:186.525022px;}
.y1f_c00363{bottom:202.350022px;}
.y1e_c00363{bottom:217.425022px;}
.y1d_c00363{bottom:232.575022px;}
.y1c_c00363{bottom:247.725022px;}
.y1b_c00363{bottom:294.525022px;}
.y1a_c00363{bottom:313.575022px;}
.y19_c00363{bottom:333.000022px;}
.y18_c00363{bottom:352.800022px;}
.y17_c00363{bottom:371.925022px;}
.y16_c00363{bottom:391.725022px;}
.y15_c00363{bottom:410.775022px;}
.y14_c00363{bottom:430.575022px;}
.y13_c00363{bottom:450.000022px;}
.y12_c00363{bottom:469.425022px;}
.y11_c00363{bottom:488.550022px;}
.y10_c00363{bottom:507.975022px;}
.yf_c00363{bottom:527.775022px;}
.ye_c00363{bottom:546.825022px;}
.yd_c00363{bottom:566.325022px;}
.yc_c00363{bottom:585.750022px;}
.yb_c00363{bottom:605.175022px;}
.ya_c00363{bottom:624.975022px;}
.y9_c00363{bottom:665.625022px;}
.y8_c00363{bottom:728.625022px;}
.y7_c00363{bottom:748.125022px;}
.y6_c00363{bottom:767.175022px;}
.y5_c00363{bottom:786.600022px;}
.y4_c00363{bottom:806.025022px;}
.y3_c00363{bottom:825.525022px;}
.y2_c00363{bottom:844.950022px;}
.y1_c00363{bottom:886.725022px;}
.h2_c00363{height:50.028809px;}
.h4_c00363{height:50.053711px;}
.h3_c00363{height:58.886719px;}
.h1_c00363{height:957.750000px;}
.h0_c00363{height:957.975000px;}
.w0_c00363{width:641.850030px;}
.w1_c00363{width:642.000000px;}
.x0_c00363{left:0.000000px;}
.x2_c00363{left:80.250000px;}
.x3_c00363{left:81.375000px;}
.x4_c00363{left:87.825000px;}
.x5_c00363{left:121.650000px;}
.x1_c00363{left:229.350000px;}
.x6_c00363{left:531.375000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls0_c00363{letter-spacing:0.000000pt;}
.ws0_c00363{word-spacing:-13.333333pt;}
.ws1_c00363{word-spacing:-11.333333pt;}
.ws2_c00363{word-spacing:0.000000pt;}
._18_c00363{margin-left:-14.063861pt;}
._6_c00363{margin-left:-11.373307pt;}
._7_c00363{margin-left:-9.960027pt;}
._11_c00363{margin-left:-8.917483pt;}
._17_c00363{margin-left:-7.826763pt;}
._f_c00363{margin-left:-6.900885pt;}
._16_c00363{margin-left:-5.026640pt;}
._12_c00363{margin-left:-3.450864pt;}
._1_c00363{margin-left:-2.559792pt;}
._2_c00363{margin-left:-1.287920pt;}
._0_c00363{width:1.645328pt;}
._8_c00363{width:2.568112pt;}
._c_c00363{width:4.042411pt;}
._3_c00363{width:5.845355pt;}
._a_c00363{width:6.896011pt;}
._5_c00363{width:8.069344pt;}
._4_c00363{width:9.440000pt;}
._b_c00363{width:10.600027pt;}
._9_c00363{width:11.607952pt;}
._d_c00363{width:14.344069pt;}
._e_c00363{width:15.949392pt;}
._10_c00363{width:17.333333pt;}
._15_c00363{width:18.397403pt;}
._14_c00363{width:19.986693pt;}
._13_c00363{width:21.477323pt;}
.fs0_c00363{font-size:45.333333pt;}
.fs1_c00363{font-size:53.333333pt;}
.y0_c00363{bottom:0.000000pt;}
.y26_c00363{bottom:57.266686pt;}
.y25_c00363{bottom:97.933353pt;}
.y24_c00363{bottom:111.400020pt;}
.y23_c00363{bottom:125.466686pt;}
.y22_c00363{bottom:138.600020pt;}
.y21_c00363{bottom:152.333353pt;}
.y20_c00363{bottom:165.800020pt;}
.y1f_c00363{bottom:179.866686pt;}
.y1e_c00363{bottom:193.266686pt;}
.y1d_c00363{bottom:206.733353pt;}
.y1c_c00363{bottom:220.200020pt;}
.y1b_c00363{bottom:261.800020pt;}
.y1a_c00363{bottom:278.733353pt;}
.y19_c00363{bottom:296.000020pt;}
.y18_c00363{bottom:313.600020pt;}
.y17_c00363{bottom:330.600020pt;}
.y16_c00363{bottom:348.200020pt;}
.y15_c00363{bottom:365.133353pt;}
.y14_c00363{bottom:382.733353pt;}
.y13_c00363{bottom:400.000020pt;}
.y12_c00363{bottom:417.266686pt;}
.y11_c00363{bottom:434.266686pt;}
.y10_c00363{bottom:451.533353pt;}
.yf_c00363{bottom:469.133353pt;}
.ye_c00363{bottom:486.066686pt;}
.yd_c00363{bottom:503.400020pt;}
.yc_c00363{bottom:520.666686pt;}
.yb_c00363{bottom:537.933353pt;}
.ya_c00363{bottom:555.533353pt;}
.y9_c00363{bottom:591.666686pt;}
.y8_c00363{bottom:647.666686pt;}
.y7_c00363{bottom:665.000020pt;}
.y6_c00363{bottom:681.933353pt;}
.y5_c00363{bottom:699.200020pt;}
.y4_c00363{bottom:716.466686pt;}
.y3_c00363{bottom:733.800020pt;}
.y2_c00363{bottom:751.066686pt;}
.y1_c00363{bottom:788.200020pt;}
.h2_c00363{height:44.470052pt;}
.h4_c00363{height:44.492188pt;}
.h3_c00363{height:52.343750pt;}
.h1_c00363{height:851.333333pt;}
.h0_c00363{height:851.533333pt;}
.w0_c00363{width:570.533360pt;}
.w1_c00363{width:570.666667pt;}
.x0_c00363{left:0.000000pt;}
.x2_c00363{left:71.333333pt;}
.x3_c00363{left:72.333333pt;}
.x4_c00363{left:78.066667pt;}
.x5_c00363{left:108.133333pt;}
.x1_c00363{left:203.866667pt;}
.x6_c00363{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d4421e0cf4407026ff4384cb.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00364;src:url('chunks/assets/font_5cc5eb91db5bbeed9cdc8cbc.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00364{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00364{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00364{vertical-align:0.000000px;}
.ls0_c00364{letter-spacing:0.000000px;}
.sc__c00364{text-shadow:none;}
.sc0_c00364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00364{-webkit-text-stroke:0px transparent;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00364{word-spacing:-15.000000px;}
.ws0_c00364{word-spacing:-12.750000px;}
.ws2_c00364{word-spacing:0.000000px;}
._5_c00364{margin-left:-11.700000px;}
._4_c00364{margin-left:-9.879009px;}
._15_c00364{margin-left:-5.798955px;}
._10_c00364{margin-left:-4.494048px;}
._1_c00364{margin-left:-3.300006px;}
._0_c00364{margin-left:-1.760979px;}
._2_c00364{width:1.839009px;}
._3_c00364{width:3.320967px;}
._6_c00364{width:5.240985px;}
._11_c00364{width:6.437934px;}
._a_c00364{width:7.445946px;}
._7_c00364{width:9.044955px;}
._8_c00364{width:10.244943px;}
._9_c00364{width:11.501994px;}
._e_c00364{width:13.700955px;}
._f_c00364{width:16.019988px;}
._b_c00364{width:17.462973px;}
._c_c00364{width:19.403988px;}
._d_c00364{width:21.104895px;}
._12_c00364{width:22.760991px;}
._13_c00364{width:24.527928px;}
._14_c00364{width:25.610976px;}
.fc1_c00364{color:transparent;}
.fc0_c00364{color:rgb(35,31,32);}
.fs0_c00364{font-size:51.000000px;}
.fs1_c00364{font-size:60.000000px;}
.y0_c00364{bottom:0.000000px;}
.y28_c00364{bottom:64.800022px;}
.y27_c00364{bottom:110.550022px;}
.y26_c00364{bottom:125.325022px;}
.y25_c00364{bottom:140.775022px;}
.y24_c00364{bottom:155.925022px;}
.y23_c00364{bottom:171.375022px;}
.y22_c00364{bottom:186.525022px;}
.y21_c00364{bottom:202.350022px;}
.y20_c00364{bottom:217.125022px;}
.y1f_c00364{bottom:232.950022px;}
.y1e_c00364{bottom:283.350022px;}
.y1d_c00364{bottom:302.025022px;}
.y1c_c00364{bottom:321.525022px;}
.y1b_c00364{bottom:341.325022px;}
.y1a_c00364{bottom:360.750022px;}
.y19_c00364{bottom:380.175022px;}
.y18_c00364{bottom:399.225022px;}
.y17_c00364{bottom:419.025022px;}
.y16_c00364{bottom:438.525022px;}
.y15_c00364{bottom:457.950022px;}
.y14_c00364{bottom:477.375022px;}
.y13_c00364{bottom:505.800022px;}
.y12_c00364{bottom:524.925022px;}
.y11_c00364{bottom:544.350022px;}
.y10_c00364{bottom:563.775022px;}
.yf_c00364{bottom:583.200022px;}
.ye_c00364{bottom:602.625022px;}
.yd_c00364{bottom:622.125022px;}
.yc_c00364{bottom:641.925022px;}
.yb_c00364{bottom:660.975022px;}
.ya_c00364{bottom:680.400022px;}
.y9_c00364{bottom:699.825022px;}
.y8_c00364{bottom:719.625022px;}
.y7_c00364{bottom:738.750022px;}
.y6_c00364{bottom:767.175022px;}
.y5_c00364{bottom:786.600022px;}
.y4_c00364{bottom:805.725022px;}
.y3_c00364{bottom:825.525022px;}
.y2_c00364{bottom:844.575022px;}
.y1_c00364{bottom:886.875022px;}
.h2_c00364{height:50.028809px;}
.h5_c00364{height:50.053711px;}
.h4_c00364{height:58.857422px;}
.h3_c00364{height:58.886719px;}
.h1_c00364{height:957.750000px;}
.h0_c00364{height:957.975000px;}
.w1_c00364{width:643.500000px;}
.w0_c00364{width:643.650000px;}
.x0_c00364{left:0.000000px;}
.x1_c00364{left:90.750000px;}
.x2_c00364{left:91.800000px;}
.x6_c00364{left:97.575000px;}
.x5_c00364{left:105.450000px;}
.x3_c00364{left:106.950000px;}
.x4_c00364{left:108.000000px;}
.x8_c00364{left:130.350000px;}
.x7_c00364{left:131.400000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls0_c00364{letter-spacing:0.000000pt;}
.ws1_c00364{word-spacing:-13.333333pt;}
.ws0_c00364{word-spacing:-11.333333pt;}
.ws2_c00364{word-spacing:0.000000pt;}
._5_c00364{margin-left:-10.400000pt;}
._4_c00364{margin-left:-8.781341pt;}
._15_c00364{margin-left:-5.154627pt;}
._10_c00364{margin-left:-3.994709pt;}
._1_c00364{margin-left:-2.933339pt;}
._0_c00364{margin-left:-1.565315pt;}
._2_c00364{width:1.634675pt;}
._3_c00364{width:2.951971pt;}
._6_c00364{width:4.658653pt;}
._11_c00364{width:5.722608pt;}
._a_c00364{width:6.618619pt;}
._7_c00364{width:8.039960pt;}
._8_c00364{width:9.106616pt;}
._9_c00364{width:10.223995pt;}
._e_c00364{width:12.178627pt;}
._f_c00364{width:14.239989pt;}
._b_c00364{width:15.522643pt;}
._c_c00364{width:17.247989pt;}
._d_c00364{width:18.759907pt;}
._12_c00364{width:20.231992pt;}
._13_c00364{width:21.802603pt;}
._14_c00364{width:22.765312pt;}
.fs0_c00364{font-size:45.333333pt;}
.fs1_c00364{font-size:53.333333pt;}
.y0_c00364{bottom:0.000000pt;}
.y28_c00364{bottom:57.600020pt;}
.y27_c00364{bottom:98.266686pt;}
.y26_c00364{bottom:111.400020pt;}
.y25_c00364{bottom:125.133353pt;}
.y24_c00364{bottom:138.600020pt;}
.y23_c00364{bottom:152.333353pt;}
.y22_c00364{bottom:165.800020pt;}
.y21_c00364{bottom:179.866686pt;}
.y20_c00364{bottom:193.000020pt;}
.y1f_c00364{bottom:207.066686pt;}
.y1e_c00364{bottom:251.866686pt;}
.y1d_c00364{bottom:268.466686pt;}
.y1c_c00364{bottom:285.800020pt;}
.y1b_c00364{bottom:303.400020pt;}
.y1a_c00364{bottom:320.666686pt;}
.y19_c00364{bottom:337.933353pt;}
.y18_c00364{bottom:354.866686pt;}
.y17_c00364{bottom:372.466686pt;}
.y16_c00364{bottom:389.800020pt;}
.y15_c00364{bottom:407.066686pt;}
.y14_c00364{bottom:424.333353pt;}
.y13_c00364{bottom:449.600020pt;}
.y12_c00364{bottom:466.600020pt;}
.y11_c00364{bottom:483.866686pt;}
.y10_c00364{bottom:501.133353pt;}
.yf_c00364{bottom:518.400020pt;}
.ye_c00364{bottom:535.666686pt;}
.yd_c00364{bottom:553.000020pt;}
.yc_c00364{bottom:570.600020pt;}
.yb_c00364{bottom:587.533353pt;}
.ya_c00364{bottom:604.800020pt;}
.y9_c00364{bottom:622.066686pt;}
.y8_c00364{bottom:639.666686pt;}
.y7_c00364{bottom:656.666686pt;}
.y6_c00364{bottom:681.933353pt;}
.y5_c00364{bottom:699.200020pt;}
.y4_c00364{bottom:716.200020pt;}
.y3_c00364{bottom:733.800020pt;}
.y2_c00364{bottom:750.733353pt;}
.y1_c00364{bottom:788.333353pt;}
.h2_c00364{height:44.470052pt;}
.h5_c00364{height:44.492188pt;}
.h4_c00364{height:52.317708pt;}
.h3_c00364{height:52.343750pt;}
.h1_c00364{height:851.333333pt;}
.h0_c00364{height:851.533333pt;}
.w1_c00364{width:572.000000pt;}
.w0_c00364{width:572.133333pt;}
.x0_c00364{left:0.000000pt;}
.x1_c00364{left:80.666667pt;}
.x2_c00364{left:81.600000pt;}
.x6_c00364{left:86.733333pt;}
.x5_c00364{left:93.733333pt;}
.x3_c00364{left:95.066667pt;}
.x4_c00364{left:96.000000pt;}
.x8_c00364{left:115.866667pt;}
.x7_c00364{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_957553285928ebf7983703c6.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00365;src:url('chunks/assets/font_621915624f7e0206dfa13f5c.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00365{letter-spacing:0.000000px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00365{word-spacing:-15.000000px;}
.ws0_c00365{word-spacing:-12.750000px;}
.ws2_c00365{word-spacing:0.000000px;}
._f_c00365{margin-left:-15.600000px;}
._13_c00365{margin-left:-14.315790px;}
._6_c00365{margin-left:-13.179066px;}
._8_c00365{margin-left:-10.800000px;}
._12_c00365{margin-left:-8.319162px;}
._9_c00365{margin-left:-5.738586px;}
._7_c00365{margin-left:-4.515570px;}
._1_c00365{margin-left:-2.879766px;}
._2_c00365{margin-left:-1.448910px;}
._0_c00365{width:1.850994px;}
._3_c00365{width:3.462108px;}
._b_c00365{width:4.670994px;}
._a_c00365{width:6.207018px;}
._15_c00365{width:7.296024px;}
._c_c00365{width:8.625546px;}
._10_c00365{width:9.633900px;}
._5_c00365{width:10.827018px;}
._14_c00365{width:11.890038px;}
._4_c00365{width:12.967974px;}
._d_c00365{width:16.056024px;}
._e_c00365{width:17.555466px;}
._11_c00365{width:18.615570px;}
._16_c00365{width:20.414970px;}
._19_c00365{width:22.076523px;}
._17_c00365{width:25.076496px;}
._18_c00365{width:27.938208px;}
.fc1_c00365{color:transparent;}
.fc0_c00365{color:rgb(35,31,32);}
.fs0_c00365{font-size:51.000000px;}
.fs1_c00365{font-size:60.000000px;}
.y0_c00365{bottom:0.000000px;}
.y25_c00365{bottom:64.425022px;}
.y24_c00365{bottom:110.175022px;}
.y23_c00365{bottom:125.625022px;}
.y22_c00365{bottom:141.150022px;}
.y21_c00365{bottom:155.925022px;}
.y20_c00365{bottom:171.375022px;}
.y1f_c00365{bottom:186.825022px;}
.y1e_c00365{bottom:202.350022px;}
.y1d_c00365{bottom:217.125022px;}
.y1c_c00365{bottom:232.575022px;}
.y1b_c00365{bottom:247.725022px;}
.y1a_c00365{bottom:287.625022px;}
.y19_c00365{bottom:306.750022px;}
.y18_c00365{bottom:326.475022px;}
.y17_c00365{bottom:345.600022px;}
.y16_c00365{bottom:364.725022px;}
.y15_c00365{bottom:384.150022px;}
.y14_c00365{bottom:403.200022px;}
.y13_c00365{bottom:422.625022px;}
.y12_c00365{bottom:442.125022px;}
.y11_c00365{bottom:461.175022px;}
.y10_c00365{bottom:497.925022px;}
.yf_c00365{bottom:553.350022px;}
.ye_c00365{bottom:572.400022px;}
.yd_c00365{bottom:591.525022px;}
.yc_c00365{bottom:610.950022px;}
.yb_c00365{bottom:630.000022px;}
.ya_c00365{bottom:649.800022px;}
.y9_c00365{bottom:668.550022px;}
.y8_c00365{bottom:702.000022px;}
.y7_c00365{bottom:748.800022px;}
.y6_c00365{bottom:767.550022px;}
.y5_c00365{bottom:787.350022px;}
.y4_c00365{bottom:806.325022px;}
.y3_c00365{bottom:825.825022px;}
.y2_c00365{bottom:845.325022px;}
.y1_c00365{bottom:886.725022px;}
.h2_c00365{height:50.028809px;}
.h4_c00365{height:50.053711px;}
.h3_c00365{height:58.886719px;}
.h1_c00365{height:957.750000px;}
.h0_c00365{height:957.975000px;}
.w0_c00365{width:641.850030px;}
.w1_c00365{width:642.000000px;}
.x0_c00365{left:0.000000px;}
.x3_c00365{left:80.250000px;}
.x2_c00365{left:81.375000px;}
.x4_c00365{left:87.825000px;}
.x5_c00365{left:120.975000px;}
.x1_c00365{left:229.350000px;}
.x6_c00365{left:531.375000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls0_c00365{letter-spacing:0.000000pt;}
.ws1_c00365{word-spacing:-13.333333pt;}
.ws0_c00365{word-spacing:-11.333333pt;}
.ws2_c00365{word-spacing:0.000000pt;}
._f_c00365{margin-left:-13.866667pt;}
._13_c00365{margin-left:-12.725147pt;}
._6_c00365{margin-left:-11.714725pt;}
._8_c00365{margin-left:-9.600000pt;}
._12_c00365{margin-left:-7.394811pt;}
._9_c00365{margin-left:-5.100965pt;}
._7_c00365{margin-left:-4.013840pt;}
._1_c00365{margin-left:-2.559792pt;}
._2_c00365{margin-left:-1.287920pt;}
._0_c00365{width:1.645328pt;}
._3_c00365{width:3.077429pt;}
._b_c00365{width:4.151995pt;}
._a_c00365{width:5.517349pt;}
._15_c00365{width:6.485355pt;}
._c_c00365{width:7.667152pt;}
._10_c00365{width:8.563467pt;}
._5_c00365{width:9.624016pt;}
._14_c00365{width:10.568923pt;}
._4_c00365{width:11.527088pt;}
._d_c00365{width:14.272021pt;}
._e_c00365{width:15.604859pt;}
._11_c00365{width:16.547173pt;}
._16_c00365{width:18.146640pt;}
._19_c00365{width:19.623576pt;}
._17_c00365{width:22.290219pt;}
._18_c00365{width:24.833963pt;}
.fs0_c00365{font-size:45.333333pt;}
.fs1_c00365{font-size:53.333333pt;}
.y0_c00365{bottom:0.000000pt;}
.y25_c00365{bottom:57.266686pt;}
.y24_c00365{bottom:97.933353pt;}
.y23_c00365{bottom:111.666686pt;}
.y22_c00365{bottom:125.466686pt;}
.y21_c00365{bottom:138.600020pt;}
.y20_c00365{bottom:152.333353pt;}
.y1f_c00365{bottom:166.066686pt;}
.y1e_c00365{bottom:179.866686pt;}
.y1d_c00365{bottom:193.000020pt;}
.y1c_c00365{bottom:206.733353pt;}
.y1b_c00365{bottom:220.200020pt;}
.y1a_c00365{bottom:255.666686pt;}
.y19_c00365{bottom:272.666686pt;}
.y18_c00365{bottom:290.200020pt;}
.y17_c00365{bottom:307.200020pt;}
.y16_c00365{bottom:324.200020pt;}
.y15_c00365{bottom:341.466686pt;}
.y14_c00365{bottom:358.400020pt;}
.y13_c00365{bottom:375.666686pt;}
.y12_c00365{bottom:393.000020pt;}
.y11_c00365{bottom:409.933353pt;}
.y10_c00365{bottom:442.600020pt;}
.yf_c00365{bottom:491.866686pt;}
.ye_c00365{bottom:508.800020pt;}
.yd_c00365{bottom:525.800020pt;}
.yc_c00365{bottom:543.066686pt;}
.yb_c00365{bottom:560.000020pt;}
.ya_c00365{bottom:577.600020pt;}
.y9_c00365{bottom:594.266686pt;}
.y8_c00365{bottom:624.000020pt;}
.y7_c00365{bottom:665.600020pt;}
.y6_c00365{bottom:682.266686pt;}
.y5_c00365{bottom:699.866686pt;}
.y4_c00365{bottom:716.733353pt;}
.y3_c00365{bottom:734.066686pt;}
.y2_c00365{bottom:751.400020pt;}
.y1_c00365{bottom:788.200020pt;}
.h2_c00365{height:44.470052pt;}
.h4_c00365{height:44.492188pt;}
.h3_c00365{height:52.343750pt;}
.h1_c00365{height:851.333333pt;}
.h0_c00365{height:851.533333pt;}
.w0_c00365{width:570.533360pt;}
.w1_c00365{width:570.666667pt;}
.x0_c00365{left:0.000000pt;}
.x3_c00365{left:71.333333pt;}
.x2_c00365{left:72.333333pt;}
.x4_c00365{left:78.066667pt;}
.x5_c00365{left:107.533333pt;}
.x1_c00365{left:203.866667pt;}
.x6_c00365{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4b777cb05967dcabb6ef003.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00366;src:url('chunks/assets/font_2f7375fbf85f5af147330491.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00366{letter-spacing:0.000000px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00366{word-spacing:-15.000000px;}
.ws0_c00366{word-spacing:-12.750000px;}
.ws2_c00366{word-spacing:0.000000px;}
._12_c00366{margin-left:-16.380000px;}
._d_c00366{margin-left:-14.520000px;}
._c_c00366{margin-left:-13.080000px;}
._19_c00366{margin-left:-11.834967px;}
._1b_c00366{margin-left:-10.713003px;}
._18_c00366{margin-left:-9.363147px;}
._14_c00366{margin-left:-7.680000px;}
._16_c00366{margin-left:-6.123024px;}
._e_c00366{margin-left:-4.080000px;}
._8_c00366{margin-left:-2.520000px;}
._7_c00366{margin-left:-1.440000px;}
._0_c00366{width:1.080000px;}
._1_c00366{width:2.100000px;}
._6_c00366{width:3.300000px;}
._a_c00366{width:5.220000px;}
._b_c00366{width:7.200000px;}
._3_c00366{width:8.580000px;}
._2_c00366{width:9.840000px;}
._5_c00366{width:11.580000px;}
._4_c00366{width:13.140000px;}
._1a_c00366{width:14.843973px;}
._f_c00366{width:16.140000px;}
._9_c00366{width:17.700000px;}
._10_c00366{width:18.720000px;}
._13_c00366{width:19.980000px;}
._11_c00366{width:21.000000px;}
._17_c00366{width:24.809979px;}
._1c_c00366{width:26.010000px;}
._15_c00366{width:27.389991px;}
.fc1_c00366{color:transparent;}
.fc0_c00366{color:rgb(35,31,32);}
.fs1_c00366{font-size:51.000000px;}
.fs0_c00366{font-size:60.000000px;}
.y0_c00366{bottom:0.000000px;}
.y29_c00366{bottom:64.425022px;}
.y28_c00366{bottom:110.175022px;}
.y27_c00366{bottom:125.325022px;}
.y26_c00366{bottom:141.150022px;}
.y25_c00366{bottom:155.925022px;}
.y24_c00366{bottom:171.750022px;}
.y23_c00366{bottom:186.825022px;}
.y22_c00366{bottom:201.975022px;}
.y21_c00366{bottom:217.125022px;}
.y20_c00366{bottom:232.950022px;}
.y1f_c00366{bottom:248.025022px;}
.y1e_c00366{bottom:263.175022px;}
.y1d_c00366{bottom:278.625022px;}
.y1c_c00366{bottom:293.775022px;}
.y1b_c00366{bottom:308.925022px;}
.y1a_c00366{bottom:324.375022px;}
.y19_c00366{bottom:339.525022px;}
.y18_c00366{bottom:354.975022px;}
.y17_c00366{bottom:370.125022px;}
.y16_c00366{bottom:385.950022px;}
.y15_c00366{bottom:401.025022px;}
.y13_c00366{bottom:495.000022px;}
.y12_c00366{bottom:514.425022px;}
.y11_c00366{bottom:534.225022px;}
.y10_c00366{bottom:553.350022px;}
.yf_c00366{bottom:573.150022px;}
.ye_c00366{bottom:592.575022px;}
.yd_c00366{bottom:611.625022px;}
.yc_c00366{bottom:631.125022px;}
.yb_c00366{bottom:650.925022px;}
.ya_c00366{bottom:669.975022px;}
.y9_c00366{bottom:689.775022px;}
.y8_c00366{bottom:709.200022px;}
.y7_c00366{bottom:728.625022px;}
.y6_c00366{bottom:747.750022px;}
.y5_c00366{bottom:767.175022px;}
.y4_c00366{bottom:786.225022px;}
.y3_c00366{bottom:805.725022px;}
.y2_c00366{bottom:825.525022px;}
.y1_c00366{bottom:844.950022px;}
.y14_c00366{bottom:886.875022px;}
.h3_c00366{height:50.028809px;}
.h4_c00366{height:50.053711px;}
.h2_c00366{height:58.886719px;}
.h1_c00366{height:957.750000px;}
.h0_c00366{height:957.975000px;}
.w1_c00366{width:643.500000px;}
.w0_c00366{width:643.650000px;}
.x0_c00366{left:0.000000px;}
.x1_c00366{left:90.375000px;}
.x2_c00366{left:91.425000px;}
.x4_c00366{left:97.575000px;}
.x3_c00366{left:107.250000px;}
.x5_c00366{left:130.650000px;}
.x6_c00366{left:131.775000px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls0_c00366{letter-spacing:0.000000pt;}
.ws1_c00366{word-spacing:-13.333333pt;}
.ws0_c00366{word-spacing:-11.333333pt;}
.ws2_c00366{word-spacing:0.000000pt;}
._12_c00366{margin-left:-14.560000pt;}
._d_c00366{margin-left:-12.906667pt;}
._c_c00366{margin-left:-11.626667pt;}
._19_c00366{margin-left:-10.519971pt;}
._1b_c00366{margin-left:-9.522669pt;}
._18_c00366{margin-left:-8.322797pt;}
._14_c00366{margin-left:-6.826667pt;}
._16_c00366{margin-left:-5.442688pt;}
._e_c00366{margin-left:-3.626667pt;}
._8_c00366{margin-left:-2.240000pt;}
._7_c00366{margin-left:-1.280000pt;}
._0_c00366{width:0.960000pt;}
._1_c00366{width:1.866667pt;}
._6_c00366{width:2.933333pt;}
._a_c00366{width:4.640000pt;}
._b_c00366{width:6.400000pt;}
._3_c00366{width:7.626667pt;}
._2_c00366{width:8.746667pt;}
._5_c00366{width:10.293333pt;}
._4_c00366{width:11.680000pt;}
._1a_c00366{width:13.194643pt;}
._f_c00366{width:14.346667pt;}
._9_c00366{width:15.733333pt;}
._10_c00366{width:16.640000pt;}
._13_c00366{width:17.760000pt;}
._11_c00366{width:18.666667pt;}
._17_c00366{width:22.053315pt;}
._1c_c00366{width:23.120000pt;}
._15_c00366{width:24.346659pt;}
.fs1_c00366{font-size:45.333333pt;}
.fs0_c00366{font-size:53.333333pt;}
.y0_c00366{bottom:0.000000pt;}
.y29_c00366{bottom:57.266686pt;}
.y28_c00366{bottom:97.933353pt;}
.y27_c00366{bottom:111.400020pt;}
.y26_c00366{bottom:125.466686pt;}
.y25_c00366{bottom:138.600020pt;}
.y24_c00366{bottom:152.666686pt;}
.y23_c00366{bottom:166.066686pt;}
.y22_c00366{bottom:179.533353pt;}
.y21_c00366{bottom:193.000020pt;}
.y20_c00366{bottom:207.066686pt;}
.y1f_c00366{bottom:220.466686pt;}
.y1e_c00366{bottom:233.933353pt;}
.y1d_c00366{bottom:247.666686pt;}
.y1c_c00366{bottom:261.133353pt;}
.y1b_c00366{bottom:274.600020pt;}
.y1a_c00366{bottom:288.333353pt;}
.y19_c00366{bottom:301.800020pt;}
.y18_c00366{bottom:315.533353pt;}
.y17_c00366{bottom:329.000020pt;}
.y16_c00366{bottom:343.066686pt;}
.y15_c00366{bottom:356.466686pt;}
.y13_c00366{bottom:440.000020pt;}
.y12_c00366{bottom:457.266686pt;}
.y11_c00366{bottom:474.866686pt;}
.y10_c00366{bottom:491.866686pt;}
.yf_c00366{bottom:509.466686pt;}
.ye_c00366{bottom:526.733353pt;}
.yd_c00366{bottom:543.666686pt;}
.yc_c00366{bottom:561.000020pt;}
.yb_c00366{bottom:578.600020pt;}
.ya_c00366{bottom:595.533353pt;}
.y9_c00366{bottom:613.133353pt;}
.y8_c00366{bottom:630.400020pt;}
.y7_c00366{bottom:647.666686pt;}
.y6_c00366{bottom:664.666686pt;}
.y5_c00366{bottom:681.933353pt;}
.y4_c00366{bottom:698.866686pt;}
.y3_c00366{bottom:716.200020pt;}
.y2_c00366{bottom:733.800020pt;}
.y1_c00366{bottom:751.066686pt;}
.y14_c00366{bottom:788.333353pt;}
.h3_c00366{height:44.470052pt;}
.h4_c00366{height:44.492188pt;}
.h2_c00366{height:52.343750pt;}
.h1_c00366{height:851.333333pt;}
.h0_c00366{height:851.533333pt;}
.w1_c00366{width:572.000000pt;}
.w0_c00366{width:572.133333pt;}
.x0_c00366{left:0.000000pt;}
.x1_c00366{left:80.333333pt;}
.x2_c00366{left:81.266667pt;}
.x4_c00366{left:86.733333pt;}
.x3_c00366{left:95.333333pt;}
.x5_c00366{left:116.133333pt;}
.x6_c00366{left:117.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b03072349dcff46ce1931318.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00367;src:url('chunks/assets/font_419fbaa06896589362adc317.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.sc__c00367{text-shadow:none;}
.sc0_c00367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00367{-webkit-text-stroke:0px transparent;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00367{word-spacing:-15.000000px;}
.ws0_c00367{word-spacing:-12.750000px;}
.ws2_c00367{word-spacing:0.000000px;}
._a_c00367{margin-left:-14.400120px;}
._9_c00367{margin-left:-12.599880px;}
._14_c00367{margin-left:-11.127018px;}
._11_c00367{margin-left:-6.174036px;}
._16_c00367{margin-left:-5.123856px;}
._13_c00367{margin-left:-4.055952px;}
._1_c00367{margin-left:-2.879766px;}
._2_c00367{margin-left:-1.448910px;}
._0_c00367{width:1.850994px;}
._6_c00367{width:2.991186px;}
._4_c00367{width:4.448910px;}
._3_c00367{width:5.898012px;}
._12_c00367{width:6.998826px;}
._5_c00367{width:8.058300px;}
._18_c00367{width:9.098469px;}
._8_c00367{width:10.217724px;}
._15_c00367{width:11.316552px;}
._c_c00367{width:12.327018px;}
._b_c00367{width:13.424958px;}
._19_c00367{width:14.699229px;}
._7_c00367{width:16.089006px;}
._10_c00367{width:17.190060px;}
._e_c00367{width:18.969006px;}
._d_c00367{width:20.220000px;}
._f_c00367{width:21.960000px;}
._17_c00367{width:26.276526px;}
._1b_c00367{width:27.707433px;}
._1a_c00367{width:29.138187px;}
.fc1_c00367{color:transparent;}
.fc0_c00367{color:rgb(35,31,32);}
.fs0_c00367{font-size:51.000000px;}
.fs1_c00367{font-size:60.000000px;}
.y0_c00367{bottom:0.000000px;}
.y2d_c00367{bottom:64.425022px;}
.y2c_c00367{bottom:110.550022px;}
.y2b_c00367{bottom:125.325022px;}
.y2a_c00367{bottom:141.150022px;}
.y29_c00367{bottom:155.925022px;}
.y28_c00367{bottom:171.750022px;}
.y27_c00367{bottom:186.525022px;}
.y26_c00367{bottom:202.350022px;}
.y25_c00367{bottom:216.975022px;}
.y24_c00367{bottom:232.500022px;}
.y23_c00367{bottom:248.025022px;}
.y22_c00367{bottom:263.550022px;}
.y21_c00367{bottom:278.325022px;}
.y20_c00367{bottom:293.775022px;}
.y1f_c00367{bottom:308.925022px;}
.y1e_c00367{bottom:324.750022px;}
.y1d_c00367{bottom:339.525022px;}
.y1c_c00367{bottom:355.350022px;}
.y1b_c00367{bottom:370.425022px;}
.y1a_c00367{bottom:385.950022px;}
.y19_c00367{bottom:400.725022px;}
.y18_c00367{bottom:416.175022px;}
.y17_c00367{bottom:431.325022px;}
.y16_c00367{bottom:447.150022px;}
.y15_c00367{bottom:462.225022px;}
.y14_c00367{bottom:477.750022px;}
.y13_c00367{bottom:492.525022px;}
.y12_c00367{bottom:507.975022px;}
.y11_c00367{bottom:523.425022px;}
.y10_c00367{bottom:538.575022px;}
.yf_c00367{bottom:554.025022px;}
.ye_c00367{bottom:611.625022px;}
.yd_c00367{bottom:631.125022px;}
.yc_c00367{bottom:650.550022px;}
.yb_c00367{bottom:670.350022px;}
.ya_c00367{bottom:689.775022px;}
.y9_c00367{bottom:709.200022px;}
.y8_c00367{bottom:728.625022px;}
.y7_c00367{bottom:747.750022px;}
.y6_c00367{bottom:767.550022px;}
.y5_c00367{bottom:786.225022px;}
.y4_c00367{bottom:805.725022px;}
.y3_c00367{bottom:825.525022px;}
.y2_c00367{bottom:844.575022px;}
.y1_c00367{bottom:886.725022px;}
.h2_c00367{height:50.028809px;}
.h4_c00367{height:50.053711px;}
.h3_c00367{height:58.886719px;}
.h1_c00367{height:957.750000px;}
.h0_c00367{height:957.975000px;}
.w0_c00367{width:641.850030px;}
.w1_c00367{width:642.000000px;}
.x0_c00367{left:0.000000px;}
.x3_c00367{left:81.000000px;}
.x4_c00367{left:87.825000px;}
.x2_c00367{left:97.200000px;}
.x5_c00367{left:120.225000px;}
.x6_c00367{left:121.350000px;}
.x1_c00367{left:229.350000px;}
.x7_c00367{left:531.375000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls0_c00367{letter-spacing:0.000000pt;}
.ws1_c00367{word-spacing:-13.333333pt;}
.ws0_c00367{word-spacing:-11.333333pt;}
.ws2_c00367{word-spacing:0.000000pt;}
._a_c00367{margin-left:-12.800107pt;}
._9_c00367{margin-left:-11.199893pt;}
._14_c00367{margin-left:-9.890683pt;}
._11_c00367{margin-left:-5.488032pt;}
._16_c00367{margin-left:-4.554539pt;}
._13_c00367{margin-left:-3.605291pt;}
._1_c00367{margin-left:-2.559792pt;}
._2_c00367{margin-left:-1.287920pt;}
._0_c00367{width:1.645328pt;}
._6_c00367{width:2.658832pt;}
._4_c00367{width:3.954587pt;}
._3_c00367{width:5.242677pt;}
._12_c00367{width:6.221179pt;}
._5_c00367{width:7.162933pt;}
._18_c00367{width:8.087528pt;}
._8_c00367{width:9.082421pt;}
._15_c00367{width:10.059157pt;}
._c_c00367{width:10.957349pt;}
._b_c00367{width:11.933296pt;}
._19_c00367{width:13.065981pt;}
._7_c00367{width:14.301339pt;}
._10_c00367{width:15.280053pt;}
._e_c00367{width:16.861339pt;}
._d_c00367{width:17.973333pt;}
._f_c00367{width:19.520000pt;}
._17_c00367{width:23.356912pt;}
._1b_c00367{width:24.628829pt;}
._1a_c00367{width:25.900611pt;}
.fs0_c00367{font-size:45.333333pt;}
.fs1_c00367{font-size:53.333333pt;}
.y0_c00367{bottom:0.000000pt;}
.y2d_c00367{bottom:57.266686pt;}
.y2c_c00367{bottom:98.266686pt;}
.y2b_c00367{bottom:111.400020pt;}
.y2a_c00367{bottom:125.466686pt;}
.y29_c00367{bottom:138.600020pt;}
.y28_c00367{bottom:152.666686pt;}
.y27_c00367{bottom:165.800020pt;}
.y26_c00367{bottom:179.866686pt;}
.y25_c00367{bottom:192.866686pt;}
.y24_c00367{bottom:206.666686pt;}
.y23_c00367{bottom:220.466686pt;}
.y22_c00367{bottom:234.266686pt;}
.y21_c00367{bottom:247.400020pt;}
.y20_c00367{bottom:261.133353pt;}
.y1f_c00367{bottom:274.600020pt;}
.y1e_c00367{bottom:288.666686pt;}
.y1d_c00367{bottom:301.800020pt;}
.y1c_c00367{bottom:315.866686pt;}
.y1b_c00367{bottom:329.266686pt;}
.y1a_c00367{bottom:343.066686pt;}
.y19_c00367{bottom:356.200020pt;}
.y18_c00367{bottom:369.933353pt;}
.y17_c00367{bottom:383.400020pt;}
.y16_c00367{bottom:397.466686pt;}
.y15_c00367{bottom:410.866686pt;}
.y14_c00367{bottom:424.666686pt;}
.y13_c00367{bottom:437.800020pt;}
.y12_c00367{bottom:451.533353pt;}
.y11_c00367{bottom:465.266686pt;}
.y10_c00367{bottom:478.733353pt;}
.yf_c00367{bottom:492.466686pt;}
.ye_c00367{bottom:543.666686pt;}
.yd_c00367{bottom:561.000020pt;}
.yc_c00367{bottom:578.266686pt;}
.yb_c00367{bottom:595.866686pt;}
.ya_c00367{bottom:613.133353pt;}
.y9_c00367{bottom:630.400020pt;}
.y8_c00367{bottom:647.666686pt;}
.y7_c00367{bottom:664.666686pt;}
.y6_c00367{bottom:682.266686pt;}
.y5_c00367{bottom:698.866686pt;}
.y4_c00367{bottom:716.200020pt;}
.y3_c00367{bottom:733.800020pt;}
.y2_c00367{bottom:750.733353pt;}
.y1_c00367{bottom:788.200020pt;}
.h2_c00367{height:44.470052pt;}
.h4_c00367{height:44.492188pt;}
.h3_c00367{height:52.343750pt;}
.h1_c00367{height:851.333333pt;}
.h0_c00367{height:851.533333pt;}
.w0_c00367{width:570.533360pt;}
.w1_c00367{width:570.666667pt;}
.x0_c00367{left:0.000000pt;}
.x3_c00367{left:72.000000pt;}
.x4_c00367{left:78.066667pt;}
.x2_c00367{left:86.400000pt;}
.x5_c00367{left:106.866667pt;}
.x6_c00367{left:107.866667pt;}
.x1_c00367{left:203.866667pt;}
.x7_c00367{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5bc1d59998d2db2ef6c1eee6.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00368;src:url('chunks/assets/font_b815b2422055110b6ded38c0.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00368{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws0_c00368{word-spacing:-12.750000px;}
.ws2_c00368{word-spacing:0.000000px;}
._e_c00368{margin-left:-15.701826px;}
._16_c00368{margin-left:-12.897003px;}
._9_c00368{margin-left:-11.700000px;}
._8_c00368{margin-left:-10.437183px;}
._d_c00368{margin-left:-8.583105px;}
._17_c00368{margin-left:-6.750024px;}
._f_c00368{margin-left:-5.669898px;}
._18_c00368{margin-left:-4.340745px;}
._1_c00368{margin-left:-3.300006px;}
._0_c00368{margin-left:-1.760979px;}
._2_c00368{width:1.839009px;}
._3_c00368{width:3.320967px;}
._b_c00368{width:4.620000px;}
._a_c00368{width:5.660991px;}
._7_c00368{width:7.320000px;}
._19_c00368{width:8.333796px;}
._c_c00368{width:9.356847px;}
._6_c00368{width:10.661994px;}
._5_c00368{width:11.924991px;}
._4_c00368{width:13.181970px;}
._10_c00368{width:16.727916px;}
._14_c00368{width:20.100006px;}
._15_c00368{width:21.431502px;}
._11_c00368{width:22.520991px;}
._12_c00368{width:25.064955px;}
._13_c00368{width:26.820012px;}
.fc1_c00368{color:transparent;}
.fc0_c00368{color:rgb(35,31,32);}
.fs0_c00368{font-size:51.000000px;}
.fs1_c00368{font-size:60.000000px;}
.y0_c00368{bottom:0.000000px;}
.y28_c00368{bottom:64.425022px;}
.y27_c00368{bottom:110.175022px;}
.y26_c00368{bottom:125.325022px;}
.y25_c00368{bottom:140.775022px;}
.y24_c00368{bottom:156.225022px;}
.y23_c00368{bottom:171.375022px;}
.y22_c00368{bottom:186.525022px;}
.y21_c00368{bottom:202.350022px;}
.y20_c00368{bottom:217.125022px;}
.y1f_c00368{bottom:232.575022px;}
.y1e_c00368{bottom:247.725022px;}
.y1d_c00368{bottom:263.175022px;}
.y1c_c00368{bottom:278.325022px;}
.y1b_c00368{bottom:294.150022px;}
.y1a_c00368{bottom:308.925022px;}
.y19_c00368{bottom:324.375022px;}
.y18_c00368{bottom:339.825022px;}
.y17_c00368{bottom:355.350022px;}
.y16_c00368{bottom:394.950022px;}
.y15_c00368{bottom:414.375022px;}
.y14_c00368{bottom:433.800022px;}
.y13_c00368{bottom:453.600022px;}
.y12_c00368{bottom:472.725022px;}
.y11_c00368{bottom:492.150022px;}
.y10_c00368{bottom:511.200022px;}
.yf_c00368{bottom:531.000022px;}
.ye_c00368{bottom:550.125022px;}
.yd_c00368{bottom:569.925022px;}
.yc_c00368{bottom:588.975022px;}
.yb_c00368{bottom:608.400022px;}
.ya_c00368{bottom:627.825022px;}
.y9_c00368{bottom:647.325022px;}
.y8_c00368{bottom:666.750022px;}
.y7_c00368{bottom:686.175022px;}
.y6_c00368{bottom:705.975022px;}
.y5_c00368{bottom:746.325022px;}
.y4_c00368{bottom:806.025022px;}
.y3_c00368{bottom:825.525022px;}
.y2_c00368{bottom:844.950022px;}
.y1_c00368{bottom:886.875022px;}
.h2_c00368{height:50.028809px;}
.h4_c00368{height:50.053711px;}
.h3_c00368{height:58.886719px;}
.h1_c00368{height:957.750000px;}
.h0_c00368{height:957.975000px;}
.w1_c00368{width:643.500000px;}
.w0_c00368{width:643.650000px;}
.x0_c00368{left:0.000000px;}
.x1_c00368{left:90.750000px;}
.x2_c00368{left:91.800000px;}
.x4_c00368{left:97.575000px;}
.x3_c00368{left:107.250000px;}
.x5_c00368{left:131.025000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls0_c00368{letter-spacing:0.000000pt;}
.ws1_c00368{word-spacing:-13.333333pt;}
.ws0_c00368{word-spacing:-11.333333pt;}
.ws2_c00368{word-spacing:0.000000pt;}
._e_c00368{margin-left:-13.957179pt;}
._16_c00368{margin-left:-11.464003pt;}
._9_c00368{margin-left:-10.400000pt;}
._8_c00368{margin-left:-9.277496pt;}
._d_c00368{margin-left:-7.629427pt;}
._17_c00368{margin-left:-6.000021pt;}
._f_c00368{margin-left:-5.039909pt;}
._18_c00368{margin-left:-3.858440pt;}
._1_c00368{margin-left:-2.933339pt;}
._0_c00368{margin-left:-1.565315pt;}
._2_c00368{width:1.634675pt;}
._3_c00368{width:2.951971pt;}
._b_c00368{width:4.106667pt;}
._a_c00368{width:5.031992pt;}
._7_c00368{width:6.506667pt;}
._19_c00368{width:7.407819pt;}
._c_c00368{width:8.317197pt;}
._6_c00368{width:9.477328pt;}
._5_c00368{width:10.599992pt;}
._4_c00368{width:11.717307pt;}
._10_c00368{width:14.869259pt;}
._14_c00368{width:17.866672pt;}
._15_c00368{width:19.050224pt;}
._11_c00368{width:20.018659pt;}
._12_c00368{width:22.279960pt;}
._13_c00368{width:23.840011pt;}
.fs0_c00368{font-size:45.333333pt;}
.fs1_c00368{font-size:53.333333pt;}
.y0_c00368{bottom:0.000000pt;}
.y28_c00368{bottom:57.266686pt;}
.y27_c00368{bottom:97.933353pt;}
.y26_c00368{bottom:111.400020pt;}
.y25_c00368{bottom:125.133353pt;}
.y24_c00368{bottom:138.866686pt;}
.y23_c00368{bottom:152.333353pt;}
.y22_c00368{bottom:165.800020pt;}
.y21_c00368{bottom:179.866686pt;}
.y20_c00368{bottom:193.000020pt;}
.y1f_c00368{bottom:206.733353pt;}
.y1e_c00368{bottom:220.200020pt;}
.y1d_c00368{bottom:233.933353pt;}
.y1c_c00368{bottom:247.400020pt;}
.y1b_c00368{bottom:261.466686pt;}
.y1a_c00368{bottom:274.600020pt;}
.y19_c00368{bottom:288.333353pt;}
.y18_c00368{bottom:302.066686pt;}
.y17_c00368{bottom:315.866686pt;}
.y16_c00368{bottom:351.066686pt;}
.y15_c00368{bottom:368.333353pt;}
.y14_c00368{bottom:385.600020pt;}
.y13_c00368{bottom:403.200020pt;}
.y12_c00368{bottom:420.200020pt;}
.y11_c00368{bottom:437.466686pt;}
.y10_c00368{bottom:454.400020pt;}
.yf_c00368{bottom:472.000020pt;}
.ye_c00368{bottom:489.000020pt;}
.yd_c00368{bottom:506.600020pt;}
.yc_c00368{bottom:523.533353pt;}
.yb_c00368{bottom:540.800020pt;}
.ya_c00368{bottom:558.066686pt;}
.y9_c00368{bottom:575.400020pt;}
.y8_c00368{bottom:592.666686pt;}
.y7_c00368{bottom:609.933353pt;}
.y6_c00368{bottom:627.533353pt;}
.y5_c00368{bottom:663.400020pt;}
.y4_c00368{bottom:716.466686pt;}
.y3_c00368{bottom:733.800020pt;}
.y2_c00368{bottom:751.066686pt;}
.y1_c00368{bottom:788.333353pt;}
.h2_c00368{height:44.470052pt;}
.h4_c00368{height:44.492188pt;}
.h3_c00368{height:52.343750pt;}
.h1_c00368{height:851.333333pt;}
.h0_c00368{height:851.533333pt;}
.w1_c00368{width:572.000000pt;}
.w0_c00368{width:572.133333pt;}
.x0_c00368{left:0.000000pt;}
.x1_c00368{left:80.666667pt;}
.x2_c00368{left:81.600000pt;}
.x4_c00368{left:86.733333pt;}
.x3_c00368{left:95.333333pt;}
.x5_c00368{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_de20d1f2f5622bcc8a686b7e.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00369;src:url('chunks/assets/font_5bfd9f580f3a5c544f4260d7.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00369{letter-spacing:0.000000px;}
.sc__c00369{text-shadow:none;}
.sc0_c00369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00369{-webkit-text-stroke:0px transparent;}
.sc0_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00369{word-spacing:-15.000000px;}
.ws1_c00369{word-spacing:-12.750000px;}
.ws2_c00369{word-spacing:0.000000px;}
._13_c00369{margin-left:-15.553110px;}
._f_c00369{margin-left:-12.876960px;}
._e_c00369{margin-left:-11.123040px;}
._12_c00369{margin-left:-5.642106px;}
._a_c00369{margin-left:-4.500468px;}
._1_c00369{margin-left:-2.879766px;}
._2_c00369{margin-left:-1.448910px;}
._0_c00369{width:1.850994px;}
._b_c00369{width:3.045030px;}
._d_c00369{width:4.533918px;}
._c_c00369{width:5.579532px;}
._10_c00369{width:7.491930px;}
._11_c00369{width:9.224094px;}
._6_c00369{width:10.914036px;}
._5_c00369{width:12.012048px;}
._4_c00369{width:13.107018px;}
._15_c00369{width:14.895078px;}
._7_c00369{width:16.020000px;}
._8_c00369{width:17.316024px;}
._3_c00369{width:19.080000px;}
._9_c00369{width:21.900000px;}
._14_c00369{width:23.645640px;}
._16_c00369{width:25.076496px;}
._17_c00369{width:26.276496px;}
.fc1_c00369{color:transparent;}
.fc0_c00369{color:rgb(35,31,32);}
.fs0_c00369{font-size:51.000000px;}
.fs1_c00369{font-size:60.000000px;}
.y0_c00369{bottom:0.000000px;}
.y2a_c00369{bottom:64.425022px;}
.y29_c00369{bottom:110.550022px;}
.y28_c00369{bottom:125.625022px;}
.y27_c00369{bottom:140.775022px;}
.y26_c00369{bottom:156.225022px;}
.y25_c00369{bottom:171.375022px;}
.y24_c00369{bottom:186.825022px;}
.y23_c00369{bottom:201.975022px;}
.y22_c00369{bottom:217.125022px;}
.y21_c00369{bottom:232.575022px;}
.y20_c00369{bottom:247.725022px;}
.y1f_c00369{bottom:263.175022px;}
.y1e_c00369{bottom:278.325022px;}
.y1d_c00369{bottom:294.075022px;}
.y1c_c00369{bottom:309.225022px;}
.y1b_c00369{bottom:324.375022px;}
.y1a_c00369{bottom:339.525022px;}
.y19_c00369{bottom:397.800022px;}
.y18_c00369{bottom:417.600022px;}
.y17_c00369{bottom:436.725022px;}
.y16_c00369{bottom:456.150022px;}
.y15_c00369{bottom:475.575022px;}
.y14_c00369{bottom:495.375022px;}
.y13_c00369{bottom:514.800022px;}
.y12_c00369{bottom:534.300022px;}
.y11_c00369{bottom:553.725022px;}
.y10_c00369{bottom:573.150022px;}
.yf_c00369{bottom:592.575022px;}
.ye_c00369{bottom:611.625022px;}
.yd_c00369{bottom:631.425022px;}
.yc_c00369{bottom:650.550022px;}
.yb_c00369{bottom:670.350022px;}
.ya_c00369{bottom:689.400022px;}
.y9_c00369{bottom:709.200022px;}
.y8_c00369{bottom:728.625022px;}
.y7_c00369{bottom:748.125022px;}
.y6_c00369{bottom:767.550022px;}
.y5_c00369{bottom:786.225022px;}
.y4_c00369{bottom:805.725022px;}
.y3_c00369{bottom:825.150022px;}
.y2_c00369{bottom:844.950022px;}
.y1_c00369{bottom:886.725022px;}
.h2_c00369{height:50.028809px;}
.h4_c00369{height:50.053711px;}
.h5_c00369{height:50.353711px;}
.h3_c00369{height:58.886719px;}
.h1_c00369{height:957.750000px;}
.h0_c00369{height:957.975000px;}
.w0_c00369{width:641.850030px;}
.w1_c00369{width:642.000000px;}
.x0_c00369{left:0.000000px;}
.x2_c00369{left:81.000000px;}
.x4_c00369{left:87.825000px;}
.x3_c00369{left:97.200000px;}
.x5_c00369{left:120.975000px;}
.x1_c00369{left:229.350000px;}
.x6_c00369{left:531.375000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls0_c00369{letter-spacing:0.000000pt;}
.ws0_c00369{word-spacing:-13.333333pt;}
.ws1_c00369{word-spacing:-11.333333pt;}
.ws2_c00369{word-spacing:0.000000pt;}
._13_c00369{margin-left:-13.824987pt;}
._f_c00369{margin-left:-11.446187pt;}
._e_c00369{margin-left:-9.887147pt;}
._12_c00369{margin-left:-5.015205pt;}
._a_c00369{margin-left:-4.000416pt;}
._1_c00369{margin-left:-2.559792pt;}
._2_c00369{margin-left:-1.287920pt;}
._0_c00369{width:1.645328pt;}
._b_c00369{width:2.706693pt;}
._d_c00369{width:4.030149pt;}
._c_c00369{width:4.959584pt;}
._10_c00369{width:6.659493pt;}
._11_c00369{width:8.199195pt;}
._6_c00369{width:9.701365pt;}
._5_c00369{width:10.677376pt;}
._4_c00369{width:11.650683pt;}
._15_c00369{width:13.240069pt;}
._7_c00369{width:14.240000pt;}
._8_c00369{width:15.392021pt;}
._3_c00369{width:16.960000pt;}
._9_c00369{width:19.466667pt;}
._14_c00369{width:21.018347pt;}
._16_c00369{width:22.290219pt;}
._17_c00369{width:23.356885pt;}
.fs0_c00369{font-size:45.333333pt;}
.fs1_c00369{font-size:53.333333pt;}
.y0_c00369{bottom:0.000000pt;}
.y2a_c00369{bottom:57.266686pt;}
.y29_c00369{bottom:98.266686pt;}
.y28_c00369{bottom:111.666686pt;}
.y27_c00369{bottom:125.133353pt;}
.y26_c00369{bottom:138.866686pt;}
.y25_c00369{bottom:152.333353pt;}
.y24_c00369{bottom:166.066686pt;}
.y23_c00369{bottom:179.533353pt;}
.y22_c00369{bottom:193.000020pt;}
.y21_c00369{bottom:206.733353pt;}
.y20_c00369{bottom:220.200020pt;}
.y1f_c00369{bottom:233.933353pt;}
.y1e_c00369{bottom:247.400020pt;}
.y1d_c00369{bottom:261.400020pt;}
.y1c_c00369{bottom:274.866686pt;}
.y1b_c00369{bottom:288.333353pt;}
.y1a_c00369{bottom:301.800020pt;}
.y19_c00369{bottom:353.600020pt;}
.y18_c00369{bottom:371.200020pt;}
.y17_c00369{bottom:388.200020pt;}
.y16_c00369{bottom:405.466686pt;}
.y15_c00369{bottom:422.733353pt;}
.y14_c00369{bottom:440.333353pt;}
.y13_c00369{bottom:457.600020pt;}
.y12_c00369{bottom:474.933353pt;}
.y11_c00369{bottom:492.200020pt;}
.y10_c00369{bottom:509.466686pt;}
.yf_c00369{bottom:526.733353pt;}
.ye_c00369{bottom:543.666686pt;}
.yd_c00369{bottom:561.266686pt;}
.yc_c00369{bottom:578.266686pt;}
.yb_c00369{bottom:595.866686pt;}
.ya_c00369{bottom:612.800020pt;}
.y9_c00369{bottom:630.400020pt;}
.y8_c00369{bottom:647.666686pt;}
.y7_c00369{bottom:665.000020pt;}
.y6_c00369{bottom:682.266686pt;}
.y5_c00369{bottom:698.866686pt;}
.y4_c00369{bottom:716.200020pt;}
.y3_c00369{bottom:733.466686pt;}
.y2_c00369{bottom:751.066686pt;}
.y1_c00369{bottom:788.200020pt;}
.h2_c00369{height:44.470052pt;}
.h4_c00369{height:44.492188pt;}
.h5_c00369{height:44.758854pt;}
.h3_c00369{height:52.343750pt;}
.h1_c00369{height:851.333333pt;}
.h0_c00369{height:851.533333pt;}
.w0_c00369{width:570.533360pt;}
.w1_c00369{width:570.666667pt;}
.x0_c00369{left:0.000000pt;}
.x2_c00369{left:72.000000pt;}
.x4_c00369{left:78.066667pt;}
.x3_c00369{left:86.400000pt;}
.x5_c00369{left:107.533333pt;}
.x1_c00369{left:203.866667pt;}
.x6_c00369{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc675e0e6cfa5bcc7f85bf53.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00370;src:url('chunks/assets/font_55bc825867fafe860138e50d.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00370{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00370{word-spacing:-12.750000px;}
.ws2_c00370{word-spacing:0.000000px;}
._17_c00370{margin-left:-16.392168px;}
._13_c00370{margin-left:-15.381399px;}
._3_c00370{margin-left:-13.920000px;}
._f_c00370{margin-left:-12.002937px;}
._19_c00370{margin-left:-10.737063px;}
._16_c00370{margin-left:-8.916498px;}
._a_c00370{margin-left:-5.820000px;}
._14_c00370{margin-left:-4.445868px;}
._c_c00370{margin-left:-3.300006px;}
._b_c00370{margin-left:-1.760979px;}
._5_c00370{width:1.020000px;}
._0_c00370{width:2.100000px;}
._9_c00370{width:3.240000px;}
._8_c00370{width:4.740000px;}
._1_c00370{width:5.880000px;}
._e_c00370{width:6.962937px;}
._d_c00370{width:8.040000px;}
._7_c00370{width:9.060000px;}
._4_c00370{width:10.260000px;}
._6_c00370{width:12.060000px;}
._2_c00370{width:13.200000px;}
._1e_c00370{width:14.655150px;}
._1f_c00370{width:15.739143px;}
._11_c00370{width:16.988811px;}
._10_c00370{width:18.600000px;}
._12_c00370{width:19.863357px;}
._15_c00370{width:21.242937px;}
._18_c00370{width:23.389935px;}
._1b_c00370{width:25.554126px;}
._1a_c00370{width:27.305874px;}
._1c_c00370{width:28.380000px;}
._1d_c00370{width:29.741958px;}
.fc1_c00370{color:transparent;}
.fc0_c00370{color:rgb(35,31,32);}
.fs1_c00370{font-size:51.000000px;}
.fs0_c00370{font-size:60.000000px;}
.y0_c00370{bottom:0.000000px;}
.y28_c00370{bottom:64.425022px;}
.y27_c00370{bottom:110.175022px;}
.y26_c00370{bottom:125.325022px;}
.y25_c00370{bottom:140.775022px;}
.y24_c00370{bottom:155.925022px;}
.y23_c00370{bottom:171.375022px;}
.y22_c00370{bottom:186.525022px;}
.y21_c00370{bottom:202.350022px;}
.y20_c00370{bottom:217.125022px;}
.y1f_c00370{bottom:232.575022px;}
.y1e_c00370{bottom:248.025022px;}
.y1d_c00370{bottom:263.175022px;}
.y1c_c00370{bottom:278.325022px;}
.y1b_c00370{bottom:293.775022px;}
.y1a_c00370{bottom:309.225022px;}
.y19_c00370{bottom:324.375022px;}
.y18_c00370{bottom:339.525022px;}
.y17_c00370{bottom:355.350022px;}
.y16_c00370{bottom:370.125022px;}
.y15_c00370{bottom:385.950022px;}
.y14_c00370{bottom:401.025022px;}
.y13_c00370{bottom:416.175022px;}
.y12_c00370{bottom:478.125022px;}
.y11_c00370{bottom:497.175022px;}
.y10_c00370{bottom:516.600022px;}
.yf_c00370{bottom:536.025022px;}
.ye_c00370{bottom:555.825022px;}
.yd_c00370{bottom:575.325022px;}
.yc_c00370{bottom:594.375022px;}
.yb_c00370{bottom:613.800022px;}
.ya_c00370{bottom:633.600022px;}
.y9_c00370{bottom:652.725022px;}
.y8_c00370{bottom:672.525022px;}
.y7_c00370{bottom:691.950022px;}
.y6_c00370{bottom:711.000022px;}
.y5_c00370{bottom:749.550022px;}
.y4_c00370{bottom:768.975022px;}
.y2_c00370{bottom:825.150022px;}
.y1_c00370{bottom:844.950022px;}
.y3_c00370{bottom:886.875022px;}
.h3_c00370{height:50.028809px;}
.h4_c00370{height:50.053711px;}
.h2_c00370{height:58.886719px;}
.h1_c00370{height:957.750000px;}
.h0_c00370{height:957.975000px;}
.w1_c00370{width:643.500000px;}
.w0_c00370{width:643.650000px;}
.x0_c00370{left:0.000000px;}
.x1_c00370{left:91.425000px;}
.x3_c00370{left:97.575000px;}
.x2_c00370{left:117.750000px;}
.x4_c00370{left:131.025000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls0_c00370{letter-spacing:0.000000pt;}
.ws0_c00370{word-spacing:-13.333333pt;}
.ws1_c00370{word-spacing:-11.333333pt;}
.ws2_c00370{word-spacing:0.000000pt;}
._17_c00370{margin-left:-14.570816pt;}
._13_c00370{margin-left:-13.672355pt;}
._3_c00370{margin-left:-12.373333pt;}
._f_c00370{margin-left:-10.669277pt;}
._19_c00370{margin-left:-9.544056pt;}
._16_c00370{margin-left:-7.925776pt;}
._a_c00370{margin-left:-5.173333pt;}
._14_c00370{margin-left:-3.951883pt;}
._c_c00370{margin-left:-2.933339pt;}
._b_c00370{margin-left:-1.565315pt;}
._5_c00370{width:0.906667pt;}
._0_c00370{width:1.866667pt;}
._9_c00370{width:2.880000pt;}
._8_c00370{width:4.213333pt;}
._1_c00370{width:5.226667pt;}
._e_c00370{width:6.189277pt;}
._d_c00370{width:7.146667pt;}
._7_c00370{width:8.053333pt;}
._4_c00370{width:9.120000pt;}
._6_c00370{width:10.720000pt;}
._2_c00370{width:11.733333pt;}
._1e_c00370{width:13.026800pt;}
._1f_c00370{width:13.990349pt;}
._11_c00370{width:15.101165pt;}
._10_c00370{width:16.533333pt;}
._12_c00370{width:17.656317pt;}
._15_c00370{width:18.882611pt;}
._18_c00370{width:20.791053pt;}
._1b_c00370{width:22.714779pt;}
._1a_c00370{width:24.271888pt;}
._1c_c00370{width:25.226667pt;}
._1d_c00370{width:26.437296pt;}
.fs1_c00370{font-size:45.333333pt;}
.fs0_c00370{font-size:53.333333pt;}
.y0_c00370{bottom:0.000000pt;}
.y28_c00370{bottom:57.266686pt;}
.y27_c00370{bottom:97.933353pt;}
.y26_c00370{bottom:111.400020pt;}
.y25_c00370{bottom:125.133353pt;}
.y24_c00370{bottom:138.600020pt;}
.y23_c00370{bottom:152.333353pt;}
.y22_c00370{bottom:165.800020pt;}
.y21_c00370{bottom:179.866686pt;}
.y20_c00370{bottom:193.000020pt;}
.y1f_c00370{bottom:206.733353pt;}
.y1e_c00370{bottom:220.466686pt;}
.y1d_c00370{bottom:233.933353pt;}
.y1c_c00370{bottom:247.400020pt;}
.y1b_c00370{bottom:261.133353pt;}
.y1a_c00370{bottom:274.866686pt;}
.y19_c00370{bottom:288.333353pt;}
.y18_c00370{bottom:301.800020pt;}
.y17_c00370{bottom:315.866686pt;}
.y16_c00370{bottom:329.000020pt;}
.y15_c00370{bottom:343.066686pt;}
.y14_c00370{bottom:356.466686pt;}
.y13_c00370{bottom:369.933353pt;}
.y12_c00370{bottom:425.000020pt;}
.y11_c00370{bottom:441.933353pt;}
.y10_c00370{bottom:459.200020pt;}
.yf_c00370{bottom:476.466686pt;}
.ye_c00370{bottom:494.066686pt;}
.yd_c00370{bottom:511.400020pt;}
.yc_c00370{bottom:528.333353pt;}
.yb_c00370{bottom:545.600020pt;}
.ya_c00370{bottom:563.200020pt;}
.y9_c00370{bottom:580.200020pt;}
.y8_c00370{bottom:597.800020pt;}
.y7_c00370{bottom:615.066686pt;}
.y6_c00370{bottom:632.000020pt;}
.y5_c00370{bottom:666.266686pt;}
.y4_c00370{bottom:683.533353pt;}
.y2_c00370{bottom:733.466686pt;}
.y1_c00370{bottom:751.066686pt;}
.y3_c00370{bottom:788.333353pt;}
.h3_c00370{height:44.470052pt;}
.h4_c00370{height:44.492188pt;}
.h2_c00370{height:52.343750pt;}
.h1_c00370{height:851.333333pt;}
.h0_c00370{height:851.533333pt;}
.w1_c00370{width:572.000000pt;}
.w0_c00370{width:572.133333pt;}
.x0_c00370{left:0.000000pt;}
.x1_c00370{left:81.266667pt;}
.x3_c00370{left:86.733333pt;}
.x2_c00370{left:104.666667pt;}
.x4_c00370{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3454deb7ebcbd9c5e17ad376.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00371;src:url('chunks/assets/font_1578fef374a366e74242df06.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00371{letter-spacing:0.000000px;}
.sc__c00371{text-shadow:none;}
.sc0_c00371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00371{-webkit-text-stroke:0px transparent;}
.sc0_c00371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00371{word-spacing:-15.000000px;}
.ws1_c00371{word-spacing:-12.750000px;}
.ws2_c00371{word-spacing:0.000000px;}
._8_c00371{margin-left:-16.176492px;}
._11_c00371{margin-left:-15.153450px;}
._1a_c00371{margin-left:-13.611462px;}
._a_c00371{margin-left:-12.383508px;}
._19_c00371{margin-left:-11.334822px;}
._13_c00371{margin-left:-10.127718px;}
._18_c00371{margin-left:-8.483070px;}
._10_c00371{margin-left:-7.152516px;}
._7_c00371{margin-left:-5.700000px;}
._16_c00371{margin-left:-4.586454px;}
._1_c00371{margin-left:-2.879766px;}
._2_c00371{margin-left:-1.448910px;}
._0_c00371{width:1.850994px;}
._4_c00371{width:3.300000px;}
._17_c00371{width:4.806084px;}
._f_c00371{width:6.324264px;}
._14_c00371{width:8.010822px;}
._d_c00371{width:9.045318px;}
._e_c00371{width:10.527018px;}
._b_c00371{width:12.413748px;}
._12_c00371{width:13.859382px;}
._3_c00371{width:16.032048px;}
._c_c00371{width:17.068212px;}
._5_c00371{width:19.149006px;}
._9_c00371{width:20.570760px;}
._6_c00371{width:21.738012px;}
._15_c00371{width:23.700000px;}
._1c_c00371{width:25.076496px;}
._1b_c00371{width:26.276526px;}
.fc1_c00371{color:transparent;}
.fc0_c00371{color:rgb(35,31,32);}
.fs0_c00371{font-size:51.000000px;}
.fs1_c00371{font-size:60.000000px;}
.y0_c00371{bottom:0.000000px;}
.y28_c00371{bottom:64.425022px;}
.y27_c00371{bottom:110.550022px;}
.y26_c00371{bottom:125.325022px;}
.y25_c00371{bottom:141.150022px;}
.y24_c00371{bottom:155.925022px;}
.y23_c00371{bottom:171.375022px;}
.y22_c00371{bottom:186.825022px;}
.y21_c00371{bottom:201.975022px;}
.y20_c00371{bottom:217.425022px;}
.y1f_c00371{bottom:232.575022px;}
.y1e_c00371{bottom:247.725022px;}
.y1d_c00371{bottom:320.025022px;}
.y1c_c00371{bottom:339.825022px;}
.y1b_c00371{bottom:358.950022px;}
.y1a_c00371{bottom:378.750022px;}
.y19_c00371{bottom:397.800022px;}
.y18_c00371{bottom:417.225022px;}
.y17_c00371{bottom:437.025022px;}
.y16_c00371{bottom:456.525022px;}
.y15_c00371{bottom:475.575022px;}
.y14_c00371{bottom:495.375022px;}
.y13_c00371{bottom:514.425022px;}
.y12_c00371{bottom:534.225022px;}
.y11_c00371{bottom:553.725022px;}
.y10_c00371{bottom:573.150022px;}
.yf_c00371{bottom:592.200022px;}
.ye_c00371{bottom:612.000022px;}
.yd_c00371{bottom:631.125022px;}
.yc_c00371{bottom:650.550022px;}
.yb_c00371{bottom:670.350022px;}
.ya_c00371{bottom:689.400022px;}
.y9_c00371{bottom:709.200022px;}
.y8_c00371{bottom:728.625022px;}
.y7_c00371{bottom:747.750022px;}
.y6_c00371{bottom:767.175022px;}
.y5_c00371{bottom:786.225022px;}
.y4_c00371{bottom:805.725022px;}
.y3_c00371{bottom:825.150022px;}
.y2_c00371{bottom:844.575022px;}
.y1_c00371{bottom:886.725022px;}
.h2_c00371{height:50.028809px;}
.h4_c00371{height:50.053711px;}
.h3_c00371{height:58.886719px;}
.h1_c00371{height:957.750000px;}
.h0_c00371{height:957.975000px;}
.w0_c00371{width:641.850030px;}
.w1_c00371{width:642.000000px;}
.x0_c00371{left:0.000000px;}
.x4_c00371{left:80.250000px;}
.x2_c00371{left:81.375000px;}
.x5_c00371{left:87.825000px;}
.x3_c00371{left:96.825000px;}
.x6_c00371{left:121.350000px;}
.x1_c00371{left:229.350000px;}
.x7_c00371{left:531.375000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls0_c00371{letter-spacing:0.000000pt;}
.ws0_c00371{word-spacing:-13.333333pt;}
.ws1_c00371{word-spacing:-11.333333pt;}
.ws2_c00371{word-spacing:0.000000pt;}
._8_c00371{margin-left:-14.379104pt;}
._11_c00371{margin-left:-13.469733pt;}
._1a_c00371{margin-left:-12.099077pt;}
._a_c00371{margin-left:-11.007563pt;}
._19_c00371{margin-left:-10.075397pt;}
._13_c00371{margin-left:-9.002416pt;}
._18_c00371{margin-left:-7.540507pt;}
._10_c00371{margin-left:-6.357792pt;}
._7_c00371{margin-left:-5.066667pt;}
._16_c00371{margin-left:-4.076848pt;}
._1_c00371{margin-left:-2.559792pt;}
._2_c00371{margin-left:-1.287920pt;}
._0_c00371{width:1.645328pt;}
._4_c00371{width:2.933333pt;}
._17_c00371{width:4.272075pt;}
._f_c00371{width:5.621568pt;}
._14_c00371{width:7.120731pt;}
._d_c00371{width:8.040283pt;}
._e_c00371{width:9.357349pt;}
._b_c00371{width:11.034443pt;}
._12_c00371{width:12.319451pt;}
._3_c00371{width:14.250709pt;}
._c_c00371{width:15.171744pt;}
._5_c00371{width:17.021339pt;}
._9_c00371{width:18.285120pt;}
._6_c00371{width:19.322677pt;}
._15_c00371{width:21.066667pt;}
._1c_c00371{width:22.290219pt;}
._1b_c00371{width:23.356912pt;}
.fs0_c00371{font-size:45.333333pt;}
.fs1_c00371{font-size:53.333333pt;}
.y0_c00371{bottom:0.000000pt;}
.y28_c00371{bottom:57.266686pt;}
.y27_c00371{bottom:98.266686pt;}
.y26_c00371{bottom:111.400020pt;}
.y25_c00371{bottom:125.466686pt;}
.y24_c00371{bottom:138.600020pt;}
.y23_c00371{bottom:152.333353pt;}
.y22_c00371{bottom:166.066686pt;}
.y21_c00371{bottom:179.533353pt;}
.y20_c00371{bottom:193.266686pt;}
.y1f_c00371{bottom:206.733353pt;}
.y1e_c00371{bottom:220.200020pt;}
.y1d_c00371{bottom:284.466686pt;}
.y1c_c00371{bottom:302.066686pt;}
.y1b_c00371{bottom:319.066686pt;}
.y1a_c00371{bottom:336.666686pt;}
.y19_c00371{bottom:353.600020pt;}
.y18_c00371{bottom:370.866686pt;}
.y17_c00371{bottom:388.466686pt;}
.y16_c00371{bottom:405.800020pt;}
.y15_c00371{bottom:422.733353pt;}
.y14_c00371{bottom:440.333353pt;}
.y13_c00371{bottom:457.266686pt;}
.y12_c00371{bottom:474.866686pt;}
.y11_c00371{bottom:492.200020pt;}
.y10_c00371{bottom:509.466686pt;}
.yf_c00371{bottom:526.400020pt;}
.ye_c00371{bottom:544.000020pt;}
.yd_c00371{bottom:561.000020pt;}
.yc_c00371{bottom:578.266686pt;}
.yb_c00371{bottom:595.866686pt;}
.ya_c00371{bottom:612.800020pt;}
.y9_c00371{bottom:630.400020pt;}
.y8_c00371{bottom:647.666686pt;}
.y7_c00371{bottom:664.666686pt;}
.y6_c00371{bottom:681.933353pt;}
.y5_c00371{bottom:698.866686pt;}
.y4_c00371{bottom:716.200020pt;}
.y3_c00371{bottom:733.466686pt;}
.y2_c00371{bottom:750.733353pt;}
.y1_c00371{bottom:788.200020pt;}
.h2_c00371{height:44.470052pt;}
.h4_c00371{height:44.492188pt;}
.h3_c00371{height:52.343750pt;}
.h1_c00371{height:851.333333pt;}
.h0_c00371{height:851.533333pt;}
.w0_c00371{width:570.533360pt;}
.w1_c00371{width:570.666667pt;}
.x0_c00371{left:0.000000pt;}
.x4_c00371{left:71.333333pt;}
.x2_c00371{left:72.333333pt;}
.x5_c00371{left:78.066667pt;}
.x3_c00371{left:86.066667pt;}
.x6_c00371{left:107.866667pt;}
.x1_c00371{left:203.866667pt;}
.x7_c00371{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aa7fd281105f06fbd420f340.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00372;src:url('chunks/assets/font_4df609acd0fd6caa238cf0a1.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00372{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00372{letter-spacing:0.000000px;}
.sc__c00372{text-shadow:none;}
.sc0_c00372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00372{-webkit-text-stroke:0px transparent;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00372{word-spacing:-15.000000px;}
.ws0_c00372{word-spacing:-12.750000px;}
.ws2_c00372{word-spacing:0.000000px;}
._f_c00372{margin-left:-14.280000px;}
._c_c00372{margin-left:-12.780000px;}
._b_c00372{margin-left:-11.220000px;}
._a_c00372{margin-left:-7.980000px;}
._d_c00372{margin-left:-6.180000px;}
._17_c00372{margin-left:-5.108829px;}
._10_c00372{margin-left:-3.720000px;}
._11_c00372{margin-left:-2.280000px;}
._6_c00372{margin-left:-1.260000px;}
._2_c00372{width:1.080000px;}
._1_c00372{width:2.460000px;}
._12_c00372{width:3.600000px;}
._5_c00372{width:4.620000px;}
._3_c00372{width:6.600000px;}
._0_c00372{width:7.860000px;}
._4_c00372{width:9.540000px;}
._8_c00372{width:11.340000px;}
._9_c00372{width:12.600000px;}
._7_c00372{width:13.980000px;}
._16_c00372{width:15.390078px;}
._13_c00372{width:16.800000px;}
._e_c00372{width:18.720000px;}
._14_c00372{width:20.280000px;}
._15_c00372{width:26.369991px;}
.fc1_c00372{color:transparent;}
.fc0_c00372{color:rgb(35,31,32);}
.fs1_c00372{font-size:51.000000px;}
.fs0_c00372{font-size:60.000000px;}
.y0_c00372{bottom:0.000000px;}
.y27_c00372{bottom:64.800022px;}
.y26_c00372{bottom:110.175022px;}
.y25_c00372{bottom:125.625022px;}
.y24_c00372{bottom:141.150022px;}
.y23_c00372{bottom:156.225022px;}
.y22_c00372{bottom:171.375022px;}
.y21_c00372{bottom:186.825022px;}
.y20_c00372{bottom:202.350022px;}
.y1f_c00372{bottom:217.125022px;}
.y1e_c00372{bottom:232.950022px;}
.y1d_c00372{bottom:248.025022px;}
.y1c_c00372{bottom:263.175022px;}
.y1b_c00372{bottom:278.625022px;}
.y1a_c00372{bottom:318.225022px;}
.y19_c00372{bottom:337.725022px;}
.y18_c00372{bottom:357.525022px;}
.y17_c00372{bottom:376.575022px;}
.y16_c00372{bottom:396.375022px;}
.y15_c00372{bottom:415.425022px;}
.y14_c00372{bottom:455.775022px;}
.y12_c00372{bottom:514.425022px;}
.y11_c00372{bottom:534.225022px;}
.y10_c00372{bottom:553.725022px;}
.yf_c00372{bottom:572.775022px;}
.ye_c00372{bottom:592.200022px;}
.yd_c00372{bottom:611.625022px;}
.yc_c00372{bottom:631.425022px;}
.yb_c00372{bottom:650.550022px;}
.ya_c00372{bottom:670.350022px;}
.y9_c00372{bottom:689.775022px;}
.y8_c00372{bottom:709.200022px;}
.y7_c00372{bottom:728.325022px;}
.y6_c00372{bottom:747.750022px;}
.y5_c00372{bottom:767.550022px;}
.y4_c00372{bottom:786.225022px;}
.y3_c00372{bottom:806.025022px;}
.y2_c00372{bottom:825.150022px;}
.y1_c00372{bottom:844.950022px;}
.y13_c00372{bottom:886.875022px;}
.h3_c00372{height:50.028809px;}
.h4_c00372{height:50.053711px;}
.h2_c00372{height:58.886719px;}
.h1_c00372{height:957.750000px;}
.h0_c00372{height:957.975000px;}
.w1_c00372{width:643.500000px;}
.w0_c00372{width:643.650000px;}
.x0_c00372{left:0.000000px;}
.x2_c00372{left:91.425000px;}
.x3_c00372{left:97.575000px;}
.x1_c00372{left:107.250000px;}
.x4_c00372{left:131.400000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls0_c00372{letter-spacing:0.000000pt;}
.ws1_c00372{word-spacing:-13.333333pt;}
.ws0_c00372{word-spacing:-11.333333pt;}
.ws2_c00372{word-spacing:0.000000pt;}
._f_c00372{margin-left:-12.693333pt;}
._c_c00372{margin-left:-11.360000pt;}
._b_c00372{margin-left:-9.973333pt;}
._a_c00372{margin-left:-7.093333pt;}
._d_c00372{margin-left:-5.493333pt;}
._17_c00372{margin-left:-4.541181pt;}
._10_c00372{margin-left:-3.306667pt;}
._11_c00372{margin-left:-2.026667pt;}
._6_c00372{margin-left:-1.120000pt;}
._2_c00372{width:0.960000pt;}
._1_c00372{width:2.186667pt;}
._12_c00372{width:3.200000pt;}
._5_c00372{width:4.106667pt;}
._3_c00372{width:5.866667pt;}
._0_c00372{width:6.986667pt;}
._4_c00372{width:8.480000pt;}
._8_c00372{width:10.080000pt;}
._9_c00372{width:11.200000pt;}
._7_c00372{width:12.426667pt;}
._16_c00372{width:13.680069pt;}
._13_c00372{width:14.933333pt;}
._e_c00372{width:16.640000pt;}
._14_c00372{width:18.026667pt;}
._15_c00372{width:23.439992pt;}
.fs1_c00372{font-size:45.333333pt;}
.fs0_c00372{font-size:53.333333pt;}
.y0_c00372{bottom:0.000000pt;}
.y27_c00372{bottom:57.600020pt;}
.y26_c00372{bottom:97.933353pt;}
.y25_c00372{bottom:111.666686pt;}
.y24_c00372{bottom:125.466686pt;}
.y23_c00372{bottom:138.866686pt;}
.y22_c00372{bottom:152.333353pt;}
.y21_c00372{bottom:166.066686pt;}
.y20_c00372{bottom:179.866686pt;}
.y1f_c00372{bottom:193.000020pt;}
.y1e_c00372{bottom:207.066686pt;}
.y1d_c00372{bottom:220.466686pt;}
.y1c_c00372{bottom:233.933353pt;}
.y1b_c00372{bottom:247.666686pt;}
.y1a_c00372{bottom:282.866686pt;}
.y19_c00372{bottom:300.200020pt;}
.y18_c00372{bottom:317.800020pt;}
.y17_c00372{bottom:334.733353pt;}
.y16_c00372{bottom:352.333353pt;}
.y15_c00372{bottom:369.266686pt;}
.y14_c00372{bottom:405.133353pt;}
.y12_c00372{bottom:457.266686pt;}
.y11_c00372{bottom:474.866686pt;}
.y10_c00372{bottom:492.200020pt;}
.yf_c00372{bottom:509.133353pt;}
.ye_c00372{bottom:526.400020pt;}
.yd_c00372{bottom:543.666686pt;}
.yc_c00372{bottom:561.266686pt;}
.yb_c00372{bottom:578.266686pt;}
.ya_c00372{bottom:595.866686pt;}
.y9_c00372{bottom:613.133353pt;}
.y8_c00372{bottom:630.400020pt;}
.y7_c00372{bottom:647.400020pt;}
.y6_c00372{bottom:664.666686pt;}
.y5_c00372{bottom:682.266686pt;}
.y4_c00372{bottom:698.866686pt;}
.y3_c00372{bottom:716.466686pt;}
.y2_c00372{bottom:733.466686pt;}
.y1_c00372{bottom:751.066686pt;}
.y13_c00372{bottom:788.333353pt;}
.h3_c00372{height:44.470052pt;}
.h4_c00372{height:44.492188pt;}
.h2_c00372{height:52.343750pt;}
.h1_c00372{height:851.333333pt;}
.h0_c00372{height:851.533333pt;}
.w1_c00372{width:572.000000pt;}
.w0_c00372{width:572.133333pt;}
.x0_c00372{left:0.000000pt;}
.x2_c00372{left:81.266667pt;}
.x3_c00372{left:86.733333pt;}
.x1_c00372{left:95.333333pt;}
.x4_c00372{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_73300116df85bc4aa5148a0b.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00373;src:url('chunks/assets/font_8221c27e7aedc322aa716120.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00373{letter-spacing:0.000000px;}
.sc__c00373{text-shadow:none;}
.sc0_c00373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00373{-webkit-text-stroke:0px transparent;}
.sc0_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00373{word-spacing:-15.000000px;}
.ws0_c00373{word-spacing:-12.750000px;}
.ws2_c00373{word-spacing:0.000000px;}
._18_c00373{margin-left:-15.437820px;}
._e_c00373{margin-left:-12.618012px;}
._d_c00373{margin-left:-10.781988px;}
._15_c00373{margin-left:-8.964306px;}
._17_c00373{margin-left:-6.595398px;}
._16_c00373{margin-left:-5.260626px;}
._14_c00373{margin-left:-4.107720px;}
._1_c00373{margin-left:-2.879766px;}
._2_c00373{margin-left:-1.448910px;}
._0_c00373{width:1.850994px;}
._6_c00373{width:3.018012px;}
._12_c00373{width:4.211928px;}
._8_c00373{width:5.288910px;}
._13_c00373{width:6.341988px;}
._7_c00373{width:7.596024px;}
._3_c00373{width:9.017586px;}
._4_c00373{width:10.767018px;}
._5_c00373{width:11.931228px;}
._9_c00373{width:13.884096px;}
._1a_c00373{width:14.993157px;}
._a_c00373{width:16.689006px;}
._b_c00373{width:17.742108px;}
._c_c00373{width:18.825030px;}
._10_c00373{width:20.648676px;}
._11_c00373{width:22.050294px;}
._f_c00373{width:23.418012px;}
._19_c00373{width:25.076496px;}
.fc1_c00373{color:transparent;}
.fc0_c00373{color:rgb(35,31,32);}
.fs0_c00373{font-size:51.000000px;}
.fs1_c00373{font-size:60.000000px;}
.y0_c00373{bottom:0.000000px;}
.y27_c00373{bottom:64.425022px;}
.y26_c00373{bottom:110.550022px;}
.y25_c00373{bottom:125.325022px;}
.y24_c00373{bottom:140.775022px;}
.y23_c00373{bottom:156.225022px;}
.y22_c00373{bottom:171.375022px;}
.y21_c00373{bottom:186.525022px;}
.y20_c00373{bottom:201.975022px;}
.y1f_c00373{bottom:217.125022px;}
.y1e_c00373{bottom:232.575022px;}
.y1d_c00373{bottom:247.725022px;}
.y1c_c00373{bottom:263.550022px;}
.y1b_c00373{bottom:278.625022px;}
.y1a_c00373{bottom:293.775022px;}
.y19_c00373{bottom:308.925022px;}
.y18_c00373{bottom:324.375022px;}
.y17_c00373{bottom:339.825022px;}
.y16_c00373{bottom:400.350022px;}
.y15_c00373{bottom:419.775022px;}
.y14_c00373{bottom:438.825022px;}
.y13_c00373{bottom:458.625022px;}
.y12_c00373{bottom:477.750022px;}
.y11_c00373{bottom:497.175022px;}
.y10_c00373{bottom:516.600022px;}
.yf_c00373{bottom:536.025022px;}
.ye_c00373{bottom:555.525022px;}
.yd_c00373{bottom:575.325022px;}
.yc_c00373{bottom:594.750022px;}
.yb_c00373{bottom:613.800022px;}
.ya_c00373{bottom:633.225022px;}
.y9_c00373{bottom:653.025022px;}
.y8_c00373{bottom:672.525022px;}
.y7_c00373{bottom:691.575022px;}
.y6_c00373{bottom:729.750022px;}
.y5_c00373{bottom:786.225022px;}
.y4_c00373{bottom:806.025022px;}
.y3_c00373{bottom:825.150022px;}
.y2_c00373{bottom:844.575022px;}
.y1_c00373{bottom:886.725022px;}
.h2_c00373{height:50.028809px;}
.h4_c00373{height:50.053711px;}
.h3_c00373{height:58.886719px;}
.h1_c00373{height:957.750000px;}
.h0_c00373{height:957.975000px;}
.w0_c00373{width:641.850030px;}
.w1_c00373{width:642.000000px;}
.x0_c00373{left:0.000000px;}
.x3_c00373{left:80.250000px;}
.x2_c00373{left:81.375000px;}
.x5_c00373{left:87.825000px;}
.x4_c00373{left:97.200000px;}
.x6_c00373{left:120.975000px;}
.x1_c00373{left:229.350000px;}
.x7_c00373{left:531.375000px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls0_c00373{letter-spacing:0.000000pt;}
.ws1_c00373{word-spacing:-13.333333pt;}
.ws0_c00373{word-spacing:-11.333333pt;}
.ws2_c00373{word-spacing:0.000000pt;}
._18_c00373{margin-left:-13.722507pt;}
._e_c00373{margin-left:-11.216011pt;}
._d_c00373{margin-left:-9.583989pt;}
._15_c00373{margin-left:-7.968272pt;}
._17_c00373{margin-left:-5.862576pt;}
._16_c00373{margin-left:-4.676112pt;}
._14_c00373{margin-left:-3.651307pt;}
._1_c00373{margin-left:-2.559792pt;}
._2_c00373{margin-left:-1.287920pt;}
._0_c00373{width:1.645328pt;}
._6_c00373{width:2.682677pt;}
._12_c00373{width:3.743936pt;}
._8_c00373{width:4.701253pt;}
._13_c00373{width:5.637323pt;}
._7_c00373{width:6.752021pt;}
._3_c00373{width:8.015632pt;}
._4_c00373{width:9.570683pt;}
._5_c00373{width:10.605536pt;}
._9_c00373{width:12.341419pt;}
._1a_c00373{width:13.327251pt;}
._a_c00373{width:14.834672pt;}
._b_c00373{width:15.770763pt;}
._c_c00373{width:16.733360pt;}
._10_c00373{width:18.354379pt;}
._11_c00373{width:19.600261pt;}
._f_c00373{width:20.816011pt;}
._19_c00373{width:22.290219pt;}
.fs0_c00373{font-size:45.333333pt;}
.fs1_c00373{font-size:53.333333pt;}
.y0_c00373{bottom:0.000000pt;}
.y27_c00373{bottom:57.266686pt;}
.y26_c00373{bottom:98.266686pt;}
.y25_c00373{bottom:111.400020pt;}
.y24_c00373{bottom:125.133353pt;}
.y23_c00373{bottom:138.866686pt;}
.y22_c00373{bottom:152.333353pt;}
.y21_c00373{bottom:165.800020pt;}
.y20_c00373{bottom:179.533353pt;}
.y1f_c00373{bottom:193.000020pt;}
.y1e_c00373{bottom:206.733353pt;}
.y1d_c00373{bottom:220.200020pt;}
.y1c_c00373{bottom:234.266686pt;}
.y1b_c00373{bottom:247.666686pt;}
.y1a_c00373{bottom:261.133353pt;}
.y19_c00373{bottom:274.600020pt;}
.y18_c00373{bottom:288.333353pt;}
.y17_c00373{bottom:302.066686pt;}
.y16_c00373{bottom:355.866686pt;}
.y15_c00373{bottom:373.133353pt;}
.y14_c00373{bottom:390.066686pt;}
.y13_c00373{bottom:407.666686pt;}
.y12_c00373{bottom:424.666686pt;}
.y11_c00373{bottom:441.933353pt;}
.y10_c00373{bottom:459.200020pt;}
.yf_c00373{bottom:476.466686pt;}
.ye_c00373{bottom:493.800020pt;}
.yd_c00373{bottom:511.400020pt;}
.yc_c00373{bottom:528.666686pt;}
.yb_c00373{bottom:545.600020pt;}
.ya_c00373{bottom:562.866686pt;}
.y9_c00373{bottom:580.466686pt;}
.y8_c00373{bottom:597.800020pt;}
.y7_c00373{bottom:614.733353pt;}
.y6_c00373{bottom:648.666686pt;}
.y5_c00373{bottom:698.866686pt;}
.y4_c00373{bottom:716.466686pt;}
.y3_c00373{bottom:733.466686pt;}
.y2_c00373{bottom:750.733353pt;}
.y1_c00373{bottom:788.200020pt;}
.h2_c00373{height:44.470052pt;}
.h4_c00373{height:44.492188pt;}
.h3_c00373{height:52.343750pt;}
.h1_c00373{height:851.333333pt;}
.h0_c00373{height:851.533333pt;}
.w0_c00373{width:570.533360pt;}
.w1_c00373{width:570.666667pt;}
.x0_c00373{left:0.000000pt;}
.x3_c00373{left:71.333333pt;}
.x2_c00373{left:72.333333pt;}
.x5_c00373{left:78.066667pt;}
.x4_c00373{left:86.400000pt;}
.x6_c00373{left:107.533333pt;}
.x1_c00373{left:203.866667pt;}
.x7_c00373{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dfc59a2729ffe55c26c48c82.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00374;src:url('chunks/assets/font_07ba90ede22eeafdcea459ca.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00374{letter-spacing:0.000000px;}
.sc__c00374{text-shadow:none;}
.sc0_c00374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00374{-webkit-text-stroke:0px transparent;}
.sc0_c00374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00374{word-spacing:-15.000000px;}
.ws0_c00374{word-spacing:-12.750000px;}
.ws2_c00374{word-spacing:0.000000px;}
._15_c00374{margin-left:-16.320000px;}
._14_c00374{margin-left:-15.060000px;}
._2_c00374{margin-left:-12.960000px;}
._1_c00374{margin-left:-11.640000px;}
._17_c00374{margin-left:-10.380000px;}
._e_c00374{margin-left:-8.400000px;}
._f_c00374{margin-left:-6.180000px;}
._10_c00374{margin-left:-4.440000px;}
._b_c00374{margin-left:-3.300000px;}
._a_c00374{margin-left:-1.980000px;}
._0_c00374{width:1.500000px;}
._3_c00374{width:2.700000px;}
._6_c00374{width:4.680000px;}
._7_c00374{width:5.940000px;}
._12_c00374{width:7.620000px;}
._11_c00374{width:8.940000px;}
._13_c00374{width:10.380000px;}
._8_c00374{width:11.520000px;}
._4_c00374{width:13.380000px;}
._1b_c00374{width:15.342018px;}
._5_c00374{width:16.680000px;}
._16_c00374{width:18.060000px;}
._9_c00374{width:19.740000px;}
._c_c00374{width:21.000000px;}
._d_c00374{width:22.020000px;}
._18_c00374{width:23.790000px;}
._1a_c00374{width:24.989979px;}
._19_c00374{width:29.790093px;}
.fc1_c00374{color:transparent;}
.fc0_c00374{color:rgb(35,31,32);}
.fs1_c00374{font-size:51.000000px;}
.fs0_c00374{font-size:60.000000px;}
.y0_c00374{bottom:0.000000px;}
.y29_c00374{bottom:64.800022px;}
.y28_c00374{bottom:110.175022px;}
.y27_c00374{bottom:125.625022px;}
.y26_c00374{bottom:140.775022px;}
.y25_c00374{bottom:156.225022px;}
.y24_c00374{bottom:171.375022px;}
.y23_c00374{bottom:186.525022px;}
.y22_c00374{bottom:202.350022px;}
.y21_c00374{bottom:217.125022px;}
.y20_c00374{bottom:232.575022px;}
.y1f_c00374{bottom:247.725022px;}
.y1e_c00374{bottom:263.175022px;}
.y1c_c00374{bottom:320.025022px;}
.y1b_c00374{bottom:339.825022px;}
.y1a_c00374{bottom:358.950022px;}
.y19_c00374{bottom:378.375022px;}
.y18_c00374{bottom:397.800022px;}
.y17_c00374{bottom:417.600022px;}
.y16_c00374{bottom:436.725022px;}
.y15_c00374{bottom:456.150022px;}
.y14_c00374{bottom:475.575022px;}
.y13_c00374{bottom:495.000022px;}
.y12_c00374{bottom:514.425022px;}
.y11_c00374{bottom:533.925022px;}
.y10_c00374{bottom:553.725022px;}
.yf_c00374{bottom:573.150022px;}
.ye_c00374{bottom:592.125022px;}
.yd_c00374{bottom:611.625022px;}
.yc_c00374{bottom:631.125022px;}
.yb_c00374{bottom:650.925022px;}
.ya_c00374{bottom:670.350022px;}
.y9_c00374{bottom:689.400022px;}
.y8_c00374{bottom:709.200022px;}
.y7_c00374{bottom:728.325022px;}
.y6_c00374{bottom:748.125022px;}
.y5_c00374{bottom:767.175022px;}
.y4_c00374{bottom:786.600022px;}
.y3_c00374{bottom:805.725022px;}
.y2_c00374{bottom:825.525022px;}
.y1_c00374{bottom:844.950022px;}
.y1d_c00374{bottom:886.875022px;}
.h3_c00374{height:50.028809px;}
.h4_c00374{height:50.053711px;}
.h2_c00374{height:58.886719px;}
.h1_c00374{height:957.750000px;}
.h0_c00374{height:957.975000px;}
.w1_c00374{width:643.500000px;}
.w0_c00374{width:643.650000px;}
.x0_c00374{left:0.000000px;}
.x1_c00374{left:91.425000px;}
.x3_c00374{left:97.575000px;}
.x2_c00374{left:106.200000px;}
.x4_c00374{left:131.025000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls0_c00374{letter-spacing:0.000000pt;}
.ws1_c00374{word-spacing:-13.333333pt;}
.ws0_c00374{word-spacing:-11.333333pt;}
.ws2_c00374{word-spacing:0.000000pt;}
._15_c00374{margin-left:-14.506667pt;}
._14_c00374{margin-left:-13.386667pt;}
._2_c00374{margin-left:-11.520000pt;}
._1_c00374{margin-left:-10.346667pt;}
._17_c00374{margin-left:-9.226667pt;}
._e_c00374{margin-left:-7.466667pt;}
._f_c00374{margin-left:-5.493333pt;}
._10_c00374{margin-left:-3.946667pt;}
._b_c00374{margin-left:-2.933333pt;}
._a_c00374{margin-left:-1.760000pt;}
._0_c00374{width:1.333333pt;}
._3_c00374{width:2.400000pt;}
._6_c00374{width:4.160000pt;}
._7_c00374{width:5.280000pt;}
._12_c00374{width:6.773333pt;}
._11_c00374{width:7.946667pt;}
._13_c00374{width:9.226667pt;}
._8_c00374{width:10.240000pt;}
._4_c00374{width:11.893333pt;}
._1b_c00374{width:13.637349pt;}
._5_c00374{width:14.826667pt;}
._16_c00374{width:16.053333pt;}
._9_c00374{width:17.546667pt;}
._c_c00374{width:18.666667pt;}
._d_c00374{width:19.573333pt;}
._18_c00374{width:21.146667pt;}
._1a_c00374{width:22.213315pt;}
._19_c00374{width:26.480083pt;}
.fs1_c00374{font-size:45.333333pt;}
.fs0_c00374{font-size:53.333333pt;}
.y0_c00374{bottom:0.000000pt;}
.y29_c00374{bottom:57.600020pt;}
.y28_c00374{bottom:97.933353pt;}
.y27_c00374{bottom:111.666686pt;}
.y26_c00374{bottom:125.133353pt;}
.y25_c00374{bottom:138.866686pt;}
.y24_c00374{bottom:152.333353pt;}
.y23_c00374{bottom:165.800020pt;}
.y22_c00374{bottom:179.866686pt;}
.y21_c00374{bottom:193.000020pt;}
.y20_c00374{bottom:206.733353pt;}
.y1f_c00374{bottom:220.200020pt;}
.y1e_c00374{bottom:233.933353pt;}
.y1c_c00374{bottom:284.466686pt;}
.y1b_c00374{bottom:302.066686pt;}
.y1a_c00374{bottom:319.066686pt;}
.y19_c00374{bottom:336.333353pt;}
.y18_c00374{bottom:353.600020pt;}
.y17_c00374{bottom:371.200020pt;}
.y16_c00374{bottom:388.200020pt;}
.y15_c00374{bottom:405.466686pt;}
.y14_c00374{bottom:422.733353pt;}
.y13_c00374{bottom:440.000020pt;}
.y12_c00374{bottom:457.266686pt;}
.y11_c00374{bottom:474.600020pt;}
.y10_c00374{bottom:492.200020pt;}
.yf_c00374{bottom:509.466686pt;}
.ye_c00374{bottom:526.333353pt;}
.yd_c00374{bottom:543.666686pt;}
.yc_c00374{bottom:561.000020pt;}
.yb_c00374{bottom:578.600020pt;}
.ya_c00374{bottom:595.866686pt;}
.y9_c00374{bottom:612.800020pt;}
.y8_c00374{bottom:630.400020pt;}
.y7_c00374{bottom:647.400020pt;}
.y6_c00374{bottom:665.000020pt;}
.y5_c00374{bottom:681.933353pt;}
.y4_c00374{bottom:699.200020pt;}
.y3_c00374{bottom:716.200020pt;}
.y2_c00374{bottom:733.800020pt;}
.y1_c00374{bottom:751.066686pt;}
.y1d_c00374{bottom:788.333353pt;}
.h3_c00374{height:44.470052pt;}
.h4_c00374{height:44.492188pt;}
.h2_c00374{height:52.343750pt;}
.h1_c00374{height:851.333333pt;}
.h0_c00374{height:851.533333pt;}
.w1_c00374{width:572.000000pt;}
.w0_c00374{width:572.133333pt;}
.x0_c00374{left:0.000000pt;}
.x1_c00374{left:81.266667pt;}
.x3_c00374{left:86.733333pt;}
.x2_c00374{left:94.400000pt;}
.x4_c00374{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_be96e5fdc0e99c81268afe2d.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00375;src:url('chunks/assets/font_9f7d35c482c2bbee4816ea67.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00375{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_c00375{vertical-align:0.000000px;}
.ls0_c00375{letter-spacing:0.000000px;}
.sc__c00375{text-shadow:none;}
.sc0_c00375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00375{-webkit-text-stroke:0px transparent;}
.sc0_c00375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00375{word-spacing:-15.000000px;}
.ws0_c00375{word-spacing:-12.750000px;}
.ws2_c00375{word-spacing:0.000000px;}
._5_c00375{margin-left:-13.572048px;}
._4_c00375{margin-left:-12.263976px;}
._9_c00375{margin-left:-11.195832px;}
._c_c00375{margin-left:-7.460934px;}
._14_c00375{margin-left:-5.657157px;}
._15_c00375{margin-left:-4.408677px;}
._1_c00375{margin-left:-2.879766px;}
._2_c00375{margin-left:-1.448910px;}
._0_c00375{width:1.850994px;}
._3_c00375{width:3.267018px;}
._7_c00375{width:4.569006px;}
._17_c00375{width:5.594853px;}
._6_c00375{width:6.600000px;}
._8_c00375{width:7.835832px;}
._a_c00375{width:9.573078px;}
._b_c00375{width:11.232144px;}
._12_c00375{width:12.470898px;}
._11_c00375{width:13.638012px;}
._16_c00375{width:14.729883px;}
._e_c00375{width:16.167018px;}
._f_c00375{width:17.901054px;}
._10_c00375{width:19.595904px;}
._d_c00375{width:21.960000px;}
._13_c00375{width:26.276526px;}
.fc1_c00375{color:transparent;}
.fc0_c00375{color:rgb(35,31,32);}
.fs2_c00375{font-size:42.000000px;}
.fs0_c00375{font-size:51.000000px;}
.fs1_c00375{font-size:60.000000px;}
.y0_c00375{bottom:0.000000px;}
.y2b_c00375{bottom:64.425022px;}
.y2a_c00375{bottom:110.175022px;}
.y29_c00375{bottom:125.325022px;}
.y28_c00375{bottom:141.150022px;}
.y27_c00375{bottom:156.225022px;}
.y26_c00375{bottom:171.750022px;}
.y25_c00375{bottom:186.525022px;}
.y24_c00375{bottom:201.975022px;}
.y23_c00375{bottom:217.125022px;}
.y22_c00375{bottom:232.575022px;}
.y21_c00375{bottom:248.025022px;}
.y20_c00375{bottom:263.175022px;}
.y1f_c00375{bottom:278.325022px;}
.y1e_c00375{bottom:294.150022px;}
.y1d_c00375{bottom:309.225022px;}
.y1c_c00375{bottom:324.750022px;}
.y1b_c00375{bottom:339.525022px;}
.y1a_c00375{bottom:354.975022px;}
.y19_c00375{bottom:370.425022px;}
.y18_c00375{bottom:385.575022px;}
.y17_c00375{bottom:401.025022px;}
.y16_c00375{bottom:416.175022px;}
.y15_c00375{bottom:431.325022px;}
.y14_c00375{bottom:447.150022px;}
.y13_c00375{bottom:514.800022px;}
.y12_c00375{bottom:533.925022px;}
.y11_c00375{bottom:553.725022px;}
.y10_c00375{bottom:573.150022px;}
.yf_c00375{bottom:592.575022px;}
.ye_c00375{bottom:612.000022px;}
.yd_c00375{bottom:631.425022px;}
.yc_c00375{bottom:650.925022px;}
.yb_c00375{bottom:670.350022px;}
.ya_c00375{bottom:689.775022px;}
.y9_c00375{bottom:709.200022px;}
.y8_c00375{bottom:728.625022px;}
.y7_c00375{bottom:747.750022px;}
.y6_c00375{bottom:767.175022px;}
.y5_c00375{bottom:786.600022px;}
.y4_c00375{bottom:806.025022px;}
.y3_c00375{bottom:825.525022px;}
.y2_c00375{bottom:844.575022px;}
.y1_c00375{bottom:886.725022px;}
.h2_c00375{height:50.028809px;}
.h4_c00375{height:50.053711px;}
.h3_c00375{height:58.886719px;}
.h1_c00375{height:957.750000px;}
.h0_c00375{height:957.975000px;}
.w0_c00375{width:641.850030px;}
.w1_c00375{width:642.000000px;}
.x0_c00375{left:0.000000px;}
.x3_c00375{left:80.250000px;}
.x2_c00375{left:81.375000px;}
.x5_c00375{left:87.825000px;}
.x4_c00375{left:96.150000px;}
.x6_c00375{left:120.225000px;}
.x7_c00375{left:121.350000px;}
.x1_c00375{left:229.350000px;}
.x8_c00375{left:531.375000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls0_c00375{letter-spacing:0.000000pt;}
.ws1_c00375{word-spacing:-13.333333pt;}
.ws0_c00375{word-spacing:-11.333333pt;}
.ws2_c00375{word-spacing:0.000000pt;}
._5_c00375{margin-left:-12.064043pt;}
._4_c00375{margin-left:-10.901312pt;}
._9_c00375{margin-left:-9.951851pt;}
._c_c00375{margin-left:-6.631941pt;}
._14_c00375{margin-left:-5.028584pt;}
._15_c00375{margin-left:-3.918824pt;}
._1_c00375{margin-left:-2.559792pt;}
._2_c00375{margin-left:-1.287920pt;}
._0_c00375{width:1.645328pt;}
._3_c00375{width:2.904016pt;}
._7_c00375{width:4.061339pt;}
._17_c00375{width:4.973203pt;}
._6_c00375{width:5.866667pt;}
._8_c00375{width:6.965184pt;}
._a_c00375{width:8.509403pt;}
._b_c00375{width:9.984128pt;}
._12_c00375{width:11.085243pt;}
._11_c00375{width:12.122677pt;}
._16_c00375{width:13.093229pt;}
._e_c00375{width:14.370683pt;}
._f_c00375{width:15.912048pt;}
._10_c00375{width:17.418581pt;}
._d_c00375{width:19.520000pt;}
._13_c00375{width:23.356912pt;}
.fs2_c00375{font-size:37.333333pt;}
.fs0_c00375{font-size:45.333333pt;}
.fs1_c00375{font-size:53.333333pt;}
.y0_c00375{bottom:0.000000pt;}
.y2b_c00375{bottom:57.266686pt;}
.y2a_c00375{bottom:97.933353pt;}
.y29_c00375{bottom:111.400020pt;}
.y28_c00375{bottom:125.466686pt;}
.y27_c00375{bottom:138.866686pt;}
.y26_c00375{bottom:152.666686pt;}
.y25_c00375{bottom:165.800020pt;}
.y24_c00375{bottom:179.533353pt;}
.y23_c00375{bottom:193.000020pt;}
.y22_c00375{bottom:206.733353pt;}
.y21_c00375{bottom:220.466686pt;}
.y20_c00375{bottom:233.933353pt;}
.y1f_c00375{bottom:247.400020pt;}
.y1e_c00375{bottom:261.466686pt;}
.y1d_c00375{bottom:274.866686pt;}
.y1c_c00375{bottom:288.666686pt;}
.y1b_c00375{bottom:301.800020pt;}
.y1a_c00375{bottom:315.533353pt;}
.y19_c00375{bottom:329.266686pt;}
.y18_c00375{bottom:342.733353pt;}
.y17_c00375{bottom:356.466686pt;}
.y16_c00375{bottom:369.933353pt;}
.y15_c00375{bottom:383.400020pt;}
.y14_c00375{bottom:397.466686pt;}
.y13_c00375{bottom:457.600020pt;}
.y12_c00375{bottom:474.600020pt;}
.y11_c00375{bottom:492.200020pt;}
.y10_c00375{bottom:509.466686pt;}
.yf_c00375{bottom:526.733353pt;}
.ye_c00375{bottom:544.000020pt;}
.yd_c00375{bottom:561.266686pt;}
.yc_c00375{bottom:578.600020pt;}
.yb_c00375{bottom:595.866686pt;}
.ya_c00375{bottom:613.133353pt;}
.y9_c00375{bottom:630.400020pt;}
.y8_c00375{bottom:647.666686pt;}
.y7_c00375{bottom:664.666686pt;}
.y6_c00375{bottom:681.933353pt;}
.y5_c00375{bottom:699.200020pt;}
.y4_c00375{bottom:716.466686pt;}
.y3_c00375{bottom:733.800020pt;}
.y2_c00375{bottom:750.733353pt;}
.y1_c00375{bottom:788.200020pt;}
.h2_c00375{height:44.470052pt;}
.h4_c00375{height:44.492188pt;}
.h3_c00375{height:52.343750pt;}
.h1_c00375{height:851.333333pt;}
.h0_c00375{height:851.533333pt;}
.w0_c00375{width:570.533360pt;}
.w1_c00375{width:570.666667pt;}
.x0_c00375{left:0.000000pt;}
.x3_c00375{left:71.333333pt;}
.x2_c00375{left:72.333333pt;}
.x5_c00375{left:78.066667pt;}
.x4_c00375{left:85.466667pt;}
.x6_c00375{left:106.866667pt;}
.x7_c00375{left:107.866667pt;}
.x1_c00375{left:203.866667pt;}
.x8_c00375{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbf567c535c12a7fc10165f4.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00376;src:url('chunks/assets/font_9e99ff2bd689c84c116bb15c.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00376{letter-spacing:0.000000px;}
.sc__c00376{text-shadow:none;}
.sc0_c00376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00376{-webkit-text-stroke:0px transparent;}
.sc0_c00376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00376{word-spacing:-15.000000px;}
.ws0_c00376{word-spacing:-12.750000px;}
.ws2_c00376{word-spacing:0.000000px;}
._f_c00376{margin-left:-14.010078px;}
._14_c00376{margin-left:-12.938985px;}
._7_c00376{margin-left:-11.700000px;}
._6_c00376{margin-left:-10.197027px;}
._1c_c00376{margin-left:-8.865219px;}
._1b_c00376{margin-left:-7.553595px;}
._16_c00376{margin-left:-5.903877px;}
._e_c00376{margin-left:-4.608108px;}
._1_c00376{margin-left:-3.300006px;}
._0_c00376{margin-left:-1.760979px;}
._2_c00376{width:1.839009px;}
._3_c00376{width:3.320967px;}
._11_c00376{width:5.123964px;}
._12_c00376{width:6.344955px;}
._5_c00376{width:7.361982px;}
._13_c00376{width:8.483964px;}
._8_c00376{width:9.855045px;}
._4_c00376{width:11.402973px;}
._b_c00376{width:13.200000px;}
._18_c00376{width:14.669922px;}
._a_c00376{width:16.103964px;}
._c_c00376{width:17.231916px;}
._9_c00376{width:19.241958px;}
._d_c00376{width:20.303964px;}
._10_c00376{width:21.464979px;}
._15_c00376{width:24.110964px;}
._19_c00376{width:25.610976px;}
._1a_c00376{width:27.593907px;}
._17_c00376{width:29.133036px;}
.fc1_c00376{color:transparent;}
.fc0_c00376{color:rgb(35,31,32);}
.fs0_c00376{font-size:51.000000px;}
.fs1_c00376{font-size:60.000000px;}
.y0_c00376{bottom:0.000000px;}
.y2d_c00376{bottom:64.425022px;}
.y2c_c00376{bottom:110.175022px;}
.y2b_c00376{bottom:125.325022px;}
.y2a_c00376{bottom:140.700022px;}
.y29_c00376{bottom:156.225022px;}
.y28_c00376{bottom:171.750022px;}
.y27_c00376{bottom:186.525022px;}
.y26_c00376{bottom:201.975022px;}
.y25_c00376{bottom:217.125022px;}
.y24_c00376{bottom:232.950022px;}
.y23_c00376{bottom:248.025022px;}
.y22_c00376{bottom:263.175022px;}
.y21_c00376{bottom:278.625022px;}
.y20_c00376{bottom:293.775022px;}
.y1f_c00376{bottom:308.925022px;}
.y1e_c00376{bottom:324.375022px;}
.y1d_c00376{bottom:339.525022px;}
.y1c_c00376{bottom:354.975022px;}
.y1b_c00376{bottom:370.425022px;}
.y1a_c00376{bottom:385.575022px;}
.y19_c00376{bottom:400.725022px;}
.y18_c00376{bottom:416.550022px;}
.y17_c00376{bottom:431.625022px;}
.y16_c00376{bottom:447.150022px;}
.y15_c00376{bottom:461.925022px;}
.y14_c00376{bottom:477.375022px;}
.y13_c00376{bottom:492.825022px;}
.y12_c00376{bottom:507.975022px;}
.y11_c00376{bottom:553.725022px;}
.y10_c00376{bottom:572.775022px;}
.yf_c00376{bottom:592.200022px;}
.ye_c00376{bottom:611.625022px;}
.yd_c00376{bottom:631.425022px;}
.yc_c00376{bottom:650.925022px;}
.yb_c00376{bottom:669.975022px;}
.ya_c00376{bottom:689.775022px;}
.y9_c00376{bottom:708.825022px;}
.y8_c00376{bottom:728.625022px;}
.y7_c00376{bottom:748.125022px;}
.y6_c00376{bottom:767.550022px;}
.y5_c00376{bottom:786.600022px;}
.y4_c00376{bottom:805.725022px;}
.y3_c00376{bottom:825.525022px;}
.y2_c00376{bottom:844.575022px;}
.y1_c00376{bottom:886.875022px;}
.h2_c00376{height:50.028809px;}
.h4_c00376{height:50.053711px;}
.h3_c00376{height:58.886719px;}
.h1_c00376{height:957.750000px;}
.h0_c00376{height:957.975000px;}
.w1_c00376{width:643.500000px;}
.w0_c00376{width:643.650000px;}
.x0_c00376{left:0.000000px;}
.x1_c00376{left:90.750000px;}
.x3_c00376{left:97.575000px;}
.x2_c00376{left:107.250000px;}
.x4_c00376{left:130.650000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls0_c00376{letter-spacing:0.000000pt;}
.ws1_c00376{word-spacing:-13.333333pt;}
.ws0_c00376{word-spacing:-11.333333pt;}
.ws2_c00376{word-spacing:0.000000pt;}
._f_c00376{margin-left:-12.453403pt;}
._14_c00376{margin-left:-11.501320pt;}
._7_c00376{margin-left:-10.400000pt;}
._6_c00376{margin-left:-9.064024pt;}
._1c_c00376{margin-left:-7.880195pt;}
._1b_c00376{margin-left:-6.714307pt;}
._16_c00376{margin-left:-5.247891pt;}
._e_c00376{margin-left:-4.096096pt;}
._1_c00376{margin-left:-2.933339pt;}
._0_c00376{margin-left:-1.565315pt;}
._2_c00376{width:1.634675pt;}
._3_c00376{width:2.951971pt;}
._11_c00376{width:4.554635pt;}
._12_c00376{width:5.639960pt;}
._5_c00376{width:6.543984pt;}
._13_c00376{width:7.541301pt;}
._8_c00376{width:8.760040pt;}
._4_c00376{width:10.135976pt;}
._b_c00376{width:11.733333pt;}
._18_c00376{width:13.039931pt;}
._a_c00376{width:14.314635pt;}
._c_c00376{width:15.317259pt;}
._9_c00376{width:17.103963pt;}
._d_c00376{width:18.047968pt;}
._10_c00376{width:19.079981pt;}
._15_c00376{width:21.431968pt;}
._19_c00376{width:22.765312pt;}
._1a_c00376{width:24.527917pt;}
._17_c00376{width:25.896032pt;}
.fs0_c00376{font-size:45.333333pt;}
.fs1_c00376{font-size:53.333333pt;}
.y0_c00376{bottom:0.000000pt;}
.y2d_c00376{bottom:57.266686pt;}
.y2c_c00376{bottom:97.933353pt;}
.y2b_c00376{bottom:111.400020pt;}
.y2a_c00376{bottom:125.066686pt;}
.y29_c00376{bottom:138.866686pt;}
.y28_c00376{bottom:152.666686pt;}
.y27_c00376{bottom:165.800020pt;}
.y26_c00376{bottom:179.533353pt;}
.y25_c00376{bottom:193.000020pt;}
.y24_c00376{bottom:207.066686pt;}
.y23_c00376{bottom:220.466686pt;}
.y22_c00376{bottom:233.933353pt;}
.y21_c00376{bottom:247.666686pt;}
.y20_c00376{bottom:261.133353pt;}
.y1f_c00376{bottom:274.600020pt;}
.y1e_c00376{bottom:288.333353pt;}
.y1d_c00376{bottom:301.800020pt;}
.y1c_c00376{bottom:315.533353pt;}
.y1b_c00376{bottom:329.266686pt;}
.y1a_c00376{bottom:342.733353pt;}
.y19_c00376{bottom:356.200020pt;}
.y18_c00376{bottom:370.266686pt;}
.y17_c00376{bottom:383.666686pt;}
.y16_c00376{bottom:397.466686pt;}
.y15_c00376{bottom:410.600020pt;}
.y14_c00376{bottom:424.333353pt;}
.y13_c00376{bottom:438.066686pt;}
.y12_c00376{bottom:451.533353pt;}
.y11_c00376{bottom:492.200020pt;}
.y10_c00376{bottom:509.133353pt;}
.yf_c00376{bottom:526.400020pt;}
.ye_c00376{bottom:543.666686pt;}
.yd_c00376{bottom:561.266686pt;}
.yc_c00376{bottom:578.600020pt;}
.yb_c00376{bottom:595.533353pt;}
.ya_c00376{bottom:613.133353pt;}
.y9_c00376{bottom:630.066686pt;}
.y8_c00376{bottom:647.666686pt;}
.y7_c00376{bottom:665.000020pt;}
.y6_c00376{bottom:682.266686pt;}
.y5_c00376{bottom:699.200020pt;}
.y4_c00376{bottom:716.200020pt;}
.y3_c00376{bottom:733.800020pt;}
.y2_c00376{bottom:750.733353pt;}
.y1_c00376{bottom:788.333353pt;}
.h2_c00376{height:44.470052pt;}
.h4_c00376{height:44.492188pt;}
.h3_c00376{height:52.343750pt;}
.h1_c00376{height:851.333333pt;}
.h0_c00376{height:851.533333pt;}
.w1_c00376{width:572.000000pt;}
.w0_c00376{width:572.133333pt;}
.x0_c00376{left:0.000000pt;}
.x1_c00376{left:80.666667pt;}
.x3_c00376{left:86.733333pt;}
.x2_c00376{left:95.333333pt;}
.x4_c00376{left:116.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_59d915cc7e00740d28e038f8.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00377;src:url('chunks/assets/font_01bcdfb9927f53c9b953e0ee.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00377{letter-spacing:0.000000px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00377{word-spacing:-15.000000px;}
.ws0_c00377{word-spacing:-12.750000px;}
.ws2_c00377{word-spacing:0.000000px;}
._11_c00377{margin-left:-15.423588px;}
._8_c00377{margin-left:-13.158012px;}
._7_c00377{margin-left:-11.870994px;}
._10_c00377{margin-left:-8.188320px;}
._12_c00377{margin-left:-6.390060px;}
._e_c00377{margin-left:-4.959294px;}
._18_c00377{margin-left:-3.903903px;}
._1_c00377{margin-left:-2.879766px;}
._2_c00377{margin-left:-1.448910px;}
._0_c00377{width:1.850994px;}
._4_c00377{width:3.501054px;}
._5_c00377{width:4.793916px;}
._f_c00377{width:6.230898px;}
._6_c00377{width:7.440000px;}
._a_c00377{width:9.330060px;}
._3_c00377{width:11.169006px;}
._14_c00377{width:12.497472px;}
._9_c00377{width:13.620000px;}
._13_c00377{width:16.167018px;}
._b_c00377{width:17.367018px;}
._c_c00377{width:19.389006px;}
._d_c00377{width:21.819066px;}
._16_c00377{width:23.645640px;}
._17_c00377{width:25.076496px;}
._15_c00377{width:26.276526px;}
.fc1_c00377{color:transparent;}
.fc0_c00377{color:rgb(35,31,32);}
.fs0_c00377{font-size:51.000000px;}
.fs1_c00377{font-size:60.000000px;}
.y0_c00377{bottom:0.000000px;}
.y2a_c00377{bottom:64.425022px;}
.y29_c00377{bottom:110.175022px;}
.y28_c00377{bottom:125.625022px;}
.y27_c00377{bottom:141.150022px;}
.y26_c00377{bottom:156.225022px;}
.y25_c00377{bottom:171.750022px;}
.y24_c00377{bottom:186.825022px;}
.y23_c00377{bottom:201.975022px;}
.y22_c00377{bottom:217.425022px;}
.y21_c00377{bottom:232.575022px;}
.y20_c00377{bottom:248.025022px;}
.y1f_c00377{bottom:263.550022px;}
.y1e_c00377{bottom:278.325022px;}
.y1d_c00377{bottom:294.075022px;}
.y1c_c00377{bottom:309.225022px;}
.y1b_c00377{bottom:324.375022px;}
.y1a_c00377{bottom:339.825022px;}
.y19_c00377{bottom:355.350022px;}
.y18_c00377{bottom:370.125022px;}
.y17_c00377{bottom:385.950022px;}
.y16_c00377{bottom:401.025022px;}
.y15_c00377{bottom:416.175022px;}
.y14_c00377{bottom:431.325022px;}
.y13_c00377{bottom:446.775022px;}
.y12_c00377{bottom:461.925022px;}
.y11_c00377{bottom:534.600022px;}
.y10_c00377{bottom:554.025022px;}
.yf_c00377{bottom:573.825022px;}
.ye_c00377{bottom:592.950022px;}
.yd_c00377{bottom:612.750022px;}
.yc_c00377{bottom:632.175022px;}
.yb_c00377{bottom:651.600022px;}
.ya_c00377{bottom:671.025022px;}
.y9_c00377{bottom:690.150022px;}
.y8_c00377{bottom:709.575022px;}
.y7_c00377{bottom:729.000022px;}
.y6_c00377{bottom:748.125022px;}
.y5_c00377{bottom:767.925022px;}
.y4_c00377{bottom:786.975022px;}
.y3_c00377{bottom:806.775022px;}
.y2_c00377{bottom:844.575022px;}
.y1_c00377{bottom:886.725022px;}
.h2_c00377{height:50.028809px;}
.h4_c00377{height:50.053711px;}
.h3_c00377{height:58.886719px;}
.h1_c00377{height:957.750000px;}
.h0_c00377{height:957.975000px;}
.w0_c00377{width:641.850030px;}
.w1_c00377{width:642.000000px;}
.x0_c00377{left:0.000000px;}
.x2_c00377{left:81.000000px;}
.x4_c00377{left:87.825000px;}
.x3_c00377{left:120.600000px;}
.x5_c00377{left:121.650000px;}
.x1_c00377{left:229.350000px;}
.x6_c00377{left:531.375000px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls0_c00377{letter-spacing:0.000000pt;}
.ws1_c00377{word-spacing:-13.333333pt;}
.ws0_c00377{word-spacing:-11.333333pt;}
.ws2_c00377{word-spacing:0.000000pt;}
._11_c00377{margin-left:-13.709856pt;}
._8_c00377{margin-left:-11.696011pt;}
._7_c00377{margin-left:-10.551995pt;}
._10_c00377{margin-left:-7.278507pt;}
._12_c00377{margin-left:-5.680053pt;}
._e_c00377{margin-left:-4.408261pt;}
._18_c00377{margin-left:-3.470136pt;}
._1_c00377{margin-left:-2.559792pt;}
._2_c00377{margin-left:-1.287920pt;}
._0_c00377{width:1.645328pt;}
._4_c00377{width:3.112048pt;}
._5_c00377{width:4.261259pt;}
._f_c00377{width:5.538576pt;}
._6_c00377{width:6.613333pt;}
._a_c00377{width:8.293387pt;}
._3_c00377{width:9.928005pt;}
._14_c00377{width:11.108864pt;}
._9_c00377{width:12.106667pt;}
._13_c00377{width:14.370683pt;}
._b_c00377{width:15.437349pt;}
._c_c00377{width:17.234672pt;}
._d_c00377{width:19.394725pt;}
._16_c00377{width:21.018347pt;}
._17_c00377{width:22.290219pt;}
._15_c00377{width:23.356912pt;}
.fs0_c00377{font-size:45.333333pt;}
.fs1_c00377{font-size:53.333333pt;}
.y0_c00377{bottom:0.000000pt;}
.y2a_c00377{bottom:57.266686pt;}
.y29_c00377{bottom:97.933353pt;}
.y28_c00377{bottom:111.666686pt;}
.y27_c00377{bottom:125.466686pt;}
.y26_c00377{bottom:138.866686pt;}
.y25_c00377{bottom:152.666686pt;}
.y24_c00377{bottom:166.066686pt;}
.y23_c00377{bottom:179.533353pt;}
.y22_c00377{bottom:193.266686pt;}
.y21_c00377{bottom:206.733353pt;}
.y20_c00377{bottom:220.466686pt;}
.y1f_c00377{bottom:234.266686pt;}
.y1e_c00377{bottom:247.400020pt;}
.y1d_c00377{bottom:261.400020pt;}
.y1c_c00377{bottom:274.866686pt;}
.y1b_c00377{bottom:288.333353pt;}
.y1a_c00377{bottom:302.066686pt;}
.y19_c00377{bottom:315.866686pt;}
.y18_c00377{bottom:329.000020pt;}
.y17_c00377{bottom:343.066686pt;}
.y16_c00377{bottom:356.466686pt;}
.y15_c00377{bottom:369.933353pt;}
.y14_c00377{bottom:383.400020pt;}
.y13_c00377{bottom:397.133353pt;}
.y12_c00377{bottom:410.600020pt;}
.y11_c00377{bottom:475.200020pt;}
.y10_c00377{bottom:492.466686pt;}
.yf_c00377{bottom:510.066686pt;}
.ye_c00377{bottom:527.066686pt;}
.yd_c00377{bottom:544.666686pt;}
.yc_c00377{bottom:561.933353pt;}
.yb_c00377{bottom:579.200020pt;}
.ya_c00377{bottom:596.466686pt;}
.y9_c00377{bottom:613.466686pt;}
.y8_c00377{bottom:630.733353pt;}
.y7_c00377{bottom:648.000020pt;}
.y6_c00377{bottom:665.000020pt;}
.y5_c00377{bottom:682.600020pt;}
.y4_c00377{bottom:699.533353pt;}
.y3_c00377{bottom:717.133353pt;}
.y2_c00377{bottom:750.733353pt;}
.y1_c00377{bottom:788.200020pt;}
.h2_c00377{height:44.470052pt;}
.h4_c00377{height:44.492188pt;}
.h3_c00377{height:52.343750pt;}
.h1_c00377{height:851.333333pt;}
.h0_c00377{height:851.533333pt;}
.w0_c00377{width:570.533360pt;}
.w1_c00377{width:570.666667pt;}
.x0_c00377{left:0.000000pt;}
.x2_c00377{left:72.000000pt;}
.x4_c00377{left:78.066667pt;}
.x3_c00377{left:107.200000pt;}
.x5_c00377{left:108.133333pt;}
.x1_c00377{left:203.866667pt;}
.x6_c00377{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_015e440aec6359cb587e679a.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00378;src:url('chunks/assets/font_0dcc894ea35fc98e35ed3466.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00378{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00378{letter-spacing:0.000000px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00378{word-spacing:-15.000000px;}
.ws0_c00378{word-spacing:-12.750000px;}
.ws2_c00378{word-spacing:0.000000px;}
._c_c00378{margin-left:-15.120000px;}
._f_c00378{margin-left:-13.080000px;}
._10_c00378{margin-left:-12.000000px;}
._16_c00378{margin-left:-10.208913px;}
._12_c00378{margin-left:-6.240000px;}
._e_c00378{margin-left:-4.860000px;}
._13_c00378{margin-left:-3.600000px;}
._7_c00378{margin-left:-2.520000px;}
._8_c00378{margin-left:-1.200000px;}
._0_c00378{width:1.080000px;}
._3_c00378{width:2.280000px;}
._4_c00378{width:4.020000px;}
._11_c00378{width:5.400000px;}
._5_c00378{width:6.780000px;}
._2_c00378{width:8.700000px;}
._6_c00378{width:10.500000px;}
._1_c00378{width:12.600000px;}
._14_c00378{width:13.860000px;}
._17_c00378{width:15.356982px;}
._b_c00378{width:16.680000px;}
._d_c00378{width:18.300000px;}
._a_c00378{width:20.400000px;}
._9_c00378{width:22.800000px;}
._19_c00378{width:23.969979px;}
._18_c00378{width:25.469991px;}
._15_c00378{width:29.310093px;}
.fc1_c00378{color:transparent;}
.fc0_c00378{color:rgb(35,31,32);}
.fs1_c00378{font-size:51.000000px;}
.fs0_c00378{font-size:60.000000px;}
.y0_c00378{bottom:0.000000px;}
.y29_c00378{bottom:64.425022px;}
.y28_c00378{bottom:110.175022px;}
.y27_c00378{bottom:125.325022px;}
.y26_c00378{bottom:140.775022px;}
.y25_c00378{bottom:156.225022px;}
.y24_c00378{bottom:171.750022px;}
.y23_c00378{bottom:186.525022px;}
.y22_c00378{bottom:201.975022px;}
.y21_c00378{bottom:217.125022px;}
.y20_c00378{bottom:232.575022px;}
.y1f_c00378{bottom:247.725022px;}
.y1e_c00378{bottom:263.175022px;}
.y1d_c00378{bottom:278.325022px;}
.y1c_c00378{bottom:294.150022px;}
.y1b_c00378{bottom:308.925022px;}
.y1a_c00378{bottom:324.750022px;}
.y19_c00378{bottom:339.525022px;}
.y18_c00378{bottom:354.975022px;}
.y17_c00378{bottom:370.275022px;}
.y16_c00378{bottom:385.575022px;}
.y15_c00378{bottom:400.725022px;}
.y13_c00378{bottom:495.000022px;}
.y12_c00378{bottom:514.800022px;}
.y11_c00378{bottom:533.925022px;}
.y10_c00378{bottom:553.350022px;}
.yf_c00378{bottom:572.775022px;}
.ye_c00378{bottom:592.200022px;}
.yd_c00378{bottom:611.625022px;}
.yc_c00378{bottom:631.425022px;}
.yb_c00378{bottom:650.550022px;}
.ya_c00378{bottom:670.350022px;}
.y9_c00378{bottom:689.400022px;}
.y8_c00378{bottom:708.825022px;}
.y7_c00378{bottom:728.625022px;}
.y6_c00378{bottom:747.750022px;}
.y5_c00378{bottom:767.550022px;}
.y4_c00378{bottom:786.225022px;}
.y3_c00378{bottom:805.725022px;}
.y2_c00378{bottom:825.525022px;}
.y1_c00378{bottom:844.950022px;}
.y14_c00378{bottom:886.875022px;}
.h3_c00378{height:50.028809px;}
.h4_c00378{height:50.053711px;}
.h2_c00378{height:58.886719px;}
.h1_c00378{height:957.750000px;}
.h0_c00378{height:957.975000px;}
.w1_c00378{width:643.500000px;}
.w0_c00378{width:643.650000px;}
.x0_c00378{left:0.000000px;}
.x2_c00378{left:91.425000px;}
.x3_c00378{left:97.575000px;}
.x1_c00378{left:106.200000px;}
.x4_c00378{left:130.650000px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls0_c00378{letter-spacing:0.000000pt;}
.ws1_c00378{word-spacing:-13.333333pt;}
.ws0_c00378{word-spacing:-11.333333pt;}
.ws2_c00378{word-spacing:0.000000pt;}
._c_c00378{margin-left:-13.440000pt;}
._f_c00378{margin-left:-11.626667pt;}
._10_c00378{margin-left:-10.666667pt;}
._16_c00378{margin-left:-9.074589pt;}
._12_c00378{margin-left:-5.546667pt;}
._e_c00378{margin-left:-4.320000pt;}
._13_c00378{margin-left:-3.200000pt;}
._7_c00378{margin-left:-2.240000pt;}
._8_c00378{margin-left:-1.066667pt;}
._0_c00378{width:0.960000pt;}
._3_c00378{width:2.026667pt;}
._4_c00378{width:3.573333pt;}
._11_c00378{width:4.800000pt;}
._5_c00378{width:6.026667pt;}
._2_c00378{width:7.733333pt;}
._6_c00378{width:9.333333pt;}
._1_c00378{width:11.200000pt;}
._14_c00378{width:12.320000pt;}
._17_c00378{width:13.650651pt;}
._b_c00378{width:14.826667pt;}
._d_c00378{width:16.266667pt;}
._a_c00378{width:18.133333pt;}
._9_c00378{width:20.266667pt;}
._19_c00378{width:21.306648pt;}
._18_c00378{width:22.639992pt;}
._15_c00378{width:26.053416pt;}
.fs1_c00378{font-size:45.333333pt;}
.fs0_c00378{font-size:53.333333pt;}
.y0_c00378{bottom:0.000000pt;}
.y29_c00378{bottom:57.266686pt;}
.y28_c00378{bottom:97.933353pt;}
.y27_c00378{bottom:111.400020pt;}
.y26_c00378{bottom:125.133353pt;}
.y25_c00378{bottom:138.866686pt;}
.y24_c00378{bottom:152.666686pt;}
.y23_c00378{bottom:165.800020pt;}
.y22_c00378{bottom:179.533353pt;}
.y21_c00378{bottom:193.000020pt;}
.y20_c00378{bottom:206.733353pt;}
.y1f_c00378{bottom:220.200020pt;}
.y1e_c00378{bottom:233.933353pt;}
.y1d_c00378{bottom:247.400020pt;}
.y1c_c00378{bottom:261.466686pt;}
.y1b_c00378{bottom:274.600020pt;}
.y1a_c00378{bottom:288.666686pt;}
.y19_c00378{bottom:301.800020pt;}
.y18_c00378{bottom:315.533353pt;}
.y17_c00378{bottom:329.133353pt;}
.y16_c00378{bottom:342.733353pt;}
.y15_c00378{bottom:356.200020pt;}
.y13_c00378{bottom:440.000020pt;}
.y12_c00378{bottom:457.600020pt;}
.y11_c00378{bottom:474.600020pt;}
.y10_c00378{bottom:491.866686pt;}
.yf_c00378{bottom:509.133353pt;}
.ye_c00378{bottom:526.400020pt;}
.yd_c00378{bottom:543.666686pt;}
.yc_c00378{bottom:561.266686pt;}
.yb_c00378{bottom:578.266686pt;}
.ya_c00378{bottom:595.866686pt;}
.y9_c00378{bottom:612.800020pt;}
.y8_c00378{bottom:630.066686pt;}
.y7_c00378{bottom:647.666686pt;}
.y6_c00378{bottom:664.666686pt;}
.y5_c00378{bottom:682.266686pt;}
.y4_c00378{bottom:698.866686pt;}
.y3_c00378{bottom:716.200020pt;}
.y2_c00378{bottom:733.800020pt;}
.y1_c00378{bottom:751.066686pt;}
.y14_c00378{bottom:788.333353pt;}
.h3_c00378{height:44.470052pt;}
.h4_c00378{height:44.492188pt;}
.h2_c00378{height:52.343750pt;}
.h1_c00378{height:851.333333pt;}
.h0_c00378{height:851.533333pt;}
.w1_c00378{width:572.000000pt;}
.w0_c00378{width:572.133333pt;}
.x0_c00378{left:0.000000pt;}
.x2_c00378{left:81.266667pt;}
.x3_c00378{left:86.733333pt;}
.x1_c00378{left:94.400000pt;}
.x4_c00378{left:116.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5e64c1133435a6fb1a7f4929.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00379;src:url('chunks/assets/font_34036d2f92944c425ee04514.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.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:-15.000000px;}
.ws1_c00379{word-spacing:-12.750000px;}
.ws2_c00379{word-spacing:0.000000px;}
._12_c00379{margin-left:-14.930598px;}
._14_c00379{margin-left:-13.784856px;}
._7_c00379{margin-left:-12.317562px;}
._11_c00379{margin-left:-10.945830px;}
._1e_c00379{margin-left:-9.578643px;}
._18_c00379{margin-left:-7.418799px;}
._1d_c00379{margin-left:-6.378615px;}
._b_c00379{margin-left:-5.358012px;}
._16_c00379{margin-left:-3.973590px;}
._1_c00379{margin-left:-2.879766px;}
._2_c00379{margin-left:-1.448910px;}
._0_c00379{width:1.850994px;}
._6_c00379{width:2.954640px;}
._d_c00379{width:4.148910px;}
._5_c00379{width:5.943042px;}
._4_c00379{width:6.978012px;}
._3_c00379{width:8.625030px;}
._10_c00379{width:9.734232px;}
._c_c00379{width:10.800000px;}
._13_c00379{width:11.995980px;}
._e_c00379{width:13.319670px;}
._19_c00379{width:14.518197px;}
._f_c00379{width:16.020000px;}
._8_c00379{width:17.520000px;}
._a_c00379{width:18.774036px;}
._15_c00379{width:20.019066px;}
._9_c00379{width:21.069006px;}
._1b_c00379{width:22.145640px;}
._1a_c00379{width:23.546118px;}
._17_c00379{width:25.076496px;}
._1c_c00379{width:26.276526px;}
._20_c00379{width:27.707433px;}
._1f_c00379{width:29.138208px;}
.fc1_c00379{color:transparent;}
.fc0_c00379{color:rgb(35,31,32);}
.fs0_c00379{font-size:51.000000px;}
.fs1_c00379{font-size:60.000000px;}
.y0_c00379{bottom:0.000000px;}
.y2a_c00379{bottom:64.425022px;}
.y29_c00379{bottom:110.550022px;}
.y28_c00379{bottom:125.625022px;}
.y27_c00379{bottom:140.775022px;}
.y26_c00379{bottom:156.225022px;}
.y25_c00379{bottom:171.375022px;}
.y24_c00379{bottom:186.825022px;}
.y23_c00379{bottom:201.975022px;}
.y22_c00379{bottom:217.125022px;}
.y21_c00379{bottom:232.575022px;}
.y20_c00379{bottom:247.725022px;}
.y1f_c00379{bottom:263.175022px;}
.y1e_c00379{bottom:278.325022px;}
.y1d_c00379{bottom:294.150022px;}
.y1c_c00379{bottom:308.925022px;}
.y1b_c00379{bottom:359.325022px;}
.y1a_c00379{bottom:378.750022px;}
.y19_c00379{bottom:398.175022px;}
.y18_c00379{bottom:417.225022px;}
.y17_c00379{bottom:437.100022px;}
.y16_c00379{bottom:456.525022px;}
.y15_c00379{bottom:475.950022px;}
.y14_c00379{bottom:495.375022px;}
.y13_c00379{bottom:514.800022px;}
.y12_c00379{bottom:534.225022px;}
.y11_c00379{bottom:553.350022px;}
.y10_c00379{bottom:573.150022px;}
.yf_c00379{bottom:592.200022px;}
.ye_c00379{bottom:612.000022px;}
.yd_c00379{bottom:631.125022px;}
.yc_c00379{bottom:650.550022px;}
.yb_c00379{bottom:670.350022px;}
.ya_c00379{bottom:689.400022px;}
.y9_c00379{bottom:709.200022px;}
.y8_c00379{bottom:728.625022px;}
.y7_c00379{bottom:747.750022px;}
.y6_c00379{bottom:767.175022px;}
.y5_c00379{bottom:786.225022px;}
.y4_c00379{bottom:805.725022px;}
.y3_c00379{bottom:825.525022px;}
.y2_c00379{bottom:844.575022px;}
.y1_c00379{bottom:886.725022px;}
.h2_c00379{height:50.028809px;}
.h4_c00379{height:50.053711px;}
.h3_c00379{height:58.886719px;}
.h1_c00379{height:957.750000px;}
.h0_c00379{height:957.975000px;}
.w0_c00379{width:641.850030px;}
.w1_c00379{width:642.000000px;}
.x0_c00379{left:0.000000px;}
.x2_c00379{left:80.250000px;}
.x4_c00379{left:81.375000px;}
.x5_c00379{left:87.825000px;}
.x3_c00379{left:97.200000px;}
.x7_c00379{left:120.225000px;}
.x6_c00379{left:121.350000px;}
.x1_c00379{left:229.350000px;}
.x8_c00379{left:531.375000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls0_c00379{letter-spacing:0.000000pt;}
.ws0_c00379{word-spacing:-13.333333pt;}
.ws1_c00379{word-spacing:-11.333333pt;}
.ws2_c00379{word-spacing:0.000000pt;}
._12_c00379{margin-left:-13.271643pt;}
._14_c00379{margin-left:-12.253205pt;}
._7_c00379{margin-left:-10.948944pt;}
._11_c00379{margin-left:-9.729627pt;}
._1e_c00379{margin-left:-8.514349pt;}
._18_c00379{margin-left:-6.594488pt;}
._1d_c00379{margin-left:-5.669880pt;}
._b_c00379{margin-left:-4.762677pt;}
._16_c00379{margin-left:-3.532080pt;}
._1_c00379{margin-left:-2.559792pt;}
._2_c00379{margin-left:-1.287920pt;}
._0_c00379{width:1.645328pt;}
._6_c00379{width:2.626347pt;}
._d_c00379{width:3.687920pt;}
._5_c00379{width:5.282704pt;}
._4_c00379{width:6.202677pt;}
._3_c00379{width:7.666693pt;}
._10_c00379{width:8.652651pt;}
._c_c00379{width:9.600000pt;}
._13_c00379{width:10.663093pt;}
._e_c00379{width:11.839707pt;}
._19_c00379{width:12.905064pt;}
._f_c00379{width:14.240000pt;}
._8_c00379{width:15.573333pt;}
._a_c00379{width:16.688032pt;}
._15_c00379{width:17.794725pt;}
._9_c00379{width:18.728005pt;}
._1b_c00379{width:19.685013pt;}
._1a_c00379{width:20.929883pt;}
._17_c00379{width:22.290219pt;}
._1c_c00379{width:23.356912pt;}
._20_c00379{width:24.628829pt;}
._1f_c00379{width:25.900629pt;}
.fs0_c00379{font-size:45.333333pt;}
.fs1_c00379{font-size:53.333333pt;}
.y0_c00379{bottom:0.000000pt;}
.y2a_c00379{bottom:57.266686pt;}
.y29_c00379{bottom:98.266686pt;}
.y28_c00379{bottom:111.666686pt;}
.y27_c00379{bottom:125.133353pt;}
.y26_c00379{bottom:138.866686pt;}
.y25_c00379{bottom:152.333353pt;}
.y24_c00379{bottom:166.066686pt;}
.y23_c00379{bottom:179.533353pt;}
.y22_c00379{bottom:193.000020pt;}
.y21_c00379{bottom:206.733353pt;}
.y20_c00379{bottom:220.200020pt;}
.y1f_c00379{bottom:233.933353pt;}
.y1e_c00379{bottom:247.400020pt;}
.y1d_c00379{bottom:261.466686pt;}
.y1c_c00379{bottom:274.600020pt;}
.y1b_c00379{bottom:319.400020pt;}
.y1a_c00379{bottom:336.666686pt;}
.y19_c00379{bottom:353.933353pt;}
.y18_c00379{bottom:370.866686pt;}
.y17_c00379{bottom:388.533353pt;}
.y16_c00379{bottom:405.800020pt;}
.y15_c00379{bottom:423.066686pt;}
.y14_c00379{bottom:440.333353pt;}
.y13_c00379{bottom:457.600020pt;}
.y12_c00379{bottom:474.866686pt;}
.y11_c00379{bottom:491.866686pt;}
.y10_c00379{bottom:509.466686pt;}
.yf_c00379{bottom:526.400020pt;}
.ye_c00379{bottom:544.000020pt;}
.yd_c00379{bottom:561.000020pt;}
.yc_c00379{bottom:578.266686pt;}
.yb_c00379{bottom:595.866686pt;}
.ya_c00379{bottom:612.800020pt;}
.y9_c00379{bottom:630.400020pt;}
.y8_c00379{bottom:647.666686pt;}
.y7_c00379{bottom:664.666686pt;}
.y6_c00379{bottom:681.933353pt;}
.y5_c00379{bottom:698.866686pt;}
.y4_c00379{bottom:716.200020pt;}
.y3_c00379{bottom:733.800020pt;}
.y2_c00379{bottom:750.733353pt;}
.y1_c00379{bottom:788.200020pt;}
.h2_c00379{height:44.470052pt;}
.h4_c00379{height:44.492188pt;}
.h3_c00379{height:52.343750pt;}
.h1_c00379{height:851.333333pt;}
.h0_c00379{height:851.533333pt;}
.w0_c00379{width:570.533360pt;}
.w1_c00379{width:570.666667pt;}
.x0_c00379{left:0.000000pt;}
.x2_c00379{left:71.333333pt;}
.x4_c00379{left:72.333333pt;}
.x5_c00379{left:78.066667pt;}
.x3_c00379{left:86.400000pt;}
.x7_c00379{left:106.866667pt;}
.x6_c00379{left:107.866667pt;}
.x1_c00379{left:203.866667pt;}
.x8_c00379{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0823a08b09a6aade51279b1.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00380;src:url('chunks/assets/font_918ab070c6c607ed5f5c40bb.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00380{letter-spacing:0.000000px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00380{word-spacing:-15.000000px;}
.ws0_c00380{word-spacing:-12.750000px;}
.ws2_c00380{word-spacing:0.000000px;}
._c_c00380{margin-left:-15.600000px;}
._e_c00380{margin-left:-12.420048px;}
._d_c00380{margin-left:-11.339976px;}
._12_c00380{margin-left:-7.800000px;}
._9_c00380{margin-left:-5.658018px;}
._f_c00380{margin-left:-4.406937px;}
._1_c00380{margin-left:-3.300006px;}
._0_c00380{margin-left:-1.760979px;}
._2_c00380{width:1.839009px;}
._3_c00380{width:3.320967px;}
._10_c00380{width:5.118018px;}
._6_c00380{width:6.464955px;}
._5_c00380{width:7.794030px;}
._4_c00380{width:9.020979px;}
._a_c00380{width:10.721958px;}
._8_c00380{width:11.762973px;}
._7_c00380{width:13.043964px;}
._15_c00380{width:14.367009px;}
._16_c00380{width:15.636060px;}
._b_c00380{width:16.661958px;}
._11_c00380{width:18.347940px;}
._13_c00380{width:19.865946px;}
._14_c00380{width:23.600991px;}
.fc1_c00380{color:transparent;}
.fc0_c00380{color:rgb(35,31,32);}
.fs0_c00380{font-size:51.000000px;}
.fs1_c00380{font-size:60.000000px;}
.y0_c00380{bottom:0.000000px;}
.y27_c00380{bottom:64.425022px;}
.y26_c00380{bottom:110.175022px;}
.y25_c00380{bottom:125.325022px;}
.y24_c00380{bottom:141.150022px;}
.y23_c00380{bottom:156.225022px;}
.y22_c00380{bottom:171.750022px;}
.y21_c00380{bottom:186.525022px;}
.y20_c00380{bottom:202.350022px;}
.y1f_c00380{bottom:217.125022px;}
.y1e_c00380{bottom:232.950022px;}
.y1d_c00380{bottom:248.025022px;}
.y1c_c00380{bottom:263.175022px;}
.y1b_c00380{bottom:278.325022px;}
.y1a_c00380{bottom:294.150022px;}
.y19_c00380{bottom:308.925022px;}
.y18_c00380{bottom:361.125022px;}
.y17_c00380{bottom:380.925022px;}
.y16_c00380{bottom:399.975022px;}
.y15_c00380{bottom:419.775022px;}
.y14_c00380{bottom:438.900022px;}
.y13_c00380{bottom:458.325022px;}
.y12_c00380{bottom:477.750022px;}
.y11_c00380{bottom:497.550022px;}
.y10_c00380{bottom:516.975022px;}
.yf_c00380{bottom:536.400022px;}
.ye_c00380{bottom:555.525022px;}
.yd_c00380{bottom:574.950022px;}
.yc_c00380{bottom:594.750022px;}
.yb_c00380{bottom:614.175022px;}
.ya_c00380{bottom:651.975022px;}
.y9_c00380{bottom:708.825022px;}
.y8_c00380{bottom:728.325022px;}
.y7_c00380{bottom:747.750022px;}
.y6_c00380{bottom:767.475022px;}
.y5_c00380{bottom:786.600022px;}
.y4_c00380{bottom:805.725022px;}
.y3_c00380{bottom:825.150022px;}
.y2_c00380{bottom:844.950022px;}
.y1_c00380{bottom:886.875022px;}
.h2_c00380{height:50.028809px;}
.h4_c00380{height:50.053711px;}
.h3_c00380{height:58.886719px;}
.h1_c00380{height:957.750000px;}
.h0_c00380{height:957.975000px;}
.w1_c00380{width:643.500000px;}
.w0_c00380{width:643.650000px;}
.x0_c00380{left:0.000000px;}
.x1_c00380{left:90.750000px;}
.x2_c00380{left:97.575000px;}
.x3_c00380{left:131.400000px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls0_c00380{letter-spacing:0.000000pt;}
.ws1_c00380{word-spacing:-13.333333pt;}
.ws0_c00380{word-spacing:-11.333333pt;}
.ws2_c00380{word-spacing:0.000000pt;}
._c_c00380{margin-left:-13.866667pt;}
._e_c00380{margin-left:-11.040043pt;}
._d_c00380{margin-left:-10.079979pt;}
._12_c00380{margin-left:-6.933333pt;}
._9_c00380{margin-left:-5.029349pt;}
._f_c00380{margin-left:-3.917277pt;}
._1_c00380{margin-left:-2.933339pt;}
._0_c00380{margin-left:-1.565315pt;}
._2_c00380{width:1.634675pt;}
._3_c00380{width:2.951971pt;}
._10_c00380{width:4.549349pt;}
._6_c00380{width:5.746627pt;}
._5_c00380{width:6.928027pt;}
._4_c00380{width:8.018648pt;}
._a_c00380{width:9.530629pt;}
._8_c00380{width:10.455976pt;}
._7_c00380{width:11.594635pt;}
._15_c00380{width:12.770675pt;}
._16_c00380{width:13.898720pt;}
._b_c00380{width:14.810629pt;}
._11_c00380{width:16.309280pt;}
._13_c00380{width:17.658619pt;}
._14_c00380{width:20.978659pt;}
.fs0_c00380{font-size:45.333333pt;}
.fs1_c00380{font-size:53.333333pt;}
.y0_c00380{bottom:0.000000pt;}
.y27_c00380{bottom:57.266686pt;}
.y26_c00380{bottom:97.933353pt;}
.y25_c00380{bottom:111.400020pt;}
.y24_c00380{bottom:125.466686pt;}
.y23_c00380{bottom:138.866686pt;}
.y22_c00380{bottom:152.666686pt;}
.y21_c00380{bottom:165.800020pt;}
.y20_c00380{bottom:179.866686pt;}
.y1f_c00380{bottom:193.000020pt;}
.y1e_c00380{bottom:207.066686pt;}
.y1d_c00380{bottom:220.466686pt;}
.y1c_c00380{bottom:233.933353pt;}
.y1b_c00380{bottom:247.400020pt;}
.y1a_c00380{bottom:261.466686pt;}
.y19_c00380{bottom:274.600020pt;}
.y18_c00380{bottom:321.000020pt;}
.y17_c00380{bottom:338.600020pt;}
.y16_c00380{bottom:355.533353pt;}
.y15_c00380{bottom:373.133353pt;}
.y14_c00380{bottom:390.133353pt;}
.y13_c00380{bottom:407.400020pt;}
.y12_c00380{bottom:424.666686pt;}
.y11_c00380{bottom:442.266686pt;}
.y10_c00380{bottom:459.533353pt;}
.yf_c00380{bottom:476.800020pt;}
.ye_c00380{bottom:493.800020pt;}
.yd_c00380{bottom:511.066686pt;}
.yc_c00380{bottom:528.666686pt;}
.yb_c00380{bottom:545.933353pt;}
.ya_c00380{bottom:579.533353pt;}
.y9_c00380{bottom:630.066686pt;}
.y8_c00380{bottom:647.400020pt;}
.y7_c00380{bottom:664.666686pt;}
.y6_c00380{bottom:682.200020pt;}
.y5_c00380{bottom:699.200020pt;}
.y4_c00380{bottom:716.200020pt;}
.y3_c00380{bottom:733.466686pt;}
.y2_c00380{bottom:751.066686pt;}
.y1_c00380{bottom:788.333353pt;}
.h2_c00380{height:44.470052pt;}
.h4_c00380{height:44.492188pt;}
.h3_c00380{height:52.343750pt;}
.h1_c00380{height:851.333333pt;}
.h0_c00380{height:851.533333pt;}
.w1_c00380{width:572.000000pt;}
.w0_c00380{width:572.133333pt;}
.x0_c00380{left:0.000000pt;}
.x1_c00380{left:80.666667pt;}
.x2_c00380{left:86.733333pt;}
.x3_c00380{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_953a1c40149846b36b9ce38a.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00381;src:url('chunks/assets/font_d3cf322a8fe733c6d7c4f9b6.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00381{letter-spacing:0.000000px;}
.sc__c00381{text-shadow:none;}
.sc0_c00381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00381{-webkit-text-stroke:0px transparent;}
.sc0_c00381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00381{word-spacing:-15.000000px;}
.ws1_c00381{word-spacing:-12.750000px;}
.ws2_c00381{word-spacing:0.000000px;}
._18_c00381{margin-left:-14.835882px;}
._15_c00381{margin-left:-13.532514px;}
._6_c00381{margin-left:-12.443976px;}
._e_c00381{margin-left:-10.916958px;}
._1b_c00381{margin-left:-8.448600px;}
._4_c00381{margin-left:-7.355790px;}
._b_c00381{margin-left:-5.400000px;}
._1c_c00381{margin-left:-3.961146px;}
._1_c00381{margin-left:-2.879766px;}
._2_c00381{margin-left:-1.448910px;}
._0_c00381{width:1.850994px;}
._5_c00381{width:2.912868px;}
._3_c00381{width:4.133802px;}
._d_c00381{width:5.615388px;}
._8_c00381{width:7.089006px;}
._9_c00381{width:8.967252px;}
._a_c00381{width:10.017312px;}
._7_c00381{width:11.531928px;}
._16_c00381{width:12.646944px;}
._c_c00381{width:13.800000px;}
._1a_c00381{width:14.954523px;}
._17_c00381{width:16.632162px;}
._19_c00381{width:17.784318px;}
._11_c00381{width:20.597682px;}
._13_c00381{width:21.756024px;}
._12_c00381{width:22.868910px;}
._f_c00381{width:24.069006px;}
._10_c00381{width:26.589006px;}
._14_c00381{width:28.758012px;}
.fc1_c00381{color:transparent;}
.fc0_c00381{color:rgb(35,31,32);}
.fs0_c00381{font-size:51.000000px;}
.fs1_c00381{font-size:60.000000px;}
.y0_c00381{bottom:0.000000px;}
.y2d_c00381{bottom:64.425022px;}
.y2c_c00381{bottom:110.175022px;}
.y2b_c00381{bottom:125.325022px;}
.y2a_c00381{bottom:141.150022px;}
.y29_c00381{bottom:155.925022px;}
.y28_c00381{bottom:171.750022px;}
.y27_c00381{bottom:186.825022px;}
.y26_c00381{bottom:202.350022px;}
.y25_c00381{bottom:217.425022px;}
.y24_c00381{bottom:232.950022px;}
.y23_c00381{bottom:247.725022px;}
.y22_c00381{bottom:263.550022px;}
.y21_c00381{bottom:278.625022px;}
.y20_c00381{bottom:294.150022px;}
.y1f_c00381{bottom:309.225022px;}
.y1e_c00381{bottom:324.675022px;}
.y1d_c00381{bottom:339.825022px;}
.y1c_c00381{bottom:354.975022px;}
.y1b_c00381{bottom:370.125022px;}
.y1a_c00381{bottom:385.575022px;}
.y19_c00381{bottom:401.025022px;}
.y18_c00381{bottom:416.175022px;}
.y17_c00381{bottom:431.325022px;}
.y16_c00381{bottom:447.150022px;}
.y15_c00381{bottom:461.925022px;}
.y14_c00381{bottom:477.750022px;}
.y13_c00381{bottom:492.825022px;}
.y12_c00381{bottom:508.275022px;}
.y11_c00381{bottom:523.425022px;}
.y10_c00381{bottom:538.575022px;}
.yf_c00381{bottom:592.575022px;}
.ye_c00381{bottom:611.625022px;}
.yd_c00381{bottom:631.425022px;}
.yc_c00381{bottom:650.925022px;}
.yb_c00381{bottom:670.350022px;}
.ya_c00381{bottom:689.400022px;}
.y9_c00381{bottom:709.200022px;}
.y8_c00381{bottom:728.625022px;}
.y7_c00381{bottom:747.750022px;}
.y6_c00381{bottom:767.550022px;}
.y5_c00381{bottom:786.600022px;}
.y4_c00381{bottom:806.025022px;}
.y3_c00381{bottom:825.525022px;}
.y2_c00381{bottom:844.575022px;}
.y1_c00381{bottom:886.725022px;}
.h2_c00381{height:50.028809px;}
.h4_c00381{height:50.053711px;}
.h3_c00381{height:58.886719px;}
.h1_c00381{height:957.750000px;}
.h0_c00381{height:957.975000px;}
.w0_c00381{width:641.850030px;}
.w1_c00381{width:642.000000px;}
.x0_c00381{left:0.000000px;}
.x2_c00381{left:81.000000px;}
.x5_c00381{left:87.825000px;}
.x3_c00381{left:97.200000px;}
.x4_c00381{left:120.975000px;}
.x1_c00381{left:229.350000px;}
.x6_c00381{left:531.375000px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls0_c00381{letter-spacing:0.000000pt;}
.ws0_c00381{word-spacing:-13.333333pt;}
.ws1_c00381{word-spacing:-11.333333pt;}
.ws2_c00381{word-spacing:0.000000pt;}
._18_c00381{margin-left:-13.187451pt;}
._15_c00381{margin-left:-12.028901pt;}
._6_c00381{margin-left:-11.061312pt;}
._e_c00381{margin-left:-9.703963pt;}
._1b_c00381{margin-left:-7.509867pt;}
._4_c00381{margin-left:-6.538480pt;}
._b_c00381{margin-left:-4.800000pt;}
._1c_c00381{margin-left:-3.521019pt;}
._1_c00381{margin-left:-2.559792pt;}
._2_c00381{margin-left:-1.287920pt;}
._0_c00381{width:1.645328pt;}
._5_c00381{width:2.589216pt;}
._3_c00381{width:3.674491pt;}
._d_c00381{width:4.991456pt;}
._8_c00381{width:6.301339pt;}
._9_c00381{width:7.970891pt;}
._a_c00381{width:8.904277pt;}
._7_c00381{width:10.250603pt;}
._16_c00381{width:11.241728pt;}
._c_c00381{width:12.266667pt;}
._1a_c00381{width:13.292909pt;}
._17_c00381{width:14.784144pt;}
._19_c00381{width:15.808283pt;}
._11_c00381{width:18.309051pt;}
._13_c00381{width:19.338688pt;}
._12_c00381{width:20.327920pt;}
._f_c00381{width:21.394672pt;}
._10_c00381{width:23.634672pt;}
._14_c00381{width:25.562677pt;}
.fs0_c00381{font-size:45.333333pt;}
.fs1_c00381{font-size:53.333333pt;}
.y0_c00381{bottom:0.000000pt;}
.y2d_c00381{bottom:57.266686pt;}
.y2c_c00381{bottom:97.933353pt;}
.y2b_c00381{bottom:111.400020pt;}
.y2a_c00381{bottom:125.466686pt;}
.y29_c00381{bottom:138.600020pt;}
.y28_c00381{bottom:152.666686pt;}
.y27_c00381{bottom:166.066686pt;}
.y26_c00381{bottom:179.866686pt;}
.y25_c00381{bottom:193.266686pt;}
.y24_c00381{bottom:207.066686pt;}
.y23_c00381{bottom:220.200020pt;}
.y22_c00381{bottom:234.266686pt;}
.y21_c00381{bottom:247.666686pt;}
.y20_c00381{bottom:261.466686pt;}
.y1f_c00381{bottom:274.866686pt;}
.y1e_c00381{bottom:288.600020pt;}
.y1d_c00381{bottom:302.066686pt;}
.y1c_c00381{bottom:315.533353pt;}
.y1b_c00381{bottom:329.000020pt;}
.y1a_c00381{bottom:342.733353pt;}
.y19_c00381{bottom:356.466686pt;}
.y18_c00381{bottom:369.933353pt;}
.y17_c00381{bottom:383.400020pt;}
.y16_c00381{bottom:397.466686pt;}
.y15_c00381{bottom:410.600020pt;}
.y14_c00381{bottom:424.666686pt;}
.y13_c00381{bottom:438.066686pt;}
.y12_c00381{bottom:451.800020pt;}
.y11_c00381{bottom:465.266686pt;}
.y10_c00381{bottom:478.733353pt;}
.yf_c00381{bottom:526.733353pt;}
.ye_c00381{bottom:543.666686pt;}
.yd_c00381{bottom:561.266686pt;}
.yc_c00381{bottom:578.600020pt;}
.yb_c00381{bottom:595.866686pt;}
.ya_c00381{bottom:612.800020pt;}
.y9_c00381{bottom:630.400020pt;}
.y8_c00381{bottom:647.666686pt;}
.y7_c00381{bottom:664.666686pt;}
.y6_c00381{bottom:682.266686pt;}
.y5_c00381{bottom:699.200020pt;}
.y4_c00381{bottom:716.466686pt;}
.y3_c00381{bottom:733.800020pt;}
.y2_c00381{bottom:750.733353pt;}
.y1_c00381{bottom:788.200020pt;}
.h2_c00381{height:44.470052pt;}
.h4_c00381{height:44.492188pt;}
.h3_c00381{height:52.343750pt;}
.h1_c00381{height:851.333333pt;}
.h0_c00381{height:851.533333pt;}
.w0_c00381{width:570.533360pt;}
.w1_c00381{width:570.666667pt;}
.x0_c00381{left:0.000000pt;}
.x2_c00381{left:72.000000pt;}
.x5_c00381{left:78.066667pt;}
.x3_c00381{left:86.400000pt;}
.x4_c00381{left:107.533333pt;}
.x1_c00381{left:203.866667pt;}
.x6_c00381{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_18484d0d9dc4f724ab0bee06.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00382;src:url('chunks/assets/font_f402bbb1f623bc4148bbfeed.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00382{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_c00382{vertical-align:0.000000px;}
.ls0_c00382{letter-spacing:0.000000px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00382{word-spacing:-15.000000px;}
.ws0_c00382{word-spacing:-12.750000px;}
.ws2_c00382{word-spacing:0.000000px;}
._12_c00382{margin-left:-13.500000px;}
._7_c00382{margin-left:-12.060000px;}
._d_c00382{margin-left:-10.800000px;}
._11_c00382{margin-left:-8.940000px;}
._15_c00382{margin-left:-7.116027px;}
._9_c00382{margin-left:-5.400000px;}
._10_c00382{margin-left:-4.020000px;}
._b_c00382{margin-left:-2.700000px;}
._2_c00382{margin-left:-1.620000px;}
._0_c00382{width:1.440000px;}
._3_c00382{width:2.520000px;}
._5_c00382{width:3.600000px;}
._1_c00382{width:5.100000px;}
._4_c00382{width:6.240000px;}
._6_c00382{width:8.100000px;}
._f_c00382{width:9.180000px;}
._8_c00382{width:10.440000px;}
._c_c00382{width:12.180000px;}
._a_c00382{width:13.800000px;}
._e_c00382{width:16.140000px;}
._17_c00382{width:20.241027px;}
._13_c00382{width:23.790000px;}
._18_c00382{width:25.343997px;}
._14_c00382{width:26.489991px;}
._16_c00382{width:27.690081px;}
.fc1_c00382{color:transparent;}
.fc0_c00382{color:rgb(35,31,32);}
.fs1_c00382{font-size:51.000000px;}
.fs0_c00382{font-size:60.000000px;}
.y0_c00382{bottom:0.000000px;}
.y2c_c00382{bottom:64.800022px;}
.y2b_c00382{bottom:110.550022px;}
.y2a_c00382{bottom:125.625022px;}
.y29_c00382{bottom:140.775022px;}
.y28_c00382{bottom:155.925022px;}
.y27_c00382{bottom:171.375022px;}
.y26_c00382{bottom:186.525022px;}
.y25_c00382{bottom:201.975022px;}
.y24_c00382{bottom:217.425022px;}
.y23_c00382{bottom:232.575022px;}
.y22_c00382{bottom:247.725022px;}
.y21_c00382{bottom:263.175022px;}
.y20_c00382{bottom:278.325022px;}
.y1f_c00382{bottom:293.775022px;}
.y1e_c00382{bottom:308.925022px;}
.y1d_c00382{bottom:324.675022px;}
.y1c_c00382{bottom:339.825022px;}
.y1b_c00382{bottom:354.975022px;}
.y1a_c00382{bottom:370.125022px;}
.y19_c00382{bottom:385.575022px;}
.y18_c00382{bottom:400.725022px;}
.y17_c00382{bottom:416.175022px;}
.y16_c00382{bottom:431.325022px;}
.y15_c00382{bottom:446.775022px;}
.y13_c00382{bottom:495.375022px;}
.y12_c00382{bottom:514.425022px;}
.y11_c00382{bottom:534.300022px;}
.y10_c00382{bottom:553.725022px;}
.yf_c00382{bottom:573.150022px;}
.ye_c00382{bottom:592.575022px;}
.yd_c00382{bottom:611.625022px;}
.yc_c00382{bottom:631.425022px;}
.yb_c00382{bottom:650.925022px;}
.ya_c00382{bottom:670.350022px;}
.y9_c00382{bottom:689.775022px;}
.y8_c00382{bottom:709.200022px;}
.y7_c00382{bottom:728.325022px;}
.y6_c00382{bottom:748.125022px;}
.y5_c00382{bottom:767.175022px;}
.y4_c00382{bottom:786.600022px;}
.y3_c00382{bottom:806.025022px;}
.y2_c00382{bottom:825.525022px;}
.y1_c00382{bottom:844.950022px;}
.y14_c00382{bottom:886.875022px;}
.h3_c00382{height:50.028809px;}
.h4_c00382{height:50.053711px;}
.h2_c00382{height:58.886719px;}
.h1_c00382{height:957.750000px;}
.h0_c00382{height:957.975000px;}
.w1_c00382{width:643.500000px;}
.w0_c00382{width:643.650000px;}
.x0_c00382{left:0.000000px;}
.x3_c00382{left:90.375000px;}
.x1_c00382{left:91.425000px;}
.x4_c00382{left:97.575000px;}
.x2_c00382{left:107.250000px;}
.x5_c00382{left:131.025000px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls0_c00382{letter-spacing:0.000000pt;}
.ws1_c00382{word-spacing:-13.333333pt;}
.ws0_c00382{word-spacing:-11.333333pt;}
.ws2_c00382{word-spacing:0.000000pt;}
._12_c00382{margin-left:-12.000000pt;}
._7_c00382{margin-left:-10.720000pt;}
._d_c00382{margin-left:-9.600000pt;}
._11_c00382{margin-left:-7.946667pt;}
._15_c00382{margin-left:-6.325357pt;}
._9_c00382{margin-left:-4.800000pt;}
._10_c00382{margin-left:-3.573333pt;}
._b_c00382{margin-left:-2.400000pt;}
._2_c00382{margin-left:-1.440000pt;}
._0_c00382{width:1.280000pt;}
._3_c00382{width:2.240000pt;}
._5_c00382{width:3.200000pt;}
._1_c00382{width:4.533333pt;}
._4_c00382{width:5.546667pt;}
._6_c00382{width:7.200000pt;}
._f_c00382{width:8.160000pt;}
._8_c00382{width:9.280000pt;}
._c_c00382{width:10.826667pt;}
._a_c00382{width:12.266667pt;}
._e_c00382{width:14.346667pt;}
._17_c00382{width:17.992024pt;}
._13_c00382{width:21.146667pt;}
._18_c00382{width:22.527997pt;}
._14_c00382{width:23.546659pt;}
._16_c00382{width:24.613405pt;}
.fs1_c00382{font-size:45.333333pt;}
.fs0_c00382{font-size:53.333333pt;}
.y0_c00382{bottom:0.000000pt;}
.y2c_c00382{bottom:57.600020pt;}
.y2b_c00382{bottom:98.266686pt;}
.y2a_c00382{bottom:111.666686pt;}
.y29_c00382{bottom:125.133353pt;}
.y28_c00382{bottom:138.600020pt;}
.y27_c00382{bottom:152.333353pt;}
.y26_c00382{bottom:165.800020pt;}
.y25_c00382{bottom:179.533353pt;}
.y24_c00382{bottom:193.266686pt;}
.y23_c00382{bottom:206.733353pt;}
.y22_c00382{bottom:220.200020pt;}
.y21_c00382{bottom:233.933353pt;}
.y20_c00382{bottom:247.400020pt;}
.y1f_c00382{bottom:261.133353pt;}
.y1e_c00382{bottom:274.600020pt;}
.y1d_c00382{bottom:288.600020pt;}
.y1c_c00382{bottom:302.066686pt;}
.y1b_c00382{bottom:315.533353pt;}
.y1a_c00382{bottom:329.000020pt;}
.y19_c00382{bottom:342.733353pt;}
.y18_c00382{bottom:356.200020pt;}
.y17_c00382{bottom:369.933353pt;}
.y16_c00382{bottom:383.400020pt;}
.y15_c00382{bottom:397.133353pt;}
.y13_c00382{bottom:440.333353pt;}
.y12_c00382{bottom:457.266686pt;}
.y11_c00382{bottom:474.933353pt;}
.y10_c00382{bottom:492.200020pt;}
.yf_c00382{bottom:509.466686pt;}
.ye_c00382{bottom:526.733353pt;}
.yd_c00382{bottom:543.666686pt;}
.yc_c00382{bottom:561.266686pt;}
.yb_c00382{bottom:578.600020pt;}
.ya_c00382{bottom:595.866686pt;}
.y9_c00382{bottom:613.133353pt;}
.y8_c00382{bottom:630.400020pt;}
.y7_c00382{bottom:647.400020pt;}
.y6_c00382{bottom:665.000020pt;}
.y5_c00382{bottom:681.933353pt;}
.y4_c00382{bottom:699.200020pt;}
.y3_c00382{bottom:716.466686pt;}
.y2_c00382{bottom:733.800020pt;}
.y1_c00382{bottom:751.066686pt;}
.y14_c00382{bottom:788.333353pt;}
.h3_c00382{height:44.470052pt;}
.h4_c00382{height:44.492188pt;}
.h2_c00382{height:52.343750pt;}
.h1_c00382{height:851.333333pt;}
.h0_c00382{height:851.533333pt;}
.w1_c00382{width:572.000000pt;}
.w0_c00382{width:572.133333pt;}
.x0_c00382{left:0.000000pt;}
.x3_c00382{left:80.333333pt;}
.x1_c00382{left:81.266667pt;}
.x4_c00382{left:86.733333pt;}
.x2_c00382{left:95.333333pt;}
.x5_c00382{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d521fd7b95d695fc2e450d75.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00383;src:url('chunks/assets/font_e6e287ab0bc31bb5dcbc561b.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00383{letter-spacing:0.000000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00383{word-spacing:-15.000000px;}
.ws0_c00383{word-spacing:-12.750000px;}
.ws2_c00383{word-spacing:0.000000px;}
._8_c00383{margin-left:-15.189240px;}
._e_c00383{margin-left:-12.344910px;}
._d_c00383{margin-left:-11.055090px;}
._14_c00383{margin-left:-9.947952px;}
._6_c00383{margin-left:-7.800000px;}
._7_c00383{margin-left:-6.687540px;}
._18_c00383{margin-left:-5.396451px;}
._10_c00383{margin-left:-4.293222px;}
._1_c00383{margin-left:-2.879766px;}
._2_c00383{margin-left:-1.448910px;}
._0_c00383{width:1.850994px;}
._b_c00383{width:3.579066px;}
._f_c00383{width:5.153916px;}
._4_c00383{width:6.645030px;}
._a_c00383{width:7.800000px;}
._3_c00383{width:9.480000px;}
._9_c00383{width:10.800000px;}
._5_c00383{width:12.069006px;}
._c_c00383{width:13.866084px;}
._16_c00383{width:14.918907px;}
._13_c00383{width:16.425030px;}
._11_c00383{width:17.924700px;}
._12_c00383{width:19.002222px;}
._17_c00383{width:20.772225px;}
._19_c00383{width:23.576496px;}
._1a_c00383{width:24.845670px;}
._15_c00383{width:26.276526px;}
.fc1_c00383{color:transparent;}
.fc0_c00383{color:rgb(35,31,32);}
.fs0_c00383{font-size:51.000000px;}
.fs1_c00383{font-size:60.000000px;}
.y0_c00383{bottom:0.000000px;}
.y2a_c00383{bottom:64.425022px;}
.y29_c00383{bottom:109.800022px;}
.y28_c00383{bottom:125.325022px;}
.y27_c00383{bottom:141.150022px;}
.y26_c00383{bottom:156.225022px;}
.y25_c00383{bottom:171.375022px;}
.y24_c00383{bottom:186.825022px;}
.y23_c00383{bottom:201.975022px;}
.y22_c00383{bottom:217.425022px;}
.y21_c00383{bottom:232.575022px;}
.y20_c00383{bottom:247.725022px;}
.y1f_c00383{bottom:263.175022px;}
.y1e_c00383{bottom:278.325022px;}
.y1d_c00383{bottom:293.775022px;}
.y1c_c00383{bottom:308.925022px;}
.y1b_c00383{bottom:324.375022px;}
.y1a_c00383{bottom:339.825022px;}
.y19_c00383{bottom:355.350022px;}
.y18_c00383{bottom:370.125022px;}
.y17_c00383{bottom:437.025022px;}
.y16_c00383{bottom:456.150022px;}
.y15_c00383{bottom:475.575022px;}
.y14_c00383{bottom:495.375022px;}
.y13_c00383{bottom:514.800022px;}
.y12_c00383{bottom:533.925022px;}
.y11_c00383{bottom:553.350022px;}
.y10_c00383{bottom:572.775022px;}
.yf_c00383{bottom:592.575022px;}
.ye_c00383{bottom:611.625022px;}
.yd_c00383{bottom:631.125022px;}
.yc_c00383{bottom:650.925022px;}
.yb_c00383{bottom:670.350022px;}
.ya_c00383{bottom:689.400022px;}
.y9_c00383{bottom:708.825022px;}
.y8_c00383{bottom:728.625022px;}
.y7_c00383{bottom:748.125022px;}
.y6_c00383{bottom:767.175022px;}
.y5_c00383{bottom:786.525022px;}
.y4_c00383{bottom:806.025022px;}
.y3_c00383{bottom:825.525022px;}
.y2_c00383{bottom:844.575022px;}
.y1_c00383{bottom:886.725022px;}
.h2_c00383{height:50.028809px;}
.h4_c00383{height:50.053711px;}
.h3_c00383{height:58.886719px;}
.h1_c00383{height:957.750000px;}
.h0_c00383{height:957.975000px;}
.w0_c00383{width:641.850030px;}
.w1_c00383{width:642.000000px;}
.x0_c00383{left:0.000000px;}
.x3_c00383{left:80.250000px;}
.x2_c00383{left:81.375000px;}
.x5_c00383{left:87.825000px;}
.x4_c00383{left:97.200000px;}
.x6_c00383{left:120.975000px;}
.x1_c00383{left:229.350000px;}
.x7_c00383{left:531.375000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls0_c00383{letter-spacing:0.000000pt;}
.ws1_c00383{word-spacing:-13.333333pt;}
.ws0_c00383{word-spacing:-11.333333pt;}
.ws2_c00383{word-spacing:0.000000pt;}
._8_c00383{margin-left:-13.501547pt;}
._e_c00383{margin-left:-10.973253pt;}
._d_c00383{margin-left:-9.826747pt;}
._14_c00383{margin-left:-8.842624pt;}
._6_c00383{margin-left:-6.933333pt;}
._7_c00383{margin-left:-5.944480pt;}
._18_c00383{margin-left:-4.796845pt;}
._10_c00383{margin-left:-3.816197pt;}
._1_c00383{margin-left:-2.559792pt;}
._2_c00383{margin-left:-1.287920pt;}
._0_c00383{width:1.645328pt;}
._b_c00383{width:3.181392pt;}
._f_c00383{width:4.581259pt;}
._4_c00383{width:5.906693pt;}
._a_c00383{width:6.933333pt;}
._3_c00383{width:8.426667pt;}
._9_c00383{width:9.600000pt;}
._5_c00383{width:10.728005pt;}
._c_c00383{width:12.325408pt;}
._16_c00383{width:13.261251pt;}
._13_c00383{width:14.600027pt;}
._11_c00383{width:15.933067pt;}
._12_c00383{width:16.890864pt;}
._17_c00383{width:18.464200pt;}
._19_c00383{width:20.956885pt;}
._1a_c00383{width:22.085040pt;}
._15_c00383{width:23.356912pt;}
.fs0_c00383{font-size:45.333333pt;}
.fs1_c00383{font-size:53.333333pt;}
.y0_c00383{bottom:0.000000pt;}
.y2a_c00383{bottom:57.266686pt;}
.y29_c00383{bottom:97.600020pt;}
.y28_c00383{bottom:111.400020pt;}
.y27_c00383{bottom:125.466686pt;}
.y26_c00383{bottom:138.866686pt;}
.y25_c00383{bottom:152.333353pt;}
.y24_c00383{bottom:166.066686pt;}
.y23_c00383{bottom:179.533353pt;}
.y22_c00383{bottom:193.266686pt;}
.y21_c00383{bottom:206.733353pt;}
.y20_c00383{bottom:220.200020pt;}
.y1f_c00383{bottom:233.933353pt;}
.y1e_c00383{bottom:247.400020pt;}
.y1d_c00383{bottom:261.133353pt;}
.y1c_c00383{bottom:274.600020pt;}
.y1b_c00383{bottom:288.333353pt;}
.y1a_c00383{bottom:302.066686pt;}
.y19_c00383{bottom:315.866686pt;}
.y18_c00383{bottom:329.000020pt;}
.y17_c00383{bottom:388.466686pt;}
.y16_c00383{bottom:405.466686pt;}
.y15_c00383{bottom:422.733353pt;}
.y14_c00383{bottom:440.333353pt;}
.y13_c00383{bottom:457.600020pt;}
.y12_c00383{bottom:474.600020pt;}
.y11_c00383{bottom:491.866686pt;}
.y10_c00383{bottom:509.133353pt;}
.yf_c00383{bottom:526.733353pt;}
.ye_c00383{bottom:543.666686pt;}
.yd_c00383{bottom:561.000020pt;}
.yc_c00383{bottom:578.600020pt;}
.yb_c00383{bottom:595.866686pt;}
.ya_c00383{bottom:612.800020pt;}
.y9_c00383{bottom:630.066686pt;}
.y8_c00383{bottom:647.666686pt;}
.y7_c00383{bottom:665.000020pt;}
.y6_c00383{bottom:681.933353pt;}
.y5_c00383{bottom:699.133353pt;}
.y4_c00383{bottom:716.466686pt;}
.y3_c00383{bottom:733.800020pt;}
.y2_c00383{bottom:750.733353pt;}
.y1_c00383{bottom:788.200020pt;}
.h2_c00383{height:44.470052pt;}
.h4_c00383{height:44.492188pt;}
.h3_c00383{height:52.343750pt;}
.h1_c00383{height:851.333333pt;}
.h0_c00383{height:851.533333pt;}
.w0_c00383{width:570.533360pt;}
.w1_c00383{width:570.666667pt;}
.x0_c00383{left:0.000000pt;}
.x3_c00383{left:71.333333pt;}
.x2_c00383{left:72.333333pt;}
.x5_c00383{left:78.066667pt;}
.x4_c00383{left:86.400000pt;}
.x6_c00383{left:107.533333pt;}
.x1_c00383{left:203.866667pt;}
.x7_c00383{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_180922fc423f9e7a65d1db74.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00384;src:url('chunks/assets/font_27ef2bb5dc1c36307aa24bba.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00384{letter-spacing:0.000000px;}
.sc__c00384{text-shadow:none;}
.sc0_c00384{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00384{-webkit-text-stroke:0px transparent;}
.sc0_c00384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00384{word-spacing:-15.000000px;}
.ws0_c00384{word-spacing:-12.750000px;}
.ws2_c00384{word-spacing:0.000000px;}
._11_c00384{margin-left:-30.000000px;}
._10_c00384{margin-left:-14.954943px;}
._16_c00384{margin-left:-13.359111px;}
._6_c00384{margin-left:-11.235045px;}
._8_c00384{margin-left:-7.869021px;}
._17_c00384{margin-left:-6.183111px;}
._14_c00384{margin-left:-5.060991px;}
._1_c00384{margin-left:-3.300006px;}
._0_c00384{margin-left:-1.760979px;}
._2_c00384{width:1.839009px;}
._3_c00384{width:3.320967px;}
._12_c00384{width:4.361790px;}
._f_c00384{width:5.501958px;}
._7_c00384{width:7.326138px;}
._5_c00384{width:8.501982px;}
._4_c00384{width:10.200000px;}
._13_c00384{width:11.444835px;}
._a_c00384{width:12.480000px;}
._15_c00384{width:13.961976px;}
._9_c00384{width:16.022973px;}
._e_c00384{width:17.102973px;}
._c_c00384{width:18.300000px;}
._d_c00384{width:19.706937px;}
._b_c00384{width:21.587928px;}
._18_c00384{width:25.610976px;}
._19_c00384{width:27.633024px;}
.fc1_c00384{color:transparent;}
.fc0_c00384{color:rgb(35,31,32);}
.fs2_c00384{font-size:42.000000px;}
.fs0_c00384{font-size:51.000000px;}
.fs1_c00384{font-size:60.000000px;}
.y0_c00384{bottom:0.000000px;}
.y24_c00384{bottom:64.800022px;}
.y23_c00384{bottom:110.175022px;}
.y22_c00384{bottom:125.625022px;}
.y21_c00384{bottom:140.775022px;}
.y20_c00384{bottom:156.225022px;}
.y1f_c00384{bottom:171.675022px;}
.y1e_c00384{bottom:186.825022px;}
.y1d_c00384{bottom:201.975022px;}
.y1c_c00384{bottom:217.425022px;}
.y1b_c00384{bottom:232.575022px;}
.y1a_c00384{bottom:247.725022px;}
.y19_c00384{bottom:263.175022px;}
.y18_c00384{bottom:399.600022px;}
.y17_c00384{bottom:419.025022px;}
.y16_c00384{bottom:438.525022px;}
.y15_c00384{bottom:457.575022px;}
.y14_c00384{bottom:477.375022px;}
.y13_c00384{bottom:496.800022px;}
.y12_c00384{bottom:524.925022px;}
.y11_c00384{bottom:544.350022px;}
.y10_c00384{bottom:563.775022px;}
.yf_c00384{bottom:583.200022px;}
.ye_c00384{bottom:602.625022px;}
.yd_c00384{bottom:622.125022px;}
.yc_c00384{bottom:650.925022px;}
.yb_c00384{bottom:670.350022px;}
.ya_c00384{bottom:689.400022px;}
.y9_c00384{bottom:709.200022px;}
.y8_c00384{bottom:728.325022px;}
.y7_c00384{bottom:747.750022px;}
.y6_c00384{bottom:767.175022px;}
.y5_c00384{bottom:786.600022px;}
.y4_c00384{bottom:806.025022px;}
.y3_c00384{bottom:825.150022px;}
.y2_c00384{bottom:844.575022px;}
.y1_c00384{bottom:886.875022px;}
.h2_c00384{height:50.028809px;}
.h5_c00384{height:50.053711px;}
.h4_c00384{height:58.857422px;}
.h3_c00384{height:58.886719px;}
.h1_c00384{height:957.750000px;}
.h0_c00384{height:957.975000px;}
.w1_c00384{width:643.500000px;}
.w0_c00384{width:643.650000px;}
.x0_c00384{left:0.000000px;}
.x1_c00384{left:90.750000px;}
.x4_c00384{left:97.575000px;}
.x2_c00384{left:106.200000px;}
.x3_c00384{left:107.625000px;}
.x5_c00384{left:131.025000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls0_c00384{letter-spacing:0.000000pt;}
.ws1_c00384{word-spacing:-13.333333pt;}
.ws0_c00384{word-spacing:-11.333333pt;}
.ws2_c00384{word-spacing:0.000000pt;}
._11_c00384{margin-left:-26.666667pt;}
._10_c00384{margin-left:-13.293283pt;}
._16_c00384{margin-left:-11.874765pt;}
._6_c00384{margin-left:-9.986707pt;}
._8_c00384{margin-left:-6.994685pt;}
._17_c00384{margin-left:-5.496099pt;}
._14_c00384{margin-left:-4.498659pt;}
._1_c00384{margin-left:-2.933339pt;}
._0_c00384{margin-left:-1.565315pt;}
._2_c00384{width:1.634675pt;}
._3_c00384{width:2.951971pt;}
._12_c00384{width:3.877147pt;}
._f_c00384{width:4.890629pt;}
._7_c00384{width:6.512123pt;}
._5_c00384{width:7.557317pt;}
._4_c00384{width:9.066667pt;}
._13_c00384{width:10.173187pt;}
._a_c00384{width:11.093333pt;}
._15_c00384{width:12.410645pt;}
._9_c00384{width:14.242643pt;}
._e_c00384{width:15.202643pt;}
._c_c00384{width:16.266667pt;}
._d_c00384{width:17.517277pt;}
._b_c00384{width:19.189269pt;}
._18_c00384{width:22.765312pt;}
._19_c00384{width:24.562688pt;}
.fs2_c00384{font-size:37.333333pt;}
.fs0_c00384{font-size:45.333333pt;}
.fs1_c00384{font-size:53.333333pt;}
.y0_c00384{bottom:0.000000pt;}
.y24_c00384{bottom:57.600020pt;}
.y23_c00384{bottom:97.933353pt;}
.y22_c00384{bottom:111.666686pt;}
.y21_c00384{bottom:125.133353pt;}
.y20_c00384{bottom:138.866686pt;}
.y1f_c00384{bottom:152.600020pt;}
.y1e_c00384{bottom:166.066686pt;}
.y1d_c00384{bottom:179.533353pt;}
.y1c_c00384{bottom:193.266686pt;}
.y1b_c00384{bottom:206.733353pt;}
.y1a_c00384{bottom:220.200020pt;}
.y19_c00384{bottom:233.933353pt;}
.y18_c00384{bottom:355.200020pt;}
.y17_c00384{bottom:372.466686pt;}
.y16_c00384{bottom:389.800020pt;}
.y15_c00384{bottom:406.733353pt;}
.y14_c00384{bottom:424.333353pt;}
.y13_c00384{bottom:441.600020pt;}
.y12_c00384{bottom:466.600020pt;}
.y11_c00384{bottom:483.866686pt;}
.y10_c00384{bottom:501.133353pt;}
.yf_c00384{bottom:518.400020pt;}
.ye_c00384{bottom:535.666686pt;}
.yd_c00384{bottom:553.000020pt;}
.yc_c00384{bottom:578.600020pt;}
.yb_c00384{bottom:595.866686pt;}
.ya_c00384{bottom:612.800020pt;}
.y9_c00384{bottom:630.400020pt;}
.y8_c00384{bottom:647.400020pt;}
.y7_c00384{bottom:664.666686pt;}
.y6_c00384{bottom:681.933353pt;}
.y5_c00384{bottom:699.200020pt;}
.y4_c00384{bottom:716.466686pt;}
.y3_c00384{bottom:733.466686pt;}
.y2_c00384{bottom:750.733353pt;}
.y1_c00384{bottom:788.333353pt;}
.h2_c00384{height:44.470052pt;}
.h5_c00384{height:44.492188pt;}
.h4_c00384{height:52.317708pt;}
.h3_c00384{height:52.343750pt;}
.h1_c00384{height:851.333333pt;}
.h0_c00384{height:851.533333pt;}
.w1_c00384{width:572.000000pt;}
.w0_c00384{width:572.133333pt;}
.x0_c00384{left:0.000000pt;}
.x1_c00384{left:80.666667pt;}
.x4_c00384{left:86.733333pt;}
.x2_c00384{left:94.400000pt;}
.x3_c00384{left:95.666667pt;}
.x5_c00384{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_990aa1fd7da6c03e328fdafc.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00385;src:url('chunks/assets/font_94509524a7176c0025b0521a.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00385{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_c00385{vertical-align:0.000000px;}
.ls0_c00385{letter-spacing:0.000000px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00385{word-spacing:-15.000000px;}
.ws1_c00385{word-spacing:-12.750000px;}
.ws2_c00385{word-spacing:0.000000px;}
._a_c00385{margin-left:-13.938012px;}
._9_c00385{margin-left:-12.461988px;}
._14_c00385{margin-left:-6.429162px;}
._13_c00385{margin-left:-5.397684px;}
._3_c00385{margin-left:-4.200000px;}
._1_c00385{margin-left:-2.879766px;}
._2_c00385{margin-left:-1.448910px;}
._0_c00385{width:1.850994px;}
._5_c00385{width:3.180000px;}
._7_c00385{width:4.356024px;}
._6_c00385{width:5.766084px;}
._8_c00385{width:7.724346px;}
._4_c00385{width:8.879766px;}
._10_c00385{width:9.948756px;}
._f_c00385{width:11.218632px;}
._e_c00385{width:12.809916px;}
._c_c00385{width:13.827018px;}
._15_c00385{width:15.098799px;}
._b_c00385{width:17.157078px;}
._d_c00385{width:19.208910px;}
._11_c00385{width:25.076496px;}
._12_c00385{width:26.507352px;}
.fc1_c00385{color:transparent;}
.fc0_c00385{color:rgb(35,31,32);}
.fs0_c00385{font-size:51.000000px;}
.fs1_c00385{font-size:60.000000px;}
.y0_c00385{bottom:0.000000px;}
.y25_c00385{bottom:64.425022px;}
.y24_c00385{bottom:110.175022px;}
.y23_c00385{bottom:125.325022px;}
.y22_c00385{bottom:140.775022px;}
.y21_c00385{bottom:156.225022px;}
.y20_c00385{bottom:171.375022px;}
.y1f_c00385{bottom:186.525022px;}
.y1e_c00385{bottom:201.975022px;}
.y1d_c00385{bottom:217.125022px;}
.y1c_c00385{bottom:232.950022px;}
.y1b_c00385{bottom:247.725022px;}
.y1a_c00385{bottom:263.550022px;}
.y19_c00385{bottom:278.325022px;}
.y18_c00385{bottom:293.775022px;}
.y17_c00385{bottom:308.925022px;}
.y16_c00385{bottom:324.750022px;}
.y15_c00385{bottom:404.625022px;}
.y14_c00385{bottom:424.125022px;}
.y13_c00385{bottom:443.550022px;}
.y12_c00385{bottom:463.350022px;}
.y11_c00385{bottom:482.400022px;}
.y10_c00385{bottom:502.200022px;}
.yf_c00385{bottom:521.625022px;}
.ye_c00385{bottom:541.125022px;}
.yd_c00385{bottom:578.925022px;}
.yc_c00385{bottom:636.150022px;}
.yb_c00385{bottom:655.200022px;}
.ya_c00385{bottom:675.000022px;}
.y9_c00385{bottom:694.425022px;}
.y8_c00385{bottom:713.550022px;}
.y7_c00385{bottom:732.975022px;}
.y6_c00385{bottom:752.775022px;}
.y5_c00385{bottom:771.825022px;}
.y4_c00385{bottom:791.625022px;}
.y3_c00385{bottom:811.125022px;}
.y2_c00385{bottom:845.325022px;}
.y1_c00385{bottom:886.725022px;}
.h2_c00385{height:50.028809px;}
.h4_c00385{height:50.053711px;}
.h3_c00385{height:58.886719px;}
.h1_c00385{height:957.750000px;}
.h0_c00385{height:957.975000px;}
.w0_c00385{width:641.850030px;}
.w1_c00385{width:642.000000px;}
.x0_c00385{left:0.000000px;}
.x3_c00385{left:80.250000px;}
.x2_c00385{left:81.375000px;}
.x4_c00385{left:87.825000px;}
.x5_c00385{left:120.975000px;}
.x1_c00385{left:229.350000px;}
.x6_c00385{left:531.375000px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls0_c00385{letter-spacing:0.000000pt;}
.ws0_c00385{word-spacing:-13.333333pt;}
.ws1_c00385{word-spacing:-11.333333pt;}
.ws2_c00385{word-spacing:0.000000pt;}
._a_c00385{margin-left:-12.389344pt;}
._9_c00385{margin-left:-11.077323pt;}
._14_c00385{margin-left:-5.714811pt;}
._13_c00385{margin-left:-4.797941pt;}
._3_c00385{margin-left:-3.733333pt;}
._1_c00385{margin-left:-2.559792pt;}
._2_c00385{margin-left:-1.287920pt;}
._0_c00385{width:1.645328pt;}
._5_c00385{width:2.826667pt;}
._7_c00385{width:3.872021pt;}
._6_c00385{width:5.125408pt;}
._8_c00385{width:6.866085pt;}
._4_c00385{width:7.893125pt;}
._10_c00385{width:8.843339pt;}
._f_c00385{width:9.972117pt;}
._e_c00385{width:11.386592pt;}
._c_c00385{width:12.290683pt;}
._15_c00385{width:13.421155pt;}
._b_c00385{width:15.250736pt;}
._d_c00385{width:17.074587pt;}
._11_c00385{width:22.290219pt;}
._12_c00385{width:23.562091pt;}
.fs0_c00385{font-size:45.333333pt;}
.fs1_c00385{font-size:53.333333pt;}
.y0_c00385{bottom:0.000000pt;}
.y25_c00385{bottom:57.266686pt;}
.y24_c00385{bottom:97.933353pt;}
.y23_c00385{bottom:111.400020pt;}
.y22_c00385{bottom:125.133353pt;}
.y21_c00385{bottom:138.866686pt;}
.y20_c00385{bottom:152.333353pt;}
.y1f_c00385{bottom:165.800020pt;}
.y1e_c00385{bottom:179.533353pt;}
.y1d_c00385{bottom:193.000020pt;}
.y1c_c00385{bottom:207.066686pt;}
.y1b_c00385{bottom:220.200020pt;}
.y1a_c00385{bottom:234.266686pt;}
.y19_c00385{bottom:247.400020pt;}
.y18_c00385{bottom:261.133353pt;}
.y17_c00385{bottom:274.600020pt;}
.y16_c00385{bottom:288.666686pt;}
.y15_c00385{bottom:359.666686pt;}
.y14_c00385{bottom:377.000020pt;}
.y13_c00385{bottom:394.266686pt;}
.y12_c00385{bottom:411.866686pt;}
.y11_c00385{bottom:428.800020pt;}
.y10_c00385{bottom:446.400020pt;}
.yf_c00385{bottom:463.666686pt;}
.ye_c00385{bottom:481.000020pt;}
.yd_c00385{bottom:514.600020pt;}
.yc_c00385{bottom:565.466686pt;}
.yb_c00385{bottom:582.400020pt;}
.ya_c00385{bottom:600.000020pt;}
.y9_c00385{bottom:617.266686pt;}
.y8_c00385{bottom:634.266686pt;}
.y7_c00385{bottom:651.533353pt;}
.y6_c00385{bottom:669.133353pt;}
.y5_c00385{bottom:686.066686pt;}
.y4_c00385{bottom:703.666686pt;}
.y3_c00385{bottom:721.000020pt;}
.y2_c00385{bottom:751.400020pt;}
.y1_c00385{bottom:788.200020pt;}
.h2_c00385{height:44.470052pt;}
.h4_c00385{height:44.492188pt;}
.h3_c00385{height:52.343750pt;}
.h1_c00385{height:851.333333pt;}
.h0_c00385{height:851.533333pt;}
.w0_c00385{width:570.533360pt;}
.w1_c00385{width:570.666667pt;}
.x0_c00385{left:0.000000pt;}
.x3_c00385{left:71.333333pt;}
.x2_c00385{left:72.333333pt;}
.x4_c00385{left:78.066667pt;}
.x5_c00385{left:107.533333pt;}
.x1_c00385{left:203.866667pt;}
.x6_c00385{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1302ad1ecd1d4301b24e26eb.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00386;src:url('chunks/assets/font_97c48155296774f47f3f31d5.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00386{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00386{word-spacing:-15.000000px;}
.ws1_c00386{word-spacing:0.000000px;}
._12_c00386{margin-left:-15.584895px;}
._15_c00386{margin-left:-14.379021px;}
._9_c00386{margin-left:-13.200000px;}
._14_c00386{margin-left:-11.981958px;}
._f_c00386{margin-left:-9.837063px;}
._11_c00386{margin-left:-8.640000px;}
._10_c00386{margin-left:-7.100979px;}
._e_c00386{margin-left:-5.040000px;}
._8_c00386{margin-left:-3.540000px;}
._a_c00386{margin-left:-1.760979px;}
._0_c00386{width:1.440000px;}
._2_c00386{width:2.520000px;}
._7_c00386{width:3.660000px;}
._b_c00386{width:5.600979px;}
._d_c00386{width:7.179021px;}
._c_c00386{width:9.180000px;}
._6_c00386{width:10.980000px;}
._13_c00386{width:12.180000px;}
._3_c00386{width:13.980000px;}
._1b_c00386{width:15.287835px;}
._1_c00386{width:16.500000px;}
._4_c00386{width:18.000000px;}
._5_c00386{width:19.260000px;}
._17_c00386{width:21.960000px;}
._16_c00386{width:23.280000px;}
._19_c00386{width:24.332916px;}
._18_c00386{width:25.832928px;}
._1a_c00386{width:27.873018px;}
.fc1_c00386{color:transparent;}
.fc0_c00386{color:rgb(35,31,32);}
.fs1_c00386{font-size:51.000000px;}
.fs0_c00386{font-size:60.000000px;}
.y0_c00386{bottom:0.000000px;}
.y26_c00386{bottom:64.425022px;}
.y25_c00386{bottom:110.550022px;}
.y24_c00386{bottom:125.325022px;}
.y23_c00386{bottom:141.000022px;}
.y22_c00386{bottom:156.225022px;}
.y21_c00386{bottom:171.375022px;}
.y20_c00386{bottom:186.825022px;}
.y1f_c00386{bottom:201.975022px;}
.y1e_c00386{bottom:217.425022px;}
.y1d_c00386{bottom:232.950022px;}
.y1c_c00386{bottom:247.725022px;}
.y1b_c00386{bottom:263.175022px;}
.y1a_c00386{bottom:322.575022px;}
.y19_c00386{bottom:341.625022px;}
.y18_c00386{bottom:361.125022px;}
.y17_c00386{bottom:380.925022px;}
.y16_c00386{bottom:399.975022px;}
.y15_c00386{bottom:419.775022px;}
.y14_c00386{bottom:439.200022px;}
.y13_c00386{bottom:458.625022px;}
.y12_c00386{bottom:477.750022px;}
.y11_c00386{bottom:497.175022px;}
.y10_c00386{bottom:516.975022px;}
.yf_c00386{bottom:536.400022px;}
.ye_c00386{bottom:555.825022px;}
.yd_c00386{bottom:574.950022px;}
.yc_c00386{bottom:594.375022px;}
.yb_c00386{bottom:613.725022px;}
.ya_c00386{bottom:633.225022px;}
.y9_c00386{bottom:652.725022px;}
.y8_c00386{bottom:672.525022px;}
.y7_c00386{bottom:691.950022px;}
.y6_c00386{bottom:711.375022px;}
.y5_c00386{bottom:730.800022px;}
.y4_c00386{bottom:768.600022px;}
.y2_c00386{bottom:825.150022px;}
.y1_c00386{bottom:844.575022px;}
.y3_c00386{bottom:886.875022px;}
.h3_c00386{height:50.028809px;}
.h4_c00386{height:50.053711px;}
.h2_c00386{height:58.886719px;}
.h1_c00386{height:957.750000px;}
.h0_c00386{height:957.975000px;}
.w1_c00386{width:643.500000px;}
.w0_c00386{width:643.650000px;}
.x0_c00386{left:0.000000px;}
.x1_c00386{left:91.050000px;}
.x3_c00386{left:97.575000px;}
.x2_c00386{left:106.950000px;}
.x4_c00386{left:130.350000px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls0_c00386{letter-spacing:0.000000pt;}
.ws0_c00386{word-spacing:-13.333333pt;}
.ws1_c00386{word-spacing:0.000000pt;}
._12_c00386{margin-left:-13.853240pt;}
._15_c00386{margin-left:-12.781352pt;}
._9_c00386{margin-left:-11.733333pt;}
._14_c00386{margin-left:-10.650629pt;}
._f_c00386{margin-left:-8.744056pt;}
._11_c00386{margin-left:-7.680000pt;}
._10_c00386{margin-left:-6.311981pt;}
._e_c00386{margin-left:-4.480000pt;}
._8_c00386{margin-left:-3.146667pt;}
._a_c00386{margin-left:-1.565315pt;}
._0_c00386{width:1.280000pt;}
._2_c00386{width:2.240000pt;}
._7_c00386{width:3.253333pt;}
._b_c00386{width:4.978648pt;}
._d_c00386{width:6.381352pt;}
._c_c00386{width:8.160000pt;}
._6_c00386{width:9.760000pt;}
._13_c00386{width:10.826667pt;}
._3_c00386{width:12.426667pt;}
._1b_c00386{width:13.589187pt;}
._1_c00386{width:14.666667pt;}
._4_c00386{width:16.000000pt;}
._5_c00386{width:17.120000pt;}
._17_c00386{width:19.520000pt;}
._16_c00386{width:20.693333pt;}
._19_c00386{width:21.629259pt;}
._18_c00386{width:22.962603pt;}
._1a_c00386{width:24.776016pt;}
.fs1_c00386{font-size:45.333333pt;}
.fs0_c00386{font-size:53.333333pt;}
.y0_c00386{bottom:0.000000pt;}
.y26_c00386{bottom:57.266686pt;}
.y25_c00386{bottom:98.266686pt;}
.y24_c00386{bottom:111.400020pt;}
.y23_c00386{bottom:125.333353pt;}
.y22_c00386{bottom:138.866686pt;}
.y21_c00386{bottom:152.333353pt;}
.y20_c00386{bottom:166.066686pt;}
.y1f_c00386{bottom:179.533353pt;}
.y1e_c00386{bottom:193.266686pt;}
.y1d_c00386{bottom:207.066686pt;}
.y1c_c00386{bottom:220.200020pt;}
.y1b_c00386{bottom:233.933353pt;}
.y1a_c00386{bottom:286.733353pt;}
.y19_c00386{bottom:303.666686pt;}
.y18_c00386{bottom:321.000020pt;}
.y17_c00386{bottom:338.600020pt;}
.y16_c00386{bottom:355.533353pt;}
.y15_c00386{bottom:373.133353pt;}
.y14_c00386{bottom:390.400020pt;}
.y13_c00386{bottom:407.666686pt;}
.y12_c00386{bottom:424.666686pt;}
.y11_c00386{bottom:441.933353pt;}
.y10_c00386{bottom:459.533353pt;}
.yf_c00386{bottom:476.800020pt;}
.ye_c00386{bottom:494.066686pt;}
.yd_c00386{bottom:511.066686pt;}
.yc_c00386{bottom:528.333353pt;}
.yb_c00386{bottom:545.533353pt;}
.ya_c00386{bottom:562.866686pt;}
.y9_c00386{bottom:580.200020pt;}
.y8_c00386{bottom:597.800020pt;}
.y7_c00386{bottom:615.066686pt;}
.y6_c00386{bottom:632.333353pt;}
.y5_c00386{bottom:649.600020pt;}
.y4_c00386{bottom:683.200020pt;}
.y2_c00386{bottom:733.466686pt;}
.y1_c00386{bottom:750.733353pt;}
.y3_c00386{bottom:788.333353pt;}
.h3_c00386{height:44.470052pt;}
.h4_c00386{height:44.492188pt;}
.h2_c00386{height:52.343750pt;}
.h1_c00386{height:851.333333pt;}
.h0_c00386{height:851.533333pt;}
.w1_c00386{width:572.000000pt;}
.w0_c00386{width:572.133333pt;}
.x0_c00386{left:0.000000pt;}
.x1_c00386{left:80.933333pt;}
.x3_c00386{left:86.733333pt;}
.x2_c00386{left:95.066667pt;}
.x4_c00386{left:115.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_476e3b110554d56be337dc42.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00387;src:url('chunks/assets/font_47e44860380cd7440288ab9d.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00387{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.ls0_c00387{letter-spacing:0.000000px;}
.sc__c00387{text-shadow:none;}
.sc0_c00387{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00387{-webkit-text-stroke:0px transparent;}
.sc0_c00387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00387{word-spacing:-15.000000px;}
.ws0_c00387{word-spacing:-12.750000px;}
.ws2_c00387{word-spacing:0.000000px;}
._9_c00387{margin-left:-15.600000px;}
._12_c00387{margin-left:-13.034850px;}
._6_c00387{margin-left:-11.807952px;}
._10_c00387{margin-left:-10.454970px;}
._13_c00387{margin-left:-9.306252px;}
._e_c00387{margin-left:-7.449006px;}
._19_c00387{margin-left:-6.350982px;}
._d_c00387{margin-left:-5.151324px;}
._c_c00387{margin-left:-3.900000px;}
._1_c00387{margin-left:-2.879766px;}
._2_c00387{margin-left:-1.448910px;}
._0_c00387{width:1.850994px;}
._5_c00387{width:3.266898px;}
._a_c00387{width:4.269006px;}
._b_c00387{width:6.189006px;}
._11_c00387{width:7.503348px;}
._f_c00387{width:9.000000px;}
._7_c00387{width:10.694970px;}
._18_c00387{width:13.771263px;}
._17_c00387{width:15.246042px;}
._1a_c00387{width:16.331922px;}
._4_c00387{width:17.958132px;}
._3_c00387{width:19.680000px;}
._8_c00387{width:21.035502px;}
._1b_c00387{width:25.076496px;}
._14_c00387{width:26.276526px;}
._16_c00387{width:27.777507px;}
._15_c00387{width:30.849603px;}
.fc1_c00387{color:transparent;}
.fc0_c00387{color:rgb(35,31,32);}
.fs0_c00387{font-size:51.000000px;}
.fs1_c00387{font-size:60.000000px;}
.y0_c00387{bottom:0.000000px;}
.y2c_c00387{bottom:64.425022px;}
.y2b_c00387{bottom:110.175022px;}
.y2a_c00387{bottom:125.625022px;}
.y29_c00387{bottom:141.150022px;}
.y28_c00387{bottom:155.925022px;}
.y27_c00387{bottom:171.750022px;}
.y26_c00387{bottom:186.825022px;}
.y25_c00387{bottom:201.975022px;}
.y24_c00387{bottom:217.125022px;}
.y23_c00387{bottom:232.575022px;}
.y22_c00387{bottom:247.725022px;}
.y21_c00387{bottom:263.175022px;}
.y20_c00387{bottom:278.625022px;}
.y1f_c00387{bottom:293.775022px;}
.y1e_c00387{bottom:308.925022px;}
.y1d_c00387{bottom:324.375022px;}
.y1c_c00387{bottom:339.825022px;}
.y1b_c00387{bottom:354.975022px;}
.y1a_c00387{bottom:370.125022px;}
.y19_c00387{bottom:385.575022px;}
.y18_c00387{bottom:400.725022px;}
.y17_c00387{bottom:416.550022px;}
.y16_c00387{bottom:431.325022px;}
.y15_c00387{bottom:447.150022px;}
.y14_c00387{bottom:461.925022px;}
.y13_c00387{bottom:477.375022px;}
.y12_c00387{bottom:492.525022px;}
.y11_c00387{bottom:508.350022px;}
.y10_c00387{bottom:523.125022px;}
.yf_c00387{bottom:538.575022px;}
.ye_c00387{bottom:554.025022px;}
.yd_c00387{bottom:569.175022px;}
.yc_c00387{bottom:584.325022px;}
.yb_c00387{bottom:600.150022px;}
.ya_c00387{bottom:614.925022px;}
.y9_c00387{bottom:708.825022px;}
.y8_c00387{bottom:728.325022px;}
.y7_c00387{bottom:748.125022px;}
.y6_c00387{bottom:767.175022px;}
.y5_c00387{bottom:786.225022px;}
.y4_c00387{bottom:805.725022px;}
.y3_c00387{bottom:825.525022px;}
.y2_c00387{bottom:844.575022px;}
.y1_c00387{bottom:886.725022px;}
.h2_c00387{height:50.028809px;}
.h4_c00387{height:50.053711px;}
.h3_c00387{height:58.886719px;}
.h1_c00387{height:957.750000px;}
.h0_c00387{height:957.975000px;}
.w0_c00387{width:641.850030px;}
.w1_c00387{width:642.000000px;}
.x0_c00387{left:0.000000px;}
.x3_c00387{left:80.250000px;}
.x2_c00387{left:81.375000px;}
.x4_c00387{left:87.825000px;}
.x5_c00387{left:120.975000px;}
.x1_c00387{left:229.350000px;}
.x6_c00387{left:531.375000px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls0_c00387{letter-spacing:0.000000pt;}
.ws1_c00387{word-spacing:-13.333333pt;}
.ws0_c00387{word-spacing:-11.333333pt;}
.ws2_c00387{word-spacing:0.000000pt;}
._9_c00387{margin-left:-13.866667pt;}
._12_c00387{margin-left:-11.586533pt;}
._6_c00387{margin-left:-10.495957pt;}
._10_c00387{margin-left:-9.293307pt;}
._13_c00387{margin-left:-8.272224pt;}
._e_c00387{margin-left:-6.621339pt;}
._19_c00387{margin-left:-5.645317pt;}
._d_c00387{margin-left:-4.578955pt;}
._c_c00387{margin-left:-3.466667pt;}
._1_c00387{margin-left:-2.559792pt;}
._2_c00387{margin-left:-1.287920pt;}
._0_c00387{width:1.645328pt;}
._5_c00387{width:2.903909pt;}
._a_c00387{width:3.794672pt;}
._b_c00387{width:5.501339pt;}
._11_c00387{width:6.669643pt;}
._f_c00387{width:8.000000pt;}
._7_c00387{width:9.506640pt;}
._18_c00387{width:12.241123pt;}
._17_c00387{width:13.552037pt;}
._1a_c00387{width:14.517264pt;}
._4_c00387{width:15.962784pt;}
._3_c00387{width:17.493333pt;}
._8_c00387{width:18.698224pt;}
._1b_c00387{width:22.290219pt;}
._14_c00387{width:23.356912pt;}
._16_c00387{width:24.691117pt;}
._15_c00387{width:27.421869pt;}
.fs0_c00387{font-size:45.333333pt;}
.fs1_c00387{font-size:53.333333pt;}
.y0_c00387{bottom:0.000000pt;}
.y2c_c00387{bottom:57.266686pt;}
.y2b_c00387{bottom:97.933353pt;}
.y2a_c00387{bottom:111.666686pt;}
.y29_c00387{bottom:125.466686pt;}
.y28_c00387{bottom:138.600020pt;}
.y27_c00387{bottom:152.666686pt;}
.y26_c00387{bottom:166.066686pt;}
.y25_c00387{bottom:179.533353pt;}
.y24_c00387{bottom:193.000020pt;}
.y23_c00387{bottom:206.733353pt;}
.y22_c00387{bottom:220.200020pt;}
.y21_c00387{bottom:233.933353pt;}
.y20_c00387{bottom:247.666686pt;}
.y1f_c00387{bottom:261.133353pt;}
.y1e_c00387{bottom:274.600020pt;}
.y1d_c00387{bottom:288.333353pt;}
.y1c_c00387{bottom:302.066686pt;}
.y1b_c00387{bottom:315.533353pt;}
.y1a_c00387{bottom:329.000020pt;}
.y19_c00387{bottom:342.733353pt;}
.y18_c00387{bottom:356.200020pt;}
.y17_c00387{bottom:370.266686pt;}
.y16_c00387{bottom:383.400020pt;}
.y15_c00387{bottom:397.466686pt;}
.y14_c00387{bottom:410.600020pt;}
.y13_c00387{bottom:424.333353pt;}
.y12_c00387{bottom:437.800020pt;}
.y11_c00387{bottom:451.866686pt;}
.y10_c00387{bottom:465.000020pt;}
.yf_c00387{bottom:478.733353pt;}
.ye_c00387{bottom:492.466686pt;}
.yd_c00387{bottom:505.933353pt;}
.yc_c00387{bottom:519.400020pt;}
.yb_c00387{bottom:533.466686pt;}
.ya_c00387{bottom:546.600020pt;}
.y9_c00387{bottom:630.066686pt;}
.y8_c00387{bottom:647.400020pt;}
.y7_c00387{bottom:665.000020pt;}
.y6_c00387{bottom:681.933353pt;}
.y5_c00387{bottom:698.866686pt;}
.y4_c00387{bottom:716.200020pt;}
.y3_c00387{bottom:733.800020pt;}
.y2_c00387{bottom:750.733353pt;}
.y1_c00387{bottom:788.200020pt;}
.h2_c00387{height:44.470052pt;}
.h4_c00387{height:44.492188pt;}
.h3_c00387{height:52.343750pt;}
.h1_c00387{height:851.333333pt;}
.h0_c00387{height:851.533333pt;}
.w0_c00387{width:570.533360pt;}
.w1_c00387{width:570.666667pt;}
.x0_c00387{left:0.000000pt;}
.x3_c00387{left:71.333333pt;}
.x2_c00387{left:72.333333pt;}
.x4_c00387{left:78.066667pt;}
.x5_c00387{left:107.533333pt;}
.x1_c00387{left:203.866667pt;}
.x6_c00387{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76265cb5e0bfa81edb166825.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00388;src:url('chunks/assets/font_24d8cf92ab9724330e4beb45.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00388{letter-spacing:0.000000px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00388{word-spacing:-15.000000px;}
.ws0_c00388{word-spacing:-12.750000px;}
.ws2_c00388{word-spacing:0.000000px;}
._11_c00388{margin-left:-14.025099px;}
._10_c00388{margin-left:-12.927393px;}
._5_c00388{margin-left:-11.913063px;}
._12_c00388{margin-left:-10.248312px;}
._d_c00388{margin-left:-6.617946px;}
._f_c00388{margin-left:-4.386276px;}
._1_c00388{margin-left:-3.300006px;}
._0_c00388{margin-left:-1.760979px;}
._2_c00388{width:1.839009px;}
._3_c00388{width:3.320967px;}
._a_c00388{width:5.160000px;}
._9_c00388{width:6.219057px;}
._4_c00388{width:7.800024px;}
._7_c00388{width:8.885922px;}
._6_c00388{width:10.239189px;}
._8_c00388{width:12.000024px;}
._b_c00388{width:13.260000px;}
._14_c00388{width:15.242904px;}
._c_c00388{width:16.403940px;}
._e_c00388{width:19.217952px;}
._15_c00388{width:24.071958px;}
._13_c00388{width:25.610976px;}
._17_c00388{width:27.593907px;}
._16_c00388{width:29.133036px;}
.fc1_c00388{color:transparent;}
.fc0_c00388{color:rgb(35,31,32);}
.fs0_c00388{font-size:51.000000px;}
.fs1_c00388{font-size:60.000000px;}
.y0_c00388{bottom:0.000000px;}
.y28_c00388{bottom:64.425022px;}
.y27_c00388{bottom:110.175022px;}
.y26_c00388{bottom:125.325022px;}
.y25_c00388{bottom:140.775022px;}
.y24_c00388{bottom:156.225022px;}
.y23_c00388{bottom:171.375022px;}
.y22_c00388{bottom:186.525022px;}
.y21_c00388{bottom:201.975022px;}
.y20_c00388{bottom:217.125022px;}
.y1f_c00388{bottom:232.950022px;}
.y1e_c00388{bottom:247.725022px;}
.y1d_c00388{bottom:263.175022px;}
.y1c_c00388{bottom:278.625022px;}
.y1b_c00388{bottom:294.150022px;}
.y1a_c00388{bottom:308.925022px;}
.y19_c00388{bottom:349.275022px;}
.y18_c00388{bottom:368.325022px;}
.y17_c00388{bottom:387.375022px;}
.y16_c00388{bottom:406.800022px;}
.y15_c00388{bottom:425.925022px;}
.y14_c00388{bottom:444.975022px;}
.y13_c00388{bottom:464.400022px;}
.y12_c00388{bottom:484.200022px;}
.y11_c00388{bottom:502.950022px;}
.y10_c00388{bottom:522.375022px;}
.yf_c00388{bottom:541.800022px;}
.ye_c00388{bottom:561.225022px;}
.yd_c00388{bottom:580.350022px;}
.yc_c00388{bottom:599.775022px;}
.yb_c00388{bottom:618.825022px;}
.ya_c00388{bottom:638.325022px;}
.y9_c00388{bottom:657.000022px;}
.y8_c00388{bottom:676.425022px;}
.y7_c00388{bottom:695.550022px;}
.y6_c00388{bottom:715.350022px;}
.y5_c00388{bottom:734.025022px;}
.y4_c00388{bottom:770.400022px;}
.y3_c00388{bottom:825.525022px;}
.y2_c00388{bottom:844.950022px;}
.y1_c00388{bottom:886.875022px;}
.h2_c00388{height:50.028809px;}
.h4_c00388{height:50.053711px;}
.h3_c00388{height:58.886719px;}
.h1_c00388{height:957.750000px;}
.h0_c00388{height:957.975000px;}
.w1_c00388{width:643.500000px;}
.w0_c00388{width:643.650000px;}
.x0_c00388{left:0.000000px;}
.x1_c00388{left:90.750000px;}
.x2_c00388{left:97.575000px;}
.x3_c00388{left:130.350000px;}
.x4_c00388{left:131.775000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls0_c00388{letter-spacing:0.000000pt;}
.ws1_c00388{word-spacing:-13.333333pt;}
.ws0_c00388{word-spacing:-11.333333pt;}
.ws2_c00388{word-spacing:0.000000pt;}
._11_c00388{margin-left:-12.466755pt;}
._10_c00388{margin-left:-11.491016pt;}
._5_c00388{margin-left:-10.589389pt;}
._12_c00388{margin-left:-9.109611pt;}
._d_c00388{margin-left:-5.882619pt;}
._f_c00388{margin-left:-3.898912pt;}
._1_c00388{margin-left:-2.933339pt;}
._0_c00388{margin-left:-1.565315pt;}
._2_c00388{width:1.634675pt;}
._3_c00388{width:2.951971pt;}
._a_c00388{width:4.586667pt;}
._9_c00388{width:5.528051pt;}
._4_c00388{width:6.933355pt;}
._7_c00388{width:7.898597pt;}
._6_c00388{width:9.101501pt;}
._8_c00388{width:10.666688pt;}
._b_c00388{width:11.786667pt;}
._14_c00388{width:13.549248pt;}
._c_c00388{width:14.581280pt;}
._e_c00388{width:17.082624pt;}
._15_c00388{width:21.397296pt;}
._13_c00388{width:22.765312pt;}
._17_c00388{width:24.527917pt;}
._16_c00388{width:25.896032pt;}
.fs0_c00388{font-size:45.333333pt;}
.fs1_c00388{font-size:53.333333pt;}
.y0_c00388{bottom:0.000000pt;}
.y28_c00388{bottom:57.266686pt;}
.y27_c00388{bottom:97.933353pt;}
.y26_c00388{bottom:111.400020pt;}
.y25_c00388{bottom:125.133353pt;}
.y24_c00388{bottom:138.866686pt;}
.y23_c00388{bottom:152.333353pt;}
.y22_c00388{bottom:165.800020pt;}
.y21_c00388{bottom:179.533353pt;}
.y20_c00388{bottom:193.000020pt;}
.y1f_c00388{bottom:207.066686pt;}
.y1e_c00388{bottom:220.200020pt;}
.y1d_c00388{bottom:233.933353pt;}
.y1c_c00388{bottom:247.666686pt;}
.y1b_c00388{bottom:261.466686pt;}
.y1a_c00388{bottom:274.600020pt;}
.y19_c00388{bottom:310.466686pt;}
.y18_c00388{bottom:327.400020pt;}
.y17_c00388{bottom:344.333353pt;}
.y16_c00388{bottom:361.600020pt;}
.y15_c00388{bottom:378.600020pt;}
.y14_c00388{bottom:395.533353pt;}
.y13_c00388{bottom:412.800020pt;}
.y12_c00388{bottom:430.400020pt;}
.y11_c00388{bottom:447.066686pt;}
.y10_c00388{bottom:464.333353pt;}
.yf_c00388{bottom:481.600020pt;}
.ye_c00388{bottom:498.866686pt;}
.yd_c00388{bottom:515.866686pt;}
.yc_c00388{bottom:533.133353pt;}
.yb_c00388{bottom:550.066686pt;}
.ya_c00388{bottom:567.400020pt;}
.y9_c00388{bottom:584.000020pt;}
.y8_c00388{bottom:601.266686pt;}
.y7_c00388{bottom:618.266686pt;}
.y6_c00388{bottom:635.866686pt;}
.y5_c00388{bottom:652.466686pt;}
.y4_c00388{bottom:684.800020pt;}
.y3_c00388{bottom:733.800020pt;}
.y2_c00388{bottom:751.066686pt;}
.y1_c00388{bottom:788.333353pt;}
.h2_c00388{height:44.470052pt;}
.h4_c00388{height:44.492188pt;}
.h3_c00388{height:52.343750pt;}
.h1_c00388{height:851.333333pt;}
.h0_c00388{height:851.533333pt;}
.w1_c00388{width:572.000000pt;}
.w0_c00388{width:572.133333pt;}
.x0_c00388{left:0.000000pt;}
.x1_c00388{left:80.666667pt;}
.x2_c00388{left:86.733333pt;}
.x3_c00388{left:115.866667pt;}
.x4_c00388{left:117.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_390d988bad611220c4630368.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00389;src:url('chunks/assets/font_077c6e8194b75b39b708a8f7.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00389{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_c00389{vertical-align:0.000000px;}
.ls0_c00389{letter-spacing:0.000000px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00389{word-spacing:-15.000000px;}
.ws1_c00389{word-spacing:-12.750000px;}
.ws2_c00389{word-spacing:0.000000px;}
._e_c00389{margin-left:-15.600000px;}
._13_c00389{margin-left:-13.145634px;}
._c_c00389{margin-left:-12.134214px;}
._f_c00389{margin-left:-10.331496px;}
._9_c00389{margin-left:-7.585242px;}
._18_c00389{margin-left:-6.253395px;}
._6_c00389{margin-left:-5.171112px;}
._8_c00389{margin-left:-3.900000px;}
._1_c00389{margin-left:-2.879766px;}
._2_c00389{margin-left:-1.448910px;}
._0_c00389{width:1.850994px;}
._4_c00389{width:2.873706px;}
._5_c00389{width:4.604892px;}
._7_c00389{width:6.600000px;}
._3_c00389{width:8.186730px;}
._a_c00389{width:9.346188px;}
._b_c00389{width:11.355696px;}
._d_c00389{width:13.227204px;}
._17_c00389{width:14.741160px;}
._11_c00389{width:16.680000px;}
._10_c00389{width:18.096024px;}
._12_c00389{width:19.567998px;}
._14_c00389{width:22.076523px;}
._16_c00389{width:24.845640px;}
._15_c00389{width:26.276526px;}
.fc1_c00389{color:transparent;}
.fc0_c00389{color:rgb(35,31,32);}
.fs0_c00389{font-size:51.000000px;}
.fs1_c00389{font-size:60.000000px;}
.y0_c00389{bottom:0.000000px;}
.y29_c00389{bottom:64.425022px;}
.y28_c00389{bottom:110.175022px;}
.y27_c00389{bottom:125.625022px;}
.y26_c00389{bottom:140.775022px;}
.y25_c00389{bottom:155.925022px;}
.y24_c00389{bottom:171.375022px;}
.y23_c00389{bottom:186.525022px;}
.y22_c00389{bottom:202.350022px;}
.y21_c00389{bottom:217.425022px;}
.y20_c00389{bottom:232.950022px;}
.y1f_c00389{bottom:248.025022px;}
.y1e_c00389{bottom:263.550022px;}
.y1d_c00389{bottom:278.625022px;}
.y1c_c00389{bottom:293.775022px;}
.y1b_c00389{bottom:308.925022px;}
.y1a_c00389{bottom:324.375022px;}
.y19_c00389{bottom:379.125022px;}
.y18_c00389{bottom:398.550022px;}
.y17_c00389{bottom:417.975022px;}
.y16_c00389{bottom:437.400022px;}
.y15_c00389{bottom:457.200022px;}
.y14_c00389{bottom:476.325022px;}
.y13_c00389{bottom:495.750022px;}
.y12_c00389{bottom:515.175022px;}
.y11_c00389{bottom:534.975022px;}
.y10_c00389{bottom:554.025022px;}
.yf_c00389{bottom:573.825022px;}
.ye_c00389{bottom:593.325022px;}
.yd_c00389{bottom:612.750022px;}
.yc_c00389{bottom:632.175022px;}
.yb_c00389{bottom:651.600022px;}
.ya_c00389{bottom:670.725022px;}
.y9_c00389{bottom:690.150022px;}
.y8_c00389{bottom:709.575022px;}
.y7_c00389{bottom:728.700022px;}
.y6_c00389{bottom:748.125022px;}
.y5_c00389{bottom:767.550022px;}
.y4_c00389{bottom:787.350022px;}
.y3_c00389{bottom:806.400022px;}
.y2_c00389{bottom:844.950022px;}
.y1_c00389{bottom:886.725022px;}
.h2_c00389{height:50.028809px;}
.h4_c00389{height:50.053711px;}
.h3_c00389{height:58.886719px;}
.h1_c00389{height:957.750000px;}
.h0_c00389{height:957.975000px;}
.w0_c00389{width:641.850030px;}
.w1_c00389{width:642.000000px;}
.x0_c00389{left:0.000000px;}
.x3_c00389{left:80.250000px;}
.x2_c00389{left:81.375000px;}
.x5_c00389{left:87.825000px;}
.x4_c00389{left:97.200000px;}
.x7_c00389{left:120.600000px;}
.x6_c00389{left:121.650000px;}
.x1_c00389{left:229.350000px;}
.x8_c00389{left:531.375000px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls0_c00389{letter-spacing:0.000000pt;}
.ws0_c00389{word-spacing:-13.333333pt;}
.ws1_c00389{word-spacing:-11.333333pt;}
.ws2_c00389{word-spacing:0.000000pt;}
._e_c00389{margin-left:-13.866667pt;}
._13_c00389{margin-left:-11.685008pt;}
._c_c00389{margin-left:-10.785968pt;}
._f_c00389{margin-left:-9.183552pt;}
._9_c00389{margin-left:-6.742437pt;}
._18_c00389{margin-left:-5.558573pt;}
._6_c00389{margin-left:-4.596544pt;}
._8_c00389{margin-left:-3.466667pt;}
._1_c00389{margin-left:-2.559792pt;}
._2_c00389{margin-left:-1.287920pt;}
._0_c00389{width:1.645328pt;}
._4_c00389{width:2.554405pt;}
._5_c00389{width:4.093237pt;}
._7_c00389{width:5.866667pt;}
._3_c00389{width:7.277093pt;}
._a_c00389{width:8.307723pt;}
._b_c00389{width:10.093952pt;}
._d_c00389{width:11.757515pt;}
._17_c00389{width:13.103253pt;}
._11_c00389{width:14.826667pt;}
._10_c00389{width:16.085355pt;}
._12_c00389{width:17.393776pt;}
._14_c00389{width:19.623576pt;}
._16_c00389{width:22.085013pt;}
._15_c00389{width:23.356912pt;}
.fs0_c00389{font-size:45.333333pt;}
.fs1_c00389{font-size:53.333333pt;}
.y0_c00389{bottom:0.000000pt;}
.y29_c00389{bottom:57.266686pt;}
.y28_c00389{bottom:97.933353pt;}
.y27_c00389{bottom:111.666686pt;}
.y26_c00389{bottom:125.133353pt;}
.y25_c00389{bottom:138.600020pt;}
.y24_c00389{bottom:152.333353pt;}
.y23_c00389{bottom:165.800020pt;}
.y22_c00389{bottom:179.866686pt;}
.y21_c00389{bottom:193.266686pt;}
.y20_c00389{bottom:207.066686pt;}
.y1f_c00389{bottom:220.466686pt;}
.y1e_c00389{bottom:234.266686pt;}
.y1d_c00389{bottom:247.666686pt;}
.y1c_c00389{bottom:261.133353pt;}
.y1b_c00389{bottom:274.600020pt;}
.y1a_c00389{bottom:288.333353pt;}
.y19_c00389{bottom:337.000020pt;}
.y18_c00389{bottom:354.266686pt;}
.y17_c00389{bottom:371.533353pt;}
.y16_c00389{bottom:388.800020pt;}
.y15_c00389{bottom:406.400020pt;}
.y14_c00389{bottom:423.400020pt;}
.y13_c00389{bottom:440.666686pt;}
.y12_c00389{bottom:457.933353pt;}
.y11_c00389{bottom:475.533353pt;}
.y10_c00389{bottom:492.466686pt;}
.yf_c00389{bottom:510.066686pt;}
.ye_c00389{bottom:527.400020pt;}
.yd_c00389{bottom:544.666686pt;}
.yc_c00389{bottom:561.933353pt;}
.yb_c00389{bottom:579.200020pt;}
.ya_c00389{bottom:596.200020pt;}
.y9_c00389{bottom:613.466686pt;}
.y8_c00389{bottom:630.733353pt;}
.y7_c00389{bottom:647.733353pt;}
.y6_c00389{bottom:665.000020pt;}
.y5_c00389{bottom:682.266686pt;}
.y4_c00389{bottom:699.866686pt;}
.y3_c00389{bottom:716.800020pt;}
.y2_c00389{bottom:751.066686pt;}
.y1_c00389{bottom:788.200020pt;}
.h2_c00389{height:44.470052pt;}
.h4_c00389{height:44.492188pt;}
.h3_c00389{height:52.343750pt;}
.h1_c00389{height:851.333333pt;}
.h0_c00389{height:851.533333pt;}
.w0_c00389{width:570.533360pt;}
.w1_c00389{width:570.666667pt;}
.x0_c00389{left:0.000000pt;}
.x3_c00389{left:71.333333pt;}
.x2_c00389{left:72.333333pt;}
.x5_c00389{left:78.066667pt;}
.x4_c00389{left:86.400000pt;}
.x7_c00389{left:107.200000pt;}
.x6_c00389{left:108.133333pt;}
.x1_c00389{left:203.866667pt;}
.x8_c00389{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e8873511ce5b19cc6800e75.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00390;src:url('chunks/assets/font_212e6940ae60c6ab0d07a44c.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00390{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00390{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00390{vertical-align:0.000000px;}
.ls0_c00390{letter-spacing:0.000000px;}
.sc__c00390{text-shadow:none;}
.sc0_c00390{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00390{-webkit-text-stroke:0px transparent;}
.sc0_c00390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00390{word-spacing:-15.000000px;}
.ws0_c00390{word-spacing:-12.750000px;}
.ws2_c00390{word-spacing:0.000000px;}
._13_c00390{margin-left:-30.000000px;}
._12_c00390{margin-left:-15.000000px;}
._10_c00390{margin-left:-13.920000px;}
._11_c00390{margin-left:-12.900000px;}
._d_c00390{margin-left:-11.760000px;}
._c_c00390{margin-left:-10.140000px;}
._16_c00390{margin-left:-6.420000px;}
._15_c00390{margin-left:-4.140000px;}
._9_c00390{margin-left:-2.220000px;}
._b_c00390{margin-left:-1.020000px;}
._0_c00390{width:1.500000px;}
._2_c00390{width:2.520000px;}
._1_c00390{width:3.840000px;}
._a_c00390{width:5.520000px;}
._f_c00390{width:6.960000px;}
._e_c00390{width:8.580000px;}
._14_c00390{width:9.660000px;}
._5_c00390{width:10.920000px;}
._3_c00390{width:12.480000px;}
._4_c00390{width:13.620000px;}
._7_c00390{width:16.260000px;}
._8_c00390{width:17.640000px;}
._6_c00390{width:18.840000px;}
._18_c00390{width:20.340000px;}
._17_c00390{width:21.360000px;}
._19_c00390{width:23.040000px;}
._1a_c00390{width:24.360000px;}
._1b_c00390{width:26.009991px;}
._1c_c00390{width:29.430093px;}
.fc1_c00390{color:transparent;}
.fc0_c00390{color:rgb(35,31,32);}
.fs1_c00390{font-size:51.000000px;}
.fs0_c00390{font-size:60.000000px;}
.y0_c00390{bottom:0.000000px;}
.y25_c00390{bottom:64.425022px;}
.y24_c00390{bottom:110.175022px;}
.y23_c00390{bottom:125.625022px;}
.y22_c00390{bottom:140.775022px;}
.y21_c00390{bottom:156.225022px;}
.y20_c00390{bottom:171.750022px;}
.y1f_c00390{bottom:186.525022px;}
.y1e_c00390{bottom:202.350022px;}
.y1d_c00390{bottom:242.325022px;}
.y1c_c00390{bottom:261.750022px;}
.y1b_c00390{bottom:301.725022px;}
.y19_c00390{bottom:360.375022px;}
.y18_c00390{bottom:380.175022px;}
.y17_c00390{bottom:399.225022px;}
.y16_c00390{bottom:419.025022px;}
.y15_c00390{bottom:438.525022px;}
.y14_c00390{bottom:457.950022px;}
.y13_c00390{bottom:477.000022px;}
.y12_c00390{bottom:496.800022px;}
.y11_c00390{bottom:524.925022px;}
.y10_c00390{bottom:544.350022px;}
.yf_c00390{bottom:563.775022px;}
.ye_c00390{bottom:583.200022px;}
.yd_c00390{bottom:602.625022px;}
.yc_c00390{bottom:622.125022px;}
.yb_c00390{bottom:650.550022px;}
.ya_c00390{bottom:670.350022px;}
.y9_c00390{bottom:689.775022px;}
.y8_c00390{bottom:708.825022px;}
.y7_c00390{bottom:728.325022px;}
.y6_c00390{bottom:748.125022px;}
.y5_c00390{bottom:767.175022px;}
.y4_c00390{bottom:786.225022px;}
.y3_c00390{bottom:806.025022px;}
.y2_c00390{bottom:825.150022px;}
.y1_c00390{bottom:844.950022px;}
.y1a_c00390{bottom:886.875022px;}
.h4_c00390{height:50.028809px;}
.h5_c00390{height:50.053711px;}
.h3_c00390{height:58.857422px;}
.h2_c00390{height:58.886719px;}
.h1_c00390{height:957.750000px;}
.h0_c00390{height:957.975000px;}
.w1_c00390{width:643.500000px;}
.w0_c00390{width:643.650000px;}
.x0_c00390{left:0.000000px;}
.x2_c00390{left:90.375000px;}
.x1_c00390{left:91.425000px;}
.x5_c00390{left:97.575000px;}
.x3_c00390{left:106.200000px;}
.x4_c00390{left:107.250000px;}
.x6_c00390{left:131.400000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls0_c00390{letter-spacing:0.000000pt;}
.ws1_c00390{word-spacing:-13.333333pt;}
.ws0_c00390{word-spacing:-11.333333pt;}
.ws2_c00390{word-spacing:0.000000pt;}
._13_c00390{margin-left:-26.666667pt;}
._12_c00390{margin-left:-13.333333pt;}
._10_c00390{margin-left:-12.373333pt;}
._11_c00390{margin-left:-11.466667pt;}
._d_c00390{margin-left:-10.453333pt;}
._c_c00390{margin-left:-9.013333pt;}
._16_c00390{margin-left:-5.706667pt;}
._15_c00390{margin-left:-3.680000pt;}
._9_c00390{margin-left:-1.973333pt;}
._b_c00390{margin-left:-0.906667pt;}
._0_c00390{width:1.333333pt;}
._2_c00390{width:2.240000pt;}
._1_c00390{width:3.413333pt;}
._a_c00390{width:4.906667pt;}
._f_c00390{width:6.186667pt;}
._e_c00390{width:7.626667pt;}
._14_c00390{width:8.586667pt;}
._5_c00390{width:9.706667pt;}
._3_c00390{width:11.093333pt;}
._4_c00390{width:12.106667pt;}
._7_c00390{width:14.453333pt;}
._8_c00390{width:15.680000pt;}
._6_c00390{width:16.746667pt;}
._18_c00390{width:18.080000pt;}
._17_c00390{width:18.986667pt;}
._19_c00390{width:20.480000pt;}
._1a_c00390{width:21.653333pt;}
._1b_c00390{width:23.119992pt;}
._1c_c00390{width:26.160083pt;}
.fs1_c00390{font-size:45.333333pt;}
.fs0_c00390{font-size:53.333333pt;}
.y0_c00390{bottom:0.000000pt;}
.y25_c00390{bottom:57.266686pt;}
.y24_c00390{bottom:97.933353pt;}
.y23_c00390{bottom:111.666686pt;}
.y22_c00390{bottom:125.133353pt;}
.y21_c00390{bottom:138.866686pt;}
.y20_c00390{bottom:152.666686pt;}
.y1f_c00390{bottom:165.800020pt;}
.y1e_c00390{bottom:179.866686pt;}
.y1d_c00390{bottom:215.400020pt;}
.y1c_c00390{bottom:232.666686pt;}
.y1b_c00390{bottom:268.200020pt;}
.y19_c00390{bottom:320.333353pt;}
.y18_c00390{bottom:337.933353pt;}
.y17_c00390{bottom:354.866686pt;}
.y16_c00390{bottom:372.466686pt;}
.y15_c00390{bottom:389.800020pt;}
.y14_c00390{bottom:407.066686pt;}
.y13_c00390{bottom:424.000020pt;}
.y12_c00390{bottom:441.600020pt;}
.y11_c00390{bottom:466.600020pt;}
.y10_c00390{bottom:483.866686pt;}
.yf_c00390{bottom:501.133353pt;}
.ye_c00390{bottom:518.400020pt;}
.yd_c00390{bottom:535.666686pt;}
.yc_c00390{bottom:553.000020pt;}
.yb_c00390{bottom:578.266686pt;}
.ya_c00390{bottom:595.866686pt;}
.y9_c00390{bottom:613.133353pt;}
.y8_c00390{bottom:630.066686pt;}
.y7_c00390{bottom:647.400020pt;}
.y6_c00390{bottom:665.000020pt;}
.y5_c00390{bottom:681.933353pt;}
.y4_c00390{bottom:698.866686pt;}
.y3_c00390{bottom:716.466686pt;}
.y2_c00390{bottom:733.466686pt;}
.y1_c00390{bottom:751.066686pt;}
.y1a_c00390{bottom:788.333353pt;}
.h4_c00390{height:44.470052pt;}
.h5_c00390{height:44.492188pt;}
.h3_c00390{height:52.317708pt;}
.h2_c00390{height:52.343750pt;}
.h1_c00390{height:851.333333pt;}
.h0_c00390{height:851.533333pt;}
.w1_c00390{width:572.000000pt;}
.w0_c00390{width:572.133333pt;}
.x0_c00390{left:0.000000pt;}
.x2_c00390{left:80.333333pt;}
.x1_c00390{left:81.266667pt;}
.x5_c00390{left:86.733333pt;}
.x3_c00390{left:94.400000pt;}
.x4_c00390{left:95.333333pt;}
.x6_c00390{left:116.800000pt;}
}





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

.ir_c00391:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00391{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00391;src:url('chunks/assets/font_d603a9a529820f7034b0e97f.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00391;src:url('chunks/assets/font_87ce6eaf42611f09f1cdb4b0.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00391{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00391{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_c00391{vertical-align:0.000000px;}
.ls0_c00391{letter-spacing:0.000000px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00391{word-spacing:-15.000000px;}
.ws0_c00391{word-spacing:-12.750000px;}
.ws2_c00391{word-spacing:0.000000px;}
._10_c00391{margin-left:-12.722922px;}
._9_c00391{margin-left:-11.591928px;}
._e_c00391{margin-left:-10.541988px;}
._f_c00391{margin-left:-5.852982px;}
._6_c00391{margin-left:-4.020234px;}
._1_c00391{margin-left:-2.879766px;}
._2_c00391{margin-left:-1.448910px;}
._0_c00391{width:1.850994px;}
._7_c00391{width:3.492048px;}
._4_c00391{width:4.689006px;}
._13_c00391{width:5.694156px;}
._5_c00391{width:6.738012px;}
._a_c00391{width:7.775784px;}
._3_c00391{width:8.805030px;}
._8_c00391{width:9.884910px;}
._d_c00391{width:11.463282px;}
._b_c00391{width:13.163976px;}
._c_c00391{width:16.758012px;}
._12_c00391{width:18.540000px;}
._11_c00391{width:20.540814px;}
._16_c00391{width:23.576496px;}
._14_c00391{width:25.007352px;}
._15_c00391{width:26.276526px;}
.fc1_c00391{color:transparent;}
.fc0_c00391{color:rgb(35,31,32);}
.fs0_c00391{font-size:51.000000px;}
.fs1_c00391{font-size:60.000000px;}
.y0_c00391{bottom:0.000000px;}
.y26_c00391{bottom:64.425022px;}
.y25_c00391{bottom:110.175022px;}
.y24_c00391{bottom:125.625022px;}
.y23_c00391{bottom:141.150022px;}
.y22_c00391{bottom:155.925022px;}
.y21_c00391{bottom:171.300022px;}
.y20_c00391{bottom:186.825022px;}
.y1f_c00391{bottom:202.350022px;}
.y1e_c00391{bottom:217.125022px;}
.y1d_c00391{bottom:232.575022px;}
.y1c_c00391{bottom:248.025022px;}
.y1b_c00391{bottom:303.525022px;}
.y1a_c00391{bottom:322.950022px;}
.y19_c00391{bottom:341.625022px;}
.y18_c00391{bottom:361.500022px;}
.y17_c00391{bottom:380.925022px;}
.y16_c00391{bottom:400.350022px;}
.y15_c00391{bottom:419.775022px;}
.y14_c00391{bottom:439.200022px;}
.y13_c00391{bottom:458.625022px;}
.y12_c00391{bottom:477.750022px;}
.y11_c00391{bottom:515.925022px;}
.y10_c00391{bottom:572.775022px;}
.yf_c00391{bottom:592.200022px;}
.ye_c00391{bottom:611.625022px;}
.yd_c00391{bottom:631.125022px;}
.yc_c00391{bottom:650.925022px;}
.yb_c00391{bottom:669.975022px;}
.ya_c00391{bottom:689.775022px;}
.y9_c00391{bottom:709.200022px;}
.y8_c00391{bottom:728.325022px;}
.y7_c00391{bottom:748.125022px;}
.y6_c00391{bottom:767.175022px;}
.y5_c00391{bottom:786.225022px;}
.y4_c00391{bottom:806.100022px;}
.y3_c00391{bottom:825.525022px;}
.y2_c00391{bottom:844.950022px;}
.y1_c00391{bottom:886.725022px;}
.h2_c00391{height:50.028809px;}
.h4_c00391{height:50.053711px;}
.h3_c00391{height:58.886719px;}
.h1_c00391{height:957.750000px;}
.h0_c00391{height:957.975000px;}
.w0_c00391{width:641.850030px;}
.w1_c00391{width:642.000000px;}
.x0_c00391{left:0.000000px;}
.x2_c00391{left:80.625000px;}
.x3_c00391{left:87.825000px;}
.x4_c00391{left:121.350000px;}
.x1_c00391{left:229.350000px;}
.x5_c00391{left:531.375000px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls0_c00391{letter-spacing:0.000000pt;}
.ws1_c00391{word-spacing:-13.333333pt;}
.ws0_c00391{word-spacing:-11.333333pt;}
.ws2_c00391{word-spacing:0.000000pt;}
._10_c00391{margin-left:-11.309264pt;}
._9_c00391{margin-left:-10.303936pt;}
._e_c00391{margin-left:-9.370656pt;}
._f_c00391{margin-left:-5.202651pt;}
._6_c00391{margin-left:-3.573541pt;}
._1_c00391{margin-left:-2.559792pt;}
._2_c00391{margin-left:-1.287920pt;}
._0_c00391{width:1.645328pt;}
._7_c00391{width:3.104043pt;}
._4_c00391{width:4.168005pt;}
._13_c00391{width:5.061472pt;}
._5_c00391{width:5.989344pt;}
._a_c00391{width:6.911808pt;}
._3_c00391{width:7.826693pt;}
._8_c00391{width:8.786587pt;}
._d_c00391{width:10.189584pt;}
._b_c00391{width:11.701312pt;}
._c_c00391{width:14.896011pt;}
._12_c00391{width:16.480000pt;}
._11_c00391{width:18.258501pt;}
._16_c00391{width:20.956885pt;}
._14_c00391{width:22.228757pt;}
._15_c00391{width:23.356912pt;}
.fs0_c00391{font-size:45.333333pt;}
.fs1_c00391{font-size:53.333333pt;}
.y0_c00391{bottom:0.000000pt;}
.y26_c00391{bottom:57.266686pt;}
.y25_c00391{bottom:97.933353pt;}
.y24_c00391{bottom:111.666686pt;}
.y23_c00391{bottom:125.466686pt;}
.y22_c00391{bottom:138.600020pt;}
.y21_c00391{bottom:152.266686pt;}
.y20_c00391{bottom:166.066686pt;}
.y1f_c00391{bottom:179.866686pt;}
.y1e_c00391{bottom:193.000020pt;}
.y1d_c00391{bottom:206.733353pt;}
.y1c_c00391{bottom:220.466686pt;}
.y1b_c00391{bottom:269.800020pt;}
.y1a_c00391{bottom:287.066686pt;}
.y19_c00391{bottom:303.666686pt;}
.y18_c00391{bottom:321.333353pt;}
.y17_c00391{bottom:338.600020pt;}
.y16_c00391{bottom:355.866686pt;}
.y15_c00391{bottom:373.133353pt;}
.y14_c00391{bottom:390.400020pt;}
.y13_c00391{bottom:407.666686pt;}
.y12_c00391{bottom:424.666686pt;}
.y11_c00391{bottom:458.600020pt;}
.y10_c00391{bottom:509.133353pt;}
.yf_c00391{bottom:526.400020pt;}
.ye_c00391{bottom:543.666686pt;}
.yd_c00391{bottom:561.000020pt;}
.yc_c00391{bottom:578.600020pt;}
.yb_c00391{bottom:595.533353pt;}
.ya_c00391{bottom:613.133353pt;}
.y9_c00391{bottom:630.400020pt;}
.y8_c00391{bottom:647.400020pt;}
.y7_c00391{bottom:665.000020pt;}
.y6_c00391{bottom:681.933353pt;}
.y5_c00391{bottom:698.866686pt;}
.y4_c00391{bottom:716.533353pt;}
.y3_c00391{bottom:733.800020pt;}
.y2_c00391{bottom:751.066686pt;}
.y1_c00391{bottom:788.200020pt;}
.h2_c00391{height:44.470052pt;}
.h4_c00391{height:44.492188pt;}
.h3_c00391{height:52.343750pt;}
.h1_c00391{height:851.333333pt;}
.h0_c00391{height:851.533333pt;}
.w0_c00391{width:570.533360pt;}
.w1_c00391{width:570.666667pt;}
.x0_c00391{left:0.000000pt;}
.x2_c00391{left:71.666667pt;}
.x3_c00391{left:78.066667pt;}
.x4_c00391{left:107.866667pt;}
.x1_c00391{left:203.866667pt;}
.x5_c00391{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_baa818ae1e249b5e95f481b6.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00392;src:url('chunks/assets/font_5b4fcc434e9036b896334132.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00392{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_c00392{vertical-align:0.000000px;}
.ls0_c00392{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00392{word-spacing:-15.000000px;}
.ws1_c00392{word-spacing:-12.750000px;}
.ws2_c00392{word-spacing:0.000000px;}
._14_c00392{margin-left:-30.824955px;}
._13_c00392{margin-left:-29.175045px;}
._19_c00392{margin-left:-22.635021px;}
._b_c00392{margin-left:-14.360967px;}
._a_c00392{margin-left:-12.896745px;}
._c_c00392{margin-left:-11.400000px;}
._17_c00392{margin-left:-10.287519px;}
._1a_c00392{margin-left:-9.212481px;}
._1b_c00392{margin-left:-7.639074px;}
._18_c00392{margin-left:-5.615580px;}
._6_c00392{margin-left:-4.515027px;}
._1_c00392{margin-left:-3.300006px;}
._0_c00392{margin-left:-1.760979px;}
._2_c00392{width:1.839009px;}
._3_c00392{width:3.320967px;}
._8_c00392{width:4.772799px;}
._4_c00392{width:5.786937px;}
._5_c00392{width:7.296024px;}
._7_c00392{width:8.646018px;}
._12_c00392{width:9.857850px;}
._9_c00392{width:10.890198px;}
._d_c00392{width:12.356739px;}
._e_c00392{width:13.482666px;}
._11_c00392{width:17.171868px;}
._f_c00392{width:19.703964px;}
._10_c00392{width:21.801015px;}
._16_c00392{width:23.400132px;}
._15_c00392{width:25.194078px;}
._1c_c00392{width:27.110985px;}
.fc1_c00392{color:transparent;}
.fc0_c00392{color:rgb(35,31,32);}
.fs0_c00392{font-size:51.000000px;}
.fs1_c00392{font-size:60.000000px;}
.y0_c00392{bottom:0.000000px;}
.y28_c00392{bottom:64.800022px;}
.y27_c00392{bottom:110.175022px;}
.y26_c00392{bottom:125.325022px;}
.y25_c00392{bottom:141.150022px;}
.y24_c00392{bottom:156.225022px;}
.y23_c00392{bottom:171.375022px;}
.y22_c00392{bottom:186.825022px;}
.y21_c00392{bottom:201.975022px;}
.y20_c00392{bottom:217.125022px;}
.y1f_c00392{bottom:232.950022px;}
.y1e_c00392{bottom:248.025022px;}
.y1d_c00392{bottom:288.000022px;}
.y1c_c00392{bottom:307.125022px;}
.y1b_c00392{bottom:326.550022px;}
.y1a_c00392{bottom:354.600022px;}
.y19_c00392{bottom:373.725022px;}
.y18_c00392{bottom:393.150022px;}
.y17_c00392{bottom:412.575022px;}
.y16_c00392{bottom:431.625022px;}
.y15_c00392{bottom:451.125022px;}
.y14_c00392{bottom:470.175022px;}
.y13_c00392{bottom:498.525022px;}
.y12_c00392{bottom:518.025022px;}
.y11_c00392{bottom:537.525022px;}
.y10_c00392{bottom:556.950022px;}
.yf_c00392{bottom:576.375022px;}
.ye_c00392{bottom:595.125022px;}
.yd_c00392{bottom:614.925022px;}
.yc_c00392{bottom:633.975022px;}
.yb_c00392{bottom:653.400022px;}
.ya_c00392{bottom:672.825022px;}
.y9_c00392{bottom:691.950022px;}
.y8_c00392{bottom:711.375022px;}
.y7_c00392{bottom:730.425022px;}
.y6_c00392{bottom:758.550022px;}
.y5_c00392{bottom:777.975022px;}
.y4_c00392{bottom:797.025022px;}
.y3_c00392{bottom:825.525022px;}
.y2_c00392{bottom:844.950022px;}
.y1_c00392{bottom:886.875022px;}
.h2_c00392{height:50.028809px;}
.h5_c00392{height:50.053711px;}
.h4_c00392{height:58.857422px;}
.h3_c00392{height:58.886719px;}
.h1_c00392{height:957.750000px;}
.h0_c00392{height:957.975000px;}
.w1_c00392{width:643.500000px;}
.w0_c00392{width:643.650000px;}
.x0_c00392{left:0.000000px;}
.x1_c00392{left:90.750000px;}
.x4_c00392{left:97.575000px;}
.x2_c00392{left:106.200000px;}
.x3_c00392{left:107.250000px;}
.x6_c00392{left:130.350000px;}
.x5_c00392{left:131.400000px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls0_c00392{letter-spacing:0.000000pt;}
.ws0_c00392{word-spacing:-13.333333pt;}
.ws1_c00392{word-spacing:-11.333333pt;}
.ws2_c00392{word-spacing:0.000000pt;}
._14_c00392{margin-left:-27.399960pt;}
._13_c00392{margin-left:-25.933373pt;}
._19_c00392{margin-left:-20.120019pt;}
._b_c00392{margin-left:-12.765304pt;}
._a_c00392{margin-left:-11.463773pt;}
._c_c00392{margin-left:-10.133333pt;}
._17_c00392{margin-left:-9.144461pt;}
._1a_c00392{margin-left:-8.188872pt;}
._1b_c00392{margin-left:-6.790288pt;}
._18_c00392{margin-left:-4.991627pt;}
._6_c00392{margin-left:-4.013357pt;}
._1_c00392{margin-left:-2.933339pt;}
._0_c00392{margin-left:-1.565315pt;}
._2_c00392{width:1.634675pt;}
._3_c00392{width:2.951971pt;}
._8_c00392{width:4.242488pt;}
._4_c00392{width:5.143944pt;}
._5_c00392{width:6.485355pt;}
._7_c00392{width:7.685349pt;}
._12_c00392{width:8.762533pt;}
._9_c00392{width:9.680176pt;}
._d_c00392{width:10.983768pt;}
._e_c00392{width:11.984592pt;}
._11_c00392{width:15.263883pt;}
._f_c00392{width:17.514635pt;}
._10_c00392{width:19.378680pt;}
._16_c00392{width:20.800117pt;}
._15_c00392{width:22.394736pt;}
._1c_c00392{width:24.098653pt;}
.fs0_c00392{font-size:45.333333pt;}
.fs1_c00392{font-size:53.333333pt;}
.y0_c00392{bottom:0.000000pt;}
.y28_c00392{bottom:57.600020pt;}
.y27_c00392{bottom:97.933353pt;}
.y26_c00392{bottom:111.400020pt;}
.y25_c00392{bottom:125.466686pt;}
.y24_c00392{bottom:138.866686pt;}
.y23_c00392{bottom:152.333353pt;}
.y22_c00392{bottom:166.066686pt;}
.y21_c00392{bottom:179.533353pt;}
.y20_c00392{bottom:193.000020pt;}
.y1f_c00392{bottom:207.066686pt;}
.y1e_c00392{bottom:220.466686pt;}
.y1d_c00392{bottom:256.000020pt;}
.y1c_c00392{bottom:273.000020pt;}
.y1b_c00392{bottom:290.266686pt;}
.y1a_c00392{bottom:315.200020pt;}
.y19_c00392{bottom:332.200020pt;}
.y18_c00392{bottom:349.466686pt;}
.y17_c00392{bottom:366.733353pt;}
.y16_c00392{bottom:383.666686pt;}
.y15_c00392{bottom:401.000020pt;}
.y14_c00392{bottom:417.933353pt;}
.y13_c00392{bottom:443.133353pt;}
.y12_c00392{bottom:460.466686pt;}
.y11_c00392{bottom:477.800020pt;}
.y10_c00392{bottom:495.066686pt;}
.yf_c00392{bottom:512.333353pt;}
.ye_c00392{bottom:529.000020pt;}
.yd_c00392{bottom:546.600020pt;}
.yc_c00392{bottom:563.533353pt;}
.yb_c00392{bottom:580.800020pt;}
.ya_c00392{bottom:598.066686pt;}
.y9_c00392{bottom:615.066686pt;}
.y8_c00392{bottom:632.333353pt;}
.y7_c00392{bottom:649.266686pt;}
.y6_c00392{bottom:674.266686pt;}
.y5_c00392{bottom:691.533353pt;}
.y4_c00392{bottom:708.466686pt;}
.y3_c00392{bottom:733.800020pt;}
.y2_c00392{bottom:751.066686pt;}
.y1_c00392{bottom:788.333353pt;}
.h2_c00392{height:44.470052pt;}
.h5_c00392{height:44.492188pt;}
.h4_c00392{height:52.317708pt;}
.h3_c00392{height:52.343750pt;}
.h1_c00392{height:851.333333pt;}
.h0_c00392{height:851.533333pt;}
.w1_c00392{width:572.000000pt;}
.w0_c00392{width:572.133333pt;}
.x0_c00392{left:0.000000pt;}
.x1_c00392{left:80.666667pt;}
.x4_c00392{left:86.733333pt;}
.x2_c00392{left:94.400000pt;}
.x3_c00392{left:95.333333pt;}
.x6_c00392{left:115.866667pt;}
.x5_c00392{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_52a75903bca8ef353a67a9d1.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00393;src:url('chunks/assets/font_6555c68ee64308b177bcc7ab.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00393{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00393{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.ls0_c00393{letter-spacing:0.000000px;}
.sc__c00393{text-shadow:none;}
.sc0_c00393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00393{-webkit-text-stroke:0px transparent;}
.sc0_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00393{word-spacing:-15.000000px;}
.ws0_c00393{word-spacing:-12.750000px;}
.ws2_c00393{word-spacing:0.000000px;}
._e_c00393{margin-left:-29.850540px;}
._f_c00393{margin-left:-15.448380px;}
._b_c00393{margin-left:-13.962960px;}
._c_c00393{margin-left:-12.900000px;}
._10_c00393{margin-left:-11.400000px;}
._14_c00393{margin-left:-10.115760px;}
._1a_c00393{margin-left:-6.237093px;}
._16_c00393{margin-left:-5.129940px;}
._a_c00393{margin-left:-3.932982px;}
._1_c00393{margin-left:-2.879766px;}
._2_c00393{margin-left:-1.448910px;}
._0_c00393{width:1.850994px;}
._8_c00393{width:3.392910px;}
._3_c00393{width:4.869006px;}
._9_c00393{width:5.887512px;}
._7_c00393{width:7.245030px;}
._6_c00393{width:8.696982px;}
._d_c00393{width:9.789168px;}
._4_c00393{width:11.100000px;}
._5_c00393{width:12.480000px;}
._11_c00393{width:13.998012px;}
._1b_c00393{width:15.335907px;}
._13_c00393{width:16.407114px;}
._12_c00393{width:17.460000px;}
._15_c00393{width:18.926922px;}
._19_c00393{width:23.576496px;}
._18_c00393{width:26.276526px;}
._17_c00393{width:27.707433px;}
.fc1_c00393{color:transparent;}
.fc0_c00393{color:rgb(35,31,32);}
.fs0_c00393{font-size:51.000000px;}
.fs1_c00393{font-size:60.000000px;}
.y0_c00393{bottom:0.000000px;}
.y28_c00393{bottom:64.425022px;}
.y27_c00393{bottom:110.550022px;}
.y26_c00393{bottom:125.625022px;}
.y25_c00393{bottom:140.775022px;}
.y24_c00393{bottom:156.225022px;}
.y23_c00393{bottom:171.375022px;}
.y22_c00393{bottom:186.825022px;}
.y21_c00393{bottom:202.350022px;}
.y20_c00393{bottom:217.425022px;}
.y1f_c00393{bottom:232.575022px;}
.y1e_c00393{bottom:247.725022px;}
.y1d_c00393{bottom:263.175022px;}
.y1c_c00393{bottom:321.525022px;}
.y1b_c00393{bottom:341.325022px;}
.y1a_c00393{bottom:360.750022px;}
.y19_c00393{bottom:379.800022px;}
.y18_c00393{bottom:399.600022px;}
.y17_c00393{bottom:419.025022px;}
.y16_c00393{bottom:438.150022px;}
.y15_c00393{bottom:457.950022px;}
.y14_c00393{bottom:477.000022px;}
.y13_c00393{bottom:496.800022px;}
.y12_c00393{bottom:516.225022px;}
.y11_c00393{bottom:535.350022px;}
.y10_c00393{bottom:555.150022px;}
.yf_c00393{bottom:574.575022px;}
.ye_c00393{bottom:594.000022px;}
.yd_c00393{bottom:622.125022px;}
.yc_c00393{bottom:641.550022px;}
.yb_c00393{bottom:660.975022px;}
.ya_c00393{bottom:680.400022px;}
.y9_c00393{bottom:699.825022px;}
.y8_c00393{bottom:719.325022px;}
.y7_c00393{bottom:738.750022px;}
.y6_c00393{bottom:758.175022px;}
.y5_c00393{bottom:777.225022px;}
.y4_c00393{bottom:805.725022px;}
.y3_c00393{bottom:825.525022px;}
.y2_c00393{bottom:844.575022px;}
.y1_c00393{bottom:886.725022px;}
.h2_c00393{height:50.028809px;}
.h5_c00393{height:50.053711px;}
.h4_c00393{height:58.857422px;}
.h3_c00393{height:58.886719px;}
.h1_c00393{height:957.750000px;}
.h0_c00393{height:957.975000px;}
.w0_c00393{width:641.850030px;}
.w1_c00393{width:642.000000px;}
.x0_c00393{left:0.000000px;}
.x2_c00393{left:81.000000px;}
.x5_c00393{left:87.825000px;}
.x3_c00393{left:96.150000px;}
.x4_c00393{left:97.200000px;}
.x6_c00393{left:120.975000px;}
.x1_c00393{left:229.350000px;}
.x7_c00393{left:531.375000px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls0_c00393{letter-spacing:0.000000pt;}
.ws1_c00393{word-spacing:-13.333333pt;}
.ws0_c00393{word-spacing:-11.333333pt;}
.ws2_c00393{word-spacing:0.000000pt;}
._e_c00393{margin-left:-26.533813pt;}
._f_c00393{margin-left:-13.731893pt;}
._b_c00393{margin-left:-12.411520pt;}
._c_c00393{margin-left:-11.466667pt;}
._10_c00393{margin-left:-10.133333pt;}
._14_c00393{margin-left:-8.991787pt;}
._1a_c00393{margin-left:-5.544083pt;}
._16_c00393{margin-left:-4.559947pt;}
._a_c00393{margin-left:-3.495984pt;}
._1_c00393{margin-left:-2.559792pt;}
._2_c00393{margin-left:-1.287920pt;}
._0_c00393{width:1.645328pt;}
._8_c00393{width:3.015920pt;}
._3_c00393{width:4.328005pt;}
._9_c00393{width:5.233344pt;}
._7_c00393{width:6.440027pt;}
._6_c00393{width:7.730651pt;}
._d_c00393{width:8.701483pt;}
._4_c00393{width:9.866667pt;}
._5_c00393{width:11.093333pt;}
._11_c00393{width:12.442677pt;}
._1b_c00393{width:13.631917pt;}
._13_c00393{width:14.584101pt;}
._12_c00393{width:15.520000pt;}
._15_c00393{width:16.823931pt;}
._19_c00393{width:20.956885pt;}
._18_c00393{width:23.356912pt;}
._17_c00393{width:24.628829pt;}
.fs0_c00393{font-size:45.333333pt;}
.fs1_c00393{font-size:53.333333pt;}
.y0_c00393{bottom:0.000000pt;}
.y28_c00393{bottom:57.266686pt;}
.y27_c00393{bottom:98.266686pt;}
.y26_c00393{bottom:111.666686pt;}
.y25_c00393{bottom:125.133353pt;}
.y24_c00393{bottom:138.866686pt;}
.y23_c00393{bottom:152.333353pt;}
.y22_c00393{bottom:166.066686pt;}
.y21_c00393{bottom:179.866686pt;}
.y20_c00393{bottom:193.266686pt;}
.y1f_c00393{bottom:206.733353pt;}
.y1e_c00393{bottom:220.200020pt;}
.y1d_c00393{bottom:233.933353pt;}
.y1c_c00393{bottom:285.800020pt;}
.y1b_c00393{bottom:303.400020pt;}
.y1a_c00393{bottom:320.666686pt;}
.y19_c00393{bottom:337.600020pt;}
.y18_c00393{bottom:355.200020pt;}
.y17_c00393{bottom:372.466686pt;}
.y16_c00393{bottom:389.466686pt;}
.y15_c00393{bottom:407.066686pt;}
.y14_c00393{bottom:424.000020pt;}
.y13_c00393{bottom:441.600020pt;}
.y12_c00393{bottom:458.866686pt;}
.y11_c00393{bottom:475.866686pt;}
.y10_c00393{bottom:493.466686pt;}
.yf_c00393{bottom:510.733353pt;}
.ye_c00393{bottom:528.000020pt;}
.yd_c00393{bottom:553.000020pt;}
.yc_c00393{bottom:570.266686pt;}
.yb_c00393{bottom:587.533353pt;}
.ya_c00393{bottom:604.800020pt;}
.y9_c00393{bottom:622.066686pt;}
.y8_c00393{bottom:639.400020pt;}
.y7_c00393{bottom:656.666686pt;}
.y6_c00393{bottom:673.933353pt;}
.y5_c00393{bottom:690.866686pt;}
.y4_c00393{bottom:716.200020pt;}
.y3_c00393{bottom:733.800020pt;}
.y2_c00393{bottom:750.733353pt;}
.y1_c00393{bottom:788.200020pt;}
.h2_c00393{height:44.470052pt;}
.h5_c00393{height:44.492188pt;}
.h4_c00393{height:52.317708pt;}
.h3_c00393{height:52.343750pt;}
.h1_c00393{height:851.333333pt;}
.h0_c00393{height:851.533333pt;}
.w0_c00393{width:570.533360pt;}
.w1_c00393{width:570.666667pt;}
.x0_c00393{left:0.000000pt;}
.x2_c00393{left:72.000000pt;}
.x5_c00393{left:78.066667pt;}
.x3_c00393{left:85.466667pt;}
.x4_c00393{left:86.400000pt;}
.x6_c00393{left:107.533333pt;}
.x1_c00393{left:203.866667pt;}
.x7_c00393{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c041758add7765ccf25bc7dd.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00394;src:url('chunks/assets/font_de02884cc21a2f649d64aad2.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00394{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00394{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.ls0_c00394{letter-spacing:0.000000px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00394{word-spacing:-15.000000px;}
.ws0_c00394{word-spacing:-12.750000px;}
.ws2_c00394{word-spacing:0.000000px;}
._1a_c00394{margin-left:-30.761802px;}
._19_c00394{margin-left:-29.238198px;}
._d_c00394{margin-left:-15.408204px;}
._1b_c00394{margin-left:-14.238198px;}
._e_c00394{margin-left:-12.600000px;}
._1c_c00394{margin-left:-11.400000px;}
._15_c00394{margin-left:-10.199988px;}
._16_c00394{margin-left:-9.000000px;}
._18_c00394{margin-left:-7.353171px;}
._1d_c00394{margin-left:-6.318141px;}
._6_c00394{margin-left:-5.040000px;}
._1_c00394{margin-left:-3.300006px;}
._0_c00394{margin-left:-1.760979px;}
._2_c00394{width:1.839009px;}
._3_c00394{width:3.320967px;}
._f_c00394{width:4.335225px;}
._8_c00394{width:5.682006px;}
._a_c00394{width:7.560000px;}
._7_c00394{width:8.801958px;}
._c_c00394{width:10.103916px;}
._5_c00394{width:11.462937px;}
._9_c00394{width:12.581982px;}
._17_c00394{width:13.656156px;}
._4_c00394{width:16.920000px;}
._b_c00394{width:18.780096px;}
._13_c00394{width:19.961982px;}
._12_c00394{width:21.975045px;}
._14_c00394{width:23.183964px;}
._11_c00394{width:24.260991px;}
._10_c00394{width:26.084955px;}
.fc1_c00394{color:transparent;}
.fc0_c00394{color:rgb(35,31,32);}
.fs0_c00394{font-size:51.000000px;}
.fs1_c00394{font-size:60.000000px;}
.y0_c00394{bottom:0.000000px;}
.y22_c00394{bottom:64.800022px;}
.y21_c00394{bottom:110.175022px;}
.y20_c00394{bottom:125.625022px;}
.y1f_c00394{bottom:140.775022px;}
.y1e_c00394{bottom:180.750022px;}
.y1d_c00394{bottom:200.175022px;}
.y1c_c00394{bottom:219.975022px;}
.y1b_c00394{bottom:239.025022px;}
.y1a_c00394{bottom:258.150022px;}
.y19_c00394{bottom:277.575022px;}
.y18_c00394{bottom:297.375022px;}
.y17_c00394{bottom:316.500022px;}
.y16_c00394{bottom:335.925022px;}
.y15_c00394{bottom:355.350022px;}
.y14_c00394{bottom:374.775022px;}
.y13_c00394{bottom:394.200022px;}
.y12_c00394{bottom:414.000022px;}
.y11_c00394{bottom:433.125022px;}
.y10_c00394{bottom:452.550022px;}
.yf_c00394{bottom:471.975022px;}
.ye_c00394{bottom:491.400022px;}
.yd_c00394{bottom:511.200022px;}
.yc_c00394{bottom:552.225022px;}
.yb_c00394{bottom:608.400022px;}
.ya_c00394{bottom:627.825022px;}
.y9_c00394{bottom:646.950022px;}
.y8_c00394{bottom:666.750022px;}
.y7_c00394{bottom:685.800022px;}
.y6_c00394{bottom:727.200022px;}
.y5_c00394{bottom:786.225022px;}
.y4_c00394{bottom:805.725022px;}
.y3_c00394{bottom:825.150022px;}
.y2_c00394{bottom:844.575022px;}
.y1_c00394{bottom:886.875022px;}
.h2_c00394{height:50.028809px;}
.h5_c00394{height:50.053711px;}
.h4_c00394{height:58.857422px;}
.h3_c00394{height:58.886719px;}
.h1_c00394{height:957.750000px;}
.h0_c00394{height:957.975000px;}
.w1_c00394{width:643.500000px;}
.w0_c00394{width:643.650000px;}
.x0_c00394{left:0.000000px;}
.x1_c00394{left:90.750000px;}
.x4_c00394{left:91.800000px;}
.x5_c00394{left:97.575000px;}
.x2_c00394{left:106.200000px;}
.x3_c00394{left:107.625000px;}
.x6_c00394{left:131.025000px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls0_c00394{letter-spacing:0.000000pt;}
.ws1_c00394{word-spacing:-13.333333pt;}
.ws0_c00394{word-spacing:-11.333333pt;}
.ws2_c00394{word-spacing:0.000000pt;}
._1a_c00394{margin-left:-27.343824pt;}
._19_c00394{margin-left:-25.989509pt;}
._d_c00394{margin-left:-13.696181pt;}
._1b_c00394{margin-left:-12.656176pt;}
._e_c00394{margin-left:-11.200000pt;}
._1c_c00394{margin-left:-10.133333pt;}
._15_c00394{margin-left:-9.066656pt;}
._16_c00394{margin-left:-8.000000pt;}
._18_c00394{margin-left:-6.536152pt;}
._1d_c00394{margin-left:-5.616125pt;}
._6_c00394{margin-left:-4.480000pt;}
._1_c00394{margin-left:-2.933339pt;}
._0_c00394{margin-left:-1.565315pt;}
._2_c00394{width:1.634675pt;}
._3_c00394{width:2.951971pt;}
._f_c00394{width:3.853533pt;}
._8_c00394{width:5.050672pt;}
._a_c00394{width:6.720000pt;}
._7_c00394{width:7.823963pt;}
._c_c00394{width:8.981259pt;}
._5_c00394{width:10.189277pt;}
._9_c00394{width:11.183984pt;}
._17_c00394{width:12.138805pt;}
._4_c00394{width:15.040000pt;}
._b_c00394{width:16.693419pt;}
._13_c00394{width:17.743984pt;}
._12_c00394{width:19.533373pt;}
._14_c00394{width:20.607968pt;}
._11_c00394{width:21.565325pt;}
._10_c00394{width:23.186627pt;}
.fs0_c00394{font-size:45.333333pt;}
.fs1_c00394{font-size:53.333333pt;}
.y0_c00394{bottom:0.000000pt;}
.y22_c00394{bottom:57.600020pt;}
.y21_c00394{bottom:97.933353pt;}
.y20_c00394{bottom:111.666686pt;}
.y1f_c00394{bottom:125.133353pt;}
.y1e_c00394{bottom:160.666686pt;}
.y1d_c00394{bottom:177.933353pt;}
.y1c_c00394{bottom:195.533353pt;}
.y1b_c00394{bottom:212.466686pt;}
.y1a_c00394{bottom:229.466686pt;}
.y19_c00394{bottom:246.733353pt;}
.y18_c00394{bottom:264.333353pt;}
.y17_c00394{bottom:281.333353pt;}
.y16_c00394{bottom:298.600020pt;}
.y15_c00394{bottom:315.866686pt;}
.y14_c00394{bottom:333.133353pt;}
.y13_c00394{bottom:350.400020pt;}
.y12_c00394{bottom:368.000020pt;}
.y11_c00394{bottom:385.000020pt;}
.y10_c00394{bottom:402.266686pt;}
.yf_c00394{bottom:419.533353pt;}
.ye_c00394{bottom:436.800020pt;}
.yd_c00394{bottom:454.400020pt;}
.yc_c00394{bottom:490.866686pt;}
.yb_c00394{bottom:540.800020pt;}
.ya_c00394{bottom:558.066686pt;}
.y9_c00394{bottom:575.066686pt;}
.y8_c00394{bottom:592.666686pt;}
.y7_c00394{bottom:609.600020pt;}
.y6_c00394{bottom:646.400020pt;}
.y5_c00394{bottom:698.866686pt;}
.y4_c00394{bottom:716.200020pt;}
.y3_c00394{bottom:733.466686pt;}
.y2_c00394{bottom:750.733353pt;}
.y1_c00394{bottom:788.333353pt;}
.h2_c00394{height:44.470052pt;}
.h5_c00394{height:44.492188pt;}
.h4_c00394{height:52.317708pt;}
.h3_c00394{height:52.343750pt;}
.h1_c00394{height:851.333333pt;}
.h0_c00394{height:851.533333pt;}
.w1_c00394{width:572.000000pt;}
.w0_c00394{width:572.133333pt;}
.x0_c00394{left:0.000000pt;}
.x1_c00394{left:80.666667pt;}
.x4_c00394{left:81.600000pt;}
.x5_c00394{left:86.733333pt;}
.x2_c00394{left:94.400000pt;}
.x3_c00394{left:95.666667pt;}
.x6_c00394{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_11b5cb8e53026fcbc2c6d912.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00395;src:url('chunks/assets/font_c637f7263fe1c08db84bffd8.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00395{word-spacing:-15.000000px;}
.ws0_c00395{word-spacing:-12.750000px;}
.ws2_c00395{word-spacing:0.000000px;}
._13_c00395{margin-left:-15.684924px;}
._9_c00395{margin-left:-12.917778px;}
._8_c00395{margin-left:-11.682222px;}
._11_c00395{margin-left:-10.364328px;}
._17_c00395{margin-left:-8.045580px;}
._15_c00395{margin-left:-6.204600px;}
._14_c00395{margin-left:-5.145648px;}
._19_c00395{margin-left:-3.942606px;}
._1_c00395{margin-left:-2.879766px;}
._2_c00395{margin-left:-1.448910px;}
._0_c00395{width:1.850994px;}
._7_c00395{width:3.063042px;}
._12_c00395{width:4.286166px;}
._5_c00395{width:6.000426px;}
._3_c00395{width:7.697586px;}
._4_c00395{width:9.105030px;}
._6_c00395{width:10.293216px;}
._f_c00395{width:11.909358px;}
._10_c00395{width:13.038324px;}
._16_c00395{width:16.743666px;}
._e_c00395{width:18.393060px;}
._d_c00395{width:21.017820px;}
._18_c00395{width:23.576496px;}
._1a_c00395{width:26.276526px;}
._b_c00395{width:27.567018px;}
._a_c00395{width:28.965030px;}
._c_c00395{width:31.587018px;}
.fc1_c00395{color:transparent;}
.fc0_c00395{color:rgb(35,31,32);}
.fs0_c00395{font-size:51.000000px;}
.fs1_c00395{font-size:60.000000px;}
.y0_c00395{bottom:0.000000px;}
.y29_c00395{bottom:64.425022px;}
.y28_c00395{bottom:110.175022px;}
.y27_c00395{bottom:125.325022px;}
.y26_c00395{bottom:140.775022px;}
.y25_c00395{bottom:155.925022px;}
.y24_c00395{bottom:171.750022px;}
.y23_c00395{bottom:186.525022px;}
.y22_c00395{bottom:201.975022px;}
.y21_c00395{bottom:217.425022px;}
.y20_c00395{bottom:232.575022px;}
.y1f_c00395{bottom:247.725022px;}
.y1e_c00395{bottom:300.975022px;}
.y1d_c00395{bottom:320.025022px;}
.y1c_c00395{bottom:339.825022px;}
.y1b_c00395{bottom:358.950022px;}
.y1a_c00395{bottom:378.375022px;}
.y19_c00395{bottom:398.175022px;}
.y18_c00395{bottom:417.600022px;}
.y17_c00395{bottom:436.725022px;}
.y16_c00395{bottom:456.525022px;}
.y15_c00395{bottom:475.950022px;}
.y14_c00395{bottom:495.000022px;}
.y13_c00395{bottom:514.800022px;}
.y12_c00395{bottom:533.925022px;}
.y11_c00395{bottom:553.725022px;}
.y10_c00395{bottom:573.150022px;}
.yf_c00395{bottom:592.200022px;}
.ye_c00395{bottom:612.000022px;}
.yd_c00395{bottom:631.425022px;}
.yc_c00395{bottom:650.925022px;}
.yb_c00395{bottom:669.975022px;}
.ya_c00395{bottom:689.775022px;}
.y9_c00395{bottom:709.200022px;}
.y8_c00395{bottom:728.625022px;}
.y7_c00395{bottom:748.125022px;}
.y6_c00395{bottom:767.550022px;}
.y5_c00395{bottom:786.600022px;}
.y4_c00395{bottom:806.025022px;}
.y3_c00395{bottom:825.150022px;}
.y2_c00395{bottom:844.575022px;}
.y1_c00395{bottom:886.725022px;}
.h2_c00395{height:50.028809px;}
.h4_c00395{height:50.053711px;}
.h3_c00395{height:58.886719px;}
.h1_c00395{height:957.750000px;}
.h0_c00395{height:957.975000px;}
.w0_c00395{width:641.850030px;}
.w1_c00395{width:642.000000px;}
.x0_c00395{left:0.000000px;}
.x3_c00395{left:80.250000px;}
.x2_c00395{left:81.375000px;}
.x6_c00395{left:87.825000px;}
.x4_c00395{left:96.150000px;}
.x5_c00395{left:97.200000px;}
.x7_c00395{left:120.600000px;}
.x8_c00395{left:121.650000px;}
.x1_c00395{left:229.350000px;}
.x9_c00395{left:531.375000px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls0_c00395{letter-spacing:0.000000pt;}
.ws1_c00395{word-spacing:-13.333333pt;}
.ws0_c00395{word-spacing:-11.333333pt;}
.ws2_c00395{word-spacing:0.000000pt;}
._13_c00395{margin-left:-13.942155pt;}
._9_c00395{margin-left:-11.482469pt;}
._8_c00395{margin-left:-10.384197pt;}
._11_c00395{margin-left:-9.212736pt;}
._17_c00395{margin-left:-7.151627pt;}
._15_c00395{margin-left:-5.515200pt;}
._14_c00395{margin-left:-4.573909pt;}
._19_c00395{margin-left:-3.504539pt;}
._1_c00395{margin-left:-2.559792pt;}
._2_c00395{margin-left:-1.287920pt;}
._0_c00395{width:1.645328pt;}
._7_c00395{width:2.722704pt;}
._12_c00395{width:3.809925pt;}
._5_c00395{width:5.333712pt;}
._3_c00395{width:6.842299pt;}
._4_c00395{width:8.093360pt;}
._6_c00395{width:9.149525pt;}
._f_c00395{width:10.586096pt;}
._10_c00395{width:11.589621pt;}
._16_c00395{width:14.883259pt;}
._e_c00395{width:16.349387pt;}
._d_c00395{width:18.682507pt;}
._18_c00395{width:20.956885pt;}
._1a_c00395{width:23.356912pt;}
._b_c00395{width:24.504016pt;}
._a_c00395{width:25.746693pt;}
._c_c00395{width:28.077349pt;}
.fs0_c00395{font-size:45.333333pt;}
.fs1_c00395{font-size:53.333333pt;}
.y0_c00395{bottom:0.000000pt;}
.y29_c00395{bottom:57.266686pt;}
.y28_c00395{bottom:97.933353pt;}
.y27_c00395{bottom:111.400020pt;}
.y26_c00395{bottom:125.133353pt;}
.y25_c00395{bottom:138.600020pt;}
.y24_c00395{bottom:152.666686pt;}
.y23_c00395{bottom:165.800020pt;}
.y22_c00395{bottom:179.533353pt;}
.y21_c00395{bottom:193.266686pt;}
.y20_c00395{bottom:206.733353pt;}
.y1f_c00395{bottom:220.200020pt;}
.y1e_c00395{bottom:267.533353pt;}
.y1d_c00395{bottom:284.466686pt;}
.y1c_c00395{bottom:302.066686pt;}
.y1b_c00395{bottom:319.066686pt;}
.y1a_c00395{bottom:336.333353pt;}
.y19_c00395{bottom:353.933353pt;}
.y18_c00395{bottom:371.200020pt;}
.y17_c00395{bottom:388.200020pt;}
.y16_c00395{bottom:405.800020pt;}
.y15_c00395{bottom:423.066686pt;}
.y14_c00395{bottom:440.000020pt;}
.y13_c00395{bottom:457.600020pt;}
.y12_c00395{bottom:474.600020pt;}
.y11_c00395{bottom:492.200020pt;}
.y10_c00395{bottom:509.466686pt;}
.yf_c00395{bottom:526.400020pt;}
.ye_c00395{bottom:544.000020pt;}
.yd_c00395{bottom:561.266686pt;}
.yc_c00395{bottom:578.600020pt;}
.yb_c00395{bottom:595.533353pt;}
.ya_c00395{bottom:613.133353pt;}
.y9_c00395{bottom:630.400020pt;}
.y8_c00395{bottom:647.666686pt;}
.y7_c00395{bottom:665.000020pt;}
.y6_c00395{bottom:682.266686pt;}
.y5_c00395{bottom:699.200020pt;}
.y4_c00395{bottom:716.466686pt;}
.y3_c00395{bottom:733.466686pt;}
.y2_c00395{bottom:750.733353pt;}
.y1_c00395{bottom:788.200020pt;}
.h2_c00395{height:44.470052pt;}
.h4_c00395{height:44.492188pt;}
.h3_c00395{height:52.343750pt;}
.h1_c00395{height:851.333333pt;}
.h0_c00395{height:851.533333pt;}
.w0_c00395{width:570.533360pt;}
.w1_c00395{width:570.666667pt;}
.x0_c00395{left:0.000000pt;}
.x3_c00395{left:71.333333pt;}
.x2_c00395{left:72.333333pt;}
.x6_c00395{left:78.066667pt;}
.x4_c00395{left:85.466667pt;}
.x5_c00395{left:86.400000pt;}
.x7_c00395{left:107.200000pt;}
.x8_c00395{left:108.133333pt;}
.x1_c00395{left:203.866667pt;}
.x9_c00395{left:472.333333pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00396 {
      width: 900px;
      min-height: 280px;
      margin: 16px auto;
      background: #fff;
      border: 1px solid #e5e7eb;
      box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
      position: relative;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    .scieee-page-failed_c00396 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00396 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00396 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d603a9a529820f7034b0e97f.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00397;src:url('chunks/assets/font_90b33786dd7e7b59ee1d622f.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00397{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_c00397{vertical-align:0.000000px;}
.ls0_c00397{letter-spacing:0.000000px;}
.sc__c00397{text-shadow:none;}
.sc0_c00397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00397{-webkit-text-stroke:0px transparent;}
.sc0_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00397{word-spacing:-15.000000px;}
.ws0_c00397{word-spacing:-12.750000px;}
.ws2_c00397{word-spacing:0.000000px;}
._d_c00397{margin-left:-14.376024px;}
._c_c00397{margin-left:-12.623976px;}
._7_c00397{margin-left:-11.153706px;}
._8_c00397{margin-left:-9.846294px;}
._1b_c00397{margin-left:-7.515456px;}
._b_c00397{margin-left:-5.837664px;}
._9_c00397{margin-left:-4.146294px;}
._1_c00397{margin-left:-2.879766px;}
._2_c00397{margin-left:-1.448910px;}
._0_c00397{width:1.850994px;}
._3_c00397{width:3.603042px;}
._15_c00397{width:4.788786px;}
._4_c00397{width:5.925030px;}
._16_c00397{width:7.140648px;}
._14_c00397{width:8.147238px;}
._e_c00397{width:9.254196px;}
._6_c00397{width:10.440000px;}
._f_c00397{width:11.508846px;}
._5_c00397{width:12.575694px;}
._a_c00397{width:13.800000px;}
._10_c00397{width:16.607082px;}
._12_c00397{width:18.207018px;}
._13_c00397{width:19.304814px;}
._11_c00397{width:20.352918px;}
._17_c00397{width:23.645640px;}
._18_c00397{width:25.076496px;}
._1a_c00397{width:26.507454px;}
._19_c00397{width:27.938208px;}
.fc1_c00397{color:transparent;}
.fc0_c00397{color:rgb(35,31,32);}
.fs0_c00397{font-size:51.000000px;}
.fs1_c00397{font-size:60.000000px;}
.y0_c00397{bottom:0.000000px;}
.y25_c00397{bottom:64.425022px;}
.y24_c00397{bottom:110.175022px;}
.y23_c00397{bottom:125.325022px;}
.y22_c00397{bottom:140.775022px;}
.y21_c00397{bottom:156.225022px;}
.y20_c00397{bottom:171.375022px;}
.y1f_c00397{bottom:186.825022px;}
.y1e_c00397{bottom:201.975022px;}
.y1d_c00397{bottom:217.125022px;}
.y1c_c00397{bottom:232.575022px;}
.y1b_c00397{bottom:248.025022px;}
.y1a_c00397{bottom:263.175022px;}
.y19_c00397{bottom:278.325022px;}
.y18_c00397{bottom:293.775022px;}
.y17_c00397{bottom:308.925022px;}
.y16_c00397{bottom:324.750022px;}
.y15_c00397{bottom:475.950022px;}
.y14_c00397{bottom:495.375022px;}
.y13_c00397{bottom:514.425022px;}
.y12_c00397{bottom:534.300022px;}
.y11_c00397{bottom:553.725022px;}
.y10_c00397{bottom:573.150022px;}
.yf_c00397{bottom:592.200022px;}
.ye_c00397{bottom:611.625022px;}
.yd_c00397{bottom:631.425022px;}
.yc_c00397{bottom:650.925022px;}
.yb_c00397{bottom:669.975022px;}
.ya_c00397{bottom:689.775022px;}
.y9_c00397{bottom:709.200022px;}
.y8_c00397{bottom:728.625022px;}
.y7_c00397{bottom:747.750022px;}
.y6_c00397{bottom:767.175022px;}
.y5_c00397{bottom:786.600022px;}
.y4_c00397{bottom:806.025022px;}
.y3_c00397{bottom:825.150022px;}
.y2_c00397{bottom:844.575022px;}
.y1_c00397{bottom:886.725022px;}
.h2_c00397{height:50.028809px;}
.h4_c00397{height:50.053711px;}
.h3_c00397{height:58.886719px;}
.h1_c00397{height:957.750000px;}
.h0_c00397{height:957.975000px;}
.w0_c00397{width:641.850030px;}
.w1_c00397{width:642.000000px;}
.x0_c00397{left:0.000000px;}
.x3_c00397{left:80.250000px;}
.x2_c00397{left:81.375000px;}
.x4_c00397{left:87.825000px;}
.x5_c00397{left:120.975000px;}
.x1_c00397{left:229.350000px;}
.x6_c00397{left:531.375000px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls0_c00397{letter-spacing:0.000000pt;}
.ws1_c00397{word-spacing:-13.333333pt;}
.ws0_c00397{word-spacing:-11.333333pt;}
.ws2_c00397{word-spacing:0.000000pt;}
._d_c00397{margin-left:-12.778688pt;}
._c_c00397{margin-left:-11.221312pt;}
._7_c00397{margin-left:-9.914405pt;}
._8_c00397{margin-left:-8.752261pt;}
._1b_c00397{margin-left:-6.680405pt;}
._b_c00397{margin-left:-5.189035pt;}
._9_c00397{margin-left:-3.685595pt;}
._1_c00397{margin-left:-2.559792pt;}
._2_c00397{margin-left:-1.287920pt;}
._0_c00397{width:1.645328pt;}
._3_c00397{width:3.202704pt;}
._15_c00397{width:4.256699pt;}
._4_c00397{width:5.266693pt;}
._16_c00397{width:6.347243pt;}
._14_c00397{width:7.241989pt;}
._e_c00397{width:8.225952pt;}
._6_c00397{width:9.280000pt;}
._f_c00397{width:10.230085pt;}
._5_c00397{width:11.178395pt;}
._a_c00397{width:12.266667pt;}
._10_c00397{width:14.761851pt;}
._12_c00397{width:16.184016pt;}
._13_c00397{width:17.159835pt;}
._11_c00397{width:18.091483pt;}
._17_c00397{width:21.018347pt;}
._18_c00397{width:22.290219pt;}
._1a_c00397{width:23.562181pt;}
._19_c00397{width:24.833963pt;}
.fs0_c00397{font-size:45.333333pt;}
.fs1_c00397{font-size:53.333333pt;}
.y0_c00397{bottom:0.000000pt;}
.y25_c00397{bottom:57.266686pt;}
.y24_c00397{bottom:97.933353pt;}
.y23_c00397{bottom:111.400020pt;}
.y22_c00397{bottom:125.133353pt;}
.y21_c00397{bottom:138.866686pt;}
.y20_c00397{bottom:152.333353pt;}
.y1f_c00397{bottom:166.066686pt;}
.y1e_c00397{bottom:179.533353pt;}
.y1d_c00397{bottom:193.000020pt;}
.y1c_c00397{bottom:206.733353pt;}
.y1b_c00397{bottom:220.466686pt;}
.y1a_c00397{bottom:233.933353pt;}
.y19_c00397{bottom:247.400020pt;}
.y18_c00397{bottom:261.133353pt;}
.y17_c00397{bottom:274.600020pt;}
.y16_c00397{bottom:288.666686pt;}
.y15_c00397{bottom:423.066686pt;}
.y14_c00397{bottom:440.333353pt;}
.y13_c00397{bottom:457.266686pt;}
.y12_c00397{bottom:474.933353pt;}
.y11_c00397{bottom:492.200020pt;}
.y10_c00397{bottom:509.466686pt;}
.yf_c00397{bottom:526.400020pt;}
.ye_c00397{bottom:543.666686pt;}
.yd_c00397{bottom:561.266686pt;}
.yc_c00397{bottom:578.600020pt;}
.yb_c00397{bottom:595.533353pt;}
.ya_c00397{bottom:613.133353pt;}
.y9_c00397{bottom:630.400020pt;}
.y8_c00397{bottom:647.666686pt;}
.y7_c00397{bottom:664.666686pt;}
.y6_c00397{bottom:681.933353pt;}
.y5_c00397{bottom:699.200020pt;}
.y4_c00397{bottom:716.466686pt;}
.y3_c00397{bottom:733.466686pt;}
.y2_c00397{bottom:750.733353pt;}
.y1_c00397{bottom:788.200020pt;}
.h2_c00397{height:44.470052pt;}
.h4_c00397{height:44.492188pt;}
.h3_c00397{height:52.343750pt;}
.h1_c00397{height:851.333333pt;}
.h0_c00397{height:851.533333pt;}
.w0_c00397{width:570.533360pt;}
.w1_c00397{width:570.666667pt;}
.x0_c00397{left:0.000000pt;}
.x3_c00397{left:71.333333pt;}
.x2_c00397{left:72.333333pt;}
.x4_c00397{left:78.066667pt;}
.x5_c00397{left:107.533333pt;}
.x1_c00397{left:203.866667pt;}
.x6_c00397{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_43dcbce02d4e3944f23b2215.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00398;src:url('chunks/assets/font_e08d389d692f356e8aa9b98d.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00398{letter-spacing:0.000000px;}
.sc__c00398{text-shadow:none;}
.sc0_c00398{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00398{-webkit-text-stroke:0px transparent;}
.sc0_c00398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00398{word-spacing:-15.000000px;}
.ws1_c00398{word-spacing:-12.750000px;}
.ws2_c00398{word-spacing:0.000000px;}
._12_c00398{margin-left:-15.668865px;}
._b_c00398{margin-left:-11.400000px;}
._11_c00398{margin-left:-9.182955px;}
._15_c00398{margin-left:-7.440000px;}
._6_c00398{margin-left:-5.700000px;}
._7_c00398{margin-left:-3.740985px;}
._10_c00398{margin-left:-2.337045px;}
._4_c00398{margin-left:-1.320000px;}
._0_c00398{width:1.320000px;}
._2_c00398{width:2.880000px;}
._3_c00398{width:3.960000px;}
._8_c00398{width:5.460000px;}
._5_c00398{width:6.540000px;}
._13_c00398{width:7.557045px;}
._a_c00398{width:8.640000px;}
._9_c00398{width:10.080000px;}
._1_c00398{width:11.520000px;}
._c_c00398{width:12.540000px;}
._d_c00398{width:13.680000px;}
._18_c00398{width:15.744057px;}
._e_c00398{width:17.040000px;}
._f_c00398{width:19.260000px;}
._14_c00398{width:20.880000px;}
._17_c00398{width:22.827045px;}
._16_c00398{width:25.044069px;}
.fc1_c00398{color:transparent;}
.fc0_c00398{color:rgb(35,31,32);}
.fs1_c00398{font-size:51.000000px;}
.fs0_c00398{font-size:60.000000px;}
.y0_c00398{bottom:0.000000px;}
.y28_c00398{bottom:64.425022px;}
.y27_c00398{bottom:110.175022px;}
.y26_c00398{bottom:125.325022px;}
.y25_c00398{bottom:141.150022px;}
.y24_c00398{bottom:156.225022px;}
.y23_c00398{bottom:171.375022px;}
.y22_c00398{bottom:186.525022px;}
.y21_c00398{bottom:201.975022px;}
.y20_c00398{bottom:217.125022px;}
.y1f_c00398{bottom:259.575022px;}
.y1e_c00398{bottom:279.000022px;}
.y1d_c00398{bottom:298.800022px;}
.y1c_c00398{bottom:318.225022px;}
.y1b_c00398{bottom:337.350022px;}
.y1a_c00398{bottom:357.150022px;}
.y19_c00398{bottom:376.200022px;}
.y18_c00398{bottom:396.075022px;}
.y17_c00398{bottom:415.500022px;}
.y16_c00398{bottom:434.925022px;}
.y15_c00398{bottom:454.350022px;}
.y14_c00398{bottom:473.400022px;}
.y13_c00398{bottom:493.200022px;}
.y12_c00398{bottom:512.325022px;}
.y11_c00398{bottom:531.750022px;}
.y10_c00398{bottom:551.175022px;}
.yf_c00398{bottom:570.225022px;}
.ye_c00398{bottom:589.725022px;}
.yd_c00398{bottom:609.525022px;}
.yc_c00398{bottom:628.575022px;}
.yb_c00398{bottom:648.000022px;}
.ya_c00398{bottom:667.800022px;}
.y9_c00398{bottom:686.925022px;}
.y8_c00398{bottom:706.350022px;}
.y7_c00398{bottom:725.775022px;}
.y6_c00398{bottom:745.200022px;}
.y5_c00398{bottom:765.000022px;}
.y4_c00398{bottom:784.125022px;}
.y2_c00398{bottom:825.150022px;}
.y1_c00398{bottom:844.950022px;}
.y3_c00398{bottom:886.875022px;}
.h3_c00398{height:50.028809px;}
.h4_c00398{height:50.053711px;}
.h2_c00398{height:58.886719px;}
.h1_c00398{height:957.750000px;}
.h0_c00398{height:957.975000px;}
.w1_c00398{width:643.500000px;}
.w0_c00398{width:643.650000px;}
.x0_c00398{left:0.000000px;}
.x3_c00398{left:90.750000px;}
.x1_c00398{left:91.800000px;}
.x5_c00398{left:97.575000px;}
.x4_c00398{left:107.250000px;}
.x2_c00398{left:116.250000px;}
.x7_c00398{left:130.350000px;}
.x6_c00398{left:131.400000px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls0_c00398{letter-spacing:0.000000pt;}
.ws0_c00398{word-spacing:-13.333333pt;}
.ws1_c00398{word-spacing:-11.333333pt;}
.ws2_c00398{word-spacing:0.000000pt;}
._12_c00398{margin-left:-13.927880pt;}
._b_c00398{margin-left:-10.133333pt;}
._11_c00398{margin-left:-8.162627pt;}
._15_c00398{margin-left:-6.613333pt;}
._6_c00398{margin-left:-5.066667pt;}
._7_c00398{margin-left:-3.325320pt;}
._10_c00398{margin-left:-2.077373pt;}
._4_c00398{margin-left:-1.173333pt;}
._0_c00398{width:1.173333pt;}
._2_c00398{width:2.560000pt;}
._3_c00398{width:3.520000pt;}
._8_c00398{width:4.853333pt;}
._5_c00398{width:5.813333pt;}
._13_c00398{width:6.717373pt;}
._a_c00398{width:7.680000pt;}
._9_c00398{width:8.960000pt;}
._1_c00398{width:10.240000pt;}
._c_c00398{width:11.146667pt;}
._d_c00398{width:12.160000pt;}
._18_c00398{width:13.994717pt;}
._e_c00398{width:15.146667pt;}
._f_c00398{width:17.120000pt;}
._14_c00398{width:18.560000pt;}
._17_c00398{width:20.290707pt;}
._16_c00398{width:22.261395pt;}
.fs1_c00398{font-size:45.333333pt;}
.fs0_c00398{font-size:53.333333pt;}
.y0_c00398{bottom:0.000000pt;}
.y28_c00398{bottom:57.266686pt;}
.y27_c00398{bottom:97.933353pt;}
.y26_c00398{bottom:111.400020pt;}
.y25_c00398{bottom:125.466686pt;}
.y24_c00398{bottom:138.866686pt;}
.y23_c00398{bottom:152.333353pt;}
.y22_c00398{bottom:165.800020pt;}
.y21_c00398{bottom:179.533353pt;}
.y20_c00398{bottom:193.000020pt;}
.y1f_c00398{bottom:230.733353pt;}
.y1e_c00398{bottom:248.000020pt;}
.y1d_c00398{bottom:265.600020pt;}
.y1c_c00398{bottom:282.866686pt;}
.y1b_c00398{bottom:299.866686pt;}
.y1a_c00398{bottom:317.466686pt;}
.y19_c00398{bottom:334.400020pt;}
.y18_c00398{bottom:352.066686pt;}
.y17_c00398{bottom:369.333353pt;}
.y16_c00398{bottom:386.600020pt;}
.y15_c00398{bottom:403.866686pt;}
.y14_c00398{bottom:420.800020pt;}
.y13_c00398{bottom:438.400020pt;}
.y12_c00398{bottom:455.400020pt;}
.y11_c00398{bottom:472.666686pt;}
.y10_c00398{bottom:489.933353pt;}
.yf_c00398{bottom:506.866686pt;}
.ye_c00398{bottom:524.200020pt;}
.yd_c00398{bottom:541.800020pt;}
.yc_c00398{bottom:558.733353pt;}
.yb_c00398{bottom:576.000020pt;}
.ya_c00398{bottom:593.600020pt;}
.y9_c00398{bottom:610.600020pt;}
.y8_c00398{bottom:627.866686pt;}
.y7_c00398{bottom:645.133353pt;}
.y6_c00398{bottom:662.400020pt;}
.y5_c00398{bottom:680.000020pt;}
.y4_c00398{bottom:697.000020pt;}
.y2_c00398{bottom:733.466686pt;}
.y1_c00398{bottom:751.066686pt;}
.y3_c00398{bottom:788.333353pt;}
.h3_c00398{height:44.470052pt;}
.h4_c00398{height:44.492188pt;}
.h2_c00398{height:52.343750pt;}
.h1_c00398{height:851.333333pt;}
.h0_c00398{height:851.533333pt;}
.w1_c00398{width:572.000000pt;}
.w0_c00398{width:572.133333pt;}
.x0_c00398{left:0.000000pt;}
.x3_c00398{left:80.666667pt;}
.x1_c00398{left:81.600000pt;}
.x5_c00398{left:86.733333pt;}
.x4_c00398{left:95.333333pt;}
.x2_c00398{left:103.333333pt;}
.x7_c00398{left:115.866667pt;}
.x6_c00398{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_91ed10811fb69e11cfa99a35.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00399;src:url('chunks/assets/font_51068372d2c007278f42deda.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00399{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00399{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00399{vertical-align:0.000000px;}
.ls0_c00399{letter-spacing:0.000000px;}
.sc__c00399{text-shadow:none;}
.sc0_c00399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00399{-webkit-text-stroke:0px transparent;}
.sc0_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00399{word-spacing:-15.000000px;}
.ws0_c00399{word-spacing:-12.750000px;}
.ws2_c00399{word-spacing:0.000000px;}
._16_c00399{margin-left:-33.301710px;}
._d_c00399{margin-left:-15.600000px;}
._15_c00399{margin-left:-14.169786px;}
._13_c00399{margin-left:-13.163196px;}
._12_c00399{margin-left:-11.359980px;}
._10_c00399{margin-left:-8.488536px;}
._f_c00399{margin-left:-7.271418px;}
._18_c00399{margin-left:-5.383314px;}
._7_c00399{margin-left:-4.176024px;}
._1_c00399{margin-left:-2.879766px;}
._2_c00399{margin-left:-1.448910px;}
._0_c00399{width:1.850994px;}
._8_c00399{width:2.972514px;}
._e_c00399{width:4.281288px;}
._5_c00399{width:5.478012px;}
._3_c00399{width:7.296024px;}
._6_c00399{width:9.087018px;}
._9_c00399{width:10.514970px;}
._4_c00399{width:11.763042px;}
._a_c00399{width:12.927018px;}
._14_c00399{width:13.934874px;}
._b_c00399{width:16.920492px;}
._c_c00399{width:18.299712px;}
._11_c00399{width:19.534722px;}
._19_c00399{width:23.576496px;}
._17_c00399{width:26.276526px;}
._1a_c00399{width:29.138187px;}
.fc1_c00399{color:transparent;}
.fc0_c00399{color:rgb(35,31,32);}
.fs0_c00399{font-size:51.000000px;}
.fs1_c00399{font-size:60.000000px;}
.y0_c00399{bottom:0.000000px;}
.y24_c00399{bottom:64.425022px;}
.y23_c00399{bottom:110.175022px;}
.y22_c00399{bottom:125.625022px;}
.y21_c00399{bottom:140.775022px;}
.y20_c00399{bottom:156.225022px;}
.y1f_c00399{bottom:171.375022px;}
.y1e_c00399{bottom:186.525022px;}
.y1d_c00399{bottom:201.975022px;}
.y1c_c00399{bottom:280.425022px;}
.y1b_c00399{bottom:299.925022px;}
.y1a_c00399{bottom:319.350022px;}
.y19_c00399{bottom:338.775022px;}
.y18_c00399{bottom:358.200022px;}
.y17_c00399{bottom:386.625022px;}
.y16_c00399{bottom:406.425022px;}
.y15_c00399{bottom:425.925022px;}
.y14_c00399{bottom:445.350022px;}
.y13_c00399{bottom:464.400022px;}
.y12_c00399{bottom:483.825022px;}
.y11_c00399{bottom:503.625022px;}
.y10_c00399{bottom:523.125022px;}
.yf_c00399{bottom:542.175022px;}
.ye_c00399{bottom:580.650022px;}
.yd_c00399{bottom:631.125022px;}
.yc_c00399{bottom:650.925022px;}
.yb_c00399{bottom:670.350022px;}
.ya_c00399{bottom:689.775022px;}
.y9_c00399{bottom:709.200022px;}
.y8_c00399{bottom:728.625022px;}
.y7_c00399{bottom:748.125022px;}
.y6_c00399{bottom:767.175022px;}
.y5_c00399{bottom:786.225022px;}
.y4_c00399{bottom:805.725022px;}
.y3_c00399{bottom:825.150022px;}
.y2_c00399{bottom:844.575022px;}
.y1_c00399{bottom:886.725022px;}
.h2_c00399{height:50.028809px;}
.h5_c00399{height:50.053711px;}
.h4_c00399{height:58.857422px;}
.h3_c00399{height:58.886719px;}
.h1_c00399{height:957.750000px;}
.h0_c00399{height:957.975000px;}
.w0_c00399{width:641.850030px;}
.w1_c00399{width:642.000000px;}
.x0_c00399{left:0.000000px;}
.x3_c00399{left:80.250000px;}
.x2_c00399{left:81.375000px;}
.x6_c00399{left:87.825000px;}
.x5_c00399{left:96.150000px;}
.x4_c00399{left:97.200000px;}
.x7_c00399{left:121.350000px;}
.x1_c00399{left:229.350000px;}
.x8_c00399{left:531.375000px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls0_c00399{letter-spacing:0.000000pt;}
.ws1_c00399{word-spacing:-13.333333pt;}
.ws0_c00399{word-spacing:-11.333333pt;}
.ws2_c00399{word-spacing:0.000000pt;}
._16_c00399{margin-left:-29.601520pt;}
._d_c00399{margin-left:-13.866667pt;}
._15_c00399{margin-left:-12.595365pt;}
._13_c00399{margin-left:-11.700619pt;}
._12_c00399{margin-left:-10.097760pt;}
._10_c00399{margin-left:-7.545365pt;}
._f_c00399{margin-left:-6.463483pt;}
._18_c00399{margin-left:-4.785168pt;}
._7_c00399{margin-left:-3.712021pt;}
._1_c00399{margin-left:-2.559792pt;}
._2_c00399{margin-left:-1.287920pt;}
._0_c00399{width:1.645328pt;}
._8_c00399{width:2.642235pt;}
._e_c00399{width:3.805589pt;}
._5_c00399{width:4.869344pt;}
._3_c00399{width:6.485355pt;}
._6_c00399{width:8.077349pt;}
._9_c00399{width:9.346640pt;}
._4_c00399{width:10.456037pt;}
._a_c00399{width:11.490683pt;}
._14_c00399{width:12.386555pt;}
._b_c00399{width:15.040437pt;}
._c_c00399{width:16.266411pt;}
._11_c00399{width:17.364197pt;}
._19_c00399{width:20.956885pt;}
._17_c00399{width:23.356912pt;}
._1a_c00399{width:25.900611pt;}
.fs0_c00399{font-size:45.333333pt;}
.fs1_c00399{font-size:53.333333pt;}
.y0_c00399{bottom:0.000000pt;}
.y24_c00399{bottom:57.266686pt;}
.y23_c00399{bottom:97.933353pt;}
.y22_c00399{bottom:111.666686pt;}
.y21_c00399{bottom:125.133353pt;}
.y20_c00399{bottom:138.866686pt;}
.y1f_c00399{bottom:152.333353pt;}
.y1e_c00399{bottom:165.800020pt;}
.y1d_c00399{bottom:179.533353pt;}
.y1c_c00399{bottom:249.266686pt;}
.y1b_c00399{bottom:266.600020pt;}
.y1a_c00399{bottom:283.866686pt;}
.y19_c00399{bottom:301.133353pt;}
.y18_c00399{bottom:318.400020pt;}
.y17_c00399{bottom:343.666686pt;}
.y16_c00399{bottom:361.266686pt;}
.y15_c00399{bottom:378.600020pt;}
.y14_c00399{bottom:395.866686pt;}
.y13_c00399{bottom:412.800020pt;}
.y12_c00399{bottom:430.066686pt;}
.y11_c00399{bottom:447.666686pt;}
.y10_c00399{bottom:465.000020pt;}
.yf_c00399{bottom:481.933353pt;}
.ye_c00399{bottom:516.133353pt;}
.yd_c00399{bottom:561.000020pt;}
.yc_c00399{bottom:578.600020pt;}
.yb_c00399{bottom:595.866686pt;}
.ya_c00399{bottom:613.133353pt;}
.y9_c00399{bottom:630.400020pt;}
.y8_c00399{bottom:647.666686pt;}
.y7_c00399{bottom:665.000020pt;}
.y6_c00399{bottom:681.933353pt;}
.y5_c00399{bottom:698.866686pt;}
.y4_c00399{bottom:716.200020pt;}
.y3_c00399{bottom:733.466686pt;}
.y2_c00399{bottom:750.733353pt;}
.y1_c00399{bottom:788.200020pt;}
.h2_c00399{height:44.470052pt;}
.h5_c00399{height:44.492188pt;}
.h4_c00399{height:52.317708pt;}
.h3_c00399{height:52.343750pt;}
.h1_c00399{height:851.333333pt;}
.h0_c00399{height:851.533333pt;}
.w0_c00399{width:570.533360pt;}
.w1_c00399{width:570.666667pt;}
.x0_c00399{left:0.000000pt;}
.x3_c00399{left:71.333333pt;}
.x2_c00399{left:72.333333pt;}
.x6_c00399{left:78.066667pt;}
.x5_c00399{left:85.466667pt;}
.x4_c00399{left:86.400000pt;}
.x7_c00399{left:107.866667pt;}
.x1_c00399{left:203.866667pt;}
.x8_c00399{left:472.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5446011b6674f39c581e4010.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00400;src:url('chunks/assets/font_4b05d7fa69ddcf82711acf93.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00400{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00400{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00400{vertical-align:0.000000px;}
.ls0_c00400{letter-spacing:0.000000px;}
.sc__c00400{text-shadow:none;}
.sc0_c00400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00400{-webkit-text-stroke:0px transparent;}
.sc0_c00400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00400{word-spacing:-15.000000px;}
.ws0_c00400{word-spacing:-12.750000px;}
.ws2_c00400{word-spacing:0.000000px;}
._c_c00400{margin-left:-30.660000px;}
._b_c00400{margin-left:-29.340000px;}
._6_c00400{margin-left:-14.460000px;}
._d_c00400{margin-left:-13.080000px;}
._7_c00400{margin-left:-12.000000px;}
._e_c00400{margin-left:-10.680000px;}
._f_c00400{margin-left:-6.000000px;}
._10_c00400{margin-left:-4.020000px;}
._11_c00400{margin-left:-2.580000px;}
._2_c00400{margin-left:-1.260000px;}
._3_c00400{width:1.440000px;}
._1_c00400{width:2.700000px;}
._0_c00400{width:4.080000px;}
._4_c00400{width:5.880000px;}
._5_c00400{width:7.080000px;}
._8_c00400{width:8.760000px;}
._9_c00400{width:9.960000px;}
._a_c00400{width:11.460000px;}
._17_c00400{width:13.080000px;}
._16_c00400{width:19.200000px;}
._18_c00400{width:22.950000px;}
._19_c00400{width:24.149979px;}
._15_c00400{width:25.740000px;}
._12_c00400{width:27.060000px;}
._13_c00400{width:28.980000px;}
._14_c00400{width:30.420000px;}
.fc1_c00400{color:transparent;}
.fc0_c00400{color:rgb(35,31,32);}
.fs1_c00400{font-size:51.000000px;}
.fs0_c00400{font-size:60.000000px;}
.y0_c00400{bottom:0.000000px;}
.y24_c00400{bottom:64.425022px;}
.y23_c00400{bottom:110.175022px;}
.y22_c00400{bottom:125.325022px;}
.y21_c00400{bottom:140.775022px;}
.y20_c00400{bottom:156.225022px;}
.y1f_c00400{bottom:171.375022px;}
.y1e_c00400{bottom:186.525022px;}
.y1d_c00400{bottom:202.350022px;}
.y1c_c00400{bottom:217.125022px;}
.y1b_c00400{bottom:232.950022px;}
.y1a_c00400{bottom:248.025022px;}
.y19_c00400{bottom:263.175022px;}
.y17_c00400{bottom:408.600022px;}
.y16_c00400{bottom:428.100022px;}
.y15_c00400{bottom:447.525022px;}
.y14_c00400{bottom:466.950022px;}
.y13_c00400{bottom:486.375022px;}
.y12_c00400{bottom:505.425022px;}
.y11_c00400{bottom:525.225022px;}
.y10_c00400{bottom:544.350022px;}
.yf_c00400{bottom:564.150022px;}
.ye_c00400{bottom:583.575022px;}
.yd_c00400{bottom:602.625022px;}
.yc_c00400{bottom:622.125022px;}
.yb_c00400{bottom:641.925022px;}
.ya_c00400{bottom:661.350022px;}
.y9_c00400{bottom:680.775022px;}
.y8_c00400{bottom:699.825022px;}
.y7_c00400{bottom:719.625022px;}
.y6_c00400{bottom:738.750022px;}
.y5_c00400{bottom:758.550022px;}
.y4_c00400{bottom:777.225022px;}
.y3_c00400{bottom:797.025022px;}
.y2_c00400{bottom:825.150022px;}
.y1_c00400{bottom:844.575022px;}
.y18_c00400{bottom:886.875022px;}
.h4_c00400{height:50.028809px;}
.h5_c00400{height:50.053711px;}
.h2_c00400{height:58.857422px;}
.h3_c00400{height:58.886719px;}
.h1_c00400{height:957.750000px;}
.h0_c00400{height:957.975000px;}
.w1_c00400{width:643.500000px;}
.w0_c00400{width:643.650000px;}
.x0_c00400{left:0.000000px;}
.x3_c00400{left:91.425000px;}
.x4_c00400{left:97.575000px;}
.x2_c00400{left:105.825000px;}
.x1_c00400{left:107.250000px;}
.x5_c00400{left:131.400000px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls0_c00400{letter-spacing:0.000000pt;}
.ws1_c00400{word-spacing:-13.333333pt;}
.ws0_c00400{word-spacing:-11.333333pt;}
.ws2_c00400{word-spacing:0.000000pt;}
._c_c00400{margin-left:-27.253333pt;}
._b_c00400{margin-left:-26.080000pt;}
._6_c00400{margin-left:-12.853333pt;}
._d_c00400{margin-left:-11.626667pt;}
._7_c00400{margin-left:-10.666667pt;}
._e_c00400{margin-left:-9.493333pt;}
._f_c00400{margin-left:-5.333333pt;}
._10_c00400{margin-left:-3.573333pt;}
._11_c00400{margin-left:-2.293333pt;}
._2_c00400{margin-left:-1.120000pt;}
._3_c00400{width:1.280000pt;}
._1_c00400{width:2.400000pt;}
._0_c00400{width:3.626667pt;}
._4_c00400{width:5.226667pt;}
._5_c00400{width:6.293333pt;}
._8_c00400{width:7.786667pt;}
._9_c00400{width:8.853333pt;}
._a_c00400{width:10.186667pt;}
._17_c00400{width:11.626667pt;}
._16_c00400{width:17.066667pt;}
._18_c00400{width:20.400000pt;}
._19_c00400{width:21.466648pt;}
._15_c00400{width:22.880000pt;}
._12_c00400{width:24.053333pt;}
._13_c00400{width:25.760000pt;}
._14_c00400{width:27.040000pt;}
.fs1_c00400{font-size:45.333333pt;}
.fs0_c00400{font-size:53.333333pt;}
.y0_c00400{bottom:0.000000pt;}
.y24_c00400{bottom:57.266686pt;}
.y23_c00400{bottom:97.933353pt;}
.y22_c00400{bottom:111.400020pt;}
.y21_c00400{bottom:125.133353pt;}
.y20_c00400{bottom:138.866686pt;}
.y1f_c00400{bottom:152.333353pt;}
.y1e_c00400{bottom:165.800020pt;}
.y1d_c00400{bottom:179.866686pt;}
.y1c_c00400{bottom:193.000020pt;}
.y1b_c00400{bottom:207.066686pt;}
.y1a_c00400{bottom:220.466686pt;}
.y19_c00400{bottom:233.933353pt;}
.y17_c00400{bottom:363.200020pt;}
.y16_c00400{bottom:380.533353pt;}
.y15_c00400{bottom:397.800020pt;}
.y14_c00400{bottom:415.066686pt;}
.y13_c00400{bottom:432.333353pt;}
.y12_c00400{bottom:449.266686pt;}
.y11_c00400{bottom:466.866686pt;}
.y10_c00400{bottom:483.866686pt;}
.yf_c00400{bottom:501.466686pt;}
.ye_c00400{bottom:518.733353pt;}
.yd_c00400{bottom:535.666686pt;}
.yc_c00400{bottom:553.000020pt;}
.yb_c00400{bottom:570.600020pt;}
.ya_c00400{bottom:587.866686pt;}
.y9_c00400{bottom:605.133353pt;}
.y8_c00400{bottom:622.066686pt;}
.y7_c00400{bottom:639.666686pt;}
.y6_c00400{bottom:656.666686pt;}
.y5_c00400{bottom:674.266686pt;}
.y4_c00400{bottom:690.866686pt;}
.y3_c00400{bottom:708.466686pt;}
.y2_c00400{bottom:733.466686pt;}
.y1_c00400{bottom:750.733353pt;}
.y18_c00400{bottom:788.333353pt;}
.h4_c00400{height:44.470052pt;}
.h5_c00400{height:44.492188pt;}
.h2_c00400{height:52.317708pt;}
.h3_c00400{height:52.343750pt;}
.h1_c00400{height:851.333333pt;}
.h0_c00400{height:851.533333pt;}
.w1_c00400{width:572.000000pt;}
.w0_c00400{width:572.133333pt;}
.x0_c00400{left:0.000000pt;}
.x3_c00400{left:81.266667pt;}
.x4_c00400{left:86.733333pt;}
.x2_c00400{left:94.066667pt;}
.x1_c00400{left:95.333333pt;}
.x5_c00400{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c0758d3ebf52a391f68edd44.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00401;src:url('chunks/assets/font_7dcdd5a6fa570efe3a902d1a.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00401{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00401{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.ls0_c00401{letter-spacing:0.000000px;}
.sc__c00401{text-shadow:none;}
.sc0_c00401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00401{-webkit-text-stroke:0px transparent;}
.sc0_c00401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00401{word-spacing:-15.000000px;}
.ws1_c00401{word-spacing:-12.750000px;}
.ws2_c00401{word-spacing:0.000000px;}
._13_c00401{margin-left:-13.730754px;}
._e_c00401{margin-left:-11.780886px;}
._d_c00401{margin-left:-10.719114px;}
._c_c00401{margin-left:-7.821054px;}
._12_c00401{margin-left:-4.438044px;}
._1_c00401{margin-left:-2.879766px;}
._2_c00401{margin-left:-1.448910px;}
._0_c00401{width:1.850994px;}
._9_c00401{width:2.865030px;}
._4_c00401{width:3.900000px;}
._5_c00401{width:5.025030px;}
._6_c00401{width:6.030060px;}
._15_c00401{width:7.725030px;}
._b_c00401{width:8.928120px;}
._14_c00401{width:10.067424px;}
._3_c00401{width:11.186730px;}
._16_c00401{width:12.196362px;}
._8_c00401{width:13.454970px;}
._7_c00401{width:16.950060px;}
._f_c00401{width:18.387138px;}
._a_c00401{width:19.517892px;}
._10_c00401{width:20.607018px;}
._11_c00401{width:22.632168px;}
._19_c00401{width:25.076496px;}
._17_c00401{width:26.276526px;}
._18_c00401{width:27.938208px;}
.fc1_c00401{color:transparent;}
.fc0_c00401{color:rgb(35,31,32);}
.fs0_c00401{font-size:51.000000px;}
.fs1_c00401{font-size:60.000000px;}
.y0_c00401{bottom:0.000000px;}
.y27_c00401{bottom:64.425022px;}
.y26_c00401{bottom:110.175022px;}
.y25_c00401{bottom:125.625022px;}
.y24_c00401{bottom:140.775022px;}
.y23_c00401{bottom:155.925022px;}
.y22_c00401{bottom:204.525022px;}
.y21_c00401{bottom:224.250022px;}
.y20_c00401{bottom:243.375022px;}
.y1f_c00401{bottom:262.800022px;}
.y1e_c00401{bottom:282.225022px;}
.y1d_c00401{bottom:301.725022px;}
.y1c_c00401{bottom:321.225022px;}
.y1b_c00401{bottom:340.575022px;}
.y1a_c00401{bottom:359.925022px;}
.y19_c00401{bottom:379.425022px;}
.y18_c00401{bottom:398.925022px;}
.y17_c00401{bottom:417.975022px;}
.y16_c00401{bottom:437.400022px;}
.y15_c00401{bottom:456.825022px;}
.y14_c00401{bottom:476.700022px;}
.y13_c00401{bottom:496.125022px;}
.y12_c00401{bottom:515.550022px;}
.y11_c00401{bottom:534.975022px;}
.y10_c00401{bottom:554.400022px;}
.yf_c00401{bottom:573.525022px;}
.ye_c00401{bottom:593.325022px;}
.yd_c00401{bottom:612.750022px;}
.yc_c00401{bottom:632.175022px;}
.yb_c00401{bottom:651.225022px;}
.ya_c00401{bottom:670.725022px;}
.y9_c00401{bottom:690.525022px;}
.y8_c00401{bottom:709.950022px;}
.y7_c00401{bottom:729.000022px;}
.y6_c00401{bottom:748.125022px;}
.y5_c00401{bottom:767.925022px;}
.y4_c00401{bottom:786.975022px;}
.y3_c00401{bottom:806.400022px;}
.y2_c00401{bottom:844.575022px;}
.y1_c00401{bottom:886.725022px;}
.h2_c00401{height:50.028809px;}
.h4_c00401{height:50.053711px;}
.h3_c00401{height:58.886719px;}
.h1_c00401{height:957.750000px;}
.h0_c00401{height:957.975000px;}
.w0_c00401{width:641.850030px;}
.w1_c00401{width:642.000000px;}
.x0_c00401{left:0.000000px;}
.x4_c00401{left:80.250000px;}
.x2_c00401{left:81.375000px;}
.x5_c00401{left:87.825000px;}
.x3_c00401{left:97.200000px;}
.x6_c00401{left:120.975000px;}
.x1_c00401{left:229.350000px;}
.x7_c00401{left:531.000000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls0_c00401{letter-spacing:0.000000pt;}
.ws0_c00401{word-spacing:-13.333333pt;}
.ws1_c00401{word-spacing:-11.333333pt;}
.ws2_c00401{word-spacing:0.000000pt;}
._13_c00401{margin-left:-12.205115pt;}
._e_c00401{margin-left:-10.471899pt;}
._d_c00401{margin-left:-9.528101pt;}
._c_c00401{margin-left:-6.952048pt;}
._12_c00401{margin-left:-3.944928pt;}
._1_c00401{margin-left:-2.559792pt;}
._2_c00401{margin-left:-1.287920pt;}
._0_c00401{width:1.645328pt;}
._9_c00401{width:2.546693pt;}
._4_c00401{width:3.466667pt;}
._5_c00401{width:4.466693pt;}
._6_c00401{width:5.360053pt;}
._15_c00401{width:6.866693pt;}
._b_c00401{width:7.936107pt;}
._14_c00401{width:8.948821pt;}
._3_c00401{width:9.943760pt;}
._16_c00401{width:10.841211pt;}
._8_c00401{width:11.959973pt;}
._7_c00401{width:15.066720pt;}
._f_c00401{width:16.344123pt;}
._a_c00401{width:17.349237pt;}
._10_c00401{width:18.317349pt;}
._11_c00401{width:20.117483pt;}
._19_c00401{width:22.290219pt;}
._17_c00401{width:23.356912pt;}
._18_c00401{width:24.833963pt;}
.fs0_c00401{font-size:45.333333pt;}
.fs1_c00401{font-size:53.333333pt;}
.y0_c00401{bottom:0.000000pt;}
.y27_c00401{bottom:57.266686pt;}
.y26_c00401{bottom:97.933353pt;}
.y25_c00401{bottom:111.666686pt;}
.y24_c00401{bottom:125.133353pt;}
.y23_c00401{bottom:138.600020pt;}
.y22_c00401{bottom:181.800020pt;}
.y21_c00401{bottom:199.333353pt;}
.y20_c00401{bottom:216.333353pt;}
.y1f_c00401{bottom:233.600020pt;}
.y1e_c00401{bottom:250.866686pt;}
.y1d_c00401{bottom:268.200020pt;}
.y1c_c00401{bottom:285.533353pt;}
.y1b_c00401{bottom:302.733353pt;}
.y1a_c00401{bottom:319.933353pt;}
.y19_c00401{bottom:337.266686pt;}
.y18_c00401{bottom:354.600020pt;}
.y17_c00401{bottom:371.533353pt;}
.y16_c00401{bottom:388.800020pt;}
.y15_c00401{bottom:406.066686pt;}
.y14_c00401{bottom:423.733353pt;}
.y13_c00401{bottom:441.000020pt;}
.y12_c00401{bottom:458.266686pt;}
.y11_c00401{bottom:475.533353pt;}
.y10_c00401{bottom:492.800020pt;}
.yf_c00401{bottom:509.800020pt;}
.ye_c00401{bottom:527.400020pt;}
.yd_c00401{bottom:544.666686pt;}
.yc_c00401{bottom:561.933353pt;}
.yb_c00401{bottom:578.866686pt;}
.ya_c00401{bottom:596.200020pt;}
.y9_c00401{bottom:613.800020pt;}
.y8_c00401{bottom:631.066686pt;}
.y7_c00401{bottom:648.000020pt;}
.y6_c00401{bottom:665.000020pt;}
.y5_c00401{bottom:682.600020pt;}
.y4_c00401{bottom:699.533353pt;}
.y3_c00401{bottom:716.800020pt;}
.y2_c00401{bottom:750.733353pt;}
.y1_c00401{bottom:788.200020pt;}
.h2_c00401{height:44.470052pt;}
.h4_c00401{height:44.492188pt;}
.h3_c00401{height:52.343750pt;}
.h1_c00401{height:851.333333pt;}
.h0_c00401{height:851.533333pt;}
.w0_c00401{width:570.533360pt;}
.w1_c00401{width:570.666667pt;}
.x0_c00401{left:0.000000pt;}
.x4_c00401{left:71.333333pt;}
.x2_c00401{left:72.333333pt;}
.x5_c00401{left:78.066667pt;}
.x3_c00401{left:86.400000pt;}
.x6_c00401{left:107.533333pt;}
.x1_c00401{left:203.866667pt;}
.x7_c00401{left:472.000000pt;}
}





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

.ir_c00402:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00402{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00402;src:url('chunks/assets/font_63648d0ac9922380fd759247.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00402;src:url('chunks/assets/font_507bd44896c2316d06deff24.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00402{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_c00402{vertical-align:0.000000px;}
.ls0_c00402{letter-spacing:0.000000px;}
.sc__c00402{text-shadow:none;}
.sc0_c00402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00402{-webkit-text-stroke:0px transparent;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00402{word-spacing:-15.000000px;}
.ws1_c00402{word-spacing:-12.750000px;}
.ws2_c00402{word-spacing:0.000000px;}
._11_c00402{margin-left:-13.506198px;}
._7_c00402{margin-left:-12.279009px;}
._15_c00402{margin-left:-10.913826px;}
._c_c00402{margin-left:-9.573201px;}
._14_c00402{margin-left:-8.550090px;}
._13_c00402{margin-left:-7.446180px;}
._19_c00402{margin-left:-5.034006px;}
._1_c00402{margin-left:-3.300006px;}
._0_c00402{margin-left:-1.760979px;}
._2_c00402{width:1.839009px;}
._3_c00402{width:3.320967px;}
._16_c00402{width:4.920204px;}
._10_c00402{width:5.933862px;}
._6_c00402{width:7.031892px;}
._4_c00402{width:8.102973px;}
._5_c00402{width:9.440991px;}
._12_c00402{width:10.481982px;}
._8_c00402{width:11.937027px;}
._9_c00402{width:13.400991px;}
._18_c00402{width:14.652057px;}
._a_c00402{width:16.082973px;}
._b_c00402{width:17.300775px;}
._e_c00402{width:18.461958px;}
._f_c00402{width:20.400000px;}
._d_c00402{width:21.485880px;}
._1a_c00402{width:22.910985px;}
._17_c00402{width:24.893916px;}
.fc1_c00402{color:transparent;}
.fc0_c00402{color:rgb(35,31,32);}
.fs0_c00402{font-size:51.000000px;}
.fs1_c00402{font-size:60.000000px;}
.y0_c00402{bottom:0.000000px;}
.y25_c00402{bottom:64.800022px;}
.y24_c00402{bottom:110.175022px;}
.y23_c00402{bottom:125.325022px;}
.y22_c00402{bottom:141.000022px;}
.y21_c00402{bottom:155.925022px;}
.y20_c00402{bottom:171.750022px;}
.y1f_c00402{bottom:186.825022px;}
.y1e_c00402{bottom:201.975022px;}
.y1d_c00402{bottom:217.425022px;}
.y1c_c00402{bottom:232.575022px;}
.y1b_c00402{bottom:247.725022px;}
.y1a_c00402{bottom:263.175022px;}
.y19_c00402{bottom:309.225022px;}
.y18_c00402{bottom:328.725022px;}
.y17_c00402{bottom:347.775022px;}
.y16_c00402{bottom:367.575022px;}
.y15_c00402{bottom:387.000022px;}
.y14_c00402{bottom:406.125022px;}
.y13_c00402{bottom:425.925022px;}
.y12_c00402{bottom:466.950022px;}
.y11_c00402{bottom:526.350022px;}
.y10_c00402{bottom:545.775022px;}
.yf_c00402{bottom:565.200022px;}
.ye_c00402{bottom:584.625022px;}
.yd_c00402{bottom:604.125022px;}
.yc_c00402{bottom:623.550022px;}
.yb_c00402{bottom:642.975022px;}
.ya_c00402{bottom:671.775022px;}
.y9_c00402{bottom:691.200022px;}
.y8_c00402{bottom:719.325022px;}
.y7_c00402{bottom:738.750022px;}
.y6_c00402{bottom:758.175022px;}
.y5_c00402{bottom:777.225022px;}
.y4_c00402{bottom:805.725022px;}
.y3_c00402{bottom:825.150022px;}
.y2_c00402{bottom:844.950022px;}
.y1_c00402{bottom:886.875022px;}
.h2_c00402{height:50.028809px;}
.h5_c00402{height:50.053711px;}
.h4_c00402{height:58.857422px;}
.h3_c00402{height:58.886719px;}
.h1_c00402{height:957.750000px;}
.h0_c00402{height:957.975000px;}
.w1_c00402{width:643.500000px;}
.w0_c00402{width:643.650000px;}
.x0_c00402{left:0.000000px;}
.x1_c00402{left:90.750000px;}
.x5_c00402{left:97.575000px;}
.x3_c00402{left:104.775000px;}
.x2_c00402{left:106.200000px;}
.x4_c00402{left:107.250000px;}
.x6_c00402{left:131.025000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls0_c00402{letter-spacing:0.000000pt;}
.ws0_c00402{word-spacing:-13.333333pt;}
.ws1_c00402{word-spacing:-11.333333pt;}
.ws2_c00402{word-spacing:0.000000pt;}
._11_c00402{margin-left:-12.005509pt;}
._7_c00402{margin-left:-10.914675pt;}
._15_c00402{margin-left:-9.701179pt;}
._c_c00402{margin-left:-8.509512pt;}
._14_c00402{margin-left:-7.600080pt;}
._13_c00402{margin-left:-6.618827pt;}
._19_c00402{margin-left:-4.474672pt;}
._1_c00402{margin-left:-2.933339pt;}
._0_c00402{margin-left:-1.565315pt;}
._2_c00402{width:1.634675pt;}
._3_c00402{width:2.951971pt;}
._16_c00402{width:4.373515pt;}
._10_c00402{width:5.274544pt;}
._6_c00402{width:6.250571pt;}
._4_c00402{width:7.202643pt;}
._5_c00402{width:8.391992pt;}
._12_c00402{width:9.317317pt;}
._8_c00402{width:10.610691pt;}
._9_c00402{width:11.911992pt;}
._18_c00402{width:13.024051pt;}
._a_c00402{width:14.295976pt;}
._b_c00402{width:15.378467pt;}
._e_c00402{width:16.410629pt;}
._f_c00402{width:18.133333pt;}
._d_c00402{width:19.098560pt;}
._1a_c00402{width:20.365320pt;}
._17_c00402{width:22.127925pt;}
.fs0_c00402{font-size:45.333333pt;}
.fs1_c00402{font-size:53.333333pt;}
.y0_c00402{bottom:0.000000pt;}
.y25_c00402{bottom:57.600020pt;}
.y24_c00402{bottom:97.933353pt;}
.y23_c00402{bottom:111.400020pt;}
.y22_c00402{bottom:125.333353pt;}
.y21_c00402{bottom:138.600020pt;}
.y20_c00402{bottom:152.666686pt;}
.y1f_c00402{bottom:166.066686pt;}
.y1e_c00402{bottom:179.533353pt;}
.y1d_c00402{bottom:193.266686pt;}
.y1c_c00402{bottom:206.733353pt;}
.y1b_c00402{bottom:220.200020pt;}
.y1a_c00402{bottom:233.933353pt;}
.y19_c00402{bottom:274.866686pt;}
.y18_c00402{bottom:292.200020pt;}
.y17_c00402{bottom:309.133353pt;}
.y16_c00402{bottom:326.733353pt;}
.y15_c00402{bottom:344.000020pt;}
.y14_c00402{bottom:361.000020pt;}
.y13_c00402{bottom:378.600020pt;}
.y12_c00402{bottom:415.066686pt;}
.y11_c00402{bottom:467.866686pt;}
.y10_c00402{bottom:485.133353pt;}
.yf_c00402{bottom:502.400020pt;}
.ye_c00402{bottom:519.666686pt;}
.yd_c00402{bottom:537.000020pt;}
.yc_c00402{bottom:554.266686pt;}
.yb_c00402{bottom:571.533353pt;}
.ya_c00402{bottom:597.133353pt;}
.y9_c00402{bottom:614.400020pt;}
.y8_c00402{bottom:639.400020pt;}
.y7_c00402{bottom:656.666686pt;}
.y6_c00402{bottom:673.933353pt;}
.y5_c00402{bottom:690.866686pt;}
.y4_c00402{bottom:716.200020pt;}
.y3_c00402{bottom:733.466686pt;}
.y2_c00402{bottom:751.066686pt;}
.y1_c00402{bottom:788.333353pt;}
.h2_c00402{height:44.470052pt;}
.h5_c00402{height:44.492188pt;}
.h4_c00402{height:52.317708pt;}
.h3_c00402{height:52.343750pt;}
.h1_c00402{height:851.333333pt;}
.h0_c00402{height:851.533333pt;}
.w1_c00402{width:572.000000pt;}
.w0_c00402{width:572.133333pt;}
.x0_c00402{left:0.000000pt;}
.x1_c00402{left:80.666667pt;}
.x5_c00402{left:86.733333pt;}
.x3_c00402{left:93.133333pt;}
.x2_c00402{left:94.400000pt;}
.x4_c00402{left:95.333333pt;}
.x6_c00402{left:116.466667pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00403 {
      width: 900px;
      min-height: 280px;
      margin: 16px auto;
      background: #fff;
      border: 1px solid #e5e7eb;
      box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
      position: relative;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    .scieee-page-failed_c00403 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00403 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00403 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3843d1c40e06040ae37bd73f.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00404;src:url('chunks/assets/font_d3da7bf008460f77e3cac228.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00404{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_c00404{vertical-align:0.000000px;}
.ls0_c00404{letter-spacing:0.000000px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00404{word-spacing:-15.000000px;}
.ws1_c00404{word-spacing:0.000000px;}
._14_c00404{margin-left:-16.178907px;}
._15_c00404{margin-left:-12.614367px;}
._12_c00404{margin-left:-11.472336px;}
._11_c00404{margin-left:-10.127664px;}
._e_c00404{margin-left:-9.005976px;}
._19_c00404{margin-left:-7.928931px;}
._b_c00404{margin-left:-5.937051px;}
._d_c00404{margin-left:-4.781982px;}
._1_c00404{margin-left:-3.300006px;}
._0_c00404{margin-left:-1.760979px;}
._2_c00404{width:1.839009px;}
._3_c00404{width:3.320967px;}
._a_c00404{width:4.952865px;}
._9_c00404{width:6.240024px;}
._6_c00404{width:7.922973px;}
._10_c00404{width:9.251754px;}
._7_c00404{width:10.401015px;}
._8_c00404{width:12.062973px;}
._5_c00404{width:13.560000px;}
._4_c00404{width:16.589910px;}
._c_c00404{width:17.666937px;}
._16_c00404{width:18.777231px;}
._f_c00404{width:19.820979px;}
._13_c00404{width:21.906150px;}
._17_c00404{width:25.610976px;}
._18_c00404{width:27.593907px;}
.fc1_c00404{color:transparent;}
.fc0_c00404{color:rgb(35,31,32);}
.fs0_c00404{font-size:51.000000px;}
.fs1_c00404{font-size:60.000000px;}
.y0_c00404{bottom:0.000000px;}
.y26_c00404{bottom:64.800022px;}
.y25_c00404{bottom:110.175022px;}
.y24_c00404{bottom:125.325022px;}
.y23_c00404{bottom:140.775022px;}
.y22_c00404{bottom:155.925022px;}
.y21_c00404{bottom:171.375022px;}
.y20_c00404{bottom:186.525022px;}
.y1f_c00404{bottom:201.975022px;}
.y1e_c00404{bottom:242.325022px;}
.y1d_c00404{bottom:261.750022px;}
.y1c_c00404{bottom:281.175022px;}
.y1b_c00404{bottom:300.600022px;}
.y1a_c00404{bottom:319.350022px;}
.y19_c00404{bottom:338.775022px;}
.y18_c00404{bottom:358.575022px;}
.y17_c00404{bottom:377.625022px;}
.y16_c00404{bottom:397.125022px;}
.y15_c00404{bottom:416.925022px;}
.y14_c00404{bottom:436.350022px;}
.y13_c00404{bottom:455.400022px;}
.y12_c00404{bottom:475.200022px;}
.y11_c00404{bottom:494.625022px;}
.y10_c00404{bottom:513.750022px;}
.yf_c00404{bottom:533.175022px;}
.ye_c00404{bottom:552.600022px;}
.yd_c00404{bottom:572.400022px;}
.yc_c00404{bottom:591.525022px;}
.yb_c00404{bottom:610.950022px;}
.ya_c00404{bottom:630.375022px;}
.y9_c00404{bottom:650.175022px;}
.y8_c00404{bottom:669.600022px;}
.y7_c00404{bottom:689.025022px;}
.y6_c00404{bottom:728.325022px;}
.y5_c00404{bottom:786.225022px;}
.y4_c00404{bottom:806.025022px;}
.y3_c00404{bottom:825.150022px;}
.y2_c00404{bottom:844.950022px;}
.y1_c00404{bottom:886.875022px;}
.h2_c00404{height:50.028809px;}
.h4_c00404{height:50.053711px;}
.h3_c00404{height:58.886719px;}
.h1_c00404{height:957.750000px;}
.h0_c00404{height:957.975000px;}
.w1_c00404{width:643.500000px;}
.w0_c00404{width:643.650000px;}
.x0_c00404{left:0.000000px;}
.x1_c00404{left:90.750000px;}
.x3_c00404{left:97.575000px;}
.x2_c00404{left:106.200000px;}
.x4_c00404{left:131.400000px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls0_c00404{letter-spacing:0.000000pt;}
.ws0_c00404{word-spacing:-13.333333pt;}
.ws1_c00404{word-spacing:0.000000pt;}
._14_c00404{margin-left:-14.381251pt;}
._15_c00404{margin-left:-11.212771pt;}
._12_c00404{margin-left:-10.197632pt;}
._11_c00404{margin-left:-9.002368pt;}
._e_c00404{margin-left:-8.005312pt;}
._19_c00404{margin-left:-7.047939pt;}
._b_c00404{margin-left:-5.277379pt;}
._d_c00404{margin-left:-4.250651pt;}
._1_c00404{margin-left:-2.933339pt;}
._0_c00404{margin-left:-1.565315pt;}
._2_c00404{width:1.634675pt;}
._3_c00404{width:2.951971pt;}
._a_c00404{width:4.402547pt;}
._9_c00404{width:5.546688pt;}
._6_c00404{width:7.042643pt;}
._10_c00404{width:8.223781pt;}
._7_c00404{width:9.245347pt;}
._8_c00404{width:10.722643pt;}
._5_c00404{width:12.053333pt;}
._4_c00404{width:14.746587pt;}
._c_c00404{width:15.703944pt;}
._16_c00404{width:16.690872pt;}
._f_c00404{width:17.618648pt;}
._13_c00404{width:19.472133pt;}
._17_c00404{width:22.765312pt;}
._18_c00404{width:24.527917pt;}
.fs0_c00404{font-size:45.333333pt;}
.fs1_c00404{font-size:53.333333pt;}
.y0_c00404{bottom:0.000000pt;}
.y26_c00404{bottom:57.600020pt;}
.y25_c00404{bottom:97.933353pt;}
.y24_c00404{bottom:111.400020pt;}
.y23_c00404{bottom:125.133353pt;}
.y22_c00404{bottom:138.600020pt;}
.y21_c00404{bottom:152.333353pt;}
.y20_c00404{bottom:165.800020pt;}
.y1f_c00404{bottom:179.533353pt;}
.y1e_c00404{bottom:215.400020pt;}
.y1d_c00404{bottom:232.666686pt;}
.y1c_c00404{bottom:249.933353pt;}
.y1b_c00404{bottom:267.200020pt;}
.y1a_c00404{bottom:283.866686pt;}
.y19_c00404{bottom:301.133353pt;}
.y18_c00404{bottom:318.733353pt;}
.y17_c00404{bottom:335.666686pt;}
.y16_c00404{bottom:353.000020pt;}
.y15_c00404{bottom:370.600020pt;}
.y14_c00404{bottom:387.866686pt;}
.y13_c00404{bottom:404.800020pt;}
.y12_c00404{bottom:422.400020pt;}
.y11_c00404{bottom:439.666686pt;}
.y10_c00404{bottom:456.666686pt;}
.yf_c00404{bottom:473.933353pt;}
.ye_c00404{bottom:491.200020pt;}
.yd_c00404{bottom:508.800020pt;}
.yc_c00404{bottom:525.800020pt;}
.yb_c00404{bottom:543.066686pt;}
.ya_c00404{bottom:560.333353pt;}
.y9_c00404{bottom:577.933353pt;}
.y8_c00404{bottom:595.200020pt;}
.y7_c00404{bottom:612.466686pt;}
.y6_c00404{bottom:647.400020pt;}
.y5_c00404{bottom:698.866686pt;}
.y4_c00404{bottom:716.466686pt;}
.y3_c00404{bottom:733.466686pt;}
.y2_c00404{bottom:751.066686pt;}
.y1_c00404{bottom:788.333353pt;}
.h2_c00404{height:44.470052pt;}
.h4_c00404{height:44.492188pt;}
.h3_c00404{height:52.343750pt;}
.h1_c00404{height:851.333333pt;}
.h0_c00404{height:851.533333pt;}
.w1_c00404{width:572.000000pt;}
.w0_c00404{width:572.133333pt;}
.x0_c00404{left:0.000000pt;}
.x1_c00404{left:80.666667pt;}
.x3_c00404{left:86.733333pt;}
.x2_c00404{left:94.400000pt;}
.x4_c00404{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_db852b07424f77250c1d70c0.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00405;src:url('chunks/assets/font_91d883b786841d486a497412.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00405{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00405{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.ls0_c00405{letter-spacing:0.000000px;}
.sc__c00405{text-shadow:none;}
.sc0_c00405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00405{-webkit-text-stroke:0px transparent;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00405{word-spacing:-15.000000px;}
.ws0_c00405{word-spacing:-12.750000px;}
.ws2_c00405{word-spacing:0.000000px;}
._11_c00405{margin-left:-14.802180px;}
._9_c00405{margin-left:-11.985432px;}
._a_c00405{margin-left:-10.514568px;}
._10_c00405{margin-left:-8.718288px;}
._8_c00405{margin-left:-6.387018px;}
._7_c00405{margin-left:-4.414026px;}
._1_c00405{margin-left:-2.879766px;}
._2_c00405{margin-left:-1.448910px;}
._0_c00405{width:1.850994px;}
._5_c00405{width:3.627018px;}
._4_c00405{width:5.571282px;}
._12_c00405{width:6.576600px;}
._3_c00405{width:7.706730px;}
._6_c00405{width:9.471186px;}
._d_c00405{width:11.280000px;}
._b_c00405{width:13.056024px;}
._18_c00405{width:14.285634px;}
._c_c00405{width:16.583904px;}
._f_c00405{width:17.594970px;}
._e_c00405{width:19.020000px;}
._13_c00405{width:20.345760px;}
._16_c00405{width:22.022622px;}
._14_c00405{width:23.442612px;}
._15_c00405{width:24.495090px;}
._17_c00405{width:27.687018px;}
.fc1_c00405{color:transparent;}
.fc0_c00405{color:rgb(35,31,32);}
.fs0_c00405{font-size:51.000000px;}
.fs1_c00405{font-size:60.000000px;}
.y0_c00405{bottom:0.000000px;}
.y23_c00405{bottom:64.425022px;}
.y22_c00405{bottom:110.175022px;}
.y21_c00405{bottom:125.625022px;}
.y20_c00405{bottom:140.775022px;}
.y1f_c00405{bottom:156.225022px;}
.y1e_c00405{bottom:171.375022px;}
.y1d_c00405{bottom:186.525022px;}
.y1c_c00405{bottom:201.975022px;}
.y1b_c00405{bottom:217.125022px;}
.y1a_c00405{bottom:257.025022px;}
.y19_c00405{bottom:276.825022px;}
.y18_c00405{bottom:295.950022px;}
.y17_c00405{bottom:315.750022px;}
.y16_c00405{bottom:335.175022px;}
.y15_c00405{bottom:354.600022px;}
.y14_c00405{bottom:373.725022px;}
.y13_c00405{bottom:393.150022px;}
.y12_c00405{bottom:412.950022px;}
.y11_c00405{bottom:452.925022px;}
.y10_c00405{bottom:511.950022px;}
.yf_c00405{bottom:531.750022px;}
.ye_c00405{bottom:551.175022px;}
.yd_c00405{bottom:570.675022px;}
.yc_c00405{bottom:590.100022px;}
.yb_c00405{bottom:609.525022px;}
.ya_c00405{bottom:628.950022px;}
.y9_c00405{bottom:648.375022px;}
.y8_c00405{bottom:667.425022px;}
.y7_c00405{bottom:707.775022px;}
.y6_c00405{bottom:767.175022px;}
.y5_c00405{bottom:786.600022px;}
.y4_c00405{bottom:806.025022px;}
.y3_c00405{bottom:825.150022px;}
.y2_c00405{bottom:844.575022px;}
.y1_c00405{bottom:886.725022px;}
.h2_c00405{height:50.028809px;}
.h4_c00405{height:50.053711px;}
.h3_c00405{height:58.886719px;}
.h1_c00405{height:957.750000px;}
.h0_c00405{height:957.975000px;}
.w0_c00405{width:641.850030px;}
.w1_c00405{width:642.000000px;}
.x0_c00405{left:0.000000px;}
.x3_c00405{left:80.250000px;}
.x2_c00405{left:81.375000px;}
.x4_c00405{left:87.825000px;}
.x5_c00405{left:120.975000px;}
.x1_c00405{left:229.350000px;}
.x6_c00405{left:531.000000px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls0_c00405{letter-spacing:0.000000pt;}
.ws1_c00405{word-spacing:-13.333333pt;}
.ws0_c00405{word-spacing:-11.333333pt;}
.ws2_c00405{word-spacing:0.000000pt;}
._11_c00405{margin-left:-13.157493pt;}
._9_c00405{margin-left:-10.653717pt;}
._a_c00405{margin-left:-9.346283pt;}
._10_c00405{margin-left:-7.749589pt;}
._8_c00405{margin-left:-5.677349pt;}
._7_c00405{margin-left:-3.923579pt;}
._1_c00405{margin-left:-2.559792pt;}
._2_c00405{margin-left:-1.287920pt;}
._0_c00405{width:1.645328pt;}
._5_c00405{width:3.224016pt;}
._4_c00405{width:4.952251pt;}
._12_c00405{width:5.845867pt;}
._3_c00405{width:6.850427pt;}
._6_c00405{width:8.418832pt;}
._d_c00405{width:10.026667pt;}
._b_c00405{width:11.605355pt;}
._18_c00405{width:12.698341pt;}
._c_c00405{width:14.741248pt;}
._f_c00405{width:15.639973pt;}
._e_c00405{width:16.906667pt;}
._13_c00405{width:18.085120pt;}
._16_c00405{width:19.575664pt;}
._14_c00405{width:20.837877pt;}
._15_c00405{width:21.773413pt;}
._17_c00405{width:24.610683pt;}
.fs0_c00405{font-size:45.333333pt;}
.fs1_c00405{font-size:53.333333pt;}
.y0_c00405{bottom:0.000000pt;}
.y23_c00405{bottom:57.266686pt;}
.y22_c00405{bottom:97.933353pt;}
.y21_c00405{bottom:111.666686pt;}
.y20_c00405{bottom:125.133353pt;}
.y1f_c00405{bottom:138.866686pt;}
.y1e_c00405{bottom:152.333353pt;}
.y1d_c00405{bottom:165.800020pt;}
.y1c_c00405{bottom:179.533353pt;}
.y1b_c00405{bottom:193.000020pt;}
.y1a_c00405{bottom:228.466686pt;}
.y19_c00405{bottom:246.066686pt;}
.y18_c00405{bottom:263.066686pt;}
.y17_c00405{bottom:280.666686pt;}
.y16_c00405{bottom:297.933353pt;}
.y15_c00405{bottom:315.200020pt;}
.y14_c00405{bottom:332.200020pt;}
.y13_c00405{bottom:349.466686pt;}
.y12_c00405{bottom:367.066686pt;}
.y11_c00405{bottom:402.600020pt;}
.y10_c00405{bottom:455.066686pt;}
.yf_c00405{bottom:472.666686pt;}
.ye_c00405{bottom:489.933353pt;}
.yd_c00405{bottom:507.266686pt;}
.yc_c00405{bottom:524.533353pt;}
.yb_c00405{bottom:541.800020pt;}
.ya_c00405{bottom:559.066686pt;}
.y9_c00405{bottom:576.333353pt;}
.y8_c00405{bottom:593.266686pt;}
.y7_c00405{bottom:629.133353pt;}
.y6_c00405{bottom:681.933353pt;}
.y5_c00405{bottom:699.200020pt;}
.y4_c00405{bottom:716.466686pt;}
.y3_c00405{bottom:733.466686pt;}
.y2_c00405{bottom:750.733353pt;}
.y1_c00405{bottom:788.200020pt;}
.h2_c00405{height:44.470052pt;}
.h4_c00405{height:44.492188pt;}
.h3_c00405{height:52.343750pt;}
.h1_c00405{height:851.333333pt;}
.h0_c00405{height:851.533333pt;}
.w0_c00405{width:570.533360pt;}
.w1_c00405{width:570.666667pt;}
.x0_c00405{left:0.000000pt;}
.x3_c00405{left:71.333333pt;}
.x2_c00405{left:72.333333pt;}
.x4_c00405{left:78.066667pt;}
.x5_c00405{left:107.533333pt;}
.x1_c00405{left:203.866667pt;}
.x6_c00405{left:472.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0134d0e64d74ba0935a3faa2.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00406;src:url('chunks/assets/font_3843d1c40e06040ae37bd73f.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00406{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.ls0_c00406{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00406{word-spacing:0.000000px;}
._5_c00406{margin-left:-16.500000px;}
._19_c00406{margin-left:-14.880000px;}
._17_c00406{margin-left:-13.860000px;}
._16_c00406{margin-left:-12.540000px;}
._12_c00406{margin-left:-9.840000px;}
._14_c00406{margin-left:-7.740000px;}
._4_c00406{margin-left:-6.660000px;}
._0_c00406{margin-left:-5.400000px;}
._1d_c00406{margin-left:-4.320000px;}
._2_c00406{margin-left:-3.300000px;}
._c_c00406{margin-left:-2.160000px;}
._8_c00406{margin-left:-1.080000px;}
._7_c00406{width:1.680000px;}
._18_c00406{width:2.700000px;}
._a_c00406{width:3.720000px;}
._13_c00406{width:4.800000px;}
._b_c00406{width:6.600000px;}
._6_c00406{width:8.100000px;}
._9_c00406{width:9.720000px;}
._15_c00406{width:11.280000px;}
._3_c00406{width:12.300000px;}
._1_c00406{width:13.800000px;}
._f_c00406{width:16.680000px;}
._11_c00406{width:18.000000px;}
._d_c00406{width:19.920000px;}
._e_c00406{width:21.480000px;}
._10_c00406{width:23.700000px;}
._1e_c00406{width:25.740000px;}
._1f_c00406{width:27.029991px;}
._1a_c00406{width:28.920000px;}
._1b_c00406{width:30.420000px;}
._1c_c00406{width:32.340000px;}
.fc1_c00406{color:transparent;}
.fc0_c00406{color:rgb(35,31,32);}
.fs1_c00406{font-size:51.000000px;}
.fs0_c00406{font-size:60.000000px;}
.y0_c00406{bottom:0.000000px;}
.y28_c00406{bottom:64.425022px;}
.y27_c00406{bottom:110.550022px;}
.y26_c00406{bottom:125.325022px;}
.y25_c00406{bottom:140.775022px;}
.y24_c00406{bottom:155.550022px;}
.y23_c00406{bottom:171.000022px;}
.y21_c00406{bottom:223.200022px;}
.y20_c00406{bottom:243.000022px;}
.y1f_c00406{bottom:262.125022px;}
.y1e_c00406{bottom:281.925022px;}
.y1d_c00406{bottom:300.975022px;}
.y1c_c00406{bottom:320.475022px;}
.y1b_c00406{bottom:339.900022px;}
.y1a_c00406{bottom:359.325022px;}
.y19_c00406{bottom:378.750022px;}
.y18_c00406{bottom:397.800022px;}
.y17_c00406{bottom:417.300022px;}
.y16_c00406{bottom:436.725022px;}
.y15_c00406{bottom:456.150022px;}
.y14_c00406{bottom:475.575022px;}
.y13_c00406{bottom:495.000022px;}
.y12_c00406{bottom:514.800022px;}
.y11_c00406{bottom:533.925022px;}
.y10_c00406{bottom:553.725022px;}
.yf_c00406{bottom:572.850022px;}
.ye_c00406{bottom:592.275022px;}
.yd_c00406{bottom:611.700022px;}
.yc_c00406{bottom:631.125022px;}
.yb_c00406{bottom:650.550022px;}
.ya_c00406{bottom:669.975022px;}
.y9_c00406{bottom:689.400022px;}
.y8_c00406{bottom:709.200022px;}
.y7_c00406{bottom:728.325022px;}
.y6_c00406{bottom:747.750022px;}
.y5_c00406{bottom:767.550022px;}
.y4_c00406{bottom:786.600022px;}
.y3_c00406{bottom:805.725022px;}
.y2_c00406{bottom:825.150022px;}
.y1_c00406{bottom:844.575022px;}
.y22_c00406{bottom:886.875022px;}
.h3_c00406{height:50.028809px;}
.h4_c00406{height:50.053711px;}
.h2_c00406{height:58.886719px;}
.h1_c00406{height:957.750000px;}
.h0_c00406{height:957.975000px;}
.w1_c00406{width:643.500000px;}
.w0_c00406{width:643.650000px;}
.x0_c00406{left:0.000000px;}
.x1_c00406{left:91.050000px;}
.x3_c00406{left:97.575000px;}
.x2_c00406{left:106.950000px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls0_c00406{letter-spacing:0.000000pt;}
.ws0_c00406{word-spacing:-13.333333pt;}
.ws1_c00406{word-spacing:0.000000pt;}
._5_c00406{margin-left:-14.666667pt;}
._19_c00406{margin-left:-13.226667pt;}
._17_c00406{margin-left:-12.320000pt;}
._16_c00406{margin-left:-11.146667pt;}
._12_c00406{margin-left:-8.746667pt;}
._14_c00406{margin-left:-6.880000pt;}
._4_c00406{margin-left:-5.920000pt;}
._0_c00406{margin-left:-4.800000pt;}
._1d_c00406{margin-left:-3.840000pt;}
._2_c00406{margin-left:-2.933333pt;}
._c_c00406{margin-left:-1.920000pt;}
._8_c00406{margin-left:-0.960000pt;}
._7_c00406{width:1.493333pt;}
._18_c00406{width:2.400000pt;}
._a_c00406{width:3.306667pt;}
._13_c00406{width:4.266667pt;}
._b_c00406{width:5.866667pt;}
._6_c00406{width:7.200000pt;}
._9_c00406{width:8.640000pt;}
._15_c00406{width:10.026667pt;}
._3_c00406{width:10.933333pt;}
._1_c00406{width:12.266667pt;}
._f_c00406{width:14.826667pt;}
._11_c00406{width:16.000000pt;}
._d_c00406{width:17.706667pt;}
._e_c00406{width:19.093333pt;}
._10_c00406{width:21.066667pt;}
._1e_c00406{width:22.880000pt;}
._1f_c00406{width:24.026659pt;}
._1a_c00406{width:25.706667pt;}
._1b_c00406{width:27.040000pt;}
._1c_c00406{width:28.746667pt;}
.fs1_c00406{font-size:45.333333pt;}
.fs0_c00406{font-size:53.333333pt;}
.y0_c00406{bottom:0.000000pt;}
.y28_c00406{bottom:57.266686pt;}
.y27_c00406{bottom:98.266686pt;}
.y26_c00406{bottom:111.400020pt;}
.y25_c00406{bottom:125.133353pt;}
.y24_c00406{bottom:138.266686pt;}
.y23_c00406{bottom:152.000020pt;}
.y21_c00406{bottom:198.400020pt;}
.y20_c00406{bottom:216.000020pt;}
.y1f_c00406{bottom:233.000020pt;}
.y1e_c00406{bottom:250.600020pt;}
.y1d_c00406{bottom:267.533353pt;}
.y1c_c00406{bottom:284.866686pt;}
.y1b_c00406{bottom:302.133353pt;}
.y1a_c00406{bottom:319.400020pt;}
.y19_c00406{bottom:336.666686pt;}
.y18_c00406{bottom:353.600020pt;}
.y17_c00406{bottom:370.933353pt;}
.y16_c00406{bottom:388.200020pt;}
.y15_c00406{bottom:405.466686pt;}
.y14_c00406{bottom:422.733353pt;}
.y13_c00406{bottom:440.000020pt;}
.y12_c00406{bottom:457.600020pt;}
.y11_c00406{bottom:474.600020pt;}
.y10_c00406{bottom:492.200020pt;}
.yf_c00406{bottom:509.200020pt;}
.ye_c00406{bottom:526.466686pt;}
.yd_c00406{bottom:543.733353pt;}
.yc_c00406{bottom:561.000020pt;}
.yb_c00406{bottom:578.266686pt;}
.ya_c00406{bottom:595.533353pt;}
.y9_c00406{bottom:612.800020pt;}
.y8_c00406{bottom:630.400020pt;}
.y7_c00406{bottom:647.400020pt;}
.y6_c00406{bottom:664.666686pt;}
.y5_c00406{bottom:682.266686pt;}
.y4_c00406{bottom:699.200020pt;}
.y3_c00406{bottom:716.200020pt;}
.y2_c00406{bottom:733.466686pt;}
.y1_c00406{bottom:750.733353pt;}
.y22_c00406{bottom:788.333353pt;}
.h3_c00406{height:44.470052pt;}
.h4_c00406{height:44.492188pt;}
.h2_c00406{height:52.343750pt;}
.h1_c00406{height:851.333333pt;}
.h0_c00406{height:851.533333pt;}
.w1_c00406{width:572.000000pt;}
.w0_c00406{width:572.133333pt;}
.x0_c00406{left:0.000000pt;}
.x1_c00406{left:80.933333pt;}
.x3_c00406{left:86.733333pt;}
.x2_c00406{left:95.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6516d876b40a94993c768f5b.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00407;src:url('chunks/assets/font_66174f9b7355b93db8f9ced4.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.ls0_c00407{letter-spacing:0.000000px;}
.sc__c00407{text-shadow:none;}
.sc0_c00407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00407{-webkit-text-stroke:0px transparent;}
.sc0_c00407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00407{word-spacing:-15.000000px;}
.ws1_c00407{word-spacing:0.000000px;}
._d_c00407{margin-left:-13.514970px;}
._10_c00407{margin-left:-12.230994px;}
._15_c00407{margin-left:-6.903423px;}
._11_c00407{margin-left:-4.800000px;}
._1_c00407{margin-left:-2.879766px;}
._2_c00407{margin-left:-1.448910px;}
._0_c00407{width:1.850994px;}
._7_c00407{width:2.898012px;}
._6_c00407{width:4.364796px;}
._5_c00407{width:6.306084px;}
._b_c00407{width:7.562808px;}
._3_c00407{width:8.820000px;}
._c_c00407{width:9.927018px;}
._4_c00407{width:11.349006px;}
._12_c00407{width:12.501054px;}
._f_c00407{width:13.695090px;}
._e_c00407{width:16.209006px;}
._9_c00407{width:17.778012px;}
._a_c00407{width:19.158768px;}
._8_c00407{width:20.417586px;}
._13_c00407{width:22.229304px;}
._16_c00407{width:23.645640px;}
._14_c00407{width:26.276526px;}
.fc1_c00407{color:transparent;}
.fc0_c00407{color:rgb(35,31,32);}
.fs0_c00407{font-size:51.000000px;}
.fs1_c00407{font-size:60.000000px;}
.y0_c00407{bottom:0.000000px;}
.y27_c00407{bottom:64.425022px;}
.y26_c00407{bottom:110.550022px;}
.y25_c00407{bottom:125.325022px;}
.y24_c00407{bottom:140.775022px;}
.y23_c00407{bottom:155.925022px;}
.y22_c00407{bottom:205.575022px;}
.y21_c00407{bottom:225.000022px;}
.y20_c00407{bottom:244.125022px;}
.y1f_c00407{bottom:263.925022px;}
.y1e_c00407{bottom:283.350022px;}
.y1d_c00407{bottom:302.400022px;}
.y1c_c00407{bottom:321.825022px;}
.y1b_c00407{bottom:340.950022px;}
.y1a_c00407{bottom:360.750022px;}
.y19_c00407{bottom:380.175022px;}
.y18_c00407{bottom:408.225022px;}
.y17_c00407{bottom:427.725022px;}
.y16_c00407{bottom:447.150022px;}
.y15_c00407{bottom:466.575022px;}
.y14_c00407{bottom:486.000022px;}
.y13_c00407{bottom:505.425022px;}
.y12_c00407{bottom:524.925022px;}
.y11_c00407{bottom:553.725022px;}
.y10_c00407{bottom:573.150022px;}
.yf_c00407{bottom:592.200022px;}
.ye_c00407{bottom:611.625022px;}
.yd_c00407{bottom:631.425022px;}
.yc_c00407{bottom:650.550022px;}
.yb_c00407{bottom:670.350022px;}
.ya_c00407{bottom:689.400022px;}
.y9_c00407{bottom:708.825022px;}
.y8_c00407{bottom:728.625022px;}
.y7_c00407{bottom:747.750022px;}
.y6_c00407{bottom:767.550022px;}
.y5_c00407{bottom:786.600022px;}
.y4_c00407{bottom:805.725022px;}
.y3_c00407{bottom:825.150022px;}
.y2_c00407{bottom:844.950022px;}
.y1_c00407{bottom:886.725022px;}
.h2_c00407{height:50.028809px;}
.h5_c00407{height:50.053711px;}
.h4_c00407{height:58.857422px;}
.h3_c00407{height:58.886719px;}
.h1_c00407{height:957.750000px;}
.h0_c00407{height:957.975000px;}
.w0_c00407{width:641.850030px;}
.w1_c00407{width:642.000000px;}
.x0_c00407{left:0.000000px;}
.x4_c00407{left:80.250000px;}
.x3_c00407{left:81.375000px;}
.x6_c00407{left:87.825000px;}
.x5_c00407{left:95.400000px;}
.x2_c00407{left:97.200000px;}
.x1_c00407{left:229.350000px;}
.x7_c00407{left:531.000000px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls0_c00407{letter-spacing:0.000000pt;}
.ws0_c00407{word-spacing:-13.333333pt;}
.ws1_c00407{word-spacing:0.000000pt;}
._d_c00407{margin-left:-12.013307pt;}
._10_c00407{margin-left:-10.871995pt;}
._15_c00407{margin-left:-6.136376pt;}
._11_c00407{margin-left:-4.266667pt;}
._1_c00407{margin-left:-2.559792pt;}
._2_c00407{margin-left:-1.287920pt;}
._0_c00407{width:1.645328pt;}
._7_c00407{width:2.576011pt;}
._6_c00407{width:3.879819pt;}
._5_c00407{width:5.605408pt;}
._b_c00407{width:6.722496pt;}
._3_c00407{width:7.840000pt;}
._c_c00407{width:8.824016pt;}
._4_c00407{width:10.088005pt;}
._12_c00407{width:11.112048pt;}
._f_c00407{width:12.173413pt;}
._e_c00407{width:14.408005pt;}
._9_c00407{width:15.802677pt;}
._a_c00407{width:17.030016pt;}
._8_c00407{width:18.148965pt;}
._13_c00407{width:19.759381pt;}
._16_c00407{width:21.018347pt;}
._14_c00407{width:23.356912pt;}
.fs0_c00407{font-size:45.333333pt;}
.fs1_c00407{font-size:53.333333pt;}
.y0_c00407{bottom:0.000000pt;}
.y27_c00407{bottom:57.266686pt;}
.y26_c00407{bottom:98.266686pt;}
.y25_c00407{bottom:111.400020pt;}
.y24_c00407{bottom:125.133353pt;}
.y23_c00407{bottom:138.600020pt;}
.y22_c00407{bottom:182.733353pt;}
.y21_c00407{bottom:200.000020pt;}
.y20_c00407{bottom:217.000020pt;}
.y1f_c00407{bottom:234.600020pt;}
.y1e_c00407{bottom:251.866686pt;}
.y1d_c00407{bottom:268.800020pt;}
.y1c_c00407{bottom:286.066686pt;}
.y1b_c00407{bottom:303.066686pt;}
.y1a_c00407{bottom:320.666686pt;}
.y19_c00407{bottom:337.933353pt;}
.y18_c00407{bottom:362.866686pt;}
.y17_c00407{bottom:380.200020pt;}
.y16_c00407{bottom:397.466686pt;}
.y15_c00407{bottom:414.733353pt;}
.y14_c00407{bottom:432.000020pt;}
.y13_c00407{bottom:449.266686pt;}
.y12_c00407{bottom:466.600020pt;}
.y11_c00407{bottom:492.200020pt;}
.y10_c00407{bottom:509.466686pt;}
.yf_c00407{bottom:526.400020pt;}
.ye_c00407{bottom:543.666686pt;}
.yd_c00407{bottom:561.266686pt;}
.yc_c00407{bottom:578.266686pt;}
.yb_c00407{bottom:595.866686pt;}
.ya_c00407{bottom:612.800020pt;}
.y9_c00407{bottom:630.066686pt;}
.y8_c00407{bottom:647.666686pt;}
.y7_c00407{bottom:664.666686pt;}
.y6_c00407{bottom:682.266686pt;}
.y5_c00407{bottom:699.200020pt;}
.y4_c00407{bottom:716.200020pt;}
.y3_c00407{bottom:733.466686pt;}
.y2_c00407{bottom:751.066686pt;}
.y1_c00407{bottom:788.200020pt;}
.h2_c00407{height:44.470052pt;}
.h5_c00407{height:44.492188pt;}
.h4_c00407{height:52.317708pt;}
.h3_c00407{height:52.343750pt;}
.h1_c00407{height:851.333333pt;}
.h0_c00407{height:851.533333pt;}
.w0_c00407{width:570.533360pt;}
.w1_c00407{width:570.666667pt;}
.x0_c00407{left:0.000000pt;}
.x4_c00407{left:71.333333pt;}
.x3_c00407{left:72.333333pt;}
.x6_c00407{left:78.066667pt;}
.x5_c00407{left:84.800000pt;}
.x2_c00407{left:86.400000pt;}
.x1_c00407{left:203.866667pt;}
.x7_c00407{left:472.000000pt;}
}





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

.ir_c00408:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00408{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00408;src:url('chunks/assets/font_123963b99f21b7eda660ae0b.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00408;src:url('chunks/assets/font_24e0ea0a4ceb405220229e67.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00408{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_c00408{vertical-align:0.000000px;}
.ls0_c00408{letter-spacing:0.000000px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00408{word-spacing:-15.000000px;}
.ws0_c00408{word-spacing:-12.750000px;}
.ws2_c00408{word-spacing:0.000000px;}
._f_c00408{margin-left:-15.380793px;}
._14_c00408{margin-left:-14.313171px;}
._8_c00408{margin-left:-13.304955px;}
._c_c00408{margin-left:-11.804799px;}
._b_c00408{margin-left:-10.695201px;}
._10_c00408{margin-left:-7.616979px;}
._e_c00408{margin-left:-5.298018px;}
._1_c00408{margin-left:-3.300006px;}
._0_c00408{margin-left:-1.760979px;}
._2_c00408{width:1.839009px;}
._3_c00408{width:3.320967px;}
._d_c00408{width:4.400991px;}
._4_c00408{width:5.543964px;}
._6_c00408{width:7.148919px;}
._5_c00408{width:8.420991px;}
._7_c00408{width:10.302174px;}
._9_c00408{width:12.080799px;}
._a_c00408{width:13.209303px;}
._1a_c00408{width:15.465048px;}
._12_c00408{width:16.500000px;}
._15_c00408{width:17.504955px;}
._11_c00408{width:18.584955px;}
._13_c00408{width:19.604955px;}
._16_c00408{width:20.700024px;}
._17_c00408{width:21.999009px;}
._18_c00408{width:24.347928px;}
._19_c00408{width:25.610976px;}
._1b_c00408{width:27.633024px;}
.fc1_c00408{color:transparent;}
.fc0_c00408{color:rgb(35,31,32);}
.fs0_c00408{font-size:51.000000px;}
.fs1_c00408{font-size:60.000000px;}
.y0_c00408{bottom:0.000000px;}
.y26_c00408{bottom:64.425022px;}
.y25_c00408{bottom:110.175022px;}
.y24_c00408{bottom:125.325022px;}
.y23_c00408{bottom:140.775022px;}
.y22_c00408{bottom:155.925022px;}
.y21_c00408{bottom:171.750022px;}
.y20_c00408{bottom:186.825022px;}
.y1f_c00408{bottom:201.975022px;}
.y1e_c00408{bottom:217.425022px;}
.y1d_c00408{bottom:232.575022px;}
.y1c_c00408{bottom:277.575022px;}
.y1b_c00408{bottom:297.000022px;}
.y1a_c00408{bottom:316.425022px;}
.y19_c00408{bottom:336.225022px;}
.y18_c00408{bottom:355.350022px;}
.y17_c00408{bottom:374.775022px;}
.y16_c00408{bottom:394.575022px;}
.y15_c00408{bottom:414.000022px;}
.y14_c00408{bottom:433.125022px;}
.y13_c00408{bottom:452.925022px;}
.y12_c00408{bottom:472.350022px;}
.y11_c00408{bottom:491.025022px;}
.y10_c00408{bottom:510.525022px;}
.yf_c00408{bottom:530.325022px;}
.ye_c00408{bottom:549.750022px;}
.yd_c00408{bottom:568.800022px;}
.yc_c00408{bottom:588.525022px;}
.yb_c00408{bottom:608.025022px;}
.ya_c00408{bottom:627.525022px;}
.y9_c00408{bottom:668.550022px;}
.y8_c00408{bottom:728.325022px;}
.y7_c00408{bottom:747.750022px;}
.y6_c00408{bottom:767.175022px;}
.y5_c00408{bottom:786.225022px;}
.y4_c00408{bottom:805.725022px;}
.y3_c00408{bottom:825.525022px;}
.y2_c00408{bottom:844.950022px;}
.y1_c00408{bottom:886.875022px;}
.h2_c00408{height:50.028809px;}
.h4_c00408{height:50.053711px;}
.h3_c00408{height:58.886719px;}
.h1_c00408{height:957.750000px;}
.h0_c00408{height:957.975000px;}
.w1_c00408{width:643.500000px;}
.w0_c00408{width:643.650000px;}
.x0_c00408{left:0.000000px;}
.x1_c00408{left:90.750000px;}
.x3_c00408{left:97.575000px;}
.x2_c00408{left:106.200000px;}
.x4_c00408{left:131.025000px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls0_c00408{letter-spacing:0.000000pt;}
.ws1_c00408{word-spacing:-13.333333pt;}
.ws0_c00408{word-spacing:-11.333333pt;}
.ws2_c00408{word-spacing:0.000000pt;}
._f_c00408{margin-left:-13.671816pt;}
._14_c00408{margin-left:-12.722819pt;}
._8_c00408{margin-left:-11.826627pt;}
._c_c00408{margin-left:-10.493155pt;}
._b_c00408{margin-left:-9.506845pt;}
._10_c00408{margin-left:-6.770648pt;}
._e_c00408{margin-left:-4.709349pt;}
._1_c00408{margin-left:-2.933339pt;}
._0_c00408{margin-left:-1.565315pt;}
._2_c00408{width:1.634675pt;}
._3_c00408{width:2.951971pt;}
._d_c00408{width:3.911992pt;}
._4_c00408{width:4.927968pt;}
._6_c00408{width:6.354595pt;}
._5_c00408{width:7.485325pt;}
._7_c00408{width:9.157488pt;}
._9_c00408{width:10.738488pt;}
._a_c00408{width:11.741603pt;}
._1a_c00408{width:13.746709pt;}
._12_c00408{width:14.666667pt;}
._15_c00408{width:15.559960pt;}
._11_c00408{width:16.519960pt;}
._13_c00408{width:17.426627pt;}
._16_c00408{width:18.400021pt;}
._17_c00408{width:19.554675pt;}
._18_c00408{width:21.642603pt;}
._19_c00408{width:22.765312pt;}
._1b_c00408{width:24.562688pt;}
.fs0_c00408{font-size:45.333333pt;}
.fs1_c00408{font-size:53.333333pt;}
.y0_c00408{bottom:0.000000pt;}
.y26_c00408{bottom:57.266686pt;}
.y25_c00408{bottom:97.933353pt;}
.y24_c00408{bottom:111.400020pt;}
.y23_c00408{bottom:125.133353pt;}
.y22_c00408{bottom:138.600020pt;}
.y21_c00408{bottom:152.666686pt;}
.y20_c00408{bottom:166.066686pt;}
.y1f_c00408{bottom:179.533353pt;}
.y1e_c00408{bottom:193.266686pt;}
.y1d_c00408{bottom:206.733353pt;}
.y1c_c00408{bottom:246.733353pt;}
.y1b_c00408{bottom:264.000020pt;}
.y1a_c00408{bottom:281.266686pt;}
.y19_c00408{bottom:298.866686pt;}
.y18_c00408{bottom:315.866686pt;}
.y17_c00408{bottom:333.133353pt;}
.y16_c00408{bottom:350.733353pt;}
.y15_c00408{bottom:368.000020pt;}
.y14_c00408{bottom:385.000020pt;}
.y13_c00408{bottom:402.600020pt;}
.y12_c00408{bottom:419.866686pt;}
.y11_c00408{bottom:436.466686pt;}
.y10_c00408{bottom:453.800020pt;}
.yf_c00408{bottom:471.400020pt;}
.ye_c00408{bottom:488.666686pt;}
.yd_c00408{bottom:505.600020pt;}
.yc_c00408{bottom:523.133353pt;}
.yb_c00408{bottom:540.466686pt;}
.ya_c00408{bottom:557.800020pt;}
.y9_c00408{bottom:594.266686pt;}
.y8_c00408{bottom:647.400020pt;}
.y7_c00408{bottom:664.666686pt;}
.y6_c00408{bottom:681.933353pt;}
.y5_c00408{bottom:698.866686pt;}
.y4_c00408{bottom:716.200020pt;}
.y3_c00408{bottom:733.800020pt;}
.y2_c00408{bottom:751.066686pt;}
.y1_c00408{bottom:788.333353pt;}
.h2_c00408{height:44.470052pt;}
.h4_c00408{height:44.492188pt;}
.h3_c00408{height:52.343750pt;}
.h1_c00408{height:851.333333pt;}
.h0_c00408{height:851.533333pt;}
.w1_c00408{width:572.000000pt;}
.w0_c00408{width:572.133333pt;}
.x0_c00408{left:0.000000pt;}
.x1_c00408{left:80.666667pt;}
.x3_c00408{left:86.733333pt;}
.x2_c00408{left:94.400000pt;}
.x4_c00408{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb16c677c72b338f295f5a1a.woff2')format("woff");}.ff1_c00409{font-family:ff1_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:ff2_c00409;src:url('chunks/assets/font_b7c91772b5da0dcad4e0f2b4.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00409{letter-spacing:0.000000px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00409{word-spacing:-15.000000px;}
.ws1_c00409{word-spacing:0.000000px;}
._13_c00409{margin-left:-16.119288px;}
._d_c00409{margin-left:-15.015084px;}
._17_c00409{margin-left:-13.730736px;}
._e_c00409{margin-left:-12.423516px;}
._10_c00409{margin-left:-11.125740px;}
._8_c00409{margin-left:-9.831324px;}
._c_c00409{margin-left:-6.795318px;}
._6_c00409{margin-left:-4.694850px;}
._1_c00409{margin-left:-2.879766px;}
._2_c00409{margin-left:-1.448910px;}
._0_c00409{width:1.850994px;}
._a_c00409{width:3.492168px;}
._f_c00409{width:4.742736px;}
._b_c00409{width:5.894850px;}
._7_c00409{width:7.754382px;}
._12_c00409{width:9.584958px;}
._5_c00409{width:10.814850px;}
._9_c00409{width:11.931324px;}
._3_c00409{width:13.920000px;}
._4_c00409{width:16.104096px;}
._11_c00409{width:17.999784px;}
._15_c00409{width:19.145634px;}
._14_c00409{width:20.487018px;}
._16_c00409{width:21.918012px;}
._18_c00409{width:25.076496px;}
._19_c00409{width:26.276526px;}
.fc1_c00409{color:transparent;}
.fc0_c00409{color:rgb(35,31,32);}
.fs0_c00409{font-size:51.000000px;}
.fs1_c00409{font-size:60.000000px;}
.y0_c00409{bottom:0.000000px;}
.y27_c00409{bottom:64.425022px;}
.y26_c00409{bottom:109.800022px;}
.y25_c00409{bottom:125.625022px;}
.y24_c00409{bottom:166.350022px;}
.y23_c00409{bottom:186.150022px;}
.y22_c00409{bottom:205.575022px;}
.y21_c00409{bottom:225.000022px;}
.y20_c00409{bottom:244.125022px;}
.y1f_c00409{bottom:263.925022px;}
.y1e_c00409{bottom:282.975022px;}
.y1d_c00409{bottom:302.025022px;}
.y1c_c00409{bottom:330.525022px;}
.y1b_c00409{bottom:349.950022px;}
.y1a_c00409{bottom:369.375022px;}
.y19_c00409{bottom:388.800022px;}
.y18_c00409{bottom:408.225022px;}
.y17_c00409{bottom:436.725022px;}
.y16_c00409{bottom:456.150022px;}
.y15_c00409{bottom:475.575022px;}
.y14_c00409{bottom:495.000022px;}
.y13_c00409{bottom:514.425022px;}
.y12_c00409{bottom:534.225022px;}
.y11_c00409{bottom:553.725022px;}
.y10_c00409{bottom:573.150022px;}
.yf_c00409{bottom:592.575022px;}
.ye_c00409{bottom:612.000022px;}
.yd_c00409{bottom:631.425022px;}
.yc_c00409{bottom:650.925022px;}
.yb_c00409{bottom:669.975022px;}
.ya_c00409{bottom:689.775022px;}
.y9_c00409{bottom:709.200022px;}
.y8_c00409{bottom:728.325022px;}
.y7_c00409{bottom:748.125022px;}
.y6_c00409{bottom:767.175022px;}
.y5_c00409{bottom:786.600022px;}
.y4_c00409{bottom:805.725022px;}
.y3_c00409{bottom:825.525022px;}
.y2_c00409{bottom:844.575022px;}
.y1_c00409{bottom:886.725022px;}
.h2_c00409{height:50.028809px;}
.h5_c00409{height:50.053711px;}
.h4_c00409{height:58.857422px;}
.h3_c00409{height:58.886719px;}
.h1_c00409{height:957.750000px;}
.h0_c00409{height:957.975000px;}
.w0_c00409{width:641.850030px;}
.w1_c00409{width:642.000000px;}
.x0_c00409{left:0.000000px;}
.x3_c00409{left:80.250000px;}
.x2_c00409{left:81.375000px;}
.x5_c00409{left:87.825000px;}
.x4_c00409{left:97.200000px;}
.x1_c00409{left:229.350000px;}
.x6_c00409{left:531.000000px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls0_c00409{letter-spacing:0.000000pt;}
.ws0_c00409{word-spacing:-13.333333pt;}
.ws1_c00409{word-spacing:0.000000pt;}
._13_c00409{margin-left:-14.328256pt;}
._d_c00409{margin-left:-13.346741pt;}
._17_c00409{margin-left:-12.205099pt;}
._e_c00409{margin-left:-11.043125pt;}
._10_c00409{margin-left:-9.889547pt;}
._8_c00409{margin-left:-8.738955pt;}
._c_c00409{margin-left:-6.040283pt;}
._6_c00409{margin-left:-4.173200pt;}
._1_c00409{margin-left:-2.559792pt;}
._2_c00409{margin-left:-1.287920pt;}
._0_c00409{width:1.645328pt;}
._a_c00409{width:3.104149pt;}
._f_c00409{width:4.215765pt;}
._b_c00409{width:5.239867pt;}
._7_c00409{width:6.892784pt;}
._12_c00409{width:8.519963pt;}
._5_c00409{width:9.613200pt;}
._9_c00409{width:10.605621pt;}
._3_c00409{width:12.373333pt;}
._4_c00409{width:14.314752pt;}
._11_c00409{width:15.999808pt;}
._15_c00409{width:17.018341pt;}
._14_c00409{width:18.210683pt;}
._16_c00409{width:19.482677pt;}
._18_c00409{width:22.290219pt;}
._19_c00409{width:23.356912pt;}
.fs0_c00409{font-size:45.333333pt;}
.fs1_c00409{font-size:53.333333pt;}
.y0_c00409{bottom:0.000000pt;}
.y27_c00409{bottom:57.266686pt;}
.y26_c00409{bottom:97.600020pt;}
.y25_c00409{bottom:111.666686pt;}
.y24_c00409{bottom:147.866686pt;}
.y23_c00409{bottom:165.466686pt;}
.y22_c00409{bottom:182.733353pt;}
.y21_c00409{bottom:200.000020pt;}
.y20_c00409{bottom:217.000020pt;}
.y1f_c00409{bottom:234.600020pt;}
.y1e_c00409{bottom:251.533353pt;}
.y1d_c00409{bottom:268.466686pt;}
.y1c_c00409{bottom:293.800020pt;}
.y1b_c00409{bottom:311.066686pt;}
.y1a_c00409{bottom:328.333353pt;}
.y19_c00409{bottom:345.600020pt;}
.y18_c00409{bottom:362.866686pt;}
.y17_c00409{bottom:388.200020pt;}
.y16_c00409{bottom:405.466686pt;}
.y15_c00409{bottom:422.733353pt;}
.y14_c00409{bottom:440.000020pt;}
.y13_c00409{bottom:457.266686pt;}
.y12_c00409{bottom:474.866686pt;}
.y11_c00409{bottom:492.200020pt;}
.y10_c00409{bottom:509.466686pt;}
.yf_c00409{bottom:526.733353pt;}
.ye_c00409{bottom:544.000020pt;}
.yd_c00409{bottom:561.266686pt;}
.yc_c00409{bottom:578.600020pt;}
.yb_c00409{bottom:595.533353pt;}
.ya_c00409{bottom:613.133353pt;}
.y9_c00409{bottom:630.400020pt;}
.y8_c00409{bottom:647.400020pt;}
.y7_c00409{bottom:665.000020pt;}
.y6_c00409{bottom:681.933353pt;}
.y5_c00409{bottom:699.200020pt;}
.y4_c00409{bottom:716.200020pt;}
.y3_c00409{bottom:733.800020pt;}
.y2_c00409{bottom:750.733353pt;}
.y1_c00409{bottom:788.200020pt;}
.h2_c00409{height:44.470052pt;}
.h5_c00409{height:44.492188pt;}
.h4_c00409{height:52.317708pt;}
.h3_c00409{height:52.343750pt;}
.h1_c00409{height:851.333333pt;}
.h0_c00409{height:851.533333pt;}
.w0_c00409{width:570.533360pt;}
.w1_c00409{width:570.666667pt;}
.x0_c00409{left:0.000000pt;}
.x3_c00409{left:71.333333pt;}
.x2_c00409{left:72.333333pt;}
.x5_c00409{left:78.066667pt;}
.x4_c00409{left:86.400000pt;}
.x1_c00409{left:203.866667pt;}
.x6_c00409{left:472.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0e1c42f58faf5e33c0130eb7.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00410;src:url('chunks/assets/font_1b74fe9649259e9a06296ab8.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00410{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00410{word-spacing:0.000000px;}
._f_c00410{margin-left:-14.555952px;}
._10_c00410{margin-left:-12.798060px;}
._7_c00410{margin-left:-11.433063px;}
._e_c00410{margin-left:-7.272096px;}
._16_c00410{margin-left:-6.225111px;}
._c_c00410{margin-left:-4.467147px;}
._1_c00410{margin-left:-3.300006px;}
._0_c00410{margin-left:-1.760979px;}
._2_c00410{width:1.839009px;}
._3_c00410{width:3.320967px;}
._9_c00410{width:5.337027px;}
._d_c00410{width:6.401964px;}
._a_c00410{width:7.419105px;}
._6_c00410{width:8.786937px;}
._8_c00410{width:10.202973px;}
._4_c00410{width:11.204955px;}
._b_c00410{width:12.221982px;}
._5_c00410{width:13.320000px;}
._11_c00410{width:16.031892px;}
._13_c00410{width:17.261844px;}
._12_c00410{width:18.396060px;}
._15_c00410{width:21.410973px;}
._14_c00410{width:24.110964px;}
._17_c00410{width:25.610976px;}
.fc1_c00410{color:transparent;}
.fc0_c00410{color:rgb(35,31,32);}
.fs0_c00410{font-size:51.000000px;}
.fs1_c00410{font-size:60.000000px;}
.y0_c00410{bottom:0.000000px;}
.y26_c00410{bottom:64.425022px;}
.y25_c00410{bottom:110.175022px;}
.y24_c00410{bottom:125.325022px;}
.y23_c00410{bottom:140.775022px;}
.y22_c00410{bottom:155.925022px;}
.y21_c00410{bottom:171.375022px;}
.y20_c00410{bottom:226.425022px;}
.y1f_c00410{bottom:245.550022px;}
.y1e_c00410{bottom:265.350022px;}
.y1d_c00410{bottom:293.025022px;}
.y1c_c00410{bottom:312.525022px;}
.y1b_c00410{bottom:331.950022px;}
.y1a_c00410{bottom:360.750022px;}
.y19_c00410{bottom:380.175022px;}
.y18_c00410{bottom:399.600022px;}
.y17_c00410{bottom:418.725022px;}
.y16_c00410{bottom:438.150022px;}
.y15_c00410{bottom:457.950022px;}
.y14_c00410{bottom:477.000022px;}
.y13_c00410{bottom:496.425022px;}
.y12_c00410{bottom:516.225022px;}
.y11_c00410{bottom:544.350022px;}
.y10_c00410{bottom:563.775022px;}
.yf_c00410{bottom:583.200022px;}
.ye_c00410{bottom:602.625022px;}
.yd_c00410{bottom:622.125022px;}
.yc_c00410{bottom:641.550022px;}
.yb_c00410{bottom:660.975022px;}
.ya_c00410{bottom:680.400022px;}
.y9_c00410{bottom:699.825022px;}
.y8_c00410{bottom:719.325022px;}
.y7_c00410{bottom:748.125022px;}
.y6_c00410{bottom:767.550022px;}
.y5_c00410{bottom:786.225022px;}
.y4_c00410{bottom:805.725022px;}
.y3_c00410{bottom:825.525022px;}
.y2_c00410{bottom:844.950022px;}
.y1_c00410{bottom:886.875022px;}
.h2_c00410{height:50.028809px;}
.h5_c00410{height:50.053711px;}
.h4_c00410{height:58.857422px;}
.h3_c00410{height:58.886719px;}
.h1_c00410{height:957.750000px;}
.h0_c00410{height:957.975000px;}
.w1_c00410{width:643.500000px;}
.w0_c00410{width:643.650000px;}
.x0_c00410{left:0.000000px;}
.x1_c00410{left:90.750000px;}
.x4_c00410{left:97.575000px;}
.x3_c00410{left:105.825000px;}
.x2_c00410{left:107.250000px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls0_c00410{letter-spacing:0.000000pt;}
.ws0_c00410{word-spacing:-13.333333pt;}
.ws1_c00410{word-spacing:0.000000pt;}
._f_c00410{margin-left:-12.938624pt;}
._10_c00410{margin-left:-11.376053pt;}
._7_c00410{margin-left:-10.162723pt;}
._e_c00410{margin-left:-6.464085pt;}
._16_c00410{margin-left:-5.533432pt;}
._c_c00410{margin-left:-3.970797pt;}
._1_c00410{margin-left:-2.933339pt;}
._0_c00410{margin-left:-1.565315pt;}
._2_c00410{width:1.634675pt;}
._3_c00410{width:2.951971pt;}
._9_c00410{width:4.744024pt;}
._d_c00410{width:5.690635pt;}
._a_c00410{width:6.594760pt;}
._6_c00410{width:7.810611pt;}
._8_c00410{width:9.069309pt;}
._4_c00410{width:9.959960pt;}
._b_c00410{width:10.863984pt;}
._5_c00410{width:11.840000pt;}
._11_c00410{width:14.250571pt;}
._13_c00410{width:15.343861pt;}
._12_c00410{width:16.352053pt;}
._15_c00410{width:19.031976pt;}
._14_c00410{width:21.431968pt;}
._17_c00410{width:22.765312pt;}
.fs0_c00410{font-size:45.333333pt;}
.fs1_c00410{font-size:53.333333pt;}
.y0_c00410{bottom:0.000000pt;}
.y26_c00410{bottom:57.266686pt;}
.y25_c00410{bottom:97.933353pt;}
.y24_c00410{bottom:111.400020pt;}
.y23_c00410{bottom:125.133353pt;}
.y22_c00410{bottom:138.600020pt;}
.y21_c00410{bottom:152.333353pt;}
.y20_c00410{bottom:201.266686pt;}
.y1f_c00410{bottom:218.266686pt;}
.y1e_c00410{bottom:235.866686pt;}
.y1d_c00410{bottom:260.466686pt;}
.y1c_c00410{bottom:277.800020pt;}
.y1b_c00410{bottom:295.066686pt;}
.y1a_c00410{bottom:320.666686pt;}
.y19_c00410{bottom:337.933353pt;}
.y18_c00410{bottom:355.200020pt;}
.y17_c00410{bottom:372.200020pt;}
.y16_c00410{bottom:389.466686pt;}
.y15_c00410{bottom:407.066686pt;}
.y14_c00410{bottom:424.000020pt;}
.y13_c00410{bottom:441.266686pt;}
.y12_c00410{bottom:458.866686pt;}
.y11_c00410{bottom:483.866686pt;}
.y10_c00410{bottom:501.133353pt;}
.yf_c00410{bottom:518.400020pt;}
.ye_c00410{bottom:535.666686pt;}
.yd_c00410{bottom:553.000020pt;}
.yc_c00410{bottom:570.266686pt;}
.yb_c00410{bottom:587.533353pt;}
.ya_c00410{bottom:604.800020pt;}
.y9_c00410{bottom:622.066686pt;}
.y8_c00410{bottom:639.400020pt;}
.y7_c00410{bottom:665.000020pt;}
.y6_c00410{bottom:682.266686pt;}
.y5_c00410{bottom:698.866686pt;}
.y4_c00410{bottom:716.200020pt;}
.y3_c00410{bottom:733.800020pt;}
.y2_c00410{bottom:751.066686pt;}
.y1_c00410{bottom:788.333353pt;}
.h2_c00410{height:44.470052pt;}
.h5_c00410{height:44.492188pt;}
.h4_c00410{height:52.317708pt;}
.h3_c00410{height:52.343750pt;}
.h1_c00410{height:851.333333pt;}
.h0_c00410{height:851.533333pt;}
.w1_c00410{width:572.000000pt;}
.w0_c00410{width:572.133333pt;}
.x0_c00410{left:0.000000pt;}
.x1_c00410{left:80.666667pt;}
.x4_c00410{left:86.733333pt;}
.x3_c00410{left:94.066667pt;}
.x2_c00410{left:95.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ad9cd3a19e36ea7cf21bfdd4.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00411;src:url('chunks/assets/font_57c3c1eb80784fa304315b33.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00411{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00411{letter-spacing:0.000000px;}
.sc__c00411{text-shadow:none;}
.sc0_c00411{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00411{-webkit-text-stroke:0px transparent;}
.sc0_c00411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00411{word-spacing:-15.000000px;}
.ws1_c00411{word-spacing:0.000000px;}
._2_c00411{margin-left:-14.640000px;}
._1_c00411{margin-left:-12.960000px;}
._10_c00411{margin-left:-11.820000px;}
._9_c00411{margin-left:-9.840000px;}
._11_c00411{margin-left:-8.460000px;}
._1a_c00411{margin-left:-6.120069px;}
._6_c00411{margin-left:-4.980000px;}
._7_c00411{margin-left:-3.600000px;}
._17_c00411{margin-left:-2.460000px;}
._5_c00411{margin-left:-1.440000px;}
._0_c00411{width:1.860000px;}
._a_c00411{width:3.300000px;}
._d_c00411{width:5.100000px;}
._18_c00411{width:6.180000px;}
._e_c00411{width:7.200000px;}
._8_c00411{width:8.280000px;}
._f_c00411{width:9.300000px;}
._4_c00411{width:10.380000px;}
._c_c00411{width:11.640000px;}
._3_c00411{width:13.140000px;}
._b_c00411{width:17.040000px;}
._19_c00411{width:18.120000px;}
._12_c00411{width:19.260000px;}
._15_c00411{width:20.700000px;}
._14_c00411{width:22.020000px;}
._13_c00411{width:23.220000px;}
._16_c00411{width:24.360000px;}
._1b_c00411{width:27.870081px;}
.fc1_c00411{color:transparent;}
.fc0_c00411{color:rgb(35,31,32);}
.fs1_c00411{font-size:51.000000px;}
.fs0_c00411{font-size:60.000000px;}
.y0_c00411{bottom:0.000000px;}
.y25_c00411{bottom:64.800022px;}
.y24_c00411{bottom:110.175022px;}
.y23_c00411{bottom:125.325022px;}
.y22_c00411{bottom:140.775022px;}
.y21_c00411{bottom:155.925022px;}
.y20_c00411{bottom:199.800022px;}
.y1f_c00411{bottom:219.600022px;}
.y1e_c00411{bottom:238.725022px;}
.y1d_c00411{bottom:258.525022px;}
.y1c_c00411{bottom:277.950022px;}
.y1b_c00411{bottom:297.000022px;}
.y1a_c00411{bottom:316.800022px;}
.y19_c00411{bottom:336.225022px;}
.y18_c00411{bottom:355.350022px;}
.y17_c00411{bottom:374.775022px;}
.y16_c00411{bottom:394.200022px;}
.y15_c00411{bottom:414.000022px;}
.y14_c00411{bottom:433.125022px;}
.y13_c00411{bottom:452.925022px;}
.y12_c00411{bottom:472.350022px;}
.y11_c00411{bottom:491.400022px;}
.y10_c00411{bottom:510.825022px;}
.yf_c00411{bottom:529.950022px;}
.ye_c00411{bottom:549.375022px;}
.yd_c00411{bottom:590.775022px;}
.yb_c00411{bottom:650.925022px;}
.ya_c00411{bottom:669.975022px;}
.y9_c00411{bottom:689.400022px;}
.y8_c00411{bottom:708.825022px;}
.y7_c00411{bottom:728.625022px;}
.y6_c00411{bottom:748.125022px;}
.y5_c00411{bottom:767.175022px;}
.y4_c00411{bottom:786.225022px;}
.y3_c00411{bottom:805.725022px;}
.y2_c00411{bottom:825.150022px;}
.y1_c00411{bottom:844.575022px;}
.yc_c00411{bottom:886.725022px;}
.h3_c00411{height:50.028809px;}
.h4_c00411{height:50.053711px;}
.h2_c00411{height:58.886719px;}
.h1_c00411{height:957.750000px;}
.h0_c00411{height:957.975000px;}
.w0_c00411{width:641.850030px;}
.w1_c00411{width:642.000000px;}
.x0_c00411{left:0.000000px;}
.x1_c00411{left:81.375000px;}
.x3_c00411{left:87.825000px;}
.x2_c00411{left:229.350000px;}
.x4_c00411{left:531.000000px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls0_c00411{letter-spacing:0.000000pt;}
.ws0_c00411{word-spacing:-13.333333pt;}
.ws1_c00411{word-spacing:0.000000pt;}
._2_c00411{margin-left:-13.013333pt;}
._1_c00411{margin-left:-11.520000pt;}
._10_c00411{margin-left:-10.506667pt;}
._9_c00411{margin-left:-8.746667pt;}
._11_c00411{margin-left:-7.520000pt;}
._1a_c00411{margin-left:-5.440061pt;}
._6_c00411{margin-left:-4.426667pt;}
._7_c00411{margin-left:-3.200000pt;}
._17_c00411{margin-left:-2.186667pt;}
._5_c00411{margin-left:-1.280000pt;}
._0_c00411{width:1.653333pt;}
._a_c00411{width:2.933333pt;}
._d_c00411{width:4.533333pt;}
._18_c00411{width:5.493333pt;}
._e_c00411{width:6.400000pt;}
._8_c00411{width:7.360000pt;}
._f_c00411{width:8.266667pt;}
._4_c00411{width:9.226667pt;}
._c_c00411{width:10.346667pt;}
._3_c00411{width:11.680000pt;}
._b_c00411{width:15.146667pt;}
._19_c00411{width:16.106667pt;}
._12_c00411{width:17.120000pt;}
._15_c00411{width:18.400000pt;}
._14_c00411{width:19.573333pt;}
._13_c00411{width:20.640000pt;}
._16_c00411{width:21.653333pt;}
._1b_c00411{width:24.773405pt;}
.fs1_c00411{font-size:45.333333pt;}
.fs0_c00411{font-size:53.333333pt;}
.y0_c00411{bottom:0.000000pt;}
.y25_c00411{bottom:57.600020pt;}
.y24_c00411{bottom:97.933353pt;}
.y23_c00411{bottom:111.400020pt;}
.y22_c00411{bottom:125.133353pt;}
.y21_c00411{bottom:138.600020pt;}
.y20_c00411{bottom:177.600020pt;}
.y1f_c00411{bottom:195.200020pt;}
.y1e_c00411{bottom:212.200020pt;}
.y1d_c00411{bottom:229.800020pt;}
.y1c_c00411{bottom:247.066686pt;}
.y1b_c00411{bottom:264.000020pt;}
.y1a_c00411{bottom:281.600020pt;}
.y19_c00411{bottom:298.866686pt;}
.y18_c00411{bottom:315.866686pt;}
.y17_c00411{bottom:333.133353pt;}
.y16_c00411{bottom:350.400020pt;}
.y15_c00411{bottom:368.000020pt;}
.y14_c00411{bottom:385.000020pt;}
.y13_c00411{bottom:402.600020pt;}
.y12_c00411{bottom:419.866686pt;}
.y11_c00411{bottom:436.800020pt;}
.y10_c00411{bottom:454.066686pt;}
.yf_c00411{bottom:471.066686pt;}
.ye_c00411{bottom:488.333353pt;}
.yd_c00411{bottom:525.133353pt;}
.yb_c00411{bottom:578.600020pt;}
.ya_c00411{bottom:595.533353pt;}
.y9_c00411{bottom:612.800020pt;}
.y8_c00411{bottom:630.066686pt;}
.y7_c00411{bottom:647.666686pt;}
.y6_c00411{bottom:665.000020pt;}
.y5_c00411{bottom:681.933353pt;}
.y4_c00411{bottom:698.866686pt;}
.y3_c00411{bottom:716.200020pt;}
.y2_c00411{bottom:733.466686pt;}
.y1_c00411{bottom:750.733353pt;}
.yc_c00411{bottom:788.200020pt;}
.h3_c00411{height:44.470052pt;}
.h4_c00411{height:44.492188pt;}
.h2_c00411{height:52.343750pt;}
.h1_c00411{height:851.333333pt;}
.h0_c00411{height:851.533333pt;}
.w0_c00411{width:570.533360pt;}
.w1_c00411{width:570.666667pt;}
.x0_c00411{left:0.000000pt;}
.x1_c00411{left:72.333333pt;}
.x3_c00411{left:78.066667pt;}
.x2_c00411{left:203.866667pt;}
.x4_c00411{left:472.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f4b7066861b8e60f19c6c6a3.woff2')format("woff");}.ff1_c00412{font-family:ff1_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;}
@font-face{font-family:ff2_c00412;src:url('chunks/assets/font_b200ddf431128164a74648f5.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00412{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_c00412{vertical-align:0.000000px;}
.ls0_c00412{letter-spacing:0.000000px;}
.sc__c00412{text-shadow:none;}
.sc0_c00412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00412{-webkit-text-stroke:0px transparent;}
.sc0_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00412{word-spacing:-15.000000px;}
.ws0_c00412{word-spacing:-12.750000px;}
.ws2_c00412{word-spacing:0.000000px;}
._f_c00412{margin-left:-29.817039px;}
._10_c00412{margin-left:-15.548883px;}
._e_c00412{margin-left:-12.252084px;}
._11_c00412{margin-left:-10.847916px;}
._17_c00412{margin-left:-8.714847px;}
._9_c00412{margin-left:-5.979009px;}
._19_c00412{margin-left:-4.358949px;}
._1_c00412{margin-left:-3.300006px;}
._0_c00412{margin-left:-1.760979px;}
._2_c00412{width:1.839009px;}
._3_c00412{width:3.320967px;}
._b_c00412{width:4.763964px;}
._a_c00412{width:5.862006px;}
._c_c00412{width:7.136985px;}
._7_c00412{width:8.582937px;}
._8_c00412{width:9.660000px;}
._6_c00412{width:11.501982px;}
._d_c00412{width:13.896036px;}
._5_c00412{width:16.766937px;}
._4_c00412{width:17.810901px;}
._12_c00412{width:18.851892px;}
._14_c00412{width:20.412096px;}
._13_c00412{width:22.181982px;}
._15_c00412{width:23.399976px;}
._16_c00412{width:24.584955px;}
._18_c00412{width:25.610976px;}
._1a_c00412{width:27.788982px;}
._1b_c00412{width:29.354988px;}
._1c_c00412{width:30.813021px;}
._1f_c00412{width:35.039907px;}
._1e_c00412{width:36.944961px;}
._1d_c00412{width:38.483988px;}
.fc1_c00412{color:transparent;}
.fc0_c00412{color:rgb(35,31,32);}
.fs0_c00412{font-size:51.000000px;}
.fs1_c00412{font-size:60.000000px;}
.y0_c00412{bottom:0.000000px;}
.y26_c00412{bottom:64.800022px;}
.y25_c00412{bottom:110.175022px;}
.y24_c00412{bottom:125.625022px;}
.y23_c00412{bottom:141.075022px;}
.y22_c00412{bottom:156.225022px;}
.y21_c00412{bottom:171.375022px;}
.y20_c00412{bottom:186.525022px;}
.y1f_c00412{bottom:201.975022px;}
.y1e_c00412{bottom:217.425022px;}
.y1d_c00412{bottom:232.575022px;}
.y1c_c00412{bottom:247.725022px;}
.y1b_c00412{bottom:263.175022px;}
.y1a_c00412{bottom:278.325022px;}
.y19_c00412{bottom:293.775022px;}
.y18_c00412{bottom:308.925022px;}
.y17_c00412{bottom:349.200022px;}
.y16_c00412{bottom:368.325022px;}
.y15_c00412{bottom:387.750022px;}
.y14_c00412{bottom:407.550022px;}
.y13_c00412{bottom:426.975022px;}
.y12_c00412{bottom:446.025022px;}
.y11_c00412{bottom:482.400022px;}
.y10_c00412{bottom:554.775022px;}
.yf_c00412{bottom:574.575022px;}
.ye_c00412{bottom:594.000022px;}
.yd_c00412{bottom:613.125022px;}
.yc_c00412{bottom:632.925022px;}
.yb_c00412{bottom:651.975022px;}
.ya_c00412{bottom:671.775022px;}
.y9_c00412{bottom:690.825022px;}
.y8_c00412{bottom:719.325022px;}
.y7_c00412{bottom:738.750022px;}
.y6_c00412{bottom:758.175022px;}
.y5_c00412{bottom:777.225022px;}
.y4_c00412{bottom:796.725022px;}
.y3_c00412{bottom:825.150022px;}
.y2_c00412{bottom:844.950022px;}
.y1_c00412{bottom:886.875022px;}
.h2_c00412{height:50.028809px;}
.h5_c00412{height:50.053711px;}
.h4_c00412{height:58.857422px;}
.h3_c00412{height:58.886719px;}
.h1_c00412{height:957.750000px;}
.h0_c00412{height:957.975000px;}
.w1_c00412{width:643.500000px;}
.w0_c00412{width:643.650000px;}
.x0_c00412{left:0.000000px;}
.x1_c00412{left:90.750000px;}
.x4_c00412{left:97.575000px;}
.x2_c00412{left:106.200000px;}
.x3_c00412{left:107.250000px;}
.x5_c00412{left:130.650000px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls0_c00412{letter-spacing:0.000000pt;}
.ws1_c00412{word-spacing:-13.333333pt;}
.ws0_c00412{word-spacing:-11.333333pt;}
.ws2_c00412{word-spacing:0.000000pt;}
._f_c00412{margin-left:-26.504035pt;}
._10_c00412{margin-left:-13.821229pt;}
._e_c00412{margin-left:-10.890741pt;}
._11_c00412{margin-left:-9.642592pt;}
._17_c00412{margin-left:-7.746531pt;}
._9_c00412{margin-left:-5.314675pt;}
._19_c00412{margin-left:-3.874621pt;}
._1_c00412{margin-left:-2.933339pt;}
._0_c00412{margin-left:-1.565315pt;}
._2_c00412{width:1.634675pt;}
._3_c00412{width:2.951971pt;}
._b_c00412{width:4.234635pt;}
._a_c00412{width:5.210672pt;}
._c_c00412{width:6.343987pt;}
._7_c00412{width:7.629277pt;}
._8_c00412{width:8.586667pt;}
._6_c00412{width:10.223984pt;}
._d_c00412{width:12.352032pt;}
._5_c00412{width:14.903944pt;}
._4_c00412{width:15.831912pt;}
._12_c00412{width:16.757237pt;}
._14_c00412{width:18.144085pt;}
._13_c00412{width:19.717317pt;}
._15_c00412{width:20.799979pt;}
._16_c00412{width:21.853293pt;}
._18_c00412{width:22.765312pt;}
._1a_c00412{width:24.701317pt;}
._1b_c00412{width:26.093323pt;}
._1c_c00412{width:27.389352pt;}
._1f_c00412{width:31.146584pt;}
._1e_c00412{width:32.839965pt;}
._1d_c00412{width:34.207989pt;}
.fs0_c00412{font-size:45.333333pt;}
.fs1_c00412{font-size:53.333333pt;}
.y0_c00412{bottom:0.000000pt;}
.y26_c00412{bottom:57.600020pt;}
.y25_c00412{bottom:97.933353pt;}
.y24_c00412{bottom:111.666686pt;}
.y23_c00412{bottom:125.400020pt;}
.y22_c00412{bottom:138.866686pt;}
.y21_c00412{bottom:152.333353pt;}
.y20_c00412{bottom:165.800020pt;}
.y1f_c00412{bottom:179.533353pt;}
.y1e_c00412{bottom:193.266686pt;}
.y1d_c00412{bottom:206.733353pt;}
.y1c_c00412{bottom:220.200020pt;}
.y1b_c00412{bottom:233.933353pt;}
.y1a_c00412{bottom:247.400020pt;}
.y19_c00412{bottom:261.133353pt;}
.y18_c00412{bottom:274.600020pt;}
.y17_c00412{bottom:310.400020pt;}
.y16_c00412{bottom:327.400020pt;}
.y15_c00412{bottom:344.666686pt;}
.y14_c00412{bottom:362.266686pt;}
.y13_c00412{bottom:379.533353pt;}
.y12_c00412{bottom:396.466686pt;}
.y11_c00412{bottom:428.800020pt;}
.y10_c00412{bottom:493.133353pt;}
.yf_c00412{bottom:510.733353pt;}
.ye_c00412{bottom:528.000020pt;}
.yd_c00412{bottom:545.000020pt;}
.yc_c00412{bottom:562.600020pt;}
.yb_c00412{bottom:579.533353pt;}
.ya_c00412{bottom:597.133353pt;}
.y9_c00412{bottom:614.066686pt;}
.y8_c00412{bottom:639.400020pt;}
.y7_c00412{bottom:656.666686pt;}
.y6_c00412{bottom:673.933353pt;}
.y5_c00412{bottom:690.866686pt;}
.y4_c00412{bottom:708.200020pt;}
.y3_c00412{bottom:733.466686pt;}
.y2_c00412{bottom:751.066686pt;}
.y1_c00412{bottom:788.333353pt;}
.h2_c00412{height:44.470052pt;}
.h5_c00412{height:44.492188pt;}
.h4_c00412{height:52.317708pt;}
.h3_c00412{height:52.343750pt;}
.h1_c00412{height:851.333333pt;}
.h0_c00412{height:851.533333pt;}
.w1_c00412{width:572.000000pt;}
.w0_c00412{width:572.133333pt;}
.x0_c00412{left:0.000000pt;}
.x1_c00412{left:80.666667pt;}
.x4_c00412{left:86.733333pt;}
.x2_c00412{left:94.400000pt;}
.x3_c00412{left:95.333333pt;}
.x5_c00412{left:116.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10d745fce6369ef454f0b4e9.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00413;src:url('chunks/assets/font_562b015d2cf345d6037e1ee2.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00413{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00413{vertical-align:0.000000px;}
.ls1_c00413{letter-spacing:0.000000px;}
.ls0_c00413{letter-spacing:15.300000px;}
.sc__c00413{text-shadow:none;}
.sc0_c00413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00413{-webkit-text-stroke:0px transparent;}
.sc0_c00413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00413{word-spacing:-15.000000px;}
.ws1_c00413{word-spacing:-12.750000px;}
.ws2_c00413{word-spacing:0.000000px;}
._10_c00413{margin-left:-13.515786px;}
._e_c00413{margin-left:-11.400000px;}
._d_c00413{margin-left:-10.362414px;}
._17_c00413{margin-left:-8.427840px;}
._16_c00413{margin-left:-6.572178px;}
._12_c00413{margin-left:-4.380234px;}
._1_c00413{margin-left:-2.879766px;}
._2_c00413{margin-left:-1.448910px;}
._0_c00413{width:1.850994px;}
._3_c00413{width:2.967018px;}
._a_c00413{width:4.231548px;}
._c_c00413{width:5.342730px;}
._b_c00413{width:6.549318px;}
._8_c00413{width:8.030994px;}
._7_c00413{width:9.485772px;}
._9_c00413{width:11.300310px;}
._f_c00413{width:12.486708px;}
._4_c00413{width:13.581054px;}
._14_c00413{width:14.646948px;}
._5_c00413{width:16.020000px;}
._11_c00413{width:17.399808px;}
._6_c00413{width:19.097778px;}
._13_c00413{width:26.276526px;}
._18_c00413{width:27.776496px;}
._15_c00413{width:29.138187px;}
.fc2_c00413{color:transparent;}
.fc1_c00413{color:rgb(0,0,0);}
.fc0_c00413{color:rgb(35,31,32);}
.fs0_c00413{font-size:51.000000px;}
.fs1_c00413{font-size:60.000000px;}
.y0_c00413{bottom:0.000000px;}
.y24_c00413{bottom:64.425022px;}
.y23_c00413{bottom:110.550022px;}
.y22_c00413{bottom:125.325022px;}
.y21_c00413{bottom:141.150022px;}
.y20_c00413{bottom:155.925022px;}
.y1f_c00413{bottom:171.750022px;}
.y1e_c00413{bottom:186.525022px;}
.y1d_c00413{bottom:202.350022px;}
.y1c_c00413{bottom:217.425022px;}
.y1b_c00413{bottom:232.575022px;}
.y1a_c00413{bottom:248.025022px;}
.y19_c00413{bottom:263.175022px;}
.y18_c00413{bottom:303.150022px;}
.y17_c00413{bottom:322.950022px;}
.y16_c00413{bottom:342.375022px;}
.y15_c00413{bottom:361.800022px;}
.y14_c00413{bottom:380.925022px;}
.y13_c00413{bottom:400.350022px;}
.y12_c00413{bottom:419.400022px;}
.y11_c00413{bottom:439.200022px;}
.y10_c00413{bottom:478.125022px;}
.yf_c00413{bottom:534.975022px;}
.ye_c00413{bottom:554.775022px;}
.yd_c00413{bottom:573.825022px;}
.yc_c00413{bottom:593.325022px;}
.yb_c00413{bottom:612.750022px;}
.ya_c00413{bottom:632.550022px;}
.y9_c00413{bottom:651.600022px;}
.y8_c00413{bottom:690.525022px;}
.y7_c00413{bottom:748.125022px;}
.y6_c00413{bottom:767.550022px;}
.y5_c00413{bottom:786.225022px;}
.y4_c00413{bottom:806.025022px;}
.y3_c00413{bottom:825.150022px;}
.y2_c00413{bottom:844.950022px;}
.y1_c00413{bottom:886.725022px;}
.h2_c00413{height:50.028809px;}
.h4_c00413{height:50.053711px;}
.h3_c00413{height:58.886719px;}
.h1_c00413{height:957.750000px;}
.h0_c00413{height:957.975000px;}
.w0_c00413{width:641.850030px;}
.w1_c00413{width:642.000000px;}
.x0_c00413{left:0.000000px;}
.x2_c00413{left:81.000000px;}
.x3_c00413{left:87.825000px;}
.x4_c00413{left:121.350000px;}
.x1_c00413{left:229.350000px;}
.x5_c00413{left:531.000000px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls1_c00413{letter-spacing:0.000000pt;}
.ls0_c00413{letter-spacing:13.600000pt;}
.ws0_c00413{word-spacing:-13.333333pt;}
.ws1_c00413{word-spacing:-11.333333pt;}
.ws2_c00413{word-spacing:0.000000pt;}
._10_c00413{margin-left:-12.014032pt;}
._e_c00413{margin-left:-10.133333pt;}
._d_c00413{margin-left:-9.211035pt;}
._17_c00413{margin-left:-7.491413pt;}
._16_c00413{margin-left:-5.841936pt;}
._12_c00413{margin-left:-3.893541pt;}
._1_c00413{margin-left:-2.559792pt;}
._2_c00413{margin-left:-1.287920pt;}
._0_c00413{width:1.645328pt;}
._3_c00413{width:2.637349pt;}
._a_c00413{width:3.761376pt;}
._c_c00413{width:4.749093pt;}
._b_c00413{width:5.821616pt;}
._8_c00413{width:7.138661pt;}
._7_c00413{width:8.431797pt;}
._9_c00413{width:10.044720pt;}
._f_c00413{width:11.099296pt;}
._4_c00413{width:12.072048pt;}
._14_c00413{width:13.019509pt;}
._5_c00413{width:14.240000pt;}
._11_c00413{width:15.466496pt;}
._6_c00413{width:16.975803pt;}
._13_c00413{width:23.356912pt;}
._18_c00413{width:24.690219pt;}
._15_c00413{width:25.900611pt;}
.fs0_c00413{font-size:45.333333pt;}
.fs1_c00413{font-size:53.333333pt;}
.y0_c00413{bottom:0.000000pt;}
.y24_c00413{bottom:57.266686pt;}
.y23_c00413{bottom:98.266686pt;}
.y22_c00413{bottom:111.400020pt;}
.y21_c00413{bottom:125.466686pt;}
.y20_c00413{bottom:138.600020pt;}
.y1f_c00413{bottom:152.666686pt;}
.y1e_c00413{bottom:165.800020pt;}
.y1d_c00413{bottom:179.866686pt;}
.y1c_c00413{bottom:193.266686pt;}
.y1b_c00413{bottom:206.733353pt;}
.y1a_c00413{bottom:220.466686pt;}
.y19_c00413{bottom:233.933353pt;}
.y18_c00413{bottom:269.466686pt;}
.y17_c00413{bottom:287.066686pt;}
.y16_c00413{bottom:304.333353pt;}
.y15_c00413{bottom:321.600020pt;}
.y14_c00413{bottom:338.600020pt;}
.y13_c00413{bottom:355.866686pt;}
.y12_c00413{bottom:372.800020pt;}
.y11_c00413{bottom:390.400020pt;}
.y10_c00413{bottom:425.000020pt;}
.yf_c00413{bottom:475.533353pt;}
.ye_c00413{bottom:493.133353pt;}
.yd_c00413{bottom:510.066686pt;}
.yc_c00413{bottom:527.400020pt;}
.yb_c00413{bottom:544.666686pt;}
.ya_c00413{bottom:562.266686pt;}
.y9_c00413{bottom:579.200020pt;}
.y8_c00413{bottom:613.800020pt;}
.y7_c00413{bottom:665.000020pt;}
.y6_c00413{bottom:682.266686pt;}
.y5_c00413{bottom:698.866686pt;}
.y4_c00413{bottom:716.466686pt;}
.y3_c00413{bottom:733.466686pt;}
.y2_c00413{bottom:751.066686pt;}
.y1_c00413{bottom:788.200020pt;}
.h2_c00413{height:44.470052pt;}
.h4_c00413{height:44.492188pt;}
.h3_c00413{height:52.343750pt;}
.h1_c00413{height:851.333333pt;}
.h0_c00413{height:851.533333pt;}
.w0_c00413{width:570.533360pt;}
.w1_c00413{width:570.666667pt;}
.x0_c00413{left:0.000000pt;}
.x2_c00413{left:72.000000pt;}
.x3_c00413{left:78.066667pt;}
.x4_c00413{left:107.866667pt;}
.x1_c00413{left:203.866667pt;}
.x5_c00413{left:472.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2744ae05b2ac2586337fb035.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00414;src:url('chunks/assets/font_25981ef4870986cf4f9a8422.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00414{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00414{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.ls0_c00414{letter-spacing:0.000000px;}
.sc__c00414{text-shadow:none;}
.sc0_c00414{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00414{-webkit-text-stroke:0px transparent;}
.sc0_c00414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00414{word-spacing:-15.000000px;}
.ws0_c00414{word-spacing:-12.750000px;}
.ws2_c00414{word-spacing:0.000000px;}
._12_c00414{margin-left:-30.767928px;}
._11_c00414{margin-left:-29.616036px;}
._e_c00414{margin-left:-23.874030px;}
._13_c00414{margin-left:-15.000000px;}
._14_c00414{margin-left:-11.400000px;}
._f_c00414{margin-left:-9.300000px;}
._5_c00414{margin-left:-6.867117px;}
._15_c00414{margin-left:-5.382138px;}
._1_c00414{margin-left:-3.300006px;}
._0_c00414{margin-left:-1.760979px;}
._2_c00414{width:1.839009px;}
._3_c00414{width:3.320967px;}
._6_c00414{width:4.364955px;}
._4_c00414{width:5.600979px;}
._b_c00414{width:6.863988px;}
._a_c00414{width:7.871736px;}
._9_c00414{width:9.360000px;}
._10_c00414{width:10.722006px;}
._8_c00414{width:12.276096px;}
._7_c00414{width:13.841958px;}
._c_c00414{width:16.727862px;}
._d_c00414{width:18.047820px;}
._16_c00414{width:19.266174px;}
._18_c00414{width:24.110985px;}
._17_c00414{width:25.610976px;}
.fc1_c00414{color:transparent;}
.fc0_c00414{color:rgb(35,31,32);}
.fs0_c00414{font-size:51.000000px;}
.fs1_c00414{font-size:60.000000px;}
.y0_c00414{bottom:0.000000px;}
.y27_c00414{bottom:64.800022px;}
.y26_c00414{bottom:110.175022px;}
.y25_c00414{bottom:125.625022px;}
.y24_c00414{bottom:140.775022px;}
.y23_c00414{bottom:156.225022px;}
.y22_c00414{bottom:171.750022px;}
.y21_c00414{bottom:186.825022px;}
.y20_c00414{bottom:202.350022px;}
.y1f_c00414{bottom:254.550022px;}
.y1e_c00414{bottom:273.975022px;}
.y1d_c00414{bottom:302.025022px;}
.y1c_c00414{bottom:321.525022px;}
.y1b_c00414{bottom:340.950022px;}
.y1a_c00414{bottom:360.750022px;}
.y19_c00414{bottom:379.800022px;}
.y18_c00414{bottom:399.600022px;}
.y17_c00414{bottom:418.725022px;}
.y16_c00414{bottom:438.150022px;}
.y15_c00414{bottom:457.575022px;}
.y14_c00414{bottom:477.375022px;}
.y13_c00414{bottom:496.425022px;}
.y12_c00414{bottom:515.925022px;}
.y11_c00414{bottom:535.350022px;}
.y10_c00414{bottom:555.150022px;}
.yf_c00414{bottom:574.575022px;}
.ye_c00414{bottom:594.000022px;}
.yd_c00414{bottom:613.125022px;}
.yc_c00414{bottom:632.550022px;}
.yb_c00414{bottom:660.975022px;}
.ya_c00414{bottom:680.400022px;}
.y9_c00414{bottom:699.825022px;}
.y8_c00414{bottom:719.325022px;}
.y7_c00414{bottom:738.750022px;}
.y6_c00414{bottom:758.175022px;}
.y5_c00414{bottom:777.225022px;}
.y4_c00414{bottom:796.725022px;}
.y3_c00414{bottom:825.525022px;}
.y2_c00414{bottom:844.950022px;}
.y1_c00414{bottom:886.875022px;}
.h2_c00414{height:50.028809px;}
.h5_c00414{height:50.053711px;}
.h4_c00414{height:58.857422px;}
.h3_c00414{height:58.886719px;}
.h1_c00414{height:957.750000px;}
.h0_c00414{height:957.975000px;}
.w1_c00414{width:643.500000px;}
.w0_c00414{width:643.650000px;}
.x0_c00414{left:0.000000px;}
.x1_c00414{left:90.750000px;}
.x5_c00414{left:97.575000px;}
.x2_c00414{left:106.200000px;}
.x3_c00414{left:107.625000px;}
.x4_c00414{left:130.650000px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls0_c00414{letter-spacing:0.000000pt;}
.ws1_c00414{word-spacing:-13.333333pt;}
.ws0_c00414{word-spacing:-11.333333pt;}
.ws2_c00414{word-spacing:0.000000pt;}
._12_c00414{margin-left:-27.349269pt;}
._11_c00414{margin-left:-26.325365pt;}
._e_c00414{margin-left:-21.221360pt;}
._13_c00414{margin-left:-13.333333pt;}
._14_c00414{margin-left:-10.133333pt;}
._f_c00414{margin-left:-8.266667pt;}
._5_c00414{margin-left:-6.104104pt;}
._15_c00414{margin-left:-4.784123pt;}
._1_c00414{margin-left:-2.933339pt;}
._0_c00414{margin-left:-1.565315pt;}
._2_c00414{width:1.634675pt;}
._3_c00414{width:2.951971pt;}
._6_c00414{width:3.879960pt;}
._4_c00414{width:4.978648pt;}
._b_c00414{width:6.101323pt;}
._a_c00414{width:6.997099pt;}
._9_c00414{width:8.320000pt;}
._10_c00414{width:9.530672pt;}
._8_c00414{width:10.912085pt;}
._7_c00414{width:12.303963pt;}
._c_c00414{width:14.869211pt;}
._d_c00414{width:16.042507pt;}
._16_c00414{width:17.125488pt;}
._18_c00414{width:21.431987pt;}
._17_c00414{width:22.765312pt;}
.fs0_c00414{font-size:45.333333pt;}
.fs1_c00414{font-size:53.333333pt;}
.y0_c00414{bottom:0.000000pt;}
.y27_c00414{bottom:57.600020pt;}
.y26_c00414{bottom:97.933353pt;}
.y25_c00414{bottom:111.666686pt;}
.y24_c00414{bottom:125.133353pt;}
.y23_c00414{bottom:138.866686pt;}
.y22_c00414{bottom:152.666686pt;}
.y21_c00414{bottom:166.066686pt;}
.y20_c00414{bottom:179.866686pt;}
.y1f_c00414{bottom:226.266686pt;}
.y1e_c00414{bottom:243.533353pt;}
.y1d_c00414{bottom:268.466686pt;}
.y1c_c00414{bottom:285.800020pt;}
.y1b_c00414{bottom:303.066686pt;}
.y1a_c00414{bottom:320.666686pt;}
.y19_c00414{bottom:337.600020pt;}
.y18_c00414{bottom:355.200020pt;}
.y17_c00414{bottom:372.200020pt;}
.y16_c00414{bottom:389.466686pt;}
.y15_c00414{bottom:406.733353pt;}
.y14_c00414{bottom:424.333353pt;}
.y13_c00414{bottom:441.266686pt;}
.y12_c00414{bottom:458.600020pt;}
.y11_c00414{bottom:475.866686pt;}
.y10_c00414{bottom:493.466686pt;}
.yf_c00414{bottom:510.733353pt;}
.ye_c00414{bottom:528.000020pt;}
.yd_c00414{bottom:545.000020pt;}
.yc_c00414{bottom:562.266686pt;}
.yb_c00414{bottom:587.533353pt;}
.ya_c00414{bottom:604.800020pt;}
.y9_c00414{bottom:622.066686pt;}
.y8_c00414{bottom:639.400020pt;}
.y7_c00414{bottom:656.666686pt;}
.y6_c00414{bottom:673.933353pt;}
.y5_c00414{bottom:690.866686pt;}
.y4_c00414{bottom:708.200020pt;}
.y3_c00414{bottom:733.800020pt;}
.y2_c00414{bottom:751.066686pt;}
.y1_c00414{bottom:788.333353pt;}
.h2_c00414{height:44.470052pt;}
.h5_c00414{height:44.492188pt;}
.h4_c00414{height:52.317708pt;}
.h3_c00414{height:52.343750pt;}
.h1_c00414{height:851.333333pt;}
.h0_c00414{height:851.533333pt;}
.w1_c00414{width:572.000000pt;}
.w0_c00414{width:572.133333pt;}
.x0_c00414{left:0.000000pt;}
.x1_c00414{left:80.666667pt;}
.x5_c00414{left:86.733333pt;}
.x2_c00414{left:94.400000pt;}
.x3_c00414{left:95.666667pt;}
.x4_c00414{left:116.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5ffdff6aa4a70b71d2d67326.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00415;src:url('chunks/assets/font_83f752d9602383b095c0c1f5.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00415{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_c00415{vertical-align:0.000000px;}
.ls0_c00415{letter-spacing:0.000000px;}
.sc__c00415{text-shadow:none;}
.sc0_c00415{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00415{-webkit-text-stroke:0px transparent;}
.sc0_c00415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00415{word-spacing:-15.000000px;}
.ws1_c00415{word-spacing:-12.750000px;}
.ws2_c00415{word-spacing:0.000000px;}
._7_c00415{margin-left:-15.444498px;}
._15_c00415{margin-left:-13.545030px;}
._8_c00415{margin-left:-11.400000px;}
._c_c00415{margin-left:-10.076958px;}
._17_c00415{margin-left:-8.574468px;}
._12_c00415{margin-left:-7.268574px;}
._16_c00415{margin-left:-5.343000px;}
._11_c00415{margin-left:-4.197000px;}
._1_c00415{margin-left:-2.879766px;}
._2_c00415{margin-left:-1.448910px;}
._0_c00415{width:1.850994px;}
._9_c00415{width:2.865030px;}
._13_c00415{width:3.900000px;}
._10_c00415{width:5.147760px;}
._5_c00415{width:6.549006px;}
._6_c00415{width:8.049006px;}
._14_c00415{width:9.360000px;}
._3_c00415{width:10.568676px;}
._4_c00415{width:11.880330px;}
._a_c00415{width:13.640160px;}
._b_c00415{width:16.178946px;}
._d_c00415{width:17.188032px;}
._f_c00415{width:18.993102px;}
._e_c00415{width:20.417586px;}
._1a_c00415{width:23.576496px;}
._18_c00415{width:24.845670px;}
._19_c00415{width:26.276526px;}
._1b_c00415{width:29.138187px;}
.fc1_c00415{color:transparent;}
.fc0_c00415{color:rgb(35,31,32);}
.fs0_c00415{font-size:51.000000px;}
.fs1_c00415{font-size:60.000000px;}
.y0_c00415{bottom:0.000000px;}
.y23_c00415{bottom:64.425022px;}
.y22_c00415{bottom:110.175022px;}
.y21_c00415{bottom:125.325022px;}
.y20_c00415{bottom:140.775022px;}
.y1f_c00415{bottom:156.225022px;}
.y1e_c00415{bottom:171.375022px;}
.y1d_c00415{bottom:186.525022px;}
.y1c_c00415{bottom:201.975022px;}
.y1b_c00415{bottom:217.125022px;}
.y1a_c00415{bottom:360.375022px;}
.y19_c00415{bottom:379.800022px;}
.y18_c00415{bottom:399.225022px;}
.y17_c00415{bottom:418.725022px;}
.y16_c00415{bottom:438.150022px;}
.y15_c00415{bottom:457.575022px;}
.y14_c00415{bottom:477.000022px;}
.y13_c00415{bottom:496.425022px;}
.y12_c00415{bottom:525.225022px;}
.y11_c00415{bottom:544.350022px;}
.y10_c00415{bottom:564.150022px;}
.yf_c00415{bottom:583.575022px;}
.ye_c00415{bottom:603.000022px;}
.yd_c00415{bottom:622.125022px;}
.yc_c00415{bottom:641.925022px;}
.yb_c00415{bottom:661.350022px;}
.ya_c00415{bottom:680.400022px;}
.y9_c00415{bottom:700.200022px;}
.y8_c00415{bottom:719.625022px;}
.y7_c00415{bottom:738.750022px;}
.y6_c00415{bottom:758.550022px;}
.y5_c00415{bottom:786.225022px;}
.y4_c00415{bottom:805.725022px;}
.y3_c00415{bottom:825.150022px;}
.y2_c00415{bottom:844.575022px;}
.y1_c00415{bottom:886.725022px;}
.h2_c00415{height:50.028809px;}
.h5_c00415{height:50.053711px;}
.h4_c00415{height:58.857422px;}
.h3_c00415{height:58.886719px;}
.h1_c00415{height:957.750000px;}
.h0_c00415{height:957.975000px;}
.w0_c00415{width:641.850030px;}
.w1_c00415{width:642.000000px;}
.x0_c00415{left:0.000000px;}
.x4_c00415{left:81.375000px;}
.x5_c00415{left:87.825000px;}
.x2_c00415{left:95.775000px;}
.x3_c00415{left:97.200000px;}
.x6_c00415{left:120.975000px;}
.x1_c00415{left:229.350000px;}
.x7_c00415{left:531.000000px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls0_c00415{letter-spacing:0.000000pt;}
.ws0_c00415{word-spacing:-13.333333pt;}
.ws1_c00415{word-spacing:-11.333333pt;}
.ws2_c00415{word-spacing:0.000000pt;}
._7_c00415{margin-left:-13.728443pt;}
._15_c00415{margin-left:-12.040027pt;}
._8_c00415{margin-left:-10.133333pt;}
._c_c00415{margin-left:-8.957296pt;}
._17_c00415{margin-left:-7.621749pt;}
._12_c00415{margin-left:-6.460955pt;}
._16_c00415{margin-left:-4.749333pt;}
._11_c00415{margin-left:-3.730667pt;}
._1_c00415{margin-left:-2.559792pt;}
._2_c00415{margin-left:-1.287920pt;}
._0_c00415{width:1.645328pt;}
._9_c00415{width:2.546693pt;}
._13_c00415{width:3.466667pt;}
._10_c00415{width:4.575787pt;}
._5_c00415{width:5.821339pt;}
._6_c00415{width:7.154672pt;}
._14_c00415{width:8.320000pt;}
._3_c00415{width:9.394379pt;}
._4_c00415{width:10.560293pt;}
._a_c00415{width:12.124587pt;}
._b_c00415{width:14.381285pt;}
._d_c00415{width:15.278251pt;}
._f_c00415{width:16.882757pt;}
._e_c00415{width:18.148965pt;}
._1a_c00415{width:20.956885pt;}
._18_c00415{width:22.085040pt;}
._19_c00415{width:23.356912pt;}
._1b_c00415{width:25.900611pt;}
.fs0_c00415{font-size:45.333333pt;}
.fs1_c00415{font-size:53.333333pt;}
.y0_c00415{bottom:0.000000pt;}
.y23_c00415{bottom:57.266686pt;}
.y22_c00415{bottom:97.933353pt;}
.y21_c00415{bottom:111.400020pt;}
.y20_c00415{bottom:125.133353pt;}
.y1f_c00415{bottom:138.866686pt;}
.y1e_c00415{bottom:152.333353pt;}
.y1d_c00415{bottom:165.800020pt;}
.y1c_c00415{bottom:179.533353pt;}
.y1b_c00415{bottom:193.000020pt;}
.y1a_c00415{bottom:320.333353pt;}
.y19_c00415{bottom:337.600020pt;}
.y18_c00415{bottom:354.866686pt;}
.y17_c00415{bottom:372.200020pt;}
.y16_c00415{bottom:389.466686pt;}
.y15_c00415{bottom:406.733353pt;}
.y14_c00415{bottom:424.000020pt;}
.y13_c00415{bottom:441.266686pt;}
.y12_c00415{bottom:466.866686pt;}
.y11_c00415{bottom:483.866686pt;}
.y10_c00415{bottom:501.466686pt;}
.yf_c00415{bottom:518.733353pt;}
.ye_c00415{bottom:536.000020pt;}
.yd_c00415{bottom:553.000020pt;}
.yc_c00415{bottom:570.600020pt;}
.yb_c00415{bottom:587.866686pt;}
.ya_c00415{bottom:604.800020pt;}
.y9_c00415{bottom:622.400020pt;}
.y8_c00415{bottom:639.666686pt;}
.y7_c00415{bottom:656.666686pt;}
.y6_c00415{bottom:674.266686pt;}
.y5_c00415{bottom:698.866686pt;}
.y4_c00415{bottom:716.200020pt;}
.y3_c00415{bottom:733.466686pt;}
.y2_c00415{bottom:750.733353pt;}
.y1_c00415{bottom:788.200020pt;}
.h2_c00415{height:44.470052pt;}
.h5_c00415{height:44.492188pt;}
.h4_c00415{height:52.317708pt;}
.h3_c00415{height:52.343750pt;}
.h1_c00415{height:851.333333pt;}
.h0_c00415{height:851.533333pt;}
.w0_c00415{width:570.533360pt;}
.w1_c00415{width:570.666667pt;}
.x0_c00415{left:0.000000pt;}
.x4_c00415{left:72.333333pt;}
.x5_c00415{left:78.066667pt;}
.x2_c00415{left:85.133333pt;}
.x3_c00415{left:86.400000pt;}
.x6_c00415{left:107.533333pt;}
.x1_c00415{left:203.866667pt;}
.x7_c00415{left:472.000000pt;}
}





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

.ir_c00416:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00416{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00416;src:url('chunks/assets/font_e16490727448c394387282a8.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00416;src:url('chunks/assets/font_732521e90fcfd61f529499ef.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00416{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00416{letter-spacing:0.000000px;}
.sc__c00416{text-shadow:none;}
.sc0_c00416{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00416{-webkit-text-stroke:0px transparent;}
.sc0_c00416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00416{word-spacing:-15.000000px;}
.ws1_c00416{word-spacing:-12.750000px;}
.ws2_c00416{word-spacing:0.000000px;}
._14_c00416{margin-left:-15.540000px;}
._d_c00416{margin-left:-13.020000px;}
._c_c00416{margin-left:-11.580000px;}
._16_c00416{margin-left:-10.500000px;}
._1b_c00416{margin-left:-9.066108px;}
._13_c00416{margin-left:-6.960000px;}
._11_c00416{margin-left:-5.940000px;}
._19_c00416{margin-left:-4.920000px;}
._3_c00416{margin-left:-3.060000px;}
._8_c00416{margin-left:-2.040000px;}
._10_c00416{margin-left:-1.020000px;}
._0_c00416{width:1.500000px;}
._2_c00416{width:2.580000px;}
._7_c00416{width:3.780000px;}
._15_c00416{width:4.980000px;}
._b_c00416{width:6.120000px;}
._a_c00416{width:7.440000px;}
._6_c00416{width:9.180000px;}
._1_c00416{width:10.320000px;}
._4_c00416{width:11.400000px;}
._9_c00416{width:12.420000px;}
._5_c00416{width:13.800000px;}
._1d_c00416{width:15.066090px;}
._e_c00416{width:16.560000px;}
._18_c00416{width:18.180000px;}
._f_c00416{width:19.320000px;}
._12_c00416{width:21.000000px;}
._17_c00416{width:22.080000px;}
._1c_c00416{width:24.630042px;}
._1a_c00416{width:26.190030px;}
.fc1_c00416{color:transparent;}
.fc0_c00416{color:rgb(35,31,32);}
.fs1_c00416{font-size:51.000000px;}
.fs0_c00416{font-size:60.000000px;}
.y0_c00416{bottom:0.000000px;}
.y26_c00416{bottom:64.425022px;}
.y25_c00416{bottom:110.175022px;}
.y24_c00416{bottom:125.325022px;}
.y23_c00416{bottom:140.775022px;}
.y22_c00416{bottom:155.925022px;}
.y21_c00416{bottom:171.375022px;}
.y20_c00416{bottom:186.825022px;}
.y1f_c00416{bottom:201.975022px;}
.y1e_c00416{bottom:217.125022px;}
.y1d_c00416{bottom:232.575022px;}
.y1b_c00416{bottom:320.775022px;}
.y1a_c00416{bottom:340.575022px;}
.y19_c00416{bottom:359.625022px;}
.y18_c00416{bottom:379.125022px;}
.y17_c00416{bottom:398.925022px;}
.y16_c00416{bottom:418.350022px;}
.y15_c00416{bottom:437.775022px;}
.y14_c00416{bottom:456.825022px;}
.y13_c00416{bottom:476.625022px;}
.y12_c00416{bottom:495.750022px;}
.y11_c00416{bottom:515.550022px;}
.y10_c00416{bottom:534.600022px;}
.yf_c00416{bottom:554.100022px;}
.ye_c00416{bottom:573.525022px;}
.yd_c00416{bottom:592.950022px;}
.yc_c00416{bottom:612.375022px;}
.yb_c00416{bottom:631.800022px;}
.ya_c00416{bottom:651.600022px;}
.y9_c00416{bottom:670.725022px;}
.y8_c00416{bottom:690.525022px;}
.y7_c00416{bottom:709.575022px;}
.y6_c00416{bottom:729.000022px;}
.y5_c00416{bottom:748.125022px;}
.y4_c00416{bottom:767.925022px;}
.y3_c00416{bottom:786.975022px;}
.y2_c00416{bottom:825.525022px;}
.y1_c00416{bottom:844.950022px;}
.y1c_c00416{bottom:886.875022px;}
.h3_c00416{height:50.028809px;}
.h4_c00416{height:50.053711px;}
.h2_c00416{height:58.886719px;}
.h1_c00416{height:957.750000px;}
.h0_c00416{height:957.975000px;}
.w1_c00416{width:643.500000px;}
.w0_c00416{width:643.650000px;}
.x0_c00416{left:0.000000px;}
.x1_c00416{left:91.050000px;}
.x3_c00416{left:97.575000px;}
.x2_c00416{left:117.750000px;}
.x4_c00416{left:130.350000px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls0_c00416{letter-spacing:0.000000pt;}
.ws0_c00416{word-spacing:-13.333333pt;}
.ws1_c00416{word-spacing:-11.333333pt;}
.ws2_c00416{word-spacing:0.000000pt;}
._14_c00416{margin-left:-13.813333pt;}
._d_c00416{margin-left:-11.573333pt;}
._c_c00416{margin-left:-10.293333pt;}
._16_c00416{margin-left:-9.333333pt;}
._1b_c00416{margin-left:-8.058763pt;}
._13_c00416{margin-left:-6.186667pt;}
._11_c00416{margin-left:-5.280000pt;}
._19_c00416{margin-left:-4.373333pt;}
._3_c00416{margin-left:-2.720000pt;}
._8_c00416{margin-left:-1.813333pt;}
._10_c00416{margin-left:-0.906667pt;}
._0_c00416{width:1.333333pt;}
._2_c00416{width:2.293333pt;}
._7_c00416{width:3.360000pt;}
._15_c00416{width:4.426667pt;}
._b_c00416{width:5.440000pt;}
._a_c00416{width:6.613333pt;}
._6_c00416{width:8.160000pt;}
._1_c00416{width:9.173333pt;}
._4_c00416{width:10.133333pt;}
._9_c00416{width:11.040000pt;}
._5_c00416{width:12.266667pt;}
._1d_c00416{width:13.392080pt;}
._e_c00416{width:14.720000pt;}
._18_c00416{width:16.160000pt;}
._f_c00416{width:17.173333pt;}
._12_c00416{width:18.666667pt;}
._17_c00416{width:19.626667pt;}
._1c_c00416{width:21.893371pt;}
._1a_c00416{width:23.280027pt;}
.fs1_c00416{font-size:45.333333pt;}
.fs0_c00416{font-size:53.333333pt;}
.y0_c00416{bottom:0.000000pt;}
.y26_c00416{bottom:57.266686pt;}
.y25_c00416{bottom:97.933353pt;}
.y24_c00416{bottom:111.400020pt;}
.y23_c00416{bottom:125.133353pt;}
.y22_c00416{bottom:138.600020pt;}
.y21_c00416{bottom:152.333353pt;}
.y20_c00416{bottom:166.066686pt;}
.y1f_c00416{bottom:179.533353pt;}
.y1e_c00416{bottom:193.000020pt;}
.y1d_c00416{bottom:206.733353pt;}
.y1b_c00416{bottom:285.133353pt;}
.y1a_c00416{bottom:302.733353pt;}
.y19_c00416{bottom:319.666686pt;}
.y18_c00416{bottom:337.000020pt;}
.y17_c00416{bottom:354.600020pt;}
.y16_c00416{bottom:371.866686pt;}
.y15_c00416{bottom:389.133353pt;}
.y14_c00416{bottom:406.066686pt;}
.y13_c00416{bottom:423.666686pt;}
.y12_c00416{bottom:440.666686pt;}
.y11_c00416{bottom:458.266686pt;}
.y10_c00416{bottom:475.200020pt;}
.yf_c00416{bottom:492.533353pt;}
.ye_c00416{bottom:509.800020pt;}
.yd_c00416{bottom:527.066686pt;}
.yc_c00416{bottom:544.333353pt;}
.yb_c00416{bottom:561.600020pt;}
.ya_c00416{bottom:579.200020pt;}
.y9_c00416{bottom:596.200020pt;}
.y8_c00416{bottom:613.800020pt;}
.y7_c00416{bottom:630.733353pt;}
.y6_c00416{bottom:648.000020pt;}
.y5_c00416{bottom:665.000020pt;}
.y4_c00416{bottom:682.600020pt;}
.y3_c00416{bottom:699.533353pt;}
.y2_c00416{bottom:733.800020pt;}
.y1_c00416{bottom:751.066686pt;}
.y1c_c00416{bottom:788.333353pt;}
.h3_c00416{height:44.470052pt;}
.h4_c00416{height:44.492188pt;}
.h2_c00416{height:52.343750pt;}
.h1_c00416{height:851.333333pt;}
.h0_c00416{height:851.533333pt;}
.w1_c00416{width:572.000000pt;}
.w0_c00416{width:572.133333pt;}
.x0_c00416{left:0.000000pt;}
.x1_c00416{left:80.933333pt;}
.x3_c00416{left:86.733333pt;}
.x2_c00416{left:104.666667pt;}
.x4_c00416{left:115.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_71c26a0ba27a17cd0453c146.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00417;src:url('chunks/assets/font_c973b1bd7def35e9e8e0ab63.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00417{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00417{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_c00417{vertical-align:0.000000px;}
.ls1_c00417{letter-spacing:0.000000px;}
.ls0_c00417{letter-spacing:14.100000px;}
.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:-15.000000px;}
.ws1_c00417{word-spacing:-12.750000px;}
.ws2_c00417{word-spacing:0.000000px;}
._12_c00417{margin-left:-13.167348px;}
._8_c00417{margin-left:-11.964072px;}
._d_c00417{margin-left:-10.466430px;}
._10_c00417{margin-left:-8.364894px;}
._16_c00417{margin-left:-6.967116px;}
._11_c00417{margin-left:-5.967018px;}
._a_c00417{margin-left:-4.800000px;}
._1_c00417{margin-left:-2.879766px;}
._2_c00417{margin-left:-1.448910px;}
._0_c00417{width:1.850994px;}
._6_c00417{width:3.180000px;}
._7_c00417{width:4.322478px;}
._b_c00417{width:5.847348px;}
._4_c00417{width:7.320000px;}
._3_c00417{width:8.736024px;}
._f_c00417{width:9.779766px;}
._5_c00417{width:11.100000px;}
._c_c00417{width:12.545796px;}
._9_c00417{width:13.692216px;}
._1a_c00417{width:15.665640px;}
._e_c00417{width:16.725030px;}
._14_c00417{width:18.746316px;}
._13_c00417{width:19.938012px;}
._15_c00417{width:22.076523px;}
._18_c00417{width:25.076496px;}
._19_c00417{width:26.507454px;}
._17_c00417{width:27.938208px;}
.fc2_c00417{color:transparent;}
.fc1_c00417{color:rgb(0,0,0);}
.fc0_c00417{color:rgb(35,31,32);}
.fs0_c00417{font-size:51.000000px;}
.fs1_c00417{font-size:60.000000px;}
.y0_c00417{bottom:0.000000px;}
.y29_c00417{bottom:64.425022px;}
.y28_c00417{bottom:110.175022px;}
.y27_c00417{bottom:125.475022px;}
.y26_c00417{bottom:140.775022px;}
.y25_c00417{bottom:156.225022px;}
.y24_c00417{bottom:171.750022px;}
.y23_c00417{bottom:186.525022px;}
.y22_c00417{bottom:202.350022px;}
.y21_c00417{bottom:217.425022px;}
.y20_c00417{bottom:232.950022px;}
.y1f_c00417{bottom:248.025022px;}
.y1e_c00417{bottom:263.550022px;}
.y1d_c00417{bottom:278.625022px;}
.y1c_c00417{bottom:294.150022px;}
.y1b_c00417{bottom:309.225022px;}
.y1a_c00417{bottom:324.375022px;}
.y19_c00417{bottom:339.525022px;}
.y18_c00417{bottom:354.975022px;}
.y17_c00417{bottom:370.125022px;}
.y16_c00417{bottom:385.875022px;}
.y15_c00417{bottom:401.025022px;}
.y14_c00417{bottom:416.175022px;}
.y13_c00417{bottom:456.525022px;}
.y12_c00417{bottom:475.575022px;}
.y11_c00417{bottom:495.000022px;}
.y10_c00417{bottom:514.800022px;}
.yf_c00417{bottom:533.925022px;}
.ye_c00417{bottom:553.350022px;}
.yd_c00417{bottom:572.400022px;}
.yc_c00417{bottom:592.200022px;}
.yb_c00417{bottom:611.325022px;}
.ya_c00417{bottom:630.750022px;}
.y9_c00417{bottom:650.175022px;}
.y8_c00417{bottom:669.975022px;}
.y7_c00417{bottom:709.575022px;}
.y6_c00417{bottom:767.175022px;}
.y5_c00417{bottom:786.300022px;}
.y4_c00417{bottom:805.725022px;}
.y3_c00417{bottom:825.150022px;}
.y2_c00417{bottom:844.950022px;}
.y1_c00417{bottom:886.725022px;}
.h2_c00417{height:50.028809px;}
.h4_c00417{height:50.053711px;}
.h3_c00417{height:58.886719px;}
.h1_c00417{height:957.750000px;}
.h0_c00417{height:957.975000px;}
.w0_c00417{width:641.850030px;}
.w1_c00417{width:642.000000px;}
.x0_c00417{left:0.000000px;}
.x2_c00417{left:80.250000px;}
.x3_c00417{left:81.375000px;}
.x4_c00417{left:87.825000px;}
.x5_c00417{left:120.975000px;}
.x1_c00417{left:229.350000px;}
.x6_c00417{left:531.000000px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls1_c00417{letter-spacing:0.000000pt;}
.ls0_c00417{letter-spacing:12.533333pt;}
.ws0_c00417{word-spacing:-13.333333pt;}
.ws1_c00417{word-spacing:-11.333333pt;}
.ws2_c00417{word-spacing:0.000000pt;}
._12_c00417{margin-left:-11.704309pt;}
._8_c00417{margin-left:-10.634731pt;}
._d_c00417{margin-left:-9.303493pt;}
._10_c00417{margin-left:-7.435461pt;}
._16_c00417{margin-left:-6.192992pt;}
._11_c00417{margin-left:-5.304016pt;}
._a_c00417{margin-left:-4.266667pt;}
._1_c00417{margin-left:-2.559792pt;}
._2_c00417{margin-left:-1.287920pt;}
._0_c00417{width:1.645328pt;}
._6_c00417{width:2.826667pt;}
._7_c00417{width:3.842203pt;}
._b_c00417{width:5.197643pt;}
._4_c00417{width:6.506667pt;}
._3_c00417{width:7.765355pt;}
._f_c00417{width:8.693125pt;}
._5_c00417{width:9.866667pt;}
._c_c00417{width:11.151819pt;}
._9_c00417{width:12.170859pt;}
._1a_c00417{width:13.925013pt;}
._e_c00417{width:14.866693pt;}
._14_c00417{width:16.663392pt;}
._13_c00417{width:17.722677pt;}
._15_c00417{width:19.623576pt;}
._18_c00417{width:22.290219pt;}
._19_c00417{width:23.562181pt;}
._17_c00417{width:24.833963pt;}
.fs0_c00417{font-size:45.333333pt;}
.fs1_c00417{font-size:53.333333pt;}
.y0_c00417{bottom:0.000000pt;}
.y29_c00417{bottom:57.266686pt;}
.y28_c00417{bottom:97.933353pt;}
.y27_c00417{bottom:111.533353pt;}
.y26_c00417{bottom:125.133353pt;}
.y25_c00417{bottom:138.866686pt;}
.y24_c00417{bottom:152.666686pt;}
.y23_c00417{bottom:165.800020pt;}
.y22_c00417{bottom:179.866686pt;}
.y21_c00417{bottom:193.266686pt;}
.y20_c00417{bottom:207.066686pt;}
.y1f_c00417{bottom:220.466686pt;}
.y1e_c00417{bottom:234.266686pt;}
.y1d_c00417{bottom:247.666686pt;}
.y1c_c00417{bottom:261.466686pt;}
.y1b_c00417{bottom:274.866686pt;}
.y1a_c00417{bottom:288.333353pt;}
.y19_c00417{bottom:301.800020pt;}
.y18_c00417{bottom:315.533353pt;}
.y17_c00417{bottom:329.000020pt;}
.y16_c00417{bottom:343.000020pt;}
.y15_c00417{bottom:356.466686pt;}
.y14_c00417{bottom:369.933353pt;}
.y13_c00417{bottom:405.800020pt;}
.y12_c00417{bottom:422.733353pt;}
.y11_c00417{bottom:440.000020pt;}
.y10_c00417{bottom:457.600020pt;}
.yf_c00417{bottom:474.600020pt;}
.ye_c00417{bottom:491.866686pt;}
.yd_c00417{bottom:508.800020pt;}
.yc_c00417{bottom:526.400020pt;}
.yb_c00417{bottom:543.400020pt;}
.ya_c00417{bottom:560.666686pt;}
.y9_c00417{bottom:577.933353pt;}
.y8_c00417{bottom:595.533353pt;}
.y7_c00417{bottom:630.733353pt;}
.y6_c00417{bottom:681.933353pt;}
.y5_c00417{bottom:698.933353pt;}
.y4_c00417{bottom:716.200020pt;}
.y3_c00417{bottom:733.466686pt;}
.y2_c00417{bottom:751.066686pt;}
.y1_c00417{bottom:788.200020pt;}
.h2_c00417{height:44.470052pt;}
.h4_c00417{height:44.492188pt;}
.h3_c00417{height:52.343750pt;}
.h1_c00417{height:851.333333pt;}
.h0_c00417{height:851.533333pt;}
.w0_c00417{width:570.533360pt;}
.w1_c00417{width:570.666667pt;}
.x0_c00417{left:0.000000pt;}
.x2_c00417{left:71.333333pt;}
.x3_c00417{left:72.333333pt;}
.x4_c00417{left:78.066667pt;}
.x5_c00417{left:107.533333pt;}
.x1_c00417{left:203.866667pt;}
.x6_c00417{left:472.000000pt;}
}





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

.ir_c00418:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00418{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00418;src:url('chunks/assets/font_e626816e487c0c6c5e5b8329.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00418;src:url('chunks/assets/font_1fa113afbaa6ebe837e73fa1.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00418{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00418{vertical-align:0.000000px;}
.ls0_c00418{letter-spacing:0.000000px;}
.sc__c00418{text-shadow:none;}
.sc0_c00418{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00418{-webkit-text-stroke:0px transparent;}
.sc0_c00418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00418{word-spacing:-15.000000px;}
.ws1_c00418{word-spacing:-12.750000px;}
.ws2_c00418{word-spacing:0.000000px;}
._f_c00418{margin-left:-12.180000px;}
._1_c00418{margin-left:-10.620000px;}
._15_c00418{margin-left:-7.587054px;}
._12_c00418{margin-left:-6.240000px;}
._9_c00418{margin-left:-4.260000px;}
._7_c00418{margin-left:-3.000000px;}
._8_c00418{margin-left:-1.500000px;}
._0_c00418{width:1.380000px;}
._4_c00418{width:2.820000px;}
._5_c00418{width:4.680000px;}
._3_c00418{width:5.880000px;}
._2_c00418{width:7.260000px;}
._d_c00418{width:8.460000px;}
._b_c00418{width:10.380000px;}
._6_c00418{width:11.400000px;}
._a_c00418{width:13.380000px;}
._17_c00418{width:14.559135px;}
._18_c00418{width:15.621003px;}
._e_c00418{width:16.680000px;}
._c_c00418{width:18.300000px;}
._10_c00418{width:20.220000px;}
._11_c00418{width:21.600000px;}
._13_c00418{width:22.980000px;}
._19_c00418{width:25.050042px;}
._14_c00418{width:26.549991px;}
._16_c00418{width:28.050000px;}
.fc1_c00418{color:transparent;}
.fc0_c00418{color:rgb(35,31,32);}
.fs1_c00418{font-size:51.000000px;}
.fs0_c00418{font-size:60.000000px;}
.y0_c00418{bottom:0.000000px;}
.y2f_c00418{bottom:64.425022px;}
.y2e_c00418{bottom:110.175022px;}
.y2d_c00418{bottom:125.325022px;}
.y2c_c00418{bottom:141.150022px;}
.y2b_c00418{bottom:155.925022px;}
.y2a_c00418{bottom:171.375022px;}
.y29_c00418{bottom:186.825022px;}
.y28_c00418{bottom:202.350022px;}
.y27_c00418{bottom:217.425022px;}
.y26_c00418{bottom:232.575022px;}
.y25_c00418{bottom:247.725022px;}
.y24_c00418{bottom:263.550022px;}
.y23_c00418{bottom:278.325022px;}
.y22_c00418{bottom:293.775022px;}
.y21_c00418{bottom:308.925022px;}
.y20_c00418{bottom:324.375022px;}
.y1f_c00418{bottom:339.525022px;}
.y1e_c00418{bottom:354.975022px;}
.y1d_c00418{bottom:370.425022px;}
.y1c_c00418{bottom:385.575022px;}
.y1b_c00418{bottom:401.025022px;}
.y1a_c00418{bottom:416.175022px;}
.y19_c00418{bottom:431.325022px;}
.y18_c00418{bottom:446.775022px;}
.y17_c00418{bottom:461.925022px;}
.y16_c00418{bottom:477.375022px;}
.y15_c00418{bottom:492.525022px;}
.y14_c00418{bottom:507.975022px;}
.y13_c00418{bottom:523.125022px;}
.y12_c00418{bottom:538.950022px;}
.y11_c00418{bottom:554.025022px;}
.y10_c00418{bottom:569.475022px;}
.yf_c00418{bottom:584.625022px;}
.ye_c00418{bottom:599.775022px;}
.yd_c00418{bottom:614.925022px;}
.yc_c00418{bottom:630.375022px;}
.yb_c00418{bottom:645.825022px;}
.ya_c00418{bottom:661.350022px;}
.y8_c00418{bottom:708.825022px;}
.y7_c00418{bottom:728.325022px;}
.y6_c00418{bottom:748.125022px;}
.y5_c00418{bottom:767.550022px;}
.y4_c00418{bottom:786.225022px;}
.y3_c00418{bottom:805.725022px;}
.y2_c00418{bottom:825.150022px;}
.y1_c00418{bottom:844.950022px;}
.y9_c00418{bottom:886.875022px;}
.h3_c00418{height:50.028809px;}
.h4_c00418{height:50.053711px;}
.h2_c00418{height:58.886719px;}
.h1_c00418{height:957.750000px;}
.h0_c00418{height:957.975000px;}
.w1_c00418{width:643.500000px;}
.w0_c00418{width:643.650000px;}
.x0_c00418{left:0.000000px;}
.x3_c00418{left:90.375000px;}
.x1_c00418{left:91.425000px;}
.x4_c00418{left:97.575000px;}
.x2_c00418{left:106.950000px;}
.x6_c00418{left:130.350000px;}
.x5_c00418{left:131.400000px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls0_c00418{letter-spacing:0.000000pt;}
.ws0_c00418{word-spacing:-13.333333pt;}
.ws1_c00418{word-spacing:-11.333333pt;}
.ws2_c00418{word-spacing:0.000000pt;}
._f_c00418{margin-left:-10.826667pt;}
._1_c00418{margin-left:-9.440000pt;}
._15_c00418{margin-left:-6.744048pt;}
._12_c00418{margin-left:-5.546667pt;}
._9_c00418{margin-left:-3.786667pt;}
._7_c00418{margin-left:-2.666667pt;}
._8_c00418{margin-left:-1.333333pt;}
._0_c00418{width:1.226667pt;}
._4_c00418{width:2.506667pt;}
._5_c00418{width:4.160000pt;}
._3_c00418{width:5.226667pt;}
._2_c00418{width:6.453333pt;}
._d_c00418{width:7.520000pt;}
._b_c00418{width:9.226667pt;}
._6_c00418{width:10.133333pt;}
._a_c00418{width:11.893333pt;}
._17_c00418{width:12.941453pt;}
._18_c00418{width:13.885336pt;}
._e_c00418{width:14.826667pt;}
._c_c00418{width:16.266667pt;}
._10_c00418{width:17.973333pt;}
._11_c00418{width:19.200000pt;}
._13_c00418{width:20.426667pt;}
._19_c00418{width:22.266704pt;}
._14_c00418{width:23.599992pt;}
._16_c00418{width:24.933333pt;}
.fs1_c00418{font-size:45.333333pt;}
.fs0_c00418{font-size:53.333333pt;}
.y0_c00418{bottom:0.000000pt;}
.y2f_c00418{bottom:57.266686pt;}
.y2e_c00418{bottom:97.933353pt;}
.y2d_c00418{bottom:111.400020pt;}
.y2c_c00418{bottom:125.466686pt;}
.y2b_c00418{bottom:138.600020pt;}
.y2a_c00418{bottom:152.333353pt;}
.y29_c00418{bottom:166.066686pt;}
.y28_c00418{bottom:179.866686pt;}
.y27_c00418{bottom:193.266686pt;}
.y26_c00418{bottom:206.733353pt;}
.y25_c00418{bottom:220.200020pt;}
.y24_c00418{bottom:234.266686pt;}
.y23_c00418{bottom:247.400020pt;}
.y22_c00418{bottom:261.133353pt;}
.y21_c00418{bottom:274.600020pt;}
.y20_c00418{bottom:288.333353pt;}
.y1f_c00418{bottom:301.800020pt;}
.y1e_c00418{bottom:315.533353pt;}
.y1d_c00418{bottom:329.266686pt;}
.y1c_c00418{bottom:342.733353pt;}
.y1b_c00418{bottom:356.466686pt;}
.y1a_c00418{bottom:369.933353pt;}
.y19_c00418{bottom:383.400020pt;}
.y18_c00418{bottom:397.133353pt;}
.y17_c00418{bottom:410.600020pt;}
.y16_c00418{bottom:424.333353pt;}
.y15_c00418{bottom:437.800020pt;}
.y14_c00418{bottom:451.533353pt;}
.y13_c00418{bottom:465.000020pt;}
.y12_c00418{bottom:479.066686pt;}
.y11_c00418{bottom:492.466686pt;}
.y10_c00418{bottom:506.200020pt;}
.yf_c00418{bottom:519.666686pt;}
.ye_c00418{bottom:533.133353pt;}
.yd_c00418{bottom:546.600020pt;}
.yc_c00418{bottom:560.333353pt;}
.yb_c00418{bottom:574.066686pt;}
.ya_c00418{bottom:587.866686pt;}
.y8_c00418{bottom:630.066686pt;}
.y7_c00418{bottom:647.400020pt;}
.y6_c00418{bottom:665.000020pt;}
.y5_c00418{bottom:682.266686pt;}
.y4_c00418{bottom:698.866686pt;}
.y3_c00418{bottom:716.200020pt;}
.y2_c00418{bottom:733.466686pt;}
.y1_c00418{bottom:751.066686pt;}
.y9_c00418{bottom:788.333353pt;}
.h3_c00418{height:44.470052pt;}
.h4_c00418{height:44.492188pt;}
.h2_c00418{height:52.343750pt;}
.h1_c00418{height:851.333333pt;}
.h0_c00418{height:851.533333pt;}
.w1_c00418{width:572.000000pt;}
.w0_c00418{width:572.133333pt;}
.x0_c00418{left:0.000000pt;}
.x3_c00418{left:80.333333pt;}
.x1_c00418{left:81.266667pt;}
.x4_c00418{left:86.733333pt;}
.x2_c00418{left:95.066667pt;}
.x6_c00418{left:115.866667pt;}
.x5_c00418{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_02ad3be496bfb1b3766469f9.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00419;src:url('chunks/assets/font_91e78b8d7a136c8fddeef26c.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00419{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_c00419{vertical-align:0.000000px;}
.ls0_c00419{letter-spacing:0.000000px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00419{word-spacing:-15.000000px;}
.ws0_c00419{word-spacing:-12.750000px;}
.ws2_c00419{word-spacing:0.000000px;}
._13_c00419{margin-left:-13.916958px;}
._b_c00419{margin-left:-12.278826px;}
._7_c00419{margin-left:-10.934970px;}
._11_c00419{margin-left:-7.605126px;}
._17_c00419{margin-left:-5.984904px;}
._15_c00419{margin-left:-4.734384px;}
._1_c00419{margin-left:-2.879766px;}
._2_c00419{margin-left:-1.448910px;}
._0_c00419{width:1.850994px;}
._d_c00419{width:3.183042px;}
._8_c00419{width:4.304910px;}
._9_c00419{width:5.316024px;}
._a_c00419{width:6.435090px;}
._3_c00419{width:7.518012px;}
._14_c00419{width:8.520000px;}
._6_c00419{width:9.978012px;}
._4_c00419{width:11.067018px;}
._5_c00419{width:12.144096px;}
._c_c00419{width:13.269006px;}
._19_c00419{width:14.571114px;}
._10_c00419{width:17.031354px;}
._e_c00419{width:18.257652px;}
._12_c00419{width:19.296102px;}
._f_c00419{width:20.649006px;}
._1c_c00419{width:23.576496px;}
._16_c00419{width:25.076496px;}
._18_c00419{width:26.276526px;}
._1a_c00419{width:27.776496px;}
._1b_c00419{width:29.138187px;}
.fc1_c00419{color:transparent;}
.fc0_c00419{color:rgb(35,31,32);}
.fs0_c00419{font-size:51.000000px;}
.fs1_c00419{font-size:60.000000px;}
.y0_c00419{bottom:0.000000px;}
.y2a_c00419{bottom:64.425022px;}
.y29_c00419{bottom:110.550022px;}
.y28_c00419{bottom:125.625022px;}
.y27_c00419{bottom:140.775022px;}
.y26_c00419{bottom:155.925022px;}
.y25_c00419{bottom:171.375022px;}
.y24_c00419{bottom:186.525022px;}
.y23_c00419{bottom:202.350022px;}
.y22_c00419{bottom:217.425022px;}
.y21_c00419{bottom:232.575022px;}
.y20_c00419{bottom:247.725022px;}
.y1f_c00419{bottom:263.175022px;}
.y1e_c00419{bottom:278.325022px;}
.y1d_c00419{bottom:293.775022px;}
.y1c_c00419{bottom:308.925022px;}
.y1b_c00419{bottom:324.375022px;}
.y1a_c00419{bottom:339.525022px;}
.y19_c00419{bottom:398.175022px;}
.y18_c00419{bottom:417.600022px;}
.y17_c00419{bottom:436.725022px;}
.y16_c00419{bottom:456.525022px;}
.y15_c00419{bottom:475.950022px;}
.y14_c00419{bottom:495.000022px;}
.y13_c00419{bottom:514.800022px;}
.y12_c00419{bottom:534.225022px;}
.y11_c00419{bottom:553.350022px;}
.y10_c00419{bottom:573.150022px;}
.yf_c00419{bottom:592.575022px;}
.ye_c00419{bottom:612.000022px;}
.yd_c00419{bottom:631.125022px;}
.yc_c00419{bottom:650.550022px;}
.yb_c00419{bottom:670.350022px;}
.ya_c00419{bottom:689.775022px;}
.y9_c00419{bottom:708.825022px;}
.y8_c00419{bottom:728.625022px;}
.y7_c00419{bottom:747.750022px;}
.y6_c00419{bottom:767.550022px;}
.y5_c00419{bottom:786.600022px;}
.y4_c00419{bottom:806.025022px;}
.y3_c00419{bottom:825.525022px;}
.y2_c00419{bottom:844.575022px;}
.y1_c00419{bottom:886.725022px;}
.h2_c00419{height:50.028809px;}
.h4_c00419{height:50.053711px;}
.h3_c00419{height:58.886719px;}
.h1_c00419{height:957.750000px;}
.h0_c00419{height:957.975000px;}
.w0_c00419{width:641.850030px;}
.w1_c00419{width:642.000000px;}
.x0_c00419{left:0.000000px;}
.x4_c00419{left:80.250000px;}
.x2_c00419{left:81.375000px;}
.x6_c00419{left:87.825000px;}
.x3_c00419{left:97.200000px;}
.x5_c00419{left:120.975000px;}
.x1_c00419{left:229.350000px;}
.x7_c00419{left:531.000000px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls0_c00419{letter-spacing:0.000000pt;}
.ws1_c00419{word-spacing:-13.333333pt;}
.ws0_c00419{word-spacing:-11.333333pt;}
.ws2_c00419{word-spacing:0.000000pt;}
._13_c00419{margin-left:-12.370629pt;}
._b_c00419{margin-left:-10.914512pt;}
._7_c00419{margin-left:-9.719973pt;}
._11_c00419{margin-left:-6.760112pt;}
._17_c00419{margin-left:-5.319915pt;}
._15_c00419{margin-left:-4.208341pt;}
._1_c00419{margin-left:-2.559792pt;}
._2_c00419{margin-left:-1.287920pt;}
._0_c00419{width:1.645328pt;}
._d_c00419{width:2.829371pt;}
._8_c00419{width:3.826587pt;}
._9_c00419{width:4.725355pt;}
._a_c00419{width:5.720080pt;}
._3_c00419{width:6.682677pt;}
._14_c00419{width:7.573333pt;}
._6_c00419{width:8.869344pt;}
._4_c00419{width:9.837349pt;}
._5_c00419{width:10.794752pt;}
._c_c00419{width:11.794672pt;}
._19_c00419{width:12.952101pt;}
._10_c00419{width:15.138981pt;}
._e_c00419{width:16.229024pt;}
._12_c00419{width:17.152091pt;}
._f_c00419{width:18.354672pt;}
._1c_c00419{width:20.956885pt;}
._16_c00419{width:22.290219pt;}
._18_c00419{width:23.356912pt;}
._1a_c00419{width:24.690219pt;}
._1b_c00419{width:25.900611pt;}
.fs0_c00419{font-size:45.333333pt;}
.fs1_c00419{font-size:53.333333pt;}
.y0_c00419{bottom:0.000000pt;}
.y2a_c00419{bottom:57.266686pt;}
.y29_c00419{bottom:98.266686pt;}
.y28_c00419{bottom:111.666686pt;}
.y27_c00419{bottom:125.133353pt;}
.y26_c00419{bottom:138.600020pt;}
.y25_c00419{bottom:152.333353pt;}
.y24_c00419{bottom:165.800020pt;}
.y23_c00419{bottom:179.866686pt;}
.y22_c00419{bottom:193.266686pt;}
.y21_c00419{bottom:206.733353pt;}
.y20_c00419{bottom:220.200020pt;}
.y1f_c00419{bottom:233.933353pt;}
.y1e_c00419{bottom:247.400020pt;}
.y1d_c00419{bottom:261.133353pt;}
.y1c_c00419{bottom:274.600020pt;}
.y1b_c00419{bottom:288.333353pt;}
.y1a_c00419{bottom:301.800020pt;}
.y19_c00419{bottom:353.933353pt;}
.y18_c00419{bottom:371.200020pt;}
.y17_c00419{bottom:388.200020pt;}
.y16_c00419{bottom:405.800020pt;}
.y15_c00419{bottom:423.066686pt;}
.y14_c00419{bottom:440.000020pt;}
.y13_c00419{bottom:457.600020pt;}
.y12_c00419{bottom:474.866686pt;}
.y11_c00419{bottom:491.866686pt;}
.y10_c00419{bottom:509.466686pt;}
.yf_c00419{bottom:526.733353pt;}
.ye_c00419{bottom:544.000020pt;}
.yd_c00419{bottom:561.000020pt;}
.yc_c00419{bottom:578.266686pt;}
.yb_c00419{bottom:595.866686pt;}
.ya_c00419{bottom:613.133353pt;}
.y9_c00419{bottom:630.066686pt;}
.y8_c00419{bottom:647.666686pt;}
.y7_c00419{bottom:664.666686pt;}
.y6_c00419{bottom:682.266686pt;}
.y5_c00419{bottom:699.200020pt;}
.y4_c00419{bottom:716.466686pt;}
.y3_c00419{bottom:733.800020pt;}
.y2_c00419{bottom:750.733353pt;}
.y1_c00419{bottom:788.200020pt;}
.h2_c00419{height:44.470052pt;}
.h4_c00419{height:44.492188pt;}
.h3_c00419{height:52.343750pt;}
.h1_c00419{height:851.333333pt;}
.h0_c00419{height:851.533333pt;}
.w0_c00419{width:570.533360pt;}
.w1_c00419{width:570.666667pt;}
.x0_c00419{left:0.000000pt;}
.x4_c00419{left:71.333333pt;}
.x2_c00419{left:72.333333pt;}
.x6_c00419{left:78.066667pt;}
.x3_c00419{left:86.400000pt;}
.x5_c00419{left:107.533333pt;}
.x1_c00419{left:203.866667pt;}
.x7_c00419{left:472.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bcbe2410d52e0b74f6e6565e.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00420;src:url('chunks/assets/font_31eb291e301114417bd1e347.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00420{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.ls0_c00420{letter-spacing:0.000000px;}
.sc__c00420{text-shadow:none;}
.sc0_c00420{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00420{-webkit-text-stroke:0px transparent;}
.sc0_c00420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00420{word-spacing:-15.000000px;}
.ws0_c00420{word-spacing:-12.750000px;}
.ws2_c00420{word-spacing:0.000000px;}
._12_c00420{margin-left:-30.000000px;}
._11_c00420{margin-left:-14.640000px;}
._6_c00420{margin-left:-12.480000px;}
._b_c00420{margin-left:-11.280000px;}
._14_c00420{margin-left:-10.020000px;}
._1b_c00420{margin-left:-8.699988px;}
._1a_c00420{margin-left:-7.431009px;}
._18_c00420{margin-left:-6.077994px;}
._16_c00420{margin-left:-4.920000px;}
._a_c00420{margin-left:-3.720000px;}
._7_c00420{margin-left:-2.580000px;}
._5_c00420{margin-left:-1.200000px;}
._3_c00420{width:1.260000px;}
._0_c00420{width:2.580000px;}
._2_c00420{width:3.600000px;}
._1_c00420{width:5.580000px;}
._4_c00420{width:7.320000px;}
._9_c00420{width:8.820000px;}
._8_c00420{width:10.800000px;}
._13_c00420{width:11.820000px;}
._c_c00420{width:12.900000px;}
._e_c00420{width:13.920000px;}
._d_c00420{width:16.440000px;}
._10_c00420{width:17.640000px;}
._f_c00420{width:19.320000px;}
._15_c00420{width:20.640000px;}
._17_c00420{width:24.030000px;}
._19_c00420{width:25.529991px;}
.fc1_c00420{color:transparent;}
.fc0_c00420{color:rgb(35,31,32);}
.fs1_c00420{font-size:51.000000px;}
.fs0_c00420{font-size:60.000000px;}
.y0_c00420{bottom:0.000000px;}
.y28_c00420{bottom:64.425022px;}
.y27_c00420{bottom:110.550022px;}
.y26_c00420{bottom:125.325022px;}
.y25_c00420{bottom:140.775022px;}
.y24_c00420{bottom:155.925022px;}
.y23_c00420{bottom:171.750022px;}
.y22_c00420{bottom:186.525022px;}
.y21_c00420{bottom:201.975022px;}
.y20_c00420{bottom:217.125022px;}
.y1f_c00420{bottom:232.650022px;}
.y1e_c00420{bottom:248.025022px;}
.y1d_c00420{bottom:263.400022px;}
.y1b_c00420{bottom:321.825022px;}
.y1a_c00420{bottom:341.325022px;}
.y19_c00420{bottom:360.375022px;}
.y18_c00420{bottom:379.800022px;}
.y17_c00420{bottom:399.225022px;}
.y16_c00420{bottom:427.725022px;}
.y15_c00420{bottom:447.150022px;}
.y14_c00420{bottom:466.575022px;}
.y13_c00420{bottom:486.000022px;}
.y12_c00420{bottom:505.425022px;}
.y11_c00420{bottom:533.925022px;}
.y10_c00420{bottom:553.350022px;}
.yf_c00420{bottom:573.150022px;}
.ye_c00420{bottom:592.575022px;}
.yd_c00420{bottom:611.625022px;}
.yc_c00420{bottom:631.425022px;}
.yb_c00420{bottom:650.925022px;}
.ya_c00420{bottom:669.975022px;}
.y9_c00420{bottom:689.400022px;}
.y8_c00420{bottom:709.125022px;}
.y7_c00420{bottom:728.625022px;}
.y6_c00420{bottom:748.125022px;}
.y5_c00420{bottom:767.550022px;}
.y4_c00420{bottom:786.525022px;}
.y3_c00420{bottom:806.025022px;}
.y2_c00420{bottom:825.525022px;}
.y1_c00420{bottom:844.950022px;}
.y1c_c00420{bottom:886.875022px;}
.h4_c00420{height:50.028809px;}
.h5_c00420{height:50.053711px;}
.h6_c00420{height:50.653711px;}
.h3_c00420{height:58.857422px;}
.h2_c00420{height:58.886719px;}
.h1_c00420{height:957.750000px;}
.h0_c00420{height:957.975000px;}
.w1_c00420{width:643.500000px;}
.w0_c00420{width:643.650000px;}
.x0_c00420{left:0.000000px;}
.x5_c00420{left:90.375000px;}
.x1_c00420{left:91.425000px;}
.x3_c00420{left:95.400000px;}
.x6_c00420{left:97.575000px;}
.x4_c00420{left:106.200000px;}
.x2_c00420{left:107.250000px;}
.x7_c00420{left:131.025000px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls0_c00420{letter-spacing:0.000000pt;}
.ws1_c00420{word-spacing:-13.333333pt;}
.ws0_c00420{word-spacing:-11.333333pt;}
.ws2_c00420{word-spacing:0.000000pt;}
._12_c00420{margin-left:-26.666667pt;}
._11_c00420{margin-left:-13.013333pt;}
._6_c00420{margin-left:-11.093333pt;}
._b_c00420{margin-left:-10.026667pt;}
._14_c00420{margin-left:-8.906667pt;}
._1b_c00420{margin-left:-7.733323pt;}
._1a_c00420{margin-left:-6.605341pt;}
._18_c00420{margin-left:-5.402661pt;}
._16_c00420{margin-left:-4.373333pt;}
._a_c00420{margin-left:-3.306667pt;}
._7_c00420{margin-left:-2.293333pt;}
._5_c00420{margin-left:-1.066667pt;}
._3_c00420{width:1.120000pt;}
._0_c00420{width:2.293333pt;}
._2_c00420{width:3.200000pt;}
._1_c00420{width:4.960000pt;}
._4_c00420{width:6.506667pt;}
._9_c00420{width:7.840000pt;}
._8_c00420{width:9.600000pt;}
._13_c00420{width:10.506667pt;}
._c_c00420{width:11.466667pt;}
._e_c00420{width:12.373333pt;}
._d_c00420{width:14.613333pt;}
._10_c00420{width:15.680000pt;}
._f_c00420{width:17.173333pt;}
._15_c00420{width:18.346667pt;}
._17_c00420{width:21.360000pt;}
._19_c00420{width:22.693325pt;}
.fs1_c00420{font-size:45.333333pt;}
.fs0_c00420{font-size:53.333333pt;}
.y0_c00420{bottom:0.000000pt;}
.y28_c00420{bottom:57.266686pt;}
.y27_c00420{bottom:98.266686pt;}
.y26_c00420{bottom:111.400020pt;}
.y25_c00420{bottom:125.133353pt;}
.y24_c00420{bottom:138.600020pt;}
.y23_c00420{bottom:152.666686pt;}
.y22_c00420{bottom:165.800020pt;}
.y21_c00420{bottom:179.533353pt;}
.y20_c00420{bottom:193.000020pt;}
.y1f_c00420{bottom:206.800020pt;}
.y1e_c00420{bottom:220.466686pt;}
.y1d_c00420{bottom:234.133353pt;}
.y1b_c00420{bottom:286.066686pt;}
.y1a_c00420{bottom:303.400020pt;}
.y19_c00420{bottom:320.333353pt;}
.y18_c00420{bottom:337.600020pt;}
.y17_c00420{bottom:354.866686pt;}
.y16_c00420{bottom:380.200020pt;}
.y15_c00420{bottom:397.466686pt;}
.y14_c00420{bottom:414.733353pt;}
.y13_c00420{bottom:432.000020pt;}
.y12_c00420{bottom:449.266686pt;}
.y11_c00420{bottom:474.600020pt;}
.y10_c00420{bottom:491.866686pt;}
.yf_c00420{bottom:509.466686pt;}
.ye_c00420{bottom:526.733353pt;}
.yd_c00420{bottom:543.666686pt;}
.yc_c00420{bottom:561.266686pt;}
.yb_c00420{bottom:578.600020pt;}
.ya_c00420{bottom:595.533353pt;}
.y9_c00420{bottom:612.800020pt;}
.y8_c00420{bottom:630.333353pt;}
.y7_c00420{bottom:647.666686pt;}
.y6_c00420{bottom:665.000020pt;}
.y5_c00420{bottom:682.266686pt;}
.y4_c00420{bottom:699.133353pt;}
.y3_c00420{bottom:716.466686pt;}
.y2_c00420{bottom:733.800020pt;}
.y1_c00420{bottom:751.066686pt;}
.y1c_c00420{bottom:788.333353pt;}
.h4_c00420{height:44.470052pt;}
.h5_c00420{height:44.492188pt;}
.h6_c00420{height:45.025521pt;}
.h3_c00420{height:52.317708pt;}
.h2_c00420{height:52.343750pt;}
.h1_c00420{height:851.333333pt;}
.h0_c00420{height:851.533333pt;}
.w1_c00420{width:572.000000pt;}
.w0_c00420{width:572.133333pt;}
.x0_c00420{left:0.000000pt;}
.x5_c00420{left:80.333333pt;}
.x1_c00420{left:81.266667pt;}
.x3_c00420{left:84.800000pt;}
.x6_c00420{left:86.733333pt;}
.x4_c00420{left:94.400000pt;}
.x2_c00420{left:95.333333pt;}
.x7_c00420{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d603a9a529820f7034b0e97f.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00421;src:url('chunks/assets/font_eda180b7adbb10cac72f2d4b.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00421{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00421{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.ls1_c00421{letter-spacing:0.000000px;}
.ls0_c00421{letter-spacing:12.600000px;}
.sc__c00421{text-shadow:none;}
.sc0_c00421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00421{-webkit-text-stroke:0px transparent;}
.sc0_c00421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00421{word-spacing:-15.000000px;}
.ws1_c00421{word-spacing:-12.750000px;}
.ws2_c00421{word-spacing:0.000000px;}
._7_c00421{margin-left:-14.190060px;}
._6_c00421{margin-left:-13.154970px;}
._f_c00421{margin-left:-11.274438px;}
._e_c00421{margin-left:-7.070826px;}
._11_c00421{margin-left:-4.473432px;}
._1_c00421{margin-left:-2.879766px;}
._2_c00421{margin-left:-1.448910px;}
._0_c00421{width:1.850994px;}
._d_c00421{width:2.880120px;}
._c_c00421{width:4.289676px;}
._5_c00421{width:5.352048px;}
._8_c00421{width:7.031928px;}
._4_c00421{width:8.085030px;}
._b_c00421{width:9.281988px;}
._9_c00421{width:11.061054px;}
._3_c00421{width:12.129006px;}
._a_c00421{width:13.748910px;}
._10_c00421{width:16.943742px;}
._13_c00421{width:25.076496px;}
._14_c00421{width:27.707433px;}
._12_c00421{width:29.138187px;}
.fc2_c00421{color:transparent;}
.fc1_c00421{color:rgb(0,0,0);}
.fc0_c00421{color:rgb(35,31,32);}
.fs0_c00421{font-size:51.000000px;}
.fs1_c00421{font-size:60.000000px;}
.y0_c00421{bottom:0.000000px;}
.y27_c00421{bottom:64.800022px;}
.y26_c00421{bottom:110.175022px;}
.y25_c00421{bottom:125.325022px;}
.y24_c00421{bottom:141.150022px;}
.y23_c00421{bottom:155.925022px;}
.y22_c00421{bottom:171.375022px;}
.y21_c00421{bottom:186.525022px;}
.y20_c00421{bottom:202.350022px;}
.y1f_c00421{bottom:217.125022px;}
.y1e_c00421{bottom:232.950022px;}
.y1d_c00421{bottom:247.725022px;}
.y1c_c00421{bottom:263.550022px;}
.y1b_c00421{bottom:278.175022px;}
.y1a_c00421{bottom:293.700022px;}
.y19_c00421{bottom:309.225022px;}
.y18_c00421{bottom:324.750022px;}
.y17_c00421{bottom:380.550022px;}
.y16_c00421{bottom:400.350022px;}
.y15_c00421{bottom:419.400022px;}
.y14_c00421{bottom:439.200022px;}
.y13_c00421{bottom:458.325022px;}
.y12_c00421{bottom:478.125022px;}
.y11_c00421{bottom:516.225022px;}
.y10_c00421{bottom:572.775022px;}
.yf_c00421{bottom:592.575022px;}
.ye_c00421{bottom:612.075022px;}
.yd_c00421{bottom:631.500022px;}
.yc_c00421{bottom:650.925022px;}
.yb_c00421{bottom:670.350022px;}
.ya_c00421{bottom:689.775022px;}
.y9_c00421{bottom:708.825022px;}
.y8_c00421{bottom:728.325022px;}
.y7_c00421{bottom:747.750022px;}
.y6_c00421{bottom:767.550022px;}
.y5_c00421{bottom:786.225022px;}
.y4_c00421{bottom:805.725022px;}
.y3_c00421{bottom:825.525022px;}
.y2_c00421{bottom:844.950022px;}
.y1_c00421{bottom:886.725022px;}
.h2_c00421{height:50.028809px;}
.h4_c00421{height:50.053711px;}
.h3_c00421{height:58.886719px;}
.h1_c00421{height:957.750000px;}
.h0_c00421{height:957.975000px;}
.w0_c00421{width:641.850030px;}
.w1_c00421{width:642.000000px;}
.x0_c00421{left:0.000000px;}
.x2_c00421{left:80.250000px;}
.x3_c00421{left:81.375000px;}
.x4_c00421{left:87.825000px;}
.x5_c00421{left:120.975000px;}
.x1_c00421{left:229.350000px;}
.x6_c00421{left:531.000000px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls1_c00421{letter-spacing:0.000000pt;}
.ls0_c00421{letter-spacing:11.200000pt;}
.ws0_c00421{word-spacing:-13.333333pt;}
.ws1_c00421{word-spacing:-11.333333pt;}
.ws2_c00421{word-spacing:0.000000pt;}
._7_c00421{margin-left:-12.613387pt;}
._6_c00421{margin-left:-11.693307pt;}
._f_c00421{margin-left:-10.021723pt;}
._e_c00421{margin-left:-6.285179pt;}
._11_c00421{margin-left:-3.976384pt;}
._1_c00421{margin-left:-2.559792pt;}
._2_c00421{margin-left:-1.287920pt;}
._0_c00421{width:1.645328pt;}
._d_c00421{width:2.560107pt;}
._c_c00421{width:3.813045pt;}
._5_c00421{width:4.757376pt;}
._8_c00421{width:6.250603pt;}
._4_c00421{width:7.186693pt;}
._b_c00421{width:8.250656pt;}
._9_c00421{width:9.832048pt;}
._3_c00421{width:10.781339pt;}
._a_c00421{width:12.221253pt;}
._10_c00421{width:15.061104pt;}
._13_c00421{width:22.290219pt;}
._14_c00421{width:24.628829pt;}
._12_c00421{width:25.900611pt;}
.fs0_c00421{font-size:45.333333pt;}
.fs1_c00421{font-size:53.333333pt;}
.y0_c00421{bottom:0.000000pt;}
.y27_c00421{bottom:57.600020pt;}
.y26_c00421{bottom:97.933353pt;}
.y25_c00421{bottom:111.400020pt;}
.y24_c00421{bottom:125.466686pt;}
.y23_c00421{bottom:138.600020pt;}
.y22_c00421{bottom:152.333353pt;}
.y21_c00421{bottom:165.800020pt;}
.y20_c00421{bottom:179.866686pt;}
.y1f_c00421{bottom:193.000020pt;}
.y1e_c00421{bottom:207.066686pt;}
.y1d_c00421{bottom:220.200020pt;}
.y1c_c00421{bottom:234.266686pt;}
.y1b_c00421{bottom:247.266686pt;}
.y1a_c00421{bottom:261.066686pt;}
.y19_c00421{bottom:274.866686pt;}
.y18_c00421{bottom:288.666686pt;}
.y17_c00421{bottom:338.266686pt;}
.y16_c00421{bottom:355.866686pt;}
.y15_c00421{bottom:372.800020pt;}
.y14_c00421{bottom:390.400020pt;}
.y13_c00421{bottom:407.400020pt;}
.y12_c00421{bottom:425.000020pt;}
.y11_c00421{bottom:458.866686pt;}
.y10_c00421{bottom:509.133353pt;}
.yf_c00421{bottom:526.733353pt;}
.ye_c00421{bottom:544.066686pt;}
.yd_c00421{bottom:561.333353pt;}
.yc_c00421{bottom:578.600020pt;}
.yb_c00421{bottom:595.866686pt;}
.ya_c00421{bottom:613.133353pt;}
.y9_c00421{bottom:630.066686pt;}
.y8_c00421{bottom:647.400020pt;}
.y7_c00421{bottom:664.666686pt;}
.y6_c00421{bottom:682.266686pt;}
.y5_c00421{bottom:698.866686pt;}
.y4_c00421{bottom:716.200020pt;}
.y3_c00421{bottom:733.800020pt;}
.y2_c00421{bottom:751.066686pt;}
.y1_c00421{bottom:788.200020pt;}
.h2_c00421{height:44.470052pt;}
.h4_c00421{height:44.492188pt;}
.h3_c00421{height:52.343750pt;}
.h1_c00421{height:851.333333pt;}
.h0_c00421{height:851.533333pt;}
.w0_c00421{width:570.533360pt;}
.w1_c00421{width:570.666667pt;}
.x0_c00421{left:0.000000pt;}
.x2_c00421{left:71.333333pt;}
.x3_c00421{left:72.333333pt;}
.x4_c00421{left:78.066667pt;}
.x5_c00421{left:107.533333pt;}
.x1_c00421{left:203.866667pt;}
.x6_c00421{left:472.000000pt;}
}





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

.ir_c00422:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00422{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00422;src:url('chunks/assets/font_0ba1784c745522851173777a.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00422;src:url('chunks/assets/font_f10878c86ddeed0214fa5af3.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00422{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00422{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_c00422{vertical-align:0.000000px;}
.ls0_c00422{letter-spacing:0.000000px;}
.sc__c00422{text-shadow:none;}
.sc0_c00422{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00422{-webkit-text-stroke:0px transparent;}
.sc0_c00422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00422{word-spacing:-15.000000px;}
.ws0_c00422{word-spacing:-12.750000px;}
.ws2_c00422{word-spacing:0.000000px;}
._4_c00422{margin-left:-15.600000px;}
._9_c00422{margin-left:-12.000000px;}
._8_c00422{margin-left:-10.680000px;}
._1a_c00422{margin-left:-9.663036px;}
._17_c00422{margin-left:-7.256943px;}
._19_c00422{margin-left:-5.696856px;}
._18_c00422{margin-left:-3.653970px;}
._1_c00422{margin-left:-2.400000px;}
._0_c00422{margin-left:-1.380000px;}
._6_c00422{width:1.080000px;}
._7_c00422{width:2.280000px;}
._b_c00422{width:3.300000px;}
._e_c00422{width:4.320000px;}
._c_c00422{width:5.700000px;}
._d_c00422{width:6.720000px;}
._5_c00422{width:7.800000px;}
._2_c00422{width:9.300000px;}
._a_c00422{width:10.800000px;}
._3_c00422{width:12.300000px;}
._13_c00422{width:13.980000px;}
._1c_c00422{width:15.170985px;}
._11_c00422{width:16.260000px;}
._10_c00422{width:17.520000px;}
._f_c00422{width:18.900000px;}
._12_c00422{width:20.400000px;}
._14_c00422{width:21.720000px;}
._16_c00422{width:23.010000px;}
._1b_c00422{width:24.209979px;}
._15_c00422{width:25.709991px;}
.fc1_c00422{color:transparent;}
.fc0_c00422{color:rgb(35,31,32);}
.fs1_c00422{font-size:51.000000px;}
.fs0_c00422{font-size:60.000000px;}
.y0_c00422{bottom:0.000000px;}
.y2c_c00422{bottom:64.800022px;}
.y2b_c00422{bottom:110.550022px;}
.y2a_c00422{bottom:125.625022px;}
.y29_c00422{bottom:140.775022px;}
.y28_c00422{bottom:155.925022px;}
.y27_c00422{bottom:171.750022px;}
.y26_c00422{bottom:186.525022px;}
.y25_c00422{bottom:201.975022px;}
.y24_c00422{bottom:217.125022px;}
.y23_c00422{bottom:232.575022px;}
.y22_c00422{bottom:248.025022px;}
.y21_c00422{bottom:263.550022px;}
.y20_c00422{bottom:278.325022px;}
.y1f_c00422{bottom:293.775022px;}
.y1e_c00422{bottom:308.925022px;}
.y1d_c00422{bottom:324.750022px;}
.y1c_c00422{bottom:339.525022px;}
.y1b_c00422{bottom:355.350022px;}
.y1a_c00422{bottom:370.425022px;}
.y19_c00422{bottom:385.575022px;}
.y18_c00422{bottom:400.725022px;}
.y17_c00422{bottom:416.175022px;}
.y16_c00422{bottom:431.325022px;}
.y15_c00422{bottom:446.775022px;}
.y13_c00422{bottom:495.000022px;}
.y12_c00422{bottom:514.800022px;}
.y11_c00422{bottom:533.925022px;}
.y10_c00422{bottom:553.350022px;}
.yf_c00422{bottom:572.775022px;}
.ye_c00422{bottom:592.200022px;}
.yd_c00422{bottom:611.625022px;}
.yc_c00422{bottom:631.425022px;}
.yb_c00422{bottom:650.925022px;}
.ya_c00422{bottom:670.350022px;}
.y9_c00422{bottom:689.775022px;}
.y8_c00422{bottom:709.200022px;}
.y7_c00422{bottom:728.325022px;}
.y6_c00422{bottom:748.125022px;}
.y5_c00422{bottom:767.550022px;}
.y4_c00422{bottom:786.225022px;}
.y3_c00422{bottom:805.725022px;}
.y2_c00422{bottom:825.525022px;}
.y1_c00422{bottom:844.950022px;}
.y14_c00422{bottom:886.875022px;}
.h3_c00422{height:50.028809px;}
.h4_c00422{height:50.053711px;}
.h2_c00422{height:58.886719px;}
.h1_c00422{height:957.750000px;}
.h0_c00422{height:957.975000px;}
.w1_c00422{width:643.500000px;}
.w0_c00422{width:643.650000px;}
.x0_c00422{left:0.000000px;}
.x2_c00422{left:90.375000px;}
.x1_c00422{left:91.800000px;}
.x4_c00422{left:97.575000px;}
.x3_c00422{left:106.950000px;}
.x5_c00422{left:130.350000px;}
.x6_c00422{left:131.775000px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls0_c00422{letter-spacing:0.000000pt;}
.ws1_c00422{word-spacing:-13.333333pt;}
.ws0_c00422{word-spacing:-11.333333pt;}
.ws2_c00422{word-spacing:0.000000pt;}
._4_c00422{margin-left:-13.866667pt;}
._9_c00422{margin-left:-10.666667pt;}
._8_c00422{margin-left:-9.493333pt;}
._1a_c00422{margin-left:-8.589365pt;}
._17_c00422{margin-left:-6.450616pt;}
._19_c00422{margin-left:-5.063872pt;}
._18_c00422{margin-left:-3.247973pt;}
._1_c00422{margin-left:-2.133333pt;}
._0_c00422{margin-left:-1.226667pt;}
._6_c00422{width:0.960000pt;}
._7_c00422{width:2.026667pt;}
._b_c00422{width:2.933333pt;}
._e_c00422{width:3.840000pt;}
._c_c00422{width:5.066667pt;}
._d_c00422{width:5.973333pt;}
._5_c00422{width:6.933333pt;}
._2_c00422{width:8.266667pt;}
._a_c00422{width:9.600000pt;}
._3_c00422{width:10.933333pt;}
._13_c00422{width:12.426667pt;}
._1c_c00422{width:13.485320pt;}
._11_c00422{width:14.453333pt;}
._10_c00422{width:15.573333pt;}
._f_c00422{width:16.800000pt;}
._12_c00422{width:18.133333pt;}
._14_c00422{width:19.306667pt;}
._16_c00422{width:20.453333pt;}
._1b_c00422{width:21.519981pt;}
._15_c00422{width:22.853325pt;}
.fs1_c00422{font-size:45.333333pt;}
.fs0_c00422{font-size:53.333333pt;}
.y0_c00422{bottom:0.000000pt;}
.y2c_c00422{bottom:57.600020pt;}
.y2b_c00422{bottom:98.266686pt;}
.y2a_c00422{bottom:111.666686pt;}
.y29_c00422{bottom:125.133353pt;}
.y28_c00422{bottom:138.600020pt;}
.y27_c00422{bottom:152.666686pt;}
.y26_c00422{bottom:165.800020pt;}
.y25_c00422{bottom:179.533353pt;}
.y24_c00422{bottom:193.000020pt;}
.y23_c00422{bottom:206.733353pt;}
.y22_c00422{bottom:220.466686pt;}
.y21_c00422{bottom:234.266686pt;}
.y20_c00422{bottom:247.400020pt;}
.y1f_c00422{bottom:261.133353pt;}
.y1e_c00422{bottom:274.600020pt;}
.y1d_c00422{bottom:288.666686pt;}
.y1c_c00422{bottom:301.800020pt;}
.y1b_c00422{bottom:315.866686pt;}
.y1a_c00422{bottom:329.266686pt;}
.y19_c00422{bottom:342.733353pt;}
.y18_c00422{bottom:356.200020pt;}
.y17_c00422{bottom:369.933353pt;}
.y16_c00422{bottom:383.400020pt;}
.y15_c00422{bottom:397.133353pt;}
.y13_c00422{bottom:440.000020pt;}
.y12_c00422{bottom:457.600020pt;}
.y11_c00422{bottom:474.600020pt;}
.y10_c00422{bottom:491.866686pt;}
.yf_c00422{bottom:509.133353pt;}
.ye_c00422{bottom:526.400020pt;}
.yd_c00422{bottom:543.666686pt;}
.yc_c00422{bottom:561.266686pt;}
.yb_c00422{bottom:578.600020pt;}
.ya_c00422{bottom:595.866686pt;}
.y9_c00422{bottom:613.133353pt;}
.y8_c00422{bottom:630.400020pt;}
.y7_c00422{bottom:647.400020pt;}
.y6_c00422{bottom:665.000020pt;}
.y5_c00422{bottom:682.266686pt;}
.y4_c00422{bottom:698.866686pt;}
.y3_c00422{bottom:716.200020pt;}
.y2_c00422{bottom:733.800020pt;}
.y1_c00422{bottom:751.066686pt;}
.y14_c00422{bottom:788.333353pt;}
.h3_c00422{height:44.470052pt;}
.h4_c00422{height:44.492188pt;}
.h2_c00422{height:52.343750pt;}
.h1_c00422{height:851.333333pt;}
.h0_c00422{height:851.533333pt;}
.w1_c00422{width:572.000000pt;}
.w0_c00422{width:572.133333pt;}
.x0_c00422{left:0.000000pt;}
.x2_c00422{left:80.333333pt;}
.x1_c00422{left:81.600000pt;}
.x4_c00422{left:86.733333pt;}
.x3_c00422{left:95.066667pt;}
.x5_c00422{left:115.866667pt;}
.x6_c00422{left:117.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_57c3c1eb80784fa304315b33.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00423;src:url('chunks/assets/font_752020d4a2e4741c88f4f97d.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00423{letter-spacing:0.000000px;}
.sc__c00423{text-shadow:none;}
.sc0_c00423{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00423{-webkit-text-stroke:0px transparent;}
.sc0_c00423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00423{word-spacing:-15.000000px;}
.ws0_c00423{word-spacing:-12.750000px;}
.ws2_c00423{word-spacing:0.000000px;}
._16_c00423{margin-left:-15.126636px;}
._d_c00423{margin-left:-14.094036px;}
._c_c00423{margin-left:-12.905964px;}
._11_c00423{margin-left:-11.045460px;}
._18_c00423{margin-left:-9.396906px;}
._15_c00423{margin-left:-8.019666px;}
._14_c00423{margin-left:-5.955024px;}
._13_c00423{margin-left:-4.084464px;}
._1_c00423{margin-left:-2.879766px;}
._2_c00423{margin-left:-1.448910px;}
._0_c00423{width:1.850994px;}
._6_c00423{width:2.940000px;}
._12_c00423{width:4.119000px;}
._3_c00423{width:5.232048px;}
._e_c00423{width:6.563784px;}
._a_c00423{width:8.145030px;}
._5_c00423{width:9.252048px;}
._4_c00423{width:10.440000px;}
._7_c00423{width:12.480000px;}
._8_c00423{width:13.598970px;}
._b_c00423{width:16.101174px;}
._9_c00423{width:17.109006px;}
._f_c00423{width:19.716024px;}
._10_c00423{width:22.931952px;}
._1a_c00423{width:25.007442px;}
._19_c00423{width:26.276526px;}
._17_c00423{width:29.138187px;}
.fc1_c00423{color:transparent;}
.fc0_c00423{color:rgb(35,31,32);}
.fs0_c00423{font-size:51.000000px;}
.fs1_c00423{font-size:60.000000px;}
.y0_c00423{bottom:0.000000px;}
.y28_c00423{bottom:64.425022px;}
.y27_c00423{bottom:110.550022px;}
.y26_c00423{bottom:125.625022px;}
.y25_c00423{bottom:140.775022px;}
.y24_c00423{bottom:155.925022px;}
.y23_c00423{bottom:171.750022px;}
.y22_c00423{bottom:186.825022px;}
.y21_c00423{bottom:202.350022px;}
.y20_c00423{bottom:217.425022px;}
.y1f_c00423{bottom:232.575022px;}
.y1e_c00423{bottom:247.725022px;}
.y1d_c00423{bottom:263.175022px;}
.y1c_c00423{bottom:278.325022px;}
.y1b_c00423{bottom:293.775022px;}
.y1a_c00423{bottom:334.125022px;}
.y19_c00423{bottom:353.175022px;}
.y18_c00423{bottom:372.975022px;}
.y17_c00423{bottom:407.175022px;}
.y16_c00423{bottom:456.525022px;}
.y15_c00423{bottom:475.950022px;}
.y14_c00423{bottom:495.375022px;}
.y13_c00423{bottom:514.425022px;}
.y12_c00423{bottom:534.225022px;}
.y11_c00423{bottom:553.350022px;}
.y10_c00423{bottom:572.775022px;}
.yf_c00423{bottom:592.200022px;}
.ye_c00423{bottom:611.625022px;}
.yd_c00423{bottom:631.125022px;}
.yc_c00423{bottom:650.925022px;}
.yb_c00423{bottom:670.350022px;}
.ya_c00423{bottom:689.400022px;}
.y9_c00423{bottom:709.200022px;}
.y8_c00423{bottom:728.625022px;}
.y7_c00423{bottom:747.750022px;}
.y6_c00423{bottom:767.175022px;}
.y5_c00423{bottom:786.600022px;}
.y4_c00423{bottom:806.025022px;}
.y3_c00423{bottom:825.150022px;}
.y2_c00423{bottom:844.575022px;}
.y1_c00423{bottom:886.725022px;}
.h2_c00423{height:50.028809px;}
.h4_c00423{height:50.053711px;}
.h3_c00423{height:58.886719px;}
.h1_c00423{height:957.750000px;}
.h0_c00423{height:957.975000px;}
.w0_c00423{width:641.850030px;}
.w1_c00423{width:642.000000px;}
.x0_c00423{left:0.000000px;}
.x3_c00423{left:80.250000px;}
.x2_c00423{left:81.375000px;}
.x4_c00423{left:87.825000px;}
.x5_c00423{left:120.225000px;}
.x6_c00423{left:121.350000px;}
.x1_c00423{left:229.350000px;}
.x7_c00423{left:531.000000px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls0_c00423{letter-spacing:0.000000pt;}
.ws1_c00423{word-spacing:-13.333333pt;}
.ws0_c00423{word-spacing:-11.333333pt;}
.ws2_c00423{word-spacing:0.000000pt;}
._16_c00423{margin-left:-13.445899pt;}
._d_c00423{margin-left:-12.528032pt;}
._c_c00423{margin-left:-11.471968pt;}
._11_c00423{margin-left:-9.818187pt;}
._18_c00423{margin-left:-8.352805pt;}
._15_c00423{margin-left:-7.128592pt;}
._14_c00423{margin-left:-5.293355pt;}
._13_c00423{margin-left:-3.630635pt;}
._1_c00423{margin-left:-2.559792pt;}
._2_c00423{margin-left:-1.287920pt;}
._0_c00423{width:1.645328pt;}
._6_c00423{width:2.613333pt;}
._12_c00423{width:3.661333pt;}
._3_c00423{width:4.650709pt;}
._e_c00423{width:5.834475pt;}
._a_c00423{width:7.240027pt;}
._5_c00423{width:8.224043pt;}
._4_c00423{width:9.280000pt;}
._7_c00423{width:11.093333pt;}
._8_c00423{width:12.087973pt;}
._b_c00423{width:14.312155pt;}
._9_c00423{width:15.208005pt;}
._f_c00423{width:17.525355pt;}
._10_c00423{width:20.383957pt;}
._1a_c00423{width:22.228837pt;}
._19_c00423{width:23.356912pt;}
._17_c00423{width:25.900611pt;}
.fs0_c00423{font-size:45.333333pt;}
.fs1_c00423{font-size:53.333333pt;}
.y0_c00423{bottom:0.000000pt;}
.y28_c00423{bottom:57.266686pt;}
.y27_c00423{bottom:98.266686pt;}
.y26_c00423{bottom:111.666686pt;}
.y25_c00423{bottom:125.133353pt;}
.y24_c00423{bottom:138.600020pt;}
.y23_c00423{bottom:152.666686pt;}
.y22_c00423{bottom:166.066686pt;}
.y21_c00423{bottom:179.866686pt;}
.y20_c00423{bottom:193.266686pt;}
.y1f_c00423{bottom:206.733353pt;}
.y1e_c00423{bottom:220.200020pt;}
.y1d_c00423{bottom:233.933353pt;}
.y1c_c00423{bottom:247.400020pt;}
.y1b_c00423{bottom:261.133353pt;}
.y1a_c00423{bottom:297.000020pt;}
.y19_c00423{bottom:313.933353pt;}
.y18_c00423{bottom:331.533353pt;}
.y17_c00423{bottom:361.933353pt;}
.y16_c00423{bottom:405.800020pt;}
.y15_c00423{bottom:423.066686pt;}
.y14_c00423{bottom:440.333353pt;}
.y13_c00423{bottom:457.266686pt;}
.y12_c00423{bottom:474.866686pt;}
.y11_c00423{bottom:491.866686pt;}
.y10_c00423{bottom:509.133353pt;}
.yf_c00423{bottom:526.400020pt;}
.ye_c00423{bottom:543.666686pt;}
.yd_c00423{bottom:561.000020pt;}
.yc_c00423{bottom:578.600020pt;}
.yb_c00423{bottom:595.866686pt;}
.ya_c00423{bottom:612.800020pt;}
.y9_c00423{bottom:630.400020pt;}
.y8_c00423{bottom:647.666686pt;}
.y7_c00423{bottom:664.666686pt;}
.y6_c00423{bottom:681.933353pt;}
.y5_c00423{bottom:699.200020pt;}
.y4_c00423{bottom:716.466686pt;}
.y3_c00423{bottom:733.466686pt;}
.y2_c00423{bottom:750.733353pt;}
.y1_c00423{bottom:788.200020pt;}
.h2_c00423{height:44.470052pt;}
.h4_c00423{height:44.492188pt;}
.h3_c00423{height:52.343750pt;}
.h1_c00423{height:851.333333pt;}
.h0_c00423{height:851.533333pt;}
.w0_c00423{width:570.533360pt;}
.w1_c00423{width:570.666667pt;}
.x0_c00423{left:0.000000pt;}
.x3_c00423{left:71.333333pt;}
.x2_c00423{left:72.333333pt;}
.x4_c00423{left:78.066667pt;}
.x5_c00423{left:106.866667pt;}
.x6_c00423{left:107.866667pt;}
.x1_c00423{left:203.866667pt;}
.x7_c00423{left:472.000000pt;}
}





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

.ir_c00424:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00424{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00424;src:url('chunks/assets/font_42d49b5cb908cc3bcbb44190.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00424;src:url('chunks/assets/font_3843d1c40e06040ae37bd73f.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;}
.m0_c00424{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00424{vertical-align:0.000000px;}
.ls0_c00424{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00424{word-spacing:-15.000000px;}
.ws1_c00424{word-spacing:0.000000px;}
._10_c00424{margin-left:-9.300000px;}
._13_c00424{margin-left:-6.780000px;}
._a_c00424{margin-left:-4.440000px;}
._b_c00424{margin-left:-3.300000px;}
._c_c00424{margin-left:-2.100000px;}
._7_c00424{margin-left:-1.020000px;}
._3_c00424{width:1.140000px;}
._5_c00424{width:2.160000px;}
._1_c00424{width:3.300000px;}
._9_c00424{width:4.920000px;}
._2_c00424{width:6.000000px;}
._0_c00424{width:7.140000px;}
._4_c00424{width:9.000000px;}
._8_c00424{width:10.140000px;}
._12_c00424{width:11.280000px;}
._6_c00424{width:12.300000px;}
._f_c00424{width:13.680000px;}
._11_c00424{width:16.740000px;}
._d_c00424{width:18.840000px;}
._e_c00424{width:20.700000px;}
.fc1_c00424{color:transparent;}
.fc0_c00424{color:rgb(35,31,32);}
.fs1_c00424{font-size:51.000000px;}
.fs0_c00424{font-size:60.000000px;}
.y0_c00424{bottom:0.000000px;}
.y27_c00424{bottom:64.800022px;}
.y25_c00424{bottom:145.425022px;}
.y24_c00424{bottom:164.925022px;}
.y23_c00424{bottom:184.725022px;}
.y22_c00424{bottom:204.150022px;}
.y21_c00424{bottom:223.575022px;}
.y20_c00424{bottom:242.625022px;}
.y1f_c00424{bottom:262.125022px;}
.y1e_c00424{bottom:281.925022px;}
.y1d_c00424{bottom:301.350022px;}
.y1c_c00424{bottom:320.025022px;}
.y1b_c00424{bottom:339.825022px;}
.y1a_c00424{bottom:359.325022px;}
.y19_c00424{bottom:378.750022px;}
.y18_c00424{bottom:398.175022px;}
.y17_c00424{bottom:417.225022px;}
.y16_c00424{bottom:436.725022px;}
.y15_c00424{bottom:456.525022px;}
.y14_c00424{bottom:475.575022px;}
.y13_c00424{bottom:495.375022px;}
.y12_c00424{bottom:514.800022px;}
.y11_c00424{bottom:533.925022px;}
.y10_c00424{bottom:553.725022px;}
.yf_c00424{bottom:572.775022px;}
.ye_c00424{bottom:592.200022px;}
.yd_c00424{bottom:612.000022px;}
.yc_c00424{bottom:631.125022px;}
.yb_c00424{bottom:650.625022px;}
.ya_c00424{bottom:670.050022px;}
.y9_c00424{bottom:689.475022px;}
.y8_c00424{bottom:708.900022px;}
.y7_c00424{bottom:728.325022px;}
.y6_c00424{bottom:747.750022px;}
.y5_c00424{bottom:767.175022px;}
.y4_c00424{bottom:786.600022px;}
.y3_c00424{bottom:806.025022px;}
.y2_c00424{bottom:825.150022px;}
.y1_c00424{bottom:844.950022px;}
.y26_c00424{bottom:886.875022px;}
.h3_c00424{height:50.028809px;}
.h2_c00424{height:58.886719px;}
.h1_c00424{height:957.750000px;}
.h0_c00424{height:957.975000px;}
.w1_c00424{width:643.500000px;}
.w0_c00424{width:643.650000px;}
.x0_c00424{left:0.000000px;}
.x1_c00424{left:91.050000px;}
.x2_c00424{left:107.250000px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls0_c00424{letter-spacing:0.000000pt;}
.ws0_c00424{word-spacing:-13.333333pt;}
.ws1_c00424{word-spacing:0.000000pt;}
._10_c00424{margin-left:-8.266667pt;}
._13_c00424{margin-left:-6.026667pt;}
._a_c00424{margin-left:-3.946667pt;}
._b_c00424{margin-left:-2.933333pt;}
._c_c00424{margin-left:-1.866667pt;}
._7_c00424{margin-left:-0.906667pt;}
._3_c00424{width:1.013333pt;}
._5_c00424{width:1.920000pt;}
._1_c00424{width:2.933333pt;}
._9_c00424{width:4.373333pt;}
._2_c00424{width:5.333333pt;}
._0_c00424{width:6.346667pt;}
._4_c00424{width:8.000000pt;}
._8_c00424{width:9.013333pt;}
._12_c00424{width:10.026667pt;}
._6_c00424{width:10.933333pt;}
._f_c00424{width:12.160000pt;}
._11_c00424{width:14.880000pt;}
._d_c00424{width:16.746667pt;}
._e_c00424{width:18.400000pt;}
.fs1_c00424{font-size:45.333333pt;}
.fs0_c00424{font-size:53.333333pt;}
.y0_c00424{bottom:0.000000pt;}
.y27_c00424{bottom:57.600020pt;}
.y25_c00424{bottom:129.266686pt;}
.y24_c00424{bottom:146.600020pt;}
.y23_c00424{bottom:164.200020pt;}
.y22_c00424{bottom:181.466686pt;}
.y21_c00424{bottom:198.733353pt;}
.y20_c00424{bottom:215.666686pt;}
.y1f_c00424{bottom:233.000020pt;}
.y1e_c00424{bottom:250.600020pt;}
.y1d_c00424{bottom:267.866686pt;}
.y1c_c00424{bottom:284.466686pt;}
.y1b_c00424{bottom:302.066686pt;}
.y1a_c00424{bottom:319.400020pt;}
.y19_c00424{bottom:336.666686pt;}
.y18_c00424{bottom:353.933353pt;}
.y17_c00424{bottom:370.866686pt;}
.y16_c00424{bottom:388.200020pt;}
.y15_c00424{bottom:405.800020pt;}
.y14_c00424{bottom:422.733353pt;}
.y13_c00424{bottom:440.333353pt;}
.y12_c00424{bottom:457.600020pt;}
.y11_c00424{bottom:474.600020pt;}
.y10_c00424{bottom:492.200020pt;}
.yf_c00424{bottom:509.133353pt;}
.ye_c00424{bottom:526.400020pt;}
.yd_c00424{bottom:544.000020pt;}
.yc_c00424{bottom:561.000020pt;}
.yb_c00424{bottom:578.333353pt;}
.ya_c00424{bottom:595.600020pt;}
.y9_c00424{bottom:612.866686pt;}
.y8_c00424{bottom:630.133353pt;}
.y7_c00424{bottom:647.400020pt;}
.y6_c00424{bottom:664.666686pt;}
.y5_c00424{bottom:681.933353pt;}
.y4_c00424{bottom:699.200020pt;}
.y3_c00424{bottom:716.466686pt;}
.y2_c00424{bottom:733.466686pt;}
.y1_c00424{bottom:751.066686pt;}
.y26_c00424{bottom:788.333353pt;}
.h3_c00424{height:44.470052pt;}
.h2_c00424{height:52.343750pt;}
.h1_c00424{height:851.333333pt;}
.h0_c00424{height:851.533333pt;}
.w1_c00424{width:572.000000pt;}
.w0_c00424{width:572.133333pt;}
.x0_c00424{left:0.000000pt;}
.x1_c00424{left:80.933333pt;}
.x2_c00424{left:95.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6157339cfde1417df25aa453.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00425;src:url('chunks/assets/font_b32c26591a3673c8a6475116.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00425{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00425{letter-spacing:0.000000px;}
.sc__c00425{text-shadow:none;}
.sc0_c00425{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00425{-webkit-text-stroke:0px transparent;}
.sc0_c00425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00425{word-spacing:-15.000000px;}
.ws0_c00425{word-spacing:-12.750000px;}
.ws2_c00425{word-spacing:0.000000px;}
._d_c00425{margin-left:-11.700000px;}
._c_c00425{margin-left:-10.140000px;}
._18_c00425{margin-left:-8.909895px;}
._15_c00425{margin-left:-6.600000px;}
._16_c00425{margin-left:-4.560000px;}
._7_c00425{margin-left:-3.360000px;}
._6_c00425{margin-left:-2.040000px;}
._17_c00425{margin-left:-1.020000px;}
._0_c00425{width:1.020000px;}
._4_c00425{width:2.100000px;}
._3_c00425{width:3.300000px;}
._f_c00425{width:5.100000px;}
._2_c00425{width:6.120000px;}
._5_c00425{width:7.260000px;}
._1_c00425{width:8.820000px;}
._8_c00425{width:10.260000px;}
._9_c00425{width:11.520000px;}
._10_c00425{width:13.080000px;}
._13_c00425{width:16.260000px;}
._11_c00425{width:17.820000px;}
._b_c00425{width:18.900000px;}
._12_c00425{width:20.340000px;}
._14_c00425{width:22.260000px;}
._e_c00425{width:23.700000px;}
._a_c00425{width:25.500000px;}
.fc1_c00425{color:transparent;}
.fc0_c00425{color:rgb(35,31,32);}
.fs1_c00425{font-size:51.000000px;}
.fs0_c00425{font-size:60.000000px;}
.y0_c00425{bottom:0.000000px;}
.y25_c00425{bottom:64.425022px;}
.y24_c00425{bottom:110.175022px;}
.y23_c00425{bottom:125.325022px;}
.y22_c00425{bottom:140.775022px;}
.y21_c00425{bottom:155.925022px;}
.y20_c00425{bottom:171.375022px;}
.y1f_c00425{bottom:186.825022px;}
.y1e_c00425{bottom:201.975022px;}
.y1d_c00425{bottom:217.125022px;}
.y1b_c00425{bottom:321.150022px;}
.y1a_c00425{bottom:340.575022px;}
.y19_c00425{bottom:360.375022px;}
.y18_c00425{bottom:379.800022px;}
.y17_c00425{bottom:399.225022px;}
.y16_c00425{bottom:418.350022px;}
.y15_c00425{bottom:438.150022px;}
.y14_c00425{bottom:457.200022px;}
.y13_c00425{bottom:476.625022px;}
.y12_c00425{bottom:496.425022px;}
.y11_c00425{bottom:515.550022px;}
.y10_c00425{bottom:534.975022px;}
.yf_c00425{bottom:554.775022px;}
.ye_c00425{bottom:573.825022px;}
.yd_c00425{bottom:593.625022px;}
.yc_c00425{bottom:612.750022px;}
.yb_c00425{bottom:632.175022px;}
.ya_c00425{bottom:651.600022px;}
.y9_c00425{bottom:670.725022px;}
.y8_c00425{bottom:690.525022px;}
.y7_c00425{bottom:709.950022px;}
.y6_c00425{bottom:729.375022px;}
.y5_c00425{bottom:748.800022px;}
.y4_c00425{bottom:768.225022px;}
.y3_c00425{bottom:787.350022px;}
.y2_c00425{bottom:806.775022px;}
.y1_c00425{bottom:845.325022px;}
.y1c_c00425{bottom:886.875022px;}
.h3_c00425{height:50.028809px;}
.h4_c00425{height:50.053711px;}
.h2_c00425{height:58.886719px;}
.h1_c00425{height:957.750000px;}
.h0_c00425{height:957.975000px;}
.w0_c00425{width:641.850030px;}
.w1_c00425{width:642.000000px;}
.x0_c00425{left:0.000000px;}
.x2_c00425{left:80.250000px;}
.x1_c00425{left:81.375000px;}
.x5_c00425{left:87.825000px;}
.x3_c00425{left:97.200000px;}
.x6_c00425{left:121.350000px;}
.x4_c00425{left:200.850000px;}
.x7_c00425{left:531.000000px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls0_c00425{letter-spacing:0.000000pt;}
.ws1_c00425{word-spacing:-13.333333pt;}
.ws0_c00425{word-spacing:-11.333333pt;}
.ws2_c00425{word-spacing:0.000000pt;}
._d_c00425{margin-left:-10.400000pt;}
._c_c00425{margin-left:-9.013333pt;}
._18_c00425{margin-left:-7.919907pt;}
._15_c00425{margin-left:-5.866667pt;}
._16_c00425{margin-left:-4.053333pt;}
._7_c00425{margin-left:-2.986667pt;}
._6_c00425{margin-left:-1.813333pt;}
._17_c00425{margin-left:-0.906667pt;}
._0_c00425{width:0.906667pt;}
._4_c00425{width:1.866667pt;}
._3_c00425{width:2.933333pt;}
._f_c00425{width:4.533333pt;}
._2_c00425{width:5.440000pt;}
._5_c00425{width:6.453333pt;}
._1_c00425{width:7.840000pt;}
._8_c00425{width:9.120000pt;}
._9_c00425{width:10.240000pt;}
._10_c00425{width:11.626667pt;}
._13_c00425{width:14.453333pt;}
._11_c00425{width:15.840000pt;}
._b_c00425{width:16.800000pt;}
._12_c00425{width:18.080000pt;}
._14_c00425{width:19.786667pt;}
._e_c00425{width:21.066667pt;}
._a_c00425{width:22.666667pt;}
.fs1_c00425{font-size:45.333333pt;}
.fs0_c00425{font-size:53.333333pt;}
.y0_c00425{bottom:0.000000pt;}
.y25_c00425{bottom:57.266686pt;}
.y24_c00425{bottom:97.933353pt;}
.y23_c00425{bottom:111.400020pt;}
.y22_c00425{bottom:125.133353pt;}
.y21_c00425{bottom:138.600020pt;}
.y20_c00425{bottom:152.333353pt;}
.y1f_c00425{bottom:166.066686pt;}
.y1e_c00425{bottom:179.533353pt;}
.y1d_c00425{bottom:193.000020pt;}
.y1b_c00425{bottom:285.466686pt;}
.y1a_c00425{bottom:302.733353pt;}
.y19_c00425{bottom:320.333353pt;}
.y18_c00425{bottom:337.600020pt;}
.y17_c00425{bottom:354.866686pt;}
.y16_c00425{bottom:371.866686pt;}
.y15_c00425{bottom:389.466686pt;}
.y14_c00425{bottom:406.400020pt;}
.y13_c00425{bottom:423.666686pt;}
.y12_c00425{bottom:441.266686pt;}
.y11_c00425{bottom:458.266686pt;}
.y10_c00425{bottom:475.533353pt;}
.yf_c00425{bottom:493.133353pt;}
.ye_c00425{bottom:510.066686pt;}
.yd_c00425{bottom:527.666686pt;}
.yc_c00425{bottom:544.666686pt;}
.yb_c00425{bottom:561.933353pt;}
.ya_c00425{bottom:579.200020pt;}
.y9_c00425{bottom:596.200020pt;}
.y8_c00425{bottom:613.800020pt;}
.y7_c00425{bottom:631.066686pt;}
.y6_c00425{bottom:648.333353pt;}
.y5_c00425{bottom:665.600020pt;}
.y4_c00425{bottom:682.866686pt;}
.y3_c00425{bottom:699.866686pt;}
.y2_c00425{bottom:717.133353pt;}
.y1_c00425{bottom:751.400020pt;}
.y1c_c00425{bottom:788.333353pt;}
.h3_c00425{height:44.470052pt;}
.h4_c00425{height:44.492188pt;}
.h2_c00425{height:52.343750pt;}
.h1_c00425{height:851.333333pt;}
.h0_c00425{height:851.533333pt;}
.w0_c00425{width:570.533360pt;}
.w1_c00425{width:570.666667pt;}
.x0_c00425{left:0.000000pt;}
.x2_c00425{left:71.333333pt;}
.x1_c00425{left:72.333333pt;}
.x5_c00425{left:78.066667pt;}
.x3_c00425{left:86.400000pt;}
.x6_c00425{left:107.866667pt;}
.x4_c00425{left:178.533333pt;}
.x7_c00425{left:472.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_da21c51ce94835fa6a9ad672.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00426;src:url('chunks/assets/font_687ab20427d0b8e34d6c885b.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00426{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00426{letter-spacing:0.000000px;}
.sc__c00426{text-shadow:none;}
.sc0_c00426{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00426{-webkit-text-stroke:0px transparent;}
.sc0_c00426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00426{word-spacing:-15.000000px;}
.ws1_c00426{word-spacing:-12.750000px;}
.ws2_c00426{word-spacing:0.000000px;}
._10_c00426{margin-left:-15.960000px;}
._0_c00426{margin-left:-11.700000px;}
._e_c00426{margin-left:-10.500000px;}
._14_c00426{margin-left:-9.300000px;}
._12_c00426{margin-left:-8.220000px;}
._17_c00426{margin-left:-7.020000px;}
._1_c00426{margin-left:-6.000000px;}
._15_c00426{margin-left:-4.560000px;}
._18_c00426{margin-left:-3.540000px;}
._4_c00426{margin-left:-2.040000px;}
._13_c00426{margin-left:-1.020000px;}
._3_c00426{width:1.140000px;}
._6_c00426{width:2.220000px;}
._5_c00426{width:3.360000px;}
._16_c00426{width:5.100000px;}
._2_c00426{width:6.600000px;}
._8_c00426{width:8.220000px;}
._9_c00426{width:9.660000px;}
._a_c00426{width:10.980000px;}
._7_c00426{width:12.060000px;}
._11_c00426{width:13.320000px;}
._1c_c00426{width:15.150033px;}
._b_c00426{width:17.100000px;}
._c_c00426{width:18.240000px;}
._d_c00426{width:19.980000px;}
._f_c00426{width:21.840000px;}
._1a_c00426{width:24.990000px;}
._19_c00426{width:26.669991px;}
._1b_c00426{width:27.767874px;}
.fc1_c00426{color:transparent;}
.fc0_c00426{color:rgb(35,31,32);}
.fs1_c00426{font-size:51.000000px;}
.fs0_c00426{font-size:60.000000px;}
.y0_c00426{bottom:0.000000px;}
.y2b_c00426{bottom:64.425022px;}
.y2a_c00426{bottom:110.175022px;}
.y29_c00426{bottom:125.325022px;}
.y28_c00426{bottom:141.150022px;}
.y27_c00426{bottom:156.225022px;}
.y26_c00426{bottom:171.750022px;}
.y25_c00426{bottom:186.525022px;}
.y24_c00426{bottom:202.350022px;}
.y23_c00426{bottom:217.125022px;}
.y22_c00426{bottom:232.950022px;}
.y21_c00426{bottom:247.725022px;}
.y20_c00426{bottom:263.175022px;}
.y1f_c00426{bottom:278.625022px;}
.y1e_c00426{bottom:293.775022px;}
.y1d_c00426{bottom:308.925022px;}
.y1c_c00426{bottom:324.750022px;}
.y1b_c00426{bottom:339.525022px;}
.y1a_c00426{bottom:354.975022px;}
.y19_c00426{bottom:370.125022px;}
.y18_c00426{bottom:385.575022px;}
.y17_c00426{bottom:400.725022px;}
.y16_c00426{bottom:416.550022px;}
.y15_c00426{bottom:431.325022px;}
.y14_c00426{bottom:446.775022px;}
.y13_c00426{bottom:461.925022px;}
.y11_c00426{bottom:519.150022px;}
.y10_c00426{bottom:538.575022px;}
.yf_c00426{bottom:558.075022px;}
.ye_c00426{bottom:577.500022px;}
.yd_c00426{bottom:596.925022px;}
.yc_c00426{bottom:616.350022px;}
.yb_c00426{bottom:636.150022px;}
.ya_c00426{bottom:655.125022px;}
.y9_c00426{bottom:674.625022px;}
.y8_c00426{bottom:694.125022px;}
.y7_c00426{bottom:713.925022px;}
.y6_c00426{bottom:732.975022px;}
.y5_c00426{bottom:752.400022px;}
.y4_c00426{bottom:772.200022px;}
.y3_c00426{bottom:791.325022px;}
.y2_c00426{bottom:811.125022px;}
.y1_c00426{bottom:845.325022px;}
.y12_c00426{bottom:886.875022px;}
.h3_c00426{height:50.028809px;}
.h4_c00426{height:50.053711px;}
.h2_c00426{height:58.886719px;}
.h1_c00426{height:957.750000px;}
.h0_c00426{height:957.975000px;}
.w1_c00426{width:643.500000px;}
.w0_c00426{width:643.650000px;}
.x0_c00426{left:0.000000px;}
.x2_c00426{left:90.375000px;}
.x1_c00426{left:91.800000px;}
.x3_c00426{left:97.575000px;}
.x5_c00426{left:130.350000px;}
.x4_c00426{left:131.400000px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls0_c00426{letter-spacing:0.000000pt;}
.ws0_c00426{word-spacing:-13.333333pt;}
.ws1_c00426{word-spacing:-11.333333pt;}
.ws2_c00426{word-spacing:0.000000pt;}
._10_c00426{margin-left:-14.186667pt;}
._0_c00426{margin-left:-10.400000pt;}
._e_c00426{margin-left:-9.333333pt;}
._14_c00426{margin-left:-8.266667pt;}
._12_c00426{margin-left:-7.306667pt;}
._17_c00426{margin-left:-6.240000pt;}
._1_c00426{margin-left:-5.333333pt;}
._15_c00426{margin-left:-4.053333pt;}
._18_c00426{margin-left:-3.146667pt;}
._4_c00426{margin-left:-1.813333pt;}
._13_c00426{margin-left:-0.906667pt;}
._3_c00426{width:1.013333pt;}
._6_c00426{width:1.973333pt;}
._5_c00426{width:2.986667pt;}
._16_c00426{width:4.533333pt;}
._2_c00426{width:5.866667pt;}
._8_c00426{width:7.306667pt;}
._9_c00426{width:8.586667pt;}
._a_c00426{width:9.760000pt;}
._7_c00426{width:10.720000pt;}
._11_c00426{width:11.840000pt;}
._1c_c00426{width:13.466696pt;}
._b_c00426{width:15.200000pt;}
._c_c00426{width:16.213333pt;}
._d_c00426{width:17.760000pt;}
._f_c00426{width:19.413333pt;}
._1a_c00426{width:22.213333pt;}
._19_c00426{width:23.706659pt;}
._1b_c00426{width:24.682555pt;}
.fs1_c00426{font-size:45.333333pt;}
.fs0_c00426{font-size:53.333333pt;}
.y0_c00426{bottom:0.000000pt;}
.y2b_c00426{bottom:57.266686pt;}
.y2a_c00426{bottom:97.933353pt;}
.y29_c00426{bottom:111.400020pt;}
.y28_c00426{bottom:125.466686pt;}
.y27_c00426{bottom:138.866686pt;}
.y26_c00426{bottom:152.666686pt;}
.y25_c00426{bottom:165.800020pt;}
.y24_c00426{bottom:179.866686pt;}
.y23_c00426{bottom:193.000020pt;}
.y22_c00426{bottom:207.066686pt;}
.y21_c00426{bottom:220.200020pt;}
.y20_c00426{bottom:233.933353pt;}
.y1f_c00426{bottom:247.666686pt;}
.y1e_c00426{bottom:261.133353pt;}
.y1d_c00426{bottom:274.600020pt;}
.y1c_c00426{bottom:288.666686pt;}
.y1b_c00426{bottom:301.800020pt;}
.y1a_c00426{bottom:315.533353pt;}
.y19_c00426{bottom:329.000020pt;}
.y18_c00426{bottom:342.733353pt;}
.y17_c00426{bottom:356.200020pt;}
.y16_c00426{bottom:370.266686pt;}
.y15_c00426{bottom:383.400020pt;}
.y14_c00426{bottom:397.133353pt;}
.y13_c00426{bottom:410.600020pt;}
.y11_c00426{bottom:461.466686pt;}
.y10_c00426{bottom:478.733353pt;}
.yf_c00426{bottom:496.066686pt;}
.ye_c00426{bottom:513.333353pt;}
.yd_c00426{bottom:530.600020pt;}
.yc_c00426{bottom:547.866686pt;}
.yb_c00426{bottom:565.466686pt;}
.ya_c00426{bottom:582.333353pt;}
.y9_c00426{bottom:599.666686pt;}
.y8_c00426{bottom:617.000020pt;}
.y7_c00426{bottom:634.600020pt;}
.y6_c00426{bottom:651.533353pt;}
.y5_c00426{bottom:668.800020pt;}
.y4_c00426{bottom:686.400020pt;}
.y3_c00426{bottom:703.400020pt;}
.y2_c00426{bottom:721.000020pt;}
.y1_c00426{bottom:751.400020pt;}
.y12_c00426{bottom:788.333353pt;}
.h3_c00426{height:44.470052pt;}
.h4_c00426{height:44.492188pt;}
.h2_c00426{height:52.343750pt;}
.h1_c00426{height:851.333333pt;}
.h0_c00426{height:851.533333pt;}
.w1_c00426{width:572.000000pt;}
.w0_c00426{width:572.133333pt;}
.x0_c00426{left:0.000000pt;}
.x2_c00426{left:80.333333pt;}
.x1_c00426{left:81.600000pt;}
.x3_c00426{left:86.733333pt;}
.x5_c00426{left:115.866667pt;}
.x4_c00426{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aa99b8a5627dec8a1e4ef11b.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00427;src:url('chunks/assets/font_16b2840ae50d857a07558953.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00427{letter-spacing:0.000000px;}
.sc__c00427{text-shadow:none;}
.sc0_c00427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00427{-webkit-text-stroke:0px transparent;}
.sc0_c00427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00427{word-spacing:-15.000000px;}
.ws1_c00427{word-spacing:-12.750000px;}
.ws2_c00427{word-spacing:0.000000px;}
._13_c00427{margin-left:-15.420000px;}
._1b_c00427{margin-left:-11.049072px;}
._b_c00427{margin-left:-9.900000px;}
._a_c00427{margin-left:-8.220000px;}
._18_c00427{margin-left:-6.282021px;}
._14_c00427{margin-left:-5.220000px;}
._c_c00427{margin-left:-4.080000px;}
._15_c00427{margin-left:-2.940000px;}
._0_c00427{margin-left:-1.920000px;}
._3_c00427{width:1.320000px;}
._2_c00427{width:2.340000px;}
._5_c00427{width:3.420000px;}
._7_c00427{width:5.400000px;}
._1_c00427{width:6.960000px;}
._4_c00427{width:8.220000px;}
._9_c00427{width:9.240000px;}
._6_c00427{width:10.800000px;}
._8_c00427{width:12.600000px;}
._d_c00427{width:13.920000px;}
._17_c00427{width:15.153276px;}
._11_c00427{width:16.620000px;}
._12_c00427{width:17.760000px;}
._e_c00427{width:18.960000px;}
._f_c00427{width:19.980000px;}
._10_c00427{width:21.360000px;}
._19_c00427{width:23.610000px;}
._1a_c00427{width:24.810030px;}
._16_c00427{width:26.310042px;}
.fc1_c00427{color:transparent;}
.fc0_c00427{color:rgb(35,31,32);}
.fs1_c00427{font-size:51.000000px;}
.fs0_c00427{font-size:60.000000px;}
.y0_c00427{bottom:0.000000px;}
.y28_c00427{bottom:64.425022px;}
.y27_c00427{bottom:110.175022px;}
.y26_c00427{bottom:125.625022px;}
.y25_c00427{bottom:141.150022px;}
.y24_c00427{bottom:155.925022px;}
.y23_c00427{bottom:171.750022px;}
.y22_c00427{bottom:186.525022px;}
.y21_c00427{bottom:201.975022px;}
.y20_c00427{bottom:217.425022px;}
.y1f_c00427{bottom:232.575022px;}
.y1e_c00427{bottom:247.725022px;}
.y1d_c00427{bottom:263.550022px;}
.y1c_c00427{bottom:278.325022px;}
.y1b_c00427{bottom:293.775022px;}
.y1a_c00427{bottom:308.925022px;}
.y19_c00427{bottom:348.825022px;}
.y18_c00427{bottom:368.325022px;}
.y17_c00427{bottom:387.675022px;}
.y16_c00427{bottom:406.800022px;}
.y15_c00427{bottom:425.925022px;}
.y14_c00427{bottom:445.350022px;}
.y13_c00427{bottom:464.775022px;}
.y12_c00427{bottom:484.200022px;}
.y11_c00427{bottom:503.325022px;}
.y10_c00427{bottom:522.375022px;}
.yf_c00427{bottom:541.425022px;}
.ye_c00427{bottom:560.925022px;}
.yd_c00427{bottom:580.350022px;}
.yc_c00427{bottom:599.775022px;}
.yb_c00427{bottom:635.775022px;}
.y9_c00427{bottom:690.825022px;}
.y8_c00427{bottom:709.950022px;}
.y7_c00427{bottom:729.750022px;}
.y6_c00427{bottom:748.425022px;}
.y5_c00427{bottom:767.925022px;}
.y4_c00427{bottom:786.975022px;}
.y3_c00427{bottom:806.775022px;}
.y2_c00427{bottom:825.825022px;}
.y1_c00427{bottom:845.325022px;}
.ya_c00427{bottom:886.875022px;}
.h3_c00427{height:50.028809px;}
.h4_c00427{height:50.053711px;}
.h2_c00427{height:58.886719px;}
.h1_c00427{height:957.750000px;}
.h0_c00427{height:957.975000px;}
.w0_c00427{width:641.850030px;}
.w1_c00427{width:642.000000px;}
.x0_c00427{left:0.000000px;}
.x2_c00427{left:81.000000px;}
.x4_c00427{left:87.450000px;}
.x1_c00427{left:96.150000px;}
.x6_c00427{left:120.600000px;}
.x5_c00427{left:121.650000px;}
.x3_c00427{left:200.850000px;}
.x7_c00427{left:531.000000px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls0_c00427{letter-spacing:0.000000pt;}
.ws0_c00427{word-spacing:-13.333333pt;}
.ws1_c00427{word-spacing:-11.333333pt;}
.ws2_c00427{word-spacing:0.000000pt;}
._13_c00427{margin-left:-13.706667pt;}
._1b_c00427{margin-left:-9.821397pt;}
._b_c00427{margin-left:-8.800000pt;}
._a_c00427{margin-left:-7.306667pt;}
._18_c00427{margin-left:-5.584019pt;}
._14_c00427{margin-left:-4.640000pt;}
._c_c00427{margin-left:-3.626667pt;}
._15_c00427{margin-left:-2.613333pt;}
._0_c00427{margin-left:-1.706667pt;}
._3_c00427{width:1.173333pt;}
._2_c00427{width:2.080000pt;}
._5_c00427{width:3.040000pt;}
._7_c00427{width:4.800000pt;}
._1_c00427{width:6.186667pt;}
._4_c00427{width:7.306667pt;}
._9_c00427{width:8.213333pt;}
._6_c00427{width:9.600000pt;}
._8_c00427{width:11.200000pt;}
._d_c00427{width:12.373333pt;}
._17_c00427{width:13.469579pt;}
._11_c00427{width:14.773333pt;}
._12_c00427{width:15.786667pt;}
._e_c00427{width:16.853333pt;}
._f_c00427{width:17.760000pt;}
._10_c00427{width:18.986667pt;}
._19_c00427{width:20.986667pt;}
._1a_c00427{width:22.053360pt;}
._16_c00427{width:23.386704pt;}
.fs1_c00427{font-size:45.333333pt;}
.fs0_c00427{font-size:53.333333pt;}
.y0_c00427{bottom:0.000000pt;}
.y28_c00427{bottom:57.266686pt;}
.y27_c00427{bottom:97.933353pt;}
.y26_c00427{bottom:111.666686pt;}
.y25_c00427{bottom:125.466686pt;}
.y24_c00427{bottom:138.600020pt;}
.y23_c00427{bottom:152.666686pt;}
.y22_c00427{bottom:165.800020pt;}
.y21_c00427{bottom:179.533353pt;}
.y20_c00427{bottom:193.266686pt;}
.y1f_c00427{bottom:206.733353pt;}
.y1e_c00427{bottom:220.200020pt;}
.y1d_c00427{bottom:234.266686pt;}
.y1c_c00427{bottom:247.400020pt;}
.y1b_c00427{bottom:261.133353pt;}
.y1a_c00427{bottom:274.600020pt;}
.y19_c00427{bottom:310.066686pt;}
.y18_c00427{bottom:327.400020pt;}
.y17_c00427{bottom:344.600020pt;}
.y16_c00427{bottom:361.600020pt;}
.y15_c00427{bottom:378.600020pt;}
.y14_c00427{bottom:395.866686pt;}
.y13_c00427{bottom:413.133353pt;}
.y12_c00427{bottom:430.400020pt;}
.y11_c00427{bottom:447.400020pt;}
.y10_c00427{bottom:464.333353pt;}
.yf_c00427{bottom:481.266686pt;}
.ye_c00427{bottom:498.600020pt;}
.yd_c00427{bottom:515.866686pt;}
.yc_c00427{bottom:533.133353pt;}
.yb_c00427{bottom:565.133353pt;}
.y9_c00427{bottom:614.066686pt;}
.y8_c00427{bottom:631.066686pt;}
.y7_c00427{bottom:648.666686pt;}
.y6_c00427{bottom:665.266686pt;}
.y5_c00427{bottom:682.600020pt;}
.y4_c00427{bottom:699.533353pt;}
.y3_c00427{bottom:717.133353pt;}
.y2_c00427{bottom:734.066686pt;}
.y1_c00427{bottom:751.400020pt;}
.ya_c00427{bottom:788.333353pt;}
.h3_c00427{height:44.470052pt;}
.h4_c00427{height:44.492188pt;}
.h2_c00427{height:52.343750pt;}
.h1_c00427{height:851.333333pt;}
.h0_c00427{height:851.533333pt;}
.w0_c00427{width:570.533360pt;}
.w1_c00427{width:570.666667pt;}
.x0_c00427{left:0.000000pt;}
.x2_c00427{left:72.000000pt;}
.x4_c00427{left:77.733333pt;}
.x1_c00427{left:85.466667pt;}
.x6_c00427{left:107.200000pt;}
.x5_c00427{left:108.133333pt;}
.x3_c00427{left:178.533333pt;}
.x7_c00427{left:472.000000pt;}
}





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

.ir_c00428:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00428{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00428;src:url('chunks/assets/font_a32481dfeef1cb922e261654.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00428;src:url('chunks/assets/font_1ea7567b3b6f32683091263a.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00428{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00428{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00428{word-spacing:-15.000000px;}
.ws1_c00428{word-spacing:-12.750000px;}
.ws2_c00428{word-spacing:0.000000px;}
._9_c00428{margin-left:-15.600000px;}
._10_c00428{margin-left:-13.200000px;}
._c_c00428{margin-left:-11.580000px;}
._b_c00428{margin-left:-10.320000px;}
._17_c00428{margin-left:-9.170964px;}
._19_c00428{margin-left:-7.145859px;}
._13_c00428{margin-left:-5.400000px;}
._8_c00428{margin-left:-4.140000px;}
._d_c00428{margin-left:-2.940000px;}
._4_c00428{margin-left:-1.140000px;}
._0_c00428{width:1.020000px;}
._5_c00428{width:2.040000px;}
._1_c00428{width:3.180000px;}
._3_c00428{width:5.100000px;}
._18_c00428{width:6.108012px;}
._2_c00428{width:7.320000px;}
._a_c00428{width:8.940000px;}
._7_c00428{width:10.320000px;}
._6_c00428{width:11.760000px;}
._12_c00428{width:12.780000px;}
._f_c00428{width:13.920000px;}
._1b_c00428{width:15.344931px;}
._11_c00428{width:16.380000px;}
._e_c00428{width:17.640000px;}
._14_c00428{width:19.500000px;}
._15_c00428{width:21.000000px;}
._16_c00428{width:23.970042px;}
._1a_c00428{width:28.410003px;}
.fc1_c00428{color:transparent;}
.fc0_c00428{color:rgb(35,31,32);}
.fs1_c00428{font-size:51.000000px;}
.fs0_c00428{font-size:60.000000px;}
.y0_c00428{bottom:0.000000px;}
.y28_c00428{bottom:64.425022px;}
.y27_c00428{bottom:110.550022px;}
.y26_c00428{bottom:125.325022px;}
.y25_c00428{bottom:141.150022px;}
.y24_c00428{bottom:156.225022px;}
.y23_c00428{bottom:171.750022px;}
.y22_c00428{bottom:186.825022px;}
.y21_c00428{bottom:202.350022px;}
.y20_c00428{bottom:217.125022px;}
.y1f_c00428{bottom:232.875022px;}
.y1e_c00428{bottom:248.025022px;}
.y1d_c00428{bottom:263.175022px;}
.y1c_c00428{bottom:278.325022px;}
.y1b_c00428{bottom:294.150022px;}
.y1a_c00428{bottom:308.925022px;}
.y19_c00428{bottom:324.375022px;}
.y18_c00428{bottom:339.525022px;}
.y17_c00428{bottom:379.500022px;}
.y16_c00428{bottom:398.925022px;}
.y15_c00428{bottom:418.350022px;}
.y14_c00428{bottom:457.575022px;}
.y12_c00428{bottom:514.425022px;}
.y11_c00428{bottom:533.925022px;}
.y10_c00428{bottom:553.350022px;}
.yf_c00428{bottom:572.775022px;}
.ye_c00428{bottom:592.200022px;}
.yd_c00428{bottom:612.000022px;}
.yc_c00428{bottom:631.425022px;}
.yb_c00428{bottom:650.550022px;}
.ya_c00428{bottom:670.350022px;}
.y9_c00428{bottom:689.775022px;}
.y8_c00428{bottom:709.200022px;}
.y7_c00428{bottom:728.625022px;}
.y6_c00428{bottom:748.125022px;}
.y5_c00428{bottom:767.175022px;}
.y4_c00428{bottom:786.225022px;}
.y3_c00428{bottom:805.725022px;}
.y2_c00428{bottom:825.150022px;}
.y1_c00428{bottom:844.575022px;}
.y13_c00428{bottom:886.875022px;}
.h3_c00428{height:50.028809px;}
.h4_c00428{height:50.053711px;}
.h2_c00428{height:58.886719px;}
.h1_c00428{height:957.750000px;}
.h0_c00428{height:957.975000px;}
.w1_c00428{width:643.500000px;}
.w0_c00428{width:643.650000px;}
.x0_c00428{left:0.000000px;}
.x1_c00428{left:91.050000px;}
.x3_c00428{left:97.200000px;}
.x2_c00428{left:107.250000px;}
.x4_c00428{left:131.400000px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls0_c00428{letter-spacing:0.000000pt;}
.ws0_c00428{word-spacing:-13.333333pt;}
.ws1_c00428{word-spacing:-11.333333pt;}
.ws2_c00428{word-spacing:0.000000pt;}
._9_c00428{margin-left:-13.866667pt;}
._10_c00428{margin-left:-11.733333pt;}
._c_c00428{margin-left:-10.293333pt;}
._b_c00428{margin-left:-9.173333pt;}
._17_c00428{margin-left:-8.151968pt;}
._19_c00428{margin-left:-6.351875pt;}
._13_c00428{margin-left:-4.800000pt;}
._8_c00428{margin-left:-3.680000pt;}
._d_c00428{margin-left:-2.613333pt;}
._4_c00428{margin-left:-1.013333pt;}
._0_c00428{width:0.906667pt;}
._5_c00428{width:1.813333pt;}
._1_c00428{width:2.826667pt;}
._3_c00428{width:4.533333pt;}
._18_c00428{width:5.429344pt;}
._2_c00428{width:6.506667pt;}
._a_c00428{width:7.946667pt;}
._7_c00428{width:9.173333pt;}
._6_c00428{width:10.453333pt;}
._12_c00428{width:11.360000pt;}
._f_c00428{width:12.373333pt;}
._1b_c00428{width:13.639939pt;}
._11_c00428{width:14.560000pt;}
._e_c00428{width:15.680000pt;}
._14_c00428{width:17.333333pt;}
._15_c00428{width:18.666667pt;}
._16_c00428{width:21.306704pt;}
._1a_c00428{width:25.253336pt;}
.fs1_c00428{font-size:45.333333pt;}
.fs0_c00428{font-size:53.333333pt;}
.y0_c00428{bottom:0.000000pt;}
.y28_c00428{bottom:57.266686pt;}
.y27_c00428{bottom:98.266686pt;}
.y26_c00428{bottom:111.400020pt;}
.y25_c00428{bottom:125.466686pt;}
.y24_c00428{bottom:138.866686pt;}
.y23_c00428{bottom:152.666686pt;}
.y22_c00428{bottom:166.066686pt;}
.y21_c00428{bottom:179.866686pt;}
.y20_c00428{bottom:193.000020pt;}
.y1f_c00428{bottom:207.000020pt;}
.y1e_c00428{bottom:220.466686pt;}
.y1d_c00428{bottom:233.933353pt;}
.y1c_c00428{bottom:247.400020pt;}
.y1b_c00428{bottom:261.466686pt;}
.y1a_c00428{bottom:274.600020pt;}
.y19_c00428{bottom:288.333353pt;}
.y18_c00428{bottom:301.800020pt;}
.y17_c00428{bottom:337.333353pt;}
.y16_c00428{bottom:354.600020pt;}
.y15_c00428{bottom:371.866686pt;}
.y14_c00428{bottom:406.733353pt;}
.y12_c00428{bottom:457.266686pt;}
.y11_c00428{bottom:474.600020pt;}
.y10_c00428{bottom:491.866686pt;}
.yf_c00428{bottom:509.133353pt;}
.ye_c00428{bottom:526.400020pt;}
.yd_c00428{bottom:544.000020pt;}
.yc_c00428{bottom:561.266686pt;}
.yb_c00428{bottom:578.266686pt;}
.ya_c00428{bottom:595.866686pt;}
.y9_c00428{bottom:613.133353pt;}
.y8_c00428{bottom:630.400020pt;}
.y7_c00428{bottom:647.666686pt;}
.y6_c00428{bottom:665.000020pt;}
.y5_c00428{bottom:681.933353pt;}
.y4_c00428{bottom:698.866686pt;}
.y3_c00428{bottom:716.200020pt;}
.y2_c00428{bottom:733.466686pt;}
.y1_c00428{bottom:750.733353pt;}
.y13_c00428{bottom:788.333353pt;}
.h3_c00428{height:44.470052pt;}
.h4_c00428{height:44.492188pt;}
.h2_c00428{height:52.343750pt;}
.h1_c00428{height:851.333333pt;}
.h0_c00428{height:851.533333pt;}
.w1_c00428{width:572.000000pt;}
.w0_c00428{width:572.133333pt;}
.x0_c00428{left:0.000000pt;}
.x1_c00428{left:80.933333pt;}
.x3_c00428{left:86.400000pt;}
.x2_c00428{left:95.333333pt;}
.x4_c00428{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3e57ad33e56b5e6e6b24a554.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00429;src:url('chunks/assets/font_d09ba24e58b752196827f236.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00429{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00429{letter-spacing:0.000000px;}
.sc__c00429{text-shadow:none;}
.sc0_c00429{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00429{-webkit-text-stroke:0px transparent;}
.sc0_c00429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00429{word-spacing:-15.000000px;}
.ws0_c00429{word-spacing:-12.750000px;}
.ws2_c00429{word-spacing:0.000000px;}
._d_c00429{margin-left:-11.820000px;}
._5_c00429{margin-left:-10.560000px;}
._12_c00429{margin-left:-9.264618px;}
._14_c00429{margin-left:-7.455225px;}
._15_c00429{margin-left:-6.290919px;}
._11_c00429{margin-left:-4.940925px;}
._8_c00429{margin-left:-3.296928px;}
._3_c00429{margin-left:-1.620000px;}
._1_c00429{width:1.860000px;}
._0_c00429{width:3.300000px;}
._7_c00429{width:4.740000px;}
._e_c00429{width:5.880000px;}
._a_c00429{width:6.960000px;}
._b_c00429{width:8.220000px;}
._4_c00429{width:9.360000px;}
._c_c00429{width:11.040000px;}
._6_c00429{width:12.060000px;}
._2_c00429{width:13.680000px;}
._13_c00429{width:15.509892px;}
._9_c00429{width:17.040000px;}
._f_c00429{width:18.660000px;}
._18_c00429{width:21.210039px;}
._17_c00429{width:22.710000px;}
._10_c00429{width:23.910030px;}
._16_c00429{width:25.410000px;}
.fc1_c00429{color:transparent;}
.fc0_c00429{color:rgb(35,31,32);}
.fs1_c00429{font-size:51.000000px;}
.fs0_c00429{font-size:60.000000px;}
.y0_c00429{bottom:0.000000px;}
.y28_c00429{bottom:64.425022px;}
.y27_c00429{bottom:110.175022px;}
.y26_c00429{bottom:125.625022px;}
.y25_c00429{bottom:140.775022px;}
.y24_c00429{bottom:156.225022px;}
.y23_c00429{bottom:171.750022px;}
.y22_c00429{bottom:186.525022px;}
.y21_c00429{bottom:202.350022px;}
.y20_c00429{bottom:217.425022px;}
.y1f_c00429{bottom:232.950022px;}
.y1e_c00429{bottom:247.725022px;}
.y1d_c00429{bottom:263.175022px;}
.y1c_c00429{bottom:278.325022px;}
.y1b_c00429{bottom:293.775022px;}
.y1a_c00429{bottom:308.925022px;}
.y19_c00429{bottom:324.750022px;}
.y18_c00429{bottom:339.525022px;}
.y17_c00429{bottom:355.350022px;}
.y16_c00429{bottom:370.125022px;}
.y15_c00429{bottom:385.575022px;}
.y14_c00429{bottom:438.825022px;}
.y13_c00429{bottom:458.625022px;}
.y12_c00429{bottom:477.750022px;}
.y11_c00429{bottom:497.550022px;}
.y10_c00429{bottom:516.600022px;}
.yf_c00429{bottom:536.025022px;}
.ye_c00429{bottom:555.900022px;}
.yd_c00429{bottom:575.325022px;}
.yc_c00429{bottom:594.750022px;}
.yb_c00429{bottom:614.175022px;}
.ya_c00429{bottom:633.225022px;}
.y9_c00429{bottom:653.025022px;}
.y8_c00429{bottom:690.825022px;}
.y6_c00429{bottom:747.750022px;}
.y5_c00429{bottom:767.175022px;}
.y4_c00429{bottom:786.225022px;}
.y3_c00429{bottom:806.025022px;}
.y2_c00429{bottom:825.150022px;}
.y1_c00429{bottom:844.950022px;}
.y7_c00429{bottom:886.875022px;}
.h3_c00429{height:50.028809px;}
.h4_c00429{height:50.053711px;}
.h2_c00429{height:58.886719px;}
.h1_c00429{height:957.750000px;}
.h0_c00429{height:957.975000px;}
.w0_c00429{width:641.850030px;}
.w1_c00429{width:642.000000px;}
.x0_c00429{left:0.000000px;}
.x1_c00429{left:81.000000px;}
.x3_c00429{left:87.450000px;}
.x4_c00429{left:121.350000px;}
.x2_c00429{left:200.850000px;}
.x5_c00429{left:531.000000px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls0_c00429{letter-spacing:0.000000pt;}
.ws1_c00429{word-spacing:-13.333333pt;}
.ws0_c00429{word-spacing:-11.333333pt;}
.ws2_c00429{word-spacing:0.000000pt;}
._d_c00429{margin-left:-10.506667pt;}
._5_c00429{margin-left:-9.386667pt;}
._12_c00429{margin-left:-8.235216pt;}
._14_c00429{margin-left:-6.626867pt;}
._15_c00429{margin-left:-5.591928pt;}
._11_c00429{margin-left:-4.391933pt;}
._8_c00429{margin-left:-2.930603pt;}
._3_c00429{margin-left:-1.440000pt;}
._1_c00429{width:1.653333pt;}
._0_c00429{width:2.933333pt;}
._7_c00429{width:4.213333pt;}
._e_c00429{width:5.226667pt;}
._a_c00429{width:6.186667pt;}
._b_c00429{width:7.306667pt;}
._4_c00429{width:8.320000pt;}
._c_c00429{width:9.813333pt;}
._6_c00429{width:10.720000pt;}
._2_c00429{width:12.160000pt;}
._13_c00429{width:13.786571pt;}
._9_c00429{width:15.146667pt;}
._f_c00429{width:16.586667pt;}
._18_c00429{width:18.853368pt;}
._17_c00429{width:20.186667pt;}
._10_c00429{width:21.253360pt;}
._16_c00429{width:22.586667pt;}
.fs1_c00429{font-size:45.333333pt;}
.fs0_c00429{font-size:53.333333pt;}
.y0_c00429{bottom:0.000000pt;}
.y28_c00429{bottom:57.266686pt;}
.y27_c00429{bottom:97.933353pt;}
.y26_c00429{bottom:111.666686pt;}
.y25_c00429{bottom:125.133353pt;}
.y24_c00429{bottom:138.866686pt;}
.y23_c00429{bottom:152.666686pt;}
.y22_c00429{bottom:165.800020pt;}
.y21_c00429{bottom:179.866686pt;}
.y20_c00429{bottom:193.266686pt;}
.y1f_c00429{bottom:207.066686pt;}
.y1e_c00429{bottom:220.200020pt;}
.y1d_c00429{bottom:233.933353pt;}
.y1c_c00429{bottom:247.400020pt;}
.y1b_c00429{bottom:261.133353pt;}
.y1a_c00429{bottom:274.600020pt;}
.y19_c00429{bottom:288.666686pt;}
.y18_c00429{bottom:301.800020pt;}
.y17_c00429{bottom:315.866686pt;}
.y16_c00429{bottom:329.000020pt;}
.y15_c00429{bottom:342.733353pt;}
.y14_c00429{bottom:390.066686pt;}
.y13_c00429{bottom:407.666686pt;}
.y12_c00429{bottom:424.666686pt;}
.y11_c00429{bottom:442.266686pt;}
.y10_c00429{bottom:459.200020pt;}
.yf_c00429{bottom:476.466686pt;}
.ye_c00429{bottom:494.133353pt;}
.yd_c00429{bottom:511.400020pt;}
.yc_c00429{bottom:528.666686pt;}
.yb_c00429{bottom:545.933353pt;}
.ya_c00429{bottom:562.866686pt;}
.y9_c00429{bottom:580.466686pt;}
.y8_c00429{bottom:614.066686pt;}
.y6_c00429{bottom:664.666686pt;}
.y5_c00429{bottom:681.933353pt;}
.y4_c00429{bottom:698.866686pt;}
.y3_c00429{bottom:716.466686pt;}
.y2_c00429{bottom:733.466686pt;}
.y1_c00429{bottom:751.066686pt;}
.y7_c00429{bottom:788.333353pt;}
.h3_c00429{height:44.470052pt;}
.h4_c00429{height:44.492188pt;}
.h2_c00429{height:52.343750pt;}
.h1_c00429{height:851.333333pt;}
.h0_c00429{height:851.533333pt;}
.w0_c00429{width:570.533360pt;}
.w1_c00429{width:570.666667pt;}
.x0_c00429{left:0.000000pt;}
.x1_c00429{left:72.000000pt;}
.x3_c00429{left:77.733333pt;}
.x4_c00429{left:107.866667pt;}
.x2_c00429{left:178.533333pt;}
.x5_c00429{left:472.000000pt;}
}





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

.ir_c00430:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00430{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00430;src:url('chunks/assets/font_8439e74e26c3e7e96e0441be.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00430;src:url('chunks/assets/font_b259392def8dde50268e79ef.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.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;}
}
.ws1_c00430{word-spacing:-15.000000px;}
.ws0_c00430{word-spacing:-12.750000px;}
.ws2_c00430{word-spacing:0.000000px;}
._19_c00430{margin-left:-15.900000px;}
._b_c00430{margin-left:-12.540000px;}
._a_c00430{margin-left:-11.280000px;}
._5_c00430{margin-left:-9.600000px;}
._4_c00430{margin-left:-8.460000px;}
._d_c00430{margin-left:-6.600000px;}
._c_c00430{margin-left:-5.400000px;}
._17_c00430{margin-left:-3.600000px;}
._1_c00430{margin-left:-1.680000px;}
._3_c00430{width:1.020000px;}
._0_c00430{width:2.100000px;}
._2_c00430{width:4.080000px;}
._9_c00430{width:5.340000px;}
._7_c00430{width:6.960000px;}
._13_c00430{width:7.980000px;}
._6_c00430{width:9.600000px;}
._8_c00430{width:11.640000px;}
._12_c00430{width:12.660000px;}
._16_c00430{width:13.860000px;}
._1b_c00430{width:15.527994px;}
._f_c00430{width:17.100000px;}
._e_c00430{width:18.300000px;}
._10_c00430{width:19.620000px;}
._11_c00430{width:21.900000px;}
._1c_c00430{width:23.034255px;}
._15_c00430{width:24.480000px;}
._14_c00430{width:25.560000px;}
._1a_c00430{width:27.090003px;}
._18_c00430{width:28.200000px;}
.fc1_c00430{color:transparent;}
.fc0_c00430{color:rgb(35,31,32);}
.fs1_c00430{font-size:51.000000px;}
.fs0_c00430{font-size:60.000000px;}
.y0_c00430{bottom:0.000000px;}
.y2b_c00430{bottom:64.425022px;}
.y2a_c00430{bottom:110.175022px;}
.y29_c00430{bottom:125.325022px;}
.y28_c00430{bottom:140.775022px;}
.y27_c00430{bottom:155.925022px;}
.y26_c00430{bottom:171.375022px;}
.y25_c00430{bottom:186.825022px;}
.y24_c00430{bottom:201.975022px;}
.y23_c00430{bottom:217.425022px;}
.y22_c00430{bottom:232.950022px;}
.y21_c00430{bottom:247.725022px;}
.y20_c00430{bottom:263.175022px;}
.y1f_c00430{bottom:278.625022px;}
.y1e_c00430{bottom:294.150022px;}
.y1d_c00430{bottom:308.925022px;}
.y1c_c00430{bottom:324.750022px;}
.y1b_c00430{bottom:339.525022px;}
.y1a_c00430{bottom:354.975022px;}
.y19_c00430{bottom:370.425022px;}
.y18_c00430{bottom:385.575022px;}
.y16_c00430{bottom:437.025022px;}
.y15_c00430{bottom:456.150022px;}
.y14_c00430{bottom:475.575022px;}
.y13_c00430{bottom:495.375022px;}
.y12_c00430{bottom:514.425022px;}
.y11_c00430{bottom:533.925022px;}
.y10_c00430{bottom:553.350022px;}
.yf_c00430{bottom:573.150022px;}
.ye_c00430{bottom:592.200022px;}
.yd_c00430{bottom:612.000022px;}
.yc_c00430{bottom:631.425022px;}
.yb_c00430{bottom:650.925022px;}
.ya_c00430{bottom:670.350022px;}
.y9_c00430{bottom:689.400022px;}
.y8_c00430{bottom:708.825022px;}
.y7_c00430{bottom:728.325022px;}
.y6_c00430{bottom:748.125022px;}
.y5_c00430{bottom:767.550022px;}
.y4_c00430{bottom:786.300022px;}
.y3_c00430{bottom:805.725022px;}
.y2_c00430{bottom:825.150022px;}
.y1_c00430{bottom:844.575022px;}
.y17_c00430{bottom:886.875022px;}
.h3_c00430{height:50.028809px;}
.h4_c00430{height:50.053711px;}
.h2_c00430{height:58.886719px;}
.h1_c00430{height:957.750000px;}
.h0_c00430{height:957.975000px;}
.w1_c00430{width:643.500000px;}
.w0_c00430{width:643.650000px;}
.x0_c00430{left:0.000000px;}
.x2_c00430{left:90.375000px;}
.x1_c00430{left:91.425000px;}
.x5_c00430{left:97.200000px;}
.x3_c00430{left:107.250000px;}
.x4_c00430{left:131.025000px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls0_c00430{letter-spacing:0.000000pt;}
.ws1_c00430{word-spacing:-13.333333pt;}
.ws0_c00430{word-spacing:-11.333333pt;}
.ws2_c00430{word-spacing:0.000000pt;}
._19_c00430{margin-left:-14.133333pt;}
._b_c00430{margin-left:-11.146667pt;}
._a_c00430{margin-left:-10.026667pt;}
._5_c00430{margin-left:-8.533333pt;}
._4_c00430{margin-left:-7.520000pt;}
._d_c00430{margin-left:-5.866667pt;}
._c_c00430{margin-left:-4.800000pt;}
._17_c00430{margin-left:-3.200000pt;}
._1_c00430{margin-left:-1.493333pt;}
._3_c00430{width:0.906667pt;}
._0_c00430{width:1.866667pt;}
._2_c00430{width:3.626667pt;}
._9_c00430{width:4.746667pt;}
._7_c00430{width:6.186667pt;}
._13_c00430{width:7.093333pt;}
._6_c00430{width:8.533333pt;}
._8_c00430{width:10.346667pt;}
._12_c00430{width:11.253333pt;}
._16_c00430{width:12.320000pt;}
._1b_c00430{width:13.802661pt;}
._f_c00430{width:15.200000pt;}
._e_c00430{width:16.266667pt;}
._10_c00430{width:17.440000pt;}
._11_c00430{width:19.466667pt;}
._1c_c00430{width:20.474893pt;}
._15_c00430{width:21.760000pt;}
._14_c00430{width:22.720000pt;}
._1a_c00430{width:24.080003pt;}
._18_c00430{width:25.066667pt;}
.fs1_c00430{font-size:45.333333pt;}
.fs0_c00430{font-size:53.333333pt;}
.y0_c00430{bottom:0.000000pt;}
.y2b_c00430{bottom:57.266686pt;}
.y2a_c00430{bottom:97.933353pt;}
.y29_c00430{bottom:111.400020pt;}
.y28_c00430{bottom:125.133353pt;}
.y27_c00430{bottom:138.600020pt;}
.y26_c00430{bottom:152.333353pt;}
.y25_c00430{bottom:166.066686pt;}
.y24_c00430{bottom:179.533353pt;}
.y23_c00430{bottom:193.266686pt;}
.y22_c00430{bottom:207.066686pt;}
.y21_c00430{bottom:220.200020pt;}
.y20_c00430{bottom:233.933353pt;}
.y1f_c00430{bottom:247.666686pt;}
.y1e_c00430{bottom:261.466686pt;}
.y1d_c00430{bottom:274.600020pt;}
.y1c_c00430{bottom:288.666686pt;}
.y1b_c00430{bottom:301.800020pt;}
.y1a_c00430{bottom:315.533353pt;}
.y19_c00430{bottom:329.266686pt;}
.y18_c00430{bottom:342.733353pt;}
.y16_c00430{bottom:388.466686pt;}
.y15_c00430{bottom:405.466686pt;}
.y14_c00430{bottom:422.733353pt;}
.y13_c00430{bottom:440.333353pt;}
.y12_c00430{bottom:457.266686pt;}
.y11_c00430{bottom:474.600020pt;}
.y10_c00430{bottom:491.866686pt;}
.yf_c00430{bottom:509.466686pt;}
.ye_c00430{bottom:526.400020pt;}
.yd_c00430{bottom:544.000020pt;}
.yc_c00430{bottom:561.266686pt;}
.yb_c00430{bottom:578.600020pt;}
.ya_c00430{bottom:595.866686pt;}
.y9_c00430{bottom:612.800020pt;}
.y8_c00430{bottom:630.066686pt;}
.y7_c00430{bottom:647.400020pt;}
.y6_c00430{bottom:665.000020pt;}
.y5_c00430{bottom:682.266686pt;}
.y4_c00430{bottom:698.933353pt;}
.y3_c00430{bottom:716.200020pt;}
.y2_c00430{bottom:733.466686pt;}
.y1_c00430{bottom:750.733353pt;}
.y17_c00430{bottom:788.333353pt;}
.h3_c00430{height:44.470052pt;}
.h4_c00430{height:44.492188pt;}
.h2_c00430{height:52.343750pt;}
.h1_c00430{height:851.333333pt;}
.h0_c00430{height:851.533333pt;}
.w1_c00430{width:572.000000pt;}
.w0_c00430{width:572.133333pt;}
.x0_c00430{left:0.000000pt;}
.x2_c00430{left:80.333333pt;}
.x1_c00430{left:81.266667pt;}
.x5_c00430{left:86.400000pt;}
.x3_c00430{left:95.333333pt;}
.x4_c00430{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d94fd786a342f7855275e79.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00431;src:url('chunks/assets/font_a8a35cf12e280bdfa0bdc557.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00431{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00431{vertical-align:0.000000px;}
.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;}
}
.ws1_c00431{word-spacing:-15.000000px;}
.ws0_c00431{word-spacing:-12.750000px;}
.ws2_c00431{word-spacing:0.000000px;}
._3_c00431{margin-left:-16.560000px;}
._1b_c00431{margin-left:-10.821204px;}
._c_c00431{margin-left:-9.600000px;}
._11_c00431{margin-left:-8.340000px;}
._1a_c00431{margin-left:-6.500916px;}
._10_c00431{margin-left:-5.220000px;}
._15_c00431{margin-left:-4.136928px;}
._2_c00431{margin-left:-2.700000px;}
._0_c00431{margin-left:-1.680000px;}
._5_c00431{width:1.860000px;}
._7_c00431{width:2.880000px;}
._d_c00431{width:3.960000px;}
._e_c00431{width:5.400000px;}
._f_c00431{width:7.020000px;}
._13_c00431{width:8.040000px;}
._4_c00431{width:9.120000px;}
._14_c00431{width:10.200000px;}
._6_c00431{width:11.280000px;}
._1_c00431{width:13.080000px;}
._18_c00431{width:15.252000px;}
._9_c00431{width:16.500000px;}
._12_c00431{width:17.820000px;}
._a_c00431{width:18.900000px;}
._8_c00431{width:20.640000px;}
._b_c00431{width:21.660000px;}
._19_c00431{width:23.910042px;}
._16_c00431{width:25.110030px;}
._17_c00431{width:26.610042px;}
.fc1_c00431{color:transparent;}
.fc0_c00431{color:rgb(35,31,32);}
.fs1_c00431{font-size:51.000000px;}
.fs0_c00431{font-size:60.000000px;}
.y0_c00431{bottom:0.000000px;}
.y2b_c00431{bottom:64.425022px;}
.y2a_c00431{bottom:110.175022px;}
.y29_c00431{bottom:125.625022px;}
.y28_c00431{bottom:140.775022px;}
.y27_c00431{bottom:155.925022px;}
.y26_c00431{bottom:171.375022px;}
.y25_c00431{bottom:186.525022px;}
.y24_c00431{bottom:201.975022px;}
.y23_c00431{bottom:217.125022px;}
.y22_c00431{bottom:232.950022px;}
.y21_c00431{bottom:248.025022px;}
.y20_c00431{bottom:263.175022px;}
.y1f_c00431{bottom:278.325022px;}
.y1e_c00431{bottom:294.150022px;}
.y1d_c00431{bottom:308.925022px;}
.y1c_c00431{bottom:323.100022px;}
.y1b_c00431{bottom:339.525022px;}
.y1a_c00431{bottom:355.350022px;}
.y19_c00431{bottom:370.125022px;}
.y18_c00431{bottom:385.575022px;}
.y16_c00431{bottom:437.025022px;}
.y15_c00431{bottom:456.525022px;}
.y14_c00431{bottom:475.575022px;}
.y13_c00431{bottom:495.375022px;}
.y12_c00431{bottom:514.800022px;}
.y11_c00431{bottom:533.925022px;}
.y10_c00431{bottom:553.350022px;}
.yf_c00431{bottom:572.775022px;}
.ye_c00431{bottom:592.575022px;}
.yd_c00431{bottom:611.925022px;}
.yc_c00431{bottom:631.425022px;}
.yb_c00431{bottom:650.925022px;}
.ya_c00431{bottom:669.975022px;}
.y9_c00431{bottom:689.400022px;}
.y8_c00431{bottom:709.200022px;}
.y7_c00431{bottom:728.325022px;}
.y6_c00431{bottom:747.750022px;}
.y5_c00431{bottom:767.175022px;}
.y4_c00431{bottom:786.600022px;}
.y3_c00431{bottom:805.725022px;}
.y2_c00431{bottom:825.150022px;}
.y1_c00431{bottom:844.575022px;}
.y17_c00431{bottom:886.875022px;}
.h3_c00431{height:50.028809px;}
.h4_c00431{height:50.053711px;}
.h2_c00431{height:58.886719px;}
.h1_c00431{height:957.750000px;}
.h0_c00431{height:957.975000px;}
.w0_c00431{width:641.850030px;}
.w1_c00431{width:642.000000px;}
.x0_c00431{left:0.000000px;}
.x1_c00431{left:81.750000px;}
.x4_c00431{left:87.450000px;}
.x2_c00431{left:97.200000px;}
.x5_c00431{left:121.350000px;}
.x3_c00431{left:200.850000px;}
.x6_c00431{left:531.000000px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls0_c00431{letter-spacing:0.000000pt;}
.ws1_c00431{word-spacing:-13.333333pt;}
.ws0_c00431{word-spacing:-11.333333pt;}
.ws2_c00431{word-spacing:0.000000pt;}
._3_c00431{margin-left:-14.720000pt;}
._1b_c00431{margin-left:-9.618848pt;}
._c_c00431{margin-left:-8.533333pt;}
._11_c00431{margin-left:-7.413333pt;}
._1a_c00431{margin-left:-5.778592pt;}
._10_c00431{margin-left:-4.640000pt;}
._15_c00431{margin-left:-3.677269pt;}
._2_c00431{margin-left:-2.400000pt;}
._0_c00431{margin-left:-1.493333pt;}
._5_c00431{width:1.653333pt;}
._7_c00431{width:2.560000pt;}
._d_c00431{width:3.520000pt;}
._e_c00431{width:4.800000pt;}
._f_c00431{width:6.240000pt;}
._13_c00431{width:7.146667pt;}
._4_c00431{width:8.106667pt;}
._14_c00431{width:9.066667pt;}
._6_c00431{width:10.026667pt;}
._1_c00431{width:11.626667pt;}
._18_c00431{width:13.557333pt;}
._9_c00431{width:14.666667pt;}
._12_c00431{width:15.840000pt;}
._a_c00431{width:16.800000pt;}
._8_c00431{width:18.346667pt;}
._b_c00431{width:19.253333pt;}
._19_c00431{width:21.253371pt;}
._16_c00431{width:22.320027pt;}
._17_c00431{width:23.653371pt;}
.fs1_c00431{font-size:45.333333pt;}
.fs0_c00431{font-size:53.333333pt;}
.y0_c00431{bottom:0.000000pt;}
.y2b_c00431{bottom:57.266686pt;}
.y2a_c00431{bottom:97.933353pt;}
.y29_c00431{bottom:111.666686pt;}
.y28_c00431{bottom:125.133353pt;}
.y27_c00431{bottom:138.600020pt;}
.y26_c00431{bottom:152.333353pt;}
.y25_c00431{bottom:165.800020pt;}
.y24_c00431{bottom:179.533353pt;}
.y23_c00431{bottom:193.000020pt;}
.y22_c00431{bottom:207.066686pt;}
.y21_c00431{bottom:220.466686pt;}
.y20_c00431{bottom:233.933353pt;}
.y1f_c00431{bottom:247.400020pt;}
.y1e_c00431{bottom:261.466686pt;}
.y1d_c00431{bottom:274.600020pt;}
.y1c_c00431{bottom:287.200020pt;}
.y1b_c00431{bottom:301.800020pt;}
.y1a_c00431{bottom:315.866686pt;}
.y19_c00431{bottom:329.000020pt;}
.y18_c00431{bottom:342.733353pt;}
.y16_c00431{bottom:388.466686pt;}
.y15_c00431{bottom:405.800020pt;}
.y14_c00431{bottom:422.733353pt;}
.y13_c00431{bottom:440.333353pt;}
.y12_c00431{bottom:457.600020pt;}
.y11_c00431{bottom:474.600020pt;}
.y10_c00431{bottom:491.866686pt;}
.yf_c00431{bottom:509.133353pt;}
.ye_c00431{bottom:526.733353pt;}
.yd_c00431{bottom:543.933353pt;}
.yc_c00431{bottom:561.266686pt;}
.yb_c00431{bottom:578.600020pt;}
.ya_c00431{bottom:595.533353pt;}
.y9_c00431{bottom:612.800020pt;}
.y8_c00431{bottom:630.400020pt;}
.y7_c00431{bottom:647.400020pt;}
.y6_c00431{bottom:664.666686pt;}
.y5_c00431{bottom:681.933353pt;}
.y4_c00431{bottom:699.200020pt;}
.y3_c00431{bottom:716.200020pt;}
.y2_c00431{bottom:733.466686pt;}
.y1_c00431{bottom:750.733353pt;}
.y17_c00431{bottom:788.333353pt;}
.h3_c00431{height:44.470052pt;}
.h4_c00431{height:44.492188pt;}
.h2_c00431{height:52.343750pt;}
.h1_c00431{height:851.333333pt;}
.h0_c00431{height:851.533333pt;}
.w0_c00431{width:570.533360pt;}
.w1_c00431{width:570.666667pt;}
.x0_c00431{left:0.000000pt;}
.x1_c00431{left:72.666667pt;}
.x4_c00431{left:77.733333pt;}
.x2_c00431{left:86.400000pt;}
.x5_c00431{left:107.866667pt;}
.x3_c00431{left:178.533333pt;}
.x6_c00431{left:472.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0803d8097b00da0ce10599e2.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00432;src:url('chunks/assets/font_385e0429cd93261b4dd44549.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00432{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00432{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00432{word-spacing:-12.750000px;}
.ws2_c00432{word-spacing:0.000000px;}
._c_c00432{margin-left:-12.360000px;}
._b_c00432{margin-left:-11.040000px;}
._7_c00432{margin-left:-9.540000px;}
._14_c00432{margin-left:-5.606976px;}
._17_c00432{margin-left:-4.503153px;}
._11_c00432{margin-left:-3.320985px;}
._3_c00432{margin-left:-1.740000px;}
._0_c00432{width:1.020000px;}
._2_c00432{width:2.100000px;}
._6_c00432{width:3.120000px;}
._5_c00432{width:4.800000px;}
._8_c00432{width:6.120000px;}
._10_c00432{width:7.260000px;}
._1_c00432{width:8.280000px;}
._4_c00432{width:9.300000px;}
._e_c00432{width:11.100000px;}
._9_c00432{width:12.780000px;}
._f_c00432{width:13.980000px;}
._a_c00432{width:16.440000px;}
._d_c00432{width:17.460000px;}
._12_c00432{width:18.720000px;}
._13_c00432{width:22.530000px;}
._16_c00432{width:25.530054px;}
._15_c00432{width:29.010003px;}
.fc1_c00432{color:transparent;}
.fc0_c00432{color:rgb(35,31,32);}
.fs1_c00432{font-size:51.000000px;}
.fs0_c00432{font-size:60.000000px;}
.y0_c00432{bottom:0.000000px;}
.y24_c00432{bottom:64.800022px;}
.y23_c00432{bottom:110.175022px;}
.y22_c00432{bottom:125.325022px;}
.y21_c00432{bottom:140.775022px;}
.y20_c00432{bottom:155.925022px;}
.y1f_c00432{bottom:171.750022px;}
.y1e_c00432{bottom:186.525022px;}
.y1d_c00432{bottom:201.975022px;}
.y1c_c00432{bottom:283.725022px;}
.y1b_c00432{bottom:303.525022px;}
.y1a_c00432{bottom:322.575022px;}
.y19_c00432{bottom:341.625022px;}
.y18_c00432{bottom:380.175022px;}
.y16_c00432{bottom:436.725022px;}
.y15_c00432{bottom:456.150022px;}
.y14_c00432{bottom:475.575022px;}
.y13_c00432{bottom:495.000022px;}
.y12_c00432{bottom:514.800022px;}
.y11_c00432{bottom:533.925022px;}
.y10_c00432{bottom:553.350022px;}
.yf_c00432{bottom:572.775022px;}
.ye_c00432{bottom:592.575022px;}
.yd_c00432{bottom:611.625022px;}
.yc_c00432{bottom:631.425022px;}
.yb_c00432{bottom:650.925022px;}
.ya_c00432{bottom:669.975022px;}
.y9_c00432{bottom:689.325022px;}
.y8_c00432{bottom:708.825022px;}
.y7_c00432{bottom:728.325022px;}
.y6_c00432{bottom:748.125022px;}
.y5_c00432{bottom:767.175022px;}
.y4_c00432{bottom:786.225022px;}
.y3_c00432{bottom:805.725022px;}
.y2_c00432{bottom:825.150022px;}
.y1_c00432{bottom:844.950022px;}
.y17_c00432{bottom:886.875022px;}
.h3_c00432{height:50.028809px;}
.h4_c00432{height:50.053711px;}
.h2_c00432{height:58.886719px;}
.h1_c00432{height:957.750000px;}
.h0_c00432{height:957.975000px;}
.w1_c00432{width:643.500000px;}
.w0_c00432{width:643.650000px;}
.x0_c00432{left:0.000000px;}
.x3_c00432{left:90.375000px;}
.x1_c00432{left:91.425000px;}
.x4_c00432{left:97.200000px;}
.x2_c00432{left:107.250000px;}
.x5_c00432{left:131.400000px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls0_c00432{letter-spacing:0.000000pt;}
.ws0_c00432{word-spacing:-13.333333pt;}
.ws1_c00432{word-spacing:-11.333333pt;}
.ws2_c00432{word-spacing:0.000000pt;}
._c_c00432{margin-left:-10.986667pt;}
._b_c00432{margin-left:-9.813333pt;}
._7_c00432{margin-left:-8.480000pt;}
._14_c00432{margin-left:-4.983979pt;}
._17_c00432{margin-left:-4.002803pt;}
._11_c00432{margin-left:-2.951987pt;}
._3_c00432{margin-left:-1.546667pt;}
._0_c00432{width:0.906667pt;}
._2_c00432{width:1.866667pt;}
._6_c00432{width:2.773333pt;}
._5_c00432{width:4.266667pt;}
._8_c00432{width:5.440000pt;}
._10_c00432{width:6.453333pt;}
._1_c00432{width:7.360000pt;}
._4_c00432{width:8.266667pt;}
._e_c00432{width:9.866667pt;}
._9_c00432{width:11.360000pt;}
._f_c00432{width:12.426667pt;}
._a_c00432{width:14.613333pt;}
._d_c00432{width:15.520000pt;}
._12_c00432{width:16.640000pt;}
._13_c00432{width:20.026667pt;}
._16_c00432{width:22.693381pt;}
._15_c00432{width:25.786669pt;}
.fs1_c00432{font-size:45.333333pt;}
.fs0_c00432{font-size:53.333333pt;}
.y0_c00432{bottom:0.000000pt;}
.y24_c00432{bottom:57.600020pt;}
.y23_c00432{bottom:97.933353pt;}
.y22_c00432{bottom:111.400020pt;}
.y21_c00432{bottom:125.133353pt;}
.y20_c00432{bottom:138.600020pt;}
.y1f_c00432{bottom:152.666686pt;}
.y1e_c00432{bottom:165.800020pt;}
.y1d_c00432{bottom:179.533353pt;}
.y1c_c00432{bottom:252.200020pt;}
.y1b_c00432{bottom:269.800020pt;}
.y1a_c00432{bottom:286.733353pt;}
.y19_c00432{bottom:303.666686pt;}
.y18_c00432{bottom:337.933353pt;}
.y16_c00432{bottom:388.200020pt;}
.y15_c00432{bottom:405.466686pt;}
.y14_c00432{bottom:422.733353pt;}
.y13_c00432{bottom:440.000020pt;}
.y12_c00432{bottom:457.600020pt;}
.y11_c00432{bottom:474.600020pt;}
.y10_c00432{bottom:491.866686pt;}
.yf_c00432{bottom:509.133353pt;}
.ye_c00432{bottom:526.733353pt;}
.yd_c00432{bottom:543.666686pt;}
.yc_c00432{bottom:561.266686pt;}
.yb_c00432{bottom:578.600020pt;}
.ya_c00432{bottom:595.533353pt;}
.y9_c00432{bottom:612.733353pt;}
.y8_c00432{bottom:630.066686pt;}
.y7_c00432{bottom:647.400020pt;}
.y6_c00432{bottom:665.000020pt;}
.y5_c00432{bottom:681.933353pt;}
.y4_c00432{bottom:698.866686pt;}
.y3_c00432{bottom:716.200020pt;}
.y2_c00432{bottom:733.466686pt;}
.y1_c00432{bottom:751.066686pt;}
.y17_c00432{bottom:788.333353pt;}
.h3_c00432{height:44.470052pt;}
.h4_c00432{height:44.492188pt;}
.h2_c00432{height:52.343750pt;}
.h1_c00432{height:851.333333pt;}
.h0_c00432{height:851.533333pt;}
.w1_c00432{width:572.000000pt;}
.w0_c00432{width:572.133333pt;}
.x0_c00432{left:0.000000pt;}
.x3_c00432{left:80.333333pt;}
.x1_c00432{left:81.266667pt;}
.x4_c00432{left:86.400000pt;}
.x2_c00432{left:95.333333pt;}
.x5_c00432{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9a2e435d61b0b399ec395374.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00433;src:url('chunks/assets/font_10aefa42310382f4bfd0f1c0.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;}
.m0_c00433{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00433{vertical-align:0.000000px;}
.ls0_c00433{letter-spacing:0.000000px;}
.sc__c00433{text-shadow:none;}
.sc0_c00433{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00433{-webkit-text-stroke:0px transparent;}
.sc0_c00433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00433{word-spacing:-15.000000px;}
.ws0_c00433{word-spacing:-12.750000px;}
.ws2_c00433{word-spacing:0.000000px;}
._11_c00433{margin-left:-15.840000px;}
._15_c00433{margin-left:-14.760000px;}
._1b_c00433{margin-left:-12.180000px;}
._6_c00433{margin-left:-10.200000px;}
._5_c00433{margin-left:-9.000000px;}
._19_c00433{margin-left:-7.200000px;}
._13_c00433{margin-left:-6.000000px;}
._10_c00433{margin-left:-4.020000px;}
._14_c00433{margin-left:-3.000000px;}
._4_c00433{margin-left:-1.560000px;}
._0_c00433{width:1.020000px;}
._1_c00433{width:2.280000px;}
._7_c00433{width:3.300000px;}
._1d_c00433{width:4.320051px;}
._3_c00433{width:5.400000px;}
._2_c00433{width:6.720000px;}
._1a_c00433{width:8.460000px;}
._17_c00433{width:10.380000px;}
._18_c00433{width:11.700000px;}
._16_c00433{width:13.380000px;}
._1c_c00433{width:15.132084px;}
._8_c00433{width:16.800000px;}
._12_c00433{width:19.500000px;}
._e_c00433{width:21.060000px;}
._f_c00433{width:22.860000px;}
._d_c00433{width:23.940000px;}
._c_c00433{width:25.740000px;}
._a_c00433{width:26.940000px;}
._1e_c00433{width:28.140003px;}
._9_c00433{width:29.220000px;}
._b_c00433{width:30.240000px;}
.fc1_c00433{color:transparent;}
.fc0_c00433{color:rgb(35,31,32);}
.fs1_c00433{font-size:51.000000px;}
.fs0_c00433{font-size:60.000000px;}
.y0_c00433{bottom:0.000000px;}
.y29_c00433{bottom:64.425022px;}
.y28_c00433{bottom:110.175022px;}
.y27_c00433{bottom:125.625022px;}
.y26_c00433{bottom:140.775022px;}
.y25_c00433{bottom:155.925022px;}
.y24_c00433{bottom:171.375022px;}
.y23_c00433{bottom:186.525022px;}
.y22_c00433{bottom:201.975022px;}
.y21_c00433{bottom:217.425022px;}
.y20_c00433{bottom:232.575022px;}
.y1f_c00433{bottom:248.025022px;}
.y1e_c00433{bottom:263.550022px;}
.y1d_c00433{bottom:278.625022px;}
.y1c_c00433{bottom:293.775022px;}
.y1b_c00433{bottom:309.225022px;}
.y1a_c00433{bottom:324.375022px;}
.y19_c00433{bottom:339.825022px;}
.y18_c00433{bottom:355.350022px;}
.y17_c00433{bottom:370.425022px;}
.y15_c00433{bottom:456.150022px;}
.y14_c00433{bottom:475.575022px;}
.y13_c00433{bottom:495.000022px;}
.y12_c00433{bottom:514.500022px;}
.y11_c00433{bottom:533.925022px;}
.y10_c00433{bottom:553.350022px;}
.yf_c00433{bottom:572.775022px;}
.ye_c00433{bottom:592.575022px;}
.yd_c00433{bottom:611.625022px;}
.yc_c00433{bottom:631.125022px;}
.yb_c00433{bottom:650.550022px;}
.ya_c00433{bottom:669.975022px;}
.y9_c00433{bottom:689.775022px;}
.y8_c00433{bottom:708.825022px;}
.y7_c00433{bottom:728.325022px;}
.y6_c00433{bottom:747.750022px;}
.y5_c00433{bottom:767.175022px;}
.y4_c00433{bottom:786.600022px;}
.y3_c00433{bottom:806.025022px;}
.y2_c00433{bottom:825.525022px;}
.y1_c00433{bottom:844.950022px;}
.y16_c00433{bottom:886.875022px;}
.h3_c00433{height:50.028809px;}
.h4_c00433{height:50.053711px;}
.h2_c00433{height:58.886719px;}
.h1_c00433{height:957.750000px;}
.h0_c00433{height:957.975000px;}
.w0_c00433{width:641.850030px;}
.w1_c00433{width:642.000000px;}
.x0_c00433{left:0.000000px;}
.x1_c00433{left:81.375000px;}
.x4_c00433{left:87.450000px;}
.x2_c00433{left:97.200000px;}
.x5_c00433{left:120.225000px;}
.x6_c00433{left:121.350000px;}
.x3_c00433{left:200.850000px;}
.x7_c00433{left:531.000000px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls0_c00433{letter-spacing:0.000000pt;}
.ws1_c00433{word-spacing:-13.333333pt;}
.ws0_c00433{word-spacing:-11.333333pt;}
.ws2_c00433{word-spacing:0.000000pt;}
._11_c00433{margin-left:-14.080000pt;}
._15_c00433{margin-left:-13.120000pt;}
._1b_c00433{margin-left:-10.826667pt;}
._6_c00433{margin-left:-9.066667pt;}
._5_c00433{margin-left:-8.000000pt;}
._19_c00433{margin-left:-6.400000pt;}
._13_c00433{margin-left:-5.333333pt;}
._10_c00433{margin-left:-3.573333pt;}
._14_c00433{margin-left:-2.666667pt;}
._4_c00433{margin-left:-1.386667pt;}
._0_c00433{width:0.906667pt;}
._1_c00433{width:2.026667pt;}
._7_c00433{width:2.933333pt;}
._1d_c00433{width:3.840045pt;}
._3_c00433{width:4.800000pt;}
._2_c00433{width:5.973333pt;}
._1a_c00433{width:7.520000pt;}
._17_c00433{width:9.226667pt;}
._18_c00433{width:10.400000pt;}
._16_c00433{width:11.893333pt;}
._1c_c00433{width:13.450741pt;}
._8_c00433{width:14.933333pt;}
._12_c00433{width:17.333333pt;}
._e_c00433{width:18.720000pt;}
._f_c00433{width:20.320000pt;}
._d_c00433{width:21.280000pt;}
._c_c00433{width:22.880000pt;}
._a_c00433{width:23.946667pt;}
._1e_c00433{width:25.013336pt;}
._9_c00433{width:25.973333pt;}
._b_c00433{width:26.880000pt;}
.fs1_c00433{font-size:45.333333pt;}
.fs0_c00433{font-size:53.333333pt;}
.y0_c00433{bottom:0.000000pt;}
.y29_c00433{bottom:57.266686pt;}
.y28_c00433{bottom:97.933353pt;}
.y27_c00433{bottom:111.666686pt;}
.y26_c00433{bottom:125.133353pt;}
.y25_c00433{bottom:138.600020pt;}
.y24_c00433{bottom:152.333353pt;}
.y23_c00433{bottom:165.800020pt;}
.y22_c00433{bottom:179.533353pt;}
.y21_c00433{bottom:193.266686pt;}
.y20_c00433{bottom:206.733353pt;}
.y1f_c00433{bottom:220.466686pt;}
.y1e_c00433{bottom:234.266686pt;}
.y1d_c00433{bottom:247.666686pt;}
.y1c_c00433{bottom:261.133353pt;}
.y1b_c00433{bottom:274.866686pt;}
.y1a_c00433{bottom:288.333353pt;}
.y19_c00433{bottom:302.066686pt;}
.y18_c00433{bottom:315.866686pt;}
.y17_c00433{bottom:329.266686pt;}
.y15_c00433{bottom:405.466686pt;}
.y14_c00433{bottom:422.733353pt;}
.y13_c00433{bottom:440.000020pt;}
.y12_c00433{bottom:457.333353pt;}
.y11_c00433{bottom:474.600020pt;}
.y10_c00433{bottom:491.866686pt;}
.yf_c00433{bottom:509.133353pt;}
.ye_c00433{bottom:526.733353pt;}
.yd_c00433{bottom:543.666686pt;}
.yc_c00433{bottom:561.000020pt;}
.yb_c00433{bottom:578.266686pt;}
.ya_c00433{bottom:595.533353pt;}
.y9_c00433{bottom:613.133353pt;}
.y8_c00433{bottom:630.066686pt;}
.y7_c00433{bottom:647.400020pt;}
.y6_c00433{bottom:664.666686pt;}
.y5_c00433{bottom:681.933353pt;}
.y4_c00433{bottom:699.200020pt;}
.y3_c00433{bottom:716.466686pt;}
.y2_c00433{bottom:733.800020pt;}
.y1_c00433{bottom:751.066686pt;}
.y16_c00433{bottom:788.333353pt;}
.h3_c00433{height:44.470052pt;}
.h4_c00433{height:44.492188pt;}
.h2_c00433{height:52.343750pt;}
.h1_c00433{height:851.333333pt;}
.h0_c00433{height:851.533333pt;}
.w0_c00433{width:570.533360pt;}
.w1_c00433{width:570.666667pt;}
.x0_c00433{left:0.000000pt;}
.x1_c00433{left:72.333333pt;}
.x4_c00433{left:77.733333pt;}
.x2_c00433{left:86.400000pt;}
.x5_c00433{left:106.866667pt;}
.x6_c00433{left:107.866667pt;}
.x3_c00433{left:178.533333pt;}
.x7_c00433{left:472.000000pt;}
}





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

.ir_c00434:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00434{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00434;src:url('chunks/assets/font_e4e8841b0570a083a07c0914.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00434;src:url('chunks/assets/font_554349815efd9e5cca217297.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00434{letter-spacing:0.000000px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00434{word-spacing:-15.000000px;}
.ws0_c00434{word-spacing:-12.750000px;}
.ws2_c00434{word-spacing:0.000000px;}
._17_c00434{margin-left:-11.122113px;}
._4_c00434{margin-left:-9.995964px;}
._5_c00434{margin-left:-8.304036px;}
._d_c00434{margin-left:-7.154973px;}
._e_c00434{margin-left:-5.129460px;}
._1_c00434{margin-left:-3.300006px;}
._0_c00434{margin-left:-1.760979px;}
._2_c00434{width:1.839009px;}
._3_c00434{width:3.320967px;}
._6_c00434{width:4.895964px;}
._8_c00434{width:6.815928px;}
._7_c00434{width:8.631069px;}
._f_c00434{width:10.149027px;}
._10_c00434{width:11.327976px;}
._c_c00434{width:12.383928px;}
._9_c00434{width:13.604943px;}
._16_c00434{width:15.298608px;}
._b_c00434{width:16.709742px;}
._a_c00434{width:17.940000px;}
._14_c00434{width:19.442937px;}
._11_c00434{width:21.540000px;}
._13_c00434{width:22.961982px;}
._12_c00434{width:24.509934px;}
._15_c00434{width:26.174043px;}
.fc1_c00434{color:transparent;}
.fc0_c00434{color:rgb(35,31,32);}
.fs0_c00434{font-size:51.000000px;}
.fs1_c00434{font-size:60.000000px;}
.y0_c00434{bottom:0.000000px;}
.y2d_c00434{bottom:64.800022px;}
.y2c_c00434{bottom:110.550022px;}
.y2b_c00434{bottom:125.325022px;}
.y2a_c00434{bottom:140.775022px;}
.y29_c00434{bottom:155.925022px;}
.y28_c00434{bottom:171.375022px;}
.y27_c00434{bottom:186.825022px;}
.y26_c00434{bottom:202.350022px;}
.y25_c00434{bottom:217.125022px;}
.y24_c00434{bottom:232.575022px;}
.y23_c00434{bottom:248.025022px;}
.y22_c00434{bottom:263.550022px;}
.y21_c00434{bottom:278.325022px;}
.y20_c00434{bottom:293.775022px;}
.y1f_c00434{bottom:308.925022px;}
.y1e_c00434{bottom:324.750022px;}
.y1d_c00434{bottom:339.825022px;}
.y1c_c00434{bottom:354.975022px;}
.y1b_c00434{bottom:370.125022px;}
.y1a_c00434{bottom:385.950022px;}
.y19_c00434{bottom:400.725022px;}
.y18_c00434{bottom:416.475022px;}
.y17_c00434{bottom:431.625022px;}
.y16_c00434{bottom:446.775022px;}
.y15_c00434{bottom:461.925022px;}
.y14_c00434{bottom:477.750022px;}
.y13_c00434{bottom:492.525022px;}
.y12_c00434{bottom:508.350022px;}
.y11_c00434{bottom:523.125022px;}
.y10_c00434{bottom:572.775022px;}
.yf_c00434{bottom:592.200022px;}
.ye_c00434{bottom:612.000022px;}
.yd_c00434{bottom:631.125022px;}
.yc_c00434{bottom:650.925022px;}
.yb_c00434{bottom:669.975022px;}
.ya_c00434{bottom:689.400022px;}
.y9_c00434{bottom:709.200022px;}
.y8_c00434{bottom:728.325022px;}
.y7_c00434{bottom:748.125022px;}
.y6_c00434{bottom:767.550022px;}
.y5_c00434{bottom:786.225022px;}
.y4_c00434{bottom:805.725022px;}
.y3_c00434{bottom:825.525022px;}
.y2_c00434{bottom:844.950022px;}
.y1_c00434{bottom:886.875022px;}
.h2_c00434{height:50.028809px;}
.h4_c00434{height:50.053711px;}
.h3_c00434{height:58.886719px;}
.h1_c00434{height:957.750000px;}
.h0_c00434{height:957.975000px;}
.w1_c00434{width:643.500000px;}
.w0_c00434{width:643.650000px;}
.x0_c00434{left:0.000000px;}
.x1_c00434{left:90.750000px;}
.x2_c00434{left:97.200000px;}
.x3_c00434{left:131.025000px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls0_c00434{letter-spacing:0.000000pt;}
.ws1_c00434{word-spacing:-13.333333pt;}
.ws0_c00434{word-spacing:-11.333333pt;}
.ws2_c00434{word-spacing:0.000000pt;}
._17_c00434{margin-left:-9.886323pt;}
._4_c00434{margin-left:-8.885301pt;}
._5_c00434{margin-left:-7.381365pt;}
._d_c00434{margin-left:-6.359976pt;}
._e_c00434{margin-left:-4.559520pt;}
._1_c00434{margin-left:-2.933339pt;}
._0_c00434{margin-left:-1.565315pt;}
._2_c00434{width:1.634675pt;}
._3_c00434{width:2.951971pt;}
._6_c00434{width:4.351968pt;}
._8_c00434{width:6.058603pt;}
._7_c00434{width:7.672061pt;}
._f_c00434{width:9.021357pt;}
._10_c00434{width:10.069312pt;}
._c_c00434{width:11.007936pt;}
._9_c00434{width:12.093283pt;}
._16_c00434{width:13.598763pt;}
._b_c00434{width:14.853104pt;}
._a_c00434{width:15.946667pt;}
._14_c00434{width:17.282611pt;}
._11_c00434{width:19.146667pt;}
._13_c00434{width:20.410651pt;}
._12_c00434{width:21.786608pt;}
._15_c00434{width:23.265816pt;}
.fs0_c00434{font-size:45.333333pt;}
.fs1_c00434{font-size:53.333333pt;}
.y0_c00434{bottom:0.000000pt;}
.y2d_c00434{bottom:57.600020pt;}
.y2c_c00434{bottom:98.266686pt;}
.y2b_c00434{bottom:111.400020pt;}
.y2a_c00434{bottom:125.133353pt;}
.y29_c00434{bottom:138.600020pt;}
.y28_c00434{bottom:152.333353pt;}
.y27_c00434{bottom:166.066686pt;}
.y26_c00434{bottom:179.866686pt;}
.y25_c00434{bottom:193.000020pt;}
.y24_c00434{bottom:206.733353pt;}
.y23_c00434{bottom:220.466686pt;}
.y22_c00434{bottom:234.266686pt;}
.y21_c00434{bottom:247.400020pt;}
.y20_c00434{bottom:261.133353pt;}
.y1f_c00434{bottom:274.600020pt;}
.y1e_c00434{bottom:288.666686pt;}
.y1d_c00434{bottom:302.066686pt;}
.y1c_c00434{bottom:315.533353pt;}
.y1b_c00434{bottom:329.000020pt;}
.y1a_c00434{bottom:343.066686pt;}
.y19_c00434{bottom:356.200020pt;}
.y18_c00434{bottom:370.200020pt;}
.y17_c00434{bottom:383.666686pt;}
.y16_c00434{bottom:397.133353pt;}
.y15_c00434{bottom:410.600020pt;}
.y14_c00434{bottom:424.666686pt;}
.y13_c00434{bottom:437.800020pt;}
.y12_c00434{bottom:451.866686pt;}
.y11_c00434{bottom:465.000020pt;}
.y10_c00434{bottom:509.133353pt;}
.yf_c00434{bottom:526.400020pt;}
.ye_c00434{bottom:544.000020pt;}
.yd_c00434{bottom:561.000020pt;}
.yc_c00434{bottom:578.600020pt;}
.yb_c00434{bottom:595.533353pt;}
.ya_c00434{bottom:612.800020pt;}
.y9_c00434{bottom:630.400020pt;}
.y8_c00434{bottom:647.400020pt;}
.y7_c00434{bottom:665.000020pt;}
.y6_c00434{bottom:682.266686pt;}
.y5_c00434{bottom:698.866686pt;}
.y4_c00434{bottom:716.200020pt;}
.y3_c00434{bottom:733.800020pt;}
.y2_c00434{bottom:751.066686pt;}
.y1_c00434{bottom:788.333353pt;}
.h2_c00434{height:44.470052pt;}
.h4_c00434{height:44.492188pt;}
.h3_c00434{height:52.343750pt;}
.h1_c00434{height:851.333333pt;}
.h0_c00434{height:851.533333pt;}
.w1_c00434{width:572.000000pt;}
.w0_c00434{width:572.133333pt;}
.x0_c00434{left:0.000000pt;}
.x1_c00434{left:80.666667pt;}
.x2_c00434{left:86.400000pt;}
.x3_c00434{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_deeb1f309e040e92a17b7b8b.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00435;src:url('chunks/assets/font_ae5b41df756f7a63e8351af7.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00435{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00435{letter-spacing:0.000000px;}
.sc__c00435{text-shadow:none;}
.sc0_c00435{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00435{-webkit-text-stroke:0px transparent;}
.sc0_c00435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00435{word-spacing:-15.000000px;}
.ws0_c00435{word-spacing:-12.750000px;}
.ws2_c00435{word-spacing:0.000000px;}
._11_c00435{margin-left:-9.366144px;}
._10_c00435{margin-left:-8.220000px;}
._f_c00435{margin-left:-5.756928px;}
._4_c00435{margin-left:-4.200000px;}
._5_c00435{margin-left:-3.176928px;}
._0_c00435{margin-left:-1.620000px;}
._2_c00435{width:1.620000px;}
._3_c00435{width:3.420000px;}
._d_c00435{width:4.556928px;}
._1_c00435{width:5.640000px;}
._6_c00435{width:7.620000px;}
._9_c00435{width:8.940000px;}
._e_c00435{width:10.080000px;}
._7_c00435{width:11.100000px;}
._8_c00435{width:13.080000px;}
._19_c00435{width:14.909940px;}
._c_c00435{width:17.036928px;}
._a_c00435{width:18.480000px;}
._b_c00435{width:19.560000px;}
._17_c00435{width:20.700000px;}
._12_c00435{width:21.953856px;}
._18_c00435{width:23.910030px;}
._14_c00435{width:25.920000px;}
._13_c00435{width:28.380000px;}
._15_c00435{width:29.820000px;}
._16_c00435{width:31.680000px;}
.fc1_c00435{color:transparent;}
.fc0_c00435{color:rgb(35,31,32);}
.fs1_c00435{font-size:51.000000px;}
.fs0_c00435{font-size:60.000000px;}
.y0_c00435{bottom:0.000000px;}
.y23_c00435{bottom:64.425022px;}
.y22_c00435{bottom:110.175022px;}
.y21_c00435{bottom:125.325022px;}
.y20_c00435{bottom:141.000022px;}
.y1f_c00435{bottom:155.925022px;}
.y1e_c00435{bottom:172.275022px;}
.y1d_c00435{bottom:186.525022px;}
.y1c_c00435{bottom:201.975022px;}
.y1b_c00435{bottom:217.125022px;}
.y1a_c00435{bottom:232.575022px;}
.y19_c00435{bottom:247.725022px;}
.y18_c00435{bottom:301.725022px;}
.y17_c00435{bottom:321.525022px;}
.y16_c00435{bottom:340.950022px;}
.y15_c00435{bottom:359.625022px;}
.y14_c00435{bottom:379.125022px;}
.y13_c00435{bottom:398.550022px;}
.y12_c00435{bottom:417.975022px;}
.y11_c00435{bottom:437.775022px;}
.y10_c00435{bottom:456.825022px;}
.yf_c00435{bottom:476.325022px;}
.ye_c00435{bottom:495.750022px;}
.yd_c00435{bottom:515.550022px;}
.yc_c00435{bottom:556.575022px;}
.yb_c00435{bottom:616.350022px;}
.ya_c00435{bottom:635.775022px;}
.y9_c00435{bottom:654.825022px;}
.y8_c00435{bottom:674.325022px;}
.y7_c00435{bottom:693.750022px;}
.y6_c00435{bottom:713.175022px;}
.y5_c00435{bottom:732.975022px;}
.y4_c00435{bottom:770.025022px;}
.y2_c00435{bottom:825.150022px;}
.y1_c00435{bottom:844.950022px;}
.y3_c00435{bottom:886.875022px;}
.h3_c00435{height:50.028809px;}
.h4_c00435{height:50.053711px;}
.h2_c00435{height:58.886719px;}
.h1_c00435{height:957.750000px;}
.h0_c00435{height:957.975000px;}
.w0_c00435{width:641.850030px;}
.w1_c00435{width:642.000000px;}
.x0_c00435{left:0.000000px;}
.x3_c00435{left:80.250000px;}
.x1_c00435{left:81.375000px;}
.x5_c00435{left:87.450000px;}
.x4_c00435{left:97.200000px;}
.x7_c00435{left:120.225000px;}
.x6_c00435{left:121.650000px;}
.x2_c00435{left:200.850000px;}
.x8_c00435{left:531.000000px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls0_c00435{letter-spacing:0.000000pt;}
.ws1_c00435{word-spacing:-13.333333pt;}
.ws0_c00435{word-spacing:-11.333333pt;}
.ws2_c00435{word-spacing:0.000000pt;}
._11_c00435{margin-left:-8.325461pt;}
._10_c00435{margin-left:-7.306667pt;}
._f_c00435{margin-left:-5.117269pt;}
._4_c00435{margin-left:-3.733333pt;}
._5_c00435{margin-left:-2.823936pt;}
._0_c00435{margin-left:-1.440000pt;}
._2_c00435{width:1.440000pt;}
._3_c00435{width:3.040000pt;}
._d_c00435{width:4.050603pt;}
._1_c00435{width:5.013333pt;}
._6_c00435{width:6.773333pt;}
._9_c00435{width:7.946667pt;}
._e_c00435{width:8.960000pt;}
._7_c00435{width:9.866667pt;}
._8_c00435{width:11.626667pt;}
._19_c00435{width:13.253280pt;}
._c_c00435{width:15.143936pt;}
._a_c00435{width:16.426667pt;}
._b_c00435{width:17.386667pt;}
._17_c00435{width:18.400000pt;}
._12_c00435{width:19.514539pt;}
._18_c00435{width:21.253360pt;}
._14_c00435{width:23.040000pt;}
._13_c00435{width:25.226667pt;}
._15_c00435{width:26.506667pt;}
._16_c00435{width:28.160000pt;}
.fs1_c00435{font-size:45.333333pt;}
.fs0_c00435{font-size:53.333333pt;}
.y0_c00435{bottom:0.000000pt;}
.y23_c00435{bottom:57.266686pt;}
.y22_c00435{bottom:97.933353pt;}
.y21_c00435{bottom:111.400020pt;}
.y20_c00435{bottom:125.333353pt;}
.y1f_c00435{bottom:138.600020pt;}
.y1e_c00435{bottom:153.133353pt;}
.y1d_c00435{bottom:165.800020pt;}
.y1c_c00435{bottom:179.533353pt;}
.y1b_c00435{bottom:193.000020pt;}
.y1a_c00435{bottom:206.733353pt;}
.y19_c00435{bottom:220.200020pt;}
.y18_c00435{bottom:268.200020pt;}
.y17_c00435{bottom:285.800020pt;}
.y16_c00435{bottom:303.066686pt;}
.y15_c00435{bottom:319.666686pt;}
.y14_c00435{bottom:337.000020pt;}
.y13_c00435{bottom:354.266686pt;}
.y12_c00435{bottom:371.533353pt;}
.y11_c00435{bottom:389.133353pt;}
.y10_c00435{bottom:406.066686pt;}
.yf_c00435{bottom:423.400020pt;}
.ye_c00435{bottom:440.666686pt;}
.yd_c00435{bottom:458.266686pt;}
.yc_c00435{bottom:494.733353pt;}
.yb_c00435{bottom:547.866686pt;}
.ya_c00435{bottom:565.133353pt;}
.y9_c00435{bottom:582.066686pt;}
.y8_c00435{bottom:599.400020pt;}
.y7_c00435{bottom:616.666686pt;}
.y6_c00435{bottom:633.933353pt;}
.y5_c00435{bottom:651.533353pt;}
.y4_c00435{bottom:684.466686pt;}
.y2_c00435{bottom:733.466686pt;}
.y1_c00435{bottom:751.066686pt;}
.y3_c00435{bottom:788.333353pt;}
.h3_c00435{height:44.470052pt;}
.h4_c00435{height:44.492188pt;}
.h2_c00435{height:52.343750pt;}
.h1_c00435{height:851.333333pt;}
.h0_c00435{height:851.533333pt;}
.w0_c00435{width:570.533360pt;}
.w1_c00435{width:570.666667pt;}
.x0_c00435{left:0.000000pt;}
.x3_c00435{left:71.333333pt;}
.x1_c00435{left:72.333333pt;}
.x5_c00435{left:77.733333pt;}
.x4_c00435{left:86.400000pt;}
.x7_c00435{left:106.866667pt;}
.x6_c00435{left:108.133333pt;}
.x2_c00435{left:178.533333pt;}
.x8_c00435{left:472.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9f0610e1fabc13560503e9d6.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00436;src:url('chunks/assets/font_dc19368283c5f4b15dc5c74c.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00436{letter-spacing:0.000000px;}
.sc__c00436{text-shadow:none;}
.sc0_c00436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00436{-webkit-text-stroke:0px transparent;}
.sc0_c00436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00436{word-spacing:-15.000000px;}
.ws0_c00436{word-spacing:-12.750000px;}
.ws2_c00436{word-spacing:0.000000px;}
._c_c00436{margin-left:-10.667604px;}
._6_c00436{margin-left:-9.600000px;}
._12_c00436{margin-left:-7.767207px;}
._15_c00436{margin-left:-6.654300px;}
._5_c00436{margin-left:-5.495592px;}
._1a_c00436{margin-left:-4.317543px;}
._1_c00436{margin-left:-3.300006px;}
._0_c00436{margin-left:-1.760979px;}
._2_c00436{width:1.839009px;}
._3_c00436{width:3.320967px;}
._10_c00436{width:4.536144px;}
._e_c00436{width:5.984919px;}
._d_c00436{width:7.560000px;}
._f_c00436{width:9.524979px;}
._13_c00436{width:10.640991px;}
._7_c00436{width:12.060000px;}
._11_c00436{width:13.140072px;}
._19_c00436{width:15.155823px;}
._a_c00436{width:16.562973px;}
._14_c00436{width:17.708871px;}
._4_c00436{width:19.280835px;}
._b_c00436{width:20.363964px;}
._9_c00436{width:21.791892px;}
._8_c00436{width:23.940000px;}
._16_c00436{width:25.572012px;}
._18_c00436{width:27.332940px;}
._17_c00436{width:29.093919px;}
.fc1_c00436{color:transparent;}
.fc0_c00436{color:rgb(35,31,32);}
.fs0_c00436{font-size:51.000000px;}
.fs1_c00436{font-size:60.000000px;}
.y0_c00436{bottom:0.000000px;}
.y2b_c00436{bottom:64.425022px;}
.y2a_c00436{bottom:110.175022px;}
.y29_c00436{bottom:125.325022px;}
.y28_c00436{bottom:141.150022px;}
.y27_c00436{bottom:155.925022px;}
.y26_c00436{bottom:171.600022px;}
.y25_c00436{bottom:186.525022px;}
.y24_c00436{bottom:202.350022px;}
.y23_c00436{bottom:217.425022px;}
.y22_c00436{bottom:232.575022px;}
.y21_c00436{bottom:247.725022px;}
.y20_c00436{bottom:263.550022px;}
.y1f_c00436{bottom:278.475022px;}
.y1e_c00436{bottom:294.150022px;}
.y1d_c00436{bottom:308.925022px;}
.y1c_c00436{bottom:324.750022px;}
.y1b_c00436{bottom:339.825022px;}
.y1a_c00436{bottom:354.975022px;}
.y19_c00436{bottom:398.175022px;}
.y18_c00436{bottom:417.225022px;}
.y17_c00436{bottom:437.025022px;}
.y16_c00436{bottom:456.150022px;}
.y15_c00436{bottom:475.950022px;}
.y14_c00436{bottom:495.375022px;}
.y13_c00436{bottom:514.800022px;}
.y12_c00436{bottom:533.925022px;}
.y11_c00436{bottom:553.725022px;}
.y10_c00436{bottom:573.150022px;}
.yf_c00436{bottom:592.125022px;}
.ye_c00436{bottom:611.625022px;}
.yd_c00436{bottom:631.125022px;}
.yc_c00436{bottom:650.925022px;}
.yb_c00436{bottom:670.350022px;}
.ya_c00436{bottom:689.325022px;}
.y9_c00436{bottom:708.825022px;}
.y8_c00436{bottom:728.325022px;}
.y7_c00436{bottom:748.125022px;}
.y6_c00436{bottom:767.550022px;}
.y5_c00436{bottom:786.300022px;}
.y4_c00436{bottom:805.725022px;}
.y3_c00436{bottom:825.150022px;}
.y2_c00436{bottom:844.575022px;}
.y1_c00436{bottom:886.875022px;}
.h2_c00436{height:50.028809px;}
.h4_c00436{height:50.053711px;}
.h3_c00436{height:58.886719px;}
.h1_c00436{height:957.750000px;}
.h0_c00436{height:957.975000px;}
.w1_c00436{width:643.500000px;}
.w0_c00436{width:643.650000px;}
.x0_c00436{left:0.000000px;}
.x1_c00436{left:90.750000px;}
.x2_c00436{left:91.800000px;}
.x4_c00436{left:97.200000px;}
.x3_c00436{left:107.250000px;}
.x5_c00436{left:131.400000px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls0_c00436{letter-spacing:0.000000pt;}
.ws1_c00436{word-spacing:-13.333333pt;}
.ws0_c00436{word-spacing:-11.333333pt;}
.ws2_c00436{word-spacing:0.000000pt;}
._c_c00436{margin-left:-9.482315pt;}
._6_c00436{margin-left:-8.533333pt;}
._12_c00436{margin-left:-6.904184pt;}
._15_c00436{margin-left:-5.914933pt;}
._5_c00436{margin-left:-4.884971pt;}
._1a_c00436{margin-left:-3.837816pt;}
._1_c00436{margin-left:-2.933339pt;}
._0_c00436{margin-left:-1.565315pt;}
._2_c00436{width:1.634675pt;}
._3_c00436{width:2.951971pt;}
._10_c00436{width:4.032128pt;}
._e_c00436{width:5.319928pt;}
._d_c00436{width:6.720000pt;}
._f_c00436{width:8.466648pt;}
._13_c00436{width:9.458659pt;}
._7_c00436{width:10.720000pt;}
._11_c00436{width:11.680064pt;}
._19_c00436{width:13.471843pt;}
._a_c00436{width:14.722643pt;}
._14_c00436{width:15.741219pt;}
._4_c00436{width:17.138520pt;}
._b_c00436{width:18.101301pt;}
._9_c00436{width:19.370571pt;}
._8_c00436{width:21.280000pt;}
._16_c00436{width:22.730677pt;}
._18_c00436{width:24.295947pt;}
._17_c00436{width:25.861261pt;}
.fs0_c00436{font-size:45.333333pt;}
.fs1_c00436{font-size:53.333333pt;}
.y0_c00436{bottom:0.000000pt;}
.y2b_c00436{bottom:57.266686pt;}
.y2a_c00436{bottom:97.933353pt;}
.y29_c00436{bottom:111.400020pt;}
.y28_c00436{bottom:125.466686pt;}
.y27_c00436{bottom:138.600020pt;}
.y26_c00436{bottom:152.533353pt;}
.y25_c00436{bottom:165.800020pt;}
.y24_c00436{bottom:179.866686pt;}
.y23_c00436{bottom:193.266686pt;}
.y22_c00436{bottom:206.733353pt;}
.y21_c00436{bottom:220.200020pt;}
.y20_c00436{bottom:234.266686pt;}
.y1f_c00436{bottom:247.533353pt;}
.y1e_c00436{bottom:261.466686pt;}
.y1d_c00436{bottom:274.600020pt;}
.y1c_c00436{bottom:288.666686pt;}
.y1b_c00436{bottom:302.066686pt;}
.y1a_c00436{bottom:315.533353pt;}
.y19_c00436{bottom:353.933353pt;}
.y18_c00436{bottom:370.866686pt;}
.y17_c00436{bottom:388.466686pt;}
.y16_c00436{bottom:405.466686pt;}
.y15_c00436{bottom:423.066686pt;}
.y14_c00436{bottom:440.333353pt;}
.y13_c00436{bottom:457.600020pt;}
.y12_c00436{bottom:474.600020pt;}
.y11_c00436{bottom:492.200020pt;}
.y10_c00436{bottom:509.466686pt;}
.yf_c00436{bottom:526.333353pt;}
.ye_c00436{bottom:543.666686pt;}
.yd_c00436{bottom:561.000020pt;}
.yc_c00436{bottom:578.600020pt;}
.yb_c00436{bottom:595.866686pt;}
.ya_c00436{bottom:612.733353pt;}
.y9_c00436{bottom:630.066686pt;}
.y8_c00436{bottom:647.400020pt;}
.y7_c00436{bottom:665.000020pt;}
.y6_c00436{bottom:682.266686pt;}
.y5_c00436{bottom:698.933353pt;}
.y4_c00436{bottom:716.200020pt;}
.y3_c00436{bottom:733.466686pt;}
.y2_c00436{bottom:750.733353pt;}
.y1_c00436{bottom:788.333353pt;}
.h2_c00436{height:44.470052pt;}
.h4_c00436{height:44.492188pt;}
.h3_c00436{height:52.343750pt;}
.h1_c00436{height:851.333333pt;}
.h0_c00436{height:851.533333pt;}
.w1_c00436{width:572.000000pt;}
.w0_c00436{width:572.133333pt;}
.x0_c00436{left:0.000000pt;}
.x1_c00436{left:80.666667pt;}
.x2_c00436{left:81.600000pt;}
.x4_c00436{left:86.400000pt;}
.x3_c00436{left:95.333333pt;}
.x5_c00436{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_911f39b9fac8b704b2b1594c.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00437;src:url('chunks/assets/font_755b8725a6bd3aad123dc20d.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;}
.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;}
.ls0_c00437{letter-spacing:0.000000px;}
.sc__c00437{text-shadow:none;}
.sc0_c00437{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00437{-webkit-text-stroke:0px transparent;}
.sc0_c00437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00437{word-spacing:-15.000000px;}
.ws0_c00437{word-spacing:-12.750000px;}
.ws2_c00437{word-spacing:0.000000px;}
._7_c00437{margin-left:-15.600000px;}
._13_c00437{margin-left:-12.060000px;}
._b_c00437{margin-left:-10.260000px;}
._5_c00437{margin-left:-8.100000px;}
._a_c00437{margin-left:-5.940000px;}
._8_c00437{margin-left:-4.620000px;}
._9_c00437{margin-left:-3.120000px;}
._2_c00437{margin-left:-1.620000px;}
._0_c00437{width:1.620000px;}
._1_c00437{width:3.000000px;}
._18_c00437{width:4.007934px;}
._4_c00437{width:5.100000px;}
._6_c00437{width:6.300000px;}
._3_c00437{width:7.320000px;}
._10_c00437{width:9.240000px;}
._12_c00437{width:10.620000px;}
._11_c00437{width:11.880000px;}
._d_c00437{width:13.200000px;}
._19_c00437{width:14.925075px;}
._f_c00437{width:16.020000px;}
._c_c00437{width:17.400000px;}
._e_c00437{width:18.540000px;}
._17_c00437{width:22.710039px;}
._15_c00437{width:23.790042px;}
._14_c00437{width:25.410030px;}
._16_c00437{width:26.910042px;}
._1a_c00437{width:28.530093px;}
.fc1_c00437{color:transparent;}
.fc0_c00437{color:rgb(35,31,32);}
.fs1_c00437{font-size:51.000000px;}
.fs0_c00437{font-size:60.000000px;}
.y0_c00437{bottom:0.000000px;}
.y2e_c00437{bottom:64.425022px;}
.y2d_c00437{bottom:110.550022px;}
.y2c_c00437{bottom:125.625022px;}
.y2b_c00437{bottom:141.150022px;}
.y2a_c00437{bottom:156.225022px;}
.y29_c00437{bottom:171.375022px;}
.y28_c00437{bottom:186.825022px;}
.y27_c00437{bottom:202.200022px;}
.y26_c00437{bottom:217.125022px;}
.y25_c00437{bottom:232.950022px;}
.y24_c00437{bottom:247.725022px;}
.y23_c00437{bottom:263.550022px;}
.y22_c00437{bottom:278.325022px;}
.y21_c00437{bottom:294.150022px;}
.y20_c00437{bottom:308.925022px;}
.y1f_c00437{bottom:324.375022px;}
.y1e_c00437{bottom:339.525022px;}
.y1d_c00437{bottom:354.975022px;}
.y1c_c00437{bottom:370.425022px;}
.y1b_c00437{bottom:385.575022px;}
.y1a_c00437{bottom:400.725022px;}
.y19_c00437{bottom:416.175022px;}
.y18_c00437{bottom:431.325022px;}
.y17_c00437{bottom:446.775022px;}
.y16_c00437{bottom:461.925022px;}
.y15_c00437{bottom:477.375022px;}
.y14_c00437{bottom:492.525022px;}
.y13_c00437{bottom:507.975022px;}
.y12_c00437{bottom:523.125022px;}
.y11_c00437{bottom:538.575022px;}
.y10_c00437{bottom:553.725022px;}
.yf_c00437{bottom:569.175022px;}
.ye_c00437{bottom:584.325022px;}
.yd_c00437{bottom:599.775022px;}
.yc_c00437{bottom:614.925022px;}
.ya_c00437{bottom:670.350022px;}
.y9_c00437{bottom:689.775022px;}
.y8_c00437{bottom:708.825022px;}
.y7_c00437{bottom:728.325022px;}
.y6_c00437{bottom:747.750022px;}
.y5_c00437{bottom:767.175022px;}
.y4_c00437{bottom:786.225022px;}
.y3_c00437{bottom:806.025022px;}
.y2_c00437{bottom:825.150022px;}
.y1_c00437{bottom:844.575022px;}
.yb_c00437{bottom:886.875022px;}
.h3_c00437{height:50.028809px;}
.h4_c00437{height:50.053711px;}
.h2_c00437{height:58.886719px;}
.h1_c00437{height:957.750000px;}
.h0_c00437{height:957.975000px;}
.w0_c00437{width:641.850030px;}
.w1_c00437{width:642.000000px;}
.x0_c00437{left:0.000000px;}
.x2_c00437{left:80.250000px;}
.x1_c00437{left:81.375000px;}
.x5_c00437{left:87.450000px;}
.x4_c00437{left:121.350000px;}
.x3_c00437{left:200.850000px;}
.x6_c00437{left:531.000000px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls0_c00437{letter-spacing:0.000000pt;}
.ws1_c00437{word-spacing:-13.333333pt;}
.ws0_c00437{word-spacing:-11.333333pt;}
.ws2_c00437{word-spacing:0.000000pt;}
._7_c00437{margin-left:-13.866667pt;}
._13_c00437{margin-left:-10.720000pt;}
._b_c00437{margin-left:-9.120000pt;}
._5_c00437{margin-left:-7.200000pt;}
._a_c00437{margin-left:-5.280000pt;}
._8_c00437{margin-left:-4.106667pt;}
._9_c00437{margin-left:-2.773333pt;}
._2_c00437{margin-left:-1.440000pt;}
._0_c00437{width:1.440000pt;}
._1_c00437{width:2.666667pt;}
._18_c00437{width:3.562608pt;}
._4_c00437{width:4.533333pt;}
._6_c00437{width:5.600000pt;}
._3_c00437{width:6.506667pt;}
._10_c00437{width:8.213333pt;}
._12_c00437{width:9.440000pt;}
._11_c00437{width:10.560000pt;}
._d_c00437{width:11.733333pt;}
._19_c00437{width:13.266733pt;}
._f_c00437{width:14.240000pt;}
._c_c00437{width:15.466667pt;}
._e_c00437{width:16.480000pt;}
._17_c00437{width:20.186701pt;}
._15_c00437{width:21.146704pt;}
._14_c00437{width:22.586693pt;}
._16_c00437{width:23.920037pt;}
._1a_c00437{width:25.360083pt;}
.fs1_c00437{font-size:45.333333pt;}
.fs0_c00437{font-size:53.333333pt;}
.y0_c00437{bottom:0.000000pt;}
.y2e_c00437{bottom:57.266686pt;}
.y2d_c00437{bottom:98.266686pt;}
.y2c_c00437{bottom:111.666686pt;}
.y2b_c00437{bottom:125.466686pt;}
.y2a_c00437{bottom:138.866686pt;}
.y29_c00437{bottom:152.333353pt;}
.y28_c00437{bottom:166.066686pt;}
.y27_c00437{bottom:179.733353pt;}
.y26_c00437{bottom:193.000020pt;}
.y25_c00437{bottom:207.066686pt;}
.y24_c00437{bottom:220.200020pt;}
.y23_c00437{bottom:234.266686pt;}
.y22_c00437{bottom:247.400020pt;}
.y21_c00437{bottom:261.466686pt;}
.y20_c00437{bottom:274.600020pt;}
.y1f_c00437{bottom:288.333353pt;}
.y1e_c00437{bottom:301.800020pt;}
.y1d_c00437{bottom:315.533353pt;}
.y1c_c00437{bottom:329.266686pt;}
.y1b_c00437{bottom:342.733353pt;}
.y1a_c00437{bottom:356.200020pt;}
.y19_c00437{bottom:369.933353pt;}
.y18_c00437{bottom:383.400020pt;}
.y17_c00437{bottom:397.133353pt;}
.y16_c00437{bottom:410.600020pt;}
.y15_c00437{bottom:424.333353pt;}
.y14_c00437{bottom:437.800020pt;}
.y13_c00437{bottom:451.533353pt;}
.y12_c00437{bottom:465.000020pt;}
.y11_c00437{bottom:478.733353pt;}
.y10_c00437{bottom:492.200020pt;}
.yf_c00437{bottom:505.933353pt;}
.ye_c00437{bottom:519.400020pt;}
.yd_c00437{bottom:533.133353pt;}
.yc_c00437{bottom:546.600020pt;}
.ya_c00437{bottom:595.866686pt;}
.y9_c00437{bottom:613.133353pt;}
.y8_c00437{bottom:630.066686pt;}
.y7_c00437{bottom:647.400020pt;}
.y6_c00437{bottom:664.666686pt;}
.y5_c00437{bottom:681.933353pt;}
.y4_c00437{bottom:698.866686pt;}
.y3_c00437{bottom:716.466686pt;}
.y2_c00437{bottom:733.466686pt;}
.y1_c00437{bottom:750.733353pt;}
.yb_c00437{bottom:788.333353pt;}
.h3_c00437{height:44.470052pt;}
.h4_c00437{height:44.492188pt;}
.h2_c00437{height:52.343750pt;}
.h1_c00437{height:851.333333pt;}
.h0_c00437{height:851.533333pt;}
.w0_c00437{width:570.533360pt;}
.w1_c00437{width:570.666667pt;}
.x0_c00437{left:0.000000pt;}
.x2_c00437{left:71.333333pt;}
.x1_c00437{left:72.333333pt;}
.x5_c00437{left:77.733333pt;}
.x4_c00437{left:107.866667pt;}
.x3_c00437{left:178.533333pt;}
.x6_c00437{left:472.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e786ef71a132e4bd4651410f.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00438;src:url('chunks/assets/font_3adabbd4b4016f098d348389.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00438{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00438{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_c00438{vertical-align:0.000000px;}
.ls0_c00438{letter-spacing:0.000000px;}
.sc__c00438{text-shadow:none;}
.sc0_c00438{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00438{-webkit-text-stroke:0px transparent;}
.sc0_c00438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00438{word-spacing:-15.000000px;}
.ws0_c00438{word-spacing:-12.750000px;}
.ws2_c00438{word-spacing:0.000000px;}
._d_c00438{margin-left:-10.380000px;}
._b_c00438{margin-left:-9.000000px;}
._a_c00438{margin-left:-7.860000px;}
._e_c00438{margin-left:-6.660000px;}
._11_c00438{margin-left:-4.800000px;}
._f_c00438{margin-left:-3.600000px;}
._10_c00438{margin-left:-2.580000px;}
._0_c00438{margin-left:-1.320000px;}
._2_c00438{width:1.500000px;}
._4_c00438{width:2.580000px;}
._1_c00438{width:4.020000px;}
._5_c00438{width:5.040000px;}
._3_c00438{width:6.060000px;}
._8_c00438{width:7.620000px;}
._c_c00438{width:9.480000px;}
._9_c00438{width:10.740000px;}
._7_c00438{width:12.360000px;}
._6_c00438{width:13.620000px;}
._14_c00438{width:21.810051px;}
._15_c00438{width:23.130042px;}
._12_c00438{width:24.510042px;}
._13_c00438{width:25.770042px;}
.fc1_c00438{color:transparent;}
.fc0_c00438{color:rgb(35,31,32);}
.fs1_c00438{font-size:51.000000px;}
.fs0_c00438{font-size:60.000000px;}
.y0_c00438{bottom:0.000000px;}
.y29_c00438{bottom:64.425022px;}
.y28_c00438{bottom:110.550022px;}
.y27_c00438{bottom:125.325022px;}
.y26_c00438{bottom:141.150022px;}
.y25_c00438{bottom:155.925022px;}
.y24_c00438{bottom:171.375022px;}
.y23_c00438{bottom:186.825022px;}
.y22_c00438{bottom:202.350022px;}
.y21_c00438{bottom:217.125022px;}
.y20_c00438{bottom:232.575022px;}
.y1f_c00438{bottom:247.725022px;}
.y1e_c00438{bottom:263.175022px;}
.y1d_c00438{bottom:278.625022px;}
.y1c_c00438{bottom:293.775022px;}
.y1b_c00438{bottom:309.225022px;}
.y1a_c00438{bottom:324.750022px;}
.y19_c00438{bottom:339.525022px;}
.y18_c00438{bottom:354.975022px;}
.y17_c00438{bottom:370.125022px;}
.y16_c00438{bottom:385.575022px;}
.y15_c00438{bottom:400.875022px;}
.y14_c00438{bottom:416.550022px;}
.y13_c00438{bottom:456.525022px;}
.y12_c00438{bottom:475.950022px;}
.y11_c00438{bottom:495.000022px;}
.y10_c00438{bottom:514.800022px;}
.yf_c00438{bottom:533.925022px;}
.ye_c00438{bottom:553.350022px;}
.yd_c00438{bottom:592.575022px;}
.yb_c00438{bottom:650.550022px;}
.ya_c00438{bottom:669.975022px;}
.y9_c00438{bottom:689.775022px;}
.y8_c00438{bottom:709.200022px;}
.y7_c00438{bottom:728.625022px;}
.y6_c00438{bottom:748.125022px;}
.y5_c00438{bottom:767.100022px;}
.y4_c00438{bottom:786.600022px;}
.y3_c00438{bottom:806.100022px;}
.y2_c00438{bottom:825.525022px;}
.y1_c00438{bottom:844.950022px;}
.yc_c00438{bottom:886.875022px;}
.h3_c00438{height:50.028809px;}
.h4_c00438{height:50.053711px;}
.h2_c00438{height:58.886719px;}
.h1_c00438{height:957.750000px;}
.h0_c00438{height:957.975000px;}
.w1_c00438{width:643.500000px;}
.w0_c00438{width:643.650000px;}
.x0_c00438{left:0.000000px;}
.x2_c00438{left:91.050000px;}
.x5_c00438{left:97.200000px;}
.x1_c00438{left:106.200000px;}
.x3_c00438{left:130.350000px;}
.x4_c00438{left:131.775000px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls0_c00438{letter-spacing:0.000000pt;}
.ws1_c00438{word-spacing:-13.333333pt;}
.ws0_c00438{word-spacing:-11.333333pt;}
.ws2_c00438{word-spacing:0.000000pt;}
._d_c00438{margin-left:-9.226667pt;}
._b_c00438{margin-left:-8.000000pt;}
._a_c00438{margin-left:-6.986667pt;}
._e_c00438{margin-left:-5.920000pt;}
._11_c00438{margin-left:-4.266667pt;}
._f_c00438{margin-left:-3.200000pt;}
._10_c00438{margin-left:-2.293333pt;}
._0_c00438{margin-left:-1.173333pt;}
._2_c00438{width:1.333333pt;}
._4_c00438{width:2.293333pt;}
._1_c00438{width:3.573333pt;}
._5_c00438{width:4.480000pt;}
._3_c00438{width:5.386667pt;}
._8_c00438{width:6.773333pt;}
._c_c00438{width:8.426667pt;}
._9_c00438{width:9.546667pt;}
._7_c00438{width:10.986667pt;}
._6_c00438{width:12.106667pt;}
._14_c00438{width:19.386712pt;}
._15_c00438{width:20.560037pt;}
._12_c00438{width:21.786704pt;}
._13_c00438{width:22.906704pt;}
.fs1_c00438{font-size:45.333333pt;}
.fs0_c00438{font-size:53.333333pt;}
.y0_c00438{bottom:0.000000pt;}
.y29_c00438{bottom:57.266686pt;}
.y28_c00438{bottom:98.266686pt;}
.y27_c00438{bottom:111.400020pt;}
.y26_c00438{bottom:125.466686pt;}
.y25_c00438{bottom:138.600020pt;}
.y24_c00438{bottom:152.333353pt;}
.y23_c00438{bottom:166.066686pt;}
.y22_c00438{bottom:179.866686pt;}
.y21_c00438{bottom:193.000020pt;}
.y20_c00438{bottom:206.733353pt;}
.y1f_c00438{bottom:220.200020pt;}
.y1e_c00438{bottom:233.933353pt;}
.y1d_c00438{bottom:247.666686pt;}
.y1c_c00438{bottom:261.133353pt;}
.y1b_c00438{bottom:274.866686pt;}
.y1a_c00438{bottom:288.666686pt;}
.y19_c00438{bottom:301.800020pt;}
.y18_c00438{bottom:315.533353pt;}
.y17_c00438{bottom:329.000020pt;}
.y16_c00438{bottom:342.733353pt;}
.y15_c00438{bottom:356.333353pt;}
.y14_c00438{bottom:370.266686pt;}
.y13_c00438{bottom:405.800020pt;}
.y12_c00438{bottom:423.066686pt;}
.y11_c00438{bottom:440.000020pt;}
.y10_c00438{bottom:457.600020pt;}
.yf_c00438{bottom:474.600020pt;}
.ye_c00438{bottom:491.866686pt;}
.yd_c00438{bottom:526.733353pt;}
.yb_c00438{bottom:578.266686pt;}
.ya_c00438{bottom:595.533353pt;}
.y9_c00438{bottom:613.133353pt;}
.y8_c00438{bottom:630.400020pt;}
.y7_c00438{bottom:647.666686pt;}
.y6_c00438{bottom:665.000020pt;}
.y5_c00438{bottom:681.866686pt;}
.y4_c00438{bottom:699.200020pt;}
.y3_c00438{bottom:716.533353pt;}
.y2_c00438{bottom:733.800020pt;}
.y1_c00438{bottom:751.066686pt;}
.yc_c00438{bottom:788.333353pt;}
.h3_c00438{height:44.470052pt;}
.h4_c00438{height:44.492188pt;}
.h2_c00438{height:52.343750pt;}
.h1_c00438{height:851.333333pt;}
.h0_c00438{height:851.533333pt;}
.w1_c00438{width:572.000000pt;}
.w0_c00438{width:572.133333pt;}
.x0_c00438{left:0.000000pt;}
.x2_c00438{left:80.933333pt;}
.x5_c00438{left:86.400000pt;}
.x1_c00438{left:94.400000pt;}
.x3_c00438{left:115.866667pt;}
.x4_c00438{left:117.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7ca3ad6a55c0ddfec8c3acf0.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00439;src:url('chunks/assets/font_38983c3448acb0fc4d454664.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00439{letter-spacing:0.000000px;}
.ls0_c00439{letter-spacing:17.550000px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00439{word-spacing:-15.000000px;}
.ws0_c00439{word-spacing:-12.750000px;}
.ws2_c00439{word-spacing:0.000000px;}
._17_c00439{margin-left:-30.000000px;}
._14_c00439{margin-left:-15.960000px;}
._16_c00439{margin-left:-14.400000px;}
._15_c00439{margin-left:-9.600000px;}
._12_c00439{margin-left:-6.780000px;}
._19_c00439{margin-left:-5.597973px;}
._a_c00439{margin-left:-3.960000px;}
._b_c00439{margin-left:-2.700000px;}
._8_c00439{margin-left:-1.620000px;}
._0_c00439{width:1.260000px;}
._2_c00439{width:2.280000px;}
._4_c00439{width:3.480000px;}
._3_c00439{width:4.680000px;}
._d_c00439{width:5.820000px;}
._1_c00439{width:7.020000px;}
._c_c00439{width:8.340000px;}
._5_c00439{width:9.420000px;}
._18_c00439{width:10.517919px;}
._6_c00439{width:11.580000px;}
._9_c00439{width:12.900000px;}
._e_c00439{width:13.920000px;}
._1a_c00439{width:15.239964px;}
._7_c00439{width:16.800000px;}
._11_c00439{width:18.180000px;}
._f_c00439{width:19.260000px;}
._13_c00439{width:20.760000px;}
._10_c00439{width:22.140000px;}
.fc2_c00439{color:transparent;}
.fc1_c00439{color:rgb(0,0,0);}
.fc0_c00439{color:rgb(35,31,32);}
.fs1_c00439{font-size:51.000000px;}
.fs0_c00439{font-size:60.000000px;}
.y0_c00439{bottom:0.000000px;}
.y24_c00439{bottom:64.425022px;}
.y23_c00439{bottom:110.475022px;}
.y22_c00439{bottom:125.625022px;}
.y21_c00439{bottom:140.775022px;}
.y20_c00439{bottom:155.925022px;}
.y1f_c00439{bottom:171.375022px;}
.y1e_c00439{bottom:235.800022px;}
.y1d_c00439{bottom:255.225022px;}
.y1c_c00439{bottom:274.725022px;}
.y1b_c00439{bottom:294.150022px;}
.y1a_c00439{bottom:313.575022px;}
.y19_c00439{bottom:332.625022px;}
.y18_c00439{bottom:361.425022px;}
.y17_c00439{bottom:380.550022px;}
.y16_c00439{bottom:399.975022px;}
.y15_c00439{bottom:419.775022px;}
.y14_c00439{bottom:438.825022px;}
.y13_c00439{bottom:458.325022px;}
.y12_c00439{bottom:478.125022px;}
.y11_c00439{bottom:497.175022px;}
.y10_c00439{bottom:535.350022px;}
.ye_c00439{bottom:592.200022px;}
.yd_c00439{bottom:611.625022px;}
.yc_c00439{bottom:631.425022px;}
.yb_c00439{bottom:650.550022px;}
.ya_c00439{bottom:670.350022px;}
.y9_c00439{bottom:689.775022px;}
.y8_c00439{bottom:708.825022px;}
.y7_c00439{bottom:728.325022px;}
.y6_c00439{bottom:747.750022px;}
.y5_c00439{bottom:767.475022px;}
.y4_c00439{bottom:786.225022px;}
.y3_c00439{bottom:806.025022px;}
.y2_c00439{bottom:825.525022px;}
.y1_c00439{bottom:844.575022px;}
.yf_c00439{bottom:886.875022px;}
.h3_c00439{height:50.028809px;}
.h5_c00439{height:50.053711px;}
.h4_c00439{height:58.857422px;}
.h2_c00439{height:58.886719px;}
.h1_c00439{height:957.750000px;}
.h0_c00439{height:957.975000px;}
.w0_c00439{width:641.850030px;}
.w1_c00439{width:642.000000px;}
.x0_c00439{left:0.000000px;}
.x1_c00439{left:81.000000px;}
.x5_c00439{left:87.450000px;}
.x3_c00439{left:96.150000px;}
.x4_c00439{left:97.200000px;}
.x6_c00439{left:120.225000px;}
.x2_c00439{left:200.850000px;}
.x7_c00439{left:531.000000px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls1_c00439{letter-spacing:0.000000pt;}
.ls0_c00439{letter-spacing:15.600000pt;}
.ws1_c00439{word-spacing:-13.333333pt;}
.ws0_c00439{word-spacing:-11.333333pt;}
.ws2_c00439{word-spacing:0.000000pt;}
._17_c00439{margin-left:-26.666667pt;}
._14_c00439{margin-left:-14.186667pt;}
._16_c00439{margin-left:-12.800000pt;}
._15_c00439{margin-left:-8.533333pt;}
._12_c00439{margin-left:-6.026667pt;}
._19_c00439{margin-left:-4.975976pt;}
._a_c00439{margin-left:-3.520000pt;}
._b_c00439{margin-left:-2.400000pt;}
._8_c00439{margin-left:-1.440000pt;}
._0_c00439{width:1.120000pt;}
._2_c00439{width:2.026667pt;}
._4_c00439{width:3.093333pt;}
._3_c00439{width:4.160000pt;}
._d_c00439{width:5.173333pt;}
._1_c00439{width:6.240000pt;}
._c_c00439{width:7.413333pt;}
._5_c00439{width:8.373333pt;}
._18_c00439{width:9.349261pt;}
._6_c00439{width:10.293333pt;}
._9_c00439{width:11.466667pt;}
._e_c00439{width:12.373333pt;}
._1a_c00439{width:13.546635pt;}
._7_c00439{width:14.933333pt;}
._11_c00439{width:16.160000pt;}
._f_c00439{width:17.120000pt;}
._13_c00439{width:18.453333pt;}
._10_c00439{width:19.680000pt;}
.fs1_c00439{font-size:45.333333pt;}
.fs0_c00439{font-size:53.333333pt;}
.y0_c00439{bottom:0.000000pt;}
.y24_c00439{bottom:57.266686pt;}
.y23_c00439{bottom:98.200020pt;}
.y22_c00439{bottom:111.666686pt;}
.y21_c00439{bottom:125.133353pt;}
.y20_c00439{bottom:138.600020pt;}
.y1f_c00439{bottom:152.333353pt;}
.y1e_c00439{bottom:209.600020pt;}
.y1d_c00439{bottom:226.866686pt;}
.y1c_c00439{bottom:244.200020pt;}
.y1b_c00439{bottom:261.466686pt;}
.y1a_c00439{bottom:278.733353pt;}
.y19_c00439{bottom:295.666686pt;}
.y18_c00439{bottom:321.266686pt;}
.y17_c00439{bottom:338.266686pt;}
.y16_c00439{bottom:355.533353pt;}
.y15_c00439{bottom:373.133353pt;}
.y14_c00439{bottom:390.066686pt;}
.y13_c00439{bottom:407.400020pt;}
.y12_c00439{bottom:425.000020pt;}
.y11_c00439{bottom:441.933353pt;}
.y10_c00439{bottom:475.866686pt;}
.ye_c00439{bottom:526.400020pt;}
.yd_c00439{bottom:543.666686pt;}
.yc_c00439{bottom:561.266686pt;}
.yb_c00439{bottom:578.266686pt;}
.ya_c00439{bottom:595.866686pt;}
.y9_c00439{bottom:613.133353pt;}
.y8_c00439{bottom:630.066686pt;}
.y7_c00439{bottom:647.400020pt;}
.y6_c00439{bottom:664.666686pt;}
.y5_c00439{bottom:682.200020pt;}
.y4_c00439{bottom:698.866686pt;}
.y3_c00439{bottom:716.466686pt;}
.y2_c00439{bottom:733.800020pt;}
.y1_c00439{bottom:750.733353pt;}
.yf_c00439{bottom:788.333353pt;}
.h3_c00439{height:44.470052pt;}
.h5_c00439{height:44.492188pt;}
.h4_c00439{height:52.317708pt;}
.h2_c00439{height:52.343750pt;}
.h1_c00439{height:851.333333pt;}
.h0_c00439{height:851.533333pt;}
.w0_c00439{width:570.533360pt;}
.w1_c00439{width:570.666667pt;}
.x0_c00439{left:0.000000pt;}
.x1_c00439{left:72.000000pt;}
.x5_c00439{left:77.733333pt;}
.x3_c00439{left:85.466667pt;}
.x4_c00439{left:86.400000pt;}
.x6_c00439{left:106.866667pt;}
.x2_c00439{left:178.533333pt;}
.x7_c00439{left:472.000000pt;}
}





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

.ir_c00440:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00440{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00440;src:url('chunks/assets/font_feb564c2094477224596be01.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00440;src:url('chunks/assets/font_efae3f0c18608bbc35bd76c0.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00440{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00440{word-spacing:0.000000px;}
._f_c00440{margin-left:-30.224820px;}
._e_c00440{margin-left:-15.198309px;}
._12_c00440{margin-left:-11.953116px;}
._11_c00440{margin-left:-10.546884px;}
._10_c00440{margin-left:-9.401691px;}
._14_c00440{margin-left:-6.891069px;}
._15_c00440{margin-left:-5.546739px;}
._c_c00440{margin-left:-4.411134px;}
._1_c00440{margin-left:-3.300006px;}
._0_c00440{margin-left:-1.760979px;}
._2_c00440{width:1.839009px;}
._3_c00440{width:3.320967px;}
._b_c00440{width:4.799844px;}
._7_c00440{width:6.579363px;}
._6_c00440{width:8.012883px;}
._d_c00440{width:9.662259px;}
._8_c00440{width:11.177994px;}
._9_c00440{width:12.561003px;}
._5_c00440{width:13.991892px;}
._16_c00440{width:15.410097px;}
._4_c00440{width:16.560000px;}
._a_c00440{width:18.560991px;}
._13_c00440{width:25.572012px;}
._17_c00440{width:29.093919px;}
.fc1_c00440{color:transparent;}
.fc0_c00440{color:rgb(35,31,32);}
.fs0_c00440{font-size:51.000000px;}
.fs1_c00440{font-size:60.000000px;}
.y0_c00440{bottom:0.000000px;}
.y29_c00440{bottom:64.425022px;}
.y28_c00440{bottom:110.175022px;}
.y27_c00440{bottom:125.325022px;}
.y26_c00440{bottom:140.775022px;}
.y25_c00440{bottom:156.225022px;}
.y24_c00440{bottom:171.375022px;}
.y23_c00440{bottom:186.525022px;}
.y22_c00440{bottom:202.275022px;}
.y21_c00440{bottom:217.425022px;}
.y20_c00440{bottom:232.575022px;}
.y1f_c00440{bottom:248.025022px;}
.y1e_c00440{bottom:263.175022px;}
.y1d_c00440{bottom:278.325022px;}
.y1c_c00440{bottom:294.150022px;}
.y1b_c00440{bottom:309.225022px;}
.y1a_c00440{bottom:360.750022px;}
.y19_c00440{bottom:380.175022px;}
.y18_c00440{bottom:399.600022px;}
.y17_c00440{bottom:419.025022px;}
.y16_c00440{bottom:438.150022px;}
.y15_c00440{bottom:457.950022px;}
.y14_c00440{bottom:477.375022px;}
.y13_c00440{bottom:496.425022px;}
.y12_c00440{bottom:515.925022px;}
.y11_c00440{bottom:535.725022px;}
.y10_c00440{bottom:554.775022px;}
.yf_c00440{bottom:574.200022px;}
.ye_c00440{bottom:594.000022px;}
.yd_c00440{bottom:622.125022px;}
.yc_c00440{bottom:641.550022px;}
.yb_c00440{bottom:660.975022px;}
.ya_c00440{bottom:680.400022px;}
.y9_c00440{bottom:699.825022px;}
.y8_c00440{bottom:719.325022px;}
.y7_c00440{bottom:738.750022px;}
.y6_c00440{bottom:767.550022px;}
.y5_c00440{bottom:786.225022px;}
.y4_c00440{bottom:805.725022px;}
.y3_c00440{bottom:825.150022px;}
.y2_c00440{bottom:844.575022px;}
.y1_c00440{bottom:886.875022px;}
.h2_c00440{height:50.028809px;}
.h5_c00440{height:50.053711px;}
.h4_c00440{height:58.857422px;}
.h3_c00440{height:58.886719px;}
.h1_c00440{height:957.750000px;}
.h0_c00440{height:957.975000px;}
.w1_c00440{width:643.500000px;}
.w0_c00440{width:643.650000px;}
.x0_c00440{left:0.000000px;}
.x1_c00440{left:90.750000px;}
.x5_c00440{left:97.200000px;}
.x2_c00440{left:106.200000px;}
.x3_c00440{left:107.625000px;}
.x4_c00440{left:131.400000px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls0_c00440{letter-spacing:0.000000pt;}
.ws0_c00440{word-spacing:-13.333333pt;}
.ws1_c00440{word-spacing:0.000000pt;}
._f_c00440{margin-left:-26.866507pt;}
._e_c00440{margin-left:-13.509608pt;}
._12_c00440{margin-left:-10.624992pt;}
._11_c00440{margin-left:-9.375008pt;}
._10_c00440{margin-left:-8.357059pt;}
._14_c00440{margin-left:-6.125395pt;}
._15_c00440{margin-left:-4.930435pt;}
._c_c00440{margin-left:-3.921008pt;}
._1_c00440{margin-left:-2.933339pt;}
._0_c00440{margin-left:-1.565315pt;}
._2_c00440{width:1.634675pt;}
._3_c00440{width:2.951971pt;}
._b_c00440{width:4.266528pt;}
._7_c00440{width:5.848323pt;}
._6_c00440{width:7.122563pt;}
._d_c00440{width:8.588675pt;}
._8_c00440{width:9.935995pt;}
._9_c00440{width:11.165336pt;}
._5_c00440{width:12.437237pt;}
._16_c00440{width:13.697864pt;}
._4_c00440{width:14.720000pt;}
._a_c00440{width:16.498659pt;}
._13_c00440{width:22.730677pt;}
._17_c00440{width:25.861261pt;}
.fs0_c00440{font-size:45.333333pt;}
.fs1_c00440{font-size:53.333333pt;}
.y0_c00440{bottom:0.000000pt;}
.y29_c00440{bottom:57.266686pt;}
.y28_c00440{bottom:97.933353pt;}
.y27_c00440{bottom:111.400020pt;}
.y26_c00440{bottom:125.133353pt;}
.y25_c00440{bottom:138.866686pt;}
.y24_c00440{bottom:152.333353pt;}
.y23_c00440{bottom:165.800020pt;}
.y22_c00440{bottom:179.800020pt;}
.y21_c00440{bottom:193.266686pt;}
.y20_c00440{bottom:206.733353pt;}
.y1f_c00440{bottom:220.466686pt;}
.y1e_c00440{bottom:233.933353pt;}
.y1d_c00440{bottom:247.400020pt;}
.y1c_c00440{bottom:261.466686pt;}
.y1b_c00440{bottom:274.866686pt;}
.y1a_c00440{bottom:320.666686pt;}
.y19_c00440{bottom:337.933353pt;}
.y18_c00440{bottom:355.200020pt;}
.y17_c00440{bottom:372.466686pt;}
.y16_c00440{bottom:389.466686pt;}
.y15_c00440{bottom:407.066686pt;}
.y14_c00440{bottom:424.333353pt;}
.y13_c00440{bottom:441.266686pt;}
.y12_c00440{bottom:458.600020pt;}
.y11_c00440{bottom:476.200020pt;}
.y10_c00440{bottom:493.133353pt;}
.yf_c00440{bottom:510.400020pt;}
.ye_c00440{bottom:528.000020pt;}
.yd_c00440{bottom:553.000020pt;}
.yc_c00440{bottom:570.266686pt;}
.yb_c00440{bottom:587.533353pt;}
.ya_c00440{bottom:604.800020pt;}
.y9_c00440{bottom:622.066686pt;}
.y8_c00440{bottom:639.400020pt;}
.y7_c00440{bottom:656.666686pt;}
.y6_c00440{bottom:682.266686pt;}
.y5_c00440{bottom:698.866686pt;}
.y4_c00440{bottom:716.200020pt;}
.y3_c00440{bottom:733.466686pt;}
.y2_c00440{bottom:750.733353pt;}
.y1_c00440{bottom:788.333353pt;}
.h2_c00440{height:44.470052pt;}
.h5_c00440{height:44.492188pt;}
.h4_c00440{height:52.317708pt;}
.h3_c00440{height:52.343750pt;}
.h1_c00440{height:851.333333pt;}
.h0_c00440{height:851.533333pt;}
.w1_c00440{width:572.000000pt;}
.w0_c00440{width:572.133333pt;}
.x0_c00440{left:0.000000pt;}
.x1_c00440{left:80.666667pt;}
.x5_c00440{left:86.400000pt;}
.x2_c00440{left:94.400000pt;}
.x3_c00440{left:95.666667pt;}
.x4_c00440{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b43d8800574c00895e9a4ca9.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00441;src:url('chunks/assets/font_d6aff33fc04f086cd57d9517.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00441{letter-spacing:0.000000px;}
.sc__c00441{text-shadow:none;}
.sc0_c00441{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00441{-webkit-text-stroke:0px transparent;}
.sc0_c00441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00441{word-spacing:-15.000000px;}
.ws1_c00441{word-spacing:0.000000px;}
._14_c00441{margin-left:-15.060000px;}
._10_c00441{margin-left:-10.440000px;}
._e_c00441{margin-left:-8.760000px;}
._16_c00441{margin-left:-6.720000px;}
._f_c00441{margin-left:-5.640000px;}
._9_c00441{margin-left:-3.780000px;}
._3_c00441{margin-left:-2.040000px;}
._12_c00441{margin-left:-1.020000px;}
._0_c00441{width:1.320000px;}
._5_c00441{width:2.640000px;}
._11_c00441{width:3.660000px;}
._13_c00441{width:4.680000px;}
._4_c00441{width:6.000000px;}
._6_c00441{width:7.440000px;}
._2_c00441{width:8.640000px;}
._1_c00441{width:10.020000px;}
._d_c00441{width:11.580000px;}
._c_c00441{width:13.800000px;}
._8_c00441{width:17.040000px;}
._7_c00441{width:18.600000px;}
._b_c00441{width:20.340000px;}
._15_c00441{width:21.360000px;}
._a_c00441{width:23.160000px;}
._19_c00441{width:24.630042px;}
._17_c00441{width:26.670042px;}
._18_c00441{width:27.689991px;}
.fc1_c00441{color:transparent;}
.fc0_c00441{color:rgb(35,31,32);}
.fs1_c00441{font-size:51.000000px;}
.fs0_c00441{font-size:60.000000px;}
.y0_c00441{bottom:0.000000px;}
.y28_c00441{bottom:64.800022px;}
.y27_c00441{bottom:110.175022px;}
.y26_c00441{bottom:125.325022px;}
.y25_c00441{bottom:140.775022px;}
.y24_c00441{bottom:155.925022px;}
.y23_c00441{bottom:171.375022px;}
.y22_c00441{bottom:186.525022px;}
.y21_c00441{bottom:201.975022px;}
.y20_c00441{bottom:217.125022px;}
.y1e_c00441{bottom:263.925022px;}
.y1d_c00441{bottom:282.975022px;}
.y1c_c00441{bottom:302.025022px;}
.y1b_c00441{bottom:321.825022px;}
.y1a_c00441{bottom:341.325022px;}
.y19_c00441{bottom:360.750022px;}
.y18_c00441{bottom:379.800022px;}
.y17_c00441{bottom:399.600022px;}
.y16_c00441{bottom:419.025022px;}
.y15_c00441{bottom:438.150022px;}
.y14_c00441{bottom:457.575022px;}
.y13_c00441{bottom:477.375022px;}
.y12_c00441{bottom:505.425022px;}
.y11_c00441{bottom:524.925022px;}
.y10_c00441{bottom:544.350022px;}
.yf_c00441{bottom:563.775022px;}
.ye_c00441{bottom:592.575022px;}
.yd_c00441{bottom:611.625022px;}
.yc_c00441{bottom:631.425022px;}
.yb_c00441{bottom:650.925022px;}
.ya_c00441{bottom:670.350022px;}
.y9_c00441{bottom:689.775022px;}
.y8_c00441{bottom:709.200022px;}
.y7_c00441{bottom:728.325022px;}
.y6_c00441{bottom:747.750022px;}
.y5_c00441{bottom:767.175022px;}
.y4_c00441{bottom:786.225022px;}
.y3_c00441{bottom:806.025022px;}
.y2_c00441{bottom:825.150022px;}
.y1_c00441{bottom:844.575022px;}
.y1f_c00441{bottom:886.875022px;}
.h4_c00441{height:50.028809px;}
.h5_c00441{height:50.053711px;}
.h3_c00441{height:58.857422px;}
.h2_c00441{height:58.886719px;}
.h1_c00441{height:957.750000px;}
.h0_c00441{height:957.975000px;}
.w0_c00441{width:641.850030px;}
.w1_c00441{width:642.000000px;}
.x0_c00441{left:0.000000px;}
.x2_c00441{left:80.250000px;}
.x1_c00441{left:81.375000px;}
.x6_c00441{left:87.450000px;}
.x3_c00441{left:96.150000px;}
.x4_c00441{left:97.200000px;}
.x7_c00441{left:120.600000px;}
.x5_c00441{left:200.850000px;}
.x8_c00441{left:531.000000px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls0_c00441{letter-spacing:0.000000pt;}
.ws0_c00441{word-spacing:-13.333333pt;}
.ws1_c00441{word-spacing:0.000000pt;}
._14_c00441{margin-left:-13.386667pt;}
._10_c00441{margin-left:-9.280000pt;}
._e_c00441{margin-left:-7.786667pt;}
._16_c00441{margin-left:-5.973333pt;}
._f_c00441{margin-left:-5.013333pt;}
._9_c00441{margin-left:-3.360000pt;}
._3_c00441{margin-left:-1.813333pt;}
._12_c00441{margin-left:-0.906667pt;}
._0_c00441{width:1.173333pt;}
._5_c00441{width:2.346667pt;}
._11_c00441{width:3.253333pt;}
._13_c00441{width:4.160000pt;}
._4_c00441{width:5.333333pt;}
._6_c00441{width:6.613333pt;}
._2_c00441{width:7.680000pt;}
._1_c00441{width:8.906667pt;}
._d_c00441{width:10.293333pt;}
._c_c00441{width:12.266667pt;}
._8_c00441{width:15.146667pt;}
._7_c00441{width:16.533333pt;}
._b_c00441{width:18.080000pt;}
._15_c00441{width:18.986667pt;}
._a_c00441{width:20.586667pt;}
._19_c00441{width:21.893371pt;}
._17_c00441{width:23.706704pt;}
._18_c00441{width:24.613325pt;}
.fs1_c00441{font-size:45.333333pt;}
.fs0_c00441{font-size:53.333333pt;}
.y0_c00441{bottom:0.000000pt;}
.y28_c00441{bottom:57.600020pt;}
.y27_c00441{bottom:97.933353pt;}
.y26_c00441{bottom:111.400020pt;}
.y25_c00441{bottom:125.133353pt;}
.y24_c00441{bottom:138.600020pt;}
.y23_c00441{bottom:152.333353pt;}
.y22_c00441{bottom:165.800020pt;}
.y21_c00441{bottom:179.533353pt;}
.y20_c00441{bottom:193.000020pt;}
.y1e_c00441{bottom:234.600020pt;}
.y1d_c00441{bottom:251.533353pt;}
.y1c_c00441{bottom:268.466686pt;}
.y1b_c00441{bottom:286.066686pt;}
.y1a_c00441{bottom:303.400020pt;}
.y19_c00441{bottom:320.666686pt;}
.y18_c00441{bottom:337.600020pt;}
.y17_c00441{bottom:355.200020pt;}
.y16_c00441{bottom:372.466686pt;}
.y15_c00441{bottom:389.466686pt;}
.y14_c00441{bottom:406.733353pt;}
.y13_c00441{bottom:424.333353pt;}
.y12_c00441{bottom:449.266686pt;}
.y11_c00441{bottom:466.600020pt;}
.y10_c00441{bottom:483.866686pt;}
.yf_c00441{bottom:501.133353pt;}
.ye_c00441{bottom:526.733353pt;}
.yd_c00441{bottom:543.666686pt;}
.yc_c00441{bottom:561.266686pt;}
.yb_c00441{bottom:578.600020pt;}
.ya_c00441{bottom:595.866686pt;}
.y9_c00441{bottom:613.133353pt;}
.y8_c00441{bottom:630.400020pt;}
.y7_c00441{bottom:647.400020pt;}
.y6_c00441{bottom:664.666686pt;}
.y5_c00441{bottom:681.933353pt;}
.y4_c00441{bottom:698.866686pt;}
.y3_c00441{bottom:716.466686pt;}
.y2_c00441{bottom:733.466686pt;}
.y1_c00441{bottom:750.733353pt;}
.y1f_c00441{bottom:788.333353pt;}
.h4_c00441{height:44.470052pt;}
.h5_c00441{height:44.492188pt;}
.h3_c00441{height:52.317708pt;}
.h2_c00441{height:52.343750pt;}
.h1_c00441{height:851.333333pt;}
.h0_c00441{height:851.533333pt;}
.w0_c00441{width:570.533360pt;}
.w1_c00441{width:570.666667pt;}
.x0_c00441{left:0.000000pt;}
.x2_c00441{left:71.333333pt;}
.x1_c00441{left:72.333333pt;}
.x6_c00441{left:77.733333pt;}
.x3_c00441{left:85.466667pt;}
.x4_c00441{left:86.400000pt;}
.x7_c00441{left:107.200000pt;}
.x5_c00441{left:178.533333pt;}
.x8_c00441{left:472.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6b536571312a50e99adabddf.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00442;src:url('chunks/assets/font_6d365e300c7994b9eff1f2e1.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.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;}
}
.ws1_c00442{word-spacing:-15.000000px;}
.ws0_c00442{word-spacing:-12.750000px;}
.ws2_c00442{word-spacing:0.000000px;}
._17_c00442{margin-left:-33.531195px;}
._16_c00442{margin-left:-32.468805px;}
._9_c00442{margin-left:-30.000000px;}
._10_c00442{margin-left:-17.052156px;}
._8_c00442{margin-left:-15.962739px;}
._15_c00442{margin-left:-14.016336px;}
._11_c00442{margin-left:-9.600000px;}
._7_c00442{margin-left:-8.379087px;}
._19_c00442{margin-left:-6.831093px;}
._a_c00442{margin-left:-5.100000px;}
._1_c00442{margin-left:-3.300006px;}
._0_c00442{margin-left:-1.760979px;}
._2_c00442{width:1.839009px;}
._3_c00442{width:3.320967px;}
._12_c00442{width:4.457892px;}
._c_c00442{width:5.820000px;}
._f_c00442{width:6.840084px;}
._d_c00442{width:8.100000px;}
._b_c00442{width:9.266853px;}
._14_c00442{width:10.275267px;}
._e_c00442{width:11.282973px;}
._13_c00442{width:12.359964px;}
._4_c00442{width:13.862973px;}
._6_c00442{width:16.749087px;}
._5_c00442{width:18.206937px;}
._18_c00442{width:25.572012px;}
._1a_c00442{width:29.093919px;}
.fc1_c00442{color:transparent;}
.fc0_c00442{color:rgb(35,31,32);}
.fs0_c00442{font-size:51.000000px;}
.fs1_c00442{font-size:60.000000px;}
.fs2_c00442{font-size:66.000000px;}
.y0_c00442{bottom:0.000000px;}
.y29_c00442{bottom:64.800022px;}
.y28_c00442{bottom:110.550022px;}
.y27_c00442{bottom:125.625022px;}
.y26_c00442{bottom:141.150022px;}
.y25_c00442{bottom:155.925022px;}
.y24_c00442{bottom:171.750022px;}
.y23_c00442{bottom:186.825022px;}
.y22_c00442{bottom:201.975022px;}
.y21_c00442{bottom:217.425022px;}
.y20_c00442{bottom:232.575022px;}
.y1f_c00442{bottom:248.025022px;}
.y1e_c00442{bottom:263.550022px;}
.y1d_c00442{bottom:278.625022px;}
.y1c_c00442{bottom:294.150022px;}
.y1b_c00442{bottom:308.925022px;}
.y1a_c00442{bottom:324.750022px;}
.y19_c00442{bottom:339.525022px;}
.y18_c00442{bottom:354.975022px;}
.y17_c00442{bottom:370.125022px;}
.y16_c00442{bottom:385.575022px;}
.y15_c00442{bottom:430.575022px;}
.y14_c00442{bottom:450.000022px;}
.y13_c00442{bottom:469.425022px;}
.y12_c00442{bottom:488.925022px;}
.y11_c00442{bottom:508.350022px;}
.y10_c00442{bottom:527.775022px;}
.yf_c00442{bottom:556.575022px;}
.ye_c00442{bottom:576.000022px;}
.yd_c00442{bottom:604.125022px;}
.yc_c00442{bottom:623.550022px;}
.yb_c00442{bottom:642.975022px;}
.ya_c00442{bottom:662.400022px;}
.y9_c00442{bottom:681.825022px;}
.y8_c00442{bottom:710.325022px;}
.y7_c00442{bottom:730.125022px;}
.y6_c00442{bottom:758.175022px;}
.y5_c00442{bottom:777.225022px;}
.y4_c00442{bottom:796.725022px;}
.y3_c00442{bottom:825.525022px;}
.y2_c00442{bottom:844.575022px;}
.y1_c00442{bottom:886.875022px;}
.h2_c00442{height:50.028809px;}
.h6_c00442{height:50.053711px;}
.h4_c00442{height:58.857422px;}
.h3_c00442{height:58.886719px;}
.h5_c00442{height:64.775391px;}
.h1_c00442{height:957.750000px;}
.h0_c00442{height:957.975000px;}
.w1_c00442{width:643.500000px;}
.w0_c00442{width:643.650000px;}
.x0_c00442{left:0.000000px;}
.x1_c00442{left:90.750000px;}
.x5_c00442{left:97.200000px;}
.x4_c00442{left:104.775000px;}
.x2_c00442{left:106.200000px;}
.x3_c00442{left:107.250000px;}
.x6_c00442{left:130.650000px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls0_c00442{letter-spacing:0.000000pt;}
.ws1_c00442{word-spacing:-13.333333pt;}
.ws0_c00442{word-spacing:-11.333333pt;}
.ws2_c00442{word-spacing:0.000000pt;}
._17_c00442{margin-left:-29.805507pt;}
._16_c00442{margin-left:-28.861160pt;}
._9_c00442{margin-left:-26.666667pt;}
._10_c00442{margin-left:-15.157472pt;}
._8_c00442{margin-left:-14.189101pt;}
._15_c00442{margin-left:-12.458965pt;}
._11_c00442{margin-left:-8.533333pt;}
._7_c00442{margin-left:-7.448077pt;}
._19_c00442{margin-left:-6.072083pt;}
._a_c00442{margin-left:-4.533333pt;}
._1_c00442{margin-left:-2.933339pt;}
._0_c00442{margin-left:-1.565315pt;}
._2_c00442{width:1.634675pt;}
._3_c00442{width:2.951971pt;}
._12_c00442{width:3.962571pt;}
._c_c00442{width:5.173333pt;}
._f_c00442{width:6.080075pt;}
._d_c00442{width:7.200000pt;}
._b_c00442{width:8.237203pt;}
._14_c00442{width:9.133571pt;}
._e_c00442{width:10.029309pt;}
._13_c00442{width:10.986635pt;}
._4_c00442{width:12.322643pt;}
._6_c00442{width:14.888077pt;}
._5_c00442{width:16.183944pt;}
._18_c00442{width:22.730677pt;}
._1a_c00442{width:25.861261pt;}
.fs0_c00442{font-size:45.333333pt;}
.fs1_c00442{font-size:53.333333pt;}
.fs2_c00442{font-size:58.666667pt;}
.y0_c00442{bottom:0.000000pt;}
.y29_c00442{bottom:57.600020pt;}
.y28_c00442{bottom:98.266686pt;}
.y27_c00442{bottom:111.666686pt;}
.y26_c00442{bottom:125.466686pt;}
.y25_c00442{bottom:138.600020pt;}
.y24_c00442{bottom:152.666686pt;}
.y23_c00442{bottom:166.066686pt;}
.y22_c00442{bottom:179.533353pt;}
.y21_c00442{bottom:193.266686pt;}
.y20_c00442{bottom:206.733353pt;}
.y1f_c00442{bottom:220.466686pt;}
.y1e_c00442{bottom:234.266686pt;}
.y1d_c00442{bottom:247.666686pt;}
.y1c_c00442{bottom:261.466686pt;}
.y1b_c00442{bottom:274.600020pt;}
.y1a_c00442{bottom:288.666686pt;}
.y19_c00442{bottom:301.800020pt;}
.y18_c00442{bottom:315.533353pt;}
.y17_c00442{bottom:329.000020pt;}
.y16_c00442{bottom:342.733353pt;}
.y15_c00442{bottom:382.733353pt;}
.y14_c00442{bottom:400.000020pt;}
.y13_c00442{bottom:417.266686pt;}
.y12_c00442{bottom:434.600020pt;}
.y11_c00442{bottom:451.866686pt;}
.y10_c00442{bottom:469.133353pt;}
.yf_c00442{bottom:494.733353pt;}
.ye_c00442{bottom:512.000020pt;}
.yd_c00442{bottom:537.000020pt;}
.yc_c00442{bottom:554.266686pt;}
.yb_c00442{bottom:571.533353pt;}
.ya_c00442{bottom:588.800020pt;}
.y9_c00442{bottom:606.066686pt;}
.y8_c00442{bottom:631.400020pt;}
.y7_c00442{bottom:649.000020pt;}
.y6_c00442{bottom:673.933353pt;}
.y5_c00442{bottom:690.866686pt;}
.y4_c00442{bottom:708.200020pt;}
.y3_c00442{bottom:733.800020pt;}
.y2_c00442{bottom:750.733353pt;}
.y1_c00442{bottom:788.333353pt;}
.h2_c00442{height:44.470052pt;}
.h6_c00442{height:44.492188pt;}
.h4_c00442{height:52.317708pt;}
.h3_c00442{height:52.343750pt;}
.h5_c00442{height:57.578125pt;}
.h1_c00442{height:851.333333pt;}
.h0_c00442{height:851.533333pt;}
.w1_c00442{width:572.000000pt;}
.w0_c00442{width:572.133333pt;}
.x0_c00442{left:0.000000pt;}
.x1_c00442{left:80.666667pt;}
.x5_c00442{left:86.400000pt;}
.x4_c00442{left:93.133333pt;}
.x2_c00442{left:94.400000pt;}
.x3_c00442{left:95.333333pt;}
.x6_c00442{left:116.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c6db47a14167be7cc16f4c7f.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00443;src:url('chunks/assets/font_77b1375b4a534716d68d6a87.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00443{letter-spacing:0.000000px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00443{word-spacing:-15.000000px;}
.ws1_c00443{word-spacing:0.000000px;}
._21_c00443{margin-left:-30.707052px;}
._20_c00443{margin-left:-29.646474px;}
._f_c00443{margin-left:-16.724976px;}
._1c_c00443{margin-left:-15.586896px;}
._10_c00443{margin-left:-10.200000px;}
._b_c00443{margin-left:-8.540805px;}
._c_c00443{margin-left:-7.332408px;}
._22_c00443{margin-left:-6.280749px;}
._d_c00443{margin-left:-4.911312px;}
._2_c00443{margin-left:-3.672051px;}
._1f_c00443{margin-left:-2.661792px;}
._3_c00443{margin-left:-1.644036px;}
._0_c00443{width:1.551012px;}
._6_c00443{width:2.880000px;}
._9_c00443{width:4.308222px;}
._1_c00443{width:5.411967px;}
._5_c00443{width:6.780000px;}
._a_c00443{width:7.866060px;}
._7_c00443{width:9.371904px;}
._8_c00443{width:10.512081px;}
._4_c00443{width:11.648988px;}
._11_c00443{width:12.659862px;}
._e_c00443{width:13.665186px;}
._12_c00443{width:16.784940px;}
._1e_c00443{width:17.838480px;}
._14_c00443{width:20.100000px;}
._15_c00443{width:21.455952px;}
._13_c00443{width:23.048988px;}
._19_c00443{width:25.031904px;}
._1d_c00443{width:26.247180px;}
._1b_c00443{width:27.857976px;}
._1a_c00443{width:29.078880px;}
._16_c00443{width:30.944940px;}
._17_c00443{width:32.246964px;}
._18_c00443{width:33.564036px;}
.fc1_c00443{color:transparent;}
.fc0_c00443{color:rgb(35,31,32);}
.fs0_c00443{font-size:51.000000px;}
.fs1_c00443{font-size:60.000000px;}
.y0_c00443{bottom:0.000000px;}
.y23_c00443{bottom:64.425022px;}
.y22_c00443{bottom:110.175022px;}
.y21_c00443{bottom:125.325022px;}
.y20_c00443{bottom:178.950022px;}
.y1f_c00443{bottom:198.375022px;}
.y1e_c00443{bottom:217.800022px;}
.y1d_c00443{bottom:237.225022px;}
.y1c_c00443{bottom:257.025022px;}
.y1b_c00443{bottom:276.150022px;}
.y1a_c00443{bottom:295.575022px;}
.y19_c00443{bottom:315.000022px;}
.y18_c00443{bottom:353.550022px;}
.y17_c00443{bottom:409.725022px;}
.y16_c00443{bottom:429.150022px;}
.y15_c00443{bottom:448.575022px;}
.y14_c00443{bottom:468.000022px;}
.y13_c00443{bottom:496.800022px;}
.y12_c00443{bottom:516.225022px;}
.y11_c00443{bottom:535.350022px;}
.y10_c00443{bottom:555.150022px;}
.yf_c00443{bottom:574.575022px;}
.ye_c00443{bottom:594.000022px;}
.yd_c00443{bottom:613.425022px;}
.yc_c00443{bottom:641.550022px;}
.yb_c00443{bottom:660.975022px;}
.ya_c00443{bottom:680.400022px;}
.y9_c00443{bottom:699.825022px;}
.y8_c00443{bottom:728.625022px;}
.y7_c00443{bottom:748.125022px;}
.y6_c00443{bottom:767.550022px;}
.y5_c00443{bottom:786.225022px;}
.y4_c00443{bottom:806.100022px;}
.y3_c00443{bottom:825.525022px;}
.y2_c00443{bottom:844.950022px;}
.y1_c00443{bottom:886.875022px;}
.h2_c00443{height:50.028809px;}
.h5_c00443{height:50.053711px;}
.h4_c00443{height:58.857422px;}
.h3_c00443{height:58.886719px;}
.h1_c00443{height:957.750000px;}
.h0_c00443{height:957.975000px;}
.w0_c00443{width:641.850030px;}
.w1_c00443{width:642.000000px;}
.x0_c00443{left:0.000000px;}
.x2_c00443{left:80.625000px;}
.x5_c00443{left:81.750000px;}
.x6_c00443{left:87.450000px;}
.x3_c00443{left:96.150000px;}
.x4_c00443{left:97.200000px;}
.x1_c00443{left:200.850000px;}
.x7_c00443{left:531.000000px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls0_c00443{letter-spacing:0.000000pt;}
.ws0_c00443{word-spacing:-13.333333pt;}
.ws1_c00443{word-spacing:0.000000pt;}
._21_c00443{margin-left:-27.295157pt;}
._20_c00443{margin-left:-26.352421pt;}
._f_c00443{margin-left:-14.866645pt;}
._1c_c00443{margin-left:-13.855019pt;}
._10_c00443{margin-left:-9.066667pt;}
._b_c00443{margin-left:-7.591827pt;}
._c_c00443{margin-left:-6.517696pt;}
._22_c00443{margin-left:-5.582888pt;}
._d_c00443{margin-left:-4.365611pt;}
._2_c00443{margin-left:-3.264045pt;}
._1f_c00443{margin-left:-2.366037pt;}
._3_c00443{margin-left:-1.461365pt;}
._0_c00443{width:1.378677pt;}
._6_c00443{width:2.560000pt;}
._9_c00443{width:3.829531pt;}
._1_c00443{width:4.810637pt;}
._5_c00443{width:6.026667pt;}
._a_c00443{width:6.992053pt;}
._7_c00443{width:8.330581pt;}
._8_c00443{width:9.344072pt;}
._4_c00443{width:10.354656pt;}
._11_c00443{width:11.253211pt;}
._e_c00443{width:12.146832pt;}
._12_c00443{width:14.919947pt;}
._1e_c00443{width:15.856427pt;}
._14_c00443{width:17.866667pt;}
._15_c00443{width:19.071957pt;}
._13_c00443{width:20.487989pt;}
._19_c00443{width:22.250581pt;}
._1d_c00443{width:23.330827pt;}
._1b_c00443{width:24.762645pt;}
._1a_c00443{width:25.847893pt;}
._16_c00443{width:27.506613pt;}
._17_c00443{width:28.663968pt;}
._18_c00443{width:29.834699pt;}
.fs0_c00443{font-size:45.333333pt;}
.fs1_c00443{font-size:53.333333pt;}
.y0_c00443{bottom:0.000000pt;}
.y23_c00443{bottom:57.266686pt;}
.y22_c00443{bottom:97.933353pt;}
.y21_c00443{bottom:111.400020pt;}
.y20_c00443{bottom:159.066686pt;}
.y1f_c00443{bottom:176.333353pt;}
.y1e_c00443{bottom:193.600020pt;}
.y1d_c00443{bottom:210.866686pt;}
.y1c_c00443{bottom:228.466686pt;}
.y1b_c00443{bottom:245.466686pt;}
.y1a_c00443{bottom:262.733353pt;}
.y19_c00443{bottom:280.000020pt;}
.y18_c00443{bottom:314.266686pt;}
.y17_c00443{bottom:364.200020pt;}
.y16_c00443{bottom:381.466686pt;}
.y15_c00443{bottom:398.733353pt;}
.y14_c00443{bottom:416.000020pt;}
.y13_c00443{bottom:441.600020pt;}
.y12_c00443{bottom:458.866686pt;}
.y11_c00443{bottom:475.866686pt;}
.y10_c00443{bottom:493.466686pt;}
.yf_c00443{bottom:510.733353pt;}
.ye_c00443{bottom:528.000020pt;}
.yd_c00443{bottom:545.266686pt;}
.yc_c00443{bottom:570.266686pt;}
.yb_c00443{bottom:587.533353pt;}
.ya_c00443{bottom:604.800020pt;}
.y9_c00443{bottom:622.066686pt;}
.y8_c00443{bottom:647.666686pt;}
.y7_c00443{bottom:665.000020pt;}
.y6_c00443{bottom:682.266686pt;}
.y5_c00443{bottom:698.866686pt;}
.y4_c00443{bottom:716.533353pt;}
.y3_c00443{bottom:733.800020pt;}
.y2_c00443{bottom:751.066686pt;}
.y1_c00443{bottom:788.333353pt;}
.h2_c00443{height:44.470052pt;}
.h5_c00443{height:44.492188pt;}
.h4_c00443{height:52.317708pt;}
.h3_c00443{height:52.343750pt;}
.h1_c00443{height:851.333333pt;}
.h0_c00443{height:851.533333pt;}
.w0_c00443{width:570.533360pt;}
.w1_c00443{width:570.666667pt;}
.x0_c00443{left:0.000000pt;}
.x2_c00443{left:71.666667pt;}
.x5_c00443{left:72.666667pt;}
.x6_c00443{left:77.733333pt;}
.x3_c00443{left:85.466667pt;}
.x4_c00443{left:86.400000pt;}
.x1_c00443{left:178.533333pt;}
.x7_c00443{left:472.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3843d1c40e06040ae37bd73f.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00444;src:url('chunks/assets/font_038da4facf1c57b3596e95c2.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00444{letter-spacing:0.000000px;}
.sc__c00444{text-shadow:none;}
.sc0_c00444{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00444{-webkit-text-stroke:0px transparent;}
.sc0_c00444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00444{word-spacing:-15.000000px;}
.ws1_c00444{word-spacing:0.000000px;}
._b_c00444{margin-left:-14.775099px;}
._7_c00444{margin-left:-10.818042px;}
._c_c00444{margin-left:-9.413916px;}
._6_c00444{margin-left:-7.800000px;}
._d_c00444{margin-left:-6.486258px;}
._8_c00444{margin-left:-5.400000px;}
._e_c00444{margin-left:-4.379994px;}
._1_c00444{margin-left:-3.300006px;}
._0_c00444{margin-left:-1.760979px;}
._2_c00444{width:1.839009px;}
._3_c00444{width:3.320967px;}
._9_c00444{width:5.100000px;}
._4_c00444{width:6.626961px;}
._a_c00444{width:7.800000px;}
._5_c00444{width:9.120012px;}
._f_c00444{width:10.920006px;}
._11_c00444{width:12.080985px;}
._10_c00444{width:13.442955px;}
._18_c00444{width:15.074931px;}
._16_c00444{width:16.346757px;}
._13_c00444{width:17.606985px;}
._12_c00444{width:20.366937px;}
._15_c00444{width:21.719952px;}
._17_c00444{width:23.810982px;}
._14_c00444{width:25.466937px;}
.fc1_c00444{color:transparent;}
.fc0_c00444{color:rgb(35,31,32);}
.fs0_c00444{font-size:51.000000px;}
.fs1_c00444{font-size:60.000000px;}
.y0_c00444{bottom:0.000000px;}
.y22_c00444{bottom:64.800022px;}
.y21_c00444{bottom:110.550022px;}
.y20_c00444{bottom:125.325022px;}
.y1f_c00444{bottom:140.775022px;}
.y1e_c00444{bottom:155.925022px;}
.y1d_c00444{bottom:171.375022px;}
.y1c_c00444{bottom:186.525022px;}
.y1b_c00444{bottom:201.975022px;}
.y1a_c00444{bottom:328.350022px;}
.y19_c00444{bottom:347.775022px;}
.y18_c00444{bottom:367.200022px;}
.y17_c00444{bottom:386.625022px;}
.y16_c00444{bottom:406.125022px;}
.y15_c00444{bottom:425.550022px;}
.y14_c00444{bottom:444.975022px;}
.y13_c00444{bottom:464.775022px;}
.y12_c00444{bottom:484.200022px;}
.y11_c00444{bottom:503.625022px;}
.y10_c00444{bottom:522.750022px;}
.yf_c00444{bottom:542.550022px;}
.ye_c00444{bottom:561.975022px;}
.yd_c00444{bottom:581.400022px;}
.yc_c00444{bottom:600.825022px;}
.yb_c00444{bottom:620.325022px;}
.ya_c00444{bottom:639.750022px;}
.y9_c00444{bottom:658.425022px;}
.y8_c00444{bottom:678.225022px;}
.y7_c00444{bottom:697.725022px;}
.y6_c00444{bottom:716.775022px;}
.y5_c00444{bottom:754.950022px;}
.y4_c00444{bottom:806.025022px;}
.y3_c00444{bottom:825.150022px;}
.y2_c00444{bottom:844.575022px;}
.y1_c00444{bottom:886.875022px;}
.h2_c00444{height:50.028809px;}
.h4_c00444{height:50.053711px;}
.h3_c00444{height:58.886719px;}
.h1_c00444{height:957.750000px;}
.h0_c00444{height:957.975000px;}
.w1_c00444{width:643.500000px;}
.w0_c00444{width:643.650000px;}
.x0_c00444{left:0.000000px;}
.x1_c00444{left:90.750000px;}
.x2_c00444{left:91.800000px;}
.x3_c00444{left:97.200000px;}
.x4_c00444{left:131.400000px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls0_c00444{letter-spacing:0.000000pt;}
.ws0_c00444{word-spacing:-13.333333pt;}
.ws1_c00444{word-spacing:0.000000pt;}
._b_c00444{margin-left:-13.133421pt;}
._7_c00444{margin-left:-9.616037pt;}
._c_c00444{margin-left:-8.367925pt;}
._6_c00444{margin-left:-6.933333pt;}
._d_c00444{margin-left:-5.765563pt;}
._8_c00444{margin-left:-4.800000pt;}
._e_c00444{margin-left:-3.893328pt;}
._1_c00444{margin-left:-2.933339pt;}
._0_c00444{margin-left:-1.565315pt;}
._2_c00444{width:1.634675pt;}
._3_c00444{width:2.951971pt;}
._9_c00444{width:4.533333pt;}
._4_c00444{width:5.890632pt;}
._a_c00444{width:6.933333pt;}
._5_c00444{width:8.106677pt;}
._f_c00444{width:9.706672pt;}
._11_c00444{width:10.738653pt;}
._10_c00444{width:11.949293pt;}
._18_c00444{width:13.399939pt;}
._16_c00444{width:14.530451pt;}
._13_c00444{width:15.650653pt;}
._12_c00444{width:18.103944pt;}
._15_c00444{width:19.306624pt;}
._17_c00444{width:21.165317pt;}
._14_c00444{width:22.637277pt;}
.fs0_c00444{font-size:45.333333pt;}
.fs1_c00444{font-size:53.333333pt;}
.y0_c00444{bottom:0.000000pt;}
.y22_c00444{bottom:57.600020pt;}
.y21_c00444{bottom:98.266686pt;}
.y20_c00444{bottom:111.400020pt;}
.y1f_c00444{bottom:125.133353pt;}
.y1e_c00444{bottom:138.600020pt;}
.y1d_c00444{bottom:152.333353pt;}
.y1c_c00444{bottom:165.800020pt;}
.y1b_c00444{bottom:179.533353pt;}
.y1a_c00444{bottom:291.866686pt;}
.y19_c00444{bottom:309.133353pt;}
.y18_c00444{bottom:326.400020pt;}
.y17_c00444{bottom:343.666686pt;}
.y16_c00444{bottom:361.000020pt;}
.y15_c00444{bottom:378.266686pt;}
.y14_c00444{bottom:395.533353pt;}
.y13_c00444{bottom:413.133353pt;}
.y12_c00444{bottom:430.400020pt;}
.y11_c00444{bottom:447.666686pt;}
.y10_c00444{bottom:464.666686pt;}
.yf_c00444{bottom:482.266686pt;}
.ye_c00444{bottom:499.533353pt;}
.yd_c00444{bottom:516.800020pt;}
.yc_c00444{bottom:534.066686pt;}
.yb_c00444{bottom:551.400020pt;}
.ya_c00444{bottom:568.666686pt;}
.y9_c00444{bottom:585.266686pt;}
.y8_c00444{bottom:602.866686pt;}
.y7_c00444{bottom:620.200020pt;}
.y6_c00444{bottom:637.133353pt;}
.y5_c00444{bottom:671.066686pt;}
.y4_c00444{bottom:716.466686pt;}
.y3_c00444{bottom:733.466686pt;}
.y2_c00444{bottom:750.733353pt;}
.y1_c00444{bottom:788.333353pt;}
.h2_c00444{height:44.470052pt;}
.h4_c00444{height:44.492188pt;}
.h3_c00444{height:52.343750pt;}
.h1_c00444{height:851.333333pt;}
.h0_c00444{height:851.533333pt;}
.w1_c00444{width:572.000000pt;}
.w0_c00444{width:572.133333pt;}
.x0_c00444{left:0.000000pt;}
.x1_c00444{left:80.666667pt;}
.x2_c00444{left:81.600000pt;}
.x3_c00444{left:86.400000pt;}
.x4_c00444{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_decb9d510736144fe7edb314.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00445;src:url('chunks/assets/font_22e18d0744358af49480b578.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;}
.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;}
.ls0_c00445{letter-spacing:0.000000px;}
.sc__c00445{text-shadow:none;}
.sc0_c00445{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00445{-webkit-text-stroke:0px transparent;}
.sc0_c00445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00445{word-spacing:-15.000000px;}
.ws1_c00445{word-spacing:0.000000px;}
._a_c00445{margin-left:-14.640000px;}
._19_c00445{margin-left:-11.988324px;}
._f_c00445{margin-left:-10.080000px;}
._e_c00445{margin-left:-8.820000px;}
._b_c00445{margin-left:-5.580000px;}
._16_c00445{margin-left:-4.256928px;}
._7_c00445{margin-left:-2.700000px;}
._0_c00445{margin-left:-1.320000px;}
._2_c00445{width:1.380000px;}
._5_c00445{width:2.880000px;}
._9_c00445{width:4.380000px;}
._6_c00445{width:5.400000px;}
._4_c00445{width:6.780000px;}
._8_c00445{width:7.920000px;}
._3_c00445{width:9.240000px;}
._1_c00445{width:10.320000px;}
._14_c00445{width:11.400000px;}
._c_c00445{width:13.020000px;}
._18_c00445{width:15.728979px;}
._d_c00445{width:16.920000px;}
._11_c00445{width:18.600000px;}
._15_c00445{width:19.800000px;}
._10_c00445{width:20.940000px;}
._13_c00445{width:21.960000px;}
._12_c00445{width:23.160000px;}
._17_c00445{width:24.330030px;}
._1a_c00445{width:25.830042px;}
.fc1_c00445{color:transparent;}
.fc0_c00445{color:rgb(35,31,32);}
.fs1_c00445{font-size:51.000000px;}
.fs0_c00445{font-size:60.000000px;}
.y0_c00445{bottom:0.000000px;}
.y28_c00445{bottom:64.425022px;}
.y27_c00445{bottom:110.175022px;}
.y26_c00445{bottom:125.325022px;}
.y25_c00445{bottom:141.150022px;}
.y24_c00445{bottom:155.925022px;}
.y23_c00445{bottom:171.750022px;}
.y22_c00445{bottom:186.825022px;}
.y21_c00445{bottom:202.350022px;}
.y1f_c00445{bottom:241.950022px;}
.y1e_c00445{bottom:261.750022px;}
.y1d_c00445{bottom:281.175022px;}
.y1c_c00445{bottom:300.225022px;}
.y1b_c00445{bottom:319.350022px;}
.y1a_c00445{bottom:338.775022px;}
.y19_c00445{bottom:358.200022px;}
.y18_c00445{bottom:378.000022px;}
.y17_c00445{bottom:397.125022px;}
.y16_c00445{bottom:416.925022px;}
.y15_c00445{bottom:435.975022px;}
.y14_c00445{bottom:455.325022px;}
.y13_c00445{bottom:474.825022px;}
.y12_c00445{bottom:494.325022px;}
.y11_c00445{bottom:514.125022px;}
.y10_c00445{bottom:533.175022px;}
.yf_c00445{bottom:552.975022px;}
.ye_c00445{bottom:572.400022px;}
.yd_c00445{bottom:591.525022px;}
.yc_c00445{bottom:610.950022px;}
.yb_c00445{bottom:630.750022px;}
.ya_c00445{bottom:649.800022px;}
.y9_c00445{bottom:669.225022px;}
.y8_c00445{bottom:688.725022px;}
.y7_c00445{bottom:708.525022px;}
.y6_c00445{bottom:727.575022px;}
.y5_c00445{bottom:747.375022px;}
.y4_c00445{bottom:766.425022px;}
.y3_c00445{bottom:785.550022px;}
.y2_c00445{bottom:804.975022px;}
.y1_c00445{bottom:844.575022px;}
.y20_c00445{bottom:886.875022px;}
.h3_c00445{height:50.028809px;}
.h4_c00445{height:50.053711px;}
.h2_c00445{height:58.886719px;}
.h1_c00445{height:957.750000px;}
.h0_c00445{height:957.975000px;}
.w0_c00445{width:641.850030px;}
.w1_c00445{width:642.000000px;}
.x0_c00445{left:0.000000px;}
.x2_c00445{left:80.625000px;}
.x1_c00445{left:81.750000px;}
.x5_c00445{left:87.450000px;}
.x3_c00445{left:97.200000px;}
.x6_c00445{left:120.975000px;}
.x4_c00445{left:200.850000px;}
.x7_c00445{left:531.000000px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls0_c00445{letter-spacing:0.000000pt;}
.ws0_c00445{word-spacing:-13.333333pt;}
.ws1_c00445{word-spacing:0.000000pt;}
._a_c00445{margin-left:-13.013333pt;}
._19_c00445{margin-left:-10.656288pt;}
._f_c00445{margin-left:-8.960000pt;}
._e_c00445{margin-left:-7.840000pt;}
._b_c00445{margin-left:-4.960000pt;}
._16_c00445{margin-left:-3.783936pt;}
._7_c00445{margin-left:-2.400000pt;}
._0_c00445{margin-left:-1.173333pt;}
._2_c00445{width:1.226667pt;}
._5_c00445{width:2.560000pt;}
._9_c00445{width:3.893333pt;}
._6_c00445{width:4.800000pt;}
._4_c00445{width:6.026667pt;}
._8_c00445{width:7.040000pt;}
._3_c00445{width:8.213333pt;}
._1_c00445{width:9.173333pt;}
._14_c00445{width:10.133333pt;}
._c_c00445{width:11.573333pt;}
._18_c00445{width:13.981315pt;}
._d_c00445{width:15.040000pt;}
._11_c00445{width:16.533333pt;}
._15_c00445{width:17.600000pt;}
._10_c00445{width:18.613333pt;}
._13_c00445{width:19.520000pt;}
._12_c00445{width:20.586667pt;}
._17_c00445{width:21.626693pt;}
._1a_c00445{width:22.960037pt;}
.fs1_c00445{font-size:45.333333pt;}
.fs0_c00445{font-size:53.333333pt;}
.y0_c00445{bottom:0.000000pt;}
.y28_c00445{bottom:57.266686pt;}
.y27_c00445{bottom:97.933353pt;}
.y26_c00445{bottom:111.400020pt;}
.y25_c00445{bottom:125.466686pt;}
.y24_c00445{bottom:138.600020pt;}
.y23_c00445{bottom:152.666686pt;}
.y22_c00445{bottom:166.066686pt;}
.y21_c00445{bottom:179.866686pt;}
.y1f_c00445{bottom:215.066686pt;}
.y1e_c00445{bottom:232.666686pt;}
.y1d_c00445{bottom:249.933353pt;}
.y1c_c00445{bottom:266.866686pt;}
.y1b_c00445{bottom:283.866686pt;}
.y1a_c00445{bottom:301.133353pt;}
.y19_c00445{bottom:318.400020pt;}
.y18_c00445{bottom:336.000020pt;}
.y17_c00445{bottom:353.000020pt;}
.y16_c00445{bottom:370.600020pt;}
.y15_c00445{bottom:387.533353pt;}
.y14_c00445{bottom:404.733353pt;}
.y13_c00445{bottom:422.066686pt;}
.y12_c00445{bottom:439.400020pt;}
.y11_c00445{bottom:457.000020pt;}
.y10_c00445{bottom:473.933353pt;}
.yf_c00445{bottom:491.533353pt;}
.ye_c00445{bottom:508.800020pt;}
.yd_c00445{bottom:525.800020pt;}
.yc_c00445{bottom:543.066686pt;}
.yb_c00445{bottom:560.666686pt;}
.ya_c00445{bottom:577.600020pt;}
.y9_c00445{bottom:594.866686pt;}
.y8_c00445{bottom:612.200020pt;}
.y7_c00445{bottom:629.800020pt;}
.y6_c00445{bottom:646.733353pt;}
.y5_c00445{bottom:664.333353pt;}
.y4_c00445{bottom:681.266686pt;}
.y3_c00445{bottom:698.266686pt;}
.y2_c00445{bottom:715.533353pt;}
.y1_c00445{bottom:750.733353pt;}
.y20_c00445{bottom:788.333353pt;}
.h3_c00445{height:44.470052pt;}
.h4_c00445{height:44.492188pt;}
.h2_c00445{height:52.343750pt;}
.h1_c00445{height:851.333333pt;}
.h0_c00445{height:851.533333pt;}
.w0_c00445{width:570.533360pt;}
.w1_c00445{width:570.666667pt;}
.x0_c00445{left:0.000000pt;}
.x2_c00445{left:71.666667pt;}
.x1_c00445{left:72.666667pt;}
.x5_c00445{left:77.733333pt;}
.x3_c00445{left:86.400000pt;}
.x6_c00445{left:107.533333pt;}
.x4_c00445{left:178.533333pt;}
.x7_c00445{left:472.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_389c28f2add7642ceb95abe7.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00446;src:url('chunks/assets/font_3843d1c40e06040ae37bd73f.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00446{letter-spacing:0.000000px;}
.sc__c00446{text-shadow:none;}
.sc0_c00446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00446{-webkit-text-stroke:0px transparent;}
.sc0_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00446{word-spacing:-15.000000px;}
.ws1_c00446{word-spacing:0.000000px;}
._c_c00446{margin-left:-11.340000px;}
._14_c00446{margin-left:-10.260000px;}
._7_c00446{margin-left:-9.240000px;}
._12_c00446{margin-left:-7.860000px;}
._18_c00446{margin-left:-5.864973px;}
._2_c00446{margin-left:-4.800000px;}
._13_c00446{margin-left:-3.300000px;}
._4_c00446{margin-left:-1.980000px;}
._5_c00446{width:1.200000px;}
._0_c00446{width:2.220000px;}
._1_c00446{width:3.240000px;}
._3_c00446{width:4.680000px;}
._6_c00446{width:6.480000px;}
._f_c00446{width:7.560000px;}
._10_c00446{width:8.760000px;}
._9_c00446{width:10.020000px;}
._8_c00446{width:11.700000px;}
._a_c00446{width:12.840000px;}
._e_c00446{width:13.860000px;}
._b_c00446{width:16.560000px;}
._d_c00446{width:18.420000px;}
._11_c00446{width:19.560000px;}
._15_c00446{width:21.810051px;}
._17_c00446{width:24.510042px;}
._16_c00446{width:26.489991px;}
._19_c00446{width:27.990003px;}
.fc1_c00446{color:transparent;}
.fc0_c00446{color:rgb(35,31,32);}
.fs1_c00446{font-size:51.000000px;}
.fs0_c00446{font-size:60.000000px;}
.y0_c00446{bottom:0.000000px;}
.y29_c00446{bottom:64.425022px;}
.y28_c00446{bottom:110.175022px;}
.y27_c00446{bottom:125.625022px;}
.y26_c00446{bottom:140.775022px;}
.y25_c00446{bottom:155.925022px;}
.y24_c00446{bottom:171.375022px;}
.y23_c00446{bottom:186.525022px;}
.y22_c00446{bottom:202.350022px;}
.y21_c00446{bottom:217.425022px;}
.y20_c00446{bottom:232.575022px;}
.y1f_c00446{bottom:247.725022px;}
.y1d_c00446{bottom:300.975022px;}
.y1c_c00446{bottom:320.400022px;}
.y1b_c00446{bottom:339.525022px;}
.y1a_c00446{bottom:358.950022px;}
.y19_c00446{bottom:378.750022px;}
.y18_c00446{bottom:398.175022px;}
.y17_c00446{bottom:417.225022px;}
.y16_c00446{bottom:437.025022px;}
.y15_c00446{bottom:456.150022px;}
.y14_c00446{bottom:475.950022px;}
.y13_c00446{bottom:495.300022px;}
.y12_c00446{bottom:514.800022px;}
.y11_c00446{bottom:534.300022px;}
.y10_c00446{bottom:553.725022px;}
.yf_c00446{bottom:573.150022px;}
.ye_c00446{bottom:592.575022px;}
.yd_c00446{bottom:611.625022px;}
.yc_c00446{bottom:631.425022px;}
.yb_c00446{bottom:650.550022px;}
.ya_c00446{bottom:669.975022px;}
.y9_c00446{bottom:689.775022px;}
.y8_c00446{bottom:709.200022px;}
.y7_c00446{bottom:728.325022px;}
.y6_c00446{bottom:748.125022px;}
.y5_c00446{bottom:767.550022px;}
.y4_c00446{bottom:786.525022px;}
.y3_c00446{bottom:806.025022px;}
.y2_c00446{bottom:825.525022px;}
.y1_c00446{bottom:844.950022px;}
.y1e_c00446{bottom:886.875022px;}
.h3_c00446{height:50.028809px;}
.h4_c00446{height:50.053711px;}
.h2_c00446{height:58.886719px;}
.h1_c00446{height:957.750000px;}
.h0_c00446{height:957.975000px;}
.w1_c00446{width:643.500000px;}
.w0_c00446{width:643.650000px;}
.x0_c00446{left:0.000000px;}
.x2_c00446{left:90.375000px;}
.x1_c00446{left:91.425000px;}
.x4_c00446{left:97.200000px;}
.x3_c00446{left:107.250000px;}
.x5_c00446{left:131.775000px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls0_c00446{letter-spacing:0.000000pt;}
.ws0_c00446{word-spacing:-13.333333pt;}
.ws1_c00446{word-spacing:0.000000pt;}
._c_c00446{margin-left:-10.080000pt;}
._14_c00446{margin-left:-9.120000pt;}
._7_c00446{margin-left:-8.213333pt;}
._12_c00446{margin-left:-6.986667pt;}
._18_c00446{margin-left:-5.213309pt;}
._2_c00446{margin-left:-4.266667pt;}
._13_c00446{margin-left:-2.933333pt;}
._4_c00446{margin-left:-1.760000pt;}
._5_c00446{width:1.066667pt;}
._0_c00446{width:1.973333pt;}
._1_c00446{width:2.880000pt;}
._3_c00446{width:4.160000pt;}
._6_c00446{width:5.760000pt;}
._f_c00446{width:6.720000pt;}
._10_c00446{width:7.786667pt;}
._9_c00446{width:8.906667pt;}
._8_c00446{width:10.400000pt;}
._a_c00446{width:11.413333pt;}
._e_c00446{width:12.320000pt;}
._b_c00446{width:14.720000pt;}
._d_c00446{width:16.373333pt;}
._11_c00446{width:17.386667pt;}
._15_c00446{width:19.386712pt;}
._17_c00446{width:21.786704pt;}
._16_c00446{width:23.546659pt;}
._19_c00446{width:24.880003pt;}
.fs1_c00446{font-size:45.333333pt;}
.fs0_c00446{font-size:53.333333pt;}
.y0_c00446{bottom:0.000000pt;}
.y29_c00446{bottom:57.266686pt;}
.y28_c00446{bottom:97.933353pt;}
.y27_c00446{bottom:111.666686pt;}
.y26_c00446{bottom:125.133353pt;}
.y25_c00446{bottom:138.600020pt;}
.y24_c00446{bottom:152.333353pt;}
.y23_c00446{bottom:165.800020pt;}
.y22_c00446{bottom:179.866686pt;}
.y21_c00446{bottom:193.266686pt;}
.y20_c00446{bottom:206.733353pt;}
.y1f_c00446{bottom:220.200020pt;}
.y1d_c00446{bottom:267.533353pt;}
.y1c_c00446{bottom:284.800020pt;}
.y1b_c00446{bottom:301.800020pt;}
.y1a_c00446{bottom:319.066686pt;}
.y19_c00446{bottom:336.666686pt;}
.y18_c00446{bottom:353.933353pt;}
.y17_c00446{bottom:370.866686pt;}
.y16_c00446{bottom:388.466686pt;}
.y15_c00446{bottom:405.466686pt;}
.y14_c00446{bottom:423.066686pt;}
.y13_c00446{bottom:440.266686pt;}
.y12_c00446{bottom:457.600020pt;}
.y11_c00446{bottom:474.933353pt;}
.y10_c00446{bottom:492.200020pt;}
.yf_c00446{bottom:509.466686pt;}
.ye_c00446{bottom:526.733353pt;}
.yd_c00446{bottom:543.666686pt;}
.yc_c00446{bottom:561.266686pt;}
.yb_c00446{bottom:578.266686pt;}
.ya_c00446{bottom:595.533353pt;}
.y9_c00446{bottom:613.133353pt;}
.y8_c00446{bottom:630.400020pt;}
.y7_c00446{bottom:647.400020pt;}
.y6_c00446{bottom:665.000020pt;}
.y5_c00446{bottom:682.266686pt;}
.y4_c00446{bottom:699.133353pt;}
.y3_c00446{bottom:716.466686pt;}
.y2_c00446{bottom:733.800020pt;}
.y1_c00446{bottom:751.066686pt;}
.y1e_c00446{bottom:788.333353pt;}
.h3_c00446{height:44.470052pt;}
.h4_c00446{height:44.492188pt;}
.h2_c00446{height:52.343750pt;}
.h1_c00446{height:851.333333pt;}
.h0_c00446{height:851.533333pt;}
.w1_c00446{width:572.000000pt;}
.w0_c00446{width:572.133333pt;}
.x0_c00446{left:0.000000pt;}
.x2_c00446{left:80.333333pt;}
.x1_c00446{left:81.266667pt;}
.x4_c00446{left:86.400000pt;}
.x3_c00446{left:95.333333pt;}
.x5_c00446{left:117.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6efa814252d0511f090a3d1f.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00447;src:url('chunks/assets/font_f12c3c6332bb62f583a31728.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00447{letter-spacing:0.000000px;}
.sc__c00447{text-shadow:none;}
.sc0_c00447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00447{-webkit-text-stroke:0px transparent;}
.sc0_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00447{word-spacing:-15.000000px;}
.ws0_c00447{word-spacing:-12.750000px;}
.ws2_c00447{word-spacing:0.000000px;}
._14_c00447{margin-left:-15.966102px;}
._17_c00447{margin-left:-12.099804px;}
._10_c00447{margin-left:-9.669276px;}
._d_c00447{margin-left:-8.457084px;}
._f_c00447{margin-left:-5.978826px;}
._c_c00447{margin-left:-4.754571px;}
._2_c00447{margin-left:-3.672051px;}
._18_c00447{margin-left:-2.667027px;}
._3_c00447{margin-left:-1.644036px;}
._0_c00447{width:1.551012px;}
._4_c00447{width:2.624940px;}
._5_c00447{width:4.044048px;}
._1_c00447{width:5.411967px;}
._9_c00447{width:6.918873px;}
._7_c00447{width:8.306724px;}
._6_c00447{width:9.900000px;}
._8_c00447{width:11.775288px;}
._a_c00447{width:13.356144px;}
._16_c00447{width:14.535000px;}
._b_c00447{width:16.517976px;}
._e_c00447{width:17.571252px;}
._13_c00447{width:19.829880px;}
._11_c00447{width:20.906964px;}
._15_c00447{width:21.966408px;}
._12_c00447{width:23.331012px;}
._19_c00447{width:25.005129px;}
._1a_c00447{width:26.505141px;}
.fc1_c00447{color:transparent;}
.fc0_c00447{color:rgb(35,31,32);}
.fs0_c00447{font-size:51.000000px;}
.fs1_c00447{font-size:60.000000px;}
.y0_c00447{bottom:0.000000px;}
.y28_c00447{bottom:64.425022px;}
.y27_c00447{bottom:110.175022px;}
.y26_c00447{bottom:125.625022px;}
.y25_c00447{bottom:141.150022px;}
.y24_c00447{bottom:155.925022px;}
.y23_c00447{bottom:171.750022px;}
.y22_c00447{bottom:186.525022px;}
.y21_c00447{bottom:201.975022px;}
.y20_c00447{bottom:217.125022px;}
.y1f_c00447{bottom:232.950022px;}
.y1e_c00447{bottom:248.025022px;}
.y1d_c00447{bottom:263.175022px;}
.y1c_c00447{bottom:278.325022px;}
.y1b_c00447{bottom:294.150022px;}
.y1a_c00447{bottom:309.225022px;}
.y19_c00447{bottom:324.375022px;}
.y18_c00447{bottom:339.525022px;}
.y17_c00447{bottom:354.975022px;}
.y16_c00447{bottom:370.425022px;}
.y15_c00447{bottom:416.925022px;}
.y14_c00447{bottom:435.975022px;}
.y13_c00447{bottom:455.400022px;}
.y12_c00447{bottom:474.825022px;}
.y11_c00447{bottom:494.625022px;}
.y10_c00447{bottom:514.125022px;}
.yf_c00447{bottom:533.550022px;}
.ye_c00447{bottom:552.600022px;}
.yd_c00447{bottom:594.000022px;}
.yc_c00447{bottom:613.425022px;}
.yb_c00447{bottom:670.350022px;}
.ya_c00447{bottom:689.775022px;}
.y9_c00447{bottom:708.825022px;}
.y8_c00447{bottom:728.625022px;}
.y7_c00447{bottom:747.750022px;}
.y6_c00447{bottom:767.550022px;}
.y5_c00447{bottom:786.225022px;}
.y4_c00447{bottom:805.725022px;}
.y3_c00447{bottom:825.150022px;}
.y2_c00447{bottom:844.575022px;}
.y1_c00447{bottom:886.875022px;}
.h2_c00447{height:50.028809px;}
.h4_c00447{height:50.053711px;}
.h3_c00447{height:58.886719px;}
.h1_c00447{height:957.750000px;}
.h0_c00447{height:957.975000px;}
.w0_c00447{width:641.850030px;}
.w1_c00447{width:642.000000px;}
.x0_c00447{left:0.000000px;}
.x2_c00447{left:80.250000px;}
.x3_c00447{left:81.375000px;}
.x6_c00447{left:87.450000px;}
.x4_c00447{left:97.200000px;}
.x5_c00447{left:105.825000px;}
.x7_c00447{left:120.975000px;}
.x1_c00447{left:200.850000px;}
.x8_c00447{left:531.000000px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls0_c00447{letter-spacing:0.000000pt;}
.ws1_c00447{word-spacing:-13.333333pt;}
.ws0_c00447{word-spacing:-11.333333pt;}
.ws2_c00447{word-spacing:0.000000pt;}
._14_c00447{margin-left:-14.192091pt;}
._17_c00447{margin-left:-10.755381pt;}
._10_c00447{margin-left:-8.594912pt;}
._d_c00447{margin-left:-7.517408pt;}
._f_c00447{margin-left:-5.314512pt;}
._c_c00447{margin-left:-4.226285pt;}
._2_c00447{margin-left:-3.264045pt;}
._18_c00447{margin-left:-2.370691pt;}
._3_c00447{margin-left:-1.461365pt;}
._0_c00447{width:1.378677pt;}
._4_c00447{width:2.333280pt;}
._5_c00447{width:3.594709pt;}
._1_c00447{width:4.810637pt;}
._9_c00447{width:6.150109pt;}
._7_c00447{width:7.383755pt;}
._6_c00447{width:8.800000pt;}
._8_c00447{width:10.466923pt;}
._a_c00447{width:11.872128pt;}
._16_c00447{width:12.920000pt;}
._b_c00447{width:14.682645pt;}
._e_c00447{width:15.618891pt;}
._13_c00447{width:17.626560pt;}
._11_c00447{width:18.583968pt;}
._15_c00447{width:19.525696pt;}
._12_c00447{width:20.738677pt;}
._19_c00447{width:22.226781pt;}
._1a_c00447{width:23.560125pt;}
.fs0_c00447{font-size:45.333333pt;}
.fs1_c00447{font-size:53.333333pt;}
.y0_c00447{bottom:0.000000pt;}
.y28_c00447{bottom:57.266686pt;}
.y27_c00447{bottom:97.933353pt;}
.y26_c00447{bottom:111.666686pt;}
.y25_c00447{bottom:125.466686pt;}
.y24_c00447{bottom:138.600020pt;}
.y23_c00447{bottom:152.666686pt;}
.y22_c00447{bottom:165.800020pt;}
.y21_c00447{bottom:179.533353pt;}
.y20_c00447{bottom:193.000020pt;}
.y1f_c00447{bottom:207.066686pt;}
.y1e_c00447{bottom:220.466686pt;}
.y1d_c00447{bottom:233.933353pt;}
.y1c_c00447{bottom:247.400020pt;}
.y1b_c00447{bottom:261.466686pt;}
.y1a_c00447{bottom:274.866686pt;}
.y19_c00447{bottom:288.333353pt;}
.y18_c00447{bottom:301.800020pt;}
.y17_c00447{bottom:315.533353pt;}
.y16_c00447{bottom:329.266686pt;}
.y15_c00447{bottom:370.600020pt;}
.y14_c00447{bottom:387.533353pt;}
.y13_c00447{bottom:404.800020pt;}
.y12_c00447{bottom:422.066686pt;}
.y11_c00447{bottom:439.666686pt;}
.y10_c00447{bottom:457.000020pt;}
.yf_c00447{bottom:474.266686pt;}
.ye_c00447{bottom:491.200020pt;}
.yd_c00447{bottom:528.000020pt;}
.yc_c00447{bottom:545.266686pt;}
.yb_c00447{bottom:595.866686pt;}
.ya_c00447{bottom:613.133353pt;}
.y9_c00447{bottom:630.066686pt;}
.y8_c00447{bottom:647.666686pt;}
.y7_c00447{bottom:664.666686pt;}
.y6_c00447{bottom:682.266686pt;}
.y5_c00447{bottom:698.866686pt;}
.y4_c00447{bottom:716.200020pt;}
.y3_c00447{bottom:733.466686pt;}
.y2_c00447{bottom:750.733353pt;}
.y1_c00447{bottom:788.333353pt;}
.h2_c00447{height:44.470052pt;}
.h4_c00447{height:44.492188pt;}
.h3_c00447{height:52.343750pt;}
.h1_c00447{height:851.333333pt;}
.h0_c00447{height:851.533333pt;}
.w0_c00447{width:570.533360pt;}
.w1_c00447{width:570.666667pt;}
.x0_c00447{left:0.000000pt;}
.x2_c00447{left:71.333333pt;}
.x3_c00447{left:72.333333pt;}
.x6_c00447{left:77.733333pt;}
.x4_c00447{left:86.400000pt;}
.x5_c00447{left:94.066667pt;}
.x7_c00447{left:107.533333pt;}
.x1_c00447{left:178.533333pt;}
.x8_c00447{left:472.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_376cebd671a086045656b45d.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00448;src:url('chunks/assets/font_3aa65a47f5e83a1178b66cb9.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00448{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00448{letter-spacing:0.000000px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00448{word-spacing:-15.000000px;}
.ws0_c00448{word-spacing:-12.750000px;}
.ws2_c00448{word-spacing:0.000000px;}
._e_c00448{margin-left:-15.360000px;}
._12_c00448{margin-left:-13.200000px;}
._11_c00448{margin-left:-12.120000px;}
._c_c00448{margin-left:-10.800000px;}
._17_c00448{margin-left:-9.600000px;}
._14_c00448{margin-left:-7.620000px;}
._b_c00448{margin-left:-5.880000px;}
._7_c00448{margin-left:-4.620000px;}
._15_c00448{margin-left:-3.300000px;}
._6_c00448{margin-left:-2.160000px;}
._3_c00448{margin-left:-1.140000px;}
._0_c00448{width:1.860000px;}
._2_c00448{width:3.240000px;}
._a_c00448{width:4.500000px;}
._d_c00448{width:6.000000px;}
._8_c00448{width:7.380000px;}
._9_c00448{width:8.880000px;}
._4_c00448{width:10.020000px;}
._1_c00448{width:11.940000px;}
._f_c00448{width:12.960000px;}
._19_c00448{width:14.991171px;}
._5_c00448{width:16.740000px;}
._16_c00448{width:17.880000px;}
._18_c00448{width:19.080000px;}
._10_c00448{width:20.220000px;}
._13_c00448{width:22.500000px;}
._1a_c00448{width:25.350054px;}
.fc1_c00448{color:transparent;}
.fc0_c00448{color:rgb(35,31,32);}
.fs1_c00448{font-size:51.000000px;}
.fs0_c00448{font-size:60.000000px;}
.y0_c00448{bottom:0.000000px;}
.y2a_c00448{bottom:64.425022px;}
.y29_c00448{bottom:110.175022px;}
.y28_c00448{bottom:125.625022px;}
.y27_c00448{bottom:141.150022px;}
.y26_c00448{bottom:155.925022px;}
.y25_c00448{bottom:171.750022px;}
.y24_c00448{bottom:186.825022px;}
.y23_c00448{bottom:201.975022px;}
.y22_c00448{bottom:217.125022px;}
.y21_c00448{bottom:232.950022px;}
.y20_c00448{bottom:247.725022px;}
.y1f_c00448{bottom:263.550022px;}
.y1e_c00448{bottom:278.325022px;}
.y1d_c00448{bottom:293.775022px;}
.y1c_c00448{bottom:308.925022px;}
.y1b_c00448{bottom:324.375022px;}
.y1a_c00448{bottom:339.525022px;}
.y18_c00448{bottom:398.175022px;}
.y17_c00448{bottom:417.600022px;}
.y16_c00448{bottom:436.725022px;}
.y15_c00448{bottom:456.525022px;}
.y14_c00448{bottom:475.575022px;}
.y13_c00448{bottom:495.375022px;}
.y12_c00448{bottom:514.425022px;}
.y11_c00448{bottom:533.925022px;}
.y10_c00448{bottom:553.350022px;}
.yf_c00448{bottom:573.150022px;}
.ye_c00448{bottom:592.200022px;}
.yd_c00448{bottom:612.000022px;}
.yc_c00448{bottom:631.125022px;}
.yb_c00448{bottom:650.925022px;}
.ya_c00448{bottom:669.975022px;}
.y9_c00448{bottom:689.400022px;}
.y8_c00448{bottom:708.825022px;}
.y7_c00448{bottom:728.325022px;}
.y6_c00448{bottom:748.125022px;}
.y5_c00448{bottom:767.550022px;}
.y4_c00448{bottom:786.225022px;}
.y3_c00448{bottom:805.725022px;}
.y2_c00448{bottom:825.525022px;}
.y1_c00448{bottom:844.575022px;}
.y19_c00448{bottom:886.875022px;}
.h3_c00448{height:50.028809px;}
.h4_c00448{height:50.053711px;}
.h2_c00448{height:58.886719px;}
.h1_c00448{height:957.750000px;}
.h0_c00448{height:957.975000px;}
.w1_c00448{width:643.500000px;}
.w0_c00448{width:643.650000px;}
.x0_c00448{left:0.000000px;}
.x1_c00448{left:91.050000px;}
.x4_c00448{left:97.200000px;}
.x2_c00448{left:107.250000px;}
.x3_c00448{left:131.400000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls0_c00448{letter-spacing:0.000000pt;}
.ws1_c00448{word-spacing:-13.333333pt;}
.ws0_c00448{word-spacing:-11.333333pt;}
.ws2_c00448{word-spacing:0.000000pt;}
._e_c00448{margin-left:-13.653333pt;}
._12_c00448{margin-left:-11.733333pt;}
._11_c00448{margin-left:-10.773333pt;}
._c_c00448{margin-left:-9.600000pt;}
._17_c00448{margin-left:-8.533333pt;}
._14_c00448{margin-left:-6.773333pt;}
._b_c00448{margin-left:-5.226667pt;}
._7_c00448{margin-left:-4.106667pt;}
._15_c00448{margin-left:-2.933333pt;}
._6_c00448{margin-left:-1.920000pt;}
._3_c00448{margin-left:-1.013333pt;}
._0_c00448{width:1.653333pt;}
._2_c00448{width:2.880000pt;}
._a_c00448{width:4.000000pt;}
._d_c00448{width:5.333333pt;}
._8_c00448{width:6.560000pt;}
._9_c00448{width:7.893333pt;}
._4_c00448{width:8.906667pt;}
._1_c00448{width:10.613333pt;}
._f_c00448{width:11.520000pt;}
._19_c00448{width:13.325485pt;}
._5_c00448{width:14.880000pt;}
._16_c00448{width:15.893333pt;}
._18_c00448{width:16.960000pt;}
._10_c00448{width:17.973333pt;}
._13_c00448{width:20.000000pt;}
._1a_c00448{width:22.533381pt;}
.fs1_c00448{font-size:45.333333pt;}
.fs0_c00448{font-size:53.333333pt;}
.y0_c00448{bottom:0.000000pt;}
.y2a_c00448{bottom:57.266686pt;}
.y29_c00448{bottom:97.933353pt;}
.y28_c00448{bottom:111.666686pt;}
.y27_c00448{bottom:125.466686pt;}
.y26_c00448{bottom:138.600020pt;}
.y25_c00448{bottom:152.666686pt;}
.y24_c00448{bottom:166.066686pt;}
.y23_c00448{bottom:179.533353pt;}
.y22_c00448{bottom:193.000020pt;}
.y21_c00448{bottom:207.066686pt;}
.y20_c00448{bottom:220.200020pt;}
.y1f_c00448{bottom:234.266686pt;}
.y1e_c00448{bottom:247.400020pt;}
.y1d_c00448{bottom:261.133353pt;}
.y1c_c00448{bottom:274.600020pt;}
.y1b_c00448{bottom:288.333353pt;}
.y1a_c00448{bottom:301.800020pt;}
.y18_c00448{bottom:353.933353pt;}
.y17_c00448{bottom:371.200020pt;}
.y16_c00448{bottom:388.200020pt;}
.y15_c00448{bottom:405.800020pt;}
.y14_c00448{bottom:422.733353pt;}
.y13_c00448{bottom:440.333353pt;}
.y12_c00448{bottom:457.266686pt;}
.y11_c00448{bottom:474.600020pt;}
.y10_c00448{bottom:491.866686pt;}
.yf_c00448{bottom:509.466686pt;}
.ye_c00448{bottom:526.400020pt;}
.yd_c00448{bottom:544.000020pt;}
.yc_c00448{bottom:561.000020pt;}
.yb_c00448{bottom:578.600020pt;}
.ya_c00448{bottom:595.533353pt;}
.y9_c00448{bottom:612.800020pt;}
.y8_c00448{bottom:630.066686pt;}
.y7_c00448{bottom:647.400020pt;}
.y6_c00448{bottom:665.000020pt;}
.y5_c00448{bottom:682.266686pt;}
.y4_c00448{bottom:698.866686pt;}
.y3_c00448{bottom:716.200020pt;}
.y2_c00448{bottom:733.800020pt;}
.y1_c00448{bottom:750.733353pt;}
.y19_c00448{bottom:788.333353pt;}
.h3_c00448{height:44.470052pt;}
.h4_c00448{height:44.492188pt;}
.h2_c00448{height:52.343750pt;}
.h1_c00448{height:851.333333pt;}
.h0_c00448{height:851.533333pt;}
.w1_c00448{width:572.000000pt;}
.w0_c00448{width:572.133333pt;}
.x0_c00448{left:0.000000pt;}
.x1_c00448{left:80.933333pt;}
.x4_c00448{left:86.400000pt;}
.x2_c00448{left:95.333333pt;}
.x3_c00448{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b9ed7ca0f67e269065b82503.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00449;src:url('chunks/assets/font_d4eb99a80b50cd4bc033fa6f.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.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:-15.000000px;}
.ws1_c00449{word-spacing:0.000000px;}
._8_c00449{margin-left:-15.600000px;}
._17_c00449{margin-left:-14.082927px;}
._f_c00449{margin-left:-11.700000px;}
._e_c00449{margin-left:-10.559688px;}
._10_c00449{margin-left:-9.558936px;}
._5_c00449{margin-left:-7.800000px;}
._19_c00449{margin-left:-5.964441px;}
._16_c00449{margin-left:-4.785588px;}
._2_c00449{margin-left:-3.672051px;}
._13_c00449{margin-left:-2.664345px;}
._3_c00449{margin-left:-1.644036px;}
._0_c00449{width:1.551012px;}
._b_c00449{width:2.733276px;}
._c_c00449{width:3.871836px;}
._1_c00449{width:5.411967px;}
._6_c00449{width:6.900000px;}
._d_c00449{width:8.100000px;}
._4_c00449{width:9.317976px;}
._7_c00449{width:10.872108px;}
._a_c00449{width:12.707616px;}
._9_c00449{width:13.740000px;}
._12_c00449{width:16.872108px;}
._14_c00449{width:18.527868px;}
._11_c00449{width:20.400000px;}
._15_c00449{width:21.884700px;}
._1a_c00449{width:23.838114px;}
._18_c00449{width:26.502459px;}
.fc1_c00449{color:transparent;}
.fc0_c00449{color:rgb(35,31,32);}
.fs0_c00449{font-size:51.000000px;}
.fs1_c00449{font-size:60.000000px;}
.y0_c00449{bottom:0.000000px;}
.y27_c00449{bottom:64.425022px;}
.y26_c00449{bottom:110.550022px;}
.y25_c00449{bottom:125.325022px;}
.y24_c00449{bottom:140.775022px;}
.y23_c00449{bottom:155.925022px;}
.y22_c00449{bottom:171.375022px;}
.y21_c00449{bottom:186.525022px;}
.y20_c00449{bottom:202.275022px;}
.y1f_c00449{bottom:217.425022px;}
.y1e_c00449{bottom:232.575022px;}
.y1d_c00449{bottom:247.725022px;}
.y1c_c00449{bottom:263.175022px;}
.y1b_c00449{bottom:278.325022px;}
.y1a_c00449{bottom:360.750022px;}
.y19_c00449{bottom:380.175022px;}
.y18_c00449{bottom:399.600022px;}
.y17_c00449{bottom:419.025022px;}
.y16_c00449{bottom:438.525022px;}
.y15_c00449{bottom:457.950022px;}
.y14_c00449{bottom:477.375022px;}
.y13_c00449{bottom:496.800022px;}
.y12_c00449{bottom:524.925022px;}
.y11_c00449{bottom:544.350022px;}
.y10_c00449{bottom:563.775022px;}
.yf_c00449{bottom:583.200022px;}
.ye_c00449{bottom:602.625022px;}
.yd_c00449{bottom:622.125022px;}
.yc_c00449{bottom:641.550022px;}
.yb_c00449{bottom:670.350022px;}
.ya_c00449{bottom:689.400022px;}
.y9_c00449{bottom:708.825022px;}
.y8_c00449{bottom:728.625022px;}
.y7_c00449{bottom:747.750022px;}
.y6_c00449{bottom:767.175022px;}
.y5_c00449{bottom:786.600022px;}
.y4_c00449{bottom:806.025022px;}
.y3_c00449{bottom:825.525022px;}
.y2_c00449{bottom:844.950022px;}
.y1_c00449{bottom:886.875022px;}
.h2_c00449{height:50.028809px;}
.h5_c00449{height:50.053711px;}
.h4_c00449{height:58.857422px;}
.h3_c00449{height:58.886719px;}
.h1_c00449{height:957.750000px;}
.h0_c00449{height:957.975000px;}
.w0_c00449{width:641.850030px;}
.w1_c00449{width:642.000000px;}
.x0_c00449{left:0.000000px;}
.x2_c00449{left:80.250000px;}
.x3_c00449{left:81.375000px;}
.x6_c00449{left:87.450000px;}
.x4_c00449{left:96.150000px;}
.x5_c00449{left:97.200000px;}
.x7_c00449{left:120.600000px;}
.x1_c00449{left:200.850000px;}
.x8_c00449{left:531.000000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls0_c00449{letter-spacing:0.000000pt;}
.ws0_c00449{word-spacing:-13.333333pt;}
.ws1_c00449{word-spacing:0.000000pt;}
._8_c00449{margin-left:-13.866667pt;}
._17_c00449{margin-left:-12.518157pt;}
._f_c00449{margin-left:-10.400000pt;}
._e_c00449{margin-left:-9.386389pt;}
._10_c00449{margin-left:-8.496832pt;}
._5_c00449{margin-left:-6.933333pt;}
._19_c00449{margin-left:-5.301725pt;}
._16_c00449{margin-left:-4.253856pt;}
._2_c00449{margin-left:-3.264045pt;}
._13_c00449{margin-left:-2.368307pt;}
._3_c00449{margin-left:-1.461365pt;}
._0_c00449{width:1.378677pt;}
._b_c00449{width:2.429579pt;}
._c_c00449{width:3.441632pt;}
._1_c00449{width:4.810637pt;}
._6_c00449{width:6.133333pt;}
._d_c00449{width:7.200000pt;}
._4_c00449{width:8.282645pt;}
._7_c00449{width:9.664096pt;}
._a_c00449{width:11.295659pt;}
._9_c00449{width:12.213333pt;}
._12_c00449{width:14.997429pt;}
._14_c00449{width:16.469216pt;}
._11_c00449{width:18.133333pt;}
._15_c00449{width:19.453067pt;}
._1a_c00449{width:21.189435pt;}
._18_c00449{width:23.557741pt;}
.fs0_c00449{font-size:45.333333pt;}
.fs1_c00449{font-size:53.333333pt;}
.y0_c00449{bottom:0.000000pt;}
.y27_c00449{bottom:57.266686pt;}
.y26_c00449{bottom:98.266686pt;}
.y25_c00449{bottom:111.400020pt;}
.y24_c00449{bottom:125.133353pt;}
.y23_c00449{bottom:138.600020pt;}
.y22_c00449{bottom:152.333353pt;}
.y21_c00449{bottom:165.800020pt;}
.y20_c00449{bottom:179.800020pt;}
.y1f_c00449{bottom:193.266686pt;}
.y1e_c00449{bottom:206.733353pt;}
.y1d_c00449{bottom:220.200020pt;}
.y1c_c00449{bottom:233.933353pt;}
.y1b_c00449{bottom:247.400020pt;}
.y1a_c00449{bottom:320.666686pt;}
.y19_c00449{bottom:337.933353pt;}
.y18_c00449{bottom:355.200020pt;}
.y17_c00449{bottom:372.466686pt;}
.y16_c00449{bottom:389.800020pt;}
.y15_c00449{bottom:407.066686pt;}
.y14_c00449{bottom:424.333353pt;}
.y13_c00449{bottom:441.600020pt;}
.y12_c00449{bottom:466.600020pt;}
.y11_c00449{bottom:483.866686pt;}
.y10_c00449{bottom:501.133353pt;}
.yf_c00449{bottom:518.400020pt;}
.ye_c00449{bottom:535.666686pt;}
.yd_c00449{bottom:553.000020pt;}
.yc_c00449{bottom:570.266686pt;}
.yb_c00449{bottom:595.866686pt;}
.ya_c00449{bottom:612.800020pt;}
.y9_c00449{bottom:630.066686pt;}
.y8_c00449{bottom:647.666686pt;}
.y7_c00449{bottom:664.666686pt;}
.y6_c00449{bottom:681.933353pt;}
.y5_c00449{bottom:699.200020pt;}
.y4_c00449{bottom:716.466686pt;}
.y3_c00449{bottom:733.800020pt;}
.y2_c00449{bottom:751.066686pt;}
.y1_c00449{bottom:788.333353pt;}
.h2_c00449{height:44.470052pt;}
.h5_c00449{height:44.492188pt;}
.h4_c00449{height:52.317708pt;}
.h3_c00449{height:52.343750pt;}
.h1_c00449{height:851.333333pt;}
.h0_c00449{height:851.533333pt;}
.w0_c00449{width:570.533360pt;}
.w1_c00449{width:570.666667pt;}
.x0_c00449{left:0.000000pt;}
.x2_c00449{left:71.333333pt;}
.x3_c00449{left:72.333333pt;}
.x6_c00449{left:77.733333pt;}
.x4_c00449{left:85.466667pt;}
.x5_c00449{left:86.400000pt;}
.x7_c00449{left:107.200000pt;}
.x1_c00449{left:178.533333pt;}
.x8_c00449{left:472.000000pt;}
}





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

.ir_c00450:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00450{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00450;src:url('chunks/assets/font_cc4f497fe7ece7fb473db320.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00450;src:url('chunks/assets/font_3843d1c40e06040ae37bd73f.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00450{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_c00450{vertical-align:0.000000px;}
.ls0_c00450{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00450{word-spacing:-12.750000px;}
.ws2_c00450{word-spacing:0.000000px;}
._10_c00450{margin-left:-15.000000px;}
._f_c00450{margin-left:-13.740000px;}
._13_c00450{margin-left:-12.540000px;}
._19_c00450{margin-left:-9.840000px;}
._11_c00450{margin-left:-8.820000px;}
._c_c00450{margin-left:-4.800000px;}
._9_c00450{margin-left:-3.780000px;}
._b_c00450{margin-left:-2.700000px;}
._0_c00450{margin-left:-1.680000px;}
._2_c00450{width:1.560000px;}
._5_c00450{width:2.940000px;}
._14_c00450{width:3.960000px;}
._3_c00450{width:4.980000px;}
._12_c00450{width:6.240000px;}
._a_c00450{width:7.560000px;}
._1_c00450{width:8.820000px;}
._18_c00450{width:10.320000px;}
._4_c00450{width:11.340000px;}
._d_c00450{width:12.600000px;}
._e_c00450{width:13.740000px;}
._6_c00450{width:16.200000px;}
._7_c00450{width:18.120000px;}
._17_c00450{width:19.140000px;}
._8_c00450{width:20.400000px;}
._15_c00450{width:21.780000px;}
._16_c00450{width:22.920000px;}
._1b_c00450{width:25.410054px;}
._1a_c00450{width:28.110003px;}
.fc1_c00450{color:transparent;}
.fc0_c00450{color:rgb(35,31,32);}
.fs1_c00450{font-size:51.000000px;}
.fs0_c00450{font-size:60.000000px;}
.y0_c00450{bottom:0.000000px;}
.y23_c00450{bottom:64.425022px;}
.y22_c00450{bottom:110.175022px;}
.y21_c00450{bottom:125.325022px;}
.y20_c00450{bottom:140.775022px;}
.y1f_c00450{bottom:156.225022px;}
.y1e_c00450{bottom:171.375022px;}
.y1d_c00450{bottom:186.525022px;}
.y1c_c00450{bottom:202.350022px;}
.y1b_c00450{bottom:217.125022px;}
.y19_c00450{bottom:359.625022px;}
.y18_c00450{bottom:379.425022px;}
.y17_c00450{bottom:398.550022px;}
.y16_c00450{bottom:417.975022px;}
.y15_c00450{bottom:437.775022px;}
.y14_c00450{bottom:457.200022px;}
.y13_c00450{bottom:476.625022px;}
.y12_c00450{bottom:496.125022px;}
.y11_c00450{bottom:515.550022px;}
.y10_c00450{bottom:534.975022px;}
.yf_c00450{bottom:554.025022px;}
.ye_c00450{bottom:573.825022px;}
.yd_c00450{bottom:593.325022px;}
.yc_c00450{bottom:612.750022px;}
.yb_c00450{bottom:631.800022px;}
.ya_c00450{bottom:651.600022px;}
.y9_c00450{bottom:671.025022px;}
.y8_c00450{bottom:690.150022px;}
.y7_c00450{bottom:709.575022px;}
.y6_c00450{bottom:729.000022px;}
.y5_c00450{bottom:748.425022px;}
.y4_c00450{bottom:767.925022px;}
.y3_c00450{bottom:787.350022px;}
.y2_c00450{bottom:806.775022px;}
.y1_c00450{bottom:844.575022px;}
.y1a_c00450{bottom:886.875022px;}
.h3_c00450{height:50.028809px;}
.h4_c00450{height:50.053711px;}
.h2_c00450{height:58.886719px;}
.h1_c00450{height:957.750000px;}
.h0_c00450{height:957.975000px;}
.w1_c00450{width:643.500000px;}
.w0_c00450{width:643.650000px;}
.x0_c00450{left:0.000000px;}
.x2_c00450{left:90.375000px;}
.x1_c00450{left:91.800000px;}
.x4_c00450{left:97.200000px;}
.x3_c00450{left:107.250000px;}
.x5_c00450{left:131.400000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls0_c00450{letter-spacing:0.000000pt;}
.ws0_c00450{word-spacing:-13.333333pt;}
.ws1_c00450{word-spacing:-11.333333pt;}
.ws2_c00450{word-spacing:0.000000pt;}
._10_c00450{margin-left:-13.333333pt;}
._f_c00450{margin-left:-12.213333pt;}
._13_c00450{margin-left:-11.146667pt;}
._19_c00450{margin-left:-8.746667pt;}
._11_c00450{margin-left:-7.840000pt;}
._c_c00450{margin-left:-4.266667pt;}
._9_c00450{margin-left:-3.360000pt;}
._b_c00450{margin-left:-2.400000pt;}
._0_c00450{margin-left:-1.493333pt;}
._2_c00450{width:1.386667pt;}
._5_c00450{width:2.613333pt;}
._14_c00450{width:3.520000pt;}
._3_c00450{width:4.426667pt;}
._12_c00450{width:5.546667pt;}
._a_c00450{width:6.720000pt;}
._1_c00450{width:7.840000pt;}
._18_c00450{width:9.173333pt;}
._4_c00450{width:10.080000pt;}
._d_c00450{width:11.200000pt;}
._e_c00450{width:12.213333pt;}
._6_c00450{width:14.400000pt;}
._7_c00450{width:16.106667pt;}
._17_c00450{width:17.013333pt;}
._8_c00450{width:18.133333pt;}
._15_c00450{width:19.360000pt;}
._16_c00450{width:20.373333pt;}
._1b_c00450{width:22.586715pt;}
._1a_c00450{width:24.986669pt;}
.fs1_c00450{font-size:45.333333pt;}
.fs0_c00450{font-size:53.333333pt;}
.y0_c00450{bottom:0.000000pt;}
.y23_c00450{bottom:57.266686pt;}
.y22_c00450{bottom:97.933353pt;}
.y21_c00450{bottom:111.400020pt;}
.y20_c00450{bottom:125.133353pt;}
.y1f_c00450{bottom:138.866686pt;}
.y1e_c00450{bottom:152.333353pt;}
.y1d_c00450{bottom:165.800020pt;}
.y1c_c00450{bottom:179.866686pt;}
.y1b_c00450{bottom:193.000020pt;}
.y19_c00450{bottom:319.666686pt;}
.y18_c00450{bottom:337.266686pt;}
.y17_c00450{bottom:354.266686pt;}
.y16_c00450{bottom:371.533353pt;}
.y15_c00450{bottom:389.133353pt;}
.y14_c00450{bottom:406.400020pt;}
.y13_c00450{bottom:423.666686pt;}
.y12_c00450{bottom:441.000020pt;}
.y11_c00450{bottom:458.266686pt;}
.y10_c00450{bottom:475.533353pt;}
.yf_c00450{bottom:492.466686pt;}
.ye_c00450{bottom:510.066686pt;}
.yd_c00450{bottom:527.400020pt;}
.yc_c00450{bottom:544.666686pt;}
.yb_c00450{bottom:561.600020pt;}
.ya_c00450{bottom:579.200020pt;}
.y9_c00450{bottom:596.466686pt;}
.y8_c00450{bottom:613.466686pt;}
.y7_c00450{bottom:630.733353pt;}
.y6_c00450{bottom:648.000020pt;}
.y5_c00450{bottom:665.266686pt;}
.y4_c00450{bottom:682.600020pt;}
.y3_c00450{bottom:699.866686pt;}
.y2_c00450{bottom:717.133353pt;}
.y1_c00450{bottom:750.733353pt;}
.y1a_c00450{bottom:788.333353pt;}
.h3_c00450{height:44.470052pt;}
.h4_c00450{height:44.492188pt;}
.h2_c00450{height:52.343750pt;}
.h1_c00450{height:851.333333pt;}
.h0_c00450{height:851.533333pt;}
.w1_c00450{width:572.000000pt;}
.w0_c00450{width:572.133333pt;}
.x0_c00450{left:0.000000pt;}
.x2_c00450{left:80.333333pt;}
.x1_c00450{left:81.600000pt;}
.x4_c00450{left:86.400000pt;}
.x3_c00450{left:95.333333pt;}
.x5_c00450{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d445b3a51f986f5d289855da.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00451;src:url('chunks/assets/font_9243b9c926e4ba202b69d68d.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00451{letter-spacing:0.000000px;}
.sc__c00451{text-shadow:none;}
.sc0_c00451{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00451{-webkit-text-stroke:0px transparent;}
.sc0_c00451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00451{word-spacing:-15.000000px;}
.ws1_c00451{word-spacing:0.000000px;}
._11_c00451{margin-left:-12.900000px;}
._10_c00451{margin-left:-11.756805px;}
._14_c00451{margin-left:-9.159054px;}
._13_c00451{margin-left:-7.702992px;}
._17_c00451{margin-left:-5.714727px;}
._2_c00451{margin-left:-3.672051px;}
._18_c00451{margin-left:-2.669748px;}
._3_c00451{margin-left:-1.644036px;}
._0_c00451{width:1.551012px;}
._6_c00451{width:2.795952px;}
._c_c00451{width:4.211928px;}
._1_c00451{width:5.411967px;}
._7_c00451{width:6.744048px;}
._5_c00451{width:8.633673px;}
._4_c00451{width:10.128072px;}
._f_c00451{width:12.089793px;}
._b_c00451{width:13.356039px;}
._15_c00451{width:16.074552px;}
._12_c00451{width:17.108988px;}
._a_c00451{width:18.164940px;}
._9_c00451{width:19.217772px;}
._8_c00451{width:21.072108px;}
._d_c00451{width:23.493036px;}
._16_c00451{width:25.482150px;}
._e_c00451{width:27.305832px;}
.fc1_c00451{color:transparent;}
.fc0_c00451{color:rgb(35,31,32);}
.fs0_c00451{font-size:51.000000px;}
.fs1_c00451{font-size:60.000000px;}
.y0_c00451{bottom:0.000000px;}
.y27_c00451{bottom:64.425022px;}
.y26_c00451{bottom:110.175022px;}
.y25_c00451{bottom:125.325022px;}
.y24_c00451{bottom:140.775022px;}
.y23_c00451{bottom:155.925022px;}
.y22_c00451{bottom:171.375022px;}
.y21_c00451{bottom:186.525022px;}
.y20_c00451{bottom:243.375022px;}
.y1f_c00451{bottom:262.425022px;}
.y1e_c00451{bottom:281.925022px;}
.y1d_c00451{bottom:301.725022px;}
.y1c_c00451{bottom:321.150022px;}
.y1b_c00451{bottom:340.575022px;}
.y1a_c00451{bottom:359.625022px;}
.y19_c00451{bottom:379.425022px;}
.y18_c00451{bottom:398.925022px;}
.y17_c00451{bottom:418.350022px;}
.y16_c00451{bottom:437.775022px;}
.y15_c00451{bottom:456.825022px;}
.y14_c00451{bottom:476.625022px;}
.y13_c00451{bottom:495.750022px;}
.y12_c00451{bottom:515.550022px;}
.y11_c00451{bottom:534.975022px;}
.y10_c00451{bottom:554.025022px;}
.yf_c00451{bottom:573.525022px;}
.ye_c00451{bottom:592.950022px;}
.yd_c00451{bottom:612.750022px;}
.yc_c00451{bottom:632.175022px;}
.yb_c00451{bottom:651.225022px;}
.ya_c00451{bottom:671.025022px;}
.y9_c00451{bottom:690.525022px;}
.y8_c00451{bottom:709.575022px;}
.y7_c00451{bottom:728.625022px;}
.y6_c00451{bottom:748.425022px;}
.y5_c00451{bottom:767.925022px;}
.y4_c00451{bottom:786.975022px;}
.y3_c00451{bottom:806.775022px;}
.y2_c00451{bottom:844.575022px;}
.y1_c00451{bottom:886.875022px;}
.h2_c00451{height:50.028809px;}
.h4_c00451{height:50.053711px;}
.h3_c00451{height:58.886719px;}
.h1_c00451{height:957.750000px;}
.h0_c00451{height:957.975000px;}
.w0_c00451{width:641.850030px;}
.w1_c00451{width:642.000000px;}
.x0_c00451{left:0.000000px;}
.x3_c00451{left:80.250000px;}
.x2_c00451{left:81.375000px;}
.x5_c00451{left:87.450000px;}
.x4_c00451{left:97.200000px;}
.x6_c00451{left:120.975000px;}
.x1_c00451{left:200.850000px;}
.x7_c00451{left:531.000000px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls0_c00451{letter-spacing:0.000000pt;}
.ws0_c00451{word-spacing:-13.333333pt;}
.ws1_c00451{word-spacing:0.000000pt;}
._11_c00451{margin-left:-11.466667pt;}
._10_c00451{margin-left:-10.450493pt;}
._14_c00451{margin-left:-8.141381pt;}
._13_c00451{margin-left:-6.847104pt;}
._17_c00451{margin-left:-5.079757pt;}
._2_c00451{margin-left:-3.264045pt;}
._18_c00451{margin-left:-2.373109pt;}
._3_c00451{margin-left:-1.461365pt;}
._0_c00451{width:1.378677pt;}
._6_c00451{width:2.485291pt;}
._c_c00451{width:3.743936pt;}
._1_c00451{width:4.810637pt;}
._7_c00451{width:5.994709pt;}
._5_c00451{width:7.674376pt;}
._4_c00451{width:9.002731pt;}
._f_c00451{width:10.746483pt;}
._b_c00451{width:11.872035pt;}
._15_c00451{width:14.288491pt;}
._12_c00451{width:15.207989pt;}
._a_c00451{width:16.146613pt;}
._9_c00451{width:17.082464pt;}
._8_c00451{width:18.730763pt;}
._d_c00451{width:20.882699pt;}
._16_c00451{width:22.650800pt;}
._e_c00451{width:24.271851pt;}
.fs0_c00451{font-size:45.333333pt;}
.fs1_c00451{font-size:53.333333pt;}
.y0_c00451{bottom:0.000000pt;}
.y27_c00451{bottom:57.266686pt;}
.y26_c00451{bottom:97.933353pt;}
.y25_c00451{bottom:111.400020pt;}
.y24_c00451{bottom:125.133353pt;}
.y23_c00451{bottom:138.600020pt;}
.y22_c00451{bottom:152.333353pt;}
.y21_c00451{bottom:165.800020pt;}
.y20_c00451{bottom:216.333353pt;}
.y1f_c00451{bottom:233.266686pt;}
.y1e_c00451{bottom:250.600020pt;}
.y1d_c00451{bottom:268.200020pt;}
.y1c_c00451{bottom:285.466686pt;}
.y1b_c00451{bottom:302.733353pt;}
.y1a_c00451{bottom:319.666686pt;}
.y19_c00451{bottom:337.266686pt;}
.y18_c00451{bottom:354.600020pt;}
.y17_c00451{bottom:371.866686pt;}
.y16_c00451{bottom:389.133353pt;}
.y15_c00451{bottom:406.066686pt;}
.y14_c00451{bottom:423.666686pt;}
.y13_c00451{bottom:440.666686pt;}
.y12_c00451{bottom:458.266686pt;}
.y11_c00451{bottom:475.533353pt;}
.y10_c00451{bottom:492.466686pt;}
.yf_c00451{bottom:509.800020pt;}
.ye_c00451{bottom:527.066686pt;}
.yd_c00451{bottom:544.666686pt;}
.yc_c00451{bottom:561.933353pt;}
.yb_c00451{bottom:578.866686pt;}
.ya_c00451{bottom:596.466686pt;}
.y9_c00451{bottom:613.800020pt;}
.y8_c00451{bottom:630.733353pt;}
.y7_c00451{bottom:647.666686pt;}
.y6_c00451{bottom:665.266686pt;}
.y5_c00451{bottom:682.600020pt;}
.y4_c00451{bottom:699.533353pt;}
.y3_c00451{bottom:717.133353pt;}
.y2_c00451{bottom:750.733353pt;}
.y1_c00451{bottom:788.333353pt;}
.h2_c00451{height:44.470052pt;}
.h4_c00451{height:44.492188pt;}
.h3_c00451{height:52.343750pt;}
.h1_c00451{height:851.333333pt;}
.h0_c00451{height:851.533333pt;}
.w0_c00451{width:570.533360pt;}
.w1_c00451{width:570.666667pt;}
.x0_c00451{left:0.000000pt;}
.x3_c00451{left:71.333333pt;}
.x2_c00451{left:72.333333pt;}
.x5_c00451{left:77.733333pt;}
.x4_c00451{left:86.400000pt;}
.x6_c00451{left:107.533333pt;}
.x1_c00451{left:178.533333pt;}
.x7_c00451{left:472.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aea2059838ad98031c6d7987.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00452;src:url('chunks/assets/font_3843d1c40e06040ae37bd73f.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00452{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00452{letter-spacing:0.000000px;}
.sc__c00452{text-shadow:none;}
.sc0_c00452{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00452{-webkit-text-stroke:0px transparent;}
.sc0_c00452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00452{word-spacing:-15.000000px;}
.ws1_c00452{word-spacing:0.000000px;}
._12_c00452{margin-left:-14.160000px;}
._11_c00452{margin-left:-12.840000px;}
._9_c00452{margin-left:-11.760000px;}
._c_c00452{margin-left:-10.080000px;}
._17_c00452{margin-left:-6.354021px;}
._a_c00452{margin-left:-4.800000px;}
._18_c00452{margin-left:-3.561111px;}
._6_c00452{margin-left:-2.460000px;}
._4_c00452{margin-left:-1.320000px;}
._0_c00452{width:1.800000px;}
._8_c00452{width:3.720000px;}
._e_c00452{width:5.340000px;}
._d_c00452{width:6.540000px;}
._3_c00452{width:8.160000px;}
._f_c00452{width:9.240000px;}
._7_c00452{width:10.260000px;}
._b_c00452{width:11.400000px;}
._1_c00452{width:12.660000px;}
._13_c00452{width:13.980000px;}
._10_c00452{width:16.020000px;}
._2_c00452{width:17.280000px;}
._14_c00452{width:18.660000px;}
._5_c00452{width:20.640000px;}
._15_c00452{width:27.150054px;}
._16_c00452{width:29.430003px;}
.fc1_c00452{color:transparent;}
.fc0_c00452{color:rgb(35,31,32);}
.fs1_c00452{font-size:51.000000px;}
.fs0_c00452{font-size:60.000000px;}
.y0_c00452{bottom:0.000000px;}
.y25_c00452{bottom:64.800022px;}
.y24_c00452{bottom:110.175022px;}
.y23_c00452{bottom:125.325022px;}
.y22_c00452{bottom:140.775022px;}
.y21_c00452{bottom:155.925022px;}
.y20_c00452{bottom:200.175022px;}
.y1f_c00452{bottom:219.225022px;}
.y1e_c00452{bottom:239.025022px;}
.y1d_c00452{bottom:258.525022px;}
.y1c_c00452{bottom:277.575022px;}
.y1b_c00452{bottom:297.375022px;}
.y1a_c00452{bottom:338.400022px;}
.y18_c00452{bottom:397.800022px;}
.y17_c00452{bottom:417.600022px;}
.y16_c00452{bottom:436.725022px;}
.y15_c00452{bottom:456.150022px;}
.y14_c00452{bottom:475.950022px;}
.y13_c00452{bottom:495.375022px;}
.y12_c00452{bottom:514.425022px;}
.y11_c00452{bottom:533.925022px;}
.y10_c00452{bottom:553.350022px;}
.yf_c00452{bottom:573.150022px;}
.ye_c00452{bottom:592.575022px;}
.yd_c00452{bottom:611.625022px;}
.yc_c00452{bottom:631.125022px;}
.yb_c00452{bottom:650.550022px;}
.ya_c00452{bottom:670.350022px;}
.y9_c00452{bottom:689.325022px;}
.y8_c00452{bottom:708.825022px;}
.y7_c00452{bottom:728.325022px;}
.y6_c00452{bottom:748.050022px;}
.y5_c00452{bottom:767.175022px;}
.y4_c00452{bottom:786.225022px;}
.y3_c00452{bottom:806.025022px;}
.y2_c00452{bottom:825.525022px;}
.y1_c00452{bottom:844.575022px;}
.y19_c00452{bottom:886.875022px;}
.h3_c00452{height:50.028809px;}
.h4_c00452{height:50.053711px;}
.h2_c00452{height:58.886719px;}
.h1_c00452{height:957.750000px;}
.h0_c00452{height:957.975000px;}
.w1_c00452{width:643.500000px;}
.w0_c00452{width:643.650000px;}
.x0_c00452{left:0.000000px;}
.x3_c00452{left:90.375000px;}
.x1_c00452{left:91.425000px;}
.x4_c00452{left:97.200000px;}
.x2_c00452{left:107.250000px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls0_c00452{letter-spacing:0.000000pt;}
.ws0_c00452{word-spacing:-13.333333pt;}
.ws1_c00452{word-spacing:0.000000pt;}
._12_c00452{margin-left:-12.586667pt;}
._11_c00452{margin-left:-11.413333pt;}
._9_c00452{margin-left:-10.453333pt;}
._c_c00452{margin-left:-8.960000pt;}
._17_c00452{margin-left:-5.648019pt;}
._a_c00452{margin-left:-4.266667pt;}
._18_c00452{margin-left:-3.165432pt;}
._6_c00452{margin-left:-2.186667pt;}
._4_c00452{margin-left:-1.173333pt;}
._0_c00452{width:1.600000pt;}
._8_c00452{width:3.306667pt;}
._e_c00452{width:4.746667pt;}
._d_c00452{width:5.813333pt;}
._3_c00452{width:7.253333pt;}
._f_c00452{width:8.213333pt;}
._7_c00452{width:9.120000pt;}
._b_c00452{width:10.133333pt;}
._1_c00452{width:11.253333pt;}
._13_c00452{width:12.426667pt;}
._10_c00452{width:14.240000pt;}
._2_c00452{width:15.360000pt;}
._14_c00452{width:16.586667pt;}
._5_c00452{width:18.346667pt;}
._15_c00452{width:24.133381pt;}
._16_c00452{width:26.160003pt;}
.fs1_c00452{font-size:45.333333pt;}
.fs0_c00452{font-size:53.333333pt;}
.y0_c00452{bottom:0.000000pt;}
.y25_c00452{bottom:57.600020pt;}
.y24_c00452{bottom:97.933353pt;}
.y23_c00452{bottom:111.400020pt;}
.y22_c00452{bottom:125.133353pt;}
.y21_c00452{bottom:138.600020pt;}
.y20_c00452{bottom:177.933353pt;}
.y1f_c00452{bottom:194.866686pt;}
.y1e_c00452{bottom:212.466686pt;}
.y1d_c00452{bottom:229.800020pt;}
.y1c_c00452{bottom:246.733353pt;}
.y1b_c00452{bottom:264.333353pt;}
.y1a_c00452{bottom:300.800020pt;}
.y18_c00452{bottom:353.600020pt;}
.y17_c00452{bottom:371.200020pt;}
.y16_c00452{bottom:388.200020pt;}
.y15_c00452{bottom:405.466686pt;}
.y14_c00452{bottom:423.066686pt;}
.y13_c00452{bottom:440.333353pt;}
.y12_c00452{bottom:457.266686pt;}
.y11_c00452{bottom:474.600020pt;}
.y10_c00452{bottom:491.866686pt;}
.yf_c00452{bottom:509.466686pt;}
.ye_c00452{bottom:526.733353pt;}
.yd_c00452{bottom:543.666686pt;}
.yc_c00452{bottom:561.000020pt;}
.yb_c00452{bottom:578.266686pt;}
.ya_c00452{bottom:595.866686pt;}
.y9_c00452{bottom:612.733353pt;}
.y8_c00452{bottom:630.066686pt;}
.y7_c00452{bottom:647.400020pt;}
.y6_c00452{bottom:664.933353pt;}
.y5_c00452{bottom:681.933353pt;}
.y4_c00452{bottom:698.866686pt;}
.y3_c00452{bottom:716.466686pt;}
.y2_c00452{bottom:733.800020pt;}
.y1_c00452{bottom:750.733353pt;}
.y19_c00452{bottom:788.333353pt;}
.h3_c00452{height:44.470052pt;}
.h4_c00452{height:44.492188pt;}
.h2_c00452{height:52.343750pt;}
.h1_c00452{height:851.333333pt;}
.h0_c00452{height:851.533333pt;}
.w1_c00452{width:572.000000pt;}
.w0_c00452{width:572.133333pt;}
.x0_c00452{left:0.000000pt;}
.x3_c00452{left:80.333333pt;}
.x1_c00452{left:81.266667pt;}
.x4_c00452{left:86.400000pt;}
.x2_c00452{left:95.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05e97f27b6469c2d69b52e43.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00453;src:url('chunks/assets/font_c3cfaefbab2b898ea7474f70.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00453{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00453{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.ls0_c00453{letter-spacing:0.000000px;}
.sc__c00453{text-shadow:none;}
.sc0_c00453{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00453{-webkit-text-stroke:0px transparent;}
.sc0_c00453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00453{word-spacing:-15.000000px;}
.ws1_c00453{word-spacing:-12.750000px;}
.ws2_c00453{word-spacing:0.000000px;}
._11_c00453{margin-left:-13.173036px;}
._4_c00453{margin-left:-11.442024px;}
._14_c00453{margin-left:-10.434081px;}
._17_c00453{margin-left:-8.790792px;}
._d_c00453{margin-left:-5.400000px;}
._2_c00453{margin-left:-3.672051px;}
._e_c00453{margin-left:-2.657835px;}
._3_c00453{margin-left:-1.644036px;}
._0_c00453{width:1.551012px;}
._6_c00453{width:2.880000px;}
._12_c00453{width:4.154745px;}
._1_c00453{width:5.411967px;}
._18_c00453{width:6.439107px;}
._7_c00453{width:7.493613px;}
._5_c00453{width:8.826072px;}
._10_c00453{width:9.953928px;}
._8_c00453{width:11.195952px;}
._9_c00453{width:12.420000px;}
._f_c00453{width:13.514955px;}
._13_c00453{width:16.368072px;}
._c_c00453{width:17.846964px;}
._a_c00453{width:20.340000px;}
._b_c00453{width:22.080000px;}
._15_c00453{width:24.042024px;}
._16_c00453{width:26.471904px;}
.fc1_c00453{color:transparent;}
.fc0_c00453{color:rgb(35,31,32);}
.fs0_c00453{font-size:51.000000px;}
.fs1_c00453{font-size:60.000000px;}
.y0_c00453{bottom:0.000000px;}
.y27_c00453{bottom:64.425022px;}
.y26_c00453{bottom:110.175022px;}
.y25_c00453{bottom:125.325022px;}
.y24_c00453{bottom:140.775022px;}
.y23_c00453{bottom:156.225022px;}
.y22_c00453{bottom:171.375022px;}
.y21_c00453{bottom:186.525022px;}
.y20_c00453{bottom:201.975022px;}
.y1f_c00453{bottom:241.950022px;}
.y1e_c00453{bottom:261.375022px;}
.y1d_c00453{bottom:295.200022px;}
.y1c_c00453{bottom:342.000022px;}
.y1b_c00453{bottom:361.425022px;}
.y1a_c00453{bottom:381.225022px;}
.y19_c00453{bottom:400.350022px;}
.y18_c00453{bottom:419.400022px;}
.y17_c00453{bottom:439.200022px;}
.y16_c00453{bottom:458.625022px;}
.y15_c00453{bottom:477.750022px;}
.y14_c00453{bottom:496.875022px;}
.y13_c00453{bottom:516.300022px;}
.y12_c00453{bottom:535.725022px;}
.y11_c00453{bottom:555.150022px;}
.y10_c00453{bottom:574.575022px;}
.yf_c00453{bottom:593.325022px;}
.ye_c00453{bottom:613.125022px;}
.yd_c00453{bottom:632.550022px;}
.yc_c00453{bottom:651.600022px;}
.yb_c00453{bottom:671.025022px;}
.ya_c00453{bottom:690.150022px;}
.y9_c00453{bottom:709.950022px;}
.y8_c00453{bottom:728.625022px;}
.y7_c00453{bottom:748.425022px;}
.y6_c00453{bottom:767.550022px;}
.y5_c00453{bottom:786.600022px;}
.y4_c00453{bottom:806.025022px;}
.y3_c00453{bottom:825.525022px;}
.y2_c00453{bottom:844.575022px;}
.y1_c00453{bottom:886.875022px;}
.h2_c00453{height:50.028809px;}
.h4_c00453{height:50.053711px;}
.h3_c00453{height:58.886719px;}
.h1_c00453{height:957.750000px;}
.h0_c00453{height:957.975000px;}
.w0_c00453{width:641.850030px;}
.w1_c00453{width:642.000000px;}
.x0_c00453{left:0.000000px;}
.x3_c00453{left:80.250000px;}
.x2_c00453{left:81.375000px;}
.x5_c00453{left:87.450000px;}
.x4_c00453{left:96.825000px;}
.x6_c00453{left:120.975000px;}
.x1_c00453{left:200.850000px;}
.x7_c00453{left:531.000000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls0_c00453{letter-spacing:0.000000pt;}
.ws0_c00453{word-spacing:-13.333333pt;}
.ws1_c00453{word-spacing:-11.333333pt;}
.ws2_c00453{word-spacing:0.000000pt;}
._11_c00453{margin-left:-11.709365pt;}
._4_c00453{margin-left:-10.170688pt;}
._14_c00453{margin-left:-9.274739pt;}
._17_c00453{margin-left:-7.814037pt;}
._d_c00453{margin-left:-4.800000pt;}
._2_c00453{margin-left:-3.264045pt;}
._e_c00453{margin-left:-2.362520pt;}
._3_c00453{margin-left:-1.461365pt;}
._0_c00453{width:1.378677pt;}
._6_c00453{width:2.560000pt;}
._12_c00453{width:3.693107pt;}
._1_c00453{width:4.810637pt;}
._18_c00453{width:5.723651pt;}
._7_c00453{width:6.660989pt;}
._5_c00453{width:7.845397pt;}
._10_c00453{width:8.847936pt;}
._8_c00453{width:9.951957pt;}
._9_c00453{width:11.040000pt;}
._f_c00453{width:12.013293pt;}
._13_c00453{width:14.549397pt;}
._c_c00453{width:15.863968pt;}
._a_c00453{width:18.080000pt;}
._b_c00453{width:19.626667pt;}
._15_c00453{width:21.370688pt;}
._16_c00453{width:23.530581pt;}
.fs0_c00453{font-size:45.333333pt;}
.fs1_c00453{font-size:53.333333pt;}
.y0_c00453{bottom:0.000000pt;}
.y27_c00453{bottom:57.266686pt;}
.y26_c00453{bottom:97.933353pt;}
.y25_c00453{bottom:111.400020pt;}
.y24_c00453{bottom:125.133353pt;}
.y23_c00453{bottom:138.866686pt;}
.y22_c00453{bottom:152.333353pt;}
.y21_c00453{bottom:165.800020pt;}
.y20_c00453{bottom:179.533353pt;}
.y1f_c00453{bottom:215.066686pt;}
.y1e_c00453{bottom:232.333353pt;}
.y1d_c00453{bottom:262.400020pt;}
.y1c_c00453{bottom:304.000020pt;}
.y1b_c00453{bottom:321.266686pt;}
.y1a_c00453{bottom:338.866686pt;}
.y19_c00453{bottom:355.866686pt;}
.y18_c00453{bottom:372.800020pt;}
.y17_c00453{bottom:390.400020pt;}
.y16_c00453{bottom:407.666686pt;}
.y15_c00453{bottom:424.666686pt;}
.y14_c00453{bottom:441.666686pt;}
.y13_c00453{bottom:458.933353pt;}
.y12_c00453{bottom:476.200020pt;}
.y11_c00453{bottom:493.466686pt;}
.y10_c00453{bottom:510.733353pt;}
.yf_c00453{bottom:527.400020pt;}
.ye_c00453{bottom:545.000020pt;}
.yd_c00453{bottom:562.266686pt;}
.yc_c00453{bottom:579.200020pt;}
.yb_c00453{bottom:596.466686pt;}
.ya_c00453{bottom:613.466686pt;}
.y9_c00453{bottom:631.066686pt;}
.y8_c00453{bottom:647.666686pt;}
.y7_c00453{bottom:665.266686pt;}
.y6_c00453{bottom:682.266686pt;}
.y5_c00453{bottom:699.200020pt;}
.y4_c00453{bottom:716.466686pt;}
.y3_c00453{bottom:733.800020pt;}
.y2_c00453{bottom:750.733353pt;}
.y1_c00453{bottom:788.333353pt;}
.h2_c00453{height:44.470052pt;}
.h4_c00453{height:44.492188pt;}
.h3_c00453{height:52.343750pt;}
.h1_c00453{height:851.333333pt;}
.h0_c00453{height:851.533333pt;}
.w0_c00453{width:570.533360pt;}
.w1_c00453{width:570.666667pt;}
.x0_c00453{left:0.000000pt;}
.x3_c00453{left:71.333333pt;}
.x2_c00453{left:72.333333pt;}
.x5_c00453{left:77.733333pt;}
.x4_c00453{left:86.066667pt;}
.x6_c00453{left:107.533333pt;}
.x1_c00453{left:178.533333pt;}
.x7_c00453{left:472.000000pt;}
}





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

.ir_c00454:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00454{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00454;src:url('chunks/assets/font_de2500fefa88b43499b1758c.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00454;src:url('chunks/assets/font_3843d1c40e06040ae37bd73f.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00454{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_c00454{vertical-align:0.000000px;}
.ls0_c00454{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00454{word-spacing:-15.000000px;}
.ws0_c00454{word-spacing:-12.750000px;}
.ws2_c00454{word-spacing:0.000000px;}
._d_c00454{margin-left:-15.600000px;}
._15_c00454{margin-left:-13.860000px;}
._11_c00454{margin-left:-12.180000px;}
._12_c00454{margin-left:-10.740000px;}
._a_c00454{margin-left:-5.580000px;}
._10_c00454{margin-left:-4.440000px;}
._9_c00454{margin-left:-3.420000px;}
._0_c00454{margin-left:-1.860000px;}
._3_c00454{width:1.500000px;}
._2_c00454{width:2.520000px;}
._4_c00454{width:3.660000px;}
._7_c00454{width:5.220000px;}
._5_c00454{width:6.840000px;}
._1_c00454{width:8.400000px;}
._6_c00454{width:9.480000px;}
._8_c00454{width:10.620000px;}
._b_c00454{width:12.600000px;}
._c_c00454{width:13.860000px;}
._13_c00454{width:16.740000px;}
._14_c00454{width:18.300000px;}
._e_c00454{width:19.680000px;}
._f_c00454{width:21.660000px;}
._16_c00454{width:25.770054px;}
._18_c00454{width:27.630003px;}
._17_c00454{width:29.490003px;}
.fc1_c00454{color:transparent;}
.fc0_c00454{color:rgb(35,31,32);}
.fs1_c00454{font-size:51.000000px;}
.fs0_c00454{font-size:60.000000px;}
.y0_c00454{bottom:0.000000px;}
.y27_c00454{bottom:64.800022px;}
.y26_c00454{bottom:110.175022px;}
.y25_c00454{bottom:125.325022px;}
.y24_c00454{bottom:141.150022px;}
.y23_c00454{bottom:156.225022px;}
.y22_c00454{bottom:171.375022px;}
.y21_c00454{bottom:186.525022px;}
.y20_c00454{bottom:201.975022px;}
.y1f_c00454{bottom:217.425022px;}
.y1e_c00454{bottom:232.950022px;}
.y1d_c00454{bottom:248.025022px;}
.y1c_c00454{bottom:263.550022px;}
.y1b_c00454{bottom:278.625022px;}
.y1a_c00454{bottom:294.150022px;}
.y19_c00454{bottom:309.225022px;}
.y18_c00454{bottom:324.375022px;}
.y17_c00454{bottom:339.825022px;}
.y16_c00454{bottom:399.975022px;}
.y15_c00454{bottom:419.775022px;}
.y14_c00454{bottom:439.200022px;}
.y13_c00454{bottom:458.625022px;}
.y12_c00454{bottom:478.125022px;}
.y11_c00454{bottom:497.550022px;}
.y10_c00454{bottom:516.975022px;}
.yf_c00454{bottom:536.400022px;}
.ye_c00454{bottom:555.525022px;}
.yd_c00454{bottom:575.325022px;}
.yc_c00454{bottom:594.375022px;}
.yb_c00454{bottom:613.800022px;}
.ya_c00454{bottom:633.225022px;}
.y9_c00454{bottom:653.025022px;}
.y8_c00454{bottom:672.150022px;}
.y7_c00454{bottom:691.575022px;}
.y6_c00454{bottom:711.000022px;}
.y5_c00454{bottom:730.425022px;}
.y4_c00454{bottom:768.600022px;}
.y2_c00454{bottom:825.150022px;}
.y1_c00454{bottom:844.575022px;}
.y3_c00454{bottom:886.875022px;}
.h3_c00454{height:50.028809px;}
.h4_c00454{height:50.053711px;}
.h2_c00454{height:58.886719px;}
.h1_c00454{height:957.750000px;}
.h0_c00454{height:957.975000px;}
.w1_c00454{width:643.500000px;}
.w0_c00454{width:643.650000px;}
.x0_c00454{left:0.000000px;}
.x1_c00454{left:91.050000px;}
.x2_c00454{left:97.200000px;}
.x4_c00454{left:130.650000px;}
.x3_c00454{left:131.775000px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls0_c00454{letter-spacing:0.000000pt;}
.ws1_c00454{word-spacing:-13.333333pt;}
.ws0_c00454{word-spacing:-11.333333pt;}
.ws2_c00454{word-spacing:0.000000pt;}
._d_c00454{margin-left:-13.866667pt;}
._15_c00454{margin-left:-12.320000pt;}
._11_c00454{margin-left:-10.826667pt;}
._12_c00454{margin-left:-9.546667pt;}
._a_c00454{margin-left:-4.960000pt;}
._10_c00454{margin-left:-3.946667pt;}
._9_c00454{margin-left:-3.040000pt;}
._0_c00454{margin-left:-1.653333pt;}
._3_c00454{width:1.333333pt;}
._2_c00454{width:2.240000pt;}
._4_c00454{width:3.253333pt;}
._7_c00454{width:4.640000pt;}
._5_c00454{width:6.080000pt;}
._1_c00454{width:7.466667pt;}
._6_c00454{width:8.426667pt;}
._8_c00454{width:9.440000pt;}
._b_c00454{width:11.200000pt;}
._c_c00454{width:12.320000pt;}
._13_c00454{width:14.880000pt;}
._14_c00454{width:16.266667pt;}
._e_c00454{width:17.493333pt;}
._f_c00454{width:19.253333pt;}
._16_c00454{width:22.906715pt;}
._18_c00454{width:24.560003pt;}
._17_c00454{width:26.213336pt;}
.fs1_c00454{font-size:45.333333pt;}
.fs0_c00454{font-size:53.333333pt;}
.y0_c00454{bottom:0.000000pt;}
.y27_c00454{bottom:57.600020pt;}
.y26_c00454{bottom:97.933353pt;}
.y25_c00454{bottom:111.400020pt;}
.y24_c00454{bottom:125.466686pt;}
.y23_c00454{bottom:138.866686pt;}
.y22_c00454{bottom:152.333353pt;}
.y21_c00454{bottom:165.800020pt;}
.y20_c00454{bottom:179.533353pt;}
.y1f_c00454{bottom:193.266686pt;}
.y1e_c00454{bottom:207.066686pt;}
.y1d_c00454{bottom:220.466686pt;}
.y1c_c00454{bottom:234.266686pt;}
.y1b_c00454{bottom:247.666686pt;}
.y1a_c00454{bottom:261.466686pt;}
.y19_c00454{bottom:274.866686pt;}
.y18_c00454{bottom:288.333353pt;}
.y17_c00454{bottom:302.066686pt;}
.y16_c00454{bottom:355.533353pt;}
.y15_c00454{bottom:373.133353pt;}
.y14_c00454{bottom:390.400020pt;}
.y13_c00454{bottom:407.666686pt;}
.y12_c00454{bottom:425.000020pt;}
.y11_c00454{bottom:442.266686pt;}
.y10_c00454{bottom:459.533353pt;}
.yf_c00454{bottom:476.800020pt;}
.ye_c00454{bottom:493.800020pt;}
.yd_c00454{bottom:511.400020pt;}
.yc_c00454{bottom:528.333353pt;}
.yb_c00454{bottom:545.600020pt;}
.ya_c00454{bottom:562.866686pt;}
.y9_c00454{bottom:580.466686pt;}
.y8_c00454{bottom:597.466686pt;}
.y7_c00454{bottom:614.733353pt;}
.y6_c00454{bottom:632.000020pt;}
.y5_c00454{bottom:649.266686pt;}
.y4_c00454{bottom:683.200020pt;}
.y2_c00454{bottom:733.466686pt;}
.y1_c00454{bottom:750.733353pt;}
.y3_c00454{bottom:788.333353pt;}
.h3_c00454{height:44.470052pt;}
.h4_c00454{height:44.492188pt;}
.h2_c00454{height:52.343750pt;}
.h1_c00454{height:851.333333pt;}
.h0_c00454{height:851.533333pt;}
.w1_c00454{width:572.000000pt;}
.w0_c00454{width:572.133333pt;}
.x0_c00454{left:0.000000pt;}
.x1_c00454{left:80.933333pt;}
.x2_c00454{left:86.400000pt;}
.x4_c00454{left:116.133333pt;}
.x3_c00454{left:117.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e712944235a02614a928ec2.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00455;src:url('chunks/assets/font_9f5ccc675eeadab66fcebb7e.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00455{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws1_c00455{word-spacing:0.000000px;}
._c_c00455{margin-left:-15.320631px;}
._15_c00455{margin-left:-12.402723px;}
._d_c00455{margin-left:-11.400000px;}
._1a_c00455{margin-left:-7.889676px;}
._e_c00455{margin-left:-6.623919px;}
._b_c00455{margin-left:-5.121264px;}
._2_c00455{margin-left:-3.672051px;}
._6_c00455{margin-left:-2.649129px;}
._3_c00455{margin-left:-1.644036px;}
._0_c00455{width:1.551012px;}
._4_c00455{width:2.673165px;}
._5_c00455{width:4.394907px;}
._1_c00455{width:5.411967px;}
._7_c00455{width:6.875964px;}
._17_c00455{width:7.922526px;}
._a_c00455{width:9.159051px;}
._8_c00455{width:10.443192px;}
._f_c00455{width:11.504670px;}
._9_c00455{width:12.822294px;}
._19_c00455{width:14.019396px;}
._13_c00455{width:16.217067px;}
._16_c00455{width:17.805645px;}
._14_c00455{width:18.824811px;}
._11_c00455{width:20.169129px;}
._10_c00455{width:21.593799px;}
._12_c00455{width:24.485691px;}
._18_c00455{width:26.487243px;}
.fc1_c00455{color:transparent;}
.fc0_c00455{color:rgb(35,31,32);}
.fs0_c00455{font-size:51.000000px;}
.fs1_c00455{font-size:60.000000px;}
.y0_c00455{bottom:0.000000px;}
.y29_c00455{bottom:64.425022px;}
.y28_c00455{bottom:110.175022px;}
.y27_c00455{bottom:125.325022px;}
.y26_c00455{bottom:140.775022px;}
.y25_c00455{bottom:155.925022px;}
.y24_c00455{bottom:171.375022px;}
.y23_c00455{bottom:186.525022px;}
.y22_c00455{bottom:201.975022px;}
.y21_c00455{bottom:217.425022px;}
.y20_c00455{bottom:232.950022px;}
.y1f_c00455{bottom:248.025022px;}
.y1e_c00455{bottom:263.475022px;}
.y1d_c00455{bottom:278.625022px;}
.y1c_c00455{bottom:293.775022px;}
.y1b_c00455{bottom:308.925022px;}
.y1a_c00455{bottom:324.375022px;}
.y19_c00455{bottom:339.525022px;}
.y18_c00455{bottom:408.600022px;}
.y17_c00455{bottom:428.025022px;}
.y16_c00455{bottom:447.150022px;}
.y15_c00455{bottom:466.950022px;}
.y14_c00455{bottom:486.375022px;}
.y13_c00455{bottom:505.800022px;}
.y12_c00455{bottom:525.225022px;}
.y11_c00455{bottom:544.725022px;}
.y10_c00455{bottom:564.150022px;}
.yf_c00455{bottom:583.575022px;}
.ye_c00455{bottom:603.000022px;}
.yd_c00455{bottom:622.425022px;}
.yc_c00455{bottom:641.550022px;}
.yb_c00455{bottom:661.350022px;}
.ya_c00455{bottom:680.400022px;}
.y9_c00455{bottom:708.825022px;}
.y8_c00455{bottom:728.325022px;}
.y7_c00455{bottom:747.750022px;}
.y6_c00455{bottom:767.175022px;}
.y5_c00455{bottom:786.225022px;}
.y4_c00455{bottom:805.725022px;}
.y3_c00455{bottom:825.150022px;}
.y2_c00455{bottom:844.575022px;}
.y1_c00455{bottom:886.875022px;}
.h2_c00455{height:50.028809px;}
.h5_c00455{height:50.053711px;}
.h3_c00455{height:58.857422px;}
.h4_c00455{height:58.886719px;}
.h1_c00455{height:957.750000px;}
.h0_c00455{height:957.975000px;}
.w0_c00455{width:641.850030px;}
.w1_c00455{width:642.000000px;}
.x0_c00455{left:0.000000px;}
.x4_c00455{left:80.625000px;}
.x5_c00455{left:81.750000px;}
.x6_c00455{left:87.450000px;}
.x2_c00455{left:96.150000px;}
.x3_c00455{left:97.200000px;}
.x7_c00455{left:120.975000px;}
.x1_c00455{left:200.850000px;}
.x8_c00455{left:531.000000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls0_c00455{letter-spacing:0.000000pt;}
.ws0_c00455{word-spacing:-13.333333pt;}
.ws1_c00455{word-spacing:0.000000pt;}
._c_c00455{margin-left:-13.618339pt;}
._15_c00455{margin-left:-11.024643pt;}
._d_c00455{margin-left:-10.133333pt;}
._1a_c00455{margin-left:-7.013045pt;}
._e_c00455{margin-left:-5.887928pt;}
._b_c00455{margin-left:-4.552235pt;}
._2_c00455{margin-left:-3.264045pt;}
._6_c00455{margin-left:-2.354781pt;}
._3_c00455{margin-left:-1.461365pt;}
._0_c00455{width:1.378677pt;}
._4_c00455{width:2.376147pt;}
._5_c00455{width:3.906584pt;}
._1_c00455{width:4.810637pt;}
._7_c00455{width:6.111968pt;}
._17_c00455{width:7.042245pt;}
._a_c00455{width:8.141379pt;}
._8_c00455{width:9.282837pt;}
._f_c00455{width:10.226373pt;}
._9_c00455{width:11.397595pt;}
._19_c00455{width:12.461685pt;}
._13_c00455{width:14.415171pt;}
._16_c00455{width:15.827240pt;}
._14_c00455{width:16.733165pt;}
._11_c00455{width:17.928115pt;}
._10_c00455{width:19.194488pt;}
._12_c00455{width:21.765059pt;}
._18_c00455{width:23.544216pt;}
.fs0_c00455{font-size:45.333333pt;}
.fs1_c00455{font-size:53.333333pt;}
.y0_c00455{bottom:0.000000pt;}
.y29_c00455{bottom:57.266686pt;}
.y28_c00455{bottom:97.933353pt;}
.y27_c00455{bottom:111.400020pt;}
.y26_c00455{bottom:125.133353pt;}
.y25_c00455{bottom:138.600020pt;}
.y24_c00455{bottom:152.333353pt;}
.y23_c00455{bottom:165.800020pt;}
.y22_c00455{bottom:179.533353pt;}
.y21_c00455{bottom:193.266686pt;}
.y20_c00455{bottom:207.066686pt;}
.y1f_c00455{bottom:220.466686pt;}
.y1e_c00455{bottom:234.200020pt;}
.y1d_c00455{bottom:247.666686pt;}
.y1c_c00455{bottom:261.133353pt;}
.y1b_c00455{bottom:274.600020pt;}
.y1a_c00455{bottom:288.333353pt;}
.y19_c00455{bottom:301.800020pt;}
.y18_c00455{bottom:363.200020pt;}
.y17_c00455{bottom:380.466686pt;}
.y16_c00455{bottom:397.466686pt;}
.y15_c00455{bottom:415.066686pt;}
.y14_c00455{bottom:432.333353pt;}
.y13_c00455{bottom:449.600020pt;}
.y12_c00455{bottom:466.866686pt;}
.y11_c00455{bottom:484.200020pt;}
.y10_c00455{bottom:501.466686pt;}
.yf_c00455{bottom:518.733353pt;}
.ye_c00455{bottom:536.000020pt;}
.yd_c00455{bottom:553.266686pt;}
.yc_c00455{bottom:570.266686pt;}
.yb_c00455{bottom:587.866686pt;}
.ya_c00455{bottom:604.800020pt;}
.y9_c00455{bottom:630.066686pt;}
.y8_c00455{bottom:647.400020pt;}
.y7_c00455{bottom:664.666686pt;}
.y6_c00455{bottom:681.933353pt;}
.y5_c00455{bottom:698.866686pt;}
.y4_c00455{bottom:716.200020pt;}
.y3_c00455{bottom:733.466686pt;}
.y2_c00455{bottom:750.733353pt;}
.y1_c00455{bottom:788.333353pt;}
.h2_c00455{height:44.470052pt;}
.h5_c00455{height:44.492188pt;}
.h3_c00455{height:52.317708pt;}
.h4_c00455{height:52.343750pt;}
.h1_c00455{height:851.333333pt;}
.h0_c00455{height:851.533333pt;}
.w0_c00455{width:570.533360pt;}
.w1_c00455{width:570.666667pt;}
.x0_c00455{left:0.000000pt;}
.x4_c00455{left:71.666667pt;}
.x5_c00455{left:72.666667pt;}
.x6_c00455{left:77.733333pt;}
.x2_c00455{left:85.466667pt;}
.x3_c00455{left:86.400000pt;}
.x7_c00455{left:107.533333pt;}
.x1_c00455{left:178.533333pt;}
.x8_c00455{left:472.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b8f27b39058f8d5456f1d379.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00456;src:url('chunks/assets/font_d94a1c16d4e46a6673c58707.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00456{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00456{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_c00456{vertical-align:0.000000px;}
.ls0_c00456{letter-spacing:0.000000px;}
.sc__c00456{text-shadow:none;}
.sc0_c00456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00456{-webkit-text-stroke:0px transparent;}
.sc0_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00456{word-spacing:-15.000000px;}
.ws1_c00456{word-spacing:-12.750000px;}
.ws2_c00456{word-spacing:0.000000px;}
._11_c00456{margin-left:-31.167201px;}
._12_c00456{margin-left:-30.000000px;}
._f_c00456{margin-left:-16.797063px;}
._13_c00456{margin-left:-15.000000px;}
._16_c00456{margin-left:-13.448781px;}
._14_c00456{margin-left:-12.000000px;}
._15_c00456{margin-left:-10.713063px;}
._10_c00456{margin-left:-9.600000px;}
._1b_c00456{margin-left:-7.800000px;}
._7_c00456{margin-left:-5.739021px;}
._4_c00456{margin-left:-4.611057px;}
._1_c00456{margin-left:-3.300006px;}
._0_c00456{margin-left:-1.760979px;}
._2_c00456{width:1.839009px;}
._3_c00456{width:3.320967px;}
._5_c00456{width:4.713057px;}
._6_c00456{width:6.230865px;}
._c_c00456{width:7.508925px;}
._9_c00456{width:8.940000px;}
._d_c00456{width:10.287141px;}
._b_c00456{width:12.461898px;}
._8_c00456{width:13.580979px;}
._a_c00456{width:16.842018px;}
._e_c00456{width:18.024048px;}
._17_c00456{width:22.580991px;}
._1c_c00456{width:24.300000px;}
._18_c00456{width:25.748775px;}
._19_c00456{width:27.929910px;}
._1a_c00456{width:29.300991px;}
.fc1_c00456{color:transparent;}
.fc0_c00456{color:rgb(35,31,32);}
.fs0_c00456{font-size:51.000000px;}
.fs1_c00456{font-size:60.000000px;}
.y0_c00456{bottom:0.000000px;}
.y24_c00456{bottom:64.425022px;}
.y23_c00456{bottom:110.175022px;}
.y22_c00456{bottom:125.625022px;}
.y21_c00456{bottom:140.775022px;}
.y20_c00456{bottom:155.550022px;}
.y1f_c00456{bottom:171.375022px;}
.y1e_c00456{bottom:186.525022px;}
.y1d_c00456{bottom:246.600022px;}
.y1c_c00456{bottom:266.025022px;}
.y1b_c00456{bottom:285.150022px;}
.y1a_c00456{bottom:304.950022px;}
.y19_c00456{bottom:323.625022px;}
.y18_c00456{bottom:343.125022px;}
.y17_c00456{bottom:362.550022px;}
.y16_c00456{bottom:400.725022px;}
.y15_c00456{bottom:457.575022px;}
.y14_c00456{bottom:477.000022px;}
.y13_c00456{bottom:496.800022px;}
.y12_c00456{bottom:515.925022px;}
.y11_c00456{bottom:535.725022px;}
.y10_c00456{bottom:555.150022px;}
.yf_c00456{bottom:574.575022px;}
.ye_c00456{bottom:594.000022px;}
.yd_c00456{bottom:613.425022px;}
.yc_c00456{bottom:641.550022px;}
.yb_c00456{bottom:660.975022px;}
.ya_c00456{bottom:680.400022px;}
.y9_c00456{bottom:699.825022px;}
.y8_c00456{bottom:719.325022px;}
.y7_c00456{bottom:738.750022px;}
.y6_c00456{bottom:758.175022px;}
.y5_c00456{bottom:777.225022px;}
.y4_c00456{bottom:796.725022px;}
.y3_c00456{bottom:825.525022px;}
.y2_c00456{bottom:844.950022px;}
.y1_c00456{bottom:886.875022px;}
.h2_c00456{height:50.028809px;}
.h5_c00456{height:50.053711px;}
.h4_c00456{height:58.857422px;}
.h3_c00456{height:58.886719px;}
.h1_c00456{height:957.750000px;}
.h0_c00456{height:957.975000px;}
.w1_c00456{width:643.500000px;}
.w0_c00456{width:643.650000px;}
.x0_c00456{left:0.000000px;}
.x1_c00456{left:90.750000px;}
.x4_c00456{left:91.800000px;}
.x5_c00456{left:97.200000px;}
.x2_c00456{left:106.200000px;}
.x3_c00456{left:107.250000px;}
.x6_c00456{left:131.025000px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls0_c00456{letter-spacing:0.000000pt;}
.ws0_c00456{word-spacing:-13.333333pt;}
.ws1_c00456{word-spacing:-11.333333pt;}
.ws2_c00456{word-spacing:0.000000pt;}
._11_c00456{margin-left:-27.704179pt;}
._12_c00456{margin-left:-26.666667pt;}
._f_c00456{margin-left:-14.930723pt;}
._13_c00456{margin-left:-13.333333pt;}
._16_c00456{margin-left:-11.954472pt;}
._14_c00456{margin-left:-10.666667pt;}
._15_c00456{margin-left:-9.522723pt;}
._10_c00456{margin-left:-8.533333pt;}
._1b_c00456{margin-left:-6.933333pt;}
._7_c00456{margin-left:-5.101352pt;}
._4_c00456{margin-left:-4.098717pt;}
._1_c00456{margin-left:-2.933339pt;}
._0_c00456{margin-left:-1.565315pt;}
._2_c00456{width:1.634675pt;}
._3_c00456{width:2.951971pt;}
._5_c00456{width:4.189384pt;}
._6_c00456{width:5.538547pt;}
._c_c00456{width:6.674600pt;}
._9_c00456{width:7.946667pt;}
._d_c00456{width:9.144125pt;}
._b_c00456{width:11.077243pt;}
._8_c00456{width:12.071981pt;}
._a_c00456{width:14.970683pt;}
._e_c00456{width:16.021376pt;}
._17_c00456{width:20.071992pt;}
._1c_c00456{width:21.600000pt;}
._18_c00456{width:22.887800pt;}
._19_c00456{width:24.826587pt;}
._1a_c00456{width:26.045325pt;}
.fs0_c00456{font-size:45.333333pt;}
.fs1_c00456{font-size:53.333333pt;}
.y0_c00456{bottom:0.000000pt;}
.y24_c00456{bottom:57.266686pt;}
.y23_c00456{bottom:97.933353pt;}
.y22_c00456{bottom:111.666686pt;}
.y21_c00456{bottom:125.133353pt;}
.y20_c00456{bottom:138.266686pt;}
.y1f_c00456{bottom:152.333353pt;}
.y1e_c00456{bottom:165.800020pt;}
.y1d_c00456{bottom:219.200020pt;}
.y1c_c00456{bottom:236.466686pt;}
.y1b_c00456{bottom:253.466686pt;}
.y1a_c00456{bottom:271.066686pt;}
.y19_c00456{bottom:287.666686pt;}
.y18_c00456{bottom:305.000020pt;}
.y17_c00456{bottom:322.266686pt;}
.y16_c00456{bottom:356.200020pt;}
.y15_c00456{bottom:406.733353pt;}
.y14_c00456{bottom:424.000020pt;}
.y13_c00456{bottom:441.600020pt;}
.y12_c00456{bottom:458.600020pt;}
.y11_c00456{bottom:476.200020pt;}
.y10_c00456{bottom:493.466686pt;}
.yf_c00456{bottom:510.733353pt;}
.ye_c00456{bottom:528.000020pt;}
.yd_c00456{bottom:545.266686pt;}
.yc_c00456{bottom:570.266686pt;}
.yb_c00456{bottom:587.533353pt;}
.ya_c00456{bottom:604.800020pt;}
.y9_c00456{bottom:622.066686pt;}
.y8_c00456{bottom:639.400020pt;}
.y7_c00456{bottom:656.666686pt;}
.y6_c00456{bottom:673.933353pt;}
.y5_c00456{bottom:690.866686pt;}
.y4_c00456{bottom:708.200020pt;}
.y3_c00456{bottom:733.800020pt;}
.y2_c00456{bottom:751.066686pt;}
.y1_c00456{bottom:788.333353pt;}
.h2_c00456{height:44.470052pt;}
.h5_c00456{height:44.492188pt;}
.h4_c00456{height:52.317708pt;}
.h3_c00456{height:52.343750pt;}
.h1_c00456{height:851.333333pt;}
.h0_c00456{height:851.533333pt;}
.w1_c00456{width:572.000000pt;}
.w0_c00456{width:572.133333pt;}
.x0_c00456{left:0.000000pt;}
.x1_c00456{left:80.666667pt;}
.x4_c00456{left:81.600000pt;}
.x5_c00456{left:86.400000pt;}
.x2_c00456{left:94.400000pt;}
.x3_c00456{left:95.333333pt;}
.x6_c00456{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2443af0c4ddf0b105abefc28.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00457;src:url('chunks/assets/font_22e18d0744358af49480b578.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00457{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00457{letter-spacing:0.000000px;}
.sc__c00457{text-shadow:none;}
.sc0_c00457{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00457{-webkit-text-stroke:0px transparent;}
.sc0_c00457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00457{word-spacing:-15.000000px;}
.ws1_c00457{word-spacing:0.000000px;}
._10_c00457{margin-left:-15.540000px;}
._2_c00457{margin-left:-12.240000px;}
._1_c00457{margin-left:-11.160000px;}
._b_c00457{margin-left:-10.140000px;}
._9_c00457{margin-left:-7.800000px;}
._11_c00457{margin-left:-6.060000px;}
._c_c00457{margin-left:-4.800000px;}
._7_c00457{margin-left:-3.720000px;}
._e_c00457{margin-left:-2.460000px;}
._3_c00457{margin-left:-1.440000px;}
._0_c00457{width:1.080000px;}
._5_c00457{width:2.880000px;}
._13_c00457{width:4.260000px;}
._f_c00457{width:5.400000px;}
._a_c00457{width:6.900000px;}
._12_c00457{width:7.980000px;}
._d_c00457{width:9.300000px;}
._6_c00457{width:10.500000px;}
._4_c00457{width:11.700000px;}
._8_c00457{width:13.020000px;}
._16_c00457{width:16.260000px;}
._17_c00457{width:17.700000px;}
._18_c00457{width:18.720000px;}
._1a_c00457{width:20.460000px;}
._19_c00457{width:21.540000px;}
._15_c00457{width:23.760000px;}
._14_c00457{width:24.780000px;}
._1b_c00457{width:27.929991px;}
.fc1_c00457{color:transparent;}
.fc0_c00457{color:rgb(35,31,32);}
.fs1_c00457{font-size:51.000000px;}
.fs0_c00457{font-size:60.000000px;}
.y0_c00457{bottom:0.000000px;}
.y26_c00457{bottom:64.425022px;}
.y25_c00457{bottom:110.175022px;}
.y24_c00457{bottom:125.625022px;}
.y23_c00457{bottom:140.775022px;}
.y22_c00457{bottom:156.225022px;}
.y21_c00457{bottom:171.375022px;}
.y20_c00457{bottom:186.825022px;}
.y1f_c00457{bottom:202.350022px;}
.y1e_c00457{bottom:217.125022px;}
.y1d_c00457{bottom:258.525022px;}
.y1c_c00457{bottom:277.950022px;}
.y1b_c00457{bottom:297.000022px;}
.y1a_c00457{bottom:316.800022px;}
.y19_c00457{bottom:336.225022px;}
.y18_c00457{bottom:355.350022px;}
.y17_c00457{bottom:374.775022px;}
.y16_c00457{bottom:394.575022px;}
.y15_c00457{bottom:414.000022px;}
.y14_c00457{bottom:433.125022px;}
.y13_c00457{bottom:452.925022px;}
.y12_c00457{bottom:493.575022px;}
.y10_c00457{bottom:553.350022px;}
.yf_c00457{bottom:572.775022px;}
.ye_c00457{bottom:592.200022px;}
.yd_c00457{bottom:611.625022px;}
.yc_c00457{bottom:631.500022px;}
.yb_c00457{bottom:650.925022px;}
.ya_c00457{bottom:670.350022px;}
.y9_c00457{bottom:689.625022px;}
.y8_c00457{bottom:709.125022px;}
.y7_c00457{bottom:728.625022px;}
.y6_c00457{bottom:748.125022px;}
.y5_c00457{bottom:767.550022px;}
.y4_c00457{bottom:786.600022px;}
.y3_c00457{bottom:806.025022px;}
.y2_c00457{bottom:825.150022px;}
.y1_c00457{bottom:844.950022px;}
.y11_c00457{bottom:886.875022px;}
.h3_c00457{height:50.028809px;}
.h4_c00457{height:50.053711px;}
.h2_c00457{height:58.886719px;}
.h1_c00457{height:957.750000px;}
.h0_c00457{height:957.975000px;}
.w0_c00457{width:641.850030px;}
.w1_c00457{width:642.000000px;}
.x0_c00457{left:0.000000px;}
.x2_c00457{left:80.250000px;}
.x1_c00457{left:81.375000px;}
.x4_c00457{left:87.450000px;}
.x5_c00457{left:120.975000px;}
.x3_c00457{left:200.850000px;}
.x6_c00457{left:531.000000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls0_c00457{letter-spacing:0.000000pt;}
.ws0_c00457{word-spacing:-13.333333pt;}
.ws1_c00457{word-spacing:0.000000pt;}
._10_c00457{margin-left:-13.813333pt;}
._2_c00457{margin-left:-10.880000pt;}
._1_c00457{margin-left:-9.920000pt;}
._b_c00457{margin-left:-9.013333pt;}
._9_c00457{margin-left:-6.933333pt;}
._11_c00457{margin-left:-5.386667pt;}
._c_c00457{margin-left:-4.266667pt;}
._7_c00457{margin-left:-3.306667pt;}
._e_c00457{margin-left:-2.186667pt;}
._3_c00457{margin-left:-1.280000pt;}
._0_c00457{width:0.960000pt;}
._5_c00457{width:2.560000pt;}
._13_c00457{width:3.786667pt;}
._f_c00457{width:4.800000pt;}
._a_c00457{width:6.133333pt;}
._12_c00457{width:7.093333pt;}
._d_c00457{width:8.266667pt;}
._6_c00457{width:9.333333pt;}
._4_c00457{width:10.400000pt;}
._8_c00457{width:11.573333pt;}
._16_c00457{width:14.453333pt;}
._17_c00457{width:15.733333pt;}
._18_c00457{width:16.640000pt;}
._1a_c00457{width:18.186667pt;}
._19_c00457{width:19.146667pt;}
._15_c00457{width:21.120000pt;}
._14_c00457{width:22.026667pt;}
._1b_c00457{width:24.826659pt;}
.fs1_c00457{font-size:45.333333pt;}
.fs0_c00457{font-size:53.333333pt;}
.y0_c00457{bottom:0.000000pt;}
.y26_c00457{bottom:57.266686pt;}
.y25_c00457{bottom:97.933353pt;}
.y24_c00457{bottom:111.666686pt;}
.y23_c00457{bottom:125.133353pt;}
.y22_c00457{bottom:138.866686pt;}
.y21_c00457{bottom:152.333353pt;}
.y20_c00457{bottom:166.066686pt;}
.y1f_c00457{bottom:179.866686pt;}
.y1e_c00457{bottom:193.000020pt;}
.y1d_c00457{bottom:229.800020pt;}
.y1c_c00457{bottom:247.066686pt;}
.y1b_c00457{bottom:264.000020pt;}
.y1a_c00457{bottom:281.600020pt;}
.y19_c00457{bottom:298.866686pt;}
.y18_c00457{bottom:315.866686pt;}
.y17_c00457{bottom:333.133353pt;}
.y16_c00457{bottom:350.733353pt;}
.y15_c00457{bottom:368.000020pt;}
.y14_c00457{bottom:385.000020pt;}
.y13_c00457{bottom:402.600020pt;}
.y12_c00457{bottom:438.733353pt;}
.y10_c00457{bottom:491.866686pt;}
.yf_c00457{bottom:509.133353pt;}
.ye_c00457{bottom:526.400020pt;}
.yd_c00457{bottom:543.666686pt;}
.yc_c00457{bottom:561.333353pt;}
.yb_c00457{bottom:578.600020pt;}
.ya_c00457{bottom:595.866686pt;}
.y9_c00457{bottom:613.000020pt;}
.y8_c00457{bottom:630.333353pt;}
.y7_c00457{bottom:647.666686pt;}
.y6_c00457{bottom:665.000020pt;}
.y5_c00457{bottom:682.266686pt;}
.y4_c00457{bottom:699.200020pt;}
.y3_c00457{bottom:716.466686pt;}
.y2_c00457{bottom:733.466686pt;}
.y1_c00457{bottom:751.066686pt;}
.y11_c00457{bottom:788.333353pt;}
.h3_c00457{height:44.470052pt;}
.h4_c00457{height:44.492188pt;}
.h2_c00457{height:52.343750pt;}
.h1_c00457{height:851.333333pt;}
.h0_c00457{height:851.533333pt;}
.w0_c00457{width:570.533360pt;}
.w1_c00457{width:570.666667pt;}
.x0_c00457{left:0.000000pt;}
.x2_c00457{left:71.333333pt;}
.x1_c00457{left:72.333333pt;}
.x4_c00457{left:77.733333pt;}
.x5_c00457{left:107.533333pt;}
.x3_c00457{left:178.533333pt;}
.x6_c00457{left:472.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b5fb73ac706d4a632ed2274c.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00458;src:url('chunks/assets/font_a05296bcc4c7b35a6508a7ad.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00458{letter-spacing:0.000000px;}
.sc__c00458{text-shadow:none;}
.sc0_c00458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00458{-webkit-text-stroke:0px transparent;}
.sc0_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00458{word-spacing:-15.000000px;}
.ws0_c00458{word-spacing:-12.750000px;}
.ws2_c00458{word-spacing:0.000000px;}
._a_c00458{margin-left:-11.400000px;}
._9_c00458{margin-left:-10.200000px;}
._18_c00458{margin-left:-8.729970px;}
._10_c00458{margin-left:-7.320000px;}
._13_c00458{margin-left:-5.640000px;}
._17_c00458{margin-left:-4.632033px;}
._11_c00458{margin-left:-3.600000px;}
._12_c00458{margin-left:-2.580000px;}
._3_c00458{margin-left:-1.320000px;}
._5_c00458{width:1.200000px;}
._0_c00458{width:2.400000px;}
._7_c00458{width:3.660000px;}
._b_c00458{width:5.100000px;}
._8_c00458{width:6.360000px;}
._f_c00458{width:7.500000px;}
._1_c00458{width:8.640000px;}
._2_c00458{width:10.020000px;}
._d_c00458{width:11.220000px;}
._6_c00458{width:12.480000px;}
._4_c00458{width:13.800000px;}
._e_c00458{width:16.020000px;}
._c_c00458{width:17.340000px;}
._14_c00458{width:18.960000px;}
._15_c00458{width:20.940000px;}
._16_c00458{width:24.630003px;}
._19_c00458{width:26.010054px;}
.fc1_c00458{color:transparent;}
.fc0_c00458{color:rgb(35,31,32);}
.fs1_c00458{font-size:51.000000px;}
.fs0_c00458{font-size:60.000000px;}
.y0_c00458{bottom:0.000000px;}
.y2a_c00458{bottom:64.425022px;}
.y29_c00458{bottom:110.175022px;}
.y28_c00458{bottom:125.325022px;}
.y27_c00458{bottom:140.775022px;}
.y26_c00458{bottom:156.225022px;}
.y25_c00458{bottom:171.375022px;}
.y24_c00458{bottom:186.525022px;}
.y23_c00458{bottom:202.350022px;}
.y22_c00458{bottom:217.425022px;}
.y21_c00458{bottom:232.575022px;}
.y20_c00458{bottom:248.025022px;}
.y1f_c00458{bottom:263.175022px;}
.y1e_c00458{bottom:278.325022px;}
.y1d_c00458{bottom:293.775022px;}
.y1c_c00458{bottom:309.225022px;}
.y1b_c00458{bottom:324.300022px;}
.y1a_c00458{bottom:339.825022px;}
.y19_c00458{bottom:355.350022px;}
.y18_c00458{bottom:370.125022px;}
.y17_c00458{bottom:385.950022px;}
.y15_c00458{bottom:456.525022px;}
.y14_c00458{bottom:475.575022px;}
.y13_c00458{bottom:495.375022px;}
.y12_c00458{bottom:514.425022px;}
.y11_c00458{bottom:533.925022px;}
.y10_c00458{bottom:553.725022px;}
.yf_c00458{bottom:572.775022px;}
.ye_c00458{bottom:592.200022px;}
.yd_c00458{bottom:611.625022px;}
.yc_c00458{bottom:631.125022px;}
.yb_c00458{bottom:650.925022px;}
.ya_c00458{bottom:670.350022px;}
.y9_c00458{bottom:689.775022px;}
.y8_c00458{bottom:708.825022px;}
.y7_c00458{bottom:728.325022px;}
.y6_c00458{bottom:747.750022px;}
.y5_c00458{bottom:767.550022px;}
.y4_c00458{bottom:786.225022px;}
.y3_c00458{bottom:806.025022px;}
.y2_c00458{bottom:825.525022px;}
.y1_c00458{bottom:844.575022px;}
.y16_c00458{bottom:886.875022px;}
.h3_c00458{height:50.028809px;}
.h4_c00458{height:50.053711px;}
.h2_c00458{height:58.886719px;}
.h1_c00458{height:957.750000px;}
.h0_c00458{height:957.975000px;}
.w1_c00458{width:643.500000px;}
.w0_c00458{width:643.650000px;}
.x0_c00458{left:0.000000px;}
.x1_c00458{left:91.425000px;}
.x3_c00458{left:97.200000px;}
.x2_c00458{left:107.250000px;}
.x4_c00458{left:131.400000px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls0_c00458{letter-spacing:0.000000pt;}
.ws1_c00458{word-spacing:-13.333333pt;}
.ws0_c00458{word-spacing:-11.333333pt;}
.ws2_c00458{word-spacing:0.000000pt;}
._a_c00458{margin-left:-10.133333pt;}
._9_c00458{margin-left:-9.066667pt;}
._18_c00458{margin-left:-7.759973pt;}
._10_c00458{margin-left:-6.506667pt;}
._13_c00458{margin-left:-5.013333pt;}
._17_c00458{margin-left:-4.117363pt;}
._11_c00458{margin-left:-3.200000pt;}
._12_c00458{margin-left:-2.293333pt;}
._3_c00458{margin-left:-1.173333pt;}
._5_c00458{width:1.066667pt;}
._0_c00458{width:2.133333pt;}
._7_c00458{width:3.253333pt;}
._b_c00458{width:4.533333pt;}
._8_c00458{width:5.653333pt;}
._f_c00458{width:6.666667pt;}
._1_c00458{width:7.680000pt;}
._2_c00458{width:8.906667pt;}
._d_c00458{width:9.973333pt;}
._6_c00458{width:11.093333pt;}
._4_c00458{width:12.266667pt;}
._e_c00458{width:14.240000pt;}
._c_c00458{width:15.413333pt;}
._14_c00458{width:16.853333pt;}
._15_c00458{width:18.613333pt;}
._16_c00458{width:21.893336pt;}
._19_c00458{width:23.120048pt;}
.fs1_c00458{font-size:45.333333pt;}
.fs0_c00458{font-size:53.333333pt;}
.y0_c00458{bottom:0.000000pt;}
.y2a_c00458{bottom:57.266686pt;}
.y29_c00458{bottom:97.933353pt;}
.y28_c00458{bottom:111.400020pt;}
.y27_c00458{bottom:125.133353pt;}
.y26_c00458{bottom:138.866686pt;}
.y25_c00458{bottom:152.333353pt;}
.y24_c00458{bottom:165.800020pt;}
.y23_c00458{bottom:179.866686pt;}
.y22_c00458{bottom:193.266686pt;}
.y21_c00458{bottom:206.733353pt;}
.y20_c00458{bottom:220.466686pt;}
.y1f_c00458{bottom:233.933353pt;}
.y1e_c00458{bottom:247.400020pt;}
.y1d_c00458{bottom:261.133353pt;}
.y1c_c00458{bottom:274.866686pt;}
.y1b_c00458{bottom:288.266686pt;}
.y1a_c00458{bottom:302.066686pt;}
.y19_c00458{bottom:315.866686pt;}
.y18_c00458{bottom:329.000020pt;}
.y17_c00458{bottom:343.066686pt;}
.y15_c00458{bottom:405.800020pt;}
.y14_c00458{bottom:422.733353pt;}
.y13_c00458{bottom:440.333353pt;}
.y12_c00458{bottom:457.266686pt;}
.y11_c00458{bottom:474.600020pt;}
.y10_c00458{bottom:492.200020pt;}
.yf_c00458{bottom:509.133353pt;}
.ye_c00458{bottom:526.400020pt;}
.yd_c00458{bottom:543.666686pt;}
.yc_c00458{bottom:561.000020pt;}
.yb_c00458{bottom:578.600020pt;}
.ya_c00458{bottom:595.866686pt;}
.y9_c00458{bottom:613.133353pt;}
.y8_c00458{bottom:630.066686pt;}
.y7_c00458{bottom:647.400020pt;}
.y6_c00458{bottom:664.666686pt;}
.y5_c00458{bottom:682.266686pt;}
.y4_c00458{bottom:698.866686pt;}
.y3_c00458{bottom:716.466686pt;}
.y2_c00458{bottom:733.800020pt;}
.y1_c00458{bottom:750.733353pt;}
.y16_c00458{bottom:788.333353pt;}
.h3_c00458{height:44.470052pt;}
.h4_c00458{height:44.492188pt;}
.h2_c00458{height:52.343750pt;}
.h1_c00458{height:851.333333pt;}
.h0_c00458{height:851.533333pt;}
.w1_c00458{width:572.000000pt;}
.w0_c00458{width:572.133333pt;}
.x0_c00458{left:0.000000pt;}
.x1_c00458{left:81.266667pt;}
.x3_c00458{left:86.400000pt;}
.x2_c00458{left:95.333333pt;}
.x4_c00458{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_339fc729c5033b6b6d4f9493.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00459;src:url('chunks/assets/font_9d8392b638b3a1aa6ac142ed.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.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;}
}
.ws0_c00459{word-spacing:-15.000000px;}
.ws1_c00459{word-spacing:-12.750000px;}
.ws2_c00459{word-spacing:0.000000px;}
._12_c00459{margin-left:-15.249075px;}
._e_c00459{margin-left:-14.051979px;}
._d_c00459{margin-left:-12.948021px;}
._9_c00459{margin-left:-11.825580px;}
._8_c00459{margin-left:-10.674420px;}
._19_c00459{margin-left:-8.091000px;}
._15_c00459{margin-left:-6.945105px;}
._16_c00459{margin-left:-5.867592px;}
._f_c00459{margin-left:-4.844826px;}
._2_c00459{margin-left:-3.672051px;}
._3_c00459{margin-left:-1.644036px;}
._0_c00459{width:1.551012px;}
._5_c00459{width:2.940000px;}
._b_c00459{width:4.235877px;}
._1_c00459{width:5.411967px;}
._a_c00459{width:7.283517px;}
._c_c00459{width:8.318943px;}
._4_c00459{width:9.900000px;}
._18_c00459{width:10.904916px;}
._6_c00459{width:12.006009px;}
._7_c00459{width:13.200000px;}
._11_c00459{width:16.808976px;}
._10_c00459{width:17.846964px;}
._17_c00459{width:18.872508px;}
._13_c00459{width:20.633928px;}
._14_c00459{width:22.133928px;}
.fc1_c00459{color:transparent;}
.fc0_c00459{color:rgb(35,31,32);}
.fs0_c00459{font-size:51.000000px;}
.fs1_c00459{font-size:60.000000px;}
.y0_c00459{bottom:0.000000px;}
.y2a_c00459{bottom:64.425022px;}
.y24_c00459{bottom:110.175022px;}
.y29_c00459{bottom:110.550022px;}
.y23_c00459{bottom:125.325022px;}
.y28_c00459{bottom:125.625022px;}
.y27_c00459{bottom:140.775022px;}
.y22_c00459{bottom:141.150022px;}
.y21_c00459{bottom:155.925022px;}
.y26_c00459{bottom:156.225022px;}
.y25_c00459{bottom:171.375022px;}
.y20_c00459{bottom:171.750022px;}
.y1f_c00459{bottom:186.525022px;}
.y1e_c00459{bottom:201.975022px;}
.y1d_c00459{bottom:241.950022px;}
.y1c_c00459{bottom:261.375022px;}
.y1b_c00459{bottom:280.800022px;}
.y1a_c00459{bottom:300.600022px;}
.y19_c00459{bottom:319.350022px;}
.y18_c00459{bottom:339.150022px;}
.y17_c00459{bottom:358.575022px;}
.y16_c00459{bottom:377.625022px;}
.y15_c00459{bottom:397.425022px;}
.y14_c00459{bottom:416.925022px;}
.y13_c00459{bottom:435.975022px;}
.y12_c00459{bottom:455.775022px;}
.y11_c00459{bottom:483.825022px;}
.y10_c00459{bottom:503.325022px;}
.yf_c00459{bottom:522.750022px;}
.ye_c00459{bottom:542.550022px;}
.yd_c00459{bottom:570.600022px;}
.yc_c00459{bottom:590.025022px;}
.yb_c00459{bottom:609.525022px;}
.ya_c00459{bottom:628.950022px;}
.y9_c00459{bottom:648.375022px;}
.y8_c00459{bottom:667.800022px;}
.y7_c00459{bottom:687.600022px;}
.y6_c00459{bottom:706.725022px;}
.y5_c00459{bottom:726.525022px;}
.y4_c00459{bottom:766.800022px;}
.y3_c00459{bottom:825.525022px;}
.y2_c00459{bottom:844.950022px;}
.y1_c00459{bottom:886.875022px;}
.h2_c00459{height:50.028809px;}
.h5_c00459{height:50.053711px;}
.h4_c00459{height:58.857422px;}
.h3_c00459{height:58.886719px;}
.h1_c00459{height:957.750000px;}
.h0_c00459{height:957.975000px;}
.w0_c00459{width:641.850030px;}
.w1_c00459{width:642.000000px;}
.x0_c00459{left:0.000000px;}
.x3_c00459{left:80.250000px;}
.x2_c00459{left:81.375000px;}
.x6_c00459{left:87.450000px;}
.x4_c00459{left:96.150000px;}
.x5_c00459{left:97.200000px;}
.x7_c00459{left:121.350000px;}
.x1_c00459{left:200.850000px;}
.x8_c00459{left:531.000000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls0_c00459{letter-spacing:0.000000pt;}
.ws0_c00459{word-spacing:-13.333333pt;}
.ws1_c00459{word-spacing:-11.333333pt;}
.ws2_c00459{word-spacing:0.000000pt;}
._12_c00459{margin-left:-13.554733pt;}
._e_c00459{margin-left:-12.490648pt;}
._d_c00459{margin-left:-11.509352pt;}
._9_c00459{margin-left:-10.511627pt;}
._8_c00459{margin-left:-9.488373pt;}
._19_c00459{margin-left:-7.192000pt;}
._15_c00459{margin-left:-6.173427pt;}
._16_c00459{margin-left:-5.215637pt;}
._f_c00459{margin-left:-4.306512pt;}
._2_c00459{margin-left:-3.264045pt;}
._3_c00459{margin-left:-1.461365pt;}
._0_c00459{width:1.378677pt;}
._5_c00459{width:2.613333pt;}
._b_c00459{width:3.765224pt;}
._1_c00459{width:4.810637pt;}
._a_c00459{width:6.474237pt;}
._c_c00459{width:7.394616pt;}
._4_c00459{width:8.800000pt;}
._18_c00459{width:9.693259pt;}
._6_c00459{width:10.672008pt;}
._7_c00459{width:11.733333pt;}
._11_c00459{width:14.941312pt;}
._10_c00459{width:15.863968pt;}
._17_c00459{width:16.775563pt;}
._13_c00459{width:18.341269pt;}
._14_c00459{width:19.674603pt;}
.fs0_c00459{font-size:45.333333pt;}
.fs1_c00459{font-size:53.333333pt;}
.y0_c00459{bottom:0.000000pt;}
.y2a_c00459{bottom:57.266686pt;}
.y24_c00459{bottom:97.933353pt;}
.y29_c00459{bottom:98.266686pt;}
.y23_c00459{bottom:111.400020pt;}
.y28_c00459{bottom:111.666686pt;}
.y27_c00459{bottom:125.133353pt;}
.y22_c00459{bottom:125.466686pt;}
.y21_c00459{bottom:138.600020pt;}
.y26_c00459{bottom:138.866686pt;}
.y25_c00459{bottom:152.333353pt;}
.y20_c00459{bottom:152.666686pt;}
.y1f_c00459{bottom:165.800020pt;}
.y1e_c00459{bottom:179.533353pt;}
.y1d_c00459{bottom:215.066686pt;}
.y1c_c00459{bottom:232.333353pt;}
.y1b_c00459{bottom:249.600020pt;}
.y1a_c00459{bottom:267.200020pt;}
.y19_c00459{bottom:283.866686pt;}
.y18_c00459{bottom:301.466686pt;}
.y17_c00459{bottom:318.733353pt;}
.y16_c00459{bottom:335.666686pt;}
.y15_c00459{bottom:353.266686pt;}
.y14_c00459{bottom:370.600020pt;}
.y13_c00459{bottom:387.533353pt;}
.y12_c00459{bottom:405.133353pt;}
.y11_c00459{bottom:430.066686pt;}
.y10_c00459{bottom:447.400020pt;}
.yf_c00459{bottom:464.666686pt;}
.ye_c00459{bottom:482.266686pt;}
.yd_c00459{bottom:507.200020pt;}
.yc_c00459{bottom:524.466686pt;}
.yb_c00459{bottom:541.800020pt;}
.ya_c00459{bottom:559.066686pt;}
.y9_c00459{bottom:576.333353pt;}
.y8_c00459{bottom:593.600020pt;}
.y7_c00459{bottom:611.200020pt;}
.y6_c00459{bottom:628.200020pt;}
.y5_c00459{bottom:645.800020pt;}
.y4_c00459{bottom:681.600020pt;}
.y3_c00459{bottom:733.800020pt;}
.y2_c00459{bottom:751.066686pt;}
.y1_c00459{bottom:788.333353pt;}
.h2_c00459{height:44.470052pt;}
.h5_c00459{height:44.492188pt;}
.h4_c00459{height:52.317708pt;}
.h3_c00459{height:52.343750pt;}
.h1_c00459{height:851.333333pt;}
.h0_c00459{height:851.533333pt;}
.w0_c00459{width:570.533360pt;}
.w1_c00459{width:570.666667pt;}
.x0_c00459{left:0.000000pt;}
.x3_c00459{left:71.333333pt;}
.x2_c00459{left:72.333333pt;}
.x6_c00459{left:77.733333pt;}
.x4_c00459{left:85.466667pt;}
.x5_c00459{left:86.400000pt;}
.x7_c00459{left:107.866667pt;}
.x1_c00459{left:178.533333pt;}
.x8_c00459{left:472.000000pt;}
}





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

.ir_c00460:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00460{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00460;src:url('chunks/assets/font_3843d1c40e06040ae37bd73f.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00460;src:url('chunks/assets/font_29410a1b180b5e3231a76d8b.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00460{letter-spacing:0.000000px;}
.sc__c00460{text-shadow:none;}
.sc0_c00460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00460{-webkit-text-stroke:0px transparent;}
.sc0_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00460{word-spacing:-15.000000px;}
.ws1_c00460{word-spacing:0.000000px;}
._10_c00460{margin-left:-14.643009px;}
._19_c00460{margin-left:-13.148967px;}
._12_c00460{margin-left:-12.120090px;}
._16_c00460{margin-left:-10.934907px;}
._17_c00460{margin-left:-9.680919px;}
._f_c00460{margin-left:-8.400000px;}
._18_c00460{margin-left:-6.905934px;}
._a_c00460{margin-left:-5.400000px;}
._1b_c00460{margin-left:-4.301934px;}
._1_c00460{margin-left:-3.300006px;}
._0_c00460{margin-left:-1.760979px;}
._2_c00460{width:1.839009px;}
._3_c00460{width:3.320967px;}
._15_c00460{width:4.470210px;}
._4_c00460{width:5.525946px;}
._1e_c00460{width:6.531066px;}
._5_c00460{width:7.719057px;}
._6_c00460{width:9.251856px;}
._14_c00460{width:10.301970px;}
._d_c00460{width:11.765946px;}
._13_c00460{width:12.780000px;}
._11_c00460{width:13.800000px;}
._1c_c00460{width:15.134976px;}
._e_c00460{width:16.280991px;}
._8_c00460{width:17.966937px;}
._9_c00460{width:19.200000px;}
._7_c00460{width:20.441982px;}
._c_c00460{width:21.561015px;}
._b_c00460{width:22.758018px;}
._1a_c00460{width:23.810982px;}
._1d_c00460{width:25.572012px;}
._1f_c00460{width:29.093919px;}
.fc1_c00460{color:transparent;}
.fc0_c00460{color:rgb(35,31,32);}
.fs0_c00460{font-size:51.000000px;}
.fs1_c00460{font-size:60.000000px;}
.y0_c00460{bottom:0.000000px;}
.y27_c00460{bottom:64.425022px;}
.y26_c00460{bottom:110.550022px;}
.y25_c00460{bottom:125.325022px;}
.y24_c00460{bottom:140.775022px;}
.y23_c00460{bottom:155.925022px;}
.y22_c00460{bottom:171.750022px;}
.y21_c00460{bottom:186.525022px;}
.y20_c00460{bottom:201.975022px;}
.y1f_c00460{bottom:217.425022px;}
.y1e_c00460{bottom:232.575022px;}
.y1d_c00460{bottom:248.025022px;}
.y1c_c00460{bottom:263.175022px;}
.y1b_c00460{bottom:278.325022px;}
.y1a_c00460{bottom:294.150022px;}
.y19_c00460{bottom:309.225022px;}
.y18_c00460{bottom:324.750022px;}
.y17_c00460{bottom:380.925022px;}
.y16_c00460{bottom:399.975022px;}
.y15_c00460{bottom:419.400022px;}
.y14_c00460{bottom:439.200022px;}
.y13_c00460{bottom:458.625022px;}
.y12_c00460{bottom:477.750022px;}
.y11_c00460{bottom:497.550022px;}
.y10_c00460{bottom:516.975022px;}
.yf_c00460{bottom:536.400022px;}
.ye_c00460{bottom:555.525022px;}
.yd_c00460{bottom:575.325022px;}
.yc_c00460{bottom:594.375022px;}
.yb_c00460{bottom:613.800022px;}
.ya_c00460{bottom:633.225022px;}
.y9_c00460{bottom:653.025022px;}
.y8_c00460{bottom:672.525022px;}
.y7_c00460{bottom:691.950022px;}
.y6_c00460{bottom:729.750022px;}
.y5_c00460{bottom:786.600022px;}
.y4_c00460{bottom:806.025022px;}
.y3_c00460{bottom:825.525022px;}
.y2_c00460{bottom:844.950022px;}
.y1_c00460{bottom:886.875022px;}
.h2_c00460{height:50.028809px;}
.h4_c00460{height:50.053711px;}
.h3_c00460{height:58.886719px;}
.h1_c00460{height:957.750000px;}
.h0_c00460{height:957.975000px;}
.w1_c00460{width:643.500000px;}
.w0_c00460{width:643.650000px;}
.x0_c00460{left:0.000000px;}
.x1_c00460{left:90.750000px;}
.x3_c00460{left:97.200000px;}
.x2_c00460{left:106.200000px;}
.x4_c00460{left:131.025000px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls0_c00460{letter-spacing:0.000000pt;}
.ws0_c00460{word-spacing:-13.333333pt;}
.ws1_c00460{word-spacing:0.000000pt;}
._10_c00460{margin-left:-13.016008pt;}
._19_c00460{margin-left:-11.687971pt;}
._12_c00460{margin-left:-10.773413pt;}
._16_c00460{margin-left:-9.719917pt;}
._17_c00460{margin-left:-8.605261pt;}
._f_c00460{margin-left:-7.466667pt;}
._18_c00460{margin-left:-6.138608pt;}
._a_c00460{margin-left:-4.800000pt;}
._1b_c00460{margin-left:-3.823941pt;}
._1_c00460{margin-left:-2.933339pt;}
._0_c00460{margin-left:-1.565315pt;}
._2_c00460{width:1.634675pt;}
._3_c00460{width:2.951971pt;}
._15_c00460{width:3.973520pt;}
._4_c00460{width:4.911952pt;}
._1e_c00460{width:5.805392pt;}
._5_c00460{width:6.861384pt;}
._6_c00460{width:8.223872pt;}
._14_c00460{width:9.157307pt;}
._d_c00460{width:10.458619pt;}
._13_c00460{width:11.360000pt;}
._11_c00460{width:12.266667pt;}
._1c_c00460{width:13.453312pt;}
._e_c00460{width:14.471992pt;}
._8_c00460{width:15.970611pt;}
._9_c00460{width:17.066667pt;}
._7_c00460{width:18.170651pt;}
._c_c00460{width:19.165347pt;}
._b_c00460{width:20.229349pt;}
._1a_c00460{width:21.165317pt;}
._1d_c00460{width:22.730677pt;}
._1f_c00460{width:25.861261pt;}
.fs0_c00460{font-size:45.333333pt;}
.fs1_c00460{font-size:53.333333pt;}
.y0_c00460{bottom:0.000000pt;}
.y27_c00460{bottom:57.266686pt;}
.y26_c00460{bottom:98.266686pt;}
.y25_c00460{bottom:111.400020pt;}
.y24_c00460{bottom:125.133353pt;}
.y23_c00460{bottom:138.600020pt;}
.y22_c00460{bottom:152.666686pt;}
.y21_c00460{bottom:165.800020pt;}
.y20_c00460{bottom:179.533353pt;}
.y1f_c00460{bottom:193.266686pt;}
.y1e_c00460{bottom:206.733353pt;}
.y1d_c00460{bottom:220.466686pt;}
.y1c_c00460{bottom:233.933353pt;}
.y1b_c00460{bottom:247.400020pt;}
.y1a_c00460{bottom:261.466686pt;}
.y19_c00460{bottom:274.866686pt;}
.y18_c00460{bottom:288.666686pt;}
.y17_c00460{bottom:338.600020pt;}
.y16_c00460{bottom:355.533353pt;}
.y15_c00460{bottom:372.800020pt;}
.y14_c00460{bottom:390.400020pt;}
.y13_c00460{bottom:407.666686pt;}
.y12_c00460{bottom:424.666686pt;}
.y11_c00460{bottom:442.266686pt;}
.y10_c00460{bottom:459.533353pt;}
.yf_c00460{bottom:476.800020pt;}
.ye_c00460{bottom:493.800020pt;}
.yd_c00460{bottom:511.400020pt;}
.yc_c00460{bottom:528.333353pt;}
.yb_c00460{bottom:545.600020pt;}
.ya_c00460{bottom:562.866686pt;}
.y9_c00460{bottom:580.466686pt;}
.y8_c00460{bottom:597.800020pt;}
.y7_c00460{bottom:615.066686pt;}
.y6_c00460{bottom:648.666686pt;}
.y5_c00460{bottom:699.200020pt;}
.y4_c00460{bottom:716.466686pt;}
.y3_c00460{bottom:733.800020pt;}
.y2_c00460{bottom:751.066686pt;}
.y1_c00460{bottom:788.333353pt;}
.h2_c00460{height:44.470052pt;}
.h4_c00460{height:44.492188pt;}
.h3_c00460{height:52.343750pt;}
.h1_c00460{height:851.333333pt;}
.h0_c00460{height:851.533333pt;}
.w1_c00460{width:572.000000pt;}
.w0_c00460{width:572.133333pt;}
.x0_c00460{left:0.000000pt;}
.x1_c00460{left:80.666667pt;}
.x3_c00460{left:86.400000pt;}
.x2_c00460{left:94.400000pt;}
.x4_c00460{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_53e6a9eb2940e42addca99e2.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00461;src:url('chunks/assets/font_22e18d0744358af49480b578.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00461{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00461{letter-spacing:0.000000px;}
.sc__c00461{text-shadow:none;}
.sc0_c00461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00461{-webkit-text-stroke:0px transparent;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00461{word-spacing:-15.000000px;}
.ws0_c00461{word-spacing:-12.750000px;}
.ws2_c00461{word-spacing:0.000000px;}
._5_c00461{margin-left:-15.600000px;}
._8_c00461{margin-left:-12.060000px;}
._9_c00461{margin-left:-10.800000px;}
._14_c00461{margin-left:-9.600000px;}
._11_c00461{margin-left:-7.800000px;}
._17_c00461{margin-left:-6.600000px;}
._2_c00461{margin-left:-5.400000px;}
._6_c00461{margin-left:-3.420000px;}
._a_c00461{margin-left:-2.100000px;}
._3_c00461{margin-left:-1.020000px;}
._0_c00461{width:1.080000px;}
._7_c00461{width:3.000000px;}
._1_c00461{width:4.560000px;}
._4_c00461{width:6.420000px;}
._16_c00461{width:7.560000px;}
._b_c00461{width:8.760000px;}
._c_c00461{width:10.260000px;}
._13_c00461{width:11.280000px;}
._f_c00461{width:12.480000px;}
._d_c00461{width:13.500000px;}
._e_c00461{width:16.080000px;}
._12_c00461{width:17.280000px;}
._10_c00461{width:18.540000px;}
._15_c00461{width:20.340000px;}
.fc1_c00461{color:transparent;}
.fc0_c00461{color:rgb(35,31,32);}
.fs1_c00461{font-size:51.000000px;}
.fs0_c00461{font-size:60.000000px;}
.y0_c00461{bottom:0.000000px;}
.y2c_c00461{bottom:64.425022px;}
.y27_c00461{bottom:110.175022px;}
.y2b_c00461{bottom:110.550022px;}
.y26_c00461{bottom:125.325022px;}
.y2a_c00461{bottom:125.625022px;}
.y25_c00461{bottom:140.775022px;}
.y24_c00461{bottom:155.925022px;}
.y29_c00461{bottom:156.225022px;}
.y23_c00461{bottom:171.375022px;}
.y22_c00461{bottom:186.525022px;}
.y21_c00461{bottom:202.350022px;}
.y20_c00461{bottom:217.125022px;}
.y28_c00461{bottom:232.575022px;}
.y1f_c00461{bottom:232.950022px;}
.y1d_c00461{bottom:300.975022px;}
.y1c_c00461{bottom:320.400022px;}
.y1b_c00461{bottom:339.825022px;}
.y1a_c00461{bottom:359.325022px;}
.y19_c00461{bottom:378.750022px;}
.y18_c00461{bottom:398.175022px;}
.y17_c00461{bottom:417.225022px;}
.y16_c00461{bottom:436.725022px;}
.y15_c00461{bottom:456.150022px;}
.y14_c00461{bottom:475.575022px;}
.y13_c00461{bottom:495.375022px;}
.y12_c00461{bottom:514.800022px;}
.y11_c00461{bottom:534.225022px;}
.y10_c00461{bottom:553.725022px;}
.yf_c00461{bottom:573.150022px;}
.ye_c00461{bottom:592.200022px;}
.yd_c00461{bottom:612.000022px;}
.yc_c00461{bottom:631.425022px;}
.yb_c00461{bottom:650.925022px;}
.ya_c00461{bottom:669.975022px;}
.y9_c00461{bottom:689.400022px;}
.y8_c00461{bottom:709.125022px;}
.y7_c00461{bottom:728.625022px;}
.y6_c00461{bottom:748.125022px;}
.y5_c00461{bottom:767.175022px;}
.y4_c00461{bottom:786.225022px;}
.y3_c00461{bottom:805.725022px;}
.y2_c00461{bottom:825.150022px;}
.y1_c00461{bottom:844.950022px;}
.y1e_c00461{bottom:886.875022px;}
.h3_c00461{height:50.028809px;}
.h4_c00461{height:50.053711px;}
.h2_c00461{height:58.886719px;}
.h1_c00461{height:957.750000px;}
.h0_c00461{height:957.975000px;}
.w0_c00461{width:641.850030px;}
.w1_c00461{width:642.000000px;}
.x0_c00461{left:0.000000px;}
.x1_c00461{left:80.250000px;}
.x2_c00461{left:81.375000px;}
.x6_c00461{left:87.450000px;}
.x3_c00461{left:96.150000px;}
.x4_c00461{left:97.200000px;}
.x7_c00461{left:121.350000px;}
.x5_c00461{left:200.850000px;}
.x8_c00461{left:531.000000px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls0_c00461{letter-spacing:0.000000pt;}
.ws1_c00461{word-spacing:-13.333333pt;}
.ws0_c00461{word-spacing:-11.333333pt;}
.ws2_c00461{word-spacing:0.000000pt;}
._5_c00461{margin-left:-13.866667pt;}
._8_c00461{margin-left:-10.720000pt;}
._9_c00461{margin-left:-9.600000pt;}
._14_c00461{margin-left:-8.533333pt;}
._11_c00461{margin-left:-6.933333pt;}
._17_c00461{margin-left:-5.866667pt;}
._2_c00461{margin-left:-4.800000pt;}
._6_c00461{margin-left:-3.040000pt;}
._a_c00461{margin-left:-1.866667pt;}
._3_c00461{margin-left:-0.906667pt;}
._0_c00461{width:0.960000pt;}
._7_c00461{width:2.666667pt;}
._1_c00461{width:4.053333pt;}
._4_c00461{width:5.706667pt;}
._16_c00461{width:6.720000pt;}
._b_c00461{width:7.786667pt;}
._c_c00461{width:9.120000pt;}
._13_c00461{width:10.026667pt;}
._f_c00461{width:11.093333pt;}
._d_c00461{width:12.000000pt;}
._e_c00461{width:14.293333pt;}
._12_c00461{width:15.360000pt;}
._10_c00461{width:16.480000pt;}
._15_c00461{width:18.080000pt;}
.fs1_c00461{font-size:45.333333pt;}
.fs0_c00461{font-size:53.333333pt;}
.y0_c00461{bottom:0.000000pt;}
.y2c_c00461{bottom:57.266686pt;}
.y27_c00461{bottom:97.933353pt;}
.y2b_c00461{bottom:98.266686pt;}
.y26_c00461{bottom:111.400020pt;}
.y2a_c00461{bottom:111.666686pt;}
.y25_c00461{bottom:125.133353pt;}
.y24_c00461{bottom:138.600020pt;}
.y29_c00461{bottom:138.866686pt;}
.y23_c00461{bottom:152.333353pt;}
.y22_c00461{bottom:165.800020pt;}
.y21_c00461{bottom:179.866686pt;}
.y20_c00461{bottom:193.000020pt;}
.y28_c00461{bottom:206.733353pt;}
.y1f_c00461{bottom:207.066686pt;}
.y1d_c00461{bottom:267.533353pt;}
.y1c_c00461{bottom:284.800020pt;}
.y1b_c00461{bottom:302.066686pt;}
.y1a_c00461{bottom:319.400020pt;}
.y19_c00461{bottom:336.666686pt;}
.y18_c00461{bottom:353.933353pt;}
.y17_c00461{bottom:370.866686pt;}
.y16_c00461{bottom:388.200020pt;}
.y15_c00461{bottom:405.466686pt;}
.y14_c00461{bottom:422.733353pt;}
.y13_c00461{bottom:440.333353pt;}
.y12_c00461{bottom:457.600020pt;}
.y11_c00461{bottom:474.866686pt;}
.y10_c00461{bottom:492.200020pt;}
.yf_c00461{bottom:509.466686pt;}
.ye_c00461{bottom:526.400020pt;}
.yd_c00461{bottom:544.000020pt;}
.yc_c00461{bottom:561.266686pt;}
.yb_c00461{bottom:578.600020pt;}
.ya_c00461{bottom:595.533353pt;}
.y9_c00461{bottom:612.800020pt;}
.y8_c00461{bottom:630.333353pt;}
.y7_c00461{bottom:647.666686pt;}
.y6_c00461{bottom:665.000020pt;}
.y5_c00461{bottom:681.933353pt;}
.y4_c00461{bottom:698.866686pt;}
.y3_c00461{bottom:716.200020pt;}
.y2_c00461{bottom:733.466686pt;}
.y1_c00461{bottom:751.066686pt;}
.y1e_c00461{bottom:788.333353pt;}
.h3_c00461{height:44.470052pt;}
.h4_c00461{height:44.492188pt;}
.h2_c00461{height:52.343750pt;}
.h1_c00461{height:851.333333pt;}
.h0_c00461{height:851.533333pt;}
.w0_c00461{width:570.533360pt;}
.w1_c00461{width:570.666667pt;}
.x0_c00461{left:0.000000pt;}
.x1_c00461{left:71.333333pt;}
.x2_c00461{left:72.333333pt;}
.x6_c00461{left:77.733333pt;}
.x3_c00461{left:85.466667pt;}
.x4_c00461{left:86.400000pt;}
.x7_c00461{left:107.866667pt;}
.x5_c00461{left:178.533333pt;}
.x8_c00461{left:472.000000pt;}
}





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

.ir_c00462:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00462{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00462;src:url('chunks/assets/font_0be6b9279581ae9eadf845ea.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00462;src:url('chunks/assets/font_3843d1c40e06040ae37bd73f.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00462{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.ls0_c00462{letter-spacing:0.000000px;}
.sc__c00462{text-shadow:none;}
.sc0_c00462{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00462{-webkit-text-stroke:0px transparent;}
.sc0_c00462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00462{word-spacing:-15.000000px;}
.ws1_c00462{word-spacing:0.000000px;}
._c_c00462{margin-left:-14.160000px;}
._b_c00462{margin-left:-12.840000px;}
._f_c00462{margin-left:-11.700000px;}
._e_c00462{margin-left:-10.599015px;}
._1b_c00462{margin-left:-9.570195px;}
._11_c00462{margin-left:-8.040000px;}
._10_c00462{margin-left:-5.940000px;}
._19_c00462{margin-left:-4.817949px;}
._5_c00462{margin-left:-3.740985px;}
._d_c00462{margin-left:-2.460000px;}
._3_c00462{margin-left:-1.320000px;}
._1_c00462{width:1.020000px;}
._0_c00462{width:2.400000px;}
._2_c00462{width:4.200000px;}
._4_c00462{width:5.820000px;}
._a_c00462{width:6.960000px;}
._9_c00462{width:8.040000px;}
._7_c00462{width:9.780000px;}
._6_c00462{width:10.980000px;}
._8_c00462{width:12.900000px;}
._12_c00462{width:13.920000px;}
._18_c00462{width:15.596982px;}
._16_c00462{width:16.980000px;}
._15_c00462{width:18.480000px;}
._13_c00462{width:19.560000px;}
._14_c00462{width:21.480000px;}
._1c_c00462{width:22.950051px;}
._1a_c00462{width:27.150054px;}
._17_c00462{width:29.430003px;}
.fc1_c00462{color:transparent;}
.fc0_c00462{color:rgb(35,31,32);}
.fs1_c00462{font-size:51.000000px;}
.fs0_c00462{font-size:60.000000px;}
.y0_c00462{bottom:0.000000px;}
.y25_c00462{bottom:64.800022px;}
.y24_c00462{bottom:110.175022px;}
.y23_c00462{bottom:125.325022px;}
.y22_c00462{bottom:141.150022px;}
.y21_c00462{bottom:156.225022px;}
.y20_c00462{bottom:171.375022px;}
.y1f_c00462{bottom:186.825022px;}
.y1e_c00462{bottom:201.975022px;}
.y1d_c00462{bottom:217.125022px;}
.y1c_c00462{bottom:284.025022px;}
.y1b_c00462{bottom:303.150022px;}
.y1a_c00462{bottom:322.575022px;}
.y19_c00462{bottom:341.625022px;}
.y18_c00462{bottom:361.125022px;}
.y17_c00462{bottom:380.925022px;}
.y16_c00462{bottom:400.350022px;}
.y15_c00462{bottom:419.400022px;}
.y14_c00462{bottom:438.825022px;}
.y13_c00462{bottom:458.625022px;}
.y12_c00462{bottom:478.125022px;}
.y11_c00462{bottom:497.175022px;}
.y10_c00462{bottom:516.975022px;}
.yf_c00462{bottom:536.400022px;}
.ye_c00462{bottom:555.525022px;}
.yd_c00462{bottom:574.950022px;}
.yc_c00462{bottom:594.375022px;}
.yb_c00462{bottom:613.800022px;}
.ya_c00462{bottom:633.225022px;}
.y9_c00462{bottom:652.725022px;}
.y8_c00462{bottom:672.525022px;}
.y7_c00462{bottom:691.950022px;}
.y6_c00462{bottom:711.375022px;}
.y5_c00462{bottom:730.800022px;}
.y4_c00462{bottom:768.600022px;}
.y2_c00462{bottom:825.525022px;}
.y1_c00462{bottom:844.575022px;}
.y3_c00462{bottom:886.875022px;}
.h3_c00462{height:50.028809px;}
.h4_c00462{height:50.053711px;}
.h2_c00462{height:58.886719px;}
.h1_c00462{height:957.750000px;}
.h0_c00462{height:957.975000px;}
.w1_c00462{width:643.500000px;}
.w0_c00462{width:643.650000px;}
.x0_c00462{left:0.000000px;}
.x2_c00462{left:90.375000px;}
.x1_c00462{left:91.425000px;}
.x4_c00462{left:97.200000px;}
.x3_c00462{left:107.250000px;}
.x5_c00462{left:131.400000px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls0_c00462{letter-spacing:0.000000pt;}
.ws0_c00462{word-spacing:-13.333333pt;}
.ws1_c00462{word-spacing:0.000000pt;}
._c_c00462{margin-left:-12.586667pt;}
._b_c00462{margin-left:-11.413333pt;}
._f_c00462{margin-left:-10.400000pt;}
._e_c00462{margin-left:-9.421347pt;}
._1b_c00462{margin-left:-8.506840pt;}
._11_c00462{margin-left:-7.146667pt;}
._10_c00462{margin-left:-5.280000pt;}
._19_c00462{margin-left:-4.282621pt;}
._5_c00462{margin-left:-3.325320pt;}
._d_c00462{margin-left:-2.186667pt;}
._3_c00462{margin-left:-1.173333pt;}
._1_c00462{width:0.906667pt;}
._0_c00462{width:2.133333pt;}
._2_c00462{width:3.733333pt;}
._4_c00462{width:5.173333pt;}
._a_c00462{width:6.186667pt;}
._9_c00462{width:7.146667pt;}
._7_c00462{width:8.693333pt;}
._6_c00462{width:9.760000pt;}
._8_c00462{width:11.466667pt;}
._12_c00462{width:12.373333pt;}
._18_c00462{width:13.863984pt;}
._16_c00462{width:15.093333pt;}
._15_c00462{width:16.426667pt;}
._13_c00462{width:17.386667pt;}
._14_c00462{width:19.093333pt;}
._1c_c00462{width:20.400045pt;}
._1a_c00462{width:24.133381pt;}
._17_c00462{width:26.160003pt;}
.fs1_c00462{font-size:45.333333pt;}
.fs0_c00462{font-size:53.333333pt;}
.y0_c00462{bottom:0.000000pt;}
.y25_c00462{bottom:57.600020pt;}
.y24_c00462{bottom:97.933353pt;}
.y23_c00462{bottom:111.400020pt;}
.y22_c00462{bottom:125.466686pt;}
.y21_c00462{bottom:138.866686pt;}
.y20_c00462{bottom:152.333353pt;}
.y1f_c00462{bottom:166.066686pt;}
.y1e_c00462{bottom:179.533353pt;}
.y1d_c00462{bottom:193.000020pt;}
.y1c_c00462{bottom:252.466686pt;}
.y1b_c00462{bottom:269.466686pt;}
.y1a_c00462{bottom:286.733353pt;}
.y19_c00462{bottom:303.666686pt;}
.y18_c00462{bottom:321.000020pt;}
.y17_c00462{bottom:338.600020pt;}
.y16_c00462{bottom:355.866686pt;}
.y15_c00462{bottom:372.800020pt;}
.y14_c00462{bottom:390.066686pt;}
.y13_c00462{bottom:407.666686pt;}
.y12_c00462{bottom:425.000020pt;}
.y11_c00462{bottom:441.933353pt;}
.y10_c00462{bottom:459.533353pt;}
.yf_c00462{bottom:476.800020pt;}
.ye_c00462{bottom:493.800020pt;}
.yd_c00462{bottom:511.066686pt;}
.yc_c00462{bottom:528.333353pt;}
.yb_c00462{bottom:545.600020pt;}
.ya_c00462{bottom:562.866686pt;}
.y9_c00462{bottom:580.200020pt;}
.y8_c00462{bottom:597.800020pt;}
.y7_c00462{bottom:615.066686pt;}
.y6_c00462{bottom:632.333353pt;}
.y5_c00462{bottom:649.600020pt;}
.y4_c00462{bottom:683.200020pt;}
.y2_c00462{bottom:733.800020pt;}
.y1_c00462{bottom:750.733353pt;}
.y3_c00462{bottom:788.333353pt;}
.h3_c00462{height:44.470052pt;}
.h4_c00462{height:44.492188pt;}
.h2_c00462{height:52.343750pt;}
.h1_c00462{height:851.333333pt;}
.h0_c00462{height:851.533333pt;}
.w1_c00462{width:572.000000pt;}
.w0_c00462{width:572.133333pt;}
.x0_c00462{left:0.000000pt;}
.x2_c00462{left:80.333333pt;}
.x1_c00462{left:81.266667pt;}
.x4_c00462{left:86.400000pt;}
.x3_c00462{left:95.333333pt;}
.x5_c00462{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f5bfedf032c3a8e8086880c2.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00463;src:url('chunks/assets/font_3f1f5a7ada05e959f315d33b.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform: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_c00463{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_c00463{vertical-align:0.000000px;}
.ls0_c00463{letter-spacing:0.000000px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00463{word-spacing:-15.000000px;}
.ws0_c00463{word-spacing:-12.750000px;}
.ws2_c00463{word-spacing:0.000000px;}
._10_c00463{margin-left:-12.534021px;}
._6_c00463{margin-left:-11.400000px;}
._f_c00463{margin-left:-9.942063px;}
._a_c00463{margin-left:-7.560000px;}
._5_c00463{margin-left:-6.000000px;}
._13_c00463{margin-left:-4.290030px;}
._e_c00463{margin-left:-3.065979px;}
._4_c00463{margin-left:-1.200000px;}
._0_c00463{width:1.740000px;}
._c_c00463{width:2.820000px;}
._11_c00463{width:4.610949px;}
._d_c00463{width:5.829051px;}
._b_c00463{width:7.440000px;}
._3_c00463{width:8.580000px;}
._2_c00463{width:10.320000px;}
._1_c00463{width:12.060000px;}
._7_c00463{width:13.920000px;}
._8_c00463{width:16.440000px;}
._9_c00463{width:18.900000px;}
._14_c00463{width:21.450000px;}
._15_c00463{width:23.850000px;}
._12_c00463{width:25.350042px;}
.fc1_c00463{color:transparent;}
.fc0_c00463{color:rgb(35,31,32);}
.fs1_c00463{font-size:51.000000px;}
.fs0_c00463{font-size:60.000000px;}
.y0_c00463{bottom:0.000000px;}
.y1e_c00463{bottom:64.425022px;}
.y1d_c00463{bottom:110.175022px;}
.y1c_c00463{bottom:125.325022px;}
.y1b_c00463{bottom:141.150022px;}
.y1a_c00463{bottom:155.925022px;}
.y19_c00463{bottom:171.375022px;}
.y18_c00463{bottom:186.525022px;}
.y17_c00463{bottom:335.925022px;}
.y16_c00463{bottom:355.350022px;}
.y15_c00463{bottom:375.150022px;}
.y14_c00463{bottom:394.575022px;}
.y13_c00463{bottom:414.000022px;}
.y12_c00463{bottom:452.175022px;}
.y11_c00463{bottom:509.025022px;}
.y10_c00463{bottom:528.525022px;}
.yf_c00463{bottom:547.575022px;}
.ye_c00463{bottom:567.225022px;}
.yd_c00463{bottom:586.725022px;}
.yc_c00463{bottom:606.225022px;}
.yb_c00463{bottom:625.725022px;}
.ya_c00463{bottom:644.775022px;}
.y9_c00463{bottom:679.350022px;}
.y7_c00463{bottom:728.325022px;}
.y6_c00463{bottom:748.125022px;}
.y5_c00463{bottom:767.175022px;}
.y4_c00463{bottom:786.600022px;}
.y3_c00463{bottom:806.025022px;}
.y2_c00463{bottom:825.150022px;}
.y1_c00463{bottom:844.950022px;}
.y8_c00463{bottom:886.875022px;}
.h3_c00463{height:50.028809px;}
.h4_c00463{height:50.053711px;}
.h2_c00463{height:58.886719px;}
.h1_c00463{height:957.750000px;}
.h0_c00463{height:957.975000px;}
.w0_c00463{width:641.850030px;}
.w1_c00463{width:642.000000px;}
.x0_c00463{left:0.000000px;}
.x2_c00463{left:80.250000px;}
.x1_c00463{left:81.375000px;}
.x4_c00463{left:87.450000px;}
.x5_c00463{left:121.350000px;}
.x3_c00463{left:200.850000px;}
.x6_c00463{left:531.000000px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls0_c00463{letter-spacing:0.000000pt;}
.ws1_c00463{word-spacing:-13.333333pt;}
.ws0_c00463{word-spacing:-11.333333pt;}
.ws2_c00463{word-spacing:0.000000pt;}
._10_c00463{margin-left:-11.141352pt;}
._6_c00463{margin-left:-10.133333pt;}
._f_c00463{margin-left:-8.837389pt;}
._a_c00463{margin-left:-6.720000pt;}
._5_c00463{margin-left:-5.333333pt;}
._13_c00463{margin-left:-3.813360pt;}
._e_c00463{margin-left:-2.725315pt;}
._4_c00463{margin-left:-1.066667pt;}
._0_c00463{width:1.546667pt;}
._c_c00463{width:2.506667pt;}
._11_c00463{width:4.098621pt;}
._d_c00463{width:5.181379pt;}
._b_c00463{width:6.613333pt;}
._3_c00463{width:7.626667pt;}
._2_c00463{width:9.173333pt;}
._1_c00463{width:10.720000pt;}
._7_c00463{width:12.373333pt;}
._8_c00463{width:14.613333pt;}
._9_c00463{width:16.800000pt;}
._14_c00463{width:19.066667pt;}
._15_c00463{width:21.200000pt;}
._12_c00463{width:22.533371pt;}
.fs1_c00463{font-size:45.333333pt;}
.fs0_c00463{font-size:53.333333pt;}
.y0_c00463{bottom:0.000000pt;}
.y1e_c00463{bottom:57.266686pt;}
.y1d_c00463{bottom:97.933353pt;}
.y1c_c00463{bottom:111.400020pt;}
.y1b_c00463{bottom:125.466686pt;}
.y1a_c00463{bottom:138.600020pt;}
.y19_c00463{bottom:152.333353pt;}
.y18_c00463{bottom:165.800020pt;}
.y17_c00463{bottom:298.600020pt;}
.y16_c00463{bottom:315.866686pt;}
.y15_c00463{bottom:333.466686pt;}
.y14_c00463{bottom:350.733353pt;}
.y13_c00463{bottom:368.000020pt;}
.y12_c00463{bottom:401.933353pt;}
.y11_c00463{bottom:452.466686pt;}
.y10_c00463{bottom:469.800020pt;}
.yf_c00463{bottom:486.733353pt;}
.ye_c00463{bottom:504.200020pt;}
.yd_c00463{bottom:521.533353pt;}
.yc_c00463{bottom:538.866686pt;}
.yb_c00463{bottom:556.200020pt;}
.ya_c00463{bottom:573.133353pt;}
.y9_c00463{bottom:603.866686pt;}
.y7_c00463{bottom:647.400020pt;}
.y6_c00463{bottom:665.000020pt;}
.y5_c00463{bottom:681.933353pt;}
.y4_c00463{bottom:699.200020pt;}
.y3_c00463{bottom:716.466686pt;}
.y2_c00463{bottom:733.466686pt;}
.y1_c00463{bottom:751.066686pt;}
.y8_c00463{bottom:788.333353pt;}
.h3_c00463{height:44.470052pt;}
.h4_c00463{height:44.492188pt;}
.h2_c00463{height:52.343750pt;}
.h1_c00463{height:851.333333pt;}
.h0_c00463{height:851.533333pt;}
.w0_c00463{width:570.533360pt;}
.w1_c00463{width:570.666667pt;}
.x0_c00463{left:0.000000pt;}
.x2_c00463{left:71.333333pt;}
.x1_c00463{left:72.333333pt;}
.x4_c00463{left:77.733333pt;}
.x5_c00463{left:107.866667pt;}
.x3_c00463{left:178.533333pt;}
.x6_c00463{left:472.000000pt;}
}





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

.ir_c00464:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00464{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00464;src:url('chunks/assets/font_55178a5b8872cd1042d65a94.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00464;src:url('chunks/assets/font_401dfdfbd43c5efaa81eb92e.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00464{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00464{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.ls0_c00464{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00464{word-spacing:-15.000000px;}
.ws0_c00464{word-spacing:-12.750000px;}
.ws2_c00464{word-spacing:0.000000px;}
._11_c00464{margin-left:-13.241790px;}
._c_c00464{margin-left:-11.829105px;}
._e_c00464{margin-left:-10.646721px;}
._15_c00464{margin-left:-8.540961px;}
._19_c00464{margin-left:-6.806931px;}
._12_c00464{margin-left:-5.658210px;}
._10_c00464{margin-left:-4.377051px;}
._1_c00464{margin-left:-3.300006px;}
._0_c00464{margin-left:-1.760979px;}
._2_c00464{width:1.839009px;}
._3_c00464{width:3.320967px;}
._13_c00464{width:5.261982px;}
._6_c00464{width:6.824967px;}
._7_c00464{width:8.684943px;}
._4_c00464{width:10.100979px;}
._5_c00464{width:11.180979px;}
._9_c00464{width:12.701982px;}
._f_c00464{width:13.800000px;}
._a_c00464{width:16.625946px;}
._d_c00464{width:17.706372px;}
._8_c00464{width:19.800000px;}
._b_c00464{width:21.020979px;}
._16_c00464{width:22.571958px;}
._14_c00464{width:24.072000px;}
._17_c00464{width:26.093916px;}
._18_c00464{width:27.332940px;}
.fc1_c00464{color:transparent;}
.fc0_c00464{color:rgb(35,31,32);}
.fs0_c00464{font-size:51.000000px;}
.fs1_c00464{font-size:60.000000px;}
.y0_c00464{bottom:0.000000px;}
.y2b_c00464{bottom:64.800022px;}
.y2a_c00464{bottom:110.550022px;}
.y29_c00464{bottom:125.625022px;}
.y28_c00464{bottom:140.775022px;}
.y27_c00464{bottom:156.225022px;}
.y26_c00464{bottom:171.375022px;}
.y25_c00464{bottom:186.525022px;}
.y24_c00464{bottom:202.350022px;}
.y23_c00464{bottom:217.125022px;}
.y22_c00464{bottom:232.950022px;}
.y21_c00464{bottom:247.725022px;}
.y20_c00464{bottom:263.550022px;}
.y1f_c00464{bottom:278.625022px;}
.y1e_c00464{bottom:294.150022px;}
.y1d_c00464{bottom:308.925022px;}
.y1c_c00464{bottom:324.375022px;}
.y1b_c00464{bottom:339.825022px;}
.y1a_c00464{bottom:354.975022px;}
.y19_c00464{bottom:370.125022px;}
.y18_c00464{bottom:385.575022px;}
.y17_c00464{bottom:401.025022px;}
.y16_c00464{bottom:416.550022px;}
.y15_c00464{bottom:431.325022px;}
.y14_c00464{bottom:473.400022px;}
.y13_c00464{bottom:492.825022px;}
.y12_c00464{bottom:512.625022px;}
.y11_c00464{bottom:531.750022px;}
.y10_c00464{bottom:551.550022px;}
.yf_c00464{bottom:570.600022px;}
.ye_c00464{bottom:589.725022px;}
.yd_c00464{bottom:609.525022px;}
.yc_c00464{bottom:628.950022px;}
.yb_c00464{bottom:648.000022px;}
.ya_c00464{bottom:667.800022px;}
.y9_c00464{bottom:686.925022px;}
.y8_c00464{bottom:706.725022px;}
.y7_c00464{bottom:726.150022px;}
.y6_c00464{bottom:745.200022px;}
.y5_c00464{bottom:765.000022px;}
.y4_c00464{bottom:784.425022px;}
.y3_c00464{bottom:803.550022px;}
.y2_c00464{bottom:844.950022px;}
.y1_c00464{bottom:886.875022px;}
.h2_c00464{height:50.028809px;}
.h4_c00464{height:50.053711px;}
.h3_c00464{height:58.886719px;}
.h1_c00464{height:957.750000px;}
.h0_c00464{height:957.975000px;}
.w1_c00464{width:643.500000px;}
.w0_c00464{width:643.650000px;}
.x0_c00464{left:0.000000px;}
.x1_c00464{left:90.750000px;}
.x2_c00464{left:97.200000px;}
.x4_c00464{left:129.975000px;}
.x3_c00464{left:131.025000px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls0_c00464{letter-spacing:0.000000pt;}
.ws1_c00464{word-spacing:-13.333333pt;}
.ws0_c00464{word-spacing:-11.333333pt;}
.ws2_c00464{word-spacing:0.000000pt;}
._11_c00464{margin-left:-11.770480pt;}
._c_c00464{margin-left:-10.514760pt;}
._e_c00464{margin-left:-9.463752pt;}
._15_c00464{margin-left:-7.591965pt;}
._19_c00464{margin-left:-6.050605pt;}
._12_c00464{margin-left:-5.029520pt;}
._10_c00464{margin-left:-3.890712pt;}
._1_c00464{margin-left:-2.933339pt;}
._0_c00464{margin-left:-1.565315pt;}
._2_c00464{width:1.634675pt;}
._3_c00464{width:2.951971pt;}
._13_c00464{width:4.677317pt;}
._6_c00464{width:6.066637pt;}
._7_c00464{width:7.719949pt;}
._4_c00464{width:8.978648pt;}
._5_c00464{width:9.938648pt;}
._9_c00464{width:11.290651pt;}
._f_c00464{width:12.266667pt;}
._a_c00464{width:14.778619pt;}
._d_c00464{width:15.738997pt;}
._8_c00464{width:17.600000pt;}
._b_c00464{width:18.685315pt;}
._16_c00464{width:20.063963pt;}
._14_c00464{width:21.397333pt;}
._17_c00464{width:23.194592pt;}
._18_c00464{width:24.295947pt;}
.fs0_c00464{font-size:45.333333pt;}
.fs1_c00464{font-size:53.333333pt;}
.y0_c00464{bottom:0.000000pt;}
.y2b_c00464{bottom:57.600020pt;}
.y2a_c00464{bottom:98.266686pt;}
.y29_c00464{bottom:111.666686pt;}
.y28_c00464{bottom:125.133353pt;}
.y27_c00464{bottom:138.866686pt;}
.y26_c00464{bottom:152.333353pt;}
.y25_c00464{bottom:165.800020pt;}
.y24_c00464{bottom:179.866686pt;}
.y23_c00464{bottom:193.000020pt;}
.y22_c00464{bottom:207.066686pt;}
.y21_c00464{bottom:220.200020pt;}
.y20_c00464{bottom:234.266686pt;}
.y1f_c00464{bottom:247.666686pt;}
.y1e_c00464{bottom:261.466686pt;}
.y1d_c00464{bottom:274.600020pt;}
.y1c_c00464{bottom:288.333353pt;}
.y1b_c00464{bottom:302.066686pt;}
.y1a_c00464{bottom:315.533353pt;}
.y19_c00464{bottom:329.000020pt;}
.y18_c00464{bottom:342.733353pt;}
.y17_c00464{bottom:356.466686pt;}
.y16_c00464{bottom:370.266686pt;}
.y15_c00464{bottom:383.400020pt;}
.y14_c00464{bottom:420.800020pt;}
.y13_c00464{bottom:438.066686pt;}
.y12_c00464{bottom:455.666686pt;}
.y11_c00464{bottom:472.666686pt;}
.y10_c00464{bottom:490.266686pt;}
.yf_c00464{bottom:507.200020pt;}
.ye_c00464{bottom:524.200020pt;}
.yd_c00464{bottom:541.800020pt;}
.yc_c00464{bottom:559.066686pt;}
.yb_c00464{bottom:576.000020pt;}
.ya_c00464{bottom:593.600020pt;}
.y9_c00464{bottom:610.600020pt;}
.y8_c00464{bottom:628.200020pt;}
.y7_c00464{bottom:645.466686pt;}
.y6_c00464{bottom:662.400020pt;}
.y5_c00464{bottom:680.000020pt;}
.y4_c00464{bottom:697.266686pt;}
.y3_c00464{bottom:714.266686pt;}
.y2_c00464{bottom:751.066686pt;}
.y1_c00464{bottom:788.333353pt;}
.h2_c00464{height:44.470052pt;}
.h4_c00464{height:44.492188pt;}
.h3_c00464{height:52.343750pt;}
.h1_c00464{height:851.333333pt;}
.h0_c00464{height:851.533333pt;}
.w1_c00464{width:572.000000pt;}
.w0_c00464{width:572.133333pt;}
.x0_c00464{left:0.000000pt;}
.x1_c00464{left:80.666667pt;}
.x2_c00464{left:86.400000pt;}
.x4_c00464{left:115.533333pt;}
.x3_c00464{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dbd57da5e000a49d02ed9555.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00465;src:url('chunks/assets/font_18402aca71d838da38b0e9ed.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00465{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.ls0_c00465{letter-spacing:0.000000px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00465{word-spacing:-15.000000px;}
.ws0_c00465{word-spacing:-12.750000px;}
.ws2_c00465{word-spacing:0.000000px;}
._17_c00465{margin-left:-13.680000px;}
._d_c00465{margin-left:-12.540000px;}
._a_c00465{margin-left:-11.400000px;}
._12_c00465{margin-left:-10.200000px;}
._14_c00465{margin-left:-7.380000px;}
._15_c00465{margin-left:-6.240000px;}
._9_c00465{margin-left:-4.860000px;}
._1c_c00465{margin-left:-3.710871px;}
._5_c00465{margin-left:-2.700000px;}
._6_c00465{margin-left:-1.680000px;}
._2_c00465{width:1.020000px;}
._0_c00465{width:2.280000px;}
._c_c00465{width:3.540000px;}
._19_c00465{width:4.560000px;}
._1_c00465{width:5.700000px;}
._18_c00465{width:7.500000px;}
._13_c00465{width:8.580000px;}
._4_c00465{width:9.900000px;}
._3_c00465{width:11.460000px;}
._1a_c00465{width:12.720000px;}
._10_c00465{width:13.740000px;}
._1d_c00465{width:15.140796px;}
._16_c00465{width:16.260000px;}
._11_c00465{width:17.340000px;}
._7_c00465{width:18.480000px;}
._8_c00465{width:19.860000px;}
._b_c00465{width:21.660000px;}
._f_c00465{width:22.680000px;}
._e_c00465{width:24.000000px;}
._1b_c00465{width:25.410000px;}
._1f_c00465{width:26.610042px;}
._20_c00465{width:28.110000px;}
._1e_c00465{width:30.810000px;}
.fc1_c00465{color:transparent;}
.fc0_c00465{color:rgb(35,31,32);}
.fs1_c00465{font-size:51.000000px;}
.fs0_c00465{font-size:60.000000px;}
.y0_c00465{bottom:0.000000px;}
.y2c_c00465{bottom:64.425022px;}
.y2b_c00465{bottom:110.175022px;}
.y2a_c00465{bottom:125.325022px;}
.y29_c00465{bottom:140.775022px;}
.y28_c00465{bottom:155.925022px;}
.y27_c00465{bottom:171.750022px;}
.y26_c00465{bottom:186.525022px;}
.y25_c00465{bottom:201.975022px;}
.y24_c00465{bottom:217.275022px;}
.y23_c00465{bottom:232.575022px;}
.y22_c00465{bottom:248.025022px;}
.y21_c00465{bottom:263.175022px;}
.y20_c00465{bottom:278.325022px;}
.y1f_c00465{bottom:294.150022px;}
.y1e_c00465{bottom:309.225022px;}
.y1d_c00465{bottom:324.750022px;}
.y1c_c00465{bottom:339.675022px;}
.y1b_c00465{bottom:354.975022px;}
.y1a_c00465{bottom:370.125022px;}
.y19_c00465{bottom:385.950022px;}
.y18_c00465{bottom:401.025022px;}
.y17_c00465{bottom:416.175022px;}
.y16_c00465{bottom:431.475022px;}
.y15_c00465{bottom:447.150022px;}
.y14_c00465{bottom:461.925022px;}
.y12_c00465{bottom:514.800022px;}
.y11_c00465{bottom:534.225022px;}
.y10_c00465{bottom:553.350022px;}
.yf_c00465{bottom:573.150022px;}
.ye_c00465{bottom:592.575022px;}
.yd_c00465{bottom:612.000022px;}
.yc_c00465{bottom:631.425022px;}
.yb_c00465{bottom:650.925022px;}
.ya_c00465{bottom:669.975022px;}
.y9_c00465{bottom:689.775022px;}
.y8_c00465{bottom:709.200022px;}
.y7_c00465{bottom:728.625022px;}
.y6_c00465{bottom:747.750022px;}
.y5_c00465{bottom:767.550022px;}
.y4_c00465{bottom:786.525022px;}
.y3_c00465{bottom:806.025022px;}
.y2_c00465{bottom:825.525022px;}
.y1_c00465{bottom:844.575022px;}
.y13_c00465{bottom:886.875022px;}
.h3_c00465{height:50.028809px;}
.h4_c00465{height:50.053711px;}
.h2_c00465{height:58.886719px;}
.h1_c00465{height:957.750000px;}
.h0_c00465{height:957.975000px;}
.w0_c00465{width:641.850030px;}
.w1_c00465{width:642.000000px;}
.x0_c00465{left:0.000000px;}
.x3_c00465{left:80.250000px;}
.x2_c00465{left:81.375000px;}
.x5_c00465{left:87.450000px;}
.x1_c00465{left:97.200000px;}
.x6_c00465{left:120.975000px;}
.x7_c00465{left:122.025000px;}
.x4_c00465{left:200.850000px;}
.x8_c00465{left:531.000000px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls0_c00465{letter-spacing:0.000000pt;}
.ws1_c00465{word-spacing:-13.333333pt;}
.ws0_c00465{word-spacing:-11.333333pt;}
.ws2_c00465{word-spacing:0.000000pt;}
._17_c00465{margin-left:-12.160000pt;}
._d_c00465{margin-left:-11.146667pt;}
._a_c00465{margin-left:-10.133333pt;}
._12_c00465{margin-left:-9.066667pt;}
._14_c00465{margin-left:-6.560000pt;}
._15_c00465{margin-left:-5.546667pt;}
._9_c00465{margin-left:-4.320000pt;}
._1c_c00465{margin-left:-3.298552pt;}
._5_c00465{margin-left:-2.400000pt;}
._6_c00465{margin-left:-1.493333pt;}
._2_c00465{width:0.906667pt;}
._0_c00465{width:2.026667pt;}
._c_c00465{width:3.146667pt;}
._19_c00465{width:4.053333pt;}
._1_c00465{width:5.066667pt;}
._18_c00465{width:6.666667pt;}
._13_c00465{width:7.626667pt;}
._4_c00465{width:8.800000pt;}
._3_c00465{width:10.186667pt;}
._1a_c00465{width:11.306667pt;}
._10_c00465{width:12.213333pt;}
._1d_c00465{width:13.458485pt;}
._16_c00465{width:14.453333pt;}
._11_c00465{width:15.413333pt;}
._7_c00465{width:16.426667pt;}
._8_c00465{width:17.653333pt;}
._b_c00465{width:19.253333pt;}
._f_c00465{width:20.160000pt;}
._e_c00465{width:21.333333pt;}
._1b_c00465{width:22.586667pt;}
._1f_c00465{width:23.653371pt;}
._20_c00465{width:24.986667pt;}
._1e_c00465{width:27.386667pt;}
.fs1_c00465{font-size:45.333333pt;}
.fs0_c00465{font-size:53.333333pt;}
.y0_c00465{bottom:0.000000pt;}
.y2c_c00465{bottom:57.266686pt;}
.y2b_c00465{bottom:97.933353pt;}
.y2a_c00465{bottom:111.400020pt;}
.y29_c00465{bottom:125.133353pt;}
.y28_c00465{bottom:138.600020pt;}
.y27_c00465{bottom:152.666686pt;}
.y26_c00465{bottom:165.800020pt;}
.y25_c00465{bottom:179.533353pt;}
.y24_c00465{bottom:193.133353pt;}
.y23_c00465{bottom:206.733353pt;}
.y22_c00465{bottom:220.466686pt;}
.y21_c00465{bottom:233.933353pt;}
.y20_c00465{bottom:247.400020pt;}
.y1f_c00465{bottom:261.466686pt;}
.y1e_c00465{bottom:274.866686pt;}
.y1d_c00465{bottom:288.666686pt;}
.y1c_c00465{bottom:301.933353pt;}
.y1b_c00465{bottom:315.533353pt;}
.y1a_c00465{bottom:329.000020pt;}
.y19_c00465{bottom:343.066686pt;}
.y18_c00465{bottom:356.466686pt;}
.y17_c00465{bottom:369.933353pt;}
.y16_c00465{bottom:383.533353pt;}
.y15_c00465{bottom:397.466686pt;}
.y14_c00465{bottom:410.600020pt;}
.y12_c00465{bottom:457.600020pt;}
.y11_c00465{bottom:474.866686pt;}
.y10_c00465{bottom:491.866686pt;}
.yf_c00465{bottom:509.466686pt;}
.ye_c00465{bottom:526.733353pt;}
.yd_c00465{bottom:544.000020pt;}
.yc_c00465{bottom:561.266686pt;}
.yb_c00465{bottom:578.600020pt;}
.ya_c00465{bottom:595.533353pt;}
.y9_c00465{bottom:613.133353pt;}
.y8_c00465{bottom:630.400020pt;}
.y7_c00465{bottom:647.666686pt;}
.y6_c00465{bottom:664.666686pt;}
.y5_c00465{bottom:682.266686pt;}
.y4_c00465{bottom:699.133353pt;}
.y3_c00465{bottom:716.466686pt;}
.y2_c00465{bottom:733.800020pt;}
.y1_c00465{bottom:750.733353pt;}
.y13_c00465{bottom:788.333353pt;}
.h3_c00465{height:44.470052pt;}
.h4_c00465{height:44.492188pt;}
.h2_c00465{height:52.343750pt;}
.h1_c00465{height:851.333333pt;}
.h0_c00465{height:851.533333pt;}
.w0_c00465{width:570.533360pt;}
.w1_c00465{width:570.666667pt;}
.x0_c00465{left:0.000000pt;}
.x3_c00465{left:71.333333pt;}
.x2_c00465{left:72.333333pt;}
.x5_c00465{left:77.733333pt;}
.x1_c00465{left:86.400000pt;}
.x6_c00465{left:107.533333pt;}
.x7_c00465{left:108.466667pt;}
.x4_c00465{left:178.533333pt;}
.x8_c00465{left:472.000000pt;}
}





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

.ir_c00466:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00466{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00466;src:url('chunks/assets/font_cc4e149c39289b7b5410c919.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00466;src:url('chunks/assets/font_7ae288865c7a762152da59bb.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00466{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
.ls0_c00466{letter-spacing:0.000000px;}
.sc__c00466{text-shadow:none;}
.sc0_c00466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00466{-webkit-text-stroke:0px transparent;}
.sc0_c00466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00466{word-spacing:-15.000000px;}
.ws0_c00466{word-spacing:-12.750000px;}
.ws2_c00466{word-spacing:0.000000px;}
._c_c00466{margin-left:-11.640000px;}
._b_c00466{margin-left:-10.320000px;}
._7_c00466{margin-left:-8.280000px;}
._5_c00466{margin-left:-6.060000px;}
._12_c00466{margin-left:-4.803057px;}
._6_c00466{margin-left:-3.540000px;}
._4_c00466{margin-left:-1.740000px;}
._0_c00466{width:1.560000px;}
._1_c00466{width:2.940000px;}
._2_c00466{width:4.800000px;}
._3_c00466{width:6.360000px;}
._e_c00466{width:8.040000px;}
._f_c00466{width:9.540000px;}
._9_c00466{width:10.920000px;}
._8_c00466{width:12.300000px;}
._a_c00466{width:13.440000px;}
._15_c00466{width:14.991096px;}
._d_c00466{width:16.740000px;}
._11_c00466{width:22.290042px;}
._13_c00466{width:24.030042px;}
._14_c00466{width:27.030000px;}
._10_c00466{width:28.530000px;}
.fc1_c00466{color:transparent;}
.fc0_c00466{color:rgb(35,31,32);}
.fs1_c00466{font-size:51.000000px;}
.fs0_c00466{font-size:60.000000px;}
.y0_c00466{bottom:0.000000px;}
.y28_c00466{bottom:64.425022px;}
.y27_c00466{bottom:110.175022px;}
.y26_c00466{bottom:125.325022px;}
.y25_c00466{bottom:141.150022px;}
.y24_c00466{bottom:155.925022px;}
.y23_c00466{bottom:171.750022px;}
.y22_c00466{bottom:186.525022px;}
.y21_c00466{bottom:201.975022px;}
.y20_c00466{bottom:217.125022px;}
.y1f_c00466{bottom:232.575022px;}
.y1e_c00466{bottom:248.025022px;}
.y1d_c00466{bottom:263.175022px;}
.y1c_c00466{bottom:278.325022px;}
.y1b_c00466{bottom:293.775022px;}
.y1a_c00466{bottom:308.925022px;}
.y19_c00466{bottom:324.600022px;}
.y18_c00466{bottom:339.525022px;}
.y17_c00466{bottom:354.975022px;}
.y16_c00466{bottom:370.125022px;}
.y15_c00466{bottom:413.625022px;}
.y14_c00466{bottom:433.125022px;}
.y13_c00466{bottom:452.925022px;}
.y12_c00466{bottom:493.950022px;}
.y10_c00466{bottom:553.725022px;}
.yf_c00466{bottom:572.775022px;}
.ye_c00466{bottom:592.575022px;}
.yd_c00466{bottom:612.000022px;}
.yc_c00466{bottom:631.425022px;}
.yb_c00466{bottom:650.925022px;}
.ya_c00466{bottom:670.350022px;}
.y9_c00466{bottom:689.775022px;}
.y8_c00466{bottom:708.900022px;}
.y7_c00466{bottom:728.325022px;}
.y6_c00466{bottom:747.750022px;}
.y5_c00466{bottom:767.550022px;}
.y4_c00466{bottom:786.600022px;}
.y3_c00466{bottom:806.025022px;}
.y2_c00466{bottom:825.150022px;}
.y1_c00466{bottom:844.950022px;}
.y11_c00466{bottom:886.875022px;}
.h3_c00466{height:50.028809px;}
.h4_c00466{height:50.053711px;}
.h2_c00466{height:58.886719px;}
.h1_c00466{height:957.750000px;}
.h0_c00466{height:957.975000px;}
.w1_c00466{width:643.500000px;}
.w0_c00466{width:643.650000px;}
.x0_c00466{left:0.000000px;}
.x1_c00466{left:91.050000px;}
.x3_c00466{left:97.200000px;}
.x2_c00466{left:106.200000px;}
.x5_c00466{left:130.350000px;}
.x4_c00466{left:131.400000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls0_c00466{letter-spacing:0.000000pt;}
.ws1_c00466{word-spacing:-13.333333pt;}
.ws0_c00466{word-spacing:-11.333333pt;}
.ws2_c00466{word-spacing:0.000000pt;}
._c_c00466{margin-left:-10.346667pt;}
._b_c00466{margin-left:-9.173333pt;}
._7_c00466{margin-left:-7.360000pt;}
._5_c00466{margin-left:-5.386667pt;}
._12_c00466{margin-left:-4.269384pt;}
._6_c00466{margin-left:-3.146667pt;}
._4_c00466{margin-left:-1.546667pt;}
._0_c00466{width:1.386667pt;}
._1_c00466{width:2.613333pt;}
._2_c00466{width:4.266667pt;}
._3_c00466{width:5.653333pt;}
._e_c00466{width:7.146667pt;}
._f_c00466{width:8.480000pt;}
._9_c00466{width:9.706667pt;}
._8_c00466{width:10.933333pt;}
._a_c00466{width:11.946667pt;}
._15_c00466{width:13.325419pt;}
._d_c00466{width:14.880000pt;}
._11_c00466{width:19.813371pt;}
._13_c00466{width:21.360037pt;}
._14_c00466{width:24.026667pt;}
._10_c00466{width:25.360000pt;}
.fs1_c00466{font-size:45.333333pt;}
.fs0_c00466{font-size:53.333333pt;}
.y0_c00466{bottom:0.000000pt;}
.y28_c00466{bottom:57.266686pt;}
.y27_c00466{bottom:97.933353pt;}
.y26_c00466{bottom:111.400020pt;}
.y25_c00466{bottom:125.466686pt;}
.y24_c00466{bottom:138.600020pt;}
.y23_c00466{bottom:152.666686pt;}
.y22_c00466{bottom:165.800020pt;}
.y21_c00466{bottom:179.533353pt;}
.y20_c00466{bottom:193.000020pt;}
.y1f_c00466{bottom:206.733353pt;}
.y1e_c00466{bottom:220.466686pt;}
.y1d_c00466{bottom:233.933353pt;}
.y1c_c00466{bottom:247.400020pt;}
.y1b_c00466{bottom:261.133353pt;}
.y1a_c00466{bottom:274.600020pt;}
.y19_c00466{bottom:288.533353pt;}
.y18_c00466{bottom:301.800020pt;}
.y17_c00466{bottom:315.533353pt;}
.y16_c00466{bottom:329.000020pt;}
.y15_c00466{bottom:367.666686pt;}
.y14_c00466{bottom:385.000020pt;}
.y13_c00466{bottom:402.600020pt;}
.y12_c00466{bottom:439.066686pt;}
.y10_c00466{bottom:492.200020pt;}
.yf_c00466{bottom:509.133353pt;}
.ye_c00466{bottom:526.733353pt;}
.yd_c00466{bottom:544.000020pt;}
.yc_c00466{bottom:561.266686pt;}
.yb_c00466{bottom:578.600020pt;}
.ya_c00466{bottom:595.866686pt;}
.y9_c00466{bottom:613.133353pt;}
.y8_c00466{bottom:630.133353pt;}
.y7_c00466{bottom:647.400020pt;}
.y6_c00466{bottom:664.666686pt;}
.y5_c00466{bottom:682.266686pt;}
.y4_c00466{bottom:699.200020pt;}
.y3_c00466{bottom:716.466686pt;}
.y2_c00466{bottom:733.466686pt;}
.y1_c00466{bottom:751.066686pt;}
.y11_c00466{bottom:788.333353pt;}
.h3_c00466{height:44.470052pt;}
.h4_c00466{height:44.492188pt;}
.h2_c00466{height:52.343750pt;}
.h1_c00466{height:851.333333pt;}
.h0_c00466{height:851.533333pt;}
.w1_c00466{width:572.000000pt;}
.w0_c00466{width:572.133333pt;}
.x0_c00466{left:0.000000pt;}
.x1_c00466{left:80.933333pt;}
.x3_c00466{left:86.400000pt;}
.x2_c00466{left:94.400000pt;}
.x5_c00466{left:115.866667pt;}
.x4_c00466{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_57dfd6c39e6ae79b95e4c352.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00467;src:url('chunks/assets/font_c757fa564d8f8f28c680be6c.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00467{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.ls0_c00467{letter-spacing:0.000000px;}
.sc__c00467{text-shadow:none;}
.sc0_c00467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00467{-webkit-text-stroke:0px transparent;}
.sc0_c00467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00467{word-spacing:-15.000000px;}
.ws1_c00467{word-spacing:0.000000px;}
._14_c00467{margin-left:-26.160000px;}
._13_c00467{margin-left:-23.352057px;}
._f_c00467{margin-left:-12.713928px;}
._12_c00467{margin-left:-11.465802px;}
._7_c00467{margin-left:-10.017084px;}
._b_c00467{margin-left:-8.880000px;}
._11_c00467{margin-left:-6.950940px;}
._10_c00467{margin-left:-5.100000px;}
._2_c00467{margin-left:-3.672051px;}
._19_c00467{margin-left:-2.661078px;}
._3_c00467{margin-left:-1.644036px;}
._0_c00467{width:1.551012px;}
._5_c00467{width:2.717976px;}
._4_c00467{width:3.747054px;}
._1_c00467{width:5.411967px;}
._e_c00467{width:6.450288px;}
._d_c00467{width:7.599084px;}
._c_c00467{width:8.786964px;}
._a_c00467{width:10.097772px;}
._9_c00467{width:11.778108px;}
._8_c00467{width:13.496928px;}
._6_c00467{width:16.716144px;}
._17_c00467{width:18.161808px;}
._15_c00467{width:20.208072px;}
._16_c00467{width:22.235952px;}
._1a_c00467{width:23.838114px;}
._18_c00467{width:27.126135px;}
.fc1_c00467{color:transparent;}
.fc0_c00467{color:rgb(35,31,32);}
.fs0_c00467{font-size:51.000000px;}
.fs1_c00467{font-size:60.000000px;}
.y0_c00467{bottom:0.000000px;}
.y27_c00467{bottom:64.425022px;}
.y26_c00467{bottom:110.550022px;}
.y25_c00467{bottom:125.325022px;}
.y24_c00467{bottom:141.150022px;}
.y23_c00467{bottom:155.925022px;}
.y22_c00467{bottom:171.750022px;}
.y21_c00467{bottom:186.525022px;}
.y20_c00467{bottom:201.975022px;}
.y1f_c00467{bottom:254.550022px;}
.y1e_c00467{bottom:273.975022px;}
.y1d_c00467{bottom:293.025022px;}
.y1c_c00467{bottom:312.525022px;}
.y1b_c00467{bottom:341.325022px;}
.y1a_c00467{bottom:360.750022px;}
.y19_c00467{bottom:380.175022px;}
.y18_c00467{bottom:399.600022px;}
.y17_c00467{bottom:418.725022px;}
.y16_c00467{bottom:438.150022px;}
.y15_c00467{bottom:457.950022px;}
.y14_c00467{bottom:486.000022px;}
.y13_c00467{bottom:505.425022px;}
.y12_c00467{bottom:524.925022px;}
.y11_c00467{bottom:544.350022px;}
.y10_c00467{bottom:563.775022px;}
.yf_c00467{bottom:583.200022px;}
.ye_c00467{bottom:602.625022px;}
.yd_c00467{bottom:622.125022px;}
.yc_c00467{bottom:641.550022px;}
.yb_c00467{bottom:660.975022px;}
.ya_c00467{bottom:689.400022px;}
.y9_c00467{bottom:709.200022px;}
.y8_c00467{bottom:728.325022px;}
.y7_c00467{bottom:747.750022px;}
.y6_c00467{bottom:767.550022px;}
.y5_c00467{bottom:786.225022px;}
.y4_c00467{bottom:805.725022px;}
.y3_c00467{bottom:825.525022px;}
.y2_c00467{bottom:844.950022px;}
.y1_c00467{bottom:886.875022px;}
.h2_c00467{height:50.028809px;}
.h5_c00467{height:50.053711px;}
.h4_c00467{height:58.857422px;}
.h3_c00467{height:58.886719px;}
.h1_c00467{height:957.750000px;}
.h0_c00467{height:957.975000px;}
.w0_c00467{width:641.850030px;}
.w1_c00467{width:642.000000px;}
.x0_c00467{left:0.000000px;}
.x2_c00467{left:81.000000px;}
.x5_c00467{left:87.450000px;}
.x3_c00467{left:96.150000px;}
.x4_c00467{left:97.575000px;}
.x1_c00467{left:200.850000px;}
.x6_c00467{left:531.000000px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls0_c00467{letter-spacing:0.000000pt;}
.ws0_c00467{word-spacing:-13.333333pt;}
.ws1_c00467{word-spacing:0.000000pt;}
._14_c00467{margin-left:-23.253333pt;}
._13_c00467{margin-left:-20.757384pt;}
._f_c00467{margin-left:-11.301269pt;}
._12_c00467{margin-left:-10.191824pt;}
._7_c00467{margin-left:-8.904075pt;}
._b_c00467{margin-left:-7.893333pt;}
._11_c00467{margin-left:-6.178613pt;}
._10_c00467{margin-left:-4.533333pt;}
._2_c00467{margin-left:-3.264045pt;}
._19_c00467{margin-left:-2.365403pt;}
._3_c00467{margin-left:-1.461365pt;}
._0_c00467{width:1.378677pt;}
._5_c00467{width:2.415979pt;}
._4_c00467{width:3.330715pt;}
._1_c00467{width:4.810637pt;}
._e_c00467{width:5.733589pt;}
._d_c00467{width:6.754741pt;}
._c_c00467{width:7.810635pt;}
._a_c00467{width:8.975797pt;}
._9_c00467{width:10.469429pt;}
._8_c00467{width:11.997269pt;}
._6_c00467{width:14.858795pt;}
._17_c00467{width:16.143829pt;}
._15_c00467{width:17.962731pt;}
._16_c00467{width:19.765291pt;}
._1a_c00467{width:21.189435pt;}
._18_c00467{width:24.112120pt;}
.fs0_c00467{font-size:45.333333pt;}
.fs1_c00467{font-size:53.333333pt;}
.y0_c00467{bottom:0.000000pt;}
.y27_c00467{bottom:57.266686pt;}
.y26_c00467{bottom:98.266686pt;}
.y25_c00467{bottom:111.400020pt;}
.y24_c00467{bottom:125.466686pt;}
.y23_c00467{bottom:138.600020pt;}
.y22_c00467{bottom:152.666686pt;}
.y21_c00467{bottom:165.800020pt;}
.y20_c00467{bottom:179.533353pt;}
.y1f_c00467{bottom:226.266686pt;}
.y1e_c00467{bottom:243.533353pt;}
.y1d_c00467{bottom:260.466686pt;}
.y1c_c00467{bottom:277.800020pt;}
.y1b_c00467{bottom:303.400020pt;}
.y1a_c00467{bottom:320.666686pt;}
.y19_c00467{bottom:337.933353pt;}
.y18_c00467{bottom:355.200020pt;}
.y17_c00467{bottom:372.200020pt;}
.y16_c00467{bottom:389.466686pt;}
.y15_c00467{bottom:407.066686pt;}
.y14_c00467{bottom:432.000020pt;}
.y13_c00467{bottom:449.266686pt;}
.y12_c00467{bottom:466.600020pt;}
.y11_c00467{bottom:483.866686pt;}
.y10_c00467{bottom:501.133353pt;}
.yf_c00467{bottom:518.400020pt;}
.ye_c00467{bottom:535.666686pt;}
.yd_c00467{bottom:553.000020pt;}
.yc_c00467{bottom:570.266686pt;}
.yb_c00467{bottom:587.533353pt;}
.ya_c00467{bottom:612.800020pt;}
.y9_c00467{bottom:630.400020pt;}
.y8_c00467{bottom:647.400020pt;}
.y7_c00467{bottom:664.666686pt;}
.y6_c00467{bottom:682.266686pt;}
.y5_c00467{bottom:698.866686pt;}
.y4_c00467{bottom:716.200020pt;}
.y3_c00467{bottom:733.800020pt;}
.y2_c00467{bottom:751.066686pt;}
.y1_c00467{bottom:788.333353pt;}
.h2_c00467{height:44.470052pt;}
.h5_c00467{height:44.492188pt;}
.h4_c00467{height:52.317708pt;}
.h3_c00467{height:52.343750pt;}
.h1_c00467{height:851.333333pt;}
.h0_c00467{height:851.533333pt;}
.w0_c00467{width:570.533360pt;}
.w1_c00467{width:570.666667pt;}
.x0_c00467{left:0.000000pt;}
.x2_c00467{left:72.000000pt;}
.x5_c00467{left:77.733333pt;}
.x3_c00467{left:85.466667pt;}
.x4_c00467{left:86.733333pt;}
.x1_c00467{left:178.533333pt;}
.x6_c00467{left:472.000000pt;}
}





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

.ir_c00468:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00468{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00468;src:url('chunks/assets/font_2688437d68ed5f87eaa6b4ff.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00468;src:url('chunks/assets/font_36bcb11b03bdc72d0f76f1ee.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00468{letter-spacing:0.000000px;}
.sc__c00468{text-shadow:none;}
.sc0_c00468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00468{-webkit-text-stroke:0px transparent;}
.sc0_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00468{word-spacing:-15.000000px;}
.ws1_c00468{word-spacing:0.000000px;}
._8_c00468{margin-left:-16.200000px;}
._e_c00468{margin-left:-12.900000px;}
._9_c00468{margin-left:-11.400000px;}
._15_c00468{margin-left:-9.900000px;}
._16_c00468{margin-left:-8.880000px;}
._7_c00468{margin-left:-6.900000px;}
._14_c00468{margin-left:-5.220000px;}
._d_c00468{margin-left:-4.140000px;}
._19_c00468{margin-left:-3.054018px;}
._6_c00468{margin-left:-2.040000px;}
._3_c00468{margin-left:-1.020000px;}
._2_c00468{width:1.260000px;}
._4_c00468{width:2.700000px;}
._5_c00468{width:4.260000px;}
._0_c00468{width:5.400000px;}
._1_c00468{width:6.480000px;}
._11_c00468{width:8.280000px;}
._c_c00468{width:10.140000px;}
._10_c00468{width:11.280000px;}
._f_c00468{width:12.660000px;}
._12_c00468{width:16.260000px;}
._13_c00468{width:18.300000px;}
._a_c00468{width:19.560000px;}
._b_c00468{width:21.360000px;}
._1b_c00468{width:25.104021px;}
._17_c00468{width:26.130054px;}
._1a_c00468{width:27.144021px;}
._18_c00468{width:29.190003px;}
.fc1_c00468{color:transparent;}
.fc0_c00468{color:rgb(35,31,32);}
.fs1_c00468{font-size:51.000000px;}
.fs0_c00468{font-size:60.000000px;}
.y0_c00468{bottom:0.000000px;}
.y27_c00468{bottom:64.425022px;}
.y26_c00468{bottom:110.175022px;}
.y25_c00468{bottom:125.625022px;}
.y24_c00468{bottom:140.775022px;}
.y23_c00468{bottom:155.925022px;}
.y22_c00468{bottom:171.375022px;}
.y21_c00468{bottom:186.525022px;}
.y20_c00468{bottom:201.975022px;}
.y1f_c00468{bottom:217.125022px;}
.y1e_c00468{bottom:232.575022px;}
.y1d_c00468{bottom:247.725022px;}
.y1b_c00468{bottom:330.825022px;}
.y1a_c00468{bottom:350.325022px;}
.y19_c00468{bottom:369.375022px;}
.y18_c00468{bottom:389.175022px;}
.y17_c00468{bottom:408.600022px;}
.y16_c00468{bottom:428.025022px;}
.y15_c00468{bottom:447.150022px;}
.y14_c00468{bottom:466.575022px;}
.y13_c00468{bottom:486.000022px;}
.y12_c00468{bottom:505.800022px;}
.y11_c00468{bottom:525.225022px;}
.y10_c00468{bottom:544.725022px;}
.yf_c00468{bottom:564.150022px;}
.ye_c00468{bottom:583.200022px;}
.yd_c00468{bottom:602.625022px;}
.yc_c00468{bottom:622.425022px;}
.yb_c00468{bottom:641.550022px;}
.ya_c00468{bottom:660.975022px;}
.y9_c00468{bottom:680.775022px;}
.y8_c00468{bottom:699.825022px;}
.y7_c00468{bottom:719.625022px;}
.y6_c00468{bottom:739.125022px;}
.y5_c00468{bottom:758.175022px;}
.y4_c00468{bottom:777.600022px;}
.y3_c00468{bottom:797.025022px;}
.y2_c00468{bottom:825.150022px;}
.y1_c00468{bottom:844.575022px;}
.y1c_c00468{bottom:886.875022px;}
.h4_c00468{height:50.028809px;}
.h5_c00468{height:50.053711px;}
.h3_c00468{height:58.857422px;}
.h2_c00468{height:58.886719px;}
.h1_c00468{height:957.750000px;}
.h0_c00468{height:957.975000px;}
.w1_c00468{width:643.500000px;}
.w0_c00468{width:643.650000px;}
.x0_c00468{left:0.000000px;}
.x4_c00468{left:90.375000px;}
.x3_c00468{left:91.425000px;}
.x5_c00468{left:97.200000px;}
.x2_c00468{left:105.825000px;}
.x1_c00468{left:107.250000px;}
.x6_c00468{left:131.025000px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls0_c00468{letter-spacing:0.000000pt;}
.ws0_c00468{word-spacing:-13.333333pt;}
.ws1_c00468{word-spacing:0.000000pt;}
._8_c00468{margin-left:-14.400000pt;}
._e_c00468{margin-left:-11.466667pt;}
._9_c00468{margin-left:-10.133333pt;}
._15_c00468{margin-left:-8.800000pt;}
._16_c00468{margin-left:-7.893333pt;}
._7_c00468{margin-left:-6.133333pt;}
._14_c00468{margin-left:-4.640000pt;}
._d_c00468{margin-left:-3.680000pt;}
._19_c00468{margin-left:-2.714683pt;}
._6_c00468{margin-left:-1.813333pt;}
._3_c00468{margin-left:-0.906667pt;}
._2_c00468{width:1.120000pt;}
._4_c00468{width:2.400000pt;}
._5_c00468{width:3.786667pt;}
._0_c00468{width:4.800000pt;}
._1_c00468{width:5.760000pt;}
._11_c00468{width:7.360000pt;}
._c_c00468{width:9.013333pt;}
._10_c00468{width:10.026667pt;}
._f_c00468{width:11.253333pt;}
._12_c00468{width:14.453333pt;}
._13_c00468{width:16.266667pt;}
._a_c00468{width:17.386667pt;}
._b_c00468{width:18.986667pt;}
._1b_c00468{width:22.314685pt;}
._17_c00468{width:23.226715pt;}
._1a_c00468{width:24.128019pt;}
._18_c00468{width:25.946669pt;}
.fs1_c00468{font-size:45.333333pt;}
.fs0_c00468{font-size:53.333333pt;}
.y0_c00468{bottom:0.000000pt;}
.y27_c00468{bottom:57.266686pt;}
.y26_c00468{bottom:97.933353pt;}
.y25_c00468{bottom:111.666686pt;}
.y24_c00468{bottom:125.133353pt;}
.y23_c00468{bottom:138.600020pt;}
.y22_c00468{bottom:152.333353pt;}
.y21_c00468{bottom:165.800020pt;}
.y20_c00468{bottom:179.533353pt;}
.y1f_c00468{bottom:193.000020pt;}
.y1e_c00468{bottom:206.733353pt;}
.y1d_c00468{bottom:220.200020pt;}
.y1b_c00468{bottom:294.066686pt;}
.y1a_c00468{bottom:311.400020pt;}
.y19_c00468{bottom:328.333353pt;}
.y18_c00468{bottom:345.933353pt;}
.y17_c00468{bottom:363.200020pt;}
.y16_c00468{bottom:380.466686pt;}
.y15_c00468{bottom:397.466686pt;}
.y14_c00468{bottom:414.733353pt;}
.y13_c00468{bottom:432.000020pt;}
.y12_c00468{bottom:449.600020pt;}
.y11_c00468{bottom:466.866686pt;}
.y10_c00468{bottom:484.200020pt;}
.yf_c00468{bottom:501.466686pt;}
.ye_c00468{bottom:518.400020pt;}
.yd_c00468{bottom:535.666686pt;}
.yc_c00468{bottom:553.266686pt;}
.yb_c00468{bottom:570.266686pt;}
.ya_c00468{bottom:587.533353pt;}
.y9_c00468{bottom:605.133353pt;}
.y8_c00468{bottom:622.066686pt;}
.y7_c00468{bottom:639.666686pt;}
.y6_c00468{bottom:657.000020pt;}
.y5_c00468{bottom:673.933353pt;}
.y4_c00468{bottom:691.200020pt;}
.y3_c00468{bottom:708.466686pt;}
.y2_c00468{bottom:733.466686pt;}
.y1_c00468{bottom:750.733353pt;}
.y1c_c00468{bottom:788.333353pt;}
.h4_c00468{height:44.470052pt;}
.h5_c00468{height:44.492188pt;}
.h3_c00468{height:52.317708pt;}
.h2_c00468{height:52.343750pt;}
.h1_c00468{height:851.333333pt;}
.h0_c00468{height:851.533333pt;}
.w1_c00468{width:572.000000pt;}
.w0_c00468{width:572.133333pt;}
.x0_c00468{left:0.000000pt;}
.x4_c00468{left:80.333333pt;}
.x3_c00468{left:81.266667pt;}
.x5_c00468{left:86.400000pt;}
.x2_c00468{left:94.066667pt;}
.x1_c00468{left:95.333333pt;}
.x6_c00468{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bf695f9b8289044ec2fd93e8.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00469;src:url('chunks/assets/font_2e2b235e70547e66cc4ae986.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00469{word-spacing:-15.000000px;}
.ws0_c00469{word-spacing:-12.750000px;}
.ws2_c00469{word-spacing:0.000000px;}
._8_c00469{margin-left:-12.771252px;}
._9_c00469{margin-left:-11.327949px;}
._f_c00469{margin-left:-9.581085px;}
._16_c00469{margin-left:-8.202075px;}
._b_c00469{margin-left:-4.854126px;}
._2_c00469{margin-left:-3.672051px;}
._13_c00469{margin-left:-2.651850px;}
._3_c00469{margin-left:-1.644036px;}
._0_c00469{width:1.551012px;}
._6_c00469{width:3.248988px;}
._a_c00469{width:4.308060px;}
._1_c00469{width:5.411967px;}
._7_c00469{width:7.277976px;}
._5_c00469{width:9.060000px;}
._4_c00469{width:10.397976px;}
._c_c00469{width:11.726964px;}
._d_c00469{width:13.553928px;}
._e_c00469{width:16.046964px;}
._10_c00469{width:17.048988px;}
._11_c00469{width:18.896844px;}
._12_c00469{width:20.457072px;}
._15_c00469{width:24.989952px;}
._14_c00469{width:26.489964px;}
._18_c00469{width:27.497727px;}
._17_c00469{width:29.141772px;}
.fc1_c00469{color:transparent;}
.fc0_c00469{color:rgb(35,31,32);}
.fs0_c00469{font-size:51.000000px;}
.fs1_c00469{font-size:60.000000px;}
.y0_c00469{bottom:0.000000px;}
.y1f_c00469{bottom:64.425022px;}
.y1e_c00469{bottom:110.175022px;}
.y1d_c00469{bottom:125.625022px;}
.y1c_c00469{bottom:140.775022px;}
.y1b_c00469{bottom:156.225022px;}
.y1a_c00469{bottom:171.600022px;}
.y19_c00469{bottom:186.825022px;}
.y18_c00469{bottom:202.350022px;}
.y17_c00469{bottom:217.125022px;}
.y16_c00469{bottom:232.575022px;}
.y15_c00469{bottom:248.025022px;}
.y14_c00469{bottom:263.175022px;}
.y13_c00469{bottom:458.625022px;}
.y12_c00469{bottom:478.125022px;}
.y11_c00469{bottom:497.550022px;}
.y10_c00469{bottom:516.975022px;}
.yf_c00469{bottom:536.400022px;}
.ye_c00469{bottom:555.825022px;}
.yd_c00469{bottom:575.325022px;}
.yc_c00469{bottom:594.750022px;}
.yb_c00469{bottom:614.175022px;}
.ya_c00469{bottom:633.225022px;}
.y9_c00469{bottom:653.025022px;}
.y8_c00469{bottom:672.525022px;}
.y7_c00469{bottom:691.575022px;}
.y6_c00469{bottom:711.000022px;}
.y5_c00469{bottom:730.425022px;}
.y4_c00469{bottom:768.975022px;}
.y3_c00469{bottom:825.150022px;}
.y2_c00469{bottom:844.950022px;}
.y1_c00469{bottom:886.875022px;}
.h2_c00469{height:50.028809px;}
.h4_c00469{height:50.053711px;}
.h3_c00469{height:58.886719px;}
.h1_c00469{height:957.750000px;}
.h0_c00469{height:957.975000px;}
.w0_c00469{width:641.850030px;}
.w1_c00469{width:642.000000px;}
.x0_c00469{left:0.000000px;}
.x2_c00469{left:80.625000px;}
.x4_c00469{left:87.450000px;}
.x3_c00469{left:96.450000px;}
.x5_c00469{left:120.975000px;}
.x1_c00469{left:200.850000px;}
.x6_c00469{left:531.000000px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls0_c00469{letter-spacing:0.000000pt;}
.ws1_c00469{word-spacing:-13.333333pt;}
.ws0_c00469{word-spacing:-11.333333pt;}
.ws2_c00469{word-spacing:0.000000pt;}
._8_c00469{margin-left:-11.352224pt;}
._9_c00469{margin-left:-10.069288pt;}
._f_c00469{margin-left:-8.516520pt;}
._16_c00469{margin-left:-7.290733pt;}
._b_c00469{margin-left:-4.314779pt;}
._2_c00469{margin-left:-3.264045pt;}
._13_c00469{margin-left:-2.357200pt;}
._3_c00469{margin-left:-1.461365pt;}
._0_c00469{width:1.378677pt;}
._6_c00469{width:2.887989pt;}
._a_c00469{width:3.829387pt;}
._1_c00469{width:4.810637pt;}
._7_c00469{width:6.469312pt;}
._5_c00469{width:8.053333pt;}
._4_c00469{width:9.242645pt;}
._c_c00469{width:10.423968pt;}
._d_c00469{width:12.047936pt;}
._e_c00469{width:14.263968pt;}
._10_c00469{width:15.154656pt;}
._11_c00469{width:16.797195pt;}
._12_c00469{width:18.184064pt;}
._15_c00469{width:22.213291pt;}
._14_c00469{width:23.546635pt;}
._18_c00469{width:24.442424pt;}
._17_c00469{width:25.903797pt;}
.fs0_c00469{font-size:45.333333pt;}
.fs1_c00469{font-size:53.333333pt;}
.y0_c00469{bottom:0.000000pt;}
.y1f_c00469{bottom:57.266686pt;}
.y1e_c00469{bottom:97.933353pt;}
.y1d_c00469{bottom:111.666686pt;}
.y1c_c00469{bottom:125.133353pt;}
.y1b_c00469{bottom:138.866686pt;}
.y1a_c00469{bottom:152.533353pt;}
.y19_c00469{bottom:166.066686pt;}
.y18_c00469{bottom:179.866686pt;}
.y17_c00469{bottom:193.000020pt;}
.y16_c00469{bottom:206.733353pt;}
.y15_c00469{bottom:220.466686pt;}
.y14_c00469{bottom:233.933353pt;}
.y13_c00469{bottom:407.666686pt;}
.y12_c00469{bottom:425.000020pt;}
.y11_c00469{bottom:442.266686pt;}
.y10_c00469{bottom:459.533353pt;}
.yf_c00469{bottom:476.800020pt;}
.ye_c00469{bottom:494.066686pt;}
.yd_c00469{bottom:511.400020pt;}
.yc_c00469{bottom:528.666686pt;}
.yb_c00469{bottom:545.933353pt;}
.ya_c00469{bottom:562.866686pt;}
.y9_c00469{bottom:580.466686pt;}
.y8_c00469{bottom:597.800020pt;}
.y7_c00469{bottom:614.733353pt;}
.y6_c00469{bottom:632.000020pt;}
.y5_c00469{bottom:649.266686pt;}
.y4_c00469{bottom:683.533353pt;}
.y3_c00469{bottom:733.466686pt;}
.y2_c00469{bottom:751.066686pt;}
.y1_c00469{bottom:788.333353pt;}
.h2_c00469{height:44.470052pt;}
.h4_c00469{height:44.492188pt;}
.h3_c00469{height:52.343750pt;}
.h1_c00469{height:851.333333pt;}
.h0_c00469{height:851.533333pt;}
.w0_c00469{width:570.533360pt;}
.w1_c00469{width:570.666667pt;}
.x0_c00469{left:0.000000pt;}
.x2_c00469{left:71.666667pt;}
.x4_c00469{left:77.733333pt;}
.x3_c00469{left:85.733333pt;}
.x5_c00469{left:107.533333pt;}
.x1_c00469{left:178.533333pt;}
.x6_c00469{left:472.000000pt;}
}





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

.ir_c00470:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00470{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00470;src:url('chunks/assets/font_5a4ef8b0d8f52677052716ca.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00470;src:url('chunks/assets/font_02b0ed2982ccdf429aefcda2.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00470{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_c00470{vertical-align:0.000000px;}
.ls0_c00470{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00470{word-spacing:-15.000000px;}
.ws0_c00470{word-spacing:-12.750000px;}
.ws2_c00470{word-spacing:0.000000px;}
._d_c00470{margin-left:-24.666006px;}
._c_c00470{margin-left:-20.796036px;}
._15_c00470{margin-left:-15.978000px;}
._11_c00470{margin-left:-11.199189px;}
._5_c00470{margin-left:-9.600000px;}
._7_c00470{margin-left:-8.151105px;}
._8_c00470{margin-left:-6.548895px;}
._4_c00470{margin-left:-4.776036px;}
._1_c00470{margin-left:-3.300006px;}
._0_c00470{margin-left:-1.760979px;}
._2_c00470{width:1.839009px;}
._3_c00470{width:3.320967px;}
._a_c00470{width:4.658877px;}
._b_c00470{width:6.060024px;}
._14_c00470{width:7.562925px;}
._13_c00470{width:8.765946px;}
._10_c00470{width:9.962973px;}
._12_c00470{width:11.400000px;}
._f_c00470{width:13.343964px;}
._18_c00470{width:16.029045px;}
._6_c00470{width:17.100000px;}
._9_c00470{width:18.660000px;}
._e_c00470{width:20.507928px;}
._16_c00470{width:24.072000px;}
._17_c00470{width:25.572012px;}
.fc1_c00470{color:transparent;}
.fc0_c00470{color:rgb(35,31,32);}
.fs0_c00470{font-size:51.000000px;}
.fs1_c00470{font-size:60.000000px;}
.y0_c00470{bottom:0.000000px;}
.y2a_c00470{bottom:64.425022px;}
.y29_c00470{bottom:110.175022px;}
.y28_c00470{bottom:125.325022px;}
.y27_c00470{bottom:141.000022px;}
.y26_c00470{bottom:155.925022px;}
.y25_c00470{bottom:171.375022px;}
.y24_c00470{bottom:186.525022px;}
.y23_c00470{bottom:202.350022px;}
.y22_c00470{bottom:217.125022px;}
.y21_c00470{bottom:232.575022px;}
.y20_c00470{bottom:247.725022px;}
.y1f_c00470{bottom:263.550022px;}
.y1e_c00470{bottom:278.325022px;}
.y1d_c00470{bottom:293.775022px;}
.y1c_c00470{bottom:308.925022px;}
.y1b_c00470{bottom:324.375022px;}
.y1a_c00470{bottom:339.525022px;}
.y19_c00470{bottom:355.350022px;}
.y18_c00470{bottom:370.125022px;}
.y17_c00470{bottom:385.950022px;}
.y16_c00470{bottom:400.725022px;}
.y15_c00470{bottom:457.950022px;}
.y14_c00470{bottom:477.375022px;}
.y13_c00470{bottom:496.425022px;}
.y12_c00470{bottom:515.925022px;}
.y11_c00470{bottom:544.350022px;}
.y10_c00470{bottom:563.775022px;}
.yf_c00470{bottom:583.200022px;}
.ye_c00470{bottom:602.625022px;}
.yd_c00470{bottom:631.125022px;}
.yc_c00470{bottom:650.925022px;}
.yb_c00470{bottom:670.350022px;}
.ya_c00470{bottom:689.400022px;}
.y9_c00470{bottom:708.825022px;}
.y8_c00470{bottom:728.625022px;}
.y7_c00470{bottom:747.750022px;}
.y6_c00470{bottom:767.175022px;}
.y5_c00470{bottom:786.600022px;}
.y4_c00470{bottom:806.025022px;}
.y3_c00470{bottom:825.525022px;}
.y2_c00470{bottom:844.950022px;}
.y1_c00470{bottom:886.875022px;}
.h2_c00470{height:50.028809px;}
.h5_c00470{height:50.053711px;}
.h4_c00470{height:58.857422px;}
.h3_c00470{height:58.886719px;}
.h1_c00470{height:957.750000px;}
.h0_c00470{height:957.975000px;}
.w1_c00470{width:643.500000px;}
.w0_c00470{width:643.650000px;}
.x0_c00470{left:0.000000px;}
.x1_c00470{left:90.750000px;}
.x4_c00470{left:97.200000px;}
.x3_c00470{left:106.200000px;}
.x2_c00470{left:107.250000px;}
.x5_c00470{left:131.025000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls0_c00470{letter-spacing:0.000000pt;}
.ws1_c00470{word-spacing:-13.333333pt;}
.ws0_c00470{word-spacing:-11.333333pt;}
.ws2_c00470{word-spacing:0.000000pt;}
._d_c00470{margin-left:-21.925339pt;}
._c_c00470{margin-left:-18.485365pt;}
._15_c00470{margin-left:-14.202667pt;}
._11_c00470{margin-left:-9.954835pt;}
._5_c00470{margin-left:-8.533333pt;}
._7_c00470{margin-left:-7.245427pt;}
._8_c00470{margin-left:-5.821240pt;}
._4_c00470{margin-left:-4.245365pt;}
._1_c00470{margin-left:-2.933339pt;}
._0_c00470{margin-left:-1.565315pt;}
._2_c00470{width:1.634675pt;}
._3_c00470{width:2.951971pt;}
._a_c00470{width:4.141224pt;}
._b_c00470{width:5.386688pt;}
._14_c00470{width:6.722600pt;}
._13_c00470{width:7.791952pt;}
._10_c00470{width:8.855976pt;}
._12_c00470{width:10.133333pt;}
._f_c00470{width:11.861301pt;}
._18_c00470{width:14.248040pt;}
._6_c00470{width:15.200000pt;}
._9_c00470{width:16.586667pt;}
._e_c00470{width:18.229269pt;}
._16_c00470{width:21.397333pt;}
._17_c00470{width:22.730677pt;}
.fs0_c00470{font-size:45.333333pt;}
.fs1_c00470{font-size:53.333333pt;}
.y0_c00470{bottom:0.000000pt;}
.y2a_c00470{bottom:57.266686pt;}
.y29_c00470{bottom:97.933353pt;}
.y28_c00470{bottom:111.400020pt;}
.y27_c00470{bottom:125.333353pt;}
.y26_c00470{bottom:138.600020pt;}
.y25_c00470{bottom:152.333353pt;}
.y24_c00470{bottom:165.800020pt;}
.y23_c00470{bottom:179.866686pt;}
.y22_c00470{bottom:193.000020pt;}
.y21_c00470{bottom:206.733353pt;}
.y20_c00470{bottom:220.200020pt;}
.y1f_c00470{bottom:234.266686pt;}
.y1e_c00470{bottom:247.400020pt;}
.y1d_c00470{bottom:261.133353pt;}
.y1c_c00470{bottom:274.600020pt;}
.y1b_c00470{bottom:288.333353pt;}
.y1a_c00470{bottom:301.800020pt;}
.y19_c00470{bottom:315.866686pt;}
.y18_c00470{bottom:329.000020pt;}
.y17_c00470{bottom:343.066686pt;}
.y16_c00470{bottom:356.200020pt;}
.y15_c00470{bottom:407.066686pt;}
.y14_c00470{bottom:424.333353pt;}
.y13_c00470{bottom:441.266686pt;}
.y12_c00470{bottom:458.600020pt;}
.y11_c00470{bottom:483.866686pt;}
.y10_c00470{bottom:501.133353pt;}
.yf_c00470{bottom:518.400020pt;}
.ye_c00470{bottom:535.666686pt;}
.yd_c00470{bottom:561.000020pt;}
.yc_c00470{bottom:578.600020pt;}
.yb_c00470{bottom:595.866686pt;}
.ya_c00470{bottom:612.800020pt;}
.y9_c00470{bottom:630.066686pt;}
.y8_c00470{bottom:647.666686pt;}
.y7_c00470{bottom:664.666686pt;}
.y6_c00470{bottom:681.933353pt;}
.y5_c00470{bottom:699.200020pt;}
.y4_c00470{bottom:716.466686pt;}
.y3_c00470{bottom:733.800020pt;}
.y2_c00470{bottom:751.066686pt;}
.y1_c00470{bottom:788.333353pt;}
.h2_c00470{height:44.470052pt;}
.h5_c00470{height:44.492188pt;}
.h4_c00470{height:52.317708pt;}
.h3_c00470{height:52.343750pt;}
.h1_c00470{height:851.333333pt;}
.h0_c00470{height:851.533333pt;}
.w1_c00470{width:572.000000pt;}
.w0_c00470{width:572.133333pt;}
.x0_c00470{left:0.000000pt;}
.x1_c00470{left:80.666667pt;}
.x4_c00470{left:86.400000pt;}
.x3_c00470{left:94.400000pt;}
.x2_c00470{left:95.333333pt;}
.x5_c00470{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_51c883375beba423a7ec5c61.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00471;src:url('chunks/assets/font_ad43f1a85f53d20bae22336b.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);}
.m1_c00471{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_c00471{vertical-align:0.000000px;}
.ls0_c00471{letter-spacing:0.000000px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00471{word-spacing:-15.000000px;}
.ws0_c00471{word-spacing:-12.750000px;}
.ws2_c00471{word-spacing:0.000000px;}
._4_c00471{margin-left:-12.600000px;}
._c_c00471{margin-left:-10.920000px;}
._b_c00471{margin-left:-9.480000px;}
._f_c00471{margin-left:-6.540000px;}
._13_c00471{margin-left:-5.340000px;}
._3_c00471{margin-left:-3.540000px;}
._14_c00471{margin-left:-2.460000px;}
._2_c00471{margin-left:-1.320000px;}
._0_c00471{width:1.620000px;}
._7_c00471{width:2.820000px;}
._6_c00471{width:4.440000px;}
._10_c00471{width:5.460000px;}
._5_c00471{width:6.780000px;}
._8_c00471{width:7.800000px;}
._a_c00471{width:9.120000px;}
._e_c00471{width:11.100000px;}
._9_c00471{width:12.360000px;}
._d_c00471{width:13.620000px;}
._1_c00471{width:16.380000px;}
._12_c00471{width:17.520000px;}
._11_c00471{width:20.100000px;}
._17_c00471{width:23.970030px;}
._16_c00471{width:25.470042px;}
._15_c00471{width:29.250093px;}
.fc1_c00471{color:transparent;}
.fc0_c00471{color:rgb(35,31,32);}
.fs1_c00471{font-size:51.000000px;}
.fs0_c00471{font-size:60.000000px;}
.y0_c00471{bottom:0.000000px;}
.y25_c00471{bottom:64.425022px;}
.y24_c00471{bottom:110.175022px;}
.y23_c00471{bottom:125.325022px;}
.y22_c00471{bottom:141.150022px;}
.y21_c00471{bottom:155.925022px;}
.y20_c00471{bottom:171.750022px;}
.y1f_c00471{bottom:186.525022px;}
.y1e_c00471{bottom:201.975022px;}
.y1d_c00471{bottom:217.125022px;}
.y1c_c00471{bottom:284.025022px;}
.y1b_c00471{bottom:303.150022px;}
.y1a_c00471{bottom:322.650022px;}
.y19_c00471{bottom:342.075022px;}
.y18_c00471{bottom:361.500022px;}
.y17_c00471{bottom:380.925022px;}
.y16_c00471{bottom:400.350022px;}
.y15_c00471{bottom:419.775022px;}
.y14_c00471{bottom:439.200022px;}
.y13_c00471{bottom:477.375022px;}
.y11_c00471{bottom:533.925022px;}
.y10_c00471{bottom:553.725022px;}
.yf_c00471{bottom:572.775022px;}
.ye_c00471{bottom:592.200022px;}
.yd_c00471{bottom:611.625022px;}
.yc_c00471{bottom:631.500022px;}
.yb_c00471{bottom:650.925022px;}
.ya_c00471{bottom:670.350022px;}
.y9_c00471{bottom:689.400022px;}
.y8_c00471{bottom:709.125022px;}
.y7_c00471{bottom:728.625022px;}
.y6_c00471{bottom:748.125022px;}
.y5_c00471{bottom:767.175022px;}
.y4_c00471{bottom:786.525022px;}
.y3_c00471{bottom:806.025022px;}
.y2_c00471{bottom:825.525022px;}
.y1_c00471{bottom:844.575022px;}
.y12_c00471{bottom:886.875022px;}
.h3_c00471{height:50.028809px;}
.h4_c00471{height:50.053711px;}
.h2_c00471{height:58.886719px;}
.h1_c00471{height:957.750000px;}
.h0_c00471{height:957.975000px;}
.w0_c00471{width:641.850030px;}
.w1_c00471{width:642.000000px;}
.x0_c00471{left:0.000000px;}
.x3_c00471{left:80.250000px;}
.x1_c00471{left:81.375000px;}
.x2_c00471{left:87.150000px;}
.x5_c00471{left:120.975000px;}
.x4_c00471{left:200.850000px;}
.x6_c00471{left:531.000000px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls0_c00471{letter-spacing:0.000000pt;}
.ws1_c00471{word-spacing:-13.333333pt;}
.ws0_c00471{word-spacing:-11.333333pt;}
.ws2_c00471{word-spacing:0.000000pt;}
._4_c00471{margin-left:-11.200000pt;}
._c_c00471{margin-left:-9.706667pt;}
._b_c00471{margin-left:-8.426667pt;}
._f_c00471{margin-left:-5.813333pt;}
._13_c00471{margin-left:-4.746667pt;}
._3_c00471{margin-left:-3.146667pt;}
._14_c00471{margin-left:-2.186667pt;}
._2_c00471{margin-left:-1.173333pt;}
._0_c00471{width:1.440000pt;}
._7_c00471{width:2.506667pt;}
._6_c00471{width:3.946667pt;}
._10_c00471{width:4.853333pt;}
._5_c00471{width:6.026667pt;}
._8_c00471{width:6.933333pt;}
._a_c00471{width:8.106667pt;}
._e_c00471{width:9.866667pt;}
._9_c00471{width:10.986667pt;}
._d_c00471{width:12.106667pt;}
._1_c00471{width:14.560000pt;}
._12_c00471{width:15.573333pt;}
._11_c00471{width:17.866667pt;}
._17_c00471{width:21.306693pt;}
._16_c00471{width:22.640037pt;}
._15_c00471{width:26.000083pt;}
.fs1_c00471{font-size:45.333333pt;}
.fs0_c00471{font-size:53.333333pt;}
.y0_c00471{bottom:0.000000pt;}
.y25_c00471{bottom:57.266686pt;}
.y24_c00471{bottom:97.933353pt;}
.y23_c00471{bottom:111.400020pt;}
.y22_c00471{bottom:125.466686pt;}
.y21_c00471{bottom:138.600020pt;}
.y20_c00471{bottom:152.666686pt;}
.y1f_c00471{bottom:165.800020pt;}
.y1e_c00471{bottom:179.533353pt;}
.y1d_c00471{bottom:193.000020pt;}
.y1c_c00471{bottom:252.466686pt;}
.y1b_c00471{bottom:269.466686pt;}
.y1a_c00471{bottom:286.800020pt;}
.y19_c00471{bottom:304.066686pt;}
.y18_c00471{bottom:321.333353pt;}
.y17_c00471{bottom:338.600020pt;}
.y16_c00471{bottom:355.866686pt;}
.y15_c00471{bottom:373.133353pt;}
.y14_c00471{bottom:390.400020pt;}
.y13_c00471{bottom:424.333353pt;}
.y11_c00471{bottom:474.600020pt;}
.y10_c00471{bottom:492.200020pt;}
.yf_c00471{bottom:509.133353pt;}
.ye_c00471{bottom:526.400020pt;}
.yd_c00471{bottom:543.666686pt;}
.yc_c00471{bottom:561.333353pt;}
.yb_c00471{bottom:578.600020pt;}
.ya_c00471{bottom:595.866686pt;}
.y9_c00471{bottom:612.800020pt;}
.y8_c00471{bottom:630.333353pt;}
.y7_c00471{bottom:647.666686pt;}
.y6_c00471{bottom:665.000020pt;}
.y5_c00471{bottom:681.933353pt;}
.y4_c00471{bottom:699.133353pt;}
.y3_c00471{bottom:716.466686pt;}
.y2_c00471{bottom:733.800020pt;}
.y1_c00471{bottom:750.733353pt;}
.y12_c00471{bottom:788.333353pt;}
.h3_c00471{height:44.470052pt;}
.h4_c00471{height:44.492188pt;}
.h2_c00471{height:52.343750pt;}
.h1_c00471{height:851.333333pt;}
.h0_c00471{height:851.533333pt;}
.w0_c00471{width:570.533360pt;}
.w1_c00471{width:570.666667pt;}
.x0_c00471{left:0.000000pt;}
.x3_c00471{left:71.333333pt;}
.x1_c00471{left:72.333333pt;}
.x2_c00471{left:77.466667pt;}
.x5_c00471{left:107.533333pt;}
.x4_c00471{left:178.533333pt;}
.x6_c00471{left:472.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_48b4bc9ad21828760dc06126.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00472;src:url('chunks/assets/font_3843d1c40e06040ae37bd73f.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);}
.m1_c00472{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_c00472{vertical-align:0.000000px;}
.ls0_c00472{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00472{word-spacing:-15.000000px;}
.ws0_c00472{word-spacing:-12.750000px;}
.ws2_c00472{word-spacing:0.000000px;}
._d_c00472{margin-left:-15.600000px;}
._2_c00472{margin-left:-10.500000px;}
._1_c00472{margin-left:-8.700000px;}
._11_c00472{margin-left:-7.020000px;}
._b_c00472{margin-left:-5.640000px;}
._e_c00472{margin-left:-3.600000px;}
._0_c00472{margin-left:-2.160000px;}
._9_c00472{margin-left:-1.140000px;}
._5_c00472{width:1.200000px;}
._3_c00472{width:2.340000px;}
._12_c00472{width:3.360000px;}
._7_c00472{width:5.160000px;}
._8_c00472{width:6.840000px;}
._18_c00472{width:8.400000px;}
._17_c00472{width:9.840000px;}
._16_c00472{width:10.920000px;}
._4_c00472{width:12.300000px;}
._6_c00472{width:13.860000px;}
._1a_c00472{width:14.949012px;}
._f_c00472{width:16.200000px;}
._10_c00472{width:17.520000px;}
._a_c00472{width:18.720000px;}
._c_c00472{width:20.100000px;}
._15_c00472{width:21.900000px;}
._13_c00472{width:23.160000px;}
._14_c00472{width:24.240000px;}
._19_c00472{width:25.350054px;}
.fc1_c00472{color:transparent;}
.fc0_c00472{color:rgb(35,31,32);}
.fs1_c00472{font-size:51.000000px;}
.fs0_c00472{font-size:60.000000px;}
.y0_c00472{bottom:0.000000px;}
.y2b_c00472{bottom:64.800022px;}
.y2a_c00472{bottom:110.550022px;}
.y29_c00472{bottom:125.625022px;}
.y28_c00472{bottom:140.775022px;}
.y27_c00472{bottom:155.925022px;}
.y26_c00472{bottom:171.750022px;}
.y25_c00472{bottom:186.525022px;}
.y24_c00472{bottom:202.350022px;}
.y23_c00472{bottom:217.125022px;}
.y22_c00472{bottom:232.575022px;}
.y21_c00472{bottom:248.025022px;}
.y20_c00472{bottom:263.175022px;}
.y1f_c00472{bottom:278.625022px;}
.y1e_c00472{bottom:293.775022px;}
.y1d_c00472{bottom:309.225022px;}
.y1c_c00472{bottom:324.750022px;}
.y1b_c00472{bottom:339.525022px;}
.y1a_c00472{bottom:355.350022px;}
.y19_c00472{bottom:370.425022px;}
.y18_c00472{bottom:385.575022px;}
.y17_c00472{bottom:400.725022px;}
.y15_c00472{bottom:456.150022px;}
.y14_c00472{bottom:475.950022px;}
.y13_c00472{bottom:495.000022px;}
.y12_c00472{bottom:514.425022px;}
.y11_c00472{bottom:534.225022px;}
.y10_c00472{bottom:553.725022px;}
.yf_c00472{bottom:573.150022px;}
.ye_c00472{bottom:592.200022px;}
.yd_c00472{bottom:612.000022px;}
.yc_c00472{bottom:631.425022px;}
.yb_c00472{bottom:650.925022px;}
.ya_c00472{bottom:670.350022px;}
.y9_c00472{bottom:689.400022px;}
.y8_c00472{bottom:709.200022px;}
.y7_c00472{bottom:728.325022px;}
.y6_c00472{bottom:747.750022px;}
.y5_c00472{bottom:767.175022px;}
.y4_c00472{bottom:786.225022px;}
.y3_c00472{bottom:805.725022px;}
.y2_c00472{bottom:825.525022px;}
.y1_c00472{bottom:844.575022px;}
.y16_c00472{bottom:886.875022px;}
.h3_c00472{height:50.028809px;}
.h4_c00472{height:50.053711px;}
.h2_c00472{height:58.886719px;}
.h1_c00472{height:957.750000px;}
.h0_c00472{height:957.975000px;}
.w1_c00472{width:643.500000px;}
.w0_c00472{width:643.650000px;}
.x0_c00472{left:0.000000px;}
.x2_c00472{left:90.375000px;}
.x1_c00472{left:91.800000px;}
.x4_c00472{left:97.200000px;}
.x3_c00472{left:107.250000px;}
.x5_c00472{left:131.400000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls0_c00472{letter-spacing:0.000000pt;}
.ws1_c00472{word-spacing:-13.333333pt;}
.ws0_c00472{word-spacing:-11.333333pt;}
.ws2_c00472{word-spacing:0.000000pt;}
._d_c00472{margin-left:-13.866667pt;}
._2_c00472{margin-left:-9.333333pt;}
._1_c00472{margin-left:-7.733333pt;}
._11_c00472{margin-left:-6.240000pt;}
._b_c00472{margin-left:-5.013333pt;}
._e_c00472{margin-left:-3.200000pt;}
._0_c00472{margin-left:-1.920000pt;}
._9_c00472{margin-left:-1.013333pt;}
._5_c00472{width:1.066667pt;}
._3_c00472{width:2.080000pt;}
._12_c00472{width:2.986667pt;}
._7_c00472{width:4.586667pt;}
._8_c00472{width:6.080000pt;}
._18_c00472{width:7.466667pt;}
._17_c00472{width:8.746667pt;}
._16_c00472{width:9.706667pt;}
._4_c00472{width:10.933333pt;}
._6_c00472{width:12.320000pt;}
._1a_c00472{width:13.288011pt;}
._f_c00472{width:14.400000pt;}
._10_c00472{width:15.573333pt;}
._a_c00472{width:16.640000pt;}
._c_c00472{width:17.866667pt;}
._15_c00472{width:19.466667pt;}
._13_c00472{width:20.586667pt;}
._14_c00472{width:21.546667pt;}
._19_c00472{width:22.533381pt;}
.fs1_c00472{font-size:45.333333pt;}
.fs0_c00472{font-size:53.333333pt;}
.y0_c00472{bottom:0.000000pt;}
.y2b_c00472{bottom:57.600020pt;}
.y2a_c00472{bottom:98.266686pt;}
.y29_c00472{bottom:111.666686pt;}
.y28_c00472{bottom:125.133353pt;}
.y27_c00472{bottom:138.600020pt;}
.y26_c00472{bottom:152.666686pt;}
.y25_c00472{bottom:165.800020pt;}
.y24_c00472{bottom:179.866686pt;}
.y23_c00472{bottom:193.000020pt;}
.y22_c00472{bottom:206.733353pt;}
.y21_c00472{bottom:220.466686pt;}
.y20_c00472{bottom:233.933353pt;}
.y1f_c00472{bottom:247.666686pt;}
.y1e_c00472{bottom:261.133353pt;}
.y1d_c00472{bottom:274.866686pt;}
.y1c_c00472{bottom:288.666686pt;}
.y1b_c00472{bottom:301.800020pt;}
.y1a_c00472{bottom:315.866686pt;}
.y19_c00472{bottom:329.266686pt;}
.y18_c00472{bottom:342.733353pt;}
.y17_c00472{bottom:356.200020pt;}
.y15_c00472{bottom:405.466686pt;}
.y14_c00472{bottom:423.066686pt;}
.y13_c00472{bottom:440.000020pt;}
.y12_c00472{bottom:457.266686pt;}
.y11_c00472{bottom:474.866686pt;}
.y10_c00472{bottom:492.200020pt;}
.yf_c00472{bottom:509.466686pt;}
.ye_c00472{bottom:526.400020pt;}
.yd_c00472{bottom:544.000020pt;}
.yc_c00472{bottom:561.266686pt;}
.yb_c00472{bottom:578.600020pt;}
.ya_c00472{bottom:595.866686pt;}
.y9_c00472{bottom:612.800020pt;}
.y8_c00472{bottom:630.400020pt;}
.y7_c00472{bottom:647.400020pt;}
.y6_c00472{bottom:664.666686pt;}
.y5_c00472{bottom:681.933353pt;}
.y4_c00472{bottom:698.866686pt;}
.y3_c00472{bottom:716.200020pt;}
.y2_c00472{bottom:733.800020pt;}
.y1_c00472{bottom:750.733353pt;}
.y16_c00472{bottom:788.333353pt;}
.h3_c00472{height:44.470052pt;}
.h4_c00472{height:44.492188pt;}
.h2_c00472{height:52.343750pt;}
.h1_c00472{height:851.333333pt;}
.h0_c00472{height:851.533333pt;}
.w1_c00472{width:572.000000pt;}
.w0_c00472{width:572.133333pt;}
.x0_c00472{left:0.000000pt;}
.x2_c00472{left:80.333333pt;}
.x1_c00472{left:81.600000pt;}
.x4_c00472{left:86.400000pt;}
.x3_c00472{left:95.333333pt;}
.x5_c00472{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_22e18d0744358af49480b578.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00473;src:url('chunks/assets/font_3750f9961377a0ad41a41ddf.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00473{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.ls0_c00473{letter-spacing:0.000000px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00473{word-spacing:-15.000000px;}
.ws1_c00473{word-spacing:-12.750000px;}
.ws2_c00473{word-spacing:0.000000px;}
._12_c00473{margin-left:-17.045781px;}
._11_c00473{margin-left:-14.892054px;}
._9_c00473{margin-left:-11.537841px;}
._c_c00473{margin-left:-9.525180px;}
._19_c00473{margin-left:-8.480652px;}
._8_c00473{margin-left:-6.671967px;}
._7_c00473{margin-left:-5.120943px;}
._2_c00473{margin-left:-3.672051px;}
._3_c00473{margin-left:-1.644036px;}
._0_c00473{width:1.551012px;}
._6_c00473{width:3.300000px;}
._d_c00473{width:4.341549px;}
._1_c00473{width:5.411967px;}
._5_c00473{width:7.400892px;}
._4_c00473{width:8.906964px;}
._10_c00473{width:10.059072px;}
._e_c00473{width:11.114820px;}
._1a_c00473{width:12.206952px;}
._f_c00473{width:13.773381px;}
._a_c00473{width:16.106964px;}
._b_c00473{width:18.035952px;}
._15_c00473{width:19.200000px;}
._13_c00473{width:20.400000px;}
._17_c00473{width:21.492054px;}
._14_c00473{width:22.557087px;}
._16_c00473{width:23.726943px;}
._18_c00473{width:24.984018px;}
._1c_c00473{width:27.126135px;}
._1b_c00473{width:29.154252px;}
.fc1_c00473{color:transparent;}
.fc0_c00473{color:rgb(35,31,32);}
.fs0_c00473{font-size:51.000000px;}
.fs1_c00473{font-size:60.000000px;}
.y0_c00473{bottom:0.000000px;}
.y28_c00473{bottom:64.425022px;}
.y27_c00473{bottom:110.175022px;}
.y26_c00473{bottom:125.325022px;}
.y25_c00473{bottom:141.150022px;}
.y24_c00473{bottom:155.925022px;}
.y23_c00473{bottom:171.375022px;}
.y22_c00473{bottom:186.525022px;}
.y21_c00473{bottom:201.975022px;}
.y20_c00473{bottom:217.125022px;}
.y1f_c00473{bottom:232.575022px;}
.y1e_c00473{bottom:248.025022px;}
.y1d_c00473{bottom:263.550022px;}
.y1c_c00473{bottom:278.325022px;}
.y1b_c00473{bottom:358.950022px;}
.y1a_c00473{bottom:378.750022px;}
.y19_c00473{bottom:398.175022px;}
.y18_c00473{bottom:417.225022px;}
.y17_c00473{bottom:436.725022px;}
.y16_c00473{bottom:456.525022px;}
.y15_c00473{bottom:475.950022px;}
.y14_c00473{bottom:495.075022px;}
.y13_c00473{bottom:514.500022px;}
.y12_c00473{bottom:533.925022px;}
.y11_c00473{bottom:553.350022px;}
.y10_c00473{bottom:572.775022px;}
.yf_c00473{bottom:592.575022px;}
.ye_c00473{bottom:611.625022px;}
.yd_c00473{bottom:631.425022px;}
.yc_c00473{bottom:650.925022px;}
.yb_c00473{bottom:670.350022px;}
.ya_c00473{bottom:689.400022px;}
.y9_c00473{bottom:708.900022px;}
.y8_c00473{bottom:728.325022px;}
.y7_c00473{bottom:747.750022px;}
.y6_c00473{bottom:767.175022px;}
.y5_c00473{bottom:786.600022px;}
.y4_c00473{bottom:805.725022px;}
.y3_c00473{bottom:825.150022px;}
.y2_c00473{bottom:844.950022px;}
.y1_c00473{bottom:886.875022px;}
.h2_c00473{height:50.028809px;}
.h4_c00473{height:50.053711px;}
.h3_c00473{height:58.886719px;}
.h1_c00473{height:957.750000px;}
.h0_c00473{height:957.975000px;}
.w0_c00473{width:641.850030px;}
.w1_c00473{width:642.000000px;}
.x0_c00473{left:0.000000px;}
.x2_c00473{left:81.375000px;}
.x4_c00473{left:87.450000px;}
.x3_c00473{left:97.200000px;}
.x5_c00473{left:121.350000px;}
.x1_c00473{left:200.850000px;}
.x6_c00473{left:531.000000px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls0_c00473{letter-spacing:0.000000pt;}
.ws0_c00473{word-spacing:-13.333333pt;}
.ws1_c00473{word-spacing:-11.333333pt;}
.ws2_c00473{word-spacing:0.000000pt;}
._12_c00473{margin-left:-15.151805pt;}
._11_c00473{margin-left:-13.237381pt;}
._9_c00473{margin-left:-10.255859pt;}
._c_c00473{margin-left:-8.466827pt;}
._19_c00473{margin-left:-7.538357pt;}
._8_c00473{margin-left:-5.930637pt;}
._7_c00473{margin-left:-4.551949pt;}
._2_c00473{margin-left:-3.264045pt;}
._3_c00473{margin-left:-1.461365pt;}
._0_c00473{width:1.378677pt;}
._6_c00473{width:2.933333pt;}
._d_c00473{width:3.859155pt;}
._1_c00473{width:4.810637pt;}
._5_c00473{width:6.578571pt;}
._4_c00473{width:7.917301pt;}
._10_c00473{width:8.941397pt;}
._e_c00473{width:9.879840pt;}
._1a_c00473{width:10.850624pt;}
._f_c00473{width:12.243005pt;}
._a_c00473{width:14.317301pt;}
._b_c00473{width:16.031957pt;}
._15_c00473{width:17.066667pt;}
._13_c00473{width:18.133333pt;}
._17_c00473{width:19.104048pt;}
._14_c00473{width:20.050744pt;}
._16_c00473{width:21.090616pt;}
._18_c00473{width:22.208016pt;}
._1c_c00473{width:24.112120pt;}
._1b_c00473{width:25.914891pt;}
.fs0_c00473{font-size:45.333333pt;}
.fs1_c00473{font-size:53.333333pt;}
.y0_c00473{bottom:0.000000pt;}
.y28_c00473{bottom:57.266686pt;}
.y27_c00473{bottom:97.933353pt;}
.y26_c00473{bottom:111.400020pt;}
.y25_c00473{bottom:125.466686pt;}
.y24_c00473{bottom:138.600020pt;}
.y23_c00473{bottom:152.333353pt;}
.y22_c00473{bottom:165.800020pt;}
.y21_c00473{bottom:179.533353pt;}
.y20_c00473{bottom:193.000020pt;}
.y1f_c00473{bottom:206.733353pt;}
.y1e_c00473{bottom:220.466686pt;}
.y1d_c00473{bottom:234.266686pt;}
.y1c_c00473{bottom:247.400020pt;}
.y1b_c00473{bottom:319.066686pt;}
.y1a_c00473{bottom:336.666686pt;}
.y19_c00473{bottom:353.933353pt;}
.y18_c00473{bottom:370.866686pt;}
.y17_c00473{bottom:388.200020pt;}
.y16_c00473{bottom:405.800020pt;}
.y15_c00473{bottom:423.066686pt;}
.y14_c00473{bottom:440.066686pt;}
.y13_c00473{bottom:457.333353pt;}
.y12_c00473{bottom:474.600020pt;}
.y11_c00473{bottom:491.866686pt;}
.y10_c00473{bottom:509.133353pt;}
.yf_c00473{bottom:526.733353pt;}
.ye_c00473{bottom:543.666686pt;}
.yd_c00473{bottom:561.266686pt;}
.yc_c00473{bottom:578.600020pt;}
.yb_c00473{bottom:595.866686pt;}
.ya_c00473{bottom:612.800020pt;}
.y9_c00473{bottom:630.133353pt;}
.y8_c00473{bottom:647.400020pt;}
.y7_c00473{bottom:664.666686pt;}
.y6_c00473{bottom:681.933353pt;}
.y5_c00473{bottom:699.200020pt;}
.y4_c00473{bottom:716.200020pt;}
.y3_c00473{bottom:733.466686pt;}
.y2_c00473{bottom:751.066686pt;}
.y1_c00473{bottom:788.333353pt;}
.h2_c00473{height:44.470052pt;}
.h4_c00473{height:44.492188pt;}
.h3_c00473{height:52.343750pt;}
.h1_c00473{height:851.333333pt;}
.h0_c00473{height:851.533333pt;}
.w0_c00473{width:570.533360pt;}
.w1_c00473{width:570.666667pt;}
.x0_c00473{left:0.000000pt;}
.x2_c00473{left:72.333333pt;}
.x4_c00473{left:77.733333pt;}
.x3_c00473{left:86.400000pt;}
.x5_c00473{left:107.866667pt;}
.x1_c00473{left:178.533333pt;}
.x6_c00473{left:472.000000pt;}
}





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

.ir_c00474:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00474{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00474;src:url('chunks/assets/font_3843d1c40e06040ae37bd73f.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00474;src:url('chunks/assets/font_e10f1e250ba5168dd035eb84.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00474{letter-spacing:0.000000px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00474{word-spacing:-15.000000px;}
.ws1_c00474{word-spacing:0.000000px;}
._8_c00474{margin-left:-10.787928px;}
._7_c00474{margin-left:-9.456036px;}
._d_c00474{margin-left:-7.440120px;}
._b_c00474{margin-left:-5.633874px;}
._13_c00474{margin-left:-4.623174px;}
._1_c00474{margin-left:-3.300006px;}
._0_c00474{margin-left:-1.760979px;}
._2_c00474{width:1.839009px;}
._3_c00474{width:3.320967px;}
._6_c00474{width:4.839009px;}
._12_c00474{width:6.162342px;}
._9_c00474{width:7.436847px;}
._14_c00474{width:8.498946px;}
._a_c00474{width:9.560991px;}
._c_c00474{width:10.823964px;}
._4_c00474{width:11.919033px;}
._5_c00474{width:13.025970px;}
._16_c00474{width:14.145132px;}
._15_c00474{width:15.867018px;}
._e_c00474{width:17.372715px;}
._11_c00474{width:24.587916px;}
._f_c00474{width:26.460000px;}
._10_c00474{width:27.821982px;}
.fc1_c00474{color:transparent;}
.fc0_c00474{color:rgb(35,31,32);}
.fs0_c00474{font-size:51.000000px;}
.fs1_c00474{font-size:60.000000px;}
.y0_c00474{bottom:0.000000px;}
.y29_c00474{bottom:64.800022px;}
.y28_c00474{bottom:110.175022px;}
.y27_c00474{bottom:125.325022px;}
.y26_c00474{bottom:140.700022px;}
.y25_c00474{bottom:156.225022px;}
.y24_c00474{bottom:171.750022px;}
.y23_c00474{bottom:186.825022px;}
.y22_c00474{bottom:201.975022px;}
.y21_c00474{bottom:217.125022px;}
.y20_c00474{bottom:232.575022px;}
.y1f_c00474{bottom:248.025022px;}
.y1e_c00474{bottom:263.550022px;}
.y1d_c00474{bottom:278.325022px;}
.y1c_c00474{bottom:294.150022px;}
.y1b_c00474{bottom:309.225022px;}
.y1a_c00474{bottom:324.675022px;}
.y19_c00474{bottom:339.825022px;}
.y18_c00474{bottom:354.975022px;}
.y17_c00474{bottom:395.325022px;}
.y16_c00474{bottom:414.000022px;}
.y15_c00474{bottom:433.800022px;}
.y14_c00474{bottom:453.300022px;}
.y13_c00474{bottom:472.725022px;}
.y12_c00474{bottom:492.150022px;}
.y11_c00474{bottom:510.825022px;}
.y10_c00474{bottom:530.325022px;}
.yf_c00474{bottom:550.125022px;}
.ye_c00474{bottom:569.175022px;}
.yd_c00474{bottom:588.225022px;}
.yc_c00474{bottom:608.025022px;}
.yb_c00474{bottom:627.150022px;}
.ya_c00474{bottom:661.350022px;}
.y9_c00474{bottom:709.575022px;}
.y8_c00474{bottom:728.625022px;}
.y7_c00474{bottom:748.125022px;}
.y6_c00474{bottom:767.175022px;}
.y5_c00474{bottom:786.975022px;}
.y4_c00474{bottom:806.025022px;}
.y3_c00474{bottom:825.525022px;}
.y2_c00474{bottom:844.575022px;}
.y1_c00474{bottom:886.875022px;}
.h2_c00474{height:50.028809px;}
.h4_c00474{height:50.053711px;}
.h3_c00474{height:58.886719px;}
.h1_c00474{height:957.750000px;}
.h0_c00474{height:957.975000px;}
.w1_c00474{width:643.500000px;}
.w0_c00474{width:643.650000px;}
.x0_c00474{left:0.000000px;}
.x1_c00474{left:90.750000px;}
.x2_c00474{left:97.200000px;}
.x3_c00474{left:131.025000px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls0_c00474{letter-spacing:0.000000pt;}
.ws0_c00474{word-spacing:-13.333333pt;}
.ws1_c00474{word-spacing:0.000000pt;}
._8_c00474{margin-left:-9.589269pt;}
._7_c00474{margin-left:-8.405365pt;}
._d_c00474{margin-left:-6.613440pt;}
._b_c00474{margin-left:-5.007888pt;}
._13_c00474{margin-left:-4.109488pt;}
._1_c00474{margin-left:-2.933339pt;}
._0_c00474{margin-left:-1.565315pt;}
._2_c00474{width:1.634675pt;}
._3_c00474{width:2.951971pt;}
._6_c00474{width:4.301341pt;}
._12_c00474{width:5.477637pt;}
._9_c00474{width:6.610531pt;}
._14_c00474{width:7.554619pt;}
._a_c00474{width:8.498659pt;}
._c_c00474{width:9.621301pt;}
._4_c00474{width:10.594696pt;}
._5_c00474{width:11.578640pt;}
._16_c00474{width:12.573451pt;}
._15_c00474{width:14.104016pt;}
._e_c00474{width:15.442413pt;}
._11_c00474{width:21.855925pt;}
._f_c00474{width:23.520000pt;}
._10_c00474{width:24.730651pt;}
.fs0_c00474{font-size:45.333333pt;}
.fs1_c00474{font-size:53.333333pt;}
.y0_c00474{bottom:0.000000pt;}
.y29_c00474{bottom:57.600020pt;}
.y28_c00474{bottom:97.933353pt;}
.y27_c00474{bottom:111.400020pt;}
.y26_c00474{bottom:125.066686pt;}
.y25_c00474{bottom:138.866686pt;}
.y24_c00474{bottom:152.666686pt;}
.y23_c00474{bottom:166.066686pt;}
.y22_c00474{bottom:179.533353pt;}
.y21_c00474{bottom:193.000020pt;}
.y20_c00474{bottom:206.733353pt;}
.y1f_c00474{bottom:220.466686pt;}
.y1e_c00474{bottom:234.266686pt;}
.y1d_c00474{bottom:247.400020pt;}
.y1c_c00474{bottom:261.466686pt;}
.y1b_c00474{bottom:274.866686pt;}
.y1a_c00474{bottom:288.600020pt;}
.y19_c00474{bottom:302.066686pt;}
.y18_c00474{bottom:315.533353pt;}
.y17_c00474{bottom:351.400020pt;}
.y16_c00474{bottom:368.000020pt;}
.y15_c00474{bottom:385.600020pt;}
.y14_c00474{bottom:402.933353pt;}
.y13_c00474{bottom:420.200020pt;}
.y12_c00474{bottom:437.466686pt;}
.y11_c00474{bottom:454.066686pt;}
.y10_c00474{bottom:471.400020pt;}
.yf_c00474{bottom:489.000020pt;}
.ye_c00474{bottom:505.933353pt;}
.yd_c00474{bottom:522.866686pt;}
.yc_c00474{bottom:540.466686pt;}
.yb_c00474{bottom:557.466686pt;}
.ya_c00474{bottom:587.866686pt;}
.y9_c00474{bottom:630.733353pt;}
.y8_c00474{bottom:647.666686pt;}
.y7_c00474{bottom:665.000020pt;}
.y6_c00474{bottom:681.933353pt;}
.y5_c00474{bottom:699.533353pt;}
.y4_c00474{bottom:716.466686pt;}
.y3_c00474{bottom:733.800020pt;}
.y2_c00474{bottom:750.733353pt;}
.y1_c00474{bottom:788.333353pt;}
.h2_c00474{height:44.470052pt;}
.h4_c00474{height:44.492188pt;}
.h3_c00474{height:52.343750pt;}
.h1_c00474{height:851.333333pt;}
.h0_c00474{height:851.533333pt;}
.w1_c00474{width:572.000000pt;}
.w0_c00474{width:572.133333pt;}
.x0_c00474{left:0.000000pt;}
.x1_c00474{left:80.666667pt;}
.x2_c00474{left:86.400000pt;}
.x3_c00474{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fab57e609d39679cea8de980.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00475;src:url('chunks/assets/font_b868657676d7b1979fe34b70.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00475{letter-spacing:0.000000px;}
.ls0_c00475{letter-spacing:11.100000px;}
.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;}
}
.ws0_c00475{word-spacing:-15.000000px;}
.ws1_c00475{word-spacing:0.000000px;}
._5_c00475{margin-left:-10.805931px;}
._11_c00475{margin-left:-6.939024px;}
._4_c00475{margin-left:-4.983006px;}
._12_c00475{margin-left:-3.869898px;}
._1_c00475{margin-left:-2.660976px;}
._0_c00475{margin-left:-1.383018px;}
._3_c00475{width:1.049988px;}
._2_c00475{width:2.178006px;}
._6_c00475{width:4.122024px;}
._8_c00475{width:5.661000px;}
._7_c00475{width:7.199976px;}
._9_c00475{width:8.471988px;}
._c_c00475{width:9.762138px;}
._b_c00475{width:11.820000px;}
._a_c00475{width:13.740072px;}
._10_c00475{width:16.416030px;}
._f_c00475{width:17.447994px;}
._d_c00475{width:18.731976px;}
._e_c00475{width:20.730138px;}
.fc2_c00475{color:transparent;}
.fc1_c00475{color:rgb(0,0,0);}
.fc0_c00475{color:rgb(35,31,32);}
.fs0_c00475{font-size:51.000000px;}
.fs1_c00475{font-size:60.000000px;}
.y0_c00475{bottom:0.000000px;}
.y24_c00475{bottom:64.425022px;}
.y23_c00475{bottom:111.975022px;}
.y22_c00475{bottom:130.725022px;}
.y21_c00475{bottom:150.525022px;}
.y20_c00475{bottom:169.950022px;}
.y1f_c00475{bottom:203.400022px;}
.y1e_c00475{bottom:249.075022px;}
.y1d_c00475{bottom:270.375022px;}
.y1c_c00475{bottom:289.125022px;}
.y1b_c00475{bottom:308.925022px;}
.y1a_c00475{bottom:328.350022px;}
.y19_c00475{bottom:347.775022px;}
.y18_c00475{bottom:366.825022px;}
.y17_c00475{bottom:386.325022px;}
.y16_c00475{bottom:405.375022px;}
.y15_c00475{bottom:424.800022px;}
.y14_c00475{bottom:443.925022px;}
.y13_c00475{bottom:463.725022px;}
.y12_c00475{bottom:482.775022px;}
.y11_c00475{bottom:501.825022px;}
.y10_c00475{bottom:538.950022px;}
.yf_c00475{bottom:558.375022px;}
.ye_c00475{bottom:613.125022px;}
.yd_c00475{bottom:632.175022px;}
.yc_c00475{bottom:651.975022px;}
.yb_c00475{bottom:670.725022px;}
.ya_c00475{bottom:690.525022px;}
.y9_c00475{bottom:709.950022px;}
.y8_c00475{bottom:728.700022px;}
.y7_c00475{bottom:748.125022px;}
.y6_c00475{bottom:767.550022px;}
.y5_c00475{bottom:786.975022px;}
.y4_c00475{bottom:806.025022px;}
.y3_c00475{bottom:825.825022px;}
.y2_c00475{bottom:844.575022px;}
.y1_c00475{bottom:886.725022px;}
.h2_c00475{height:50.028809px;}
.h3_c00475{height:58.886719px;}
.h1_c00475{height:957.750000px;}
.h0_c00475{height:957.975000px;}
.w0_c00475{width:641.850030px;}
.w1_c00475{width:642.000000px;}
.x0_c00475{left:0.000000px;}
.x3_c00475{left:80.250000px;}
.x2_c00475{left:81.375000px;}
.x4_c00475{left:96.150000px;}
.x5_c00475{left:102.600000px;}
.x1_c00475{left:169.950000px;}
.x6_c00475{left:531.000000px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls1_c00475{letter-spacing:0.000000pt;}
.ls0_c00475{letter-spacing:9.866667pt;}
.ws0_c00475{word-spacing:-13.333333pt;}
.ws1_c00475{word-spacing:0.000000pt;}
._5_c00475{margin-left:-9.605272pt;}
._11_c00475{margin-left:-6.168021pt;}
._4_c00475{margin-left:-4.429339pt;}
._12_c00475{margin-left:-3.439909pt;}
._1_c00475{margin-left:-2.365312pt;}
._0_c00475{margin-left:-1.229349pt;}
._3_c00475{width:0.933323pt;}
._2_c00475{width:1.936005pt;}
._6_c00475{width:3.664021pt;}
._8_c00475{width:5.032000pt;}
._7_c00475{width:6.399979pt;}
._9_c00475{width:7.530656pt;}
._c_c00475{width:8.677456pt;}
._b_c00475{width:10.506667pt;}
._a_c00475{width:12.213397pt;}
._10_c00475{width:14.592027pt;}
._f_c00475{width:15.509328pt;}
._d_c00475{width:16.650645pt;}
._e_c00475{width:18.426789pt;}
.fs0_c00475{font-size:45.333333pt;}
.fs1_c00475{font-size:53.333333pt;}
.y0_c00475{bottom:0.000000pt;}
.y24_c00475{bottom:57.266686pt;}
.y23_c00475{bottom:99.533353pt;}
.y22_c00475{bottom:116.200020pt;}
.y21_c00475{bottom:133.800020pt;}
.y20_c00475{bottom:151.066686pt;}
.y1f_c00475{bottom:180.800020pt;}
.y1e_c00475{bottom:221.400020pt;}
.y1d_c00475{bottom:240.333353pt;}
.y1c_c00475{bottom:257.000020pt;}
.y1b_c00475{bottom:274.600020pt;}
.y1a_c00475{bottom:291.866686pt;}
.y19_c00475{bottom:309.133353pt;}
.y18_c00475{bottom:326.066686pt;}
.y17_c00475{bottom:343.400020pt;}
.y16_c00475{bottom:360.333353pt;}
.y15_c00475{bottom:377.600020pt;}
.y14_c00475{bottom:394.600020pt;}
.y13_c00475{bottom:412.200020pt;}
.y12_c00475{bottom:429.133353pt;}
.y11_c00475{bottom:446.066686pt;}
.y10_c00475{bottom:479.066686pt;}
.yf_c00475{bottom:496.333353pt;}
.ye_c00475{bottom:545.000020pt;}
.yd_c00475{bottom:561.933353pt;}
.yc_c00475{bottom:579.533353pt;}
.yb_c00475{bottom:596.200020pt;}
.ya_c00475{bottom:613.800020pt;}
.y9_c00475{bottom:631.066686pt;}
.y8_c00475{bottom:647.733353pt;}
.y7_c00475{bottom:665.000020pt;}
.y6_c00475{bottom:682.266686pt;}
.y5_c00475{bottom:699.533353pt;}
.y4_c00475{bottom:716.466686pt;}
.y3_c00475{bottom:734.066686pt;}
.y2_c00475{bottom:750.733353pt;}
.y1_c00475{bottom:788.200020pt;}
.h2_c00475{height:44.470052pt;}
.h3_c00475{height:52.343750pt;}
.h1_c00475{height:851.333333pt;}
.h0_c00475{height:851.533333pt;}
.w0_c00475{width:570.533360pt;}
.w1_c00475{width:570.666667pt;}
.x0_c00475{left:0.000000pt;}
.x3_c00475{left:71.333333pt;}
.x2_c00475{left:72.333333pt;}
.x4_c00475{left:85.466667pt;}
.x5_c00475{left:91.200000pt;}
.x1_c00475{left:151.066667pt;}
.x6_c00475{left:472.000000pt;}
}





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

.ir_c00476:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00476{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00476;src:url('chunks/assets/font_7206b5b36da10eb79a4b18f2.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00476;src:url('chunks/assets/font_9ae166e88cf0e35cbb64c058.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00476{letter-spacing:0.000000px;}
.ls0_c00476{letter-spacing:12.600000px;}
.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:-15.000000px;}
.ws1_c00476{word-spacing:-12.750000px;}
.ws2_c00476{word-spacing:0.000000px;}
._d_c00476{margin-left:-10.440024px;}
._c_c00476{margin-left:-9.359976px;}
._b_c00476{margin-left:-7.899141px;}
._13_c00476{margin-left:-5.738973px;}
._f_c00476{margin-left:-4.427922px;}
._1_c00476{margin-left:-3.300006px;}
._0_c00476{margin-left:-1.760979px;}
._2_c00476{width:1.839009px;}
._3_c00476{width:3.320967px;}
._a_c00476{width:4.868931px;}
._e_c00476{width:6.156024px;}
._4_c00476{width:8.042973px;}
._6_c00476{width:9.506937px;}
._7_c00476{width:11.627928px;}
._5_c00476{width:13.061982px;}
._10_c00476{width:16.013862px;}
._9_c00476{width:17.264943px;}
._11_c00476{width:18.464955px;}
._8_c00476{width:19.892883px;}
._12_c00476{width:20.937255px;}
._15_c00476{width:24.072000px;}
._14_c00476{width:25.572012px;}
.fc2_c00476{color:transparent;}
.fc1_c00476{color:rgb(0,0,0);}
.fc0_c00476{color:rgb(35,31,32);}
.fs0_c00476{font-size:51.000000px;}
.fs1_c00476{font-size:60.000000px;}
.y0_c00476{bottom:0.000000px;}
.y26_c00476{bottom:64.425022px;}
.y25_c00476{bottom:110.175022px;}
.y24_c00476{bottom:125.625022px;}
.y23_c00476{bottom:140.775022px;}
.y22_c00476{bottom:156.225022px;}
.y21_c00476{bottom:171.375022px;}
.y20_c00476{bottom:210.975022px;}
.y1f_c00476{bottom:230.400022px;}
.y1e_c00476{bottom:250.200022px;}
.y1d_c00476{bottom:269.325022px;}
.y1c_c00476{bottom:288.750022px;}
.y1b_c00476{bottom:308.175022px;}
.y1a_c00476{bottom:326.925022px;}
.y19_c00476{bottom:346.350022px;}
.y18_c00476{bottom:365.775022px;}
.y17_c00476{bottom:385.200022px;}
.y16_c00476{bottom:404.325022px;}
.y15_c00476{bottom:423.750022px;}
.y14_c00476{bottom:442.800022px;}
.y13_c00476{bottom:462.600022px;}
.y12_c00476{bottom:481.725022px;}
.y11_c00476{bottom:500.775022px;}
.y10_c00476{bottom:520.200022px;}
.yf_c00476{bottom:539.625022px;}
.ye_c00476{bottom:558.750022px;}
.yd_c00476{bottom:578.175022px;}
.yc_c00476{bottom:597.975022px;}
.yb_c00476{bottom:617.025022px;}
.ya_c00476{bottom:636.525022px;}
.y9_c00476{bottom:655.575022px;}
.y8_c00476{bottom:675.000022px;}
.y7_c00476{bottom:711.750022px;}
.y6_c00476{bottom:767.925022px;}
.y5_c00476{bottom:786.975022px;}
.y4_c00476{bottom:806.400022px;}
.y3_c00476{bottom:825.825022px;}
.y2_c00476{bottom:845.325022px;}
.y1_c00476{bottom:886.875022px;}
.h2_c00476{height:50.028809px;}
.h4_c00476{height:50.053711px;}
.h3_c00476{height:58.886719px;}
.h1_c00476{height:957.750000px;}
.h0_c00476{height:957.975000px;}
.w1_c00476{width:643.500000px;}
.w0_c00476{width:643.650000px;}
.x0_c00476{left:0.000000px;}
.x1_c00476{left:90.750000px;}
.x2_c00476{left:97.200000px;}
.x3_c00476{left:131.400000px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls1_c00476{letter-spacing:0.000000pt;}
.ls0_c00476{letter-spacing:11.200000pt;}
.ws0_c00476{word-spacing:-13.333333pt;}
.ws1_c00476{word-spacing:-11.333333pt;}
.ws2_c00476{word-spacing:0.000000pt;}
._d_c00476{margin-left:-9.280021pt;}
._c_c00476{margin-left:-8.319979pt;}
._b_c00476{margin-left:-7.021459pt;}
._13_c00476{margin-left:-5.101309pt;}
._f_c00476{margin-left:-3.935931pt;}
._1_c00476{margin-left:-2.933339pt;}
._0_c00476{margin-left:-1.565315pt;}
._2_c00476{width:1.634675pt;}
._3_c00476{width:2.951971pt;}
._a_c00476{width:4.327939pt;}
._e_c00476{width:5.472021pt;}
._4_c00476{width:7.149309pt;}
._6_c00476{width:8.450611pt;}
._7_c00476{width:10.335936pt;}
._5_c00476{width:11.610651pt;}
._10_c00476{width:14.234544pt;}
._9_c00476{width:15.346616pt;}
._11_c00476{width:16.413293pt;}
._8_c00476{width:17.682563pt;}
._12_c00476{width:18.610893pt;}
._15_c00476{width:21.397333pt;}
._14_c00476{width:22.730677pt;}
.fs0_c00476{font-size:45.333333pt;}
.fs1_c00476{font-size:53.333333pt;}
.y0_c00476{bottom:0.000000pt;}
.y26_c00476{bottom:57.266686pt;}
.y25_c00476{bottom:97.933353pt;}
.y24_c00476{bottom:111.666686pt;}
.y23_c00476{bottom:125.133353pt;}
.y22_c00476{bottom:138.866686pt;}
.y21_c00476{bottom:152.333353pt;}
.y20_c00476{bottom:187.533353pt;}
.y1f_c00476{bottom:204.800020pt;}
.y1e_c00476{bottom:222.400020pt;}
.y1d_c00476{bottom:239.400020pt;}
.y1c_c00476{bottom:256.666686pt;}
.y1b_c00476{bottom:273.933353pt;}
.y1a_c00476{bottom:290.600020pt;}
.y19_c00476{bottom:307.866686pt;}
.y18_c00476{bottom:325.133353pt;}
.y17_c00476{bottom:342.400020pt;}
.y16_c00476{bottom:359.400020pt;}
.y15_c00476{bottom:376.666686pt;}
.y14_c00476{bottom:393.600020pt;}
.y13_c00476{bottom:411.200020pt;}
.y12_c00476{bottom:428.200020pt;}
.y11_c00476{bottom:445.133353pt;}
.y10_c00476{bottom:462.400020pt;}
.yf_c00476{bottom:479.666686pt;}
.ye_c00476{bottom:496.666686pt;}
.yd_c00476{bottom:513.933353pt;}
.yc_c00476{bottom:531.533353pt;}
.yb_c00476{bottom:548.466686pt;}
.ya_c00476{bottom:565.800020pt;}
.y9_c00476{bottom:582.733353pt;}
.y8_c00476{bottom:600.000020pt;}
.y7_c00476{bottom:632.666686pt;}
.y6_c00476{bottom:682.600020pt;}
.y5_c00476{bottom:699.533353pt;}
.y4_c00476{bottom:716.800020pt;}
.y3_c00476{bottom:734.066686pt;}
.y2_c00476{bottom:751.400020pt;}
.y1_c00476{bottom:788.333353pt;}
.h2_c00476{height:44.470052pt;}
.h4_c00476{height:44.492188pt;}
.h3_c00476{height:52.343750pt;}
.h1_c00476{height:851.333333pt;}
.h0_c00476{height:851.533333pt;}
.w1_c00476{width:572.000000pt;}
.w0_c00476{width:572.133333pt;}
.x0_c00476{left:0.000000pt;}
.x1_c00476{left:80.666667pt;}
.x2_c00476{left:86.400000pt;}
.x3_c00476{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fab57e609d39679cea8de980.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00477;src:url('chunks/assets/font_6a1a11ea5b41924cd764a3ef.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00477{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.ls3_c00477{letter-spacing:0.000000px;}
.ls0_c00477{letter-spacing:14.100000px;}
.ls1_c00477{letter-spacing:15.300000px;}
.ls2_c00477{letter-spacing:20.550000px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00477{word-spacing:-15.000000px;}
.ws1_c00477{word-spacing:-12.750000px;}
.ws2_c00477{word-spacing:0.000000px;}
._e_c00477{margin-left:-12.573009px;}
._5_c00477{margin-left:-10.805931px;}
._14_c00477{margin-left:-7.520970px;}
._4_c00477{margin-left:-4.983006px;}
._1_c00477{margin-left:-2.660976px;}
._0_c00477{margin-left:-1.383018px;}
._3_c00477{width:1.049988px;}
._2_c00477{width:2.178006px;}
._6_c00477{width:4.122024px;}
._8_c00477{width:5.661000px;}
._7_c00477{width:7.199976px;}
._9_c00477{width:8.613222px;}
._a_c00477{width:10.110036px;}
._d_c00477{width:11.478084px;}
._b_c00477{width:12.515970px;}
._c_c00477{width:13.980000px;}
._f_c00477{width:16.295994px;}
._11_c00477{width:17.634042px;}
._13_c00477{width:18.995994px;}
._10_c00477{width:20.040024px;}
._12_c00477{width:21.813054px;}
.fc2_c00477{color:transparent;}
.fc1_c00477{color:rgb(0,0,0);}
.fc0_c00477{color:rgb(35,31,32);}
.fs0_c00477{font-size:51.000000px;}
.fs1_c00477{font-size:60.000000px;}
.y0_c00477{bottom:0.000000px;}
.y23_c00477{bottom:64.425022px;}
.y22_c00477{bottom:110.175022px;}
.y21_c00477{bottom:159.150022px;}
.y20_c00477{bottom:178.575022px;}
.y1f_c00477{bottom:197.625022px;}
.y1e_c00477{bottom:217.425022px;}
.y1d_c00477{bottom:258.525022px;}
.y1c_c00477{bottom:318.225022px;}
.y1b_c00477{bottom:337.725022px;}
.y1a_c00477{bottom:356.775022px;}
.y19_c00477{bottom:376.575022px;}
.y18_c00477{bottom:396.000022px;}
.y17_c00477{bottom:415.125022px;}
.y16_c00477{bottom:434.925022px;}
.y15_c00477{bottom:453.975022px;}
.y14_c00477{bottom:473.325022px;}
.y13_c00477{bottom:492.825022px;}
.y12_c00477{bottom:512.325022px;}
.y11_c00477{bottom:532.125022px;}
.y10_c00477{bottom:551.175022px;}
.yf_c00477{bottom:570.600022px;}
.ye_c00477{bottom:589.725022px;}
.yd_c00477{bottom:609.525022px;}
.yc_c00477{bottom:628.950022px;}
.yb_c00477{bottom:648.000022px;}
.ya_c00477{bottom:667.800022px;}
.y9_c00477{bottom:686.925022px;}
.y8_c00477{bottom:706.350022px;}
.y7_c00477{bottom:726.150022px;}
.y6_c00477{bottom:745.575022px;}
.y5_c00477{bottom:765.000022px;}
.y4_c00477{bottom:784.425022px;}
.y3_c00477{bottom:825.525022px;}
.y2_c00477{bottom:844.950022px;}
.y1_c00477{bottom:886.725022px;}
.h2_c00477{height:50.028809px;}
.h4_c00477{height:50.053711px;}
.h3_c00477{height:58.886719px;}
.h1_c00477{height:957.750000px;}
.h0_c00477{height:957.975000px;}
.w0_c00477{width:641.850030px;}
.w1_c00477{width:642.000000px;}
.x0_c00477{left:0.000000px;}
.x2_c00477{left:81.000000px;}
.x4_c00477{left:87.450000px;}
.x3_c00477{left:99.750000px;}
.x1_c00477{left:169.950000px;}
.x5_c00477{left:531.000000px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls3_c00477{letter-spacing:0.000000pt;}
.ls0_c00477{letter-spacing:12.533333pt;}
.ls1_c00477{letter-spacing:13.600000pt;}
.ls2_c00477{letter-spacing:18.266667pt;}
.ws0_c00477{word-spacing:-13.333333pt;}
.ws1_c00477{word-spacing:-11.333333pt;}
.ws2_c00477{word-spacing:0.000000pt;}
._e_c00477{margin-left:-11.176008pt;}
._5_c00477{margin-left:-9.605272pt;}
._14_c00477{margin-left:-6.685307pt;}
._4_c00477{margin-left:-4.429339pt;}
._1_c00477{margin-left:-2.365312pt;}
._0_c00477{margin-left:-1.229349pt;}
._3_c00477{width:0.933323pt;}
._2_c00477{width:1.936005pt;}
._6_c00477{width:3.664021pt;}
._8_c00477{width:5.032000pt;}
._7_c00477{width:6.399979pt;}
._9_c00477{width:7.656197pt;}
._a_c00477{width:8.986699pt;}
._d_c00477{width:10.202741pt;}
._b_c00477{width:11.125307pt;}
._c_c00477{width:12.426667pt;}
._f_c00477{width:14.485328pt;}
._11_c00477{width:15.674704pt;}
._13_c00477{width:16.885328pt;}
._10_c00477{width:17.813355pt;}
._12_c00477{width:19.389381pt;}
.fs0_c00477{font-size:45.333333pt;}
.fs1_c00477{font-size:53.333333pt;}
.y0_c00477{bottom:0.000000pt;}
.y23_c00477{bottom:57.266686pt;}
.y22_c00477{bottom:97.933353pt;}
.y21_c00477{bottom:141.466686pt;}
.y20_c00477{bottom:158.733353pt;}
.y1f_c00477{bottom:175.666686pt;}
.y1e_c00477{bottom:193.266686pt;}
.y1d_c00477{bottom:229.800020pt;}
.y1c_c00477{bottom:282.866686pt;}
.y1b_c00477{bottom:300.200020pt;}
.y1a_c00477{bottom:317.133353pt;}
.y19_c00477{bottom:334.733353pt;}
.y18_c00477{bottom:352.000020pt;}
.y17_c00477{bottom:369.000020pt;}
.y16_c00477{bottom:386.600020pt;}
.y15_c00477{bottom:403.533353pt;}
.y14_c00477{bottom:420.733353pt;}
.y13_c00477{bottom:438.066686pt;}
.y12_c00477{bottom:455.400020pt;}
.y11_c00477{bottom:473.000020pt;}
.y10_c00477{bottom:489.933353pt;}
.yf_c00477{bottom:507.200020pt;}
.ye_c00477{bottom:524.200020pt;}
.yd_c00477{bottom:541.800020pt;}
.yc_c00477{bottom:559.066686pt;}
.yb_c00477{bottom:576.000020pt;}
.ya_c00477{bottom:593.600020pt;}
.y9_c00477{bottom:610.600020pt;}
.y8_c00477{bottom:627.866686pt;}
.y7_c00477{bottom:645.466686pt;}
.y6_c00477{bottom:662.733353pt;}
.y5_c00477{bottom:680.000020pt;}
.y4_c00477{bottom:697.266686pt;}
.y3_c00477{bottom:733.800020pt;}
.y2_c00477{bottom:751.066686pt;}
.y1_c00477{bottom:788.200020pt;}
.h2_c00477{height:44.470052pt;}
.h4_c00477{height:44.492188pt;}
.h3_c00477{height:52.343750pt;}
.h1_c00477{height:851.333333pt;}
.h0_c00477{height:851.533333pt;}
.w0_c00477{width:570.533360pt;}
.w1_c00477{width:570.666667pt;}
.x0_c00477{left:0.000000pt;}
.x2_c00477{left:72.000000pt;}
.x4_c00477{left:77.733333pt;}
.x3_c00477{left:88.666667pt;}
.x1_c00477{left:151.066667pt;}
.x5_c00477{left:472.000000pt;}
}





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

.ir_c00478:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00478{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00478;src:url('chunks/assets/font_76c7728acce6fb1574fe0d47.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00478;src:url('chunks/assets/font_ef052e778b348765ceb96301.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;}
.ls1_c00478{letter-spacing:0.000000px;}
.ls0_c00478{letter-spacing:12.300000px;}
.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:-15.000000px;}
.ws1_c00478{word-spacing:-12.750000px;}
.ws2_c00478{word-spacing:0.000000px;}
._f_c00478{margin-left:-11.220000px;}
._b_c00478{margin-left:-9.900000px;}
._a_c00478{margin-left:-8.400000px;}
._11_c00478{margin-left:-6.180000px;}
._12_c00478{margin-left:-3.900000px;}
._5_c00478{margin-left:-2.040000px;}
._3_c00478{margin-left:-1.020000px;}
._1_c00478{width:1.020000px;}
._0_c00478{width:2.220000px;}
._2_c00478{width:3.420000px;}
._4_c00478{width:4.620000px;}
._6_c00478{width:5.820000px;}
._10_c00478{width:7.380000px;}
._9_c00478{width:8.700000px;}
._e_c00478{width:9.780000px;}
._8_c00478{width:11.820000px;}
._7_c00478{width:13.260000px;}
._13_c00478{width:16.080000px;}
._c_c00478{width:17.160000px;}
._d_c00478{width:18.720000px;}
._14_c00478{width:19.980000px;}
._18_c00478{width:22.446003px;}
._17_c00478{width:24.630000px;}
._15_c00478{width:26.130054px;}
._16_c00478{width:28.170003px;}
.fc2_c00478{color:transparent;}
.fc1_c00478{color:rgb(0,0,0);}
.fc0_c00478{color:rgb(35,31,32);}
.fs1_c00478{font-size:51.000000px;}
.fs0_c00478{font-size:60.000000px;}
.y0_c00478{bottom:0.000000px;}
.y28_c00478{bottom:64.425022px;}
.y27_c00478{bottom:110.550022px;}
.y26_c00478{bottom:125.325022px;}
.y25_c00478{bottom:140.775022px;}
.y24_c00478{bottom:155.925022px;}
.y23_c00478{bottom:171.375022px;}
.y22_c00478{bottom:186.825022px;}
.y21_c00478{bottom:201.975022px;}
.y20_c00478{bottom:217.125022px;}
.y1f_c00478{bottom:232.575022px;}
.y1e_c00478{bottom:247.725022px;}
.y1c_c00478{bottom:288.000022px;}
.y1b_c00478{bottom:306.750022px;}
.y1a_c00478{bottom:325.800022px;}
.y19_c00478{bottom:345.600022px;}
.y18_c00478{bottom:364.725022px;}
.y17_c00478{bottom:383.775022px;}
.y16_c00478{bottom:416.925022px;}
.y15_c00478{bottom:461.175022px;}
.y14_c00478{bottom:480.225022px;}
.y13_c00478{bottom:499.725022px;}
.y12_c00478{bottom:518.775022px;}
.y11_c00478{bottom:538.275022px;}
.y10_c00478{bottom:557.325022px;}
.yf_c00478{bottom:576.375022px;}
.ye_c00478{bottom:595.800022px;}
.yd_c00478{bottom:614.550022px;}
.yc_c00478{bottom:633.975022px;}
.yb_c00478{bottom:653.025022px;}
.ya_c00478{bottom:672.525022px;}
.y9_c00478{bottom:691.200022px;}
.y8_c00478{bottom:711.000022px;}
.y7_c00478{bottom:730.125022px;}
.y6_c00478{bottom:748.800022px;}
.y5_c00478{bottom:768.225022px;}
.y4_c00478{bottom:787.350022px;}
.y3_c00478{bottom:806.775022px;}
.y2_c00478{bottom:825.525022px;}
.y1_c00478{bottom:845.325022px;}
.y1d_c00478{bottom:886.875022px;}
.h3_c00478{height:50.028809px;}
.h4_c00478{height:50.053711px;}
.h2_c00478{height:58.886719px;}
.h1_c00478{height:957.750000px;}
.h0_c00478{height:957.975000px;}
.w1_c00478{width:643.500000px;}
.w0_c00478{width:643.650000px;}
.x0_c00478{left:0.000000px;}
.x3_c00478{left:90.375000px;}
.x1_c00478{left:91.425000px;}
.x4_c00478{left:97.200000px;}
.x2_c00478{left:106.200000px;}
.x5_c00478{left:131.025000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls1_c00478{letter-spacing:0.000000pt;}
.ls0_c00478{letter-spacing:10.933333pt;}
.ws0_c00478{word-spacing:-13.333333pt;}
.ws1_c00478{word-spacing:-11.333333pt;}
.ws2_c00478{word-spacing:0.000000pt;}
._f_c00478{margin-left:-9.973333pt;}
._b_c00478{margin-left:-8.800000pt;}
._a_c00478{margin-left:-7.466667pt;}
._11_c00478{margin-left:-5.493333pt;}
._12_c00478{margin-left:-3.466667pt;}
._5_c00478{margin-left:-1.813333pt;}
._3_c00478{margin-left:-0.906667pt;}
._1_c00478{width:0.906667pt;}
._0_c00478{width:1.973333pt;}
._2_c00478{width:3.040000pt;}
._4_c00478{width:4.106667pt;}
._6_c00478{width:5.173333pt;}
._10_c00478{width:6.560000pt;}
._9_c00478{width:7.733333pt;}
._e_c00478{width:8.693333pt;}
._8_c00478{width:10.506667pt;}
._7_c00478{width:11.786667pt;}
._13_c00478{width:14.293333pt;}
._c_c00478{width:15.253333pt;}
._d_c00478{width:16.640000pt;}
._14_c00478{width:17.760000pt;}
._18_c00478{width:19.952003pt;}
._17_c00478{width:21.893333pt;}
._15_c00478{width:23.226715pt;}
._16_c00478{width:25.040003pt;}
.fs1_c00478{font-size:45.333333pt;}
.fs0_c00478{font-size:53.333333pt;}
.y0_c00478{bottom:0.000000pt;}
.y28_c00478{bottom:57.266686pt;}
.y27_c00478{bottom:98.266686pt;}
.y26_c00478{bottom:111.400020pt;}
.y25_c00478{bottom:125.133353pt;}
.y24_c00478{bottom:138.600020pt;}
.y23_c00478{bottom:152.333353pt;}
.y22_c00478{bottom:166.066686pt;}
.y21_c00478{bottom:179.533353pt;}
.y20_c00478{bottom:193.000020pt;}
.y1f_c00478{bottom:206.733353pt;}
.y1e_c00478{bottom:220.200020pt;}
.y1c_c00478{bottom:256.000020pt;}
.y1b_c00478{bottom:272.666686pt;}
.y1a_c00478{bottom:289.600020pt;}
.y19_c00478{bottom:307.200020pt;}
.y18_c00478{bottom:324.200020pt;}
.y17_c00478{bottom:341.133353pt;}
.y16_c00478{bottom:370.600020pt;}
.y15_c00478{bottom:409.933353pt;}
.y14_c00478{bottom:426.866686pt;}
.y13_c00478{bottom:444.200020pt;}
.y12_c00478{bottom:461.133353pt;}
.y11_c00478{bottom:478.466686pt;}
.y10_c00478{bottom:495.400020pt;}
.yf_c00478{bottom:512.333353pt;}
.ye_c00478{bottom:529.600020pt;}
.yd_c00478{bottom:546.266686pt;}
.yc_c00478{bottom:563.533353pt;}
.yb_c00478{bottom:580.466686pt;}
.ya_c00478{bottom:597.800020pt;}
.y9_c00478{bottom:614.400020pt;}
.y8_c00478{bottom:632.000020pt;}
.y7_c00478{bottom:649.000020pt;}
.y6_c00478{bottom:665.600020pt;}
.y5_c00478{bottom:682.866686pt;}
.y4_c00478{bottom:699.866686pt;}
.y3_c00478{bottom:717.133353pt;}
.y2_c00478{bottom:733.800020pt;}
.y1_c00478{bottom:751.400020pt;}
.y1d_c00478{bottom:788.333353pt;}
.h3_c00478{height:44.470052pt;}
.h4_c00478{height:44.492188pt;}
.h2_c00478{height:52.343750pt;}
.h1_c00478{height:851.333333pt;}
.h0_c00478{height:851.533333pt;}
.w1_c00478{width:572.000000pt;}
.w0_c00478{width:572.133333pt;}
.x0_c00478{left:0.000000pt;}
.x3_c00478{left:80.333333pt;}
.x1_c00478{left:81.266667pt;}
.x4_c00478{left:86.400000pt;}
.x2_c00478{left:94.400000pt;}
.x5_c00478{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fab57e609d39679cea8de980.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00479;src:url('chunks/assets/font_13e3d7d294caf6a2f402c24b.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00479{letter-spacing:0.000000px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00479{word-spacing:-15.000000px;}
.ws1_c00479{word-spacing:0.000000px;}
._5_c00479{margin-left:-10.805931px;}
._d_c00479{margin-left:-9.581967px;}
._4_c00479{margin-left:-4.983006px;}
._1_c00479{margin-left:-2.660976px;}
._0_c00479{margin-left:-1.383018px;}
._3_c00479{width:1.049988px;}
._2_c00479{width:2.178006px;}
._6_c00479{width:4.122024px;}
._8_c00479{width:5.661000px;}
._7_c00479{width:7.199976px;}
._9_c00479{width:8.580048px;}
._c_c00479{width:10.485090px;}
._a_c00479{width:11.514120px;}
._b_c00479{width:13.421964px;}
._e_c00479{width:16.521120px;}
._f_c00479{width:24.699096px;}
.fc1_c00479{color:transparent;}
.fc0_c00479{color:rgb(35,31,32);}
.fs0_c00479{font-size:51.000000px;}
.fs1_c00479{font-size:60.000000px;}
.y0_c00479{bottom:0.000000px;}
.y22_c00479{bottom:64.425022px;}
.y21_c00479{bottom:110.175022px;}
.y20_c00479{bottom:125.325022px;}
.y1f_c00479{bottom:165.600022px;}
.y1e_c00479{bottom:184.725022px;}
.y1d_c00479{bottom:204.525022px;}
.y1c_c00479{bottom:223.575022px;}
.y1b_c00479{bottom:243.375022px;}
.y1a_c00479{bottom:262.800022px;}
.y19_c00479{bottom:281.925022px;}
.y18_c00479{bottom:301.725022px;}
.y17_c00479{bottom:321.150022px;}
.y16_c00479{bottom:340.575022px;}
.y15_c00479{bottom:379.425022px;}
.y14_c00479{bottom:398.550022px;}
.y13_c00479{bottom:456.525022px;}
.y12_c00479{bottom:476.325022px;}
.y11_c00479{bottom:495.375022px;}
.y10_c00479{bottom:515.175022px;}
.yf_c00479{bottom:534.600022px;}
.ye_c00479{bottom:553.725022px;}
.yd_c00479{bottom:573.525022px;}
.yc_c00479{bottom:592.575022px;}
.yb_c00479{bottom:612.375022px;}
.ya_c00479{bottom:631.425022px;}
.y9_c00479{bottom:650.925022px;}
.y8_c00479{bottom:690.150022px;}
.y7_c00479{bottom:748.125022px;}
.y6_c00479{bottom:767.550022px;}
.y5_c00479{bottom:786.225022px;}
.y4_c00479{bottom:806.025022px;}
.y3_c00479{bottom:825.150022px;}
.y2_c00479{bottom:844.575022px;}
.y1_c00479{bottom:886.725022px;}
.h2_c00479{height:50.028809px;}
.h4_c00479{height:50.053711px;}
.h3_c00479{height:58.886719px;}
.h1_c00479{height:957.750000px;}
.h0_c00479{height:957.975000px;}
.w0_c00479{width:641.850030px;}
.w1_c00479{width:642.000000px;}
.x0_c00479{left:0.000000px;}
.x2_c00479{left:81.000000px;}
.x3_c00479{left:86.025000px;}
.x5_c00479{left:87.450000px;}
.x4_c00479{left:105.450000px;}
.x1_c00479{left:169.950000px;}
.x6_c00479{left:531.000000px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls0_c00479{letter-spacing:0.000000pt;}
.ws0_c00479{word-spacing:-13.333333pt;}
.ws1_c00479{word-spacing:0.000000pt;}
._5_c00479{margin-left:-9.605272pt;}
._d_c00479{margin-left:-8.517304pt;}
._4_c00479{margin-left:-4.429339pt;}
._1_c00479{margin-left:-2.365312pt;}
._0_c00479{margin-left:-1.229349pt;}
._3_c00479{width:0.933323pt;}
._2_c00479{width:1.936005pt;}
._6_c00479{width:3.664021pt;}
._8_c00479{width:5.032000pt;}
._7_c00479{width:6.399979pt;}
._9_c00479{width:7.626709pt;}
._c_c00479{width:9.320080pt;}
._a_c00479{width:10.234773pt;}
._b_c00479{width:11.930635pt;}
._e_c00479{width:14.685440pt;}
._f_c00479{width:21.954752pt;}
.fs0_c00479{font-size:45.333333pt;}
.fs1_c00479{font-size:53.333333pt;}
.y0_c00479{bottom:0.000000pt;}
.y22_c00479{bottom:57.266686pt;}
.y21_c00479{bottom:97.933353pt;}
.y20_c00479{bottom:111.400020pt;}
.y1f_c00479{bottom:147.200020pt;}
.y1e_c00479{bottom:164.200020pt;}
.y1d_c00479{bottom:181.800020pt;}
.y1c_c00479{bottom:198.733353pt;}
.y1b_c00479{bottom:216.333353pt;}
.y1a_c00479{bottom:233.600020pt;}
.y19_c00479{bottom:250.600020pt;}
.y18_c00479{bottom:268.200020pt;}
.y17_c00479{bottom:285.466686pt;}
.y16_c00479{bottom:302.733353pt;}
.y15_c00479{bottom:337.266686pt;}
.y14_c00479{bottom:354.266686pt;}
.y13_c00479{bottom:405.800020pt;}
.y12_c00479{bottom:423.400020pt;}
.y11_c00479{bottom:440.333353pt;}
.y10_c00479{bottom:457.933353pt;}
.yf_c00479{bottom:475.200020pt;}
.ye_c00479{bottom:492.200020pt;}
.yd_c00479{bottom:509.800020pt;}
.yc_c00479{bottom:526.733353pt;}
.yb_c00479{bottom:544.333353pt;}
.ya_c00479{bottom:561.266686pt;}
.y9_c00479{bottom:578.600020pt;}
.y8_c00479{bottom:613.466686pt;}
.y7_c00479{bottom:665.000020pt;}
.y6_c00479{bottom:682.266686pt;}
.y5_c00479{bottom:698.866686pt;}
.y4_c00479{bottom:716.466686pt;}
.y3_c00479{bottom:733.466686pt;}
.y2_c00479{bottom:750.733353pt;}
.y1_c00479{bottom:788.200020pt;}
.h2_c00479{height:44.470052pt;}
.h4_c00479{height:44.492188pt;}
.h3_c00479{height:52.343750pt;}
.h1_c00479{height:851.333333pt;}
.h0_c00479{height:851.533333pt;}
.w0_c00479{width:570.533360pt;}
.w1_c00479{width:570.666667pt;}
.x0_c00479{left:0.000000pt;}
.x2_c00479{left:72.000000pt;}
.x3_c00479{left:76.466667pt;}
.x5_c00479{left:77.733333pt;}
.x4_c00479{left:93.733333pt;}
.x1_c00479{left:151.066667pt;}
.x6_c00479{left:472.000000pt;}
}





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

.ir_c00480:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00480{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00480;src:url('chunks/assets/font_27e77e6f9b18206012d1f83b.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00480;src:url('chunks/assets/font_d77d1066af5707e00a8a1646.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;}
.ls0_c00480{letter-spacing:0.000000px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00480{word-spacing:-15.000000px;}
.ws0_c00480{word-spacing:-12.750000px;}
.ws2_c00480{word-spacing:0.000000px;}
._10_c00480{margin-left:-11.760000px;}
._e_c00480{margin-left:-10.620000px;}
._c_c00480{margin-left:-9.300000px;}
._15_c00480{margin-left:-8.160000px;}
._b_c00480{margin-left:-5.520000px;}
._9_c00480{margin-left:-3.960000px;}
._f_c00480{margin-left:-2.760000px;}
._4_c00480{margin-left:-1.440000px;}
._0_c00480{width:1.680000px;}
._3_c00480{width:3.120000px;}
._2_c00480{width:5.040000px;}
._6_c00480{width:6.120000px;}
._1_c00480{width:7.200000px;}
._5_c00480{width:8.760000px;}
._d_c00480{width:10.080000px;}
._8_c00480{width:11.280000px;}
._a_c00480{width:12.300000px;}
._7_c00480{width:13.620000px;}
._19_c00480{width:14.742078px;}
._14_c00480{width:16.500000px;}
._12_c00480{width:18.180000px;}
._13_c00480{width:19.200000px;}
._11_c00480{width:20.220000px;}
._16_c00480{width:21.540000px;}
._17_c00480{width:23.640000px;}
._18_c00480{width:26.010000px;}
._1a_c00480{width:27.810003px;}
.fc1_c00480{color:transparent;}
.fc0_c00480{color:rgb(35,31,32);}
.fs1_c00480{font-size:51.000000px;}
.fs0_c00480{font-size:60.000000px;}
.y0_c00480{bottom:0.000000px;}
.y2a_c00480{bottom:64.425022px;}
.y29_c00480{bottom:110.175022px;}
.y28_c00480{bottom:125.325022px;}
.y27_c00480{bottom:140.775022px;}
.y26_c00480{bottom:155.925022px;}
.y25_c00480{bottom:172.275022px;}
.y24_c00480{bottom:186.825022px;}
.y23_c00480{bottom:201.975022px;}
.y22_c00480{bottom:217.125022px;}
.y21_c00480{bottom:232.950022px;}
.y20_c00480{bottom:247.725022px;}
.y1f_c00480{bottom:263.175022px;}
.y1e_c00480{bottom:278.325022px;}
.y1d_c00480{bottom:293.775022px;}
.y1c_c00480{bottom:308.925022px;}
.y1a_c00480{bottom:358.950022px;}
.y19_c00480{bottom:378.750022px;}
.y18_c00480{bottom:398.175022px;}
.y17_c00480{bottom:417.525022px;}
.y16_c00480{bottom:437.025022px;}
.y15_c00480{bottom:456.525022px;}
.y14_c00480{bottom:475.575022px;}
.y13_c00480{bottom:495.375022px;}
.y12_c00480{bottom:514.800022px;}
.y11_c00480{bottom:533.925022px;}
.y10_c00480{bottom:553.350022px;}
.yf_c00480{bottom:573.225022px;}
.ye_c00480{bottom:592.650022px;}
.yd_c00480{bottom:612.075022px;}
.yc_c00480{bottom:631.500022px;}
.yb_c00480{bottom:650.925022px;}
.ya_c00480{bottom:670.350022px;}
.y9_c00480{bottom:689.400022px;}
.y8_c00480{bottom:708.825022px;}
.y7_c00480{bottom:728.625022px;}
.y6_c00480{bottom:748.125022px;}
.y5_c00480{bottom:767.550022px;}
.y4_c00480{bottom:786.600022px;}
.y3_c00480{bottom:806.025022px;}
.y2_c00480{bottom:825.150022px;}
.y1_c00480{bottom:844.575022px;}
.y1b_c00480{bottom:886.875022px;}
.h3_c00480{height:50.028809px;}
.h4_c00480{height:50.053711px;}
.h2_c00480{height:58.886719px;}
.h1_c00480{height:957.750000px;}
.h0_c00480{height:957.975000px;}
.w1_c00480{width:643.500000px;}
.w0_c00480{width:643.650000px;}
.x0_c00480{left:0.000000px;}
.x3_c00480{left:90.375000px;}
.x1_c00480{left:91.425000px;}
.x4_c00480{left:97.200000px;}
.x2_c00480{left:107.250000px;}
.x6_c00480{left:130.650000px;}
.x5_c00480{left:131.775000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls0_c00480{letter-spacing:0.000000pt;}
.ws1_c00480{word-spacing:-13.333333pt;}
.ws0_c00480{word-spacing:-11.333333pt;}
.ws2_c00480{word-spacing:0.000000pt;}
._10_c00480{margin-left:-10.453333pt;}
._e_c00480{margin-left:-9.440000pt;}
._c_c00480{margin-left:-8.266667pt;}
._15_c00480{margin-left:-7.253333pt;}
._b_c00480{margin-left:-4.906667pt;}
._9_c00480{margin-left:-3.520000pt;}
._f_c00480{margin-left:-2.453333pt;}
._4_c00480{margin-left:-1.280000pt;}
._0_c00480{width:1.493333pt;}
._3_c00480{width:2.773333pt;}
._2_c00480{width:4.480000pt;}
._6_c00480{width:5.440000pt;}
._1_c00480{width:6.400000pt;}
._5_c00480{width:7.786667pt;}
._d_c00480{width:8.960000pt;}
._8_c00480{width:10.026667pt;}
._a_c00480{width:10.933333pt;}
._7_c00480{width:12.106667pt;}
._19_c00480{width:13.104069pt;}
._14_c00480{width:14.666667pt;}
._12_c00480{width:16.160000pt;}
._13_c00480{width:17.066667pt;}
._11_c00480{width:17.973333pt;}
._16_c00480{width:19.146667pt;}
._17_c00480{width:21.013333pt;}
._18_c00480{width:23.120000pt;}
._1a_c00480{width:24.720003pt;}
.fs1_c00480{font-size:45.333333pt;}
.fs0_c00480{font-size:53.333333pt;}
.y0_c00480{bottom:0.000000pt;}
.y2a_c00480{bottom:57.266686pt;}
.y29_c00480{bottom:97.933353pt;}
.y28_c00480{bottom:111.400020pt;}
.y27_c00480{bottom:125.133353pt;}
.y26_c00480{bottom:138.600020pt;}
.y25_c00480{bottom:153.133353pt;}
.y24_c00480{bottom:166.066686pt;}
.y23_c00480{bottom:179.533353pt;}
.y22_c00480{bottom:193.000020pt;}
.y21_c00480{bottom:207.066686pt;}
.y20_c00480{bottom:220.200020pt;}
.y1f_c00480{bottom:233.933353pt;}
.y1e_c00480{bottom:247.400020pt;}
.y1d_c00480{bottom:261.133353pt;}
.y1c_c00480{bottom:274.600020pt;}
.y1a_c00480{bottom:319.066686pt;}
.y19_c00480{bottom:336.666686pt;}
.y18_c00480{bottom:353.933353pt;}
.y17_c00480{bottom:371.133353pt;}
.y16_c00480{bottom:388.466686pt;}
.y15_c00480{bottom:405.800020pt;}
.y14_c00480{bottom:422.733353pt;}
.y13_c00480{bottom:440.333353pt;}
.y12_c00480{bottom:457.600020pt;}
.y11_c00480{bottom:474.600020pt;}
.y10_c00480{bottom:491.866686pt;}
.yf_c00480{bottom:509.533353pt;}
.ye_c00480{bottom:526.800020pt;}
.yd_c00480{bottom:544.066686pt;}
.yc_c00480{bottom:561.333353pt;}
.yb_c00480{bottom:578.600020pt;}
.ya_c00480{bottom:595.866686pt;}
.y9_c00480{bottom:612.800020pt;}
.y8_c00480{bottom:630.066686pt;}
.y7_c00480{bottom:647.666686pt;}
.y6_c00480{bottom:665.000020pt;}
.y5_c00480{bottom:682.266686pt;}
.y4_c00480{bottom:699.200020pt;}
.y3_c00480{bottom:716.466686pt;}
.y2_c00480{bottom:733.466686pt;}
.y1_c00480{bottom:750.733353pt;}
.y1b_c00480{bottom:788.333353pt;}
.h3_c00480{height:44.470052pt;}
.h4_c00480{height:44.492188pt;}
.h2_c00480{height:52.343750pt;}
.h1_c00480{height:851.333333pt;}
.h0_c00480{height:851.533333pt;}
.w1_c00480{width:572.000000pt;}
.w0_c00480{width:572.133333pt;}
.x0_c00480{left:0.000000pt;}
.x3_c00480{left:80.333333pt;}
.x1_c00480{left:81.266667pt;}
.x4_c00480{left:86.400000pt;}
.x2_c00480{left:95.333333pt;}
.x6_c00480{left:116.133333pt;}
.x5_c00480{left:117.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cf4baea1d04fc14bde991a0f.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00481;src:url('chunks/assets/font_35d51560ffcafc6b6991ce52.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);}
.m1_c00481{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_c00481{vertical-align:0.000000px;}
.ls0_c00481{letter-spacing:0.000000px;}
.sc__c00481{text-shadow:none;}
.sc0_c00481{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00481{-webkit-text-stroke:0px transparent;}
.sc0_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00481{word-spacing:-15.000000px;}
.ws1_c00481{word-spacing:-12.750000px;}
.ws2_c00481{word-spacing:0.000000px;}
._13_c00481{margin-left:-12.000000px;}
._8_c00481{margin-left:-9.600000px;}
._d_c00481{margin-left:-7.740000px;}
._14_c00481{margin-left:-6.300000px;}
._7_c00481{margin-left:-4.260000px;}
._12_c00481{margin-left:-2.700000px;}
._9_c00481{margin-left:-1.560000px;}
._1_c00481{width:1.080000px;}
._0_c00481{width:2.100000px;}
._2_c00481{width:3.240000px;}
._6_c00481{width:4.620000px;}
._f_c00481{width:6.540000px;}
._10_c00481{width:7.920000px;}
._3_c00481{width:9.600000px;}
._15_c00481{width:10.680000px;}
._4_c00481{width:11.760000px;}
._5_c00481{width:13.740000px;}
._e_c00481{width:16.980000px;}
._c_c00481{width:19.020000px;}
._11_c00481{width:20.220000px;}
._b_c00481{width:21.360000px;}
._a_c00481{width:22.920000px;}
._16_c00481{width:25.230042px;}
._17_c00481{width:27.570081px;}
.fc1_c00481{color:transparent;}
.fc0_c00481{color:rgb(35,31,32);}
.fs1_c00481{font-size:51.000000px;}
.fs0_c00481{font-size:60.000000px;}
.y0_c00481{bottom:0.000000px;}
.y28_c00481{bottom:64.425022px;}
.y27_c00481{bottom:110.550022px;}
.y26_c00481{bottom:125.325022px;}
.y25_c00481{bottom:140.775022px;}
.y24_c00481{bottom:155.925022px;}
.y23_c00481{bottom:171.375022px;}
.y22_c00481{bottom:186.825022px;}
.y21_c00481{bottom:202.350022px;}
.y20_c00481{bottom:217.125022px;}
.y1f_c00481{bottom:232.575022px;}
.y1d_c00481{bottom:301.350022px;}
.y1c_c00481{bottom:320.400022px;}
.y1b_c00481{bottom:339.525022px;}
.y1a_c00481{bottom:358.950022px;}
.y19_c00481{bottom:378.375022px;}
.y18_c00481{bottom:398.175022px;}
.y17_c00481{bottom:417.225022px;}
.y16_c00481{bottom:437.025022px;}
.y15_c00481{bottom:456.525022px;}
.y14_c00481{bottom:475.950022px;}
.y13_c00481{bottom:495.375022px;}
.y12_c00481{bottom:514.425022px;}
.y11_c00481{bottom:534.300022px;}
.y10_c00481{bottom:553.725022px;}
.yf_c00481{bottom:573.150022px;}
.ye_c00481{bottom:592.200022px;}
.yd_c00481{bottom:612.000022px;}
.yc_c00481{bottom:631.425022px;}
.yb_c00481{bottom:650.550022px;}
.ya_c00481{bottom:670.350022px;}
.y9_c00481{bottom:689.775022px;}
.y8_c00481{bottom:709.200022px;}
.y7_c00481{bottom:728.625022px;}
.y6_c00481{bottom:747.750022px;}
.y5_c00481{bottom:767.550022px;}
.y4_c00481{bottom:786.600022px;}
.y3_c00481{bottom:806.100022px;}
.y2_c00481{bottom:825.525022px;}
.y1_c00481{bottom:844.950022px;}
.y1e_c00481{bottom:886.725022px;}
.h3_c00481{height:50.028809px;}
.h4_c00481{height:50.053711px;}
.h2_c00481{height:58.886719px;}
.h1_c00481{height:957.750000px;}
.h0_c00481{height:957.975000px;}
.w0_c00481{width:641.850030px;}
.w1_c00481{width:642.000000px;}
.x0_c00481{left:0.000000px;}
.x1_c00481{left:81.000000px;}
.x4_c00481{left:87.450000px;}
.x2_c00481{left:96.825000px;}
.x5_c00481{left:121.350000px;}
.x3_c00481{left:169.950000px;}
.x6_c00481{left:531.000000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls0_c00481{letter-spacing:0.000000pt;}
.ws0_c00481{word-spacing:-13.333333pt;}
.ws1_c00481{word-spacing:-11.333333pt;}
.ws2_c00481{word-spacing:0.000000pt;}
._13_c00481{margin-left:-10.666667pt;}
._8_c00481{margin-left:-8.533333pt;}
._d_c00481{margin-left:-6.880000pt;}
._14_c00481{margin-left:-5.600000pt;}
._7_c00481{margin-left:-3.786667pt;}
._12_c00481{margin-left:-2.400000pt;}
._9_c00481{margin-left:-1.386667pt;}
._1_c00481{width:0.960000pt;}
._0_c00481{width:1.866667pt;}
._2_c00481{width:2.880000pt;}
._6_c00481{width:4.106667pt;}
._f_c00481{width:5.813333pt;}
._10_c00481{width:7.040000pt;}
._3_c00481{width:8.533333pt;}
._15_c00481{width:9.493333pt;}
._4_c00481{width:10.453333pt;}
._5_c00481{width:12.213333pt;}
._e_c00481{width:15.093333pt;}
._c_c00481{width:16.906667pt;}
._11_c00481{width:17.973333pt;}
._b_c00481{width:18.986667pt;}
._a_c00481{width:20.373333pt;}
._16_c00481{width:22.426704pt;}
._17_c00481{width:24.506739pt;}
.fs1_c00481{font-size:45.333333pt;}
.fs0_c00481{font-size:53.333333pt;}
.y0_c00481{bottom:0.000000pt;}
.y28_c00481{bottom:57.266686pt;}
.y27_c00481{bottom:98.266686pt;}
.y26_c00481{bottom:111.400020pt;}
.y25_c00481{bottom:125.133353pt;}
.y24_c00481{bottom:138.600020pt;}
.y23_c00481{bottom:152.333353pt;}
.y22_c00481{bottom:166.066686pt;}
.y21_c00481{bottom:179.866686pt;}
.y20_c00481{bottom:193.000020pt;}
.y1f_c00481{bottom:206.733353pt;}
.y1d_c00481{bottom:267.866686pt;}
.y1c_c00481{bottom:284.800020pt;}
.y1b_c00481{bottom:301.800020pt;}
.y1a_c00481{bottom:319.066686pt;}
.y19_c00481{bottom:336.333353pt;}
.y18_c00481{bottom:353.933353pt;}
.y17_c00481{bottom:370.866686pt;}
.y16_c00481{bottom:388.466686pt;}
.y15_c00481{bottom:405.800020pt;}
.y14_c00481{bottom:423.066686pt;}
.y13_c00481{bottom:440.333353pt;}
.y12_c00481{bottom:457.266686pt;}
.y11_c00481{bottom:474.933353pt;}
.y10_c00481{bottom:492.200020pt;}
.yf_c00481{bottom:509.466686pt;}
.ye_c00481{bottom:526.400020pt;}
.yd_c00481{bottom:544.000020pt;}
.yc_c00481{bottom:561.266686pt;}
.yb_c00481{bottom:578.266686pt;}
.ya_c00481{bottom:595.866686pt;}
.y9_c00481{bottom:613.133353pt;}
.y8_c00481{bottom:630.400020pt;}
.y7_c00481{bottom:647.666686pt;}
.y6_c00481{bottom:664.666686pt;}
.y5_c00481{bottom:682.266686pt;}
.y4_c00481{bottom:699.200020pt;}
.y3_c00481{bottom:716.533353pt;}
.y2_c00481{bottom:733.800020pt;}
.y1_c00481{bottom:751.066686pt;}
.y1e_c00481{bottom:788.200020pt;}
.h3_c00481{height:44.470052pt;}
.h4_c00481{height:44.492188pt;}
.h2_c00481{height:52.343750pt;}
.h1_c00481{height:851.333333pt;}
.h0_c00481{height:851.533333pt;}
.w0_c00481{width:570.533360pt;}
.w1_c00481{width:570.666667pt;}
.x0_c00481{left:0.000000pt;}
.x1_c00481{left:72.000000pt;}
.x4_c00481{left:77.733333pt;}
.x2_c00481{left:86.066667pt;}
.x5_c00481{left:107.866667pt;}
.x3_c00481{left:151.066667pt;}
.x6_c00481{left:472.000000pt;}
}





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

.ir_c00482:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00482{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00482;src:url('chunks/assets/font_c2071dd3a99fa39406470f3e.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00482;src:url('chunks/assets/font_f247567631f02089517ee844.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00482{letter-spacing:0.000000px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00482{word-spacing:-15.000000px;}
.ws0_c00482{word-spacing:-12.750000px;}
.ws2_c00482{word-spacing:0.000000px;}
._a_c00482{margin-left:-11.336973px;}
._4_c00482{margin-left:-10.317021px;}
._6_c00482{margin-left:-6.387057px;}
._16_c00482{margin-left:-5.216994px;}
._1_c00482{margin-left:-3.300006px;}
._0_c00482{margin-left:-1.760979px;}
._2_c00482{width:1.839009px;}
._3_c00482{width:3.320967px;}
._5_c00482{width:4.635039px;}
._8_c00482{width:6.540048px;}
._7_c00482{width:7.560000px;}
._e_c00482{width:8.630901px;}
._9_c00482{width:9.926889px;}
._b_c00482{width:11.940000px;}
._d_c00482{width:13.208919px;}
._17_c00482{width:15.081231px;}
._c_c00482{width:16.106937px;}
._12_c00482{width:17.447928px;}
._f_c00482{width:19.466937px;}
._10_c00482{width:21.002973px;}
._11_c00482{width:23.340000px;}
._13_c00482{width:24.425946px;}
._14_c00482{width:25.572012px;}
._15_c00482{width:27.332940px;}
.fc1_c00482{color:transparent;}
.fc0_c00482{color:rgb(35,31,32);}
.fs0_c00482{font-size:51.000000px;}
.fs1_c00482{font-size:60.000000px;}
.y0_c00482{bottom:0.000000px;}
.y2a_c00482{bottom:64.800022px;}
.y29_c00482{bottom:110.175022px;}
.y28_c00482{bottom:125.325022px;}
.y27_c00482{bottom:140.700022px;}
.y26_c00482{bottom:156.225022px;}
.y25_c00482{bottom:171.750022px;}
.y24_c00482{bottom:186.825022px;}
.y23_c00482{bottom:201.975022px;}
.y22_c00482{bottom:217.425022px;}
.y21_c00482{bottom:232.950022px;}
.y20_c00482{bottom:247.725022px;}
.y1f_c00482{bottom:263.175022px;}
.y1e_c00482{bottom:303.150022px;}
.y1d_c00482{bottom:322.575022px;}
.y1c_c00482{bottom:341.625022px;}
.y1b_c00482{bottom:361.125022px;}
.y1a_c00482{bottom:380.925022px;}
.y19_c00482{bottom:399.975022px;}
.y18_c00482{bottom:419.400022px;}
.y17_c00482{bottom:438.825022px;}
.y16_c00482{bottom:457.950022px;}
.y15_c00482{bottom:477.375022px;}
.y14_c00482{bottom:496.425022px;}
.y13_c00482{bottom:516.225022px;}
.y12_c00482{bottom:535.350022px;}
.y11_c00482{bottom:554.400022px;}
.y10_c00482{bottom:574.200022px;}
.yf_c00482{bottom:593.325022px;}
.ye_c00482{bottom:612.750022px;}
.yd_c00482{bottom:632.175022px;}
.yc_c00482{bottom:651.225022px;}
.yb_c00482{bottom:670.725022px;}
.ya_c00482{bottom:689.775022px;}
.y9_c00482{bottom:709.200022px;}
.y8_c00482{bottom:729.000022px;}
.y7_c00482{bottom:748.425022px;}
.y6_c00482{bottom:767.175022px;}
.y5_c00482{bottom:786.600022px;}
.y4_c00482{bottom:806.475022px;}
.y3_c00482{bottom:825.525022px;}
.y2_c00482{bottom:844.575022px;}
.y1_c00482{bottom:886.875022px;}
.h2_c00482{height:50.028809px;}
.h4_c00482{height:50.053711px;}
.h5_c00482{height:50.353711px;}
.h3_c00482{height:58.886719px;}
.h1_c00482{height:957.750000px;}
.h0_c00482{height:957.975000px;}
.w1_c00482{width:643.500000px;}
.w0_c00482{width:643.650000px;}
.x0_c00482{left:0.000000px;}
.x1_c00482{left:90.750000px;}
.x3_c00482{left:97.200000px;}
.x2_c00482{left:107.250000px;}
.x4_c00482{left:130.650000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls0_c00482{letter-spacing:0.000000pt;}
.ws1_c00482{word-spacing:-13.333333pt;}
.ws0_c00482{word-spacing:-11.333333pt;}
.ws2_c00482{word-spacing:0.000000pt;}
._a_c00482{margin-left:-10.077309pt;}
._4_c00482{margin-left:-9.170685pt;}
._6_c00482{margin-left:-5.677384pt;}
._16_c00482{margin-left:-4.637328pt;}
._1_c00482{margin-left:-2.933339pt;}
._0_c00482{margin-left:-1.565315pt;}
._2_c00482{width:1.634675pt;}
._3_c00482{width:2.951971pt;}
._5_c00482{width:4.120035pt;}
._8_c00482{width:5.813376pt;}
._7_c00482{width:6.720000pt;}
._e_c00482{width:7.671912pt;}
._9_c00482{width:8.823901pt;}
._b_c00482{width:10.613333pt;}
._d_c00482{width:11.741261pt;}
._17_c00482{width:13.405539pt;}
._c_c00482{width:14.317277pt;}
._12_c00482{width:15.509269pt;}
._f_c00482{width:17.303944pt;}
._10_c00482{width:18.669309pt;}
._11_c00482{width:20.746667pt;}
._13_c00482{width:21.711952pt;}
._14_c00482{width:22.730677pt;}
._15_c00482{width:24.295947pt;}
.fs0_c00482{font-size:45.333333pt;}
.fs1_c00482{font-size:53.333333pt;}
.y0_c00482{bottom:0.000000pt;}
.y2a_c00482{bottom:57.600020pt;}
.y29_c00482{bottom:97.933353pt;}
.y28_c00482{bottom:111.400020pt;}
.y27_c00482{bottom:125.066686pt;}
.y26_c00482{bottom:138.866686pt;}
.y25_c00482{bottom:152.666686pt;}
.y24_c00482{bottom:166.066686pt;}
.y23_c00482{bottom:179.533353pt;}
.y22_c00482{bottom:193.266686pt;}
.y21_c00482{bottom:207.066686pt;}
.y20_c00482{bottom:220.200020pt;}
.y1f_c00482{bottom:233.933353pt;}
.y1e_c00482{bottom:269.466686pt;}
.y1d_c00482{bottom:286.733353pt;}
.y1c_c00482{bottom:303.666686pt;}
.y1b_c00482{bottom:321.000020pt;}
.y1a_c00482{bottom:338.600020pt;}
.y19_c00482{bottom:355.533353pt;}
.y18_c00482{bottom:372.800020pt;}
.y17_c00482{bottom:390.066686pt;}
.y16_c00482{bottom:407.066686pt;}
.y15_c00482{bottom:424.333353pt;}
.y14_c00482{bottom:441.266686pt;}
.y13_c00482{bottom:458.866686pt;}
.y12_c00482{bottom:475.866686pt;}
.y11_c00482{bottom:492.800020pt;}
.y10_c00482{bottom:510.400020pt;}
.yf_c00482{bottom:527.400020pt;}
.ye_c00482{bottom:544.666686pt;}
.yd_c00482{bottom:561.933353pt;}
.yc_c00482{bottom:578.866686pt;}
.yb_c00482{bottom:596.200020pt;}
.ya_c00482{bottom:613.133353pt;}
.y9_c00482{bottom:630.400020pt;}
.y8_c00482{bottom:648.000020pt;}
.y7_c00482{bottom:665.266686pt;}
.y6_c00482{bottom:681.933353pt;}
.y5_c00482{bottom:699.200020pt;}
.y4_c00482{bottom:716.866686pt;}
.y3_c00482{bottom:733.800020pt;}
.y2_c00482{bottom:750.733353pt;}
.y1_c00482{bottom:788.333353pt;}
.h2_c00482{height:44.470052pt;}
.h4_c00482{height:44.492188pt;}
.h5_c00482{height:44.758854pt;}
.h3_c00482{height:52.343750pt;}
.h1_c00482{height:851.333333pt;}
.h0_c00482{height:851.533333pt;}
.w1_c00482{width:572.000000pt;}
.w0_c00482{width:572.133333pt;}
.x0_c00482{left:0.000000pt;}
.x1_c00482{left:80.666667pt;}
.x3_c00482{left:86.400000pt;}
.x2_c00482{left:95.333333pt;}
.x4_c00482{left:116.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5154d6f87ad4cd9ce857857.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00483;src:url('chunks/assets/font_a916ca20d69b81f9acc6cb81.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00483{letter-spacing:0.000000px;}
.sc__c00483{text-shadow:none;}
.sc0_c00483{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00483{-webkit-text-stroke:0px transparent;}
.sc0_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00483{word-spacing:-15.000000px;}
.ws0_c00483{word-spacing:-12.750000px;}
.ws2_c00483{word-spacing:0.000000px;}
._5_c00483{margin-left:-10.805931px;}
._10_c00483{margin-left:-9.223026px;}
._12_c00483{margin-left:-7.328826px;}
._4_c00483{margin-left:-4.983006px;}
._13_c00483{margin-left:-3.981018px;}
._1_c00483{margin-left:-2.660976px;}
._0_c00483{margin-left:-1.383018px;}
._3_c00483{width:1.049988px;}
._2_c00483{width:2.178006px;}
._6_c00483{width:4.122024px;}
._8_c00483{width:5.661000px;}
._7_c00483{width:7.199976px;}
._a_c00483{width:8.723982px;}
._b_c00483{width:9.813342px;}
._9_c00483{width:10.920024px;}
._f_c00483{width:12.066030px;}
._e_c00483{width:13.943856px;}
._c_c00483{width:16.416216px;}
._11_c00483{width:17.603550px;}
._d_c00483{width:18.990162px;}
._14_c00483{width:24.582102px;}
._15_c00483{width:26.082114px;}
.fc1_c00483{color:transparent;}
.fc0_c00483{color:rgb(35,31,32);}
.fs0_c00483{font-size:51.000000px;}
.fs1_c00483{font-size:60.000000px;}
.y0_c00483{bottom:0.000000px;}
.y23_c00483{bottom:64.425022px;}
.y22_c00483{bottom:110.175022px;}
.y21_c00483{bottom:125.325022px;}
.y20_c00483{bottom:140.775022px;}
.y1f_c00483{bottom:155.925022px;}
.y1e_c00483{bottom:171.375022px;}
.y1d_c00483{bottom:255.225022px;}
.y1c_c00483{bottom:274.725022px;}
.y1b_c00483{bottom:303.150022px;}
.y1a_c00483{bottom:322.950022px;}
.y19_c00483{bottom:342.000022px;}
.y18_c00483{bottom:361.425022px;}
.y17_c00483{bottom:380.550022px;}
.y16_c00483{bottom:400.350022px;}
.y15_c00483{bottom:419.775022px;}
.y14_c00483{bottom:438.825022px;}
.y13_c00483{bottom:458.625022px;}
.y12_c00483{bottom:478.125022px;}
.y11_c00483{bottom:497.550022px;}
.y10_c00483{bottom:516.975022px;}
.yf_c00483{bottom:536.400022px;}
.ye_c00483{bottom:555.525022px;}
.yd_c00483{bottom:575.325022px;}
.yc_c00483{bottom:594.375022px;}
.yb_c00483{bottom:613.800022px;}
.ya_c00483{bottom:633.600022px;}
.y9_c00483{bottom:653.025022px;}
.y8_c00483{bottom:672.525022px;}
.y7_c00483{bottom:691.950022px;}
.y6_c00483{bottom:711.000022px;}
.y5_c00483{bottom:730.425022px;}
.y4_c00483{bottom:768.975022px;}
.y3_c00483{bottom:825.525022px;}
.y2_c00483{bottom:844.950022px;}
.y1_c00483{bottom:886.725022px;}
.h2_c00483{height:50.028809px;}
.h5_c00483{height:50.053711px;}
.h4_c00483{height:58.857422px;}
.h3_c00483{height:58.886719px;}
.h1_c00483{height:957.750000px;}
.h0_c00483{height:957.975000px;}
.w0_c00483{width:641.850030px;}
.w1_c00483{width:642.000000px;}
.x0_c00483{left:0.000000px;}
.x2_c00483{left:80.625000px;}
.x5_c00483{left:87.450000px;}
.x3_c00483{left:96.150000px;}
.x4_c00483{left:97.200000px;}
.x6_c00483{left:120.975000px;}
.x1_c00483{left:169.950000px;}
.x7_c00483{left:531.000000px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls0_c00483{letter-spacing:0.000000pt;}
.ws1_c00483{word-spacing:-13.333333pt;}
.ws0_c00483{word-spacing:-11.333333pt;}
.ws2_c00483{word-spacing:0.000000pt;}
._5_c00483{margin-left:-9.605272pt;}
._10_c00483{margin-left:-8.198245pt;}
._12_c00483{margin-left:-6.514512pt;}
._4_c00483{margin-left:-4.429339pt;}
._13_c00483{margin-left:-3.538683pt;}
._1_c00483{margin-left:-2.365312pt;}
._0_c00483{margin-left:-1.229349pt;}
._3_c00483{width:0.933323pt;}
._2_c00483{width:1.936005pt;}
._6_c00483{width:3.664021pt;}
._8_c00483{width:5.032000pt;}
._7_c00483{width:6.399979pt;}
._a_c00483{width:7.754651pt;}
._b_c00483{width:8.722971pt;}
._9_c00483{width:9.706688pt;}
._f_c00483{width:10.725360pt;}
._e_c00483{width:12.394539pt;}
._c_c00483{width:14.592192pt;}
._11_c00483{width:15.647600pt;}
._d_c00483{width:16.880144pt;}
._14_c00483{width:21.850757pt;}
._15_c00483{width:23.184101pt;}
.fs0_c00483{font-size:45.333333pt;}
.fs1_c00483{font-size:53.333333pt;}
.y0_c00483{bottom:0.000000pt;}
.y23_c00483{bottom:57.266686pt;}
.y22_c00483{bottom:97.933353pt;}
.y21_c00483{bottom:111.400020pt;}
.y20_c00483{bottom:125.133353pt;}
.y1f_c00483{bottom:138.600020pt;}
.y1e_c00483{bottom:152.333353pt;}
.y1d_c00483{bottom:226.866686pt;}
.y1c_c00483{bottom:244.200020pt;}
.y1b_c00483{bottom:269.466686pt;}
.y1a_c00483{bottom:287.066686pt;}
.y19_c00483{bottom:304.000020pt;}
.y18_c00483{bottom:321.266686pt;}
.y17_c00483{bottom:338.266686pt;}
.y16_c00483{bottom:355.866686pt;}
.y15_c00483{bottom:373.133353pt;}
.y14_c00483{bottom:390.066686pt;}
.y13_c00483{bottom:407.666686pt;}
.y12_c00483{bottom:425.000020pt;}
.y11_c00483{bottom:442.266686pt;}
.y10_c00483{bottom:459.533353pt;}
.yf_c00483{bottom:476.800020pt;}
.ye_c00483{bottom:493.800020pt;}
.yd_c00483{bottom:511.400020pt;}
.yc_c00483{bottom:528.333353pt;}
.yb_c00483{bottom:545.600020pt;}
.ya_c00483{bottom:563.200020pt;}
.y9_c00483{bottom:580.466686pt;}
.y8_c00483{bottom:597.800020pt;}
.y7_c00483{bottom:615.066686pt;}
.y6_c00483{bottom:632.000020pt;}
.y5_c00483{bottom:649.266686pt;}
.y4_c00483{bottom:683.533353pt;}
.y3_c00483{bottom:733.800020pt;}
.y2_c00483{bottom:751.066686pt;}
.y1_c00483{bottom:788.200020pt;}
.h2_c00483{height:44.470052pt;}
.h5_c00483{height:44.492188pt;}
.h4_c00483{height:52.317708pt;}
.h3_c00483{height:52.343750pt;}
.h1_c00483{height:851.333333pt;}
.h0_c00483{height:851.533333pt;}
.w0_c00483{width:570.533360pt;}
.w1_c00483{width:570.666667pt;}
.x0_c00483{left:0.000000pt;}
.x2_c00483{left:71.666667pt;}
.x5_c00483{left:77.733333pt;}
.x3_c00483{left:85.466667pt;}
.x4_c00483{left:86.400000pt;}
.x6_c00483{left:107.533333pt;}
.x1_c00483{left:151.066667pt;}
.x7_c00483{left:472.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0f0f84c45881275cb6f7b7f6.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00484;src:url('chunks/assets/font_59a5b2702bf008401212f6c4.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00484{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00484{word-spacing:-15.000000px;}
.ws1_c00484{word-spacing:-12.750000px;}
.ws2_c00484{word-spacing:0.000000px;}
._7_c00484{margin-left:-15.240000px;}
._14_c00484{margin-left:-12.600000px;}
._8_c00484{margin-left:-10.800000px;}
._5_c00484{margin-left:-9.720000px;}
._12_c00484{margin-left:-8.160000px;}
._11_c00484{margin-left:-6.180000px;}
._15_c00484{margin-left:-4.140000px;}
._1_c00484{margin-left:-2.100000px;}
._0_c00484{margin-left:-1.080000px;}
._6_c00484{width:1.260000px;}
._4_c00484{width:2.700000px;}
._d_c00484{width:3.960000px;}
._3_c00484{width:5.160000px;}
._e_c00484{width:6.300000px;}
._2_c00484{width:7.380000px;}
._f_c00484{width:8.400000px;}
._a_c00484{width:9.480000px;}
._13_c00484{width:10.560000px;}
._9_c00484{width:11.880000px;}
._10_c00484{width:13.500000px;}
._b_c00484{width:17.040000px;}
._c_c00484{width:18.120000px;}
._17_c00484{width:24.750042px;}
._16_c00484{width:26.250054px;}
._19_c00484{width:28.350003px;}
._18_c00484{width:29.850000px;}
.fc1_c00484{color:transparent;}
.fc0_c00484{color:rgb(35,31,32);}
.fs1_c00484{font-size:51.000000px;}
.fs0_c00484{font-size:60.000000px;}
.y0_c00484{bottom:0.000000px;}
.y28_c00484{bottom:64.800022px;}
.y27_c00484{bottom:110.175022px;}
.y26_c00484{bottom:125.325022px;}
.y25_c00484{bottom:140.775022px;}
.y24_c00484{bottom:155.925022px;}
.y23_c00484{bottom:171.375022px;}
.y22_c00484{bottom:186.525022px;}
.y21_c00484{bottom:201.975022px;}
.y20_c00484{bottom:217.125022px;}
.y1e_c00484{bottom:272.625022px;}
.y1d_c00484{bottom:291.975022px;}
.y1c_c00484{bottom:311.325022px;}
.y1b_c00484{bottom:330.825022px;}
.y1a_c00484{bottom:350.325022px;}
.y19_c00484{bottom:369.450022px;}
.y18_c00484{bottom:388.875022px;}
.y17_c00484{bottom:408.300022px;}
.y16_c00484{bottom:427.725022px;}
.y15_c00484{bottom:447.150022px;}
.y14_c00484{bottom:466.575022px;}
.y13_c00484{bottom:486.000022px;}
.y12_c00484{bottom:505.425022px;}
.y11_c00484{bottom:524.925022px;}
.y10_c00484{bottom:544.725022px;}
.yf_c00484{bottom:564.150022px;}
.ye_c00484{bottom:583.200022px;}
.yd_c00484{bottom:602.625022px;}
.yc_c00484{bottom:622.425022px;}
.yb_c00484{bottom:641.550022px;}
.ya_c00484{bottom:661.350022px;}
.y9_c00484{bottom:680.775022px;}
.y8_c00484{bottom:700.200022px;}
.y7_c00484{bottom:719.625022px;}
.y6_c00484{bottom:739.125022px;}
.y5_c00484{bottom:758.175022px;}
.y4_c00484{bottom:777.600022px;}
.y3_c00484{bottom:797.025022px;}
.y2_c00484{bottom:825.150022px;}
.y1_c00484{bottom:844.575022px;}
.y1f_c00484{bottom:886.875022px;}
.h4_c00484{height:50.028809px;}
.h5_c00484{height:50.053711px;}
.h3_c00484{height:58.857422px;}
.h2_c00484{height:58.886719px;}
.h1_c00484{height:957.750000px;}
.h0_c00484{height:957.975000px;}
.w1_c00484{width:643.500000px;}
.w0_c00484{width:643.650000px;}
.x0_c00484{left:0.000000px;}
.x3_c00484{left:90.375000px;}
.x2_c00484{left:91.425000px;}
.x4_c00484{left:97.200000px;}
.x1_c00484{left:107.625000px;}
.x5_c00484{left:131.400000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls0_c00484{letter-spacing:0.000000pt;}
.ws0_c00484{word-spacing:-13.333333pt;}
.ws1_c00484{word-spacing:-11.333333pt;}
.ws2_c00484{word-spacing:0.000000pt;}
._7_c00484{margin-left:-13.546667pt;}
._14_c00484{margin-left:-11.200000pt;}
._8_c00484{margin-left:-9.600000pt;}
._5_c00484{margin-left:-8.640000pt;}
._12_c00484{margin-left:-7.253333pt;}
._11_c00484{margin-left:-5.493333pt;}
._15_c00484{margin-left:-3.680000pt;}
._1_c00484{margin-left:-1.866667pt;}
._0_c00484{margin-left:-0.960000pt;}
._6_c00484{width:1.120000pt;}
._4_c00484{width:2.400000pt;}
._d_c00484{width:3.520000pt;}
._3_c00484{width:4.586667pt;}
._e_c00484{width:5.600000pt;}
._2_c00484{width:6.560000pt;}
._f_c00484{width:7.466667pt;}
._a_c00484{width:8.426667pt;}
._13_c00484{width:9.386667pt;}
._9_c00484{width:10.560000pt;}
._10_c00484{width:12.000000pt;}
._b_c00484{width:15.146667pt;}
._c_c00484{width:16.106667pt;}
._17_c00484{width:22.000037pt;}
._16_c00484{width:23.333381pt;}
._19_c00484{width:25.200003pt;}
._18_c00484{width:26.533333pt;}
.fs1_c00484{font-size:45.333333pt;}
.fs0_c00484{font-size:53.333333pt;}
.y0_c00484{bottom:0.000000pt;}
.y28_c00484{bottom:57.600020pt;}
.y27_c00484{bottom:97.933353pt;}
.y26_c00484{bottom:111.400020pt;}
.y25_c00484{bottom:125.133353pt;}
.y24_c00484{bottom:138.600020pt;}
.y23_c00484{bottom:152.333353pt;}
.y22_c00484{bottom:165.800020pt;}
.y21_c00484{bottom:179.533353pt;}
.y20_c00484{bottom:193.000020pt;}
.y1e_c00484{bottom:242.333353pt;}
.y1d_c00484{bottom:259.533353pt;}
.y1c_c00484{bottom:276.733353pt;}
.y1b_c00484{bottom:294.066686pt;}
.y1a_c00484{bottom:311.400020pt;}
.y19_c00484{bottom:328.400020pt;}
.y18_c00484{bottom:345.666686pt;}
.y17_c00484{bottom:362.933353pt;}
.y16_c00484{bottom:380.200020pt;}
.y15_c00484{bottom:397.466686pt;}
.y14_c00484{bottom:414.733353pt;}
.y13_c00484{bottom:432.000020pt;}
.y12_c00484{bottom:449.266686pt;}
.y11_c00484{bottom:466.600020pt;}
.y10_c00484{bottom:484.200020pt;}
.yf_c00484{bottom:501.466686pt;}
.ye_c00484{bottom:518.400020pt;}
.yd_c00484{bottom:535.666686pt;}
.yc_c00484{bottom:553.266686pt;}
.yb_c00484{bottom:570.266686pt;}
.ya_c00484{bottom:587.866686pt;}
.y9_c00484{bottom:605.133353pt;}
.y8_c00484{bottom:622.400020pt;}
.y7_c00484{bottom:639.666686pt;}
.y6_c00484{bottom:657.000020pt;}
.y5_c00484{bottom:673.933353pt;}
.y4_c00484{bottom:691.200020pt;}
.y3_c00484{bottom:708.466686pt;}
.y2_c00484{bottom:733.466686pt;}
.y1_c00484{bottom:750.733353pt;}
.y1f_c00484{bottom:788.333353pt;}
.h4_c00484{height:44.470052pt;}
.h5_c00484{height:44.492188pt;}
.h3_c00484{height:52.317708pt;}
.h2_c00484{height:52.343750pt;}
.h1_c00484{height:851.333333pt;}
.h0_c00484{height:851.533333pt;}
.w1_c00484{width:572.000000pt;}
.w0_c00484{width:572.133333pt;}
.x0_c00484{left:0.000000pt;}
.x3_c00484{left:80.333333pt;}
.x2_c00484{left:81.266667pt;}
.x4_c00484{left:86.400000pt;}
.x1_c00484{left:95.666667pt;}
.x5_c00484{left:116.800000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a2c1ff2dc4a78437200f7dc8.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00485;src:url('chunks/assets/font_acc82ede93771b55ec153b92.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;}
.ls0_c00485{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws0_c00485{word-spacing:-12.750000px;}
.ws2_c00485{word-spacing:0.000000px;}
._16_c00485{margin-left:-11.175081px;}
._7_c00485{margin-left:-10.080000px;}
._6_c00485{margin-left:-9.060000px;}
._13_c00485{margin-left:-7.200000px;}
._14_c00485{margin-left:-5.100000px;}
._17_c00485{margin-left:-3.920973px;}
._b_c00485{margin-left:-2.880000px;}
._d_c00485{margin-left:-1.740000px;}
._0_c00485{width:1.440000px;}
._1_c00485{width:2.580000px;}
._3_c00485{width:3.720000px;}
._a_c00485{width:4.800000px;}
._c_c00485{width:6.480000px;}
._9_c00485{width:7.560000px;}
._2_c00485{width:8.700000px;}
._4_c00485{width:9.720000px;}
._8_c00485{width:10.800000px;}
._5_c00485{width:11.820000px;}
._11_c00485{width:13.920000px;}
._15_c00485{width:16.080000px;}
._12_c00485{width:17.460000px;}
._e_c00485{width:21.480000px;}
._f_c00485{width:22.860000px;}
._10_c00485{width:24.180000px;}
._19_c00485{width:25.410030px;}
._18_c00485{width:26.910042px;}
.fc1_c00485{color:transparent;}
.fc0_c00485{color:rgb(35,31,32);}
.fs1_c00485{font-size:51.000000px;}
.fs0_c00485{font-size:60.000000px;}
.y0_c00485{bottom:0.000000px;}
.y27_c00485{bottom:64.425022px;}
.y26_c00485{bottom:110.550022px;}
.y25_c00485{bottom:125.325022px;}
.y24_c00485{bottom:141.075022px;}
.y23_c00485{bottom:156.225022px;}
.y22_c00485{bottom:171.375022px;}
.y21_c00485{bottom:186.825022px;}
.y20_c00485{bottom:202.350022px;}
.y1f_c00485{bottom:217.125022px;}
.y1e_c00485{bottom:232.950022px;}
.y1d_c00485{bottom:247.725022px;}
.y1b_c00485{bottom:339.900022px;}
.y1a_c00485{bottom:359.325022px;}
.y19_c00485{bottom:378.750022px;}
.y18_c00485{bottom:398.175022px;}
.y17_c00485{bottom:417.600022px;}
.y16_c00485{bottom:437.025022px;}
.y15_c00485{bottom:456.150022px;}
.y14_c00485{bottom:475.950022px;}
.y13_c00485{bottom:495.000022px;}
.y12_c00485{bottom:514.800022px;}
.y11_c00485{bottom:534.225022px;}
.y10_c00485{bottom:553.725022px;}
.yf_c00485{bottom:572.775022px;}
.ye_c00485{bottom:592.575022px;}
.yd_c00485{bottom:612.000022px;}
.yc_c00485{bottom:631.425022px;}
.yb_c00485{bottom:650.925022px;}
.ya_c00485{bottom:669.975022px;}
.y9_c00485{bottom:689.400022px;}
.y8_c00485{bottom:708.825022px;}
.y7_c00485{bottom:728.325022px;}
.y6_c00485{bottom:748.125022px;}
.y5_c00485{bottom:767.550022px;}
.y4_c00485{bottom:786.600022px;}
.y3_c00485{bottom:805.725022px;}
.y2_c00485{bottom:825.525022px;}
.y1_c00485{bottom:844.575022px;}
.y1c_c00485{bottom:886.725022px;}
.h3_c00485{height:50.028809px;}
.h4_c00485{height:50.053711px;}
.h2_c00485{height:58.886719px;}
.h1_c00485{height:957.750000px;}
.h0_c00485{height:957.975000px;}
.w0_c00485{width:641.850030px;}
.w1_c00485{width:642.000000px;}
.x0_c00485{left:0.000000px;}
.x2_c00485{left:80.250000px;}
.x1_c00485{left:81.375000px;}
.x5_c00485{left:87.450000px;}
.x3_c00485{left:96.825000px;}
.x6_c00485{left:120.600000px;}
.x4_c00485{left:169.950000px;}
.x7_c00485{left:531.000000px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls0_c00485{letter-spacing:0.000000pt;}
.ws1_c00485{word-spacing:-13.333333pt;}
.ws0_c00485{word-spacing:-11.333333pt;}
.ws2_c00485{word-spacing:0.000000pt;}
._16_c00485{margin-left:-9.933405pt;}
._7_c00485{margin-left:-8.960000pt;}
._6_c00485{margin-left:-8.053333pt;}
._13_c00485{margin-left:-6.400000pt;}
._14_c00485{margin-left:-4.533333pt;}
._17_c00485{margin-left:-3.485309pt;}
._b_c00485{margin-left:-2.560000pt;}
._d_c00485{margin-left:-1.546667pt;}
._0_c00485{width:1.280000pt;}
._1_c00485{width:2.293333pt;}
._3_c00485{width:3.306667pt;}
._a_c00485{width:4.266667pt;}
._c_c00485{width:5.760000pt;}
._9_c00485{width:6.720000pt;}
._2_c00485{width:7.733333pt;}
._4_c00485{width:8.640000pt;}
._8_c00485{width:9.600000pt;}
._5_c00485{width:10.506667pt;}
._11_c00485{width:12.373333pt;}
._15_c00485{width:14.293333pt;}
._12_c00485{width:15.520000pt;}
._e_c00485{width:19.093333pt;}
._f_c00485{width:20.320000pt;}
._10_c00485{width:21.493333pt;}
._19_c00485{width:22.586693pt;}
._18_c00485{width:23.920037pt;}
.fs1_c00485{font-size:45.333333pt;}
.fs0_c00485{font-size:53.333333pt;}
.y0_c00485{bottom:0.000000pt;}
.y27_c00485{bottom:57.266686pt;}
.y26_c00485{bottom:98.266686pt;}
.y25_c00485{bottom:111.400020pt;}
.y24_c00485{bottom:125.400020pt;}
.y23_c00485{bottom:138.866686pt;}
.y22_c00485{bottom:152.333353pt;}
.y21_c00485{bottom:166.066686pt;}
.y20_c00485{bottom:179.866686pt;}
.y1f_c00485{bottom:193.000020pt;}
.y1e_c00485{bottom:207.066686pt;}
.y1d_c00485{bottom:220.200020pt;}
.y1b_c00485{bottom:302.133353pt;}
.y1a_c00485{bottom:319.400020pt;}
.y19_c00485{bottom:336.666686pt;}
.y18_c00485{bottom:353.933353pt;}
.y17_c00485{bottom:371.200020pt;}
.y16_c00485{bottom:388.466686pt;}
.y15_c00485{bottom:405.466686pt;}
.y14_c00485{bottom:423.066686pt;}
.y13_c00485{bottom:440.000020pt;}
.y12_c00485{bottom:457.600020pt;}
.y11_c00485{bottom:474.866686pt;}
.y10_c00485{bottom:492.200020pt;}
.yf_c00485{bottom:509.133353pt;}
.ye_c00485{bottom:526.733353pt;}
.yd_c00485{bottom:544.000020pt;}
.yc_c00485{bottom:561.266686pt;}
.yb_c00485{bottom:578.600020pt;}
.ya_c00485{bottom:595.533353pt;}
.y9_c00485{bottom:612.800020pt;}
.y8_c00485{bottom:630.066686pt;}
.y7_c00485{bottom:647.400020pt;}
.y6_c00485{bottom:665.000020pt;}
.y5_c00485{bottom:682.266686pt;}
.y4_c00485{bottom:699.200020pt;}
.y3_c00485{bottom:716.200020pt;}
.y2_c00485{bottom:733.800020pt;}
.y1_c00485{bottom:750.733353pt;}
.y1c_c00485{bottom:788.200020pt;}
.h3_c00485{height:44.470052pt;}
.h4_c00485{height:44.492188pt;}
.h2_c00485{height:52.343750pt;}
.h1_c00485{height:851.333333pt;}
.h0_c00485{height:851.533333pt;}
.w0_c00485{width:570.533360pt;}
.w1_c00485{width:570.666667pt;}
.x0_c00485{left:0.000000pt;}
.x2_c00485{left:71.333333pt;}
.x1_c00485{left:72.333333pt;}
.x5_c00485{left:77.733333pt;}
.x3_c00485{left:86.066667pt;}
.x6_c00485{left:107.200000pt;}
.x4_c00485{left:151.066667pt;}
.x7_c00485{left:472.000000pt;}
}





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

.ir_c00486:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00486{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00486;src:url('chunks/assets/font_281ba678c04452886d7ae028.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00486;src:url('chunks/assets/font_5209c096173e414599daf0ec.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;}
@font-face{font-family:ff3_c00486;src:url('chunks/assets/font_49bad4837dc3573bc607998c.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:1.432129;font-style: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;}
.ls0_c00486{letter-spacing:0.000000px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00486{word-spacing:-23.826000px;}
.ws0_c00486{word-spacing:-15.000000px;}
.ws2_c00486{word-spacing:0.000000px;}
._13_c00486{margin-left:-12.240000px;}
._9_c00486{margin-left:-10.560000px;}
._5_c00486{margin-left:-8.640000px;}
._11_c00486{margin-left:-6.540000px;}
._17_c00486{margin-left:-4.421919px;}
._7_c00486{margin-left:-2.520000px;}
._1_c00486{margin-left:-1.380000px;}
._2_c00486{width:1.980000px;}
._3_c00486{width:3.180000px;}
._4_c00486{width:4.260000px;}
._12_c00486{width:5.280000px;}
._d_c00486{width:6.300000px;}
._10_c00486{width:7.500000px;}
._e_c00486{width:8.760000px;}
._0_c00486{width:10.020000px;}
._8_c00486{width:11.520000px;}
._6_c00486{width:12.840000px;}
._b_c00486{width:13.920000px;}
._c_c00486{width:16.140000px;}
._a_c00486{width:18.840000px;}
._f_c00486{width:20.100000px;}
._14_c00486{width:23.070042px;}
._15_c00486{width:26.190054px;}
._16_c00486{width:28.349991px;}
.fc2_c00486{color:transparent;}
.fc1_c00486{color:rgb(204,204,204);}
.fc0_c00486{color:rgb(35,31,32);}
.fs2_c00486{font-size:33.000000px;}
.fs1_c00486{font-size:51.000000px;}
.fs0_c00486{font-size:60.000000px;}
.y0_c00486{bottom:0.000000px;}
.y26_c00486{bottom:28.875022px;}
.y25_c00486{bottom:41.775022px;}
.y27_c00486{bottom:64.425022px;}
.y24_c00486{bottom:109.800022px;}
.y23_c00486{bottom:125.625022px;}
.y22_c00486{bottom:141.150022px;}
.y21_c00486{bottom:155.925022px;}
.y20_c00486{bottom:171.750022px;}
.y1f_c00486{bottom:186.525022px;}
.y1e_c00486{bottom:226.425022px;}
.y1d_c00486{bottom:246.300022px;}
.y1c_c00486{bottom:265.725022px;}
.y1b_c00486{bottom:285.150022px;}
.y1a_c00486{bottom:304.200022px;}
.y19_c00486{bottom:324.000022px;}
.y18_c00486{bottom:343.425022px;}
.y17_c00486{bottom:362.550022px;}
.y16_c00486{bottom:382.350022px;}
.y15_c00486{bottom:401.775022px;}
.y14_c00486{bottom:420.825022px;}
.y13_c00486{bottom:440.325022px;}
.y12_c00486{bottom:459.750022px;}
.y11_c00486{bottom:479.175022px;}
.y10_c00486{bottom:498.225022px;}
.yf_c00486{bottom:518.025022px;}
.ye_c00486{bottom:537.150022px;}
.yd_c00486{bottom:556.950022px;}
.yc_c00486{bottom:595.125022px;}
.ya_c00486{bottom:651.600022px;}
.y9_c00486{bottom:670.725022px;}
.y8_c00486{bottom:690.525022px;}
.y7_c00486{bottom:709.950022px;}
.y6_c00486{bottom:729.375022px;}
.y5_c00486{bottom:748.425022px;}
.y4_c00486{bottom:767.925022px;}
.y3_c00486{bottom:787.725022px;}
.y2_c00486{bottom:825.150022px;}
.y1_c00486{bottom:844.575022px;}
.yb_c00486{bottom:886.875022px;}
.h5_c00486{height:34.417969px;}
.h3_c00486{height:50.028809px;}
.h4_c00486{height:50.053711px;}
.h2_c00486{height:58.886719px;}
.h1_c00486{height:957.750000px;}
.h0_c00486{height:957.975000px;}
.w1_c00486{width:643.500000px;}
.w0_c00486{width:643.650000px;}
.x0_c00486{left:0.000000px;}
.x1_c00486{left:91.050000px;}
.x4_c00486{left:97.200000px;}
.x3_c00486{left:107.250000px;}
.x2_c00486{left:109.800000px;}
.x5_c00486{left:131.775000px;}
.x6_c00486{left:183.975000px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls0_c00486{letter-spacing:0.000000pt;}
.ws1_c00486{word-spacing:-21.178667pt;}
.ws0_c00486{word-spacing:-13.333333pt;}
.ws2_c00486{word-spacing:0.000000pt;}
._13_c00486{margin-left:-10.880000pt;}
._9_c00486{margin-left:-9.386667pt;}
._5_c00486{margin-left:-7.680000pt;}
._11_c00486{margin-left:-5.813333pt;}
._17_c00486{margin-left:-3.930595pt;}
._7_c00486{margin-left:-2.240000pt;}
._1_c00486{margin-left:-1.226667pt;}
._2_c00486{width:1.760000pt;}
._3_c00486{width:2.826667pt;}
._4_c00486{width:3.786667pt;}
._12_c00486{width:4.693333pt;}
._d_c00486{width:5.600000pt;}
._10_c00486{width:6.666667pt;}
._e_c00486{width:7.786667pt;}
._0_c00486{width:8.906667pt;}
._8_c00486{width:10.240000pt;}
._6_c00486{width:11.413333pt;}
._b_c00486{width:12.373333pt;}
._c_c00486{width:14.346667pt;}
._a_c00486{width:16.746667pt;}
._f_c00486{width:17.866667pt;}
._14_c00486{width:20.506704pt;}
._15_c00486{width:23.280048pt;}
._16_c00486{width:25.199992pt;}
.fs2_c00486{font-size:29.333333pt;}
.fs1_c00486{font-size:45.333333pt;}
.fs0_c00486{font-size:53.333333pt;}
.y0_c00486{bottom:0.000000pt;}
.y26_c00486{bottom:25.666686pt;}
.y25_c00486{bottom:37.133353pt;}
.y27_c00486{bottom:57.266686pt;}
.y24_c00486{bottom:97.600020pt;}
.y23_c00486{bottom:111.666686pt;}
.y22_c00486{bottom:125.466686pt;}
.y21_c00486{bottom:138.600020pt;}
.y20_c00486{bottom:152.666686pt;}
.y1f_c00486{bottom:165.800020pt;}
.y1e_c00486{bottom:201.266686pt;}
.y1d_c00486{bottom:218.933353pt;}
.y1c_c00486{bottom:236.200020pt;}
.y1b_c00486{bottom:253.466686pt;}
.y1a_c00486{bottom:270.400020pt;}
.y19_c00486{bottom:288.000020pt;}
.y18_c00486{bottom:305.266686pt;}
.y17_c00486{bottom:322.266686pt;}
.y16_c00486{bottom:339.866686pt;}
.y15_c00486{bottom:357.133353pt;}
.y14_c00486{bottom:374.066686pt;}
.y13_c00486{bottom:391.400020pt;}
.y12_c00486{bottom:408.666686pt;}
.y11_c00486{bottom:425.933353pt;}
.y10_c00486{bottom:442.866686pt;}
.yf_c00486{bottom:460.466686pt;}
.ye_c00486{bottom:477.466686pt;}
.yd_c00486{bottom:495.066686pt;}
.yc_c00486{bottom:529.000020pt;}
.ya_c00486{bottom:579.200020pt;}
.y9_c00486{bottom:596.200020pt;}
.y8_c00486{bottom:613.800020pt;}
.y7_c00486{bottom:631.066686pt;}
.y6_c00486{bottom:648.333353pt;}
.y5_c00486{bottom:665.266686pt;}
.y4_c00486{bottom:682.600020pt;}
.y3_c00486{bottom:700.200020pt;}
.y2_c00486{bottom:733.466686pt;}
.y1_c00486{bottom:750.733353pt;}
.yb_c00486{bottom:788.333353pt;}
.h5_c00486{height:30.593750pt;}
.h3_c00486{height:44.470052pt;}
.h4_c00486{height:44.492188pt;}
.h2_c00486{height:52.343750pt;}
.h1_c00486{height:851.333333pt;}
.h0_c00486{height:851.533333pt;}
.w1_c00486{width:572.000000pt;}
.w0_c00486{width:572.133333pt;}
.x0_c00486{left:0.000000pt;}
.x1_c00486{left:80.933333pt;}
.x4_c00486{left:86.400000pt;}
.x3_c00486{left:95.333333pt;}
.x2_c00486{left:97.600000pt;}
.x5_c00486{left:117.133333pt;}
.x6_c00486{left:163.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3b85203a9448e2f3aca4a79a.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00487;src:url('chunks/assets/font_ac0d2e2962db850dcfbac599.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;}
.ls0_c00487{letter-spacing:0.000000px;}
.sc__c00487{text-shadow:none;}
.sc0_c00487{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00487{-webkit-text-stroke:0px transparent;}
.sc0_c00487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00487{word-spacing:-15.000000px;}
.ws1_c00487{word-spacing:0.000000px;}
._13_c00487{margin-left:-10.980000px;}
._14_c00487{margin-left:-9.660000px;}
._11_c00487{margin-left:-7.020000px;}
._15_c00487{margin-left:-4.980000px;}
._a_c00487{margin-left:-3.240000px;}
._7_c00487{margin-left:-2.220000px;}
._6_c00487{margin-left:-1.020000px;}
._0_c00487{width:1.140000px;}
._5_c00487{width:2.280000px;}
._4_c00487{width:3.300000px;}
._b_c00487{width:4.440000px;}
._3_c00487{width:5.640000px;}
._1_c00487{width:7.380000px;}
._2_c00487{width:8.760000px;}
._9_c00487{width:10.500000px;}
._8_c00487{width:11.700000px;}
._12_c00487{width:12.720000px;}
._f_c00487{width:13.740000px;}
._d_c00487{width:16.800000px;}
._10_c00487{width:18.480000px;}
._c_c00487{width:20.340000px;}
._e_c00487{width:21.780000px;}
._16_c00487{width:24.990042px;}
._17_c00487{width:28.229991px;}
.fc1_c00487{color:transparent;}
.fc0_c00487{color:rgb(35,31,32);}
.fs1_c00487{font-size:51.000000px;}
.fs0_c00487{font-size:60.000000px;}
.y0_c00487{bottom:0.000000px;}
.y27_c00487{bottom:64.425022px;}
.y26_c00487{bottom:110.175022px;}
.y25_c00487{bottom:125.325022px;}
.y23_c00487{bottom:184.725022px;}
.y22_c00487{bottom:203.775022px;}
.y21_c00487{bottom:223.200022px;}
.y20_c00487{bottom:242.625022px;}
.y1f_c00487{bottom:262.500022px;}
.y1e_c00487{bottom:281.925022px;}
.y1d_c00487{bottom:301.350022px;}
.y1c_c00487{bottom:320.025022px;}
.y1b_c00487{bottom:339.525022px;}
.y1a_c00487{bottom:359.325022px;}
.y19_c00487{bottom:378.750022px;}
.y18_c00487{bottom:398.175022px;}
.y17_c00487{bottom:417.600022px;}
.y16_c00487{bottom:437.025022px;}
.y15_c00487{bottom:456.525022px;}
.y14_c00487{bottom:475.950022px;}
.y13_c00487{bottom:495.075022px;}
.y12_c00487{bottom:514.500022px;}
.y11_c00487{bottom:533.925022px;}
.y10_c00487{bottom:553.350022px;}
.yf_c00487{bottom:573.150022px;}
.ye_c00487{bottom:592.575022px;}
.yd_c00487{bottom:611.625022px;}
.yc_c00487{bottom:631.125022px;}
.yb_c00487{bottom:650.925022px;}
.ya_c00487{bottom:670.350022px;}
.y9_c00487{bottom:689.775022px;}
.y8_c00487{bottom:709.200022px;}
.y7_c00487{bottom:728.625022px;}
.y6_c00487{bottom:747.750022px;}
.y5_c00487{bottom:767.175022px;}
.y4_c00487{bottom:786.225022px;}
.y3_c00487{bottom:806.025022px;}
.y2_c00487{bottom:825.150022px;}
.y1_c00487{bottom:844.575022px;}
.y24_c00487{bottom:886.725022px;}
.h3_c00487{height:50.028809px;}
.h4_c00487{height:50.053711px;}
.h2_c00487{height:58.886719px;}
.h1_c00487{height:957.750000px;}
.h0_c00487{height:957.975000px;}
.w0_c00487{width:641.850030px;}
.w1_c00487{width:642.000000px;}
.x0_c00487{left:0.000000px;}
.x1_c00487{left:81.375000px;}
.x4_c00487{left:87.450000px;}
.x2_c00487{left:97.200000px;}
.x3_c00487{left:169.950000px;}
.x5_c00487{left:531.000000px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls0_c00487{letter-spacing:0.000000pt;}
.ws0_c00487{word-spacing:-13.333333pt;}
.ws1_c00487{word-spacing:0.000000pt;}
._13_c00487{margin-left:-9.760000pt;}
._14_c00487{margin-left:-8.586667pt;}
._11_c00487{margin-left:-6.240000pt;}
._15_c00487{margin-left:-4.426667pt;}
._a_c00487{margin-left:-2.880000pt;}
._7_c00487{margin-left:-1.973333pt;}
._6_c00487{margin-left:-0.906667pt;}
._0_c00487{width:1.013333pt;}
._5_c00487{width:2.026667pt;}
._4_c00487{width:2.933333pt;}
._b_c00487{width:3.946667pt;}
._3_c00487{width:5.013333pt;}
._1_c00487{width:6.560000pt;}
._2_c00487{width:7.786667pt;}
._9_c00487{width:9.333333pt;}
._8_c00487{width:10.400000pt;}
._12_c00487{width:11.306667pt;}
._f_c00487{width:12.213333pt;}
._d_c00487{width:14.933333pt;}
._10_c00487{width:16.426667pt;}
._c_c00487{width:18.080000pt;}
._e_c00487{width:19.360000pt;}
._16_c00487{width:22.213371pt;}
._17_c00487{width:25.093325pt;}
.fs1_c00487{font-size:45.333333pt;}
.fs0_c00487{font-size:53.333333pt;}
.y0_c00487{bottom:0.000000pt;}
.y27_c00487{bottom:57.266686pt;}
.y26_c00487{bottom:97.933353pt;}
.y25_c00487{bottom:111.400020pt;}
.y23_c00487{bottom:164.200020pt;}
.y22_c00487{bottom:181.133353pt;}
.y21_c00487{bottom:198.400020pt;}
.y20_c00487{bottom:215.666686pt;}
.y1f_c00487{bottom:233.333353pt;}
.y1e_c00487{bottom:250.600020pt;}
.y1d_c00487{bottom:267.866686pt;}
.y1c_c00487{bottom:284.466686pt;}
.y1b_c00487{bottom:301.800020pt;}
.y1a_c00487{bottom:319.400020pt;}
.y19_c00487{bottom:336.666686pt;}
.y18_c00487{bottom:353.933353pt;}
.y17_c00487{bottom:371.200020pt;}
.y16_c00487{bottom:388.466686pt;}
.y15_c00487{bottom:405.800020pt;}
.y14_c00487{bottom:423.066686pt;}
.y13_c00487{bottom:440.066686pt;}
.y12_c00487{bottom:457.333353pt;}
.y11_c00487{bottom:474.600020pt;}
.y10_c00487{bottom:491.866686pt;}
.yf_c00487{bottom:509.466686pt;}
.ye_c00487{bottom:526.733353pt;}
.yd_c00487{bottom:543.666686pt;}
.yc_c00487{bottom:561.000020pt;}
.yb_c00487{bottom:578.600020pt;}
.ya_c00487{bottom:595.866686pt;}
.y9_c00487{bottom:613.133353pt;}
.y8_c00487{bottom:630.400020pt;}
.y7_c00487{bottom:647.666686pt;}
.y6_c00487{bottom:664.666686pt;}
.y5_c00487{bottom:681.933353pt;}
.y4_c00487{bottom:698.866686pt;}
.y3_c00487{bottom:716.466686pt;}
.y2_c00487{bottom:733.466686pt;}
.y1_c00487{bottom:750.733353pt;}
.y24_c00487{bottom:788.200020pt;}
.h3_c00487{height:44.470052pt;}
.h4_c00487{height:44.492188pt;}
.h2_c00487{height:52.343750pt;}
.h1_c00487{height:851.333333pt;}
.h0_c00487{height:851.533333pt;}
.w0_c00487{width:570.533360pt;}
.w1_c00487{width:570.666667pt;}
.x0_c00487{left:0.000000pt;}
.x1_c00487{left:72.333333pt;}
.x4_c00487{left:77.733333pt;}
.x2_c00487{left:86.400000pt;}
.x3_c00487{left:151.066667pt;}
.x5_c00487{left:472.000000pt;}
}





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

.ir_c00488:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00488{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00488;src:url('chunks/assets/font_3832f312c04b3334a953ce71.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00488;src:url('chunks/assets/font_affa59f06423168d3e600fd8.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00488{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.ls0_c00488{letter-spacing:0.000000px;}
.sc__c00488{text-shadow:none;}
.sc0_c00488{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00488{-webkit-text-stroke:0px transparent;}
.sc0_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00488{word-spacing:-15.000000px;}
.ws1_c00488{word-spacing:0.000000px;}
._10_c00488{margin-left:-16.275063px;}
._14_c00488{margin-left:-15.083928px;}
._11_c00488{margin-left:-10.800000px;}
._7_c00488{margin-left:-9.300000px;}
._d_c00488{margin-left:-7.199976px;}
._15_c00488{margin-left:-5.742060px;}
._6_c00488{margin-left:-4.494102px;}
._1_c00488{margin-left:-3.300006px;}
._0_c00488{margin-left:-1.760979px;}
._2_c00488{width:1.839009px;}
._3_c00488{width:3.320967px;}
._a_c00488{width:4.518066px;}
._5_c00488{width:5.843964px;}
._8_c00488{width:7.200000px;}
._4_c00488{width:8.387928px;}
._e_c00488{width:9.416973px;}
._9_c00488{width:11.042973px;}
._c_c00488{width:12.317922px;}
._b_c00488{width:13.755093px;}
._f_c00488{width:16.098144px;}
._12_c00488{width:17.843964px;}
._13_c00488{width:18.983826px;}
._16_c00488{width:25.572012px;}
.fc1_c00488{color:transparent;}
.fc0_c00488{color:rgb(35,31,32);}
.fs0_c00488{font-size:51.000000px;}
.fs1_c00488{font-size:60.000000px;}
.y0_c00488{bottom:0.000000px;}
.y24_c00488{bottom:64.425022px;}
.y23_c00488{bottom:110.175022px;}
.y22_c00488{bottom:125.325022px;}
.y21_c00488{bottom:165.225022px;}
.y20_c00488{bottom:184.725022px;}
.y1f_c00488{bottom:204.525022px;}
.y1e_c00488{bottom:223.950022px;}
.y1d_c00488{bottom:243.375022px;}
.y1c_c00488{bottom:262.800022px;}
.y1b_c00488{bottom:281.925022px;}
.y1a_c00488{bottom:301.350022px;}
.y19_c00488{bottom:321.150022px;}
.y18_c00488{bottom:340.575022px;}
.y17_c00488{bottom:380.175022px;}
.y16_c00488{bottom:438.150022px;}
.y15_c00488{bottom:457.575022px;}
.y14_c00488{bottom:477.000022px;}
.y13_c00488{bottom:496.800022px;}
.y12_c00488{bottom:515.925022px;}
.y11_c00488{bottom:535.725022px;}
.y10_c00488{bottom:554.775022px;}
.yf_c00488{bottom:574.200022px;}
.ye_c00488{bottom:602.625022px;}
.yd_c00488{bottom:622.125022px;}
.yc_c00488{bottom:641.550022px;}
.yb_c00488{bottom:660.975022px;}
.ya_c00488{bottom:680.400022px;}
.y9_c00488{bottom:699.825022px;}
.y8_c00488{bottom:719.325022px;}
.y7_c00488{bottom:747.750022px;}
.y6_c00488{bottom:767.175022px;}
.y5_c00488{bottom:786.600022px;}
.y4_c00488{bottom:805.725022px;}
.y3_c00488{bottom:825.150022px;}
.y2_c00488{bottom:844.950022px;}
.y1_c00488{bottom:886.875022px;}
.h2_c00488{height:50.028809px;}
.h5_c00488{height:50.053711px;}
.h4_c00488{height:58.857422px;}
.h3_c00488{height:58.886719px;}
.h1_c00488{height:957.750000px;}
.h0_c00488{height:957.975000px;}
.w1_c00488{width:643.500000px;}
.w0_c00488{width:643.650000px;}
.x0_c00488{left:0.000000px;}
.x1_c00488{left:90.750000px;}
.x4_c00488{left:97.200000px;}
.x2_c00488{left:106.200000px;}
.x3_c00488{left:107.250000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls0_c00488{letter-spacing:0.000000pt;}
.ws0_c00488{word-spacing:-13.333333pt;}
.ws1_c00488{word-spacing:0.000000pt;}
._10_c00488{margin-left:-14.466723pt;}
._14_c00488{margin-left:-13.407936pt;}
._11_c00488{margin-left:-9.600000pt;}
._7_c00488{margin-left:-8.266667pt;}
._d_c00488{margin-left:-6.399979pt;}
._15_c00488{margin-left:-5.104053pt;}
._6_c00488{margin-left:-3.994757pt;}
._1_c00488{margin-left:-2.933339pt;}
._0_c00488{margin-left:-1.565315pt;}
._2_c00488{width:1.634675pt;}
._3_c00488{width:2.951971pt;}
._a_c00488{width:4.016059pt;}
._5_c00488{width:5.194635pt;}
._8_c00488{width:6.400000pt;}
._4_c00488{width:7.455936pt;}
._e_c00488{width:8.370643pt;}
._9_c00488{width:9.815976pt;}
._c_c00488{width:10.949264pt;}
._b_c00488{width:12.226749pt;}
._f_c00488{width:14.309461pt;}
._12_c00488{width:15.861301pt;}
._13_c00488{width:16.874512pt;}
._16_c00488{width:22.730677pt;}
.fs0_c00488{font-size:45.333333pt;}
.fs1_c00488{font-size:53.333333pt;}
.y0_c00488{bottom:0.000000pt;}
.y24_c00488{bottom:57.266686pt;}
.y23_c00488{bottom:97.933353pt;}
.y22_c00488{bottom:111.400020pt;}
.y21_c00488{bottom:146.866686pt;}
.y20_c00488{bottom:164.200020pt;}
.y1f_c00488{bottom:181.800020pt;}
.y1e_c00488{bottom:199.066686pt;}
.y1d_c00488{bottom:216.333353pt;}
.y1c_c00488{bottom:233.600020pt;}
.y1b_c00488{bottom:250.600020pt;}
.y1a_c00488{bottom:267.866686pt;}
.y19_c00488{bottom:285.466686pt;}
.y18_c00488{bottom:302.733353pt;}
.y17_c00488{bottom:337.933353pt;}
.y16_c00488{bottom:389.466686pt;}
.y15_c00488{bottom:406.733353pt;}
.y14_c00488{bottom:424.000020pt;}
.y13_c00488{bottom:441.600020pt;}
.y12_c00488{bottom:458.600020pt;}
.y11_c00488{bottom:476.200020pt;}
.y10_c00488{bottom:493.133353pt;}
.yf_c00488{bottom:510.400020pt;}
.ye_c00488{bottom:535.666686pt;}
.yd_c00488{bottom:553.000020pt;}
.yc_c00488{bottom:570.266686pt;}
.yb_c00488{bottom:587.533353pt;}
.ya_c00488{bottom:604.800020pt;}
.y9_c00488{bottom:622.066686pt;}
.y8_c00488{bottom:639.400020pt;}
.y7_c00488{bottom:664.666686pt;}
.y6_c00488{bottom:681.933353pt;}
.y5_c00488{bottom:699.200020pt;}
.y4_c00488{bottom:716.200020pt;}
.y3_c00488{bottom:733.466686pt;}
.y2_c00488{bottom:751.066686pt;}
.y1_c00488{bottom:788.333353pt;}
.h2_c00488{height:44.470052pt;}
.h5_c00488{height:44.492188pt;}
.h4_c00488{height:52.317708pt;}
.h3_c00488{height:52.343750pt;}
.h1_c00488{height:851.333333pt;}
.h0_c00488{height:851.533333pt;}
.w1_c00488{width:572.000000pt;}
.w0_c00488{width:572.133333pt;}
.x0_c00488{left:0.000000pt;}
.x1_c00488{left:80.666667pt;}
.x4_c00488{left:86.400000pt;}
.x2_c00488{left:94.400000pt;}
.x3_c00488{left:95.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c7867eff351d610498357707.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00489;src:url('chunks/assets/font_fab57e609d39679cea8de980.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;}
.ls1_c00489{letter-spacing:0.000000px;}
.ls0_c00489{letter-spacing:17.550000px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00489{word-spacing:-15.000000px;}
.ws1_c00489{word-spacing:-12.750000px;}
.ws2_c00489{word-spacing:0.000000px;}
._12_c00489{margin-left:-15.960000px;}
._10_c00489{margin-left:-14.820000px;}
._15_c00489{margin-left:-10.755081px;}
._16_c00489{margin-left:-8.700000px;}
._11_c00489{margin-left:-6.720000px;}
._8_c00489{margin-left:-5.340000px;}
._b_c00489{margin-left:-3.720000px;}
._a_c00489{margin-left:-2.700000px;}
._5_c00489{margin-left:-1.500000px;}
._0_c00489{width:1.260000px;}
._3_c00489{width:2.400000px;}
._4_c00489{width:4.080000px;}
._c_c00489{width:5.580000px;}
._1_c00489{width:6.600000px;}
._13_c00489{width:7.920000px;}
._2_c00489{width:9.480000px;}
._7_c00489{width:10.620000px;}
._6_c00489{width:12.300000px;}
._9_c00489{width:13.800000px;}
._f_c00489{width:16.380000px;}
._14_c00489{width:18.060000px;}
._e_c00489{width:19.260000px;}
._d_c00489{width:21.660000px;}
._17_c00489{width:22.920000px;}
.fc2_c00489{color:transparent;}
.fc1_c00489{color:rgb(0,0,0);}
.fc0_c00489{color:rgb(35,31,32);}
.fs1_c00489{font-size:51.000000px;}
.fs0_c00489{font-size:60.000000px;}
.y0_c00489{bottom:0.000000px;}
.y24_c00489{bottom:64.425022px;}
.y23_c00489{bottom:110.175022px;}
.y22_c00489{bottom:167.025022px;}
.y21_c00489{bottom:186.825022px;}
.y20_c00489{bottom:206.325022px;}
.y1f_c00489{bottom:225.375022px;}
.y1e_c00489{bottom:244.800022px;}
.y1d_c00489{bottom:264.225022px;}
.y1c_c00489{bottom:284.025022px;}
.y1b_c00489{bottom:303.150022px;}
.y1a_c00489{bottom:341.325022px;}
.y19_c00489{bottom:361.125022px;}
.y17_c00489{bottom:417.225022px;}
.y16_c00489{bottom:436.725022px;}
.y15_c00489{bottom:456.150022px;}
.y14_c00489{bottom:475.575022px;}
.y13_c00489{bottom:495.000022px;}
.y12_c00489{bottom:514.800022px;}
.y11_c00489{bottom:534.225022px;}
.y10_c00489{bottom:553.725022px;}
.yf_c00489{bottom:573.150022px;}
.ye_c00489{bottom:592.200022px;}
.yd_c00489{bottom:611.625022px;}
.yc_c00489{bottom:631.125022px;}
.yb_c00489{bottom:650.550022px;}
.ya_c00489{bottom:669.975022px;}
.y9_c00489{bottom:689.775022px;}
.y8_c00489{bottom:709.200022px;}
.y7_c00489{bottom:728.325022px;}
.y6_c00489{bottom:748.125022px;}
.y5_c00489{bottom:767.175022px;}
.y4_c00489{bottom:786.600022px;}
.y3_c00489{bottom:805.725022px;}
.y2_c00489{bottom:825.150022px;}
.y1_c00489{bottom:844.950022px;}
.y18_c00489{bottom:886.725022px;}
.h3_c00489{height:50.028809px;}
.h4_c00489{height:50.053711px;}
.h2_c00489{height:58.886719px;}
.h1_c00489{height:957.750000px;}
.h0_c00489{height:957.975000px;}
.w0_c00489{width:641.850030px;}
.w1_c00489{width:642.000000px;}
.x0_c00489{left:0.000000px;}
.x1_c00489{left:81.000000px;}
.x5_c00489{left:87.450000px;}
.x2_c00489{left:96.825000px;}
.x4_c00489{left:104.025000px;}
.x3_c00489{left:169.950000px;}
.x6_c00489{left:531.000000px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls1_c00489{letter-spacing:0.000000pt;}
.ls0_c00489{letter-spacing:15.600000pt;}
.ws0_c00489{word-spacing:-13.333333pt;}
.ws1_c00489{word-spacing:-11.333333pt;}
.ws2_c00489{word-spacing:0.000000pt;}
._12_c00489{margin-left:-14.186667pt;}
._10_c00489{margin-left:-13.173333pt;}
._15_c00489{margin-left:-9.560072pt;}
._16_c00489{margin-left:-7.733333pt;}
._11_c00489{margin-left:-5.973333pt;}
._8_c00489{margin-left:-4.746667pt;}
._b_c00489{margin-left:-3.306667pt;}
._a_c00489{margin-left:-2.400000pt;}
._5_c00489{margin-left:-1.333333pt;}
._0_c00489{width:1.120000pt;}
._3_c00489{width:2.133333pt;}
._4_c00489{width:3.626667pt;}
._c_c00489{width:4.960000pt;}
._1_c00489{width:5.866667pt;}
._13_c00489{width:7.040000pt;}
._2_c00489{width:8.426667pt;}
._7_c00489{width:9.440000pt;}
._6_c00489{width:10.933333pt;}
._9_c00489{width:12.266667pt;}
._f_c00489{width:14.560000pt;}
._14_c00489{width:16.053333pt;}
._e_c00489{width:17.120000pt;}
._d_c00489{width:19.253333pt;}
._17_c00489{width:20.373333pt;}
.fs1_c00489{font-size:45.333333pt;}
.fs0_c00489{font-size:53.333333pt;}
.y0_c00489{bottom:0.000000pt;}
.y24_c00489{bottom:57.266686pt;}
.y23_c00489{bottom:97.933353pt;}
.y22_c00489{bottom:148.466686pt;}
.y21_c00489{bottom:166.066686pt;}
.y20_c00489{bottom:183.400020pt;}
.y1f_c00489{bottom:200.333353pt;}
.y1e_c00489{bottom:217.600020pt;}
.y1d_c00489{bottom:234.866686pt;}
.y1c_c00489{bottom:252.466686pt;}
.y1b_c00489{bottom:269.466686pt;}
.y1a_c00489{bottom:303.400020pt;}
.y19_c00489{bottom:321.000020pt;}
.y17_c00489{bottom:370.866686pt;}
.y16_c00489{bottom:388.200020pt;}
.y15_c00489{bottom:405.466686pt;}
.y14_c00489{bottom:422.733353pt;}
.y13_c00489{bottom:440.000020pt;}
.y12_c00489{bottom:457.600020pt;}
.y11_c00489{bottom:474.866686pt;}
.y10_c00489{bottom:492.200020pt;}
.yf_c00489{bottom:509.466686pt;}
.ye_c00489{bottom:526.400020pt;}
.yd_c00489{bottom:543.666686pt;}
.yc_c00489{bottom:561.000020pt;}
.yb_c00489{bottom:578.266686pt;}
.ya_c00489{bottom:595.533353pt;}
.y9_c00489{bottom:613.133353pt;}
.y8_c00489{bottom:630.400020pt;}
.y7_c00489{bottom:647.400020pt;}
.y6_c00489{bottom:665.000020pt;}
.y5_c00489{bottom:681.933353pt;}
.y4_c00489{bottom:699.200020pt;}
.y3_c00489{bottom:716.200020pt;}
.y2_c00489{bottom:733.466686pt;}
.y1_c00489{bottom:751.066686pt;}
.y18_c00489{bottom:788.200020pt;}
.h3_c00489{height:44.470052pt;}
.h4_c00489{height:44.492188pt;}
.h2_c00489{height:52.343750pt;}
.h1_c00489{height:851.333333pt;}
.h0_c00489{height:851.533333pt;}
.w0_c00489{width:570.533360pt;}
.w1_c00489{width:570.666667pt;}
.x0_c00489{left:0.000000pt;}
.x1_c00489{left:72.000000pt;}
.x5_c00489{left:77.733333pt;}
.x2_c00489{left:86.066667pt;}
.x4_c00489{left:92.466667pt;}
.x3_c00489{left:151.066667pt;}
.x6_c00489{left:472.000000pt;}
}





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

.ir_c00490:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00490{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00490;src:url('chunks/assets/font_d4411dbc44714f2b636d9f68.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00490;src:url('chunks/assets/font_502961d35266d34c1562f955.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);}
.m1_c00490{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls0_c00490{letter-spacing:0.000000px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00490{word-spacing:-15.000000px;}
.ws0_c00490{word-spacing:-12.750000px;}
.ws2_c00490{word-spacing:0.000000px;}
._14_c00490{margin-left:-12.960000px;}
._13_c00490{margin-left:-11.520000px;}
._d_c00490{margin-left:-9.900000px;}
._c_c00490{margin-left:-8.820000px;}
._b_c00490{margin-left:-7.080000px;}
._16_c00490{margin-left:-5.847090px;}
._8_c00490{margin-left:-3.840000px;}
._9_c00490{margin-left:-2.100000px;}
._3_c00490{margin-left:-1.020000px;}
._1_c00490{width:1.260000px;}
._4_c00490{width:2.460000px;}
._f_c00490{width:3.480000px;}
._2_c00490{width:4.500000px;}
._0_c00490{width:6.060000px;}
._5_c00490{width:8.040000px;}
._7_c00490{width:9.780000px;}
._6_c00490{width:11.700000px;}
._a_c00490{width:13.380000px;}
._10_c00490{width:17.040000px;}
._e_c00490{width:18.540000px;}
._11_c00490{width:19.800000px;}
._12_c00490{width:21.540000px;}
._15_c00490{width:22.650042px;}
._17_c00490{width:24.750042px;}
._18_c00490{width:28.350003px;}
.fc1_c00490{color:transparent;}
.fc0_c00490{color:rgb(35,31,32);}
.fs1_c00490{font-size:51.000000px;}
.fs0_c00490{font-size:60.000000px;}
.y0_c00490{bottom:0.000000px;}
.y2a_c00490{bottom:64.425022px;}
.y29_c00490{bottom:110.175022px;}
.y28_c00490{bottom:125.325022px;}
.y27_c00490{bottom:140.775022px;}
.y26_c00490{bottom:155.925022px;}
.y25_c00490{bottom:171.750022px;}
.y24_c00490{bottom:186.825022px;}
.y23_c00490{bottom:201.975022px;}
.y22_c00490{bottom:217.425022px;}
.y21_c00490{bottom:232.575022px;}
.y20_c00490{bottom:247.725022px;}
.y1f_c00490{bottom:263.175022px;}
.y1e_c00490{bottom:278.325022px;}
.y1d_c00490{bottom:294.150022px;}
.y1c_c00490{bottom:309.225022px;}
.y1a_c00490{bottom:359.325022px;}
.y19_c00490{bottom:378.750022px;}
.y18_c00490{bottom:397.800022px;}
.y17_c00490{bottom:417.225022px;}
.y16_c00490{bottom:437.025022px;}
.y15_c00490{bottom:456.525022px;}
.y14_c00490{bottom:475.575022px;}
.y13_c00490{bottom:495.375022px;}
.y12_c00490{bottom:514.800022px;}
.y11_c00490{bottom:533.925022px;}
.y10_c00490{bottom:553.350022px;}
.yf_c00490{bottom:572.775022px;}
.ye_c00490{bottom:592.575022px;}
.yd_c00490{bottom:612.000022px;}
.yc_c00490{bottom:631.125022px;}
.yb_c00490{bottom:650.925022px;}
.ya_c00490{bottom:669.975022px;}
.y9_c00490{bottom:689.775022px;}
.y8_c00490{bottom:708.825022px;}
.y7_c00490{bottom:728.325022px;}
.y6_c00490{bottom:748.125022px;}
.y5_c00490{bottom:767.550022px;}
.y4_c00490{bottom:786.225022px;}
.y3_c00490{bottom:806.100022px;}
.y2_c00490{bottom:825.525022px;}
.y1_c00490{bottom:844.950022px;}
.y1b_c00490{bottom:886.875022px;}
.h3_c00490{height:50.028809px;}
.h4_c00490{height:50.053711px;}
.h2_c00490{height:58.886719px;}
.h1_c00490{height:957.750000px;}
.h0_c00490{height:957.975000px;}
.w1_c00490{width:643.500000px;}
.w0_c00490{width:643.650000px;}
.x0_c00490{left:0.000000px;}
.x3_c00490{left:90.375000px;}
.x1_c00490{left:91.425000px;}
.x4_c00490{left:97.200000px;}
.x2_c00490{left:107.250000px;}
.x5_c00490{left:131.025000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls0_c00490{letter-spacing:0.000000pt;}
.ws1_c00490{word-spacing:-13.333333pt;}
.ws0_c00490{word-spacing:-11.333333pt;}
.ws2_c00490{word-spacing:0.000000pt;}
._14_c00490{margin-left:-11.520000pt;}
._13_c00490{margin-left:-10.240000pt;}
._d_c00490{margin-left:-8.800000pt;}
._c_c00490{margin-left:-7.840000pt;}
._b_c00490{margin-left:-6.293333pt;}
._16_c00490{margin-left:-5.197413pt;}
._8_c00490{margin-left:-3.413333pt;}
._9_c00490{margin-left:-1.866667pt;}
._3_c00490{margin-left:-0.906667pt;}
._1_c00490{width:1.120000pt;}
._4_c00490{width:2.186667pt;}
._f_c00490{width:3.093333pt;}
._2_c00490{width:4.000000pt;}
._0_c00490{width:5.386667pt;}
._5_c00490{width:7.146667pt;}
._7_c00490{width:8.693333pt;}
._6_c00490{width:10.400000pt;}
._a_c00490{width:11.893333pt;}
._10_c00490{width:15.146667pt;}
._e_c00490{width:16.480000pt;}
._11_c00490{width:17.600000pt;}
._12_c00490{width:19.146667pt;}
._15_c00490{width:20.133371pt;}
._17_c00490{width:22.000037pt;}
._18_c00490{width:25.200003pt;}
.fs1_c00490{font-size:45.333333pt;}
.fs0_c00490{font-size:53.333333pt;}
.y0_c00490{bottom:0.000000pt;}
.y2a_c00490{bottom:57.266686pt;}
.y29_c00490{bottom:97.933353pt;}
.y28_c00490{bottom:111.400020pt;}
.y27_c00490{bottom:125.133353pt;}
.y26_c00490{bottom:138.600020pt;}
.y25_c00490{bottom:152.666686pt;}
.y24_c00490{bottom:166.066686pt;}
.y23_c00490{bottom:179.533353pt;}
.y22_c00490{bottom:193.266686pt;}
.y21_c00490{bottom:206.733353pt;}
.y20_c00490{bottom:220.200020pt;}
.y1f_c00490{bottom:233.933353pt;}
.y1e_c00490{bottom:247.400020pt;}
.y1d_c00490{bottom:261.466686pt;}
.y1c_c00490{bottom:274.866686pt;}
.y1a_c00490{bottom:319.400020pt;}
.y19_c00490{bottom:336.666686pt;}
.y18_c00490{bottom:353.600020pt;}
.y17_c00490{bottom:370.866686pt;}
.y16_c00490{bottom:388.466686pt;}
.y15_c00490{bottom:405.800020pt;}
.y14_c00490{bottom:422.733353pt;}
.y13_c00490{bottom:440.333353pt;}
.y12_c00490{bottom:457.600020pt;}
.y11_c00490{bottom:474.600020pt;}
.y10_c00490{bottom:491.866686pt;}
.yf_c00490{bottom:509.133353pt;}
.ye_c00490{bottom:526.733353pt;}
.yd_c00490{bottom:544.000020pt;}
.yc_c00490{bottom:561.000020pt;}
.yb_c00490{bottom:578.600020pt;}
.ya_c00490{bottom:595.533353pt;}
.y9_c00490{bottom:613.133353pt;}
.y8_c00490{bottom:630.066686pt;}
.y7_c00490{bottom:647.400020pt;}
.y6_c00490{bottom:665.000020pt;}
.y5_c00490{bottom:682.266686pt;}
.y4_c00490{bottom:698.866686pt;}
.y3_c00490{bottom:716.533353pt;}
.y2_c00490{bottom:733.800020pt;}
.y1_c00490{bottom:751.066686pt;}
.y1b_c00490{bottom:788.333353pt;}
.h3_c00490{height:44.470052pt;}
.h4_c00490{height:44.492188pt;}
.h2_c00490{height:52.343750pt;}
.h1_c00490{height:851.333333pt;}
.h0_c00490{height:851.533333pt;}
.w1_c00490{width:572.000000pt;}
.w0_c00490{width:572.133333pt;}
.x0_c00490{left:0.000000pt;}
.x3_c00490{left:80.333333pt;}
.x1_c00490{left:81.266667pt;}
.x4_c00490{left:86.400000pt;}
.x2_c00490{left:95.333333pt;}
.x5_c00490{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_779d67cbf4e413298671a536.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00491;src:url('chunks/assets/font_af2776622dcfdf987f7d2683.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00491{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls0_c00491{letter-spacing:0.000000px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00491{word-spacing:-15.000000px;}
.ws0_c00491{word-spacing:-12.750000px;}
.ws2_c00491{word-spacing:0.000000px;}
._5_c00491{margin-left:-10.805931px;}
._a_c00491{margin-left:-8.813946px;}
._15_c00491{margin-left:-7.727943px;}
._4_c00491{margin-left:-4.983006px;}
._14_c00491{margin-left:-3.789045px;}
._1_c00491{margin-left:-2.660976px;}
._0_c00491{margin-left:-1.383018px;}
._3_c00491{width:1.049988px;}
._2_c00491{width:2.178006px;}
._6_c00491{width:4.122024px;}
._8_c00491{width:5.661000px;}
._7_c00491{width:7.199976px;}
._f_c00491{width:8.898228px;}
._e_c00491{width:10.266006px;}
._10_c00491{width:11.418036px;}
._9_c00491{width:13.026198px;}
._b_c00491{width:16.074000px;}
._d_c00491{width:17.463048px;}
._c_c00491{width:19.263018px;}
._11_c00491{width:21.159108px;}
._12_c00491{width:26.082114px;}
._13_c00491{width:27.360021px;}
.fc1_c00491{color:transparent;}
.fc0_c00491{color:rgb(35,31,32);}
.fs0_c00491{font-size:51.000000px;}
.fs1_c00491{font-size:60.000000px;}
.y0_c00491{bottom:0.000000px;}
.y26_c00491{bottom:64.425022px;}
.y25_c00491{bottom:110.175022px;}
.y24_c00491{bottom:125.325022px;}
.y23_c00491{bottom:140.775022px;}
.y22_c00491{bottom:156.225022px;}
.y21_c00491{bottom:171.375022px;}
.y20_c00491{bottom:186.525022px;}
.y1f_c00491{bottom:201.975022px;}
.y1e_c00491{bottom:242.325022px;}
.y1d_c00491{bottom:261.450022px;}
.y1c_c00491{bottom:280.875022px;}
.y1b_c00491{bottom:300.300022px;}
.y1a_c00491{bottom:319.725022px;}
.y19_c00491{bottom:339.150022px;}
.y18_c00491{bottom:358.125022px;}
.y17_c00491{bottom:377.625022px;}
.y16_c00491{bottom:397.125022px;}
.y15_c00491{bottom:416.925022px;}
.y14_c00491{bottom:436.350022px;}
.y13_c00491{bottom:475.575022px;}
.y12_c00491{bottom:534.300022px;}
.y11_c00491{bottom:553.725022px;}
.y10_c00491{bottom:573.150022px;}
.yf_c00491{bottom:592.575022px;}
.ye_c00491{bottom:612.000022px;}
.yd_c00491{bottom:631.425022px;}
.yc_c00491{bottom:650.550022px;}
.yb_c00491{bottom:669.975022px;}
.ya_c00491{bottom:689.775022px;}
.y9_c00491{bottom:708.825022px;}
.y8_c00491{bottom:728.625022px;}
.y7_c00491{bottom:748.125022px;}
.y6_c00491{bottom:767.550022px;}
.y5_c00491{bottom:786.600022px;}
.y4_c00491{bottom:806.025022px;}
.y3_c00491{bottom:825.525022px;}
.y2_c00491{bottom:844.950022px;}
.y1_c00491{bottom:886.725022px;}
.h2_c00491{height:50.028809px;}
.h4_c00491{height:50.053711px;}
.h3_c00491{height:58.886719px;}
.h1_c00491{height:957.750000px;}
.h0_c00491{height:957.975000px;}
.w0_c00491{width:641.850030px;}
.w1_c00491{width:642.000000px;}
.x0_c00491{left:0.000000px;}
.x4_c00491{left:80.250000px;}
.x2_c00491{left:81.375000px;}
.x5_c00491{left:87.450000px;}
.x3_c00491{left:97.200000px;}
.x6_c00491{left:121.350000px;}
.x1_c00491{left:169.950000px;}
.x7_c00491{left:531.000000px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls0_c00491{letter-spacing:0.000000pt;}
.ws1_c00491{word-spacing:-13.333333pt;}
.ws0_c00491{word-spacing:-11.333333pt;}
.ws2_c00491{word-spacing:0.000000pt;}
._5_c00491{margin-left:-9.605272pt;}
._a_c00491{margin-left:-7.834619pt;}
._15_c00491{margin-left:-6.869283pt;}
._4_c00491{margin-left:-4.429339pt;}
._14_c00491{margin-left:-3.368040pt;}
._1_c00491{margin-left:-2.365312pt;}
._0_c00491{margin-left:-1.229349pt;}
._3_c00491{width:0.933323pt;}
._2_c00491{width:1.936005pt;}
._6_c00491{width:3.664021pt;}
._8_c00491{width:5.032000pt;}
._7_c00491{width:6.399979pt;}
._f_c00491{width:7.909536pt;}
._e_c00491{width:9.125339pt;}
._10_c00491{width:10.149365pt;}
._9_c00491{width:11.578843pt;}
._b_c00491{width:14.288000pt;}
._d_c00491{width:15.522709pt;}
._c_c00491{width:17.122683pt;}
._11_c00491{width:18.808096pt;}
._12_c00491{width:23.184101pt;}
._13_c00491{width:24.320019pt;}
.fs0_c00491{font-size:45.333333pt;}
.fs1_c00491{font-size:53.333333pt;}
.y0_c00491{bottom:0.000000pt;}
.y26_c00491{bottom:57.266686pt;}
.y25_c00491{bottom:97.933353pt;}
.y24_c00491{bottom:111.400020pt;}
.y23_c00491{bottom:125.133353pt;}
.y22_c00491{bottom:138.866686pt;}
.y21_c00491{bottom:152.333353pt;}
.y20_c00491{bottom:165.800020pt;}
.y1f_c00491{bottom:179.533353pt;}
.y1e_c00491{bottom:215.400020pt;}
.y1d_c00491{bottom:232.400020pt;}
.y1c_c00491{bottom:249.666686pt;}
.y1b_c00491{bottom:266.933353pt;}
.y1a_c00491{bottom:284.200020pt;}
.y19_c00491{bottom:301.466686pt;}
.y18_c00491{bottom:318.333353pt;}
.y17_c00491{bottom:335.666686pt;}
.y16_c00491{bottom:353.000020pt;}
.y15_c00491{bottom:370.600020pt;}
.y14_c00491{bottom:387.866686pt;}
.y13_c00491{bottom:422.733353pt;}
.y12_c00491{bottom:474.933353pt;}
.y11_c00491{bottom:492.200020pt;}
.y10_c00491{bottom:509.466686pt;}
.yf_c00491{bottom:526.733353pt;}
.ye_c00491{bottom:544.000020pt;}
.yd_c00491{bottom:561.266686pt;}
.yc_c00491{bottom:578.266686pt;}
.yb_c00491{bottom:595.533353pt;}
.ya_c00491{bottom:613.133353pt;}
.y9_c00491{bottom:630.066686pt;}
.y8_c00491{bottom:647.666686pt;}
.y7_c00491{bottom:665.000020pt;}
.y6_c00491{bottom:682.266686pt;}
.y5_c00491{bottom:699.200020pt;}
.y4_c00491{bottom:716.466686pt;}
.y3_c00491{bottom:733.800020pt;}
.y2_c00491{bottom:751.066686pt;}
.y1_c00491{bottom:788.200020pt;}
.h2_c00491{height:44.470052pt;}
.h4_c00491{height:44.492188pt;}
.h3_c00491{height:52.343750pt;}
.h1_c00491{height:851.333333pt;}
.h0_c00491{height:851.533333pt;}
.w0_c00491{width:570.533360pt;}
.w1_c00491{width:570.666667pt;}
.x0_c00491{left:0.000000pt;}
.x4_c00491{left:71.333333pt;}
.x2_c00491{left:72.333333pt;}
.x5_c00491{left:77.733333pt;}
.x3_c00491{left:86.400000pt;}
.x6_c00491{left:107.866667pt;}
.x1_c00491{left:151.066667pt;}
.x7_c00491{left:472.000000pt;}
}





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

.ir_c00492:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00492{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00492;src:url('chunks/assets/font_34b5e82e997a8bf42c262ffe.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00492;src:url('chunks/assets/font_3843d1c40e06040ae37bd73f.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;}
.ls0_c00492{letter-spacing:0.000000px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00492{word-spacing:-15.000000px;}
.ws1_c00492{word-spacing:0.000000px;}
._e_c00492{margin-left:-9.900000px;}
._7_c00492{margin-left:-3.200985px;}
._5_c00492{margin-left:-1.860000px;}
._1_c00492{width:1.020000px;}
._6_c00492{width:2.100000px;}
._0_c00492{width:3.120000px;}
._c_c00492{width:4.140000px;}
._9_c00492{width:5.460000px;}
._8_c00492{width:7.200000px;}
._2_c00492{width:8.820000px;}
._d_c00492{width:9.900000px;}
._4_c00492{width:11.160000px;}
._3_c00492{width:13.020000px;}
._b_c00492{width:16.080000px;}
._f_c00492{width:17.760000px;}
._a_c00492{width:19.440000px;}
._10_c00492{width:21.900000px;}
._11_c00492{width:23.910003px;}
._12_c00492{width:25.770054px;}
.fc1_c00492{color:transparent;}
.fc0_c00492{color:rgb(35,31,32);}
.fs1_c00492{font-size:51.000000px;}
.fs0_c00492{font-size:60.000000px;}
.y0_c00492{bottom:0.000000px;}
.y25_c00492{bottom:64.800022px;}
.y24_c00492{bottom:110.175022px;}
.y23_c00492{bottom:125.325022px;}
.y22_c00492{bottom:165.600022px;}
.y21_c00492{bottom:184.725022px;}
.y20_c00492{bottom:204.525022px;}
.y1f_c00492{bottom:223.950022px;}
.y1e_c00492{bottom:243.000022px;}
.y1d_c00492{bottom:262.425022px;}
.y1c_c00492{bottom:282.300022px;}
.y1b_c00492{bottom:301.725022px;}
.y1a_c00492{bottom:321.150022px;}
.y19_c00492{bottom:340.575022px;}
.y18_c00492{bottom:359.625022px;}
.y17_c00492{bottom:379.500022px;}
.y16_c00492{bottom:398.925022px;}
.y15_c00492{bottom:418.350022px;}
.y14_c00492{bottom:437.400022px;}
.y13_c00492{bottom:457.200022px;}
.y12_c00492{bottom:476.325022px;}
.y11_c00492{bottom:495.750022px;}
.y10_c00492{bottom:514.800022px;}
.yf_c00492{bottom:534.600022px;}
.ye_c00492{bottom:553.725022px;}
.yd_c00492{bottom:573.150022px;}
.yc_c00492{bottom:592.575022px;}
.yb_c00492{bottom:612.375022px;}
.ya_c00492{bottom:631.425022px;}
.y9_c00492{bottom:650.925022px;}
.y8_c00492{bottom:670.725022px;}
.y7_c00492{bottom:689.775022px;}
.y6_c00492{bottom:709.200022px;}
.y5_c00492{bottom:728.625022px;}
.y4_c00492{bottom:767.925022px;}
.y2_c00492{bottom:825.150022px;}
.y1_c00492{bottom:844.950022px;}
.y3_c00492{bottom:886.875022px;}
.h3_c00492{height:50.028809px;}
.h4_c00492{height:50.053711px;}
.h2_c00492{height:58.886719px;}
.h1_c00492{height:957.750000px;}
.h0_c00492{height:957.975000px;}
.w1_c00492{width:643.500000px;}
.w0_c00492{width:643.650000px;}
.x0_c00492{left:0.000000px;}
.x1_c00492{left:91.425000px;}
.x3_c00492{left:97.200000px;}
.x2_c00492{left:107.250000px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls0_c00492{letter-spacing:0.000000pt;}
.ws0_c00492{word-spacing:-13.333333pt;}
.ws1_c00492{word-spacing:0.000000pt;}
._e_c00492{margin-left:-8.800000pt;}
._7_c00492{margin-left:-2.845320pt;}
._5_c00492{margin-left:-1.653333pt;}
._1_c00492{width:0.906667pt;}
._6_c00492{width:1.866667pt;}
._0_c00492{width:2.773333pt;}
._c_c00492{width:3.680000pt;}
._9_c00492{width:4.853333pt;}
._8_c00492{width:6.400000pt;}
._2_c00492{width:7.840000pt;}
._d_c00492{width:8.800000pt;}
._4_c00492{width:9.920000pt;}
._3_c00492{width:11.573333pt;}
._b_c00492{width:14.293333pt;}
._f_c00492{width:15.786667pt;}
._a_c00492{width:17.280000pt;}
._10_c00492{width:19.466667pt;}
._11_c00492{width:21.253336pt;}
._12_c00492{width:22.906715pt;}
.fs1_c00492{font-size:45.333333pt;}
.fs0_c00492{font-size:53.333333pt;}
.y0_c00492{bottom:0.000000pt;}
.y25_c00492{bottom:57.600020pt;}
.y24_c00492{bottom:97.933353pt;}
.y23_c00492{bottom:111.400020pt;}
.y22_c00492{bottom:147.200020pt;}
.y21_c00492{bottom:164.200020pt;}
.y20_c00492{bottom:181.800020pt;}
.y1f_c00492{bottom:199.066686pt;}
.y1e_c00492{bottom:216.000020pt;}
.y1d_c00492{bottom:233.266686pt;}
.y1c_c00492{bottom:250.933353pt;}
.y1b_c00492{bottom:268.200020pt;}
.y1a_c00492{bottom:285.466686pt;}
.y19_c00492{bottom:302.733353pt;}
.y18_c00492{bottom:319.666686pt;}
.y17_c00492{bottom:337.333353pt;}
.y16_c00492{bottom:354.600020pt;}
.y15_c00492{bottom:371.866686pt;}
.y14_c00492{bottom:388.800020pt;}
.y13_c00492{bottom:406.400020pt;}
.y12_c00492{bottom:423.400020pt;}
.y11_c00492{bottom:440.666686pt;}
.y10_c00492{bottom:457.600020pt;}
.yf_c00492{bottom:475.200020pt;}
.ye_c00492{bottom:492.200020pt;}
.yd_c00492{bottom:509.466686pt;}
.yc_c00492{bottom:526.733353pt;}
.yb_c00492{bottom:544.333353pt;}
.ya_c00492{bottom:561.266686pt;}
.y9_c00492{bottom:578.600020pt;}
.y8_c00492{bottom:596.200020pt;}
.y7_c00492{bottom:613.133353pt;}
.y6_c00492{bottom:630.400020pt;}
.y5_c00492{bottom:647.666686pt;}
.y4_c00492{bottom:682.600020pt;}
.y2_c00492{bottom:733.466686pt;}
.y1_c00492{bottom:751.066686pt;}
.y3_c00492{bottom:788.333353pt;}
.h3_c00492{height:44.470052pt;}
.h4_c00492{height:44.492188pt;}
.h2_c00492{height:52.343750pt;}
.h1_c00492{height:851.333333pt;}
.h0_c00492{height:851.533333pt;}
.w1_c00492{width:572.000000pt;}
.w0_c00492{width:572.133333pt;}
.x0_c00492{left:0.000000pt;}
.x1_c00492{left:81.266667pt;}
.x3_c00492{left:86.400000pt;}
.x2_c00492{left:95.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e2979341c90baafd91471b9a.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00493;src:url('chunks/assets/font_92816cf32af0d8c75eebc6ed.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);}
.m1_c00493{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_c00493{vertical-align:0.000000px;}
.ls0_c00493{letter-spacing:0.000000px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00493{word-spacing:-15.000000px;}
.ws1_c00493{word-spacing:-12.750000px;}
.ws2_c00493{word-spacing:0.000000px;}
._12_c00493{margin-left:-16.440000px;}
._14_c00493{margin-left:-11.760000px;}
._13_c00493{margin-left:-9.600000px;}
._16_c00493{margin-left:-5.442096px;}
._11_c00493{margin-left:-3.960000px;}
._b_c00493{margin-left:-2.280000px;}
._d_c00493{margin-left:-1.140000px;}
._1_c00493{width:1.140000px;}
._0_c00493{width:2.220000px;}
._8_c00493{width:3.840000px;}
._7_c00493{width:5.520000px;}
._3_c00493{width:7.200000px;}
._4_c00493{width:8.280000px;}
._2_c00493{width:9.600000px;}
._5_c00493{width:10.980000px;}
._6_c00493{width:12.240000px;}
._e_c00493{width:13.260000px;}
._f_c00493{width:16.200000px;}
._9_c00493{width:17.340000px;}
._a_c00493{width:18.960000px;}
._c_c00493{width:20.100000px;}
._10_c00493{width:22.260000px;}
._17_c00493{width:23.610000px;}
._15_c00493{width:25.110042px;}
.fc1_c00493{color:transparent;}
.fc0_c00493{color:rgb(35,31,32);}
.fs1_c00493{font-size:51.000000px;}
.fs0_c00493{font-size:60.000000px;}
.y0_c00493{bottom:0.000000px;}
.y24_c00493{bottom:64.425022px;}
.y23_c00493{bottom:110.550022px;}
.y22_c00493{bottom:125.325022px;}
.y21_c00493{bottom:141.150022px;}
.y20_c00493{bottom:156.225022px;}
.y1f_c00493{bottom:171.750022px;}
.y1e_c00493{bottom:186.825022px;}
.y1d_c00493{bottom:202.350022px;}
.y1c_c00493{bottom:217.125022px;}
.y1b_c00493{bottom:285.525022px;}
.y1a_c00493{bottom:304.575022px;}
.y19_c00493{bottom:323.625022px;}
.y18_c00493{bottom:362.175022px;}
.y16_c00493{bottom:419.025022px;}
.y15_c00493{bottom:438.525022px;}
.y14_c00493{bottom:457.950022px;}
.y13_c00493{bottom:477.375022px;}
.y12_c00493{bottom:496.800022px;}
.y11_c00493{bottom:515.925022px;}
.y10_c00493{bottom:535.725022px;}
.yf_c00493{bottom:555.225022px;}
.ye_c00493{bottom:574.575022px;}
.yd_c00493{bottom:593.925022px;}
.yc_c00493{bottom:613.425022px;}
.yb_c00493{bottom:632.925022px;}
.ya_c00493{bottom:652.350022px;}
.y9_c00493{bottom:671.400022px;}
.y8_c00493{bottom:699.825022px;}
.y7_c00493{bottom:719.325022px;}
.y6_c00493{bottom:738.750022px;}
.y5_c00493{bottom:758.175022px;}
.y4_c00493{bottom:786.225022px;}
.y3_c00493{bottom:805.725022px;}
.y2_c00493{bottom:825.525022px;}
.y1_c00493{bottom:844.575022px;}
.y17_c00493{bottom:886.725022px;}
.h4_c00493{height:50.028809px;}
.h5_c00493{height:50.053711px;}
.h3_c00493{height:58.857422px;}
.h2_c00493{height:58.886719px;}
.h1_c00493{height:957.750000px;}
.h0_c00493{height:957.975000px;}
.w0_c00493{width:641.850030px;}
.w1_c00493{width:642.000000px;}
.x0_c00493{left:0.000000px;}
.x4_c00493{left:80.250000px;}
.x1_c00493{left:81.375000px;}
.x6_c00493{left:87.450000px;}
.x2_c00493{left:96.150000px;}
.x3_c00493{left:97.575000px;}
.x7_c00493{left:120.975000px;}
.x5_c00493{left:169.950000px;}
.x8_c00493{left:531.000000px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls0_c00493{letter-spacing:0.000000pt;}
.ws0_c00493{word-spacing:-13.333333pt;}
.ws1_c00493{word-spacing:-11.333333pt;}
.ws2_c00493{word-spacing:0.000000pt;}
._12_c00493{margin-left:-14.613333pt;}
._14_c00493{margin-left:-10.453333pt;}
._13_c00493{margin-left:-8.533333pt;}
._16_c00493{margin-left:-4.837419pt;}
._11_c00493{margin-left:-3.520000pt;}
._b_c00493{margin-left:-2.026667pt;}
._d_c00493{margin-left:-1.013333pt;}
._1_c00493{width:1.013333pt;}
._0_c00493{width:1.973333pt;}
._8_c00493{width:3.413333pt;}
._7_c00493{width:4.906667pt;}
._3_c00493{width:6.400000pt;}
._4_c00493{width:7.360000pt;}
._2_c00493{width:8.533333pt;}
._5_c00493{width:9.760000pt;}
._6_c00493{width:10.880000pt;}
._e_c00493{width:11.786667pt;}
._f_c00493{width:14.400000pt;}
._9_c00493{width:15.413333pt;}
._a_c00493{width:16.853333pt;}
._c_c00493{width:17.866667pt;}
._10_c00493{width:19.786667pt;}
._17_c00493{width:20.986667pt;}
._15_c00493{width:22.320037pt;}
.fs1_c00493{font-size:45.333333pt;}
.fs0_c00493{font-size:53.333333pt;}
.y0_c00493{bottom:0.000000pt;}
.y24_c00493{bottom:57.266686pt;}
.y23_c00493{bottom:98.266686pt;}
.y22_c00493{bottom:111.400020pt;}
.y21_c00493{bottom:125.466686pt;}
.y20_c00493{bottom:138.866686pt;}
.y1f_c00493{bottom:152.666686pt;}
.y1e_c00493{bottom:166.066686pt;}
.y1d_c00493{bottom:179.866686pt;}
.y1c_c00493{bottom:193.000020pt;}
.y1b_c00493{bottom:253.800020pt;}
.y1a_c00493{bottom:270.733353pt;}
.y19_c00493{bottom:287.666686pt;}
.y18_c00493{bottom:321.933353pt;}
.y16_c00493{bottom:372.466686pt;}
.y15_c00493{bottom:389.800020pt;}
.y14_c00493{bottom:407.066686pt;}
.y13_c00493{bottom:424.333353pt;}
.y12_c00493{bottom:441.600020pt;}
.y11_c00493{bottom:458.600020pt;}
.y10_c00493{bottom:476.200020pt;}
.yf_c00493{bottom:493.533353pt;}
.ye_c00493{bottom:510.733353pt;}
.yd_c00493{bottom:527.933353pt;}
.yc_c00493{bottom:545.266686pt;}
.yb_c00493{bottom:562.600020pt;}
.ya_c00493{bottom:579.866686pt;}
.y9_c00493{bottom:596.800020pt;}
.y8_c00493{bottom:622.066686pt;}
.y7_c00493{bottom:639.400020pt;}
.y6_c00493{bottom:656.666686pt;}
.y5_c00493{bottom:673.933353pt;}
.y4_c00493{bottom:698.866686pt;}
.y3_c00493{bottom:716.200020pt;}
.y2_c00493{bottom:733.800020pt;}
.y1_c00493{bottom:750.733353pt;}
.y17_c00493{bottom:788.200020pt;}
.h4_c00493{height:44.470052pt;}
.h5_c00493{height:44.492188pt;}
.h3_c00493{height:52.317708pt;}
.h2_c00493{height:52.343750pt;}
.h1_c00493{height:851.333333pt;}
.h0_c00493{height:851.533333pt;}
.w0_c00493{width:570.533360pt;}
.w1_c00493{width:570.666667pt;}
.x0_c00493{left:0.000000pt;}
.x4_c00493{left:71.333333pt;}
.x1_c00493{left:72.333333pt;}
.x6_c00493{left:77.733333pt;}
.x2_c00493{left:85.466667pt;}
.x3_c00493{left:86.733333pt;}
.x7_c00493{left:107.533333pt;}
.x5_c00493{left:151.066667pt;}
.x8_c00493{left:472.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_277aa0188622c31c06a5354f.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00494;src:url('chunks/assets/font_0d28a5a0c8baaa67edaa11d8.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;}
.ls0_c00494{letter-spacing:0.000000px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00494{word-spacing:-15.000000px;}
.ws1_c00494{word-spacing:0.000000px;}
._5_c00494{margin-left:-14.640000px;}
._4_c00494{margin-left:-13.380000px;}
._10_c00494{margin-left:-12.000000px;}
._e_c00494{margin-left:-10.980000px;}
._15_c00494{margin-left:-5.402928px;}
._13_c00494{margin-left:-4.203114px;}
._11_c00494{margin-left:-3.200985px;}
._9_c00494{margin-left:-1.860000px;}
._2_c00494{width:1.020000px;}
._0_c00494{width:2.220000px;}
._1_c00494{width:3.240000px;}
._a_c00494{width:5.100000px;}
._6_c00494{width:6.120000px;}
._3_c00494{width:7.560000px;}
._7_c00494{width:8.640000px;}
._8_c00494{width:10.080000px;}
._c_c00494{width:11.280000px;}
._b_c00494{width:13.020000px;}
._f_c00494{width:16.560000px;}
._d_c00494{width:17.700000px;}
._14_c00494{width:25.770054px;}
._16_c00494{width:27.630003px;}
._12_c00494{width:29.490003px;}
.fc1_c00494{color:transparent;}
.fc0_c00494{color:rgb(35,31,32);}
.fs1_c00494{font-size:51.000000px;}
.fs0_c00494{font-size:60.000000px;}
.y0_c00494{bottom:0.000000px;}
.y25_c00494{bottom:64.800022px;}
.y24_c00494{bottom:110.175022px;}
.y23_c00494{bottom:125.325022px;}
.y22_c00494{bottom:140.775022px;}
.y21_c00494{bottom:155.925022px;}
.y1f_c00494{bottom:262.125022px;}
.y1e_c00494{bottom:281.925022px;}
.y1d_c00494{bottom:300.975022px;}
.y1c_c00494{bottom:320.400022px;}
.y1b_c00494{bottom:339.525022px;}
.y1a_c00494{bottom:358.950022px;}
.y19_c00494{bottom:378.375022px;}
.y18_c00494{bottom:397.800022px;}
.y17_c00494{bottom:417.675022px;}
.y16_c00494{bottom:437.100022px;}
.y15_c00494{bottom:456.525022px;}
.y14_c00494{bottom:475.950022px;}
.y13_c00494{bottom:495.075022px;}
.y12_c00494{bottom:514.500022px;}
.y11_c00494{bottom:533.925022px;}
.y10_c00494{bottom:553.350022px;}
.yf_c00494{bottom:573.150022px;}
.ye_c00494{bottom:592.575022px;}
.yd_c00494{bottom:612.000022px;}
.yc_c00494{bottom:631.425022px;}
.yb_c00494{bottom:650.925022px;}
.ya_c00494{bottom:670.350022px;}
.y9_c00494{bottom:689.400022px;}
.y8_c00494{bottom:709.200022px;}
.y7_c00494{bottom:728.625022px;}
.y6_c00494{bottom:748.125022px;}
.y5_c00494{bottom:767.100022px;}
.y4_c00494{bottom:786.600022px;}
.y3_c00494{bottom:806.100022px;}
.y2_c00494{bottom:825.525022px;}
.y1_c00494{bottom:844.950022px;}
.y20_c00494{bottom:886.875022px;}
.h3_c00494{height:50.028809px;}
.h4_c00494{height:50.053711px;}
.h2_c00494{height:58.886719px;}
.h1_c00494{height:957.750000px;}
.h0_c00494{height:957.975000px;}
.w1_c00494{width:643.500000px;}
.w0_c00494{width:643.650000px;}
.x0_c00494{left:0.000000px;}
.x2_c00494{left:90.375000px;}
.x1_c00494{left:91.425000px;}
.x4_c00494{left:97.200000px;}
.x3_c00494{left:107.250000px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls0_c00494{letter-spacing:0.000000pt;}
.ws0_c00494{word-spacing:-13.333333pt;}
.ws1_c00494{word-spacing:0.000000pt;}
._5_c00494{margin-left:-13.013333pt;}
._4_c00494{margin-left:-11.893333pt;}
._10_c00494{margin-left:-10.666667pt;}
._e_c00494{margin-left:-9.760000pt;}
._15_c00494{margin-left:-4.802603pt;}
._13_c00494{margin-left:-3.736101pt;}
._11_c00494{margin-left:-2.845320pt;}
._9_c00494{margin-left:-1.653333pt;}
._2_c00494{width:0.906667pt;}
._0_c00494{width:1.973333pt;}
._1_c00494{width:2.880000pt;}
._a_c00494{width:4.533333pt;}
._6_c00494{width:5.440000pt;}
._3_c00494{width:6.720000pt;}
._7_c00494{width:7.680000pt;}
._8_c00494{width:8.960000pt;}
._c_c00494{width:10.026667pt;}
._b_c00494{width:11.573333pt;}
._f_c00494{width:14.720000pt;}
._d_c00494{width:15.733333pt;}
._14_c00494{width:22.906715pt;}
._16_c00494{width:24.560003pt;}
._12_c00494{width:26.213336pt;}
.fs1_c00494{font-size:45.333333pt;}
.fs0_c00494{font-size:53.333333pt;}
.y0_c00494{bottom:0.000000pt;}
.y25_c00494{bottom:57.600020pt;}
.y24_c00494{bottom:97.933353pt;}
.y23_c00494{bottom:111.400020pt;}
.y22_c00494{bottom:125.133353pt;}
.y21_c00494{bottom:138.600020pt;}
.y1f_c00494{bottom:233.000020pt;}
.y1e_c00494{bottom:250.600020pt;}
.y1d_c00494{bottom:267.533353pt;}
.y1c_c00494{bottom:284.800020pt;}
.y1b_c00494{bottom:301.800020pt;}
.y1a_c00494{bottom:319.066686pt;}
.y19_c00494{bottom:336.333353pt;}
.y18_c00494{bottom:353.600020pt;}
.y17_c00494{bottom:371.266686pt;}
.y16_c00494{bottom:388.533353pt;}
.y15_c00494{bottom:405.800020pt;}
.y14_c00494{bottom:423.066686pt;}
.y13_c00494{bottom:440.066686pt;}
.y12_c00494{bottom:457.333353pt;}
.y11_c00494{bottom:474.600020pt;}
.y10_c00494{bottom:491.866686pt;}
.yf_c00494{bottom:509.466686pt;}
.ye_c00494{bottom:526.733353pt;}
.yd_c00494{bottom:544.000020pt;}
.yc_c00494{bottom:561.266686pt;}
.yb_c00494{bottom:578.600020pt;}
.ya_c00494{bottom:595.866686pt;}
.y9_c00494{bottom:612.800020pt;}
.y8_c00494{bottom:630.400020pt;}
.y7_c00494{bottom:647.666686pt;}
.y6_c00494{bottom:665.000020pt;}
.y5_c00494{bottom:681.866686pt;}
.y4_c00494{bottom:699.200020pt;}
.y3_c00494{bottom:716.533353pt;}
.y2_c00494{bottom:733.800020pt;}
.y1_c00494{bottom:751.066686pt;}
.y20_c00494{bottom:788.333353pt;}
.h3_c00494{height:44.470052pt;}
.h4_c00494{height:44.492188pt;}
.h2_c00494{height:52.343750pt;}
.h1_c00494{height:851.333333pt;}
.h0_c00494{height:851.533333pt;}
.w1_c00494{width:572.000000pt;}
.w0_c00494{width:572.133333pt;}
.x0_c00494{left:0.000000pt;}
.x2_c00494{left:80.333333pt;}
.x1_c00494{left:81.266667pt;}
.x4_c00494{left:86.400000pt;}
.x3_c00494{left:95.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4fd2dc1243a98c08052eb9d9.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00495;src:url('chunks/assets/font_7fcdeeee400b9b29ebd6454a.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00495{letter-spacing:0.000000px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00495{word-spacing:-15.000000px;}
.ws1_c00495{word-spacing:0.000000px;}
._c_c00495{margin-left:-12.240069px;}
._5_c00495{margin-left:-10.805931px;}
._10_c00495{margin-left:-7.997796px;}
._4_c00495{margin-left:-4.983006px;}
._1_c00495{margin-left:-2.660976px;}
._0_c00495{margin-left:-1.383018px;}
._3_c00495{width:1.049988px;}
._2_c00495{width:2.178006px;}
._6_c00495{width:4.122024px;}
._8_c00495{width:5.661000px;}
._7_c00495{width:7.199976px;}
._a_c00495{width:8.550036px;}
._b_c00495{width:9.779976px;}
._9_c00495{width:10.883994px;}
._f_c00495{width:13.032006px;}
._e_c00495{width:16.163652px;}
._d_c00495{width:18.480138px;}
._11_c00495{width:20.499216px;}
._13_c00495{width:24.699096px;}
._12_c00495{width:26.082114px;}
.fc1_c00495{color:transparent;}
.fc0_c00495{color:rgb(35,31,32);}
.fs0_c00495{font-size:51.000000px;}
.fs1_c00495{font-size:60.000000px;}
.y0_c00495{bottom:0.000000px;}
.y26_c00495{bottom:64.425022px;}
.y25_c00495{bottom:110.175022px;}
.y24_c00495{bottom:125.325022px;}
.y23_c00495{bottom:140.775022px;}
.y22_c00495{bottom:204.825022px;}
.y21_c00495{bottom:224.325022px;}
.y20_c00495{bottom:243.750022px;}
.y1f_c00495{bottom:262.425022px;}
.y1e_c00495{bottom:281.925022px;}
.y1d_c00495{bottom:301.725022px;}
.y1c_c00495{bottom:321.150022px;}
.y1b_c00495{bottom:340.575022px;}
.y1a_c00495{bottom:360.000022px;}
.y19_c00495{bottom:379.125022px;}
.y18_c00495{bottom:398.550022px;}
.y17_c00495{bottom:417.975022px;}
.y16_c00495{bottom:437.400022px;}
.y15_c00495{bottom:457.200022px;}
.y14_c00495{bottom:476.325022px;}
.y13_c00495{bottom:496.125022px;}
.y12_c00495{bottom:515.550022px;}
.y11_c00495{bottom:534.975022px;}
.y10_c00495{bottom:554.025022px;}
.yf_c00495{bottom:573.825022px;}
.ye_c00495{bottom:592.950022px;}
.yd_c00495{bottom:612.750022px;}
.yc_c00495{bottom:632.175022px;}
.yb_c00495{bottom:651.225022px;}
.ya_c00495{bottom:671.025022px;}
.y9_c00495{bottom:690.150022px;}
.y8_c00495{bottom:709.950022px;}
.y7_c00495{bottom:728.625022px;}
.y6_c00495{bottom:748.500022px;}
.y5_c00495{bottom:767.925022px;}
.y4_c00495{bottom:787.350022px;}
.y3_c00495{bottom:806.775022px;}
.y2_c00495{bottom:844.575022px;}
.y1_c00495{bottom:886.725022px;}
.h2_c00495{height:50.028809px;}
.h4_c00495{height:50.053711px;}
.h3_c00495{height:58.886719px;}
.h1_c00495{height:957.750000px;}
.h0_c00495{height:957.975000px;}
.w0_c00495{width:641.850030px;}
.w1_c00495{width:642.000000px;}
.x0_c00495{left:0.000000px;}
.x4_c00495{left:80.250000px;}
.x2_c00495{left:81.375000px;}
.x5_c00495{left:87.450000px;}
.x3_c00495{left:97.200000px;}
.x1_c00495{left:169.950000px;}
.x6_c00495{left:531.000000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls0_c00495{letter-spacing:0.000000pt;}
.ws0_c00495{word-spacing:-13.333333pt;}
.ws1_c00495{word-spacing:0.000000pt;}
._c_c00495{margin-left:-10.880061pt;}
._5_c00495{margin-left:-9.605272pt;}
._10_c00495{margin-left:-7.109152pt;}
._4_c00495{margin-left:-4.429339pt;}
._1_c00495{margin-left:-2.365312pt;}
._0_c00495{margin-left:-1.229349pt;}
._3_c00495{width:0.933323pt;}
._2_c00495{width:1.936005pt;}
._6_c00495{width:3.664021pt;}
._8_c00495{width:5.032000pt;}
._7_c00495{width:6.399979pt;}
._a_c00495{width:7.600032pt;}
._b_c00495{width:8.693312pt;}
._9_c00495{width:9.674661pt;}
._f_c00495{width:11.584005pt;}
._e_c00495{width:14.367691pt;}
._d_c00495{width:16.426789pt;}
._11_c00495{width:18.221525pt;}
._13_c00495{width:21.954752pt;}
._12_c00495{width:23.184101pt;}
.fs0_c00495{font-size:45.333333pt;}
.fs1_c00495{font-size:53.333333pt;}
.y0_c00495{bottom:0.000000pt;}
.y26_c00495{bottom:57.266686pt;}
.y25_c00495{bottom:97.933353pt;}
.y24_c00495{bottom:111.400020pt;}
.y23_c00495{bottom:125.133353pt;}
.y22_c00495{bottom:182.066686pt;}
.y21_c00495{bottom:199.400020pt;}
.y20_c00495{bottom:216.666686pt;}
.y1f_c00495{bottom:233.266686pt;}
.y1e_c00495{bottom:250.600020pt;}
.y1d_c00495{bottom:268.200020pt;}
.y1c_c00495{bottom:285.466686pt;}
.y1b_c00495{bottom:302.733353pt;}
.y1a_c00495{bottom:320.000020pt;}
.y19_c00495{bottom:337.000020pt;}
.y18_c00495{bottom:354.266686pt;}
.y17_c00495{bottom:371.533353pt;}
.y16_c00495{bottom:388.800020pt;}
.y15_c00495{bottom:406.400020pt;}
.y14_c00495{bottom:423.400020pt;}
.y13_c00495{bottom:441.000020pt;}
.y12_c00495{bottom:458.266686pt;}
.y11_c00495{bottom:475.533353pt;}
.y10_c00495{bottom:492.466686pt;}
.yf_c00495{bottom:510.066686pt;}
.ye_c00495{bottom:527.066686pt;}
.yd_c00495{bottom:544.666686pt;}
.yc_c00495{bottom:561.933353pt;}
.yb_c00495{bottom:578.866686pt;}
.ya_c00495{bottom:596.466686pt;}
.y9_c00495{bottom:613.466686pt;}
.y8_c00495{bottom:631.066686pt;}
.y7_c00495{bottom:647.666686pt;}
.y6_c00495{bottom:665.333353pt;}
.y5_c00495{bottom:682.600020pt;}
.y4_c00495{bottom:699.866686pt;}
.y3_c00495{bottom:717.133353pt;}
.y2_c00495{bottom:750.733353pt;}
.y1_c00495{bottom:788.200020pt;}
.h2_c00495{height:44.470052pt;}
.h4_c00495{height:44.492188pt;}
.h3_c00495{height:52.343750pt;}
.h1_c00495{height:851.333333pt;}
.h0_c00495{height:851.533333pt;}
.w0_c00495{width:570.533360pt;}
.w1_c00495{width:570.666667pt;}
.x0_c00495{left:0.000000pt;}
.x4_c00495{left:71.333333pt;}
.x2_c00495{left:72.333333pt;}
.x5_c00495{left:77.733333pt;}
.x3_c00495{left:86.400000pt;}
.x1_c00495{left:151.066667pt;}
.x6_c00495{left:472.000000pt;}
}





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

.ir_c00496:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00496{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00496;src:url('chunks/assets/font_4fc15e179fe1d8fc531f0a06.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00496;src:url('chunks/assets/font_baf6353351d36d2d0df38ff9.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);}
.m1_c00496{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_c00496{vertical-align:0.000000px;}
.ls0_c00496{letter-spacing:0.000000px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00496{word-spacing:-15.000000px;}
.ws0_c00496{word-spacing:-12.750000px;}
.ws2_c00496{word-spacing:0.000000px;}
._e_c00496{margin-left:-12.600000px;}
._2_c00496{margin-left:-11.460000px;}
._c_c00496{margin-left:-9.780000px;}
._12_c00496{margin-left:-8.520000px;}
._18_c00496{margin-left:-6.002955px;}
._d_c00496{margin-left:-3.600000px;}
._14_c00496{margin-left:-2.520000px;}
._7_c00496{margin-left:-1.200000px;}
._4_c00496{width:1.020000px;}
._1_c00496{width:2.100000px;}
._8_c00496{width:3.720000px;}
._5_c00496{width:5.700000px;}
._0_c00496{width:7.560000px;}
._3_c00496{width:8.880000px;}
._6_c00496{width:10.140000px;}
._a_c00496{width:11.820000px;}
._b_c00496{width:12.960000px;}
._16_c00496{width:13.980000px;}
._9_c00496{width:16.320000px;}
._15_c00496{width:17.460000px;}
._10_c00496{width:18.480000px;}
._11_c00496{width:19.800000px;}
._f_c00496{width:21.480000px;}
._13_c00496{width:22.500000px;}
._17_c00496{width:26.970054px;}
._19_c00496{width:27.989991px;}
.fc1_c00496{color:transparent;}
.fc0_c00496{color:rgb(35,31,32);}
.fs1_c00496{font-size:51.000000px;}
.fs0_c00496{font-size:60.000000px;}
.y0_c00496{bottom:0.000000px;}
.y29_c00496{bottom:64.425022px;}
.y28_c00496{bottom:110.175022px;}
.y27_c00496{bottom:125.325022px;}
.y26_c00496{bottom:140.775022px;}
.y25_c00496{bottom:156.225022px;}
.y24_c00496{bottom:171.750022px;}
.y23_c00496{bottom:186.525022px;}
.y22_c00496{bottom:201.975022px;}
.y21_c00496{bottom:217.125022px;}
.y20_c00496{bottom:232.575022px;}
.y1e_c00496{bottom:281.550022px;}
.y1d_c00496{bottom:301.350022px;}
.y1c_c00496{bottom:320.100022px;}
.y1b_c00496{bottom:339.525022px;}
.y1a_c00496{bottom:358.950022px;}
.y19_c00496{bottom:378.750022px;}
.y18_c00496{bottom:398.175022px;}
.y17_c00496{bottom:417.600022px;}
.y16_c00496{bottom:436.725022px;}
.y15_c00496{bottom:456.525022px;}
.y14_c00496{bottom:475.950022px;}
.y13_c00496{bottom:495.375022px;}
.y12_c00496{bottom:514.800022px;}
.y11_c00496{bottom:533.925022px;}
.y10_c00496{bottom:553.725022px;}
.yf_c00496{bottom:573.150022px;}
.ye_c00496{bottom:592.575022px;}
.yd_c00496{bottom:611.625022px;}
.yc_c00496{bottom:631.125022px;}
.yb_c00496{bottom:650.925022px;}
.ya_c00496{bottom:670.350022px;}
.y9_c00496{bottom:689.775022px;}
.y8_c00496{bottom:709.200022px;}
.y7_c00496{bottom:728.625022px;}
.y6_c00496{bottom:748.125022px;}
.y5_c00496{bottom:767.175022px;}
.y4_c00496{bottom:786.600022px;}
.y3_c00496{bottom:805.725022px;}
.y2_c00496{bottom:825.150022px;}
.y1_c00496{bottom:844.950022px;}
.y1f_c00496{bottom:886.875022px;}
.h3_c00496{height:50.028809px;}
.h4_c00496{height:50.053711px;}
.h2_c00496{height:58.886719px;}
.h1_c00496{height:957.750000px;}
.h0_c00496{height:957.975000px;}
.w1_c00496{width:643.500000px;}
.w0_c00496{width:643.650000px;}
.x0_c00496{left:0.000000px;}
.x1_c00496{left:91.050000px;}
.x3_c00496{left:97.200000px;}
.x2_c00496{left:107.250000px;}
.x4_c00496{left:130.350000px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls0_c00496{letter-spacing:0.000000pt;}
.ws1_c00496{word-spacing:-13.333333pt;}
.ws0_c00496{word-spacing:-11.333333pt;}
.ws2_c00496{word-spacing:0.000000pt;}
._e_c00496{margin-left:-11.200000pt;}
._2_c00496{margin-left:-10.186667pt;}
._c_c00496{margin-left:-8.693333pt;}
._12_c00496{margin-left:-7.573333pt;}
._18_c00496{margin-left:-5.335960pt;}
._d_c00496{margin-left:-3.200000pt;}
._14_c00496{margin-left:-2.240000pt;}
._7_c00496{margin-left:-1.066667pt;}
._4_c00496{width:0.906667pt;}
._1_c00496{width:1.866667pt;}
._8_c00496{width:3.306667pt;}
._5_c00496{width:5.066667pt;}
._0_c00496{width:6.720000pt;}
._3_c00496{width:7.893333pt;}
._6_c00496{width:9.013333pt;}
._a_c00496{width:10.506667pt;}
._b_c00496{width:11.520000pt;}
._16_c00496{width:12.426667pt;}
._9_c00496{width:14.506667pt;}
._15_c00496{width:15.520000pt;}
._10_c00496{width:16.426667pt;}
._11_c00496{width:17.600000pt;}
._f_c00496{width:19.093333pt;}
._13_c00496{width:20.000000pt;}
._17_c00496{width:23.973381pt;}
._19_c00496{width:24.879992pt;}
.fs1_c00496{font-size:45.333333pt;}
.fs0_c00496{font-size:53.333333pt;}
.y0_c00496{bottom:0.000000pt;}
.y29_c00496{bottom:57.266686pt;}
.y28_c00496{bottom:97.933353pt;}
.y27_c00496{bottom:111.400020pt;}
.y26_c00496{bottom:125.133353pt;}
.y25_c00496{bottom:138.866686pt;}
.y24_c00496{bottom:152.666686pt;}
.y23_c00496{bottom:165.800020pt;}
.y22_c00496{bottom:179.533353pt;}
.y21_c00496{bottom:193.000020pt;}
.y20_c00496{bottom:206.733353pt;}
.y1e_c00496{bottom:250.266686pt;}
.y1d_c00496{bottom:267.866686pt;}
.y1c_c00496{bottom:284.533353pt;}
.y1b_c00496{bottom:301.800020pt;}
.y1a_c00496{bottom:319.066686pt;}
.y19_c00496{bottom:336.666686pt;}
.y18_c00496{bottom:353.933353pt;}
.y17_c00496{bottom:371.200020pt;}
.y16_c00496{bottom:388.200020pt;}
.y15_c00496{bottom:405.800020pt;}
.y14_c00496{bottom:423.066686pt;}
.y13_c00496{bottom:440.333353pt;}
.y12_c00496{bottom:457.600020pt;}
.y11_c00496{bottom:474.600020pt;}
.y10_c00496{bottom:492.200020pt;}
.yf_c00496{bottom:509.466686pt;}
.ye_c00496{bottom:526.733353pt;}
.yd_c00496{bottom:543.666686pt;}
.yc_c00496{bottom:561.000020pt;}
.yb_c00496{bottom:578.600020pt;}
.ya_c00496{bottom:595.866686pt;}
.y9_c00496{bottom:613.133353pt;}
.y8_c00496{bottom:630.400020pt;}
.y7_c00496{bottom:647.666686pt;}
.y6_c00496{bottom:665.000020pt;}
.y5_c00496{bottom:681.933353pt;}
.y4_c00496{bottom:699.200020pt;}
.y3_c00496{bottom:716.200020pt;}
.y2_c00496{bottom:733.466686pt;}
.y1_c00496{bottom:751.066686pt;}
.y1f_c00496{bottom:788.333353pt;}
.h3_c00496{height:44.470052pt;}
.h4_c00496{height:44.492188pt;}
.h2_c00496{height:52.343750pt;}
.h1_c00496{height:851.333333pt;}
.h0_c00496{height:851.533333pt;}
.w1_c00496{width:572.000000pt;}
.w0_c00496{width:572.133333pt;}
.x0_c00496{left:0.000000pt;}
.x1_c00496{left:80.933333pt;}
.x3_c00496{left:86.400000pt;}
.x2_c00496{left:95.333333pt;}
.x4_c00496{left:115.866667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8ec66edcd773eb51dbd5639d.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00497;src:url('chunks/assets/font_451a05bc7a3f87c678e7483a.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;}
.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);}
.m1_c00497{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_c00497{vertical-align:0.000000px;}
.ls0_c00497{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00497{word-spacing:-15.000000px;}
.ws0_c00497{word-spacing:-12.750000px;}
.ws2_c00497{word-spacing:0.000000px;}
._6_c00497{margin-left:-11.520000px;}
._9_c00497{margin-left:-9.660000px;}
._d_c00497{margin-left:-7.860000px;}
._7_c00497{margin-left:-6.300000px;}
._10_c00497{margin-left:-3.987060px;}
._e_c00497{margin-left:-2.520000px;}
._4_c00497{margin-left:-1.380000px;}
._0_c00497{width:1.020000px;}
._5_c00497{width:2.280000px;}
._8_c00497{width:3.300000px;}
._1_c00497{width:4.440000px;}
._3_c00497{width:6.240000px;}
._a_c00497{width:7.440000px;}
._2_c00497{width:8.580000px;}
._b_c00497{width:10.260000px;}
._c_c00497{width:12.360000px;}
._11_c00497{width:13.980000px;}
._f_c00497{width:16.680000px;}
._12_c00497{width:18.180000px;}
._15_c00497{width:19.260000px;}
._13_c00497{width:20.280000px;}
._14_c00497{width:21.960000px;}
._16_c00497{width:23.700000px;}
._17_c00497{width:27.330000px;}
.fc1_c00497{color:transparent;}
.fc0_c00497{color:rgb(35,31,32);}
.fs1_c00497{font-size:51.000000px;}
.fs0_c00497{font-size:60.000000px;}
.y0_c00497{bottom:0.000000px;}
.y25_c00497{bottom:64.425022px;}
.y24_c00497{bottom:110.175022px;}
.y23_c00497{bottom:125.325022px;}
.y22_c00497{bottom:140.775022px;}
.y21_c00497{bottom:155.925022px;}
.y20_c00497{bottom:171.750022px;}
.y1f_c00497{bottom:186.525022px;}
.y1e_c00497{bottom:202.350022px;}
.y1d_c00497{bottom:276.150022px;}
.y1c_c00497{bottom:295.575022px;}
.y1b_c00497{bottom:315.000022px;}
.y1a_c00497{bottom:334.425022px;}
.y19_c00497{bottom:353.550022px;}
.y18_c00497{bottom:372.975022px;}
.y17_c00497{bottom:392.775022px;}
.y16_c00497{bottom:412.200022px;}
.y15_c00497{bottom:431.625022px;}
.y14_c00497{bottom:450.750022px;}
.y13_c00497{bottom:485.325022px;}
.y12_c00497{bottom:504.375022px;}
.y10_c00497{bottom:553.350022px;}
.yf_c00497{bottom:573.150022px;}
.ye_c00497{bottom:592.575022px;}
.yd_c00497{bottom:612.000022px;}
.yc_c00497{bottom:631.425022px;}
.yb_c00497{bottom:650.550022px;}
.ya_c00497{bottom:669.975022px;}
.y9_c00497{bottom:689.775022px;}
.y8_c00497{bottom:708.825022px;}
.y7_c00497{bottom:728.325022px;}
.y6_c00497{bottom:748.125022px;}
.y5_c00497{bottom:767.550022px;}
.y4_c00497{bottom:786.225022px;}
.y3_c00497{bottom:805.725022px;}
.y2_c00497{bottom:825.150022px;}
.y1_c00497{bottom:844.575022px;}
.y11_c00497{bottom:886.725022px;}
.h3_c00497{height:50.028809px;}
.h4_c00497{height:50.053711px;}
.h2_c00497{height:58.886719px;}
.h1_c00497{height:957.750000px;}
.h0_c00497{height:957.975000px;}
.w0_c00497{width:641.850030px;}
.w1_c00497{width:642.000000px;}
.x0_c00497{left:0.000000px;}
.x1_c00497{left:81.000000px;}
.x4_c00497{left:87.450000px;}
.x3_c00497{left:96.450000px;}
.x5_c00497{left:120.975000px;}
.x2_c00497{left:169.950000px;}
.x6_c00497{left:531.000000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls0_c00497{letter-spacing:0.000000pt;}
.ws1_c00497{word-spacing:-13.333333pt;}
.ws0_c00497{word-spacing:-11.333333pt;}
.ws2_c00497{word-spacing:0.000000pt;}
._6_c00497{margin-left:-10.240000pt;}
._9_c00497{margin-left:-8.586667pt;}
._d_c00497{margin-left:-6.986667pt;}
._7_c00497{margin-left:-5.600000pt;}
._10_c00497{margin-left:-3.544053pt;}
._e_c00497{margin-left:-2.240000pt;}
._4_c00497{margin-left:-1.226667pt;}
._0_c00497{width:0.906667pt;}
._5_c00497{width:2.026667pt;}
._8_c00497{width:2.933333pt;}
._1_c00497{width:3.946667pt;}
._3_c00497{width:5.546667pt;}
._a_c00497{width:6.613333pt;}
._2_c00497{width:7.626667pt;}
._b_c00497{width:9.120000pt;}
._c_c00497{width:10.986667pt;}
._11_c00497{width:12.426667pt;}
._f_c00497{width:14.826667pt;}
._12_c00497{width:16.160000pt;}
._15_c00497{width:17.120000pt;}
._13_c00497{width:18.026667pt;}
._14_c00497{width:19.520000pt;}
._16_c00497{width:21.066667pt;}
._17_c00497{width:24.293333pt;}
.fs1_c00497{font-size:45.333333pt;}
.fs0_c00497{font-size:53.333333pt;}
.y0_c00497{bottom:0.000000pt;}
.y25_c00497{bottom:57.266686pt;}
.y24_c00497{bottom:97.933353pt;}
.y23_c00497{bottom:111.400020pt;}
.y22_c00497{bottom:125.133353pt;}
.y21_c00497{bottom:138.600020pt;}
.y20_c00497{bottom:152.666686pt;}
.y1f_c00497{bottom:165.800020pt;}
.y1e_c00497{bottom:179.866686pt;}
.y1d_c00497{bottom:245.466686pt;}
.y1c_c00497{bottom:262.733353pt;}
.y1b_c00497{bottom:280.000020pt;}
.y1a_c00497{bottom:297.266686pt;}
.y19_c00497{bottom:314.266686pt;}
.y18_c00497{bottom:331.533353pt;}
.y17_c00497{bottom:349.133353pt;}
.y16_c00497{bottom:366.400020pt;}
.y15_c00497{bottom:383.666686pt;}
.y14_c00497{bottom:400.666686pt;}
.y13_c00497{bottom:431.400020pt;}
.y12_c00497{bottom:448.333353pt;}
.y10_c00497{bottom:491.866686pt;}
.yf_c00497{bottom:509.466686pt;}
.ye_c00497{bottom:526.733353pt;}
.yd_c00497{bottom:544.000020pt;}
.yc_c00497{bottom:561.266686pt;}
.yb_c00497{bottom:578.266686pt;}
.ya_c00497{bottom:595.533353pt;}
.y9_c00497{bottom:613.133353pt;}
.y8_c00497{bottom:630.066686pt;}
.y7_c00497{bottom:647.400020pt;}
.y6_c00497{bottom:665.000020pt;}
.y5_c00497{bottom:682.266686pt;}
.y4_c00497{bottom:698.866686pt;}
.y3_c00497{bottom:716.200020pt;}
.y2_c00497{bottom:733.466686pt;}
.y1_c00497{bottom:750.733353pt;}
.y11_c00497{bottom:788.200020pt;}
.h3_c00497{height:44.470052pt;}
.h4_c00497{height:44.492188pt;}
.h2_c00497{height:52.343750pt;}
.h1_c00497{height:851.333333pt;}
.h0_c00497{height:851.533333pt;}
.w0_c00497{width:570.533360pt;}
.w1_c00497{width:570.666667pt;}
.x0_c00497{left:0.000000pt;}
.x1_c00497{left:72.000000pt;}
.x4_c00497{left:77.733333pt;}
.x3_c00497{left:85.733333pt;}
.x5_c00497{left:107.533333pt;}
.x2_c00497{left:151.066667pt;}
.x6_c00497{left:472.000000pt;}
}





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

.ir_c00498:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00498{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00498;src:url('chunks/assets/font_bf51dbe3d4fed00f21e10fcd.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00498;src:url('chunks/assets/font_be5873b81ab358f9a6201b19.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00498{letter-spacing:0.000000px;}
.ls0_c00498{letter-spacing:12.600000px;}
.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:-15.000000px;}
.ws1_c00498{word-spacing:-12.750000px;}
.ws2_c00498{word-spacing:0.000000px;}
._12_c00498{margin-left:-13.203021px;}
._13_c00498{margin-left:-11.996979px;}
._7_c00498{margin-left:-10.856847px;}
._6_c00498{margin-left:-9.543153px;}
._1_c00498{margin-left:-3.300006px;}
._0_c00498{margin-left:-1.760979px;}
._2_c00498{width:1.839009px;}
._3_c00498{width:3.320967px;}
._11_c00498{width:4.533087px;}
._10_c00498{width:5.672883px;}
._f_c00498{width:7.262973px;}
._14_c00498{width:8.264955px;}
._d_c00498{width:9.479976px;}
._4_c00498{width:10.520991px;}
._e_c00498{width:12.102006px;}
._5_c00498{width:13.223988px;}
._c_c00498{width:16.109910px;}
._b_c00498{width:17.180991px;}
._8_c00498{width:18.344955px;}
._a_c00498{width:19.481982px;}
._9_c00498{width:21.960000px;}
._16_c00498{width:24.072000px;}
._15_c00498{width:25.572012px;}
._18_c00498{width:27.332940px;}
._17_c00498{width:29.093919px;}
.fc2_c00498{color:transparent;}
.fc1_c00498{color:rgb(0,0,0);}
.fc0_c00498{color:rgb(35,31,32);}
.fs0_c00498{font-size:51.000000px;}
.fs1_c00498{font-size:60.000000px;}
.y0_c00498{bottom:0.000000px;}
.y26_c00498{bottom:64.425022px;}
.y25_c00498{bottom:110.175022px;}
.y24_c00498{bottom:125.325022px;}
.y23_c00498{bottom:141.150022px;}
.y22_c00498{bottom:155.925022px;}
.y21_c00498{bottom:171.375022px;}
.y20_c00498{bottom:186.525022px;}
.y1f_c00498{bottom:201.975022px;}
.y1e_c00498{bottom:241.950022px;}
.y1d_c00498{bottom:261.750022px;}
.y1c_c00498{bottom:280.800022px;}
.y1b_c00498{bottom:300.600022px;}
.y1a_c00498{bottom:319.725022px;}
.y19_c00498{bottom:339.150022px;}
.y18_c00498{bottom:358.575022px;}
.y17_c00498{bottom:378.000022px;}
.y16_c00498{bottom:397.125022px;}
.y15_c00498{bottom:416.925022px;}
.y14_c00498{bottom:435.975022px;}
.y13_c00498{bottom:455.775022px;}
.y12_c00498{bottom:475.200022px;}
.y11_c00498{bottom:494.325022px;}
.y10_c00498{bottom:513.750022px;}
.yf_c00498{bottom:533.550022px;}
.ye_c00498{bottom:573.150022px;}
.yd_c00498{bottom:592.575022px;}
.yc_c00498{bottom:650.550022px;}
.yb_c00498{bottom:670.350022px;}
.ya_c00498{bottom:689.775022px;}
.y9_c00498{bottom:709.200022px;}
.y8_c00498{bottom:728.625022px;}
.y7_c00498{bottom:747.750022px;}
.y6_c00498{bottom:767.550022px;}
.y5_c00498{bottom:786.675022px;}
.y4_c00498{bottom:806.100022px;}
.y3_c00498{bottom:825.525022px;}
.y2_c00498{bottom:844.950022px;}
.y1_c00498{bottom:886.875022px;}
.h2_c00498{height:50.028809px;}
.h4_c00498{height:50.053711px;}
.h3_c00498{height:58.886719px;}
.h1_c00498{height:957.750000px;}
.h0_c00498{height:957.975000px;}
.w1_c00498{width:643.500000px;}
.w0_c00498{width:643.650000px;}
.x0_c00498{left:0.000000px;}
.x1_c00498{left:90.750000px;}
.x3_c00498{left:97.200000px;}
.x2_c00498{left:108.000000px;}
.x4_c00498{left:131.025000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls1_c00498{letter-spacing:0.000000pt;}
.ls0_c00498{letter-spacing:11.200000pt;}
.ws0_c00498{word-spacing:-13.333333pt;}
.ws1_c00498{word-spacing:-11.333333pt;}
.ws2_c00498{word-spacing:0.000000pt;}
._12_c00498{margin-left:-11.736019pt;}
._13_c00498{margin-left:-10.663981pt;}
._7_c00498{margin-left:-9.650531pt;}
._6_c00498{margin-left:-8.482803pt;}
._1_c00498{margin-left:-2.933339pt;}
._0_c00498{margin-left:-1.565315pt;}
._2_c00498{width:1.634675pt;}
._3_c00498{width:2.951971pt;}
._11_c00498{width:4.029411pt;}
._10_c00498{width:5.042563pt;}
._f_c00498{width:6.455976pt;}
._14_c00498{width:7.346627pt;}
._d_c00498{width:8.426645pt;}
._4_c00498{width:9.351992pt;}
._e_c00498{width:10.757339pt;}
._5_c00498{width:11.754656pt;}
._c_c00498{width:14.319920pt;}
._b_c00498{width:15.271992pt;}
._8_c00498{width:16.306627pt;}
._a_c00498{width:17.317317pt;}
._9_c00498{width:19.520000pt;}
._16_c00498{width:21.397333pt;}
._15_c00498{width:22.730677pt;}
._18_c00498{width:24.295947pt;}
._17_c00498{width:25.861261pt;}
.fs0_c00498{font-size:45.333333pt;}
.fs1_c00498{font-size:53.333333pt;}
.y0_c00498{bottom:0.000000pt;}
.y26_c00498{bottom:57.266686pt;}
.y25_c00498{bottom:97.933353pt;}
.y24_c00498{bottom:111.400020pt;}
.y23_c00498{bottom:125.466686pt;}
.y22_c00498{bottom:138.600020pt;}
.y21_c00498{bottom:152.333353pt;}
.y20_c00498{bottom:165.800020pt;}
.y1f_c00498{bottom:179.533353pt;}
.y1e_c00498{bottom:215.066686pt;}
.y1d_c00498{bottom:232.666686pt;}
.y1c_c00498{bottom:249.600020pt;}
.y1b_c00498{bottom:267.200020pt;}
.y1a_c00498{bottom:284.200020pt;}
.y19_c00498{bottom:301.466686pt;}
.y18_c00498{bottom:318.733353pt;}
.y17_c00498{bottom:336.000020pt;}
.y16_c00498{bottom:353.000020pt;}
.y15_c00498{bottom:370.600020pt;}
.y14_c00498{bottom:387.533353pt;}
.y13_c00498{bottom:405.133353pt;}
.y12_c00498{bottom:422.400020pt;}
.y11_c00498{bottom:439.400020pt;}
.y10_c00498{bottom:456.666686pt;}
.yf_c00498{bottom:474.266686pt;}
.ye_c00498{bottom:509.466686pt;}
.yd_c00498{bottom:526.733353pt;}
.yc_c00498{bottom:578.266686pt;}
.yb_c00498{bottom:595.866686pt;}
.ya_c00498{bottom:613.133353pt;}
.y9_c00498{bottom:630.400020pt;}
.y8_c00498{bottom:647.666686pt;}
.y7_c00498{bottom:664.666686pt;}
.y6_c00498{bottom:682.266686pt;}
.y5_c00498{bottom:699.266686pt;}
.y4_c00498{bottom:716.533353pt;}
.y3_c00498{bottom:733.800020pt;}
.y2_c00498{bottom:751.066686pt;}
.y1_c00498{bottom:788.333353pt;}
.h2_c00498{height:44.470052pt;}
.h4_c00498{height:44.492188pt;}
.h3_c00498{height:52.343750pt;}
.h1_c00498{height:851.333333pt;}
.h0_c00498{height:851.533333pt;}
.w1_c00498{width:572.000000pt;}
.w0_c00498{width:572.133333pt;}
.x0_c00498{left:0.000000pt;}
.x1_c00498{left:80.666667pt;}
.x3_c00498{left:86.400000pt;}
.x2_c00498{left:96.000000pt;}
.x4_c00498{left:116.466667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_196eae89d874eb87a8af8bb7.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00499;src:url('chunks/assets/font_f88b146a324c82f2552cde15.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.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:-15.000000px;}
.ws1_c00499{word-spacing:-12.750000px;}
.ws2_c00499{word-spacing:0.000000px;}
._5_c00499{margin-left:-10.805931px;}
._10_c00499{margin-left:-9.209934px;}
._4_c00499{margin-left:-4.983006px;}
._14_c00499{margin-left:-3.717075px;}
._1_c00499{margin-left:-2.660976px;}
._0_c00499{margin-left:-1.383018px;}
._3_c00499{width:1.049988px;}
._2_c00499{width:2.178006px;}
._6_c00499{width:4.122024px;}
._8_c00499{width:5.661000px;}
._7_c00499{width:7.199976px;}
._9_c00499{width:8.820000px;}
._a_c00499{width:10.350012px;}
._b_c00499{width:11.360982px;}
._c_c00499{width:13.011342px;}
._11_c00499{width:16.080024px;}
._f_c00499{width:17.400072px;}
._e_c00499{width:18.792054px;}
._d_c00499{width:20.382210px;}
._13_c00499{width:24.582072px;}
._12_c00499{width:26.082114px;}
.fc1_c00499{color:transparent;}
.fc0_c00499{color:rgb(35,31,32);}
.fs0_c00499{font-size:51.000000px;}
.fs1_c00499{font-size:60.000000px;}
.y0_c00499{bottom:0.000000px;}
.y28_c00499{bottom:64.425022px;}
.y27_c00499{bottom:110.175022px;}
.y26_c00499{bottom:125.325022px;}
.y25_c00499{bottom:140.775022px;}
.y24_c00499{bottom:155.925022px;}
.y23_c00499{bottom:203.775022px;}
.y22_c00499{bottom:223.200022px;}
.y21_c00499{bottom:243.000022px;}
.y20_c00499{bottom:262.425022px;}
.y1f_c00499{bottom:281.550022px;}
.y1e_c00499{bottom:300.975022px;}
.y1d_c00499{bottom:320.025022px;}
.y1c_c00499{bottom:339.825022px;}
.y1b_c00499{bottom:359.325022px;}
.y1a_c00499{bottom:378.750022px;}
.y19_c00499{bottom:397.800022px;}
.y18_c00499{bottom:417.600022px;}
.y17_c00499{bottom:437.025022px;}
.y16_c00499{bottom:456.150022px;}
.y15_c00499{bottom:475.950022px;}
.y14_c00499{bottom:495.000022px;}
.y13_c00499{bottom:514.425022px;}
.y12_c00499{bottom:533.925022px;}
.y11_c00499{bottom:553.725022px;}
.y10_c00499{bottom:573.150022px;}
.yf_c00499{bottom:592.575022px;}
.ye_c00499{bottom:612.000022px;}
.yd_c00499{bottom:631.425022px;}
.yc_c00499{bottom:650.550022px;}
.yb_c00499{bottom:669.975022px;}
.ya_c00499{bottom:689.775022px;}
.y9_c00499{bottom:708.825022px;}
.y8_c00499{bottom:728.325022px;}
.y7_c00499{bottom:748.125022px;}
.y6_c00499{bottom:767.550022px;}
.y5_c00499{bottom:786.225022px;}
.y4_c00499{bottom:806.025022px;}
.y3_c00499{bottom:825.150022px;}
.y2_c00499{bottom:844.950022px;}
.y1_c00499{bottom:886.725022px;}
.h2_c00499{height:50.028809px;}
.h4_c00499{height:50.053711px;}
.h3_c00499{height:58.886719px;}
.h1_c00499{height:957.750000px;}
.h0_c00499{height:957.975000px;}
.w0_c00499{width:641.850030px;}
.w1_c00499{width:642.000000px;}
.x0_c00499{left:0.000000px;}
.x4_c00499{left:80.250000px;}
.x2_c00499{left:81.375000px;}
.x5_c00499{left:87.450000px;}
.x3_c00499{left:97.200000px;}
.x1_c00499{left:169.950000px;}
.x6_c00499{left:531.000000px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls0_c00499{letter-spacing:0.000000pt;}
.ws0_c00499{word-spacing:-13.333333pt;}
.ws1_c00499{word-spacing:-11.333333pt;}
.ws2_c00499{word-spacing:0.000000pt;}
._5_c00499{margin-left:-9.605272pt;}
._10_c00499{margin-left:-8.186608pt;}
._4_c00499{margin-left:-4.429339pt;}
._14_c00499{margin-left:-3.304067pt;}
._1_c00499{margin-left:-2.365312pt;}
._0_c00499{margin-left:-1.229349pt;}
._3_c00499{width:0.933323pt;}
._2_c00499{width:1.936005pt;}
._6_c00499{width:3.664021pt;}
._8_c00499{width:5.032000pt;}
._7_c00499{width:6.399979pt;}
._9_c00499{width:7.840000pt;}
._a_c00499{width:9.200011pt;}
._b_c00499{width:10.098651pt;}
._c_c00499{width:11.565637pt;}
._11_c00499{width:14.293355pt;}
._f_c00499{width:15.466731pt;}
._e_c00499{width:16.704048pt;}
._d_c00499{width:18.117520pt;}
._13_c00499{width:21.850731pt;}
._12_c00499{width:23.184101pt;}
.fs0_c00499{font-size:45.333333pt;}
.fs1_c00499{font-size:53.333333pt;}
.y0_c00499{bottom:0.000000pt;}
.y28_c00499{bottom:57.266686pt;}
.y27_c00499{bottom:97.933353pt;}
.y26_c00499{bottom:111.400020pt;}
.y25_c00499{bottom:125.133353pt;}
.y24_c00499{bottom:138.600020pt;}
.y23_c00499{bottom:181.133353pt;}
.y22_c00499{bottom:198.400020pt;}
.y21_c00499{bottom:216.000020pt;}
.y20_c00499{bottom:233.266686pt;}
.y1f_c00499{bottom:250.266686pt;}
.y1e_c00499{bottom:267.533353pt;}
.y1d_c00499{bottom:284.466686pt;}
.y1c_c00499{bottom:302.066686pt;}
.y1b_c00499{bottom:319.400020pt;}
.y1a_c00499{bottom:336.666686pt;}
.y19_c00499{bottom:353.600020pt;}
.y18_c00499{bottom:371.200020pt;}
.y17_c00499{bottom:388.466686pt;}
.y16_c00499{bottom:405.466686pt;}
.y15_c00499{bottom:423.066686pt;}
.y14_c00499{bottom:440.000020pt;}
.y13_c00499{bottom:457.266686pt;}
.y12_c00499{bottom:474.600020pt;}
.y11_c00499{bottom:492.200020pt;}
.y10_c00499{bottom:509.466686pt;}
.yf_c00499{bottom:526.733353pt;}
.ye_c00499{bottom:544.000020pt;}
.yd_c00499{bottom:561.266686pt;}
.yc_c00499{bottom:578.266686pt;}
.yb_c00499{bottom:595.533353pt;}
.ya_c00499{bottom:613.133353pt;}
.y9_c00499{bottom:630.066686pt;}
.y8_c00499{bottom:647.400020pt;}
.y7_c00499{bottom:665.000020pt;}
.y6_c00499{bottom:682.266686pt;}
.y5_c00499{bottom:698.866686pt;}
.y4_c00499{bottom:716.466686pt;}
.y3_c00499{bottom:733.466686pt;}
.y2_c00499{bottom:751.066686pt;}
.y1_c00499{bottom:788.200020pt;}
.h2_c00499{height:44.470052pt;}
.h4_c00499{height:44.492188pt;}
.h3_c00499{height:52.343750pt;}
.h1_c00499{height:851.333333pt;}
.h0_c00499{height:851.533333pt;}
.w0_c00499{width:570.533360pt;}
.w1_c00499{width:570.666667pt;}
.x0_c00499{left:0.000000pt;}
.x4_c00499{left:71.333333pt;}
.x2_c00499{left:72.333333pt;}
.x5_c00499{left:77.733333pt;}
.x3_c00499{left:86.400000pt;}
.x1_c00499{left:151.066667pt;}
.x6_c00499{left:472.000000pt;}
}





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

.ir_c00001:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00001;src:url('chunks/assets/font_3843d1c40e06040ae37bd73f.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00001;src:url('chunks/assets/font_811d427ed5db83641aa97122.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_f764c909390c9846be191565.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00001;src:url('chunks/assets/font_fab57e609d39679cea8de980.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00001;src:url('chunks/assets/font_567c5a28432d075698aa6bc1.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00001;src:url('chunks/assets/font_3843d1c40e06040ae37bd73f.woff2')format("woff");}.ff6_c00001{font-family:ff6_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:ff7_c00001;src:url('chunks/assets/font_f799d4590e063cf1d1ba64a8.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00001;src:url('chunks/assets/font_f0ed1489576fce22191d44a0.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00001;src:url('chunks/assets/font_e7d19576fe7ca452f837d2c0.woff2')format("woff");}.ff9_c00001{font-family:ff9_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00001;src:url('chunks/assets/font_456ffcd69d653f8155da540c.woff2')format("woff");}.ffa_c00001{font-family:ffa_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:ffb_c00001;src:url('chunks/assets/font_29b75ff4fec9acd3f04e1f2a.woff2')format("woff");}.ffb_c00001{font-family:ffb_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00001;src:url('chunks/assets/font_8cb5bb99397e6dd90339ab49.woff2')format("woff");}.ffc_c00001{font-family:ffc_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00001;src:url('chunks/assets/font_c71e813e5ce62b5e402e5f40.woff2')format("woff");}.ffd_c00001{font-family:ffd_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00001;src:url('chunks/assets/font_7606fd62e2e8ea1d99e57f48.woff2')format("woff");}.ffe_c00001{font-family:ffe_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00001;src:url('chunks/assets/font_34a5de6108e5bcbea5ddda67.woff2')format("woff");}.fff_c00001{font-family:fff_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:ff10_c00001;src:url('chunks/assets/font_209319fad222a453cefbde22.woff2')format("woff");}.ff10_c00001{font-family:ff10_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00001;src:url('chunks/assets/font_2737916ce3864880fa26d8de.woff2')format("woff");}.ff11_c00001{font-family:ff11_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:ff12_c00001;src:url('chunks/assets/font_94c76ed60d9eeca5819196f3.woff2')format("woff");}.ff12_c00001{font-family:ff12_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00001;src:url('chunks/assets/font_b8e9d7fa3814eafe8e61d2b7.woff2')format("woff");}.ff13_c00001{font-family:ff13_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:ff14_c00001;src:url('chunks/assets/font_d55e6b2a7d1f2d54f5d93747.woff2')format("woff");}.ff14_c00001{font-family:ff14_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00001;src:url('chunks/assets/font_ef8187dc17d1b0849d2c9925.woff2')format("woff");}.ff15_c00001{font-family:ff15_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00001;src:url('chunks/assets/font_f77c847e19cad2444f74c97b.woff2')format("woff");}.ff16_c00001{font-family:ff16_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00001;src:url('chunks/assets/font_1b597a382bcc7be17529348c.woff2')format("woff");}.ff17_c00001{font-family:ff17_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:ff18_c00001;src:url('chunks/assets/font_b93762d7bc2987a7e65b62f3.woff2')format("woff");}.ff18_c00001{font-family:ff18_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00001;src:url('chunks/assets/font_a15ba0495ce61f23aaa24906.woff2')format("woff");}.ff19_c00001{font-family:ff19_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:ff1a_c00001;src:url('chunks/assets/font_aa110988cb09c80edd1b78cc.woff2')format("woff");}.ff1a_c00001{font-family:ff1a_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00001;src:url('chunks/assets/font_75b0ab91d65e6c4e197f6124.woff2')format("woff");}.ff1b_c00001{font-family:ff1b_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:ff1c_c00001;src:url('chunks/assets/font_b0c677702959285874c81ece.woff2')format("woff");}.ff1c_c00001{font-family:ff1c_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00001;src:url('chunks/assets/font_01504e037f85ff534cbdae63.woff2')format("woff");}.ff1d_c00001{font-family:ff1d_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:ff1e_c00001;src:url('chunks/assets/font_5bb49c794fa390072c483a9a.woff2')format("woff");}.ff1e_c00001{font-family:ff1e_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00001;src:url('chunks/assets/font_e343410fc69ad1864cb12487.woff2')format("woff");}.ff1f_c00001{font-family:ff1f_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00001;src:url('chunks/assets/font_aec48e6a8aff0dbd36cb9d96.woff2')format("woff");}.ff20_c00001{font-family:ff20_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00001;src:url('chunks/assets/font_f824f56152738e517e1dafac.woff2')format("woff");}.ff21_c00001{font-family:ff21_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:ff22_c00001;src:url('chunks/assets/font_24624892e64bfa073e5bcfd1.woff2')format("woff");}.ff22_c00001{font-family:ff22_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00001;src:url('chunks/assets/font_841d65c3347d54447245dbc9.woff2')format("woff");}.ff23_c00001{font-family:ff23_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00001;src:url('chunks/assets/font_cdc65b1d1b1ac0c25005f9c1.woff2')format("woff");}.ff24_c00001{font-family:ff24_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00001;src:url('chunks/assets/font_4d3f2f9def8f42efa3004989.woff2')format("woff");}.ff25_c00001{font-family:ff25_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:ff26_c00001;src:url('chunks/assets/font_b74e9812a0e77499a360c472.woff2')format("woff");}.ff26_c00001{font-family:ff26_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00001;src:url('chunks/assets/font_e8738bdb4a4582c4b9437f7b.woff2')format("woff");}.ff27_c00001{font-family:ff27_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00001;src:url('chunks/assets/font_2003740c02dfadbcc2fef5c8.woff2')format("woff");}.ff28_c00001{font-family:ff28_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00001;src:url('chunks/assets/font_4d7c705bb14820019dc6357b.woff2')format("woff");}.ff29_c00001{font-family:ff29_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00001;src:url('chunks/assets/font_522abeb08d64cd8623b3c4ed.woff2')format("woff");}.ff2a_c00001{font-family:ff2a_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:ff2b_c00001;src:url('chunks/assets/font_c38436a664d19ee10efe3ea6.woff2')format("woff");}.ff2b_c00001{font-family:ff2b_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00001;src:url('chunks/assets/font_5040d8e0d1101a1192abad5d.woff2')format("woff");}.ff2c_c00001{font-family:ff2c_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00001;src:url('chunks/assets/font_5e68ea3ee2477b931fedd978.woff2')format("woff");}.ff2d_c00001{font-family:ff2d_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:ff2e_c00001;src:url('chunks/assets/font_f9f0ab2309ef9bdf2a3ebe79.woff2')format("woff");}.ff2e_c00001{font-family:ff2e_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00001;src:url('chunks/assets/font_284344376b0c1fe5860ba06f.woff2')format("woff");}.ff2f_c00001{font-family:ff2f_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00001;src:url('chunks/assets/font_8e9057573a6f67156f7a5a12.woff2')format("woff");}.ff30_c00001{font-family:ff30_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00001;src:url('chunks/assets/font_1b9ff7aa0329ad3ad989080e.woff2')format("woff");}.ff31_c00001{font-family:ff31_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:ff32_c00001;src:url('chunks/assets/font_6f382cef6b1f5fd60ae0c42b.woff2')format("woff");}.ff32_c00001{font-family:ff32_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:ff33_c00001;src:url('chunks/assets/font_c4f2a917b6da3a3d2ca85f01.woff2')format("woff");}.ff33_c00001{font-family:ff33_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00001;src:url('chunks/assets/font_2f39f27c9ed109b88a21ee25.woff2')format("woff");}.ff34_c00001{font-family:ff34_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00001;src:url('chunks/assets/font_cbf428c9f4425e54dafdd073.woff2')format("woff");}.ff35_c00001{font-family:ff35_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00001;src:url('chunks/assets/font_5ee2b2146bf301bec0563438.woff2')format("woff");}.ff36_c00001{font-family:ff36_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:ff37_c00001;src:url('chunks/assets/font_e482fb0c4869c94abfae5363.woff2')format("woff");}.ff37_c00001{font-family:ff37_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00001;src:url('chunks/assets/font_2c031a8d227b7098674cca7a.woff2')format("woff");}.ff38_c00001{font-family:ff38_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00001;src:url('chunks/assets/font_54dfc99c385f9134bc690d36.woff2')format("woff");}.ff39_c00001{font-family:ff39_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a_c00001;src:url('chunks/assets/font_cb7505bbfd243da63196a75e.woff2')format("woff");}.ff3a_c00001{font-family:ff3a_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b_c00001;src:url('chunks/assets/font_919e5324969357843ca6ab0a.woff2')format("woff");}.ff3b_c00001{font-family:ff3b_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:ff3c_c00001;src:url('chunks/assets/font_42db6ab2694c24d18e6e963c.woff2')format("woff");}.ff3c_c00001{font-family:ff3c_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d_c00001;src:url('chunks/assets/font_75d1a277baec26c0c186b312.woff2')format("woff");}.ff3d_c00001{font-family:ff3d_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e_c00001;src:url('chunks/assets/font_bccbaa39b32bfb6de92b57a4.woff2')format("woff");}.ff3e_c00001{font-family:ff3e_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:ff3f_c00001;src:url('chunks/assets/font_70cdf3fedcd5c95ea4ac5020.woff2')format("woff");}.ff3f_c00001{font-family:ff3f_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40_c00001;src:url('chunks/assets/font_e26eabfff93600acbd04d690.woff2')format("woff");}.ff40_c00001{font-family:ff40_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41_c00001;src:url('chunks/assets/font_18a81db172b242e494e22a2f.woff2')format("woff");}.ff41_c00001{font-family:ff41_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42_c00001;src:url('chunks/assets/font_ff1909dbef04120423a7526a.woff2')format("woff");}.ff42_c00001{font-family:ff42_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:ff43_c00001;src:url('chunks/assets/font_2c7632da6d011d535346efb7.woff2')format("woff");}.ff43_c00001{font-family:ff43_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44_c00001;src:url('chunks/assets/font_3927bdc59373aa94fdcf1890.woff2')format("woff");}.ff44_c00001{font-family:ff44_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:ff45_c00001;src:url('chunks/assets/font_29a5c1762659bdd7c7d2a80b.woff2')format("woff");}.ff45_c00001{font-family:ff45_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46_c00001;src:url('chunks/assets/font_7896e2042db8f50f3059120b.woff2')format("woff");}.ff46_c00001{font-family:ff46_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47_c00001;src:url('chunks/assets/font_c5dc6383d7df2edb1d6e2a59.woff2')format("woff");}.ff47_c00001{font-family:ff47_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:ff48_c00001;src:url('chunks/assets/font_819bf7a73559ad87f2b0e135.woff2')format("woff");}.ff48_c00001{font-family:ff48_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:ff49_c00001;src:url('chunks/assets/font_0f89dacc41ab0214749aefc2.woff2')format("woff");}.ff49_c00001{font-family:ff49_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a_c00001;src:url('chunks/assets/font_b6b3f72acf31bca08c4bc46b.woff2')format("woff");}.ff4a_c00001{font-family:ff4a_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b_c00001;src:url('chunks/assets/font_5014509f6aa839a0694aa105.woff2')format("woff");}.ff4b_c00001{font-family:ff4b_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:ff4c_c00001;src:url('chunks/assets/font_49f5d11f50fa6fc817ebe5f3.woff2')format("woff");}.ff4c_c00001{font-family:ff4c_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:ff4d_c00001;src:url('chunks/assets/font_f60f545590801b354db88e04.woff2')format("woff");}.ff4d_c00001{font-family:ff4d_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e_c00001;src:url('chunks/assets/font_a3daa5f6620dba75a10de003.woff2')format("woff");}.ff4e_c00001{font-family:ff4e_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f_c00001;src:url('chunks/assets/font_b80d4d1e0f3acd87e5e7f4e2.woff2')format("woff");}.ff4f_c00001{font-family:ff4f_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:ff50_c00001;src:url('chunks/assets/font_1a92d31117f189bb28477a63.woff2')format("woff");}.ff50_c00001{font-family:ff50_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51_c00001;src:url('chunks/assets/font_e0f2f84e40e1eaecad7371aa.woff2')format("woff");}.ff51_c00001{font-family:ff51_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ff52_c00001{font-family:ff52_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:ff53_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff53_c00001{font-family:ff53_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54_c00001;src:url('chunks/assets/font_f23ff038a3aa8276fb4265a6.woff2')format("woff");}.ff54_c00001{font-family:ff54_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55_c00001;src:url('chunks/assets/font_46c68ed086621e83c66bd64f.woff2')format("woff");}.ff55_c00001{font-family:ff55_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ff56_c00001{font-family:ff56_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:ff57_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff57_c00001{font-family:ff57_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:ff58_c00001;src:url('chunks/assets/font_77c2f242ad11db3b6ff8d1af.woff2')format("woff");}.ff58_c00001{font-family:ff58_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59_c00001;src:url('chunks/assets/font_8b2f97dd6d00421e33dcd801.woff2')format("woff");}.ff59_c00001{font-family:ff59_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ff5a_c00001{font-family:ff5a_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:ff5b_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff5b_c00001{font-family:ff5b_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c_c00001;src:url('chunks/assets/font_dfd2b955d9a10f8a006a5fb9.woff2')format("woff");}.ff5c_c00001{font-family:ff5c_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d_c00001;src:url('chunks/assets/font_272b6df18388ee55042312a4.woff2')format("woff");}.ff5d_c00001{font-family:ff5d_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ff5e_c00001{font-family:ff5e_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:ff5f_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff5f_c00001{font-family:ff5f_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:ff60_c00001;src:url('chunks/assets/font_54e57cec2c530dbb37fdb007.woff2')format("woff");}.ff60_c00001{font-family:ff60_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61_c00001;src:url('chunks/assets/font_2230e8a4fa0d3b9c93bbb5b2.woff2')format("woff");}.ff61_c00001{font-family:ff61_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ff62_c00001{font-family:ff62_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff63_c00001{font-family:ff63_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:ff64_c00001;src:url('chunks/assets/font_b70b30e67f50d87fe851168e.woff2')format("woff");}.ff64_c00001{font-family:ff64_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff65_c00001;src:url('chunks/assets/font_0b18b7a95aeede8cd66aceeb.woff2')format("woff");}.ff65_c00001{font-family:ff65_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ff66_c00001{font-family:ff66_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:ff67_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff67_c00001{font-family:ff67_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:ff68_c00001;src:url('chunks/assets/font_e4fea4e937f3560e7a006b89.woff2')format("woff");}.ff68_c00001{font-family:ff68_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69_c00001;src:url('chunks/assets/font_b02d57fae586c0d3805b7f2b.woff2')format("woff");}.ff69_c00001{font-family:ff69_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ff6a_c00001{font-family:ff6a_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6b_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff6b_c00001{font-family:ff6b_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:ff6c_c00001;src:url('chunks/assets/font_2540b1431060a625688b1cfa.woff2')format("woff");}.ff6c_c00001{font-family:ff6c_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6d_c00001;src:url('chunks/assets/font_e7dcdc97f607e65d0ece91bf.woff2')format("woff");}.ff6d_c00001{font-family:ff6d_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ff6e_c00001{font-family:ff6e_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:ff6f_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff6f_c00001{font-family:ff6f_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:ff70_c00001;src:url('chunks/assets/font_4cef5986c2ae5000ecb1fd01.woff2')format("woff");}.ff70_c00001{font-family:ff70_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71_c00001;src:url('chunks/assets/font_ad4896aadd4d9be145530d4c.woff2')format("woff");}.ff71_c00001{font-family:ff71_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ff72_c00001{font-family:ff72_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:ff73_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff73_c00001{font-family:ff73_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:ff74_c00001;src:url('chunks/assets/font_225f98f25665cb54dc745f89.woff2')format("woff");}.ff74_c00001{font-family:ff74_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff75_c00001;src:url('chunks/assets/font_0d1c9acc147c0b70a4ef3115.woff2')format("woff");}.ff75_c00001{font-family:ff75_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff76_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ff76_c00001{font-family:ff76_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:ff77_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff77_c00001{font-family:ff77_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:ff78_c00001;src:url('chunks/assets/font_522ceb15c9e110f68d531f98.woff2')format("woff");}.ff78_c00001{font-family:ff78_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff79_c00001;src:url('chunks/assets/font_c4d91c0be0907bc3082b947c.woff2')format("woff");}.ff79_c00001{font-family:ff79_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7a_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ff7a_c00001{font-family:ff7a_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7b_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff7b_c00001{font-family:ff7b_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:ff7c_c00001;src:url('chunks/assets/font_72884603235276a58833cc78.woff2')format("woff");}.ff7c_c00001{font-family:ff7c_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7d_c00001;src:url('chunks/assets/font_81cc4f7c5da82161acdb337e.woff2')format("woff");}.ff7d_c00001{font-family:ff7d_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ff7e_c00001{font-family:ff7e_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:ff7f_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff7f_c00001{font-family:ff7f_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:ff80_c00001;src:url('chunks/assets/font_de57ff6001fd8748b5f5cf61.woff2')format("woff");}.ff80_c00001{font-family:ff80_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff81_c00001;src:url('chunks/assets/font_7411452a88e58018d8d03d45.woff2')format("woff");}.ff81_c00001{font-family:ff81_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff82_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ff82_c00001{font-family:ff82_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff83_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff83_c00001{font-family:ff83_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff84_c00001;src:url('chunks/assets/font_9c31f7be18c492a1b01142aa.woff2')format("woff");}.ff84_c00001{font-family:ff84_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff85_c00001;src:url('chunks/assets/font_65ba1819f0bd8de0c5ac56ba.woff2')format("woff");}.ff85_c00001{font-family:ff85_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff86_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ff86_c00001{font-family:ff86_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:ff87_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff87_c00001{font-family:ff87_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:ff88_c00001;src:url('chunks/assets/font_4a5a2902848365aea8e5330d.woff2')format("woff");}.ff88_c00001{font-family:ff88_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff89_c00001;src:url('chunks/assets/font_cc2f626caa5ec5ca531efdbd.woff2')format("woff");}.ff89_c00001{font-family:ff89_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8a_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ff8a_c00001{font-family:ff8a_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:ff8b_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff8b_c00001{font-family:ff8b_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:ff8c_c00001;src:url('chunks/assets/font_d205e4139c81cd74867b2cf5.woff2')format("woff");}.ff8c_c00001{font-family:ff8c_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8d_c00001;src:url('chunks/assets/font_72532cacfebd42b535e2e60d.woff2')format("woff");}.ff8d_c00001{font-family:ff8d_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8e_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ff8e_c00001{font-family:ff8e_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8f_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff8f_c00001{font-family:ff8f_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:ff90_c00001;src:url('chunks/assets/font_a8079a09a09473f4bc6af023.woff2')format("woff");}.ff90_c00001{font-family:ff90_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff91_c00001;src:url('chunks/assets/font_22d4befd4e25aa4a0c4f9f65.woff2')format("woff");}.ff91_c00001{font-family:ff91_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff92_c00001;src:url('chunks/assets/font_1100fd2105154f594f2c6ea8.woff2')format("woff");}.ff92_c00001{font-family:ff92_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:ff93_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff93_c00001{font-family:ff93_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:ff94_c00001;src:url('chunks/assets/font_7559b7957d06d8d86c766a87.woff2')format("woff");}.ff94_c00001{font-family:ff94_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff95_c00001;src:url('chunks/assets/font_89d7d3f73f0802e95ce4dc0b.woff2')format("woff");}.ff95_c00001{font-family:ff95_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff96_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ff96_c00001{font-family:ff96_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:ff97_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff97_c00001{font-family:ff97_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff98_c00001;src:url('chunks/assets/font_ff6f376733f1684fbfe3337b.woff2')format("woff");}.ff98_c00001{font-family:ff98_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff99_c00001;src:url('chunks/assets/font_9976d988eee9db6949d28682.woff2')format("woff");}.ff99_c00001{font-family:ff99_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9a_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ff9a_c00001{font-family:ff9a_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:ff9b_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff9b_c00001{font-family:ff9b_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9c_c00001;src:url('chunks/assets/font_024ef2d2e0fa759f831cb6b1.woff2')format("woff");}.ff9c_c00001{font-family:ff9c_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9d_c00001;src:url('chunks/assets/font_bcdf76e624eb5c2b696e0002.woff2')format("woff");}.ff9d_c00001{font-family:ff9d_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9e_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ff9e_c00001{font-family:ff9e_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:ff9f_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ff9f_c00001{font-family:ff9f_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:ffa0_c00001;src:url('chunks/assets/font_ca01d0edd8bd04c5c9fca6e0.woff2')format("woff");}.ffa0_c00001{font-family:ffa0_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa1_c00001;src:url('chunks/assets/font_d2f214a8f245f7c649f47e59.woff2')format("woff");}.ffa1_c00001{font-family:ffa1_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa2_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ffa2_c00001{font-family:ffa2_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:ffa3_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ffa3_c00001{font-family:ffa3_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:ffa4_c00001;src:url('chunks/assets/font_0983bfb00d170393694f7d36.woff2')format("woff");}.ffa4_c00001{font-family:ffa4_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa5_c00001;src:url('chunks/assets/font_b0f73f8ff2e83ffc609b8fbb.woff2')format("woff");}.ffa5_c00001{font-family:ffa5_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa6_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ffa6_c00001{font-family:ffa6_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:ffa7_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ffa7_c00001{font-family:ffa7_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:ffa8_c00001;src:url('chunks/assets/font_16c085941c224612b807f36b.woff2')format("woff");}.ffa8_c00001{font-family:ffa8_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa9_c00001;src:url('chunks/assets/font_d4be4c31bab68e7feac489d5.woff2')format("woff");}.ffa9_c00001{font-family:ffa9_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffaa_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ffaa_c00001{font-family:ffaa_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:ffab_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ffab_c00001{font-family:ffab_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:ffac_c00001;src:url('chunks/assets/font_9b4f47ebe1f797a22ecf2f2e.woff2')format("woff");}.ffac_c00001{font-family:ffac_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffad_c00001;src:url('chunks/assets/font_50ebd068a20a167fe8b1ea7e.woff2')format("woff");}.ffad_c00001{font-family:ffad_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffae_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ffae_c00001{font-family:ffae_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:ffaf_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ffaf_c00001{font-family:ffaf_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:ffb0_c00001;src:url('chunks/assets/font_ec60af40d28e511e2d3ca98a.woff2')format("woff");}.ffb0_c00001{font-family:ffb0_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb1_c00001;src:url('chunks/assets/font_44701c27759614152687dfcc.woff2')format("woff");}.ffb1_c00001{font-family:ffb1_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb2_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ffb2_c00001{font-family:ffb2_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:ffb3_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ffb3_c00001{font-family:ffb3_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:ffb4_c00001;src:url('chunks/assets/font_b91d4e0414f4e5b1cf787df9.woff2')format("woff");}.ffb4_c00001{font-family:ffb4_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb5_c00001;src:url('chunks/assets/font_cd05786e86cea5b9a0e4666a.woff2')format("woff");}.ffb5_c00001{font-family:ffb5_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb6_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ffb6_c00001{font-family:ffb6_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:ffb7_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ffb7_c00001{font-family:ffb7_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:ffb8_c00001;src:url('chunks/assets/font_04d25d67bbe94e239a4406d2.woff2')format("woff");}.ffb8_c00001{font-family:ffb8_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb9_c00001;src:url('chunks/assets/font_cf34f2459adac60cb19e0ffb.woff2')format("woff");}.ffb9_c00001{font-family:ffb9_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffba_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ffba_c00001{font-family:ffba_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:ffbb_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ffbb_c00001{font-family:ffbb_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:ffbc_c00001;src:url('chunks/assets/font_8cdae158d62e07b49f44d7c5.woff2')format("woff");}.ffbc_c00001{font-family:ffbc_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbd_c00001;src:url('chunks/assets/font_398bb870080e58b46351b670.woff2')format("woff");}.ffbd_c00001{font-family:ffbd_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbe_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ffbe_c00001{font-family:ffbe_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:ffbf_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ffbf_c00001{font-family:ffbf_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:ffc0_c00001;src:url('chunks/assets/font_d5cfed0e1cc2d5795dc83443.woff2')format("woff");}.ffc0_c00001{font-family:ffc0_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc1_c00001;src:url('chunks/assets/font_0e7a44b1098c50be3b303ca6.woff2')format("woff");}.ffc1_c00001{font-family:ffc1_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc2_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ffc2_c00001{font-family:ffc2_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:ffc3_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ffc3_c00001{font-family:ffc3_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:ffc4_c00001;src:url('chunks/assets/font_b36dbc380c79c8053e51cfc5.woff2')format("woff");}.ffc4_c00001{font-family:ffc4_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc5_c00001;src:url('chunks/assets/font_3575df30ed34656f8d72198a.woff2')format("woff");}.ffc5_c00001{font-family:ffc5_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc6_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ffc6_c00001{font-family:ffc6_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:ffc7_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ffc7_c00001{font-family:ffc7_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:ffc8_c00001;src:url('chunks/assets/font_022a1df6eac3b4b84aed0318.woff2')format("woff");}.ffc8_c00001{font-family:ffc8_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc9_c00001;src:url('chunks/assets/font_7685f3ea1198b96976b8f51c.woff2')format("woff");}.ffc9_c00001{font-family:ffc9_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffca_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ffca_c00001{font-family:ffca_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:ffcb_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ffcb_c00001{font-family:ffcb_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:ffcc_c00001;src:url('chunks/assets/font_78deccc0040b90e1b7d6eb55.woff2')format("woff");}.ffcc_c00001{font-family:ffcc_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcd_c00001;src:url('chunks/assets/font_44c16f1fa79530591d9ea9d4.woff2')format("woff");}.ffcd_c00001{font-family:ffcd_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffce_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ffce_c00001{font-family:ffce_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:ffcf_c00001;src:url('chunks/assets/font_563a1dc0f2b7e055f0941636.woff2')format("woff");}.ffcf_c00001{font-family:ffcf_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:ffd0_c00001;src:url('chunks/assets/font_157140de5a6e0c1f25b3afd3.woff2')format("woff");}.ffd0_c00001{font-family:ffd0_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd1_c00001;src:url('chunks/assets/font_03a4319c325a0a225a7af5c8.woff2')format("woff");}.ffd1_c00001{font-family:ffd1_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd2_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ffd2_c00001{font-family:ffd2_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:ffd3_c00001;src:url('chunks/assets/font_9d7eccdc3d3ad3d19cee2c52.woff2')format("woff");}.ffd3_c00001{font-family:ffd3_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:ffd4_c00001;src:url('chunks/assets/font_af7c17cc369b31b65a226b99.woff2')format("woff");}.ffd4_c00001{font-family:ffd4_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd5_c00001;src:url('chunks/assets/font_1b705b9e24ac38edb09c67f2.woff2')format("woff");}.ffd5_c00001{font-family:ffd5_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd6_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ffd6_c00001{font-family:ffd6_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:ffd7_c00001;src:url('chunks/assets/font_9d7eccdc3d3ad3d19cee2c52.woff2')format("woff");}.ffd7_c00001{font-family:ffd7_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:ffd8_c00001;src:url('chunks/assets/font_7086ebabaf0ca79895b006c3.woff2')format("woff");}.ffd8_c00001{font-family:ffd8_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd9_c00001;src:url('chunks/assets/font_fb5dd66c3b675a5c9eb3343b.woff2')format("woff");}.ffd9_c00001{font-family:ffd9_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffda_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ffda_c00001{font-family:ffda_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:ffdb_c00001;src:url('chunks/assets/font_9d7eccdc3d3ad3d19cee2c52.woff2')format("woff");}.ffdb_c00001{font-family:ffdb_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:ffdc_c00001;src:url('chunks/assets/font_cb14b9e14d8c991df705f13e.woff2')format("woff");}.ffdc_c00001{font-family:ffdc_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdd_c00001;src:url('chunks/assets/font_a6aaab85e0392d0af9228e18.woff2')format("woff");}.ffdd_c00001{font-family:ffdd_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffde_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ffde_c00001{font-family:ffde_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:ffdf_c00001;src:url('chunks/assets/font_54cf39b074d12ee82517e732.woff2')format("woff");}.ffdf_c00001{font-family:ffdf_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:ffe0_c00001;src:url('chunks/assets/font_f7ea962111349cbc38f3bd72.woff2')format("woff");}.ffe0_c00001{font-family:ffe0_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe1_c00001;src:url('chunks/assets/font_2ecc4ecc1d0407fb2e6c86e8.woff2')format("woff");}.ffe1_c00001{font-family:ffe1_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe2_c00001;src:url('chunks/assets/font_7174c8325394b397a122b5af.woff2')format("woff");}.ffe2_c00001{font-family:ffe2_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;}
.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;}
.ls1_c00001{letter-spacing:0.000000px;}
.ls5_c00001{letter-spacing:0.899997px;}
.ls4_c00001{letter-spacing:1.199979px;}
.lsc_c00001{letter-spacing:1.500012px;}
.lsd_c00001{letter-spacing:1.799994px;}
.lsb_c00001{letter-spacing:2.850000px;}
.ls8_c00001{letter-spacing:11.100000px;}
.ls9_c00001{letter-spacing:12.300000px;}
.ls3_c00001{letter-spacing:12.600000px;}
.ls6_c00001{letter-spacing:13.800000px;}
.ls0_c00001{letter-spacing:14.100000px;}
.lsa_c00001{letter-spacing:14.550000px;}
.ls2_c00001{letter-spacing:15.300000px;}
.ls7_c00001{letter-spacing:15.600000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00001{word-spacing:-25.500000px;}
.ws3_c00001{word-spacing:-16.500000px;}
.ws0_c00001{word-spacing:-15.000000px;}
.ws8_c00001{word-spacing:-14.549994px;}
.ws7_c00001{word-spacing:-14.250012px;}
.ws4_c00001{word-spacing:-13.949979px;}
.ws5_c00001{word-spacing:-13.649997px;}
.ws2_c00001{word-spacing:-12.750000px;}
.ws1_c00001{word-spacing:0.000000px;}
._26_c00001{margin-left:-28.647333px;}
._22_c00001{margin-left:-26.301198px;}
._20_c00001{margin-left:-15.113298px;}
._21_c00001{margin-left:-13.587069px;}
._15_c00001{margin-left:-12.387021px;}
._10_c00001{margin-left:-11.351886px;}
._d_c00001{margin-left:-10.200000px;}
._c_c00001{margin-left:-9.038925px;}
._9_c00001{margin-left:-7.677063px;}
._1b_c00001{margin-left:-6.477015px;}
._1c_c00001{margin-left:-4.491183px;}
._1_c00001{margin-left:-3.300006px;}
._0_c00001{margin-left:-1.760979px;}
._2_c00001{width:1.839009px;}
._3_c00001{width:3.320967px;}
._e_c00001{width:4.523976px;}
._6_c00001{width:5.657934px;}
._f_c00001{width:6.717267px;}
._5_c00001{width:7.760979px;}
._4_c00001{width:9.062973px;}
._13_c00001{width:10.287111px;}
._7_c00001{width:11.834883px;}
._12_c00001{width:13.661982px;}
._1d_c00001{width:14.718021px;}
._18_c00001{width:16.001988px;}
._11_c00001{width:17.051886px;}
._b_c00001{width:18.404979px;}
._8_c00001{width:19.460979px;}
._a_c00001{width:21.000000px;}
._14_c00001{width:22.922937px;}
._1a_c00001{width:24.072000px;}
._16_c00001{width:25.572012px;}
._19_c00001{width:27.593907px;}
._17_c00001{width:29.093919px;}
._1e_c00001{width:30.164955px;}
._23_c00001{width:31.296012px;}
._1f_c00001{width:33.260694px;}
._24_c00001{width:34.742964px;}
._25_c00001{width:36.618846px;}
._2a_c00001{width:38.425197px;}
._27_c00001{width:50.360919px;}
._29_c00001{width:54.978051px;}
._28_c00001{width:56.264985px;}
.fc2_c00001{color:transparent;}
.fc1_c00001{color:rgb(0,0,0);}
.fc0_c00001{color:rgb(35,31,32);}
.fs0_c00001{font-size:51.000000px;}
.fs1_c00001{font-size:60.000000px;}
.fs2_c00001{font-size:66.000000px;}
.y0_c00001{bottom:0.000000px;}
.y25_c00001{bottom:64.425022px;}
.y5d_c00001{bottom:64.800022px;}
.y24_c00001{bottom:110.175022px;}
.y5c_c00001{bottom:110.550022px;}
.y37a_c00001{bottom:111.975022px;}
.y2a3_c00001{bottom:113.400022px;}
.y32c_c00001{bottom:113.775022px;}
.y3be_c00001{bottom:117.000022px;}
.y26f_c00001{bottom:117.375022px;}
.y29a_c00001{bottom:118.425022px;}
.y28a_c00001{bottom:120.225022px;}
.y230_c00001{bottom:120.600022px;}
.y398_c00001{bottom:122.025022px;}
.y2c9_c00001{bottom:122.400022px;}
.y1be_c00001{bottom:122.775022px;}
.y349_c00001{bottom:123.825022px;}
.y384_c00001{bottom:124.200022px;}
.y23_c00001{bottom:125.325022px;}
.y71_c00001{bottom:125.625022px;}
.y379_c00001{bottom:127.425022px;}
.y27b_c00001{bottom:129.225022px;}
.y301_c00001{bottom:129.600022px;}
.y337_c00001{bottom:132.525022px;}
.y26e_c00001{bottom:132.825022px;}
.y299_c00001{bottom:134.325022px;}
.y1e1_c00001{bottom:136.125022px;}
.y25f_c00001{bottom:136.425022px;}
.y2f2_c00001{bottom:136.500022px;}
.y397_c00001{bottom:137.925022px;}
.y2c8_c00001{bottom:138.225022px;}
.y3c8_c00001{bottom:138.600022px;}
.y1bd_c00001{bottom:138.975022px;}
.y2bc_c00001{bottom:139.725022px;}
.y351_c00001{bottom:140.025022px;}
.y22_c00001{bottom:140.775022px;}
.y182_c00001{bottom:141.075022px;}
.yc3_c00001{bottom:141.150022px;}
.y340_c00001{bottom:141.525022px;}
.y2e3_c00001{bottom:143.325022px;}
.y27a_c00001{bottom:144.750022px;}
.y32b_c00001{bottom:145.125022px;}
.y246_c00001{bottom:148.350022px;}
.y256_c00001{bottom:148.725022px;}
.y391_c00001{bottom:151.575022px;}
.y1e0_c00001{bottom:151.950022px;}
.y210_c00001{bottom:152.325022px;}
.y298_c00001{bottom:153.375022px;}
.y396_c00001{bottom:153.750022px;}
.y289_c00001{bottom:155.550022px;}
.y21_c00001{bottom:155.925022px;}
.y70_c00001{bottom:156.225022px;}
.y331_c00001{bottom:156.975022px;}
.y2c7_c00001{bottom:157.350022px;}
.y1bc_c00001{bottom:158.025022px;}
.y2e2_c00001{bottom:158.775022px;}
.y2bb_c00001{bottom:159.150022px;}
.y224_c00001{bottom:160.575022px;}
.y33c_c00001{bottom:160.950022px;}
.y3bc_c00001{bottom:162.375022px;}
.y378_c00001{bottom:162.750022px;}
.y245_c00001{bottom:164.175022px;}
.y300_c00001{bottom:164.550022px;}
.y390_c00001{bottom:167.400022px;}
.y1df_c00001{bottom:167.775022px;}
.y22f_c00001{bottom:168.150022px;}
.y39a_c00001{bottom:169.575022px;}
.y2eb_c00001{bottom:171.000022px;}
.y44_c00001{bottom:171.375022px;}
.y94_c00001{bottom:171.450022px;}
.y123_c00001{bottom:171.600022px;}
.y104_c00001{bottom:171.675022px;}
.y6f_c00001{bottom:171.750022px;}
.y297_c00001{bottom:172.800022px;}
.y368_c00001{bottom:173.175022px;}
.y1bb_c00001{bottom:173.550022px;}
.y2ba_c00001{bottom:174.600022px;}
.y350_c00001{bottom:174.975022px;}
.y348_c00001{bottom:175.275022px;}
.y223_c00001{bottom:176.400022px;}
.y338_c00001{bottom:176.775022px;}
.y3bb_c00001{bottom:177.825022px;}
.y377_c00001{bottom:178.200022px;}
.y2e1_c00001{bottom:178.575022px;}
.y255_c00001{bottom:180.000022px;}
.y279_c00001{bottom:180.375022px;}
.y308_c00001{bottom:180.600022px;}
.y3c7_c00001{bottom:182.175022px;}
.y244_c00001{bottom:183.225022px;}
.y20f_c00001{bottom:183.600022px;}
.y43_c00001{bottom:186.525022px;}
.y93_c00001{bottom:186.825022px;}
.y1de_c00001{bottom:187.200022px;}
.y395_c00001{bottom:188.625022px;}
.y367_c00001{bottom:189.000022px;}
.y3a2_c00001{bottom:189.225022px;}
.y2b9_c00001{bottom:190.425022px;}
.y345_c00001{bottom:190.800022px;}
.y291_c00001{bottom:192.225022px;}
.y222_c00001{bottom:192.600022px;}
.y1ba_c00001{bottom:192.975022px;}
.y2e0_c00001{bottom:194.025022px;}
.y254_c00001{bottom:195.525022px;}
.y3bd_c00001{bottom:195.675022px;}
.y2a0_c00001{bottom:195.825022px;}
.y20e_c00001{bottom:199.125022px;}
.y22e_c00001{bottom:199.425022px;}
.y20_c00001{bottom:199.800022px;}
.yec_c00001{bottom:201.900022px;}
.y42_c00001{bottom:201.975022px;}
.y92_c00001{bottom:202.200022px;}
.yd0_c00001{bottom:202.350022px;}
.y1dd_c00001{bottom:202.725022px;}
.y1fa_c00001{bottom:203.025022px;}
.y381_c00001{bottom:203.100022px;}
.y3c6_c00001{bottom:203.775022px;}
.y5b_c00001{bottom:204.150022px;}
.y366_c00001{bottom:204.525022px;}
.y288_c00001{bottom:206.325022px;}
.y2ea_c00001{bottom:206.625022px;}
.y334_c00001{bottom:207.750022px;}
.y3a1_c00001{bottom:208.125022px;}
.y1b9_c00001{bottom:208.800022px;}
.y2b8_c00001{bottom:209.550022px;}
.y290_c00001{bottom:211.350022px;}
.y221_c00001{bottom:211.725022px;}
.y33a_c00001{bottom:211.875022px;}
.y2df_c00001{bottom:213.150022px;}
.y3ba_c00001{bottom:213.525022px;}
.y253_c00001{bottom:214.950022px;}
.y29f_c00001{bottom:215.325022px;}
.yc2_c00001{bottom:217.125022px;}
.ye4_c00001{bottom:217.425022px;}
.y38f_c00001{bottom:218.175022px;}
.y1f9_c00001{bottom:218.550022px;}
.y20d_c00001{bottom:218.925022px;}
.y1f_c00001{bottom:219.600022px;}
.y1dc_c00001{bottom:221.775022px;}
.y287_c00001{bottom:222.150022px;}
.y5a_c00001{bottom:223.200022px;}
.y394_c00001{bottom:223.575022px;}
.y8f_c00001{bottom:223.950022px;}
.yb0_c00001{bottom:224.625022px;}
.y2b7_c00001{bottom:225.375022px;}
.y2e9_c00001{bottom:225.750022px;}
.y220_c00001{bottom:227.175022px;}
.y33f_c00001{bottom:227.550022px;}
.y19f_c00001{bottom:227.925022px;}
.y1b8_c00001{bottom:228.225022px;}
.y2fe_c00001{bottom:228.975022px;}
.y2de_c00001{bottom:229.350022px;}
.y278_c00001{bottom:230.775022px;}
.y252_c00001{bottom:231.150022px;}
.yc1_c00001{bottom:232.575022px;}
.ycf_c00001{bottom:232.950022px;}
.y20c_c00001{bottom:234.000022px;}
.y32a_c00001{bottom:234.075022px;}
.y382_c00001{bottom:234.375022px;}
.y1f8_c00001{bottom:237.525022px;}
.y1db_c00001{bottom:237.600022px;}
.y26d_c00001{bottom:237.975022px;}
.y1e_c00001{bottom:239.025022px;}
.y365_c00001{bottom:239.400022px;}
.y3a0_c00001{bottom:239.775022px;}
.y286_c00001{bottom:241.200022px;}
.y34f_c00001{bottom:241.575022px;}
.y41_c00001{bottom:242.325022px;}
.y59_c00001{bottom:243.000022px;}
.y8e_c00001{bottom:243.375022px;}
.yaf_c00001{bottom:244.125022px;}
.y376_c00001{bottom:244.725022px;}
.y114_c00001{bottom:244.800022px;}
.y2b6_c00001{bottom:245.175022px;}
.y21f_c00001{bottom:246.225022px;}
.y251_c00001{bottom:246.600022px;}
.y19e_c00001{bottom:247.350022px;}
.yeb_c00001{bottom:247.725022px;}
.yce_c00001{bottom:248.025022px;}
.y243_c00001{bottom:249.825022px;}
.y329_c00001{bottom:249.900022px;}
.y22d_c00001{bottom:250.200022px;}
.y38e_c00001{bottom:253.125022px;}
.y1da_c00001{bottom:253.425022px;}
.y2ee_c00001{bottom:253.500022px;}
.y2f6_c00001{bottom:253.800022px;}
.y26c_c00001{bottom:257.025022px;}
.y357_c00001{bottom:257.100022px;}
.y30d_c00001{bottom:257.400022px;}
.y34e_c00001{bottom:257.475022px;}
.y1d_c00001{bottom:258.150022px;}
.y364_c00001{bottom:258.525022px;}
.y39f_c00001{bottom:258.825022px;}
.y1b7_c00001{bottom:259.950022px;}
.y2b5_c00001{bottom:260.625022px;}
.y2fd_c00001{bottom:261.000022px;}
.yff_c00001{bottom:261.375022px;}
.y40_c00001{bottom:261.750022px;}
.y6e_c00001{bottom:262.125022px;}
.y58_c00001{bottom:262.425022px;}
.y136_c00001{bottom:262.575022px;}
.y8d_c00001{bottom:262.800022px;}
.y1a0_c00001{bottom:263.100022px;}
.ycd_c00001{bottom:263.175022px;}
.yae_c00001{bottom:263.550022px;}
.y3b9_c00001{bottom:263.925022px;}
.y113_c00001{bottom:264.600022px;}
.y250_c00001{bottom:265.725022px;}
.y242_c00001{bottom:266.025022px;}
.y19d_c00001{bottom:266.775022px;}
.y3c5_c00001{bottom:268.950022px;}
.y1d9_c00001{bottom:269.325022px;}
.y2f5_c00001{bottom:269.475022px;}
.y29e_c00001{bottom:269.625022px;}
.y25e_c00001{bottom:272.550022px;}
.y26b_c00001{bottom:272.925022px;}
.y363_c00001{bottom:274.350022px;}
.y39e_c00001{bottom:274.725022px;}
.yc0_c00001{bottom:275.400022px;}
.y285_c00001{bottom:276.150022px;}
.y2e8_c00001{bottom:276.525022px;}
.y1c_c00001{bottom:277.950022px;}
.ycc_c00001{bottom:278.325022px;}
.yea_c00001{bottom:278.625022px;}
.y1b6_c00001{bottom:279.000022px;}
.y3b8_c00001{bottom:279.375022px;}
.y2dd_c00001{bottom:279.750022px;}
.y3f_c00001{bottom:281.175022px;}
.y103_c00001{bottom:281.550022px;}
.y6d_c00001{bottom:281.850022px;}
.y57_c00001{bottom:281.925022px;}
.yad_c00001{bottom:282.975022px;}
.y112_c00001{bottom:283.725022px;}
.y1f7_c00001{bottom:284.775022px;}
.y2ed_c00001{bottom:285.150022px;}
.y19c_c00001{bottom:285.825022px;}
.y1d8_c00001{bottom:288.375022px;}
.y2f1_c00001{bottom:288.750022px;}
.y3c4_c00001{bottom:290.925022px;}
.y284_c00001{bottom:291.975022px;}
.y26a_c00001{bottom:292.350022px;}
.yf8_c00001{bottom:293.700022px;}
.ycb_c00001{bottom:293.775022px;}
.ye3_c00001{bottom:294.075022px;}
.yf3_c00001{bottom:294.150022px;}
.y16b_c00001{bottom:294.525022px;}
.ybf_c00001{bottom:294.825022px;}
.y3b7_c00001{bottom:295.200022px;}
.y2dc_c00001{bottom:295.575022px;}
.y375_c00001{bottom:295.950022px;}
.y28f_c00001{bottom:297.000022px;}
.y1b_c00001{bottom:297.375022px;}
.y1b5_c00001{bottom:298.425022px;}
.yfe_c00001{bottom:300.225022px;}
.y296_c00001{bottom:300.525022px;}
.y3e_c00001{bottom:300.600022px;}
.y22c_c00001{bottom:300.975022px;}
.y135_c00001{bottom:301.275022px;}
.y56_c00001{bottom:301.350022px;}
.y8c_c00001{bottom:301.725022px;}
.yac_c00001{bottom:302.025022px;}
.y111_c00001{bottom:303.150022px;}
.y191_c00001{bottom:303.525022px;}
.y38d_c00001{bottom:303.825022px;}
.y1d7_c00001{bottom:304.200022px;}
.y1f6_c00001{bottom:304.575022px;}
.y19b_c00001{bottom:305.325022px;}
.y283_c00001{bottom:307.800022px;}
.y2b4_c00001{bottom:308.175022px;}
.y269_c00001{bottom:308.400022px;}
.yca_c00001{bottom:308.925022px;}
.ye2_c00001{bottom:309.225022px;}
.y39d_c00001{bottom:309.450022px;}
.y362_c00001{bottom:309.600022px;}
.y374_c00001{bottom:311.400022px;}
.y2db_c00001{bottom:311.775022px;}
.y3c3_c00001{bottom:312.525022px;}
.y330_c00001{bottom:312.825022px;}
.y21e_c00001{bottom:313.200022px;}
.y16a_c00001{bottom:313.950022px;}
.ybe_c00001{bottom:314.325022px;}
.y2fc_c00001{bottom:314.625022px;}
.y11c_c00001{bottom:314.700022px;}
.y3b6_c00001{bottom:315.000022px;}
.y1a_c00001{bottom:316.425022px;}
.y241_c00001{bottom:316.800022px;}
.y3d_c00001{bottom:319.350022px;}
.yfd_c00001{bottom:319.725022px;}
.y102_c00001{bottom:320.025022px;}
.y6c_c00001{bottom:320.100022px;}
.y55_c00001{bottom:320.400022px;}
.y8b_c00001{bottom:321.150022px;}
.yab_c00001{bottom:321.900022px;}
.y110_c00001{bottom:322.950022px;}
.y1f5_c00001{bottom:323.625022px;}
.y30c_c00001{bottom:323.850022px;}
.y25d_c00001{bottom:324.000022px;}
.yc9_c00001{bottom:324.375022px;}
.y115_c00001{bottom:324.675022px;}
.yf7_c00001{bottom:324.750022px;}
.y19a_c00001{bottom:325.125022px;}
.y2b3_c00001{bottom:326.925022px;}
.y282_c00001{bottom:327.225022px;}
.y21d_c00001{bottom:328.725022px;}
.y327_c00001{bottom:329.025022px;}
.y3b5_c00001{bottom:330.150022px;}
.y373_c00001{bottom:330.825022px;}
.y2fb_c00001{bottom:331.050022px;}
.y240_c00001{bottom:332.325022px;}
.y277_c00001{bottom:332.625022px;}
.y323_c00001{bottom:332.850022px;}
.y169_c00001{bottom:333.375022px;}
.ybd_c00001{bottom:333.750022px;}
.y11b_c00001{bottom:334.125022px;}
.y3c2_c00001{bottom:334.425022px;}
.y24f_c00001{bottom:335.550022px;}
.y1d6_c00001{bottom:335.925022px;}
.y19_c00001{bottom:336.225022px;}
.y3c_c00001{bottom:339.150022px;}
.y6b_c00001{bottom:339.525022px;}
.y1f4_c00001{bottom:339.675022px;}
.y54_c00001{bottom:339.825022px;}
.y8a_c00001{bottom:340.575022px;}
.yaa_c00001{bottom:341.325022px;}
.y10f_c00001{bottom:341.625022px;}
.y190_c00001{bottom:342.000022px;}
.y2b2_c00001{bottom:342.750022px;}
.y268_c00001{bottom:343.125022px;}
.y199_c00001{bottom:344.550022px;}
.y2da_c00001{bottom:346.350022px;}
.y2fa_c00001{bottom:346.725022px;}
.y322_c00001{bottom:347.775022px;}
.y21c_c00001{bottom:348.150022px;}
.y1b4_c00001{bottom:348.900022px;}
.y181_c00001{bottom:349.200022px;}
.y3b4_c00001{bottom:349.575022px;}
.y23f_c00001{bottom:351.375022px;}
.y22b_c00001{bottom:351.750022px;}
.y168_c00001{bottom:352.800022px;}
.ybc_c00001{bottom:353.175022px;}
.y11a_c00001{bottom:353.550022px;}
.yc8_c00001{bottom:354.975022px;}
.y336_c00001{bottom:355.275022px;}
.y18_c00001{bottom:355.350022px;}
.y3c1_c00001{bottom:356.025022px;}
.y3b_c00001{bottom:358.200022px;}
.y307_c00001{bottom:358.575022px;}
.y6a_c00001{bottom:358.950022px;}
.y53_c00001{bottom:359.250022px;}
.y101_c00001{bottom:359.325022px;}
.y89_c00001{bottom:359.625022px;}
.ya9_c00001{bottom:360.750022px;}
.y10e_c00001{bottom:361.125022px;}
.y134_c00001{bottom:361.425022px;}
.y2e7_c00001{bottom:362.175022px;}
.y2d9_c00001{bottom:362.700022px;}
.y21b_c00001{bottom:363.600022px;}
.y326_c00001{bottom:363.975022px;}
.y1b3_c00001{bottom:364.725022px;}
.y372_c00001{bottom:365.400022px;}
.y24e_c00001{bottom:367.200022px;}
.y23e_c00001{bottom:367.575022px;}
.y180_c00001{bottom:368.325022px;}
.yc7_c00001{bottom:370.125022px;}
.yf2_c00001{bottom:370.425022px;}
.y1d5_c00001{bottom:370.800022px;}
.y29d_c00001{bottom:371.175022px;}
.y380_c00001{bottom:371.400022px;}
.y167_c00001{bottom:371.925022px;}
.ybb_c00001{bottom:372.600022px;}
.y119_c00001{bottom:372.975022px;}
.y20b_c00001{bottom:374.400022px;}
.y17_c00001{bottom:374.775022px;}
.y3a_c00001{bottom:377.625022px;}
.y2b1_c00001{bottom:378.000022px;}
.y52_c00001{bottom:378.375022px;}
.y69_c00001{bottom:378.750022px;}
.y88_c00001{bottom:379.425022px;}
.y333_c00001{bottom:379.800022px;}
.ya8_c00001{bottom:380.175022px;}
.y133_c00001{bottom:380.550022px;}
.y10d_c00001{bottom:380.925022px;}
.y371_c00001{bottom:381.225022px;}
.y198_c00001{bottom:381.600022px;}
.y23d_c00001{bottom:383.025022px;}
.y21a_c00001{bottom:383.400022px;}
.yc6_c00001{bottom:385.575022px;}
.yf1_c00001{bottom:385.950022px;}
.y22a_c00001{bottom:386.625022px;}
.y1d4_c00001{bottom:387.000022px;}
.y335_c00001{bottom:387.075022px;}
.y35a_c00001{bottom:387.225022px;}
.y17f_c00001{bottom:388.125022px;}
.y1f3_c00001{bottom:389.925022px;}
.y2f0_c00001{bottom:390.225022px;}
.y166_c00001{bottom:391.350022px;}
.yba_c00001{bottom:392.025022px;}
.y118_c00001{bottom:392.400022px;}
.y358_c00001{bottom:393.150022px;}
.y2e6_c00001{bottom:393.525022px;}
.y267_c00001{bottom:393.825022px;}
.y16_c00001{bottom:394.575022px;}
.y321_c00001{bottom:395.325022px;}
.y361_c00001{bottom:395.625022px;}
.y1b2_c00001{bottom:396.375022px;}
.y370_c00001{bottom:397.125022px;}
.y39_c00001{bottom:397.425022px;}
.ye9_c00001{bottom:397.725022px;}
.y68_c00001{bottom:397.800022px;}
.y51_c00001{bottom:398.175022px;}
.y87_c00001{bottom:398.550022px;}
.y311_c00001{bottom:398.925022px;}
.ya7_c00001{bottom:399.600022px;}
.y132_c00001{bottom:399.975022px;}
.y10c_c00001{bottom:400.350022px;}
.yc5_c00001{bottom:400.725022px;}
.yf0_c00001{bottom:401.025022px;}
.y23c_c00001{bottom:401.250022px;}
.y24d_c00001{bottom:402.150022px;}
.y295_c00001{bottom:402.525022px;}
.y1d3_c00001{bottom:405.750022px;}
.y229_c00001{bottom:406.125022px;}
.y17e_c00001{bottom:407.550022px;}
.y38c_c00001{bottom:408.975022px;}
.y20a_c00001{bottom:409.350022px;}
.y266_c00001{bottom:409.725022px;}
.y39c_c00001{bottom:410.775022px;}
.y165_c00001{bottom:411.150022px;}
.yb9_c00001{bottom:411.525022px;}
.y144_c00001{bottom:411.825022px;}
.y196_c00001{bottom:411.900022px;}
.y2d8_c00001{bottom:412.950022px;}
.y2b0_c00001{bottom:413.325022px;}
.y15_c00001{bottom:414.000022px;}
.y310_c00001{bottom:414.375022px;}
.y32f_c00001{bottom:414.750022px;}
.ye1_c00001{bottom:415.425022px;}
.yf5_c00001{bottom:416.175022px;}
.y38_c00001{bottom:416.550022px;}
.ye8_c00001{bottom:417.225022px;}
.y50_c00001{bottom:417.600022px;}
.y86_c00001{bottom:417.975022px;}
.y276_c00001{bottom:418.350022px;}
.ya6_c00001{bottom:419.025022px;}
.y131_c00001{bottom:419.400022px;}
.y10b_c00001{bottom:419.775022px;}
.y3c0_c00001{bottom:421.200022px;}
.y1d2_c00001{bottom:421.575022px;}
.y1f2_c00001{bottom:421.950022px;}
.y15b_c00001{bottom:422.325022px;}
.y25c_c00001{bottom:425.175022px;}
.y209_c00001{bottom:425.550022px;}
.y320_c00001{bottom:426.600022px;}
.y17d_c00001{bottom:426.975022px;}
.y281_c00001{bottom:428.400022px;}
.y164_c00001{bottom:430.575022px;}
.yb8_c00001{bottom:430.950022px;}
.yef_c00001{bottom:431.325022px;}
.yf4_c00001{bottom:431.625022px;}
.y2af_c00001{bottom:432.375022px;}
.y14_c00001{bottom:433.125022px;}
.y28e_c00001{bottom:433.800022px;}
.y23b_c00001{bottom:434.175022px;}
.ye0_c00001{bottom:434.550022px;}
.y37_c00001{bottom:436.350022px;}
.y67_c00001{bottom:436.725022px;}
.y4f_c00001{bottom:437.025022px;}
.y145_c00001{bottom:437.100022px;}
.y325_c00001{bottom:437.325022px;}
.y294_c00001{bottom:437.400022px;}
.y2ec_c00001{bottom:437.625022px;}
.y85_c00001{bottom:437.775022px;}
.ya5_c00001{bottom:438.150022px;}
.y10a_c00001{bottom:439.125022px;}
.y130_c00001{bottom:439.200022px;}
.y208_c00001{bottom:440.625022px;}
.y2f4_c00001{bottom:440.700022px;}
.y306_c00001{bottom:441.000022px;}
.y15a_c00001{bottom:441.375022px;}
.y3bf_c00001{bottom:443.175022px;}
.y265_c00001{bottom:444.225022px;}
.y31f_c00001{bottom:446.025022px;}
.y17c_c00001{bottom:446.400022px;}
.yee_c00001{bottom:446.775022px;}
.y1b1_c00001{bottom:447.150022px;}
.y2ae_c00001{bottom:447.825022px;}
.y23a_c00001{bottom:449.625022px;}
.y2c6_c00001{bottom:450.000022px;}
.yb7_c00001{bottom:450.375022px;}
.y160_c00001{bottom:450.750022px;}
.y3b3_c00001{bottom:451.125022px;}
.y36f_c00001{bottom:451.800022px;}
.y13_c00001{bottom:452.925022px;}
.y275_c00001{bottom:453.225022px;}
.ydf_c00001{bottom:454.350022px;}
.ye7_c00001{bottom:456.150022px;}
.y4e_c00001{bottom:456.450022px;}
.y66_c00001{bottom:456.525022px;}
.y84_c00001{bottom:456.825022px;}
.ya4_c00001{bottom:457.575022px;}
.y18f_c00001{bottom:458.325022px;}
.y109_c00001{bottom:458.625022px;}
.y264_c00001{bottom:460.125022px;}
.y30b_c00001{bottom:460.425022px;}
.y159_c00001{bottom:460.800022px;}
.yed_c00001{bottom:461.925022px;}
.y2ad_c00001{bottom:463.725022px;}
.y2d7_c00001{bottom:464.025022px;}
.y280_c00001{bottom:464.250022px;}
.y117_c00001{bottom:465.150022px;}
.y360_c00001{bottom:465.525022px;}
.y17b_c00001{bottom:465.825022px;}
.y1b0_c00001{bottom:466.200022px;}
.y36e_c00001{bottom:466.950022px;}
.y239_c00001{bottom:468.750022px;}
.y274_c00001{bottom:469.125022px;}
.yb6_c00001{bottom:469.425022px;}
.y143_c00001{bottom:469.800022px;}
.y15f_c00001{bottom:470.175022px;}
.y163_c00001{bottom:471.225022px;}
.y12_c00001{bottom:472.350022px;}
.y219_c00001{bottom:472.725022px;}
.yde_c00001{bottom:473.775022px;}
.yfc_c00001{bottom:475.200022px;}
.y65_c00001{bottom:475.575022px;}
.y36_c00001{bottom:475.950022px;}
.y83_c00001{bottom:476.325022px;}
.y122_c00001{bottom:476.625022px;}
.ya3_c00001{bottom:477.375022px;}
.y18e_c00001{bottom:477.750022px;}
.y108_c00001{bottom:478.125022px;}
.y356_c00001{bottom:479.175022px;}
.y263_c00001{bottom:479.550022px;}
.y158_c00001{bottom:480.600022px;}
.y31e_c00001{bottom:480.975022px;}
.y35f_c00001{bottom:481.350022px;}
.y1af_c00001{bottom:481.725022px;}
.y2ac_c00001{bottom:482.775022px;}
.y2d6_c00001{bottom:483.150022px;}
.y28d_c00001{bottom:484.575022px;}
.y17a_c00001{bottom:484.950022px;}
.y1d1_c00001{bottom:488.175022px;}
.y359_c00001{bottom:488.475022px;}
.y293_c00001{bottom:488.550022px;}
.yb5_c00001{bottom:489.225022px;}
.y195_c00001{bottom:489.600022px;}
.y11_c00001{bottom:491.025022px;}
.y218_c00001{bottom:491.400022px;}
.y207_c00001{bottom:491.775022px;}
.y2ef_c00001{bottom:492.000022px;}
.ydd_c00001{bottom:493.200022px;}
.yfb_c00001{bottom:494.625022px;}
.ye6_c00001{bottom:494.925022px;}
.y64_c00001{bottom:495.000022px;}
.y35_c00001{bottom:495.375022px;}
.y82_c00001{bottom:496.125022px;}
.ya2_c00001{bottom:496.800022px;}
.y12f_c00001{bottom:497.175022px;}
.y107_c00001{bottom:497.550022px;}
.y2ab_c00001{bottom:498.975022px;}
.y157_c00001{bottom:500.025022px;}
.y37d_c00001{bottom:500.325022px;}
.y346_c00001{bottom:500.400022px;}
.y30f_c00001{bottom:500.625022px;}
.y2c5_c00001{bottom:500.775022px;}
.y3b2_c00001{bottom:501.825022px;}
.y1f1_c00001{bottom:503.625022px;}
.y228_c00001{bottom:504.000022px;}
.y179_c00001{bottom:504.750022px;}
.y1d0_c00001{bottom:507.225022px;}
.y29c_c00001{bottom:507.300022px;}
.y24c_c00001{bottom:507.600022px;}
.y194_c00001{bottom:508.725022px;}
.y142_c00001{bottom:509.100022px;}
.y10_c00001{bottom:510.525022px;}
.y206_c00001{bottom:510.825022px;}
.y34d_c00001{bottom:511.050022px;}
.y2e5_c00001{bottom:511.200022px;}
.y305_c00001{bottom:511.425022px;}
.y31d_c00001{bottom:512.625022px;}
.y1ae_c00001{bottom:513.750022px;}
.y38b_c00001{bottom:514.125022px;}
.y4d_c00001{bottom:514.425022px;}
.y262_c00001{bottom:514.500022px;}
.y63_c00001{bottom:514.800022px;}
.y116_c00001{bottom:514.875022px;}
.y81_c00001{bottom:515.175022px;}
.ya1_c00001{bottom:515.925022px;}
.y2c4_c00001{bottom:516.225022px;}
.y12e_c00001{bottom:516.600022px;}
.y18d_c00001{bottom:516.975022px;}
.y2aa_c00001{bottom:518.025022px;}
.y156_c00001{bottom:519.525022px;}
.y33e_c00001{bottom:519.675022px;}
.y324_c00001{bottom:519.825022px;}
.y332_c00001{bottom:520.050022px;}
.y1cf_c00001{bottom:523.125022px;}
.y292_c00001{bottom:523.425022px;}
.y178_c00001{bottom:524.175022px;}
.y205_c00001{bottom:526.725022px;}
.y217_c00001{bottom:527.025022px;}
.y141_c00001{bottom:528.525022px;}
.y2e4_c00001{bottom:529.950022px;}
.yf_c00001{bottom:530.325022px;}
.y31c_c00001{bottom:531.750022px;}
.y37c_c00001{bottom:532.125022px;}
.y1ad_c00001{bottom:532.425022px;}
.y2a9_c00001{bottom:533.550022px;}
.ye5_c00001{bottom:533.925022px;}
.y4c_c00001{bottom:534.225022px;}
.y62_c00001{bottom:534.300022px;}
.y80_c00001{bottom:534.600022px;}
.y121_c00001{bottom:534.975022px;}
.y106_c00001{bottom:535.350022px;}
.ya0_c00001{bottom:535.725022px;}
.y12d_c00001{bottom:536.400022px;}
.y155_c00001{bottom:538.575022px;}
.y1f0_c00001{bottom:538.950022px;}
.y238_c00001{bottom:539.325022px;}
.y216_c00001{bottom:542.175022px;}
.y1ce_c00001{bottom:542.550022px;}
.y177_c00001{bottom:543.225022px;}
.y204_c00001{bottom:545.775022px;}
.y25b_c00001{bottom:546.150022px;}
.y344_c00001{bottom:546.300022px;}
.y193_c00001{bottom:547.575022px;}
.y140_c00001{bottom:547.950022px;}
.y1ac_c00001{bottom:548.625022px;}
.yb4_c00001{bottom:549.000022px;}
.ye_c00001{bottom:549.375022px;}
.y2a8_c00001{bottom:549.750022px;}
.y35e_c00001{bottom:551.175022px;}
.y2c3_c00001{bottom:551.550022px;}
.y3b1_c00001{bottom:552.975022px;}
.y4b_c00001{bottom:553.350022px;}
.y33_c00001{bottom:553.725022px;}
.y7f_c00001{bottom:554.025022px;}
.y28c_c00001{bottom:554.400022px;}
.y237_c00001{bottom:554.775022px;}
.y9f_c00001{bottom:555.150022px;}
.y12c_c00001{bottom:555.825022px;}
.y29b_c00001{bottom:557.925022px;}
.y1ef_c00001{bottom:558.000022px;}
.y393_c00001{bottom:558.225022px;}
.y154_c00001{bottom:558.375022px;}
.y27f_c00001{bottom:558.600022px;}
.y203_c00001{bottom:561.600022px;}
.y343_c00001{bottom:561.900022px;}
.y24b_c00001{bottom:561.975022px;}
.y176_c00001{bottom:563.100022px;}
.y38a_c00001{bottom:564.825022px;}
.y2d5_c00001{bottom:565.200022px;}
.y31b_c00001{bottom:566.625022px;}
.y35d_c00001{bottom:567.000022px;}
.y13f_c00001{bottom:567.375022px;}
.y1ab_c00001{bottom:568.125022px;}
.y3b0_c00001{bottom:568.425022px;}
.yd_c00001{bottom:568.800022px;}
.y30e_c00001{bottom:570.225022px;}
.y2c2_c00001{bottom:570.600022px;}
.y32_c00001{bottom:572.775022px;}
.y4a_c00001{bottom:573.150022px;}
.y39b_c00001{bottom:573.525022px;}
.y7e_c00001{bottom:573.825022px;}
.y120_c00001{bottom:573.900022px;}
.y9e_c00001{bottom:574.200022px;}
.y236_c00001{bottom:574.425022px;}
.y12b_c00001{bottom:574.950022px;}
.y18c_c00001{bottom:575.325022px;}
.y1cd_c00001{bottom:577.425022px;}
.y153_c00001{bottom:577.800022px;}
.y389_c00001{bottom:580.725022px;}
.y202_c00001{bottom:581.400022px;}
.y261_c00001{bottom:581.625022px;}
.y175_c00001{bottom:582.525022px;}
.y31a_c00001{bottom:582.825022px;}
.y1aa_c00001{bottom:583.575022px;}
.y2d4_c00001{bottom:584.325022px;}
.y2a7_c00001{bottom:584.850022px;}
.y2c1_c00001{bottom:586.125022px;}
.y33d_c00001{bottom:586.425022px;}
.y13e_c00001{bottom:586.800022px;}
.y3af_c00001{bottom:587.925022px;}
.yc_c00001{bottom:588.600022px;}
.y235_c00001{bottom:589.725022px;}
.y227_c00001{bottom:590.025022px;}
.y32e_c00001{bottom:590.100022px;}
.y31_c00001{bottom:592.125022px;}
.y61_c00001{bottom:592.200022px;}
.y49_c00001{bottom:592.575022px;}
.y7d_c00001{bottom:592.950022px;}
.y11f_c00001{bottom:593.325022px;}
.y9d_c00001{bottom:594.000022px;}
.ydc_c00001{bottom:594.375022px;}
.y215_c00001{bottom:596.550022px;}
.y1cc_c00001{bottom:596.925022px;}
.y152_c00001{bottom:597.225022px;}
.y1a9_c00001{bottom:599.400022px;}
.y2d3_c00001{bottom:600.150022px;}
.y2a6_c00001{bottom:600.525022px;}
.y174_c00001{bottom:601.950022px;}
.y319_c00001{bottom:602.325022px;}
.y2c0_c00001{bottom:605.175022px;}
.y304_c00001{bottom:605.550022px;}
.y15e_c00001{bottom:605.925022px;}
.y13d_c00001{bottom:606.225022px;}
.y3ae_c00001{bottom:606.975022px;}
.yb_c00001{bottom:608.025022px;}
.y1ee_c00001{bottom:608.775022px;}
.y234_c00001{bottom:609.150022px;}
.yb3_c00001{bottom:610.950022px;}
.y30_c00001{bottom:611.625022px;}
.yfa_c00001{bottom:611.700022px;}
.y105_c00001{bottom:611.925022px;}
.y60_c00001{bottom:612.000022px;}
.y197_c00001{bottom:612.075022px;}
.y7c_c00001{bottom:612.375022px;}
.y11e_c00001{bottom:612.750022px;}
.y383_c00001{bottom:612.900022px;}
.y9c_c00001{bottom:613.425022px;}
.ydb_c00001{bottom:613.800022px;}
.y18b_c00001{bottom:614.025022px;}
.y12a_c00001{bottom:614.175022px;}
.y1a8_c00001{bottom:614.925022px;}
.y2a5_c00001{bottom:615.975022px;}
.y201_c00001{bottom:616.350022px;}
.y151_c00001{bottom:616.725022px;}
.y318_c00001{bottom:617.775022px;}
.y36d_c00001{bottom:619.950022px;}
.y192_c00001{bottom:620.625022px;}
.y303_c00001{bottom:621.000022px;}
.y173_c00001{bottom:621.375022px;}
.y3ad_c00001{bottom:622.800022px;}
.y28b_c00001{bottom:624.600022px;}
.y1ed_c00001{bottom:624.975022px;}
.y13c_c00001{bottom:625.725022px;}
.ya_c00001{bottom:627.150022px;}
.y27e_c00001{bottom:628.200022px;}
.y2f3_c00001{bottom:628.500022px;}
.y24a_c00001{bottom:628.575022px;}
.y260_c00001{bottom:628.800022px;}
.y2f_c00001{bottom:631.125022px;}
.y5f_c00001{bottom:631.425022px;}
.yb2_c00001{bottom:631.500022px;}
.y1cb_c00001{bottom:631.800022px;}
.y7b_c00001{bottom:632.175022px;}
.y37f_c00001{bottom:632.400022px;}
.y9b_c00001{bottom:632.925022px;}
.yda_c00001{bottom:633.225022px;}
.y18a_c00001{bottom:633.525022px;}
.y129_c00001{bottom:633.600022px;}
.y1a7_c00001{bottom:633.975022px;}
.y36c_c00001{bottom:635.025022px;}
.y2d2_c00001{bottom:635.400022px;}
.y150_c00001{bottom:636.150022px;}
.y317_c00001{bottom:637.200022px;}
.y1ec_c00001{bottom:640.425022px;}
.y172_c00001{bottom:640.800022px;}
.y3ac_c00001{bottom:642.225022px;}
.y226_c00001{bottom:644.025022px;}
.y249_c00001{bottom:644.250022px;}
.y25a_c00001{bottom:644.400022px;}
.y15d_c00001{bottom:644.775022px;}
.y13b_c00001{bottom:645.150022px;}
.y9_c00001{bottom:646.950022px;}
.y273_c00001{bottom:647.325022px;}
.y1ca_c00001{bottom:647.625022px;}
.y37e_c00001{bottom:647.700022px;}
.y1a6_c00001{bottom:650.175022px;}
.y48_c00001{bottom:650.550022px;}
.y2e_c00001{bottom:650.925022px;}
.y7a_c00001{bottom:651.600022px;}
.y9a_c00001{bottom:652.350022px;}
.yd9_c00001{bottom:652.725022px;}
.y189_c00001{bottom:653.025022px;}
.y14f_c00001{bottom:655.575022px;}
.y2bf_c00001{bottom:655.950022px;}
.y32d_c00001{bottom:656.325022px;}
.y3ab_c00001{bottom:658.125022px;}
.y233_c00001{bottom:659.550022px;}
.y2a2_c00001{bottom:659.700022px;}
.y171_c00001{bottom:659.925022px;}
.y328_c00001{bottom:662.775022px;}
.y1c9_c00001{bottom:663.150022px;}
.y214_c00001{bottom:663.525022px;}
.y13a_c00001{bottom:664.200022px;}
.y1a5_c00001{bottom:665.625022px;}
.y8_c00001{bottom:666.375022px;}
.y2d1_c00001{bottom:666.750022px;}
.y355_c00001{bottom:667.275022px;}
.y47_c00001{bottom:669.975022px;}
.y2d_c00001{bottom:670.350022px;}
.y36b_c00001{bottom:670.875022px;}
.y79_c00001{bottom:671.025022px;}
.y11d_c00001{bottom:671.100022px;}
.yd8_c00001{bottom:671.850022px;}
.y316_c00001{bottom:672.150022px;}
.y128_c00001{bottom:672.525022px;}
.y14e_c00001{bottom:675.000022px;}
.y232_c00001{bottom:675.375022px;}
.y1eb_c00001{bottom:675.750022px;}
.y3aa_c00001{bottom:677.550022px;}
.y1c8_c00001{bottom:678.975022px;}
.y170_c00001{bottom:679.350022px;}
.y388_c00001{bottom:682.200022px;}
.y30a_c00001{bottom:682.575022px;}
.y354_c00001{bottom:683.100022px;}
.y15c_c00001{bottom:683.325022px;}
.y139_c00001{bottom:683.625022px;}
.y1a4_c00001{bottom:684.750022px;}
.y2d0_c00001{bottom:685.800022px;}
.y36a_c00001{bottom:686.175022px;}
.y315_c00001{bottom:687.975022px;}
.yf6_c00001{bottom:689.325022px;}
.yc4_c00001{bottom:689.400022px;}
.y2c_c00001{bottom:689.775022px;}
.y78_c00001{bottom:690.525022px;}
.y99_c00001{bottom:690.825022px;}
.y2be_c00001{bottom:691.200022px;}
.yd7_c00001{bottom:691.275022px;}
.y1ea_c00001{bottom:691.575022px;}
.y127_c00001{bottom:691.950022px;}
.y3a9_c00001{bottom:692.625022px;}
.y14d_c00001{bottom:694.425022px;}
.y1c7_c00001{bottom:694.800022px;}
.y248_c00001{bottom:695.025022px;}
.y347_c00001{bottom:695.100022px;}
.y225_c00001{bottom:695.175022px;}
.y272_c00001{bottom:698.025022px;}
.y2a4_c00001{bottom:698.325022px;}
.y200_c00001{bottom:698.400022px;}
.y16f_c00001{bottom:698.775022px;}
.y1a3_c00001{bottom:700.950022px;}
.y2cf_c00001{bottom:701.625022px;}
.y34c_c00001{bottom:707.025022px;}
.y7_c00001{bottom:707.400022px;}
.y2b_c00001{bottom:708.825022px;}
.yf9_c00001{bottom:709.125022px;}
.y5e_c00001{bottom:709.200022px;}
.y137_c00001{bottom:709.275022px;}
.y77_c00001{bottom:709.575022px;}
.y98_c00001{bottom:709.950022px;}
.y1e9_c00001{bottom:710.325022px;}
.y339_c00001{bottom:710.475022px;}
.y27d_c00001{bottom:710.625022px;}
.yd6_c00001{bottom:710.700022px;}
.y35b_c00001{bottom:710.850022px;}
.y188_c00001{bottom:711.000022px;}
.y126_c00001{bottom:711.375022px;}
.y3a8_c00001{bottom:712.125022px;}
.y14c_c00001{bottom:713.550022px;}
.y1c6_c00001{bottom:713.925022px;}
.y1ff_c00001{bottom:714.225022px;}
.y35c_c00001{bottom:714.300022px;}
.y353_c00001{bottom:714.450022px;}
.y1a2_c00001{bottom:716.775022px;}
.y2ce_c00001{bottom:717.525022px;}
.y16e_c00001{bottom:717.825022px;}
.y138_c00001{bottom:718.200022px;}
.y387_c00001{bottom:721.125022px;}
.y314_c00001{bottom:722.550022px;}
.y1e8_c00001{bottom:726.150022px;}
.y231_c00001{bottom:726.525022px;}
.y91_c00001{bottom:728.325022px;}
.y2a_c00001{bottom:728.625022px;}
.yb1_c00001{bottom:728.700022px;}
.y76_c00001{bottom:729.000022px;}
.y97_c00001{bottom:729.750022px;}
.y2ca_c00001{bottom:729.900022px;}
.yd5_c00001{bottom:730.125022px;}
.y125_c00001{bottom:730.800022px;}
.y187_c00001{bottom:730.875022px;}
.y3a7_c00001{bottom:731.175022px;}
.y14b_c00001{bottom:732.975022px;}
.y369_c00001{bottom:733.350022px;}
.y2f9_c00001{bottom:733.725022px;}
.y386_c00001{bottom:736.950022px;}
.y2cd_c00001{bottom:737.100022px;}
.y16d_c00001{bottom:737.325022px;}
.y2bd_c00001{bottom:741.975022px;}
.y34b_c00001{bottom:742.350022px;}
.y1e7_c00001{bottom:745.575022px;}
.y1c5_c00001{bottom:745.950022px;}
.y29_c00001{bottom:747.750022px;}
.y75_c00001{bottom:748.125022px;}
.y1fe_c00001{bottom:748.800022px;}
.y2f8_c00001{bottom:749.175022px;}
.yd4_c00001{bottom:749.550022px;}
.y186_c00001{bottom:750.300022px;}
.y3a6_c00001{bottom:750.600022px;}
.y1a1_c00001{bottom:752.400022px;}
.y14a_c00001{bottom:752.775022px;}
.y3cc_c00001{bottom:754.575022px;}
.y313_c00001{bottom:758.175022px;}
.y1e6_c00001{bottom:761.025022px;}
.y247_c00001{bottom:761.250022px;}
.y213_c00001{bottom:761.400022px;}
.y33b_c00001{bottom:761.625022px;}
.y27c_c00001{bottom:764.625022px;}
.y342_c00001{bottom:764.700022px;}
.y271_c00001{bottom:764.925022px;}
.y1c4_c00001{bottom:765.000022px;}
.y28_c00001{bottom:767.175022px;}
.y100_c00001{bottom:767.475022px;}
.y6_c00001{bottom:767.550022px;}
.y74_c00001{bottom:767.925022px;}
.y2cc_c00001{bottom:768.225022px;}
.yd3_c00001{bottom:768.600022px;}
.y124_c00001{bottom:768.975022px;}
.y185_c00001{bottom:769.725022px;}
.y3a5_c00001{bottom:770.025022px;}
.y149_c00001{bottom:772.200022px;}
.y16c_c00001{bottom:773.325022px;}
.y1e5_c00001{bottom:776.925022px;}
.y2a1_c00001{bottom:777.225022px;}
.y1c3_c00001{bottom:780.525022px;}
.y1fd_c00001{bottom:780.825022px;}
.y259_c00001{bottom:781.050022px;}
.y352_c00001{bottom:784.125022px;}
.y2cb_c00001{bottom:784.425022px;}
.y3cb_c00001{bottom:785.550022px;}
.y46_c00001{bottom:786.225022px;}
.y5_c00001{bottom:786.300022px;}
.y162_c00001{bottom:786.525022px;}
.y27_c00001{bottom:786.600022px;}
.y73_c00001{bottom:787.350022px;}
.yd2_c00001{bottom:788.400022px;}
.y184_c00001{bottom:789.150022px;}
.y148_c00001{bottom:791.625022px;}
.y312_c00001{bottom:792.750022px;}
.y37b_c00001{bottom:793.125022px;}
.y1e4_c00001{bottom:796.350022px;}
.y1c2_c00001{bottom:796.725022px;}
.y1fc_c00001{bottom:799.575022px;}
.y2f7_c00001{bottom:799.950022px;}
.y4_c00001{bottom:805.725022px;}
.y45_c00001{bottom:806.025022px;}
.y161_c00001{bottom:806.100022px;}
.y72_c00001{bottom:806.400022px;}
.y385_c00001{bottom:806.775022px;}
.yd1_c00001{bottom:807.825022px;}
.y183_c00001{bottom:808.200022px;}
.y3a4_c00001{bottom:808.575022px;}
.y147_c00001{bottom:810.750022px;}
.y1e3_c00001{bottom:811.800022px;}
.y270_c00001{bottom:812.175022px;}
.y34a_c00001{bottom:815.325022px;}
.y1c1_c00001{bottom:815.400022px;}
.y212_c00001{bottom:815.775022px;}
.y258_c00001{bottom:816.000022px;}
.y96_c00001{bottom:820.125022px;}
.y3ca_c00001{bottom:822.225022px;}
.y3_c00001{bottom:825.150022px;}
.y26_c00001{bottom:825.525022px;}
.y302_c00001{bottom:827.625022px;}
.y3a3_c00001{bottom:828.000022px;}
.y399_c00001{bottom:830.925022px;}
.y1c0_c00001{bottom:831.225022px;}
.y2ff_c00001{bottom:831.450022px;}
.y1fb_c00001{bottom:831.600022px;}
.y309_c00001{bottom:831.825022px;}
.y95_c00001{bottom:842.775022px;}
.y3c9_c00001{bottom:843.825022px;}
.y2_c00001{bottom:844.575022px;}
.y90_c00001{bottom:844.950022px;}
.y146_c00001{bottom:845.325022px;}
.y1bf_c00001{bottom:847.125022px;}
.y341_c00001{bottom:847.275022px;}
.y211_c00001{bottom:847.425022px;}
.y257_c00001{bottom:847.650022px;}
.y392_c00001{bottom:886.350022px;}
.y34_c00001{bottom:886.725022px;}
.y1_c00001{bottom:886.875022px;}
.y1e2_c00001{bottom:887.025022px;}
.h2_c00001{height:50.028809px;}
.h4_c00001{height:50.053711px;}
.h6_c00001{height:50.353711px;}
.h3_c00001{height:58.886719px;}
.h5_c00001{height:64.775391px;}
.h1_c00001{height:957.750000px;}
.h0_c00001{height:957.975000px;}
.w2_c00001{width:641.850030px;}
.w3_c00001{width:642.000000px;}
.w1_c00001{width:643.500000px;}
.w0_c00001{width:643.650000px;}
.x0_c00001{left:0.000000px;}
.x5_c00001{left:80.250000px;}
.x4_c00001{left:81.375000px;}
.x7_c00001{left:87.450000px;}
.x12_c00001{left:89.625000px;}
.x1_c00001{left:90.750000px;}
.xd_c00001{left:91.800000px;}
.x17_c00001{left:93.975000px;}
.x15_c00001{left:95.025000px;}
.x14_c00001{left:96.150000px;}
.x3_c00001{left:97.200000px;}
.xc_c00001{left:99.375000px;}
.x18_c00001{left:104.025000px;}
.xe_c00001{left:105.150000px;}
.xb_c00001{left:106.200000px;}
.x2_c00001{left:107.250000px;}
.x10_c00001{left:119.850000px;}
.xa_c00001{left:121.350000px;}
.x11_c00001{left:130.350000px;}
.x9_c00001{left:131.400000px;}
.xf_c00001{left:144.375000px;}
.x6_c00001{left:169.950000px;}
.x13_c00001{left:255.975000px;}
.x1a_c00001{left:419.775000px;}
.x19_c00001{left:457.200000px;}
.x16_c00001{left:494.625000px;}
.x8_c00001{left:531.375000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls1_c00001{letter-spacing:0.000000pt;}
.ls5_c00001{letter-spacing:0.799997pt;}
.ls4_c00001{letter-spacing:1.066648pt;}
.lsc_c00001{letter-spacing:1.333344pt;}
.lsd_c00001{letter-spacing:1.599995pt;}
.lsb_c00001{letter-spacing:2.533333pt;}
.ls8_c00001{letter-spacing:9.866667pt;}
.ls9_c00001{letter-spacing:10.933333pt;}
.ls3_c00001{letter-spacing:11.200000pt;}
.ls6_c00001{letter-spacing:12.266667pt;}
.ls0_c00001{letter-spacing:12.533333pt;}
.lsa_c00001{letter-spacing:12.933333pt;}
.ls2_c00001{letter-spacing:13.600000pt;}
.ls7_c00001{letter-spacing:13.866667pt;}
.ws6_c00001{word-spacing:-22.666667pt;}
.ws3_c00001{word-spacing:-14.666667pt;}
.ws0_c00001{word-spacing:-13.333333pt;}
.ws8_c00001{word-spacing:-12.933328pt;}
.ws7_c00001{word-spacing:-12.666677pt;}
.ws4_c00001{word-spacing:-12.399981pt;}
.ws5_c00001{word-spacing:-12.133331pt;}
.ws2_c00001{word-spacing:-11.333333pt;}
.ws1_c00001{word-spacing:0.000000pt;}
._26_c00001{margin-left:-25.464296pt;}
._22_c00001{margin-left:-23.378843pt;}
._20_c00001{margin-left:-13.434043pt;}
._21_c00001{margin-left:-12.077395pt;}
._15_c00001{margin-left:-11.010685pt;}
._10_c00001{margin-left:-10.090565pt;}
._d_c00001{margin-left:-9.066667pt;}
._c_c00001{margin-left:-8.034600pt;}
._9_c00001{margin-left:-6.824056pt;}
._1b_c00001{margin-left:-5.757347pt;}
._1c_c00001{margin-left:-3.992163pt;}
._1_c00001{margin-left:-2.933339pt;}
._0_c00001{margin-left:-1.565315pt;}
._2_c00001{width:1.634675pt;}
._3_c00001{width:2.951971pt;}
._e_c00001{width:4.021312pt;}
._6_c00001{width:5.029275pt;}
._f_c00001{width:5.970904pt;}
._5_c00001{width:6.898648pt;}
._4_c00001{width:8.055976pt;}
._13_c00001{width:9.144099pt;}
._7_c00001{width:10.519896pt;}
._12_c00001{width:12.143984pt;}
._1d_c00001{width:13.082685pt;}
._18_c00001{width:14.223989pt;}
._11_c00001{width:15.157232pt;}
._b_c00001{width:16.359981pt;}
._8_c00001{width:17.298648pt;}
._a_c00001{width:18.666667pt;}
._14_c00001{width:20.375944pt;}
._1a_c00001{width:21.397333pt;}
._16_c00001{width:22.730677pt;}
._19_c00001{width:24.527917pt;}
._17_c00001{width:25.861261pt;}
._1e_c00001{width:26.813293pt;}
._23_c00001{width:27.818677pt;}
._1f_c00001{width:29.565061pt;}
._24_c00001{width:30.882635pt;}
._25_c00001{width:32.550085pt;}
._2a_c00001{width:34.155731pt;}
._27_c00001{width:44.765261pt;}
._29_c00001{width:48.869379pt;}
._28_c00001{width:50.013320pt;}
.fs0_c00001{font-size:45.333333pt;}
.fs1_c00001{font-size:53.333333pt;}
.fs2_c00001{font-size:58.666667pt;}
.y0_c00001{bottom:0.000000pt;}
.y25_c00001{bottom:57.266686pt;}
.y5d_c00001{bottom:57.600020pt;}
.y24_c00001{bottom:97.933353pt;}
.y5c_c00001{bottom:98.266686pt;}
.y37a_c00001{bottom:99.533353pt;}
.y2a3_c00001{bottom:100.800020pt;}
.y32c_c00001{bottom:101.133353pt;}
.y3be_c00001{bottom:104.000020pt;}
.y26f_c00001{bottom:104.333353pt;}
.y29a_c00001{bottom:105.266686pt;}
.y28a_c00001{bottom:106.866686pt;}
.y230_c00001{bottom:107.200020pt;}
.y398_c00001{bottom:108.466686pt;}
.y2c9_c00001{bottom:108.800020pt;}
.y1be_c00001{bottom:109.133353pt;}
.y349_c00001{bottom:110.066686pt;}
.y384_c00001{bottom:110.400020pt;}
.y23_c00001{bottom:111.400020pt;}
.y71_c00001{bottom:111.666686pt;}
.y379_c00001{bottom:113.266686pt;}
.y27b_c00001{bottom:114.866686pt;}
.y301_c00001{bottom:115.200020pt;}
.y337_c00001{bottom:117.800020pt;}
.y26e_c00001{bottom:118.066686pt;}
.y299_c00001{bottom:119.400020pt;}
.y1e1_c00001{bottom:121.000020pt;}
.y25f_c00001{bottom:121.266686pt;}
.y2f2_c00001{bottom:121.333353pt;}
.y397_c00001{bottom:122.600020pt;}
.y2c8_c00001{bottom:122.866686pt;}
.y3c8_c00001{bottom:123.200020pt;}
.y1bd_c00001{bottom:123.533353pt;}
.y2bc_c00001{bottom:124.200020pt;}
.y351_c00001{bottom:124.466686pt;}
.y22_c00001{bottom:125.133353pt;}
.y182_c00001{bottom:125.400020pt;}
.yc3_c00001{bottom:125.466686pt;}
.y340_c00001{bottom:125.800020pt;}
.y2e3_c00001{bottom:127.400020pt;}
.y27a_c00001{bottom:128.666686pt;}
.y32b_c00001{bottom:129.000020pt;}
.y246_c00001{bottom:131.866686pt;}
.y256_c00001{bottom:132.200020pt;}
.y391_c00001{bottom:134.733353pt;}
.y1e0_c00001{bottom:135.066686pt;}
.y210_c00001{bottom:135.400020pt;}
.y298_c00001{bottom:136.333353pt;}
.y396_c00001{bottom:136.666686pt;}
.y289_c00001{bottom:138.266686pt;}
.y21_c00001{bottom:138.600020pt;}
.y70_c00001{bottom:138.866686pt;}
.y331_c00001{bottom:139.533353pt;}
.y2c7_c00001{bottom:139.866686pt;}
.y1bc_c00001{bottom:140.466686pt;}
.y2e2_c00001{bottom:141.133353pt;}
.y2bb_c00001{bottom:141.466686pt;}
.y224_c00001{bottom:142.733353pt;}
.y33c_c00001{bottom:143.066686pt;}
.y3bc_c00001{bottom:144.333353pt;}
.y378_c00001{bottom:144.666686pt;}
.y245_c00001{bottom:145.933353pt;}
.y300_c00001{bottom:146.266686pt;}
.y390_c00001{bottom:148.800020pt;}
.y1df_c00001{bottom:149.133353pt;}
.y22f_c00001{bottom:149.466686pt;}
.y39a_c00001{bottom:150.733353pt;}
.y2eb_c00001{bottom:152.000020pt;}
.y44_c00001{bottom:152.333353pt;}
.y94_c00001{bottom:152.400020pt;}
.y123_c00001{bottom:152.533353pt;}
.y104_c00001{bottom:152.600020pt;}
.y6f_c00001{bottom:152.666686pt;}
.y297_c00001{bottom:153.600020pt;}
.y368_c00001{bottom:153.933353pt;}
.y1bb_c00001{bottom:154.266686pt;}
.y2ba_c00001{bottom:155.200020pt;}
.y350_c00001{bottom:155.533353pt;}
.y348_c00001{bottom:155.800020pt;}
.y223_c00001{bottom:156.800020pt;}
.y338_c00001{bottom:157.133353pt;}
.y3bb_c00001{bottom:158.066686pt;}
.y377_c00001{bottom:158.400020pt;}
.y2e1_c00001{bottom:158.733353pt;}
.y255_c00001{bottom:160.000020pt;}
.y279_c00001{bottom:160.333353pt;}
.y308_c00001{bottom:160.533353pt;}
.y3c7_c00001{bottom:161.933353pt;}
.y244_c00001{bottom:162.866686pt;}
.y20f_c00001{bottom:163.200020pt;}
.y43_c00001{bottom:165.800020pt;}
.y93_c00001{bottom:166.066686pt;}
.y1de_c00001{bottom:166.400020pt;}
.y395_c00001{bottom:167.666686pt;}
.y367_c00001{bottom:168.000020pt;}
.y3a2_c00001{bottom:168.200020pt;}
.y2b9_c00001{bottom:169.266686pt;}
.y345_c00001{bottom:169.600020pt;}
.y291_c00001{bottom:170.866686pt;}
.y222_c00001{bottom:171.200020pt;}
.y1ba_c00001{bottom:171.533353pt;}
.y2e0_c00001{bottom:172.466686pt;}
.y254_c00001{bottom:173.800020pt;}
.y3bd_c00001{bottom:173.933353pt;}
.y2a0_c00001{bottom:174.066686pt;}
.y20e_c00001{bottom:177.000020pt;}
.y22e_c00001{bottom:177.266686pt;}
.y20_c00001{bottom:177.600020pt;}
.yec_c00001{bottom:179.466686pt;}
.y42_c00001{bottom:179.533353pt;}
.y92_c00001{bottom:179.733353pt;}
.yd0_c00001{bottom:179.866686pt;}
.y1dd_c00001{bottom:180.200020pt;}
.y1fa_c00001{bottom:180.466686pt;}
.y381_c00001{bottom:180.533353pt;}
.y3c6_c00001{bottom:181.133353pt;}
.y5b_c00001{bottom:181.466686pt;}
.y366_c00001{bottom:181.800020pt;}
.y288_c00001{bottom:183.400020pt;}
.y2ea_c00001{bottom:183.666686pt;}
.y334_c00001{bottom:184.666686pt;}
.y3a1_c00001{bottom:185.000020pt;}
.y1b9_c00001{bottom:185.600020pt;}
.y2b8_c00001{bottom:186.266686pt;}
.y290_c00001{bottom:187.866686pt;}
.y221_c00001{bottom:188.200020pt;}
.y33a_c00001{bottom:188.333353pt;}
.y2df_c00001{bottom:189.466686pt;}
.y3ba_c00001{bottom:189.800020pt;}
.y253_c00001{bottom:191.066686pt;}
.y29f_c00001{bottom:191.400020pt;}
.yc2_c00001{bottom:193.000020pt;}
.ye4_c00001{bottom:193.266686pt;}
.y38f_c00001{bottom:193.933353pt;}
.y1f9_c00001{bottom:194.266686pt;}
.y20d_c00001{bottom:194.600020pt;}
.y1f_c00001{bottom:195.200020pt;}
.y1dc_c00001{bottom:197.133353pt;}
.y287_c00001{bottom:197.466686pt;}
.y5a_c00001{bottom:198.400020pt;}
.y394_c00001{bottom:198.733353pt;}
.y8f_c00001{bottom:199.066686pt;}
.yb0_c00001{bottom:199.666686pt;}
.y2b7_c00001{bottom:200.333353pt;}
.y2e9_c00001{bottom:200.666686pt;}
.y220_c00001{bottom:201.933353pt;}
.y33f_c00001{bottom:202.266686pt;}
.y19f_c00001{bottom:202.600020pt;}
.y1b8_c00001{bottom:202.866686pt;}
.y2fe_c00001{bottom:203.533353pt;}
.y2de_c00001{bottom:203.866686pt;}
.y278_c00001{bottom:205.133353pt;}
.y252_c00001{bottom:205.466686pt;}
.yc1_c00001{bottom:206.733353pt;}
.ycf_c00001{bottom:207.066686pt;}
.y20c_c00001{bottom:208.000020pt;}
.y32a_c00001{bottom:208.066686pt;}
.y382_c00001{bottom:208.333353pt;}
.y1f8_c00001{bottom:211.133353pt;}
.y1db_c00001{bottom:211.200020pt;}
.y26d_c00001{bottom:211.533353pt;}
.y1e_c00001{bottom:212.466686pt;}
.y365_c00001{bottom:212.800020pt;}
.y3a0_c00001{bottom:213.133353pt;}
.y286_c00001{bottom:214.400020pt;}
.y34f_c00001{bottom:214.733353pt;}
.y41_c00001{bottom:215.400020pt;}
.y59_c00001{bottom:216.000020pt;}
.y8e_c00001{bottom:216.333353pt;}
.yaf_c00001{bottom:217.000020pt;}
.y376_c00001{bottom:217.533353pt;}
.y114_c00001{bottom:217.600020pt;}
.y2b6_c00001{bottom:217.933353pt;}
.y21f_c00001{bottom:218.866686pt;}
.y251_c00001{bottom:219.200020pt;}
.y19e_c00001{bottom:219.866686pt;}
.yeb_c00001{bottom:220.200020pt;}
.yce_c00001{bottom:220.466686pt;}
.y243_c00001{bottom:222.066686pt;}
.y329_c00001{bottom:222.133353pt;}
.y22d_c00001{bottom:222.400020pt;}
.y38e_c00001{bottom:225.000020pt;}
.y1da_c00001{bottom:225.266686pt;}
.y2ee_c00001{bottom:225.333353pt;}
.y2f6_c00001{bottom:225.600020pt;}
.y26c_c00001{bottom:228.466686pt;}
.y357_c00001{bottom:228.533353pt;}
.y30d_c00001{bottom:228.800020pt;}
.y34e_c00001{bottom:228.866686pt;}
.y1d_c00001{bottom:229.466686pt;}
.y364_c00001{bottom:229.800020pt;}
.y39f_c00001{bottom:230.066686pt;}
.y1b7_c00001{bottom:231.066686pt;}
.y2b5_c00001{bottom:231.666686pt;}
.y2fd_c00001{bottom:232.000020pt;}
.yff_c00001{bottom:232.333353pt;}
.y40_c00001{bottom:232.666686pt;}
.y6e_c00001{bottom:233.000020pt;}
.y58_c00001{bottom:233.266686pt;}
.y136_c00001{bottom:233.400020pt;}
.y8d_c00001{bottom:233.600020pt;}
.y1a0_c00001{bottom:233.866686pt;}
.ycd_c00001{bottom:233.933353pt;}
.yae_c00001{bottom:234.266686pt;}
.y3b9_c00001{bottom:234.600020pt;}
.y113_c00001{bottom:235.200020pt;}
.y250_c00001{bottom:236.200020pt;}
.y242_c00001{bottom:236.466686pt;}
.y19d_c00001{bottom:237.133353pt;}
.y3c5_c00001{bottom:239.066686pt;}
.y1d9_c00001{bottom:239.400020pt;}
.y2f5_c00001{bottom:239.533353pt;}
.y29e_c00001{bottom:239.666686pt;}
.y25e_c00001{bottom:242.266686pt;}
.y26b_c00001{bottom:242.600020pt;}
.y363_c00001{bottom:243.866686pt;}
.y39e_c00001{bottom:244.200020pt;}
.yc0_c00001{bottom:244.800020pt;}
.y285_c00001{bottom:245.466686pt;}
.y2e8_c00001{bottom:245.800020pt;}
.y1c_c00001{bottom:247.066686pt;}
.ycc_c00001{bottom:247.400020pt;}
.yea_c00001{bottom:247.666686pt;}
.y1b6_c00001{bottom:248.000020pt;}
.y3b8_c00001{bottom:248.333353pt;}
.y2dd_c00001{bottom:248.666686pt;}
.y3f_c00001{bottom:249.933353pt;}
.y103_c00001{bottom:250.266686pt;}
.y6d_c00001{bottom:250.533353pt;}
.y57_c00001{bottom:250.600020pt;}
.yad_c00001{bottom:251.533353pt;}
.y112_c00001{bottom:252.200020pt;}
.y1f7_c00001{bottom:253.133353pt;}
.y2ed_c00001{bottom:253.466686pt;}
.y19c_c00001{bottom:254.066686pt;}
.y1d8_c00001{bottom:256.333353pt;}
.y2f1_c00001{bottom:256.666686pt;}
.y3c4_c00001{bottom:258.600020pt;}
.y284_c00001{bottom:259.533353pt;}
.y26a_c00001{bottom:259.866686pt;}
.yf8_c00001{bottom:261.066686pt;}
.ycb_c00001{bottom:261.133353pt;}
.ye3_c00001{bottom:261.400020pt;}
.yf3_c00001{bottom:261.466686pt;}
.y16b_c00001{bottom:261.800020pt;}
.ybf_c00001{bottom:262.066686pt;}
.y3b7_c00001{bottom:262.400020pt;}
.y2dc_c00001{bottom:262.733353pt;}
.y375_c00001{bottom:263.066686pt;}
.y28f_c00001{bottom:264.000020pt;}
.y1b_c00001{bottom:264.333353pt;}
.y1b5_c00001{bottom:265.266686pt;}
.yfe_c00001{bottom:266.866686pt;}
.y296_c00001{bottom:267.133353pt;}
.y3e_c00001{bottom:267.200020pt;}
.y22c_c00001{bottom:267.533353pt;}
.y135_c00001{bottom:267.800020pt;}
.y56_c00001{bottom:267.866686pt;}
.y8c_c00001{bottom:268.200020pt;}
.yac_c00001{bottom:268.466686pt;}
.y111_c00001{bottom:269.466686pt;}
.y191_c00001{bottom:269.800020pt;}
.y38d_c00001{bottom:270.066686pt;}
.y1d7_c00001{bottom:270.400020pt;}
.y1f6_c00001{bottom:270.733353pt;}
.y19b_c00001{bottom:271.400020pt;}
.y283_c00001{bottom:273.600020pt;}
.y2b4_c00001{bottom:273.933353pt;}
.y269_c00001{bottom:274.133353pt;}
.yca_c00001{bottom:274.600020pt;}
.ye2_c00001{bottom:274.866686pt;}
.y39d_c00001{bottom:275.066686pt;}
.y362_c00001{bottom:275.200020pt;}
.y374_c00001{bottom:276.800020pt;}
.y2db_c00001{bottom:277.133353pt;}
.y3c3_c00001{bottom:277.800020pt;}
.y330_c00001{bottom:278.066686pt;}
.y21e_c00001{bottom:278.400020pt;}
.y16a_c00001{bottom:279.066686pt;}
.ybe_c00001{bottom:279.400020pt;}
.y2fc_c00001{bottom:279.666686pt;}
.y11c_c00001{bottom:279.733353pt;}
.y3b6_c00001{bottom:280.000020pt;}
.y1a_c00001{bottom:281.266686pt;}
.y241_c00001{bottom:281.600020pt;}
.y3d_c00001{bottom:283.866686pt;}
.yfd_c00001{bottom:284.200020pt;}
.y102_c00001{bottom:284.466686pt;}
.y6c_c00001{bottom:284.533353pt;}
.y55_c00001{bottom:284.800020pt;}
.y8b_c00001{bottom:285.466686pt;}
.yab_c00001{bottom:286.133353pt;}
.y110_c00001{bottom:287.066686pt;}
.y1f5_c00001{bottom:287.666686pt;}
.y30c_c00001{bottom:287.866686pt;}
.y25d_c00001{bottom:288.000020pt;}
.yc9_c00001{bottom:288.333353pt;}
.y115_c00001{bottom:288.600020pt;}
.yf7_c00001{bottom:288.666686pt;}
.y19a_c00001{bottom:289.000020pt;}
.y2b3_c00001{bottom:290.600020pt;}
.y282_c00001{bottom:290.866686pt;}
.y21d_c00001{bottom:292.200020pt;}
.y327_c00001{bottom:292.466686pt;}
.y3b5_c00001{bottom:293.466686pt;}
.y373_c00001{bottom:294.066686pt;}
.y2fb_c00001{bottom:294.266686pt;}
.y240_c00001{bottom:295.400020pt;}
.y277_c00001{bottom:295.666686pt;}
.y323_c00001{bottom:295.866686pt;}
.y169_c00001{bottom:296.333353pt;}
.ybd_c00001{bottom:296.666686pt;}
.y11b_c00001{bottom:297.000020pt;}
.y3c2_c00001{bottom:297.266686pt;}
.y24f_c00001{bottom:298.266686pt;}
.y1d6_c00001{bottom:298.600020pt;}
.y19_c00001{bottom:298.866686pt;}
.y3c_c00001{bottom:301.466686pt;}
.y6b_c00001{bottom:301.800020pt;}
.y1f4_c00001{bottom:301.933353pt;}
.y54_c00001{bottom:302.066686pt;}
.y8a_c00001{bottom:302.733353pt;}
.yaa_c00001{bottom:303.400020pt;}
.y10f_c00001{bottom:303.666686pt;}
.y190_c00001{bottom:304.000020pt;}
.y2b2_c00001{bottom:304.666686pt;}
.y268_c00001{bottom:305.000020pt;}
.y199_c00001{bottom:306.266686pt;}
.y2da_c00001{bottom:307.866686pt;}
.y2fa_c00001{bottom:308.200020pt;}
.y322_c00001{bottom:309.133353pt;}
.y21c_c00001{bottom:309.466686pt;}
.y1b4_c00001{bottom:310.133353pt;}
.y181_c00001{bottom:310.400020pt;}
.y3b4_c00001{bottom:310.733353pt;}
.y23f_c00001{bottom:312.333353pt;}
.y22b_c00001{bottom:312.666686pt;}
.y168_c00001{bottom:313.600020pt;}
.ybc_c00001{bottom:313.933353pt;}
.y11a_c00001{bottom:314.266686pt;}
.yc8_c00001{bottom:315.533353pt;}
.y336_c00001{bottom:315.800020pt;}
.y18_c00001{bottom:315.866686pt;}
.y3c1_c00001{bottom:316.466686pt;}
.y3b_c00001{bottom:318.400020pt;}
.y307_c00001{bottom:318.733353pt;}
.y6a_c00001{bottom:319.066686pt;}
.y53_c00001{bottom:319.333353pt;}
.y101_c00001{bottom:319.400020pt;}
.y89_c00001{bottom:319.666686pt;}
.ya9_c00001{bottom:320.666686pt;}
.y10e_c00001{bottom:321.000020pt;}
.y134_c00001{bottom:321.266686pt;}
.y2e7_c00001{bottom:321.933353pt;}
.y2d9_c00001{bottom:322.400020pt;}
.y21b_c00001{bottom:323.200020pt;}
.y326_c00001{bottom:323.533353pt;}
.y1b3_c00001{bottom:324.200020pt;}
.y372_c00001{bottom:324.800020pt;}
.y24e_c00001{bottom:326.400020pt;}
.y23e_c00001{bottom:326.733353pt;}
.y180_c00001{bottom:327.400020pt;}
.yc7_c00001{bottom:329.000020pt;}
.yf2_c00001{bottom:329.266686pt;}
.y1d5_c00001{bottom:329.600020pt;}
.y29d_c00001{bottom:329.933353pt;}
.y380_c00001{bottom:330.133353pt;}
.y167_c00001{bottom:330.600020pt;}
.ybb_c00001{bottom:331.200020pt;}
.y119_c00001{bottom:331.533353pt;}
.y20b_c00001{bottom:332.800020pt;}
.y17_c00001{bottom:333.133353pt;}
.y3a_c00001{bottom:335.666686pt;}
.y2b1_c00001{bottom:336.000020pt;}
.y52_c00001{bottom:336.333353pt;}
.y69_c00001{bottom:336.666686pt;}
.y88_c00001{bottom:337.266686pt;}
.y333_c00001{bottom:337.600020pt;}
.ya8_c00001{bottom:337.933353pt;}
.y133_c00001{bottom:338.266686pt;}
.y10d_c00001{bottom:338.600020pt;}
.y371_c00001{bottom:338.866686pt;}
.y198_c00001{bottom:339.200020pt;}
.y23d_c00001{bottom:340.466686pt;}
.y21a_c00001{bottom:340.800020pt;}
.yc6_c00001{bottom:342.733353pt;}
.yf1_c00001{bottom:343.066686pt;}
.y22a_c00001{bottom:343.666686pt;}
.y1d4_c00001{bottom:344.000020pt;}
.y335_c00001{bottom:344.066686pt;}
.y35a_c00001{bottom:344.200020pt;}
.y17f_c00001{bottom:345.000020pt;}
.y1f3_c00001{bottom:346.600020pt;}
.y2f0_c00001{bottom:346.866686pt;}
.y166_c00001{bottom:347.866686pt;}
.yba_c00001{bottom:348.466686pt;}
.y118_c00001{bottom:348.800020pt;}
.y358_c00001{bottom:349.466686pt;}
.y2e6_c00001{bottom:349.800020pt;}
.y267_c00001{bottom:350.066686pt;}
.y16_c00001{bottom:350.733353pt;}
.y321_c00001{bottom:351.400020pt;}
.y361_c00001{bottom:351.666686pt;}
.y1b2_c00001{bottom:352.333353pt;}
.y370_c00001{bottom:353.000020pt;}
.y39_c00001{bottom:353.266686pt;}
.ye9_c00001{bottom:353.533353pt;}
.y68_c00001{bottom:353.600020pt;}
.y51_c00001{bottom:353.933353pt;}
.y87_c00001{bottom:354.266686pt;}
.y311_c00001{bottom:354.600020pt;}
.ya7_c00001{bottom:355.200020pt;}
.y132_c00001{bottom:355.533353pt;}
.y10c_c00001{bottom:355.866686pt;}
.yc5_c00001{bottom:356.200020pt;}
.yf0_c00001{bottom:356.466686pt;}
.y23c_c00001{bottom:356.666686pt;}
.y24d_c00001{bottom:357.466686pt;}
.y295_c00001{bottom:357.800020pt;}
.y1d3_c00001{bottom:360.666686pt;}
.y229_c00001{bottom:361.000020pt;}
.y17e_c00001{bottom:362.266686pt;}
.y38c_c00001{bottom:363.533353pt;}
.y20a_c00001{bottom:363.866686pt;}
.y266_c00001{bottom:364.200020pt;}
.y39c_c00001{bottom:365.133353pt;}
.y165_c00001{bottom:365.466686pt;}
.yb9_c00001{bottom:365.800020pt;}
.y144_c00001{bottom:366.066686pt;}
.y196_c00001{bottom:366.133353pt;}
.y2d8_c00001{bottom:367.066686pt;}
.y2b0_c00001{bottom:367.400020pt;}
.y15_c00001{bottom:368.000020pt;}
.y310_c00001{bottom:368.333353pt;}
.y32f_c00001{bottom:368.666686pt;}
.ye1_c00001{bottom:369.266686pt;}
.yf5_c00001{bottom:369.933353pt;}
.y38_c00001{bottom:370.266686pt;}
.ye8_c00001{bottom:370.866686pt;}
.y50_c00001{bottom:371.200020pt;}
.y86_c00001{bottom:371.533353pt;}
.y276_c00001{bottom:371.866686pt;}
.ya6_c00001{bottom:372.466686pt;}
.y131_c00001{bottom:372.800020pt;}
.y10b_c00001{bottom:373.133353pt;}
.y3c0_c00001{bottom:374.400020pt;}
.y1d2_c00001{bottom:374.733353pt;}
.y1f2_c00001{bottom:375.066686pt;}
.y15b_c00001{bottom:375.400020pt;}
.y25c_c00001{bottom:377.933353pt;}
.y209_c00001{bottom:378.266686pt;}
.y320_c00001{bottom:379.200020pt;}
.y17d_c00001{bottom:379.533353pt;}
.y281_c00001{bottom:380.800020pt;}
.y164_c00001{bottom:382.733353pt;}
.yb8_c00001{bottom:383.066686pt;}
.yef_c00001{bottom:383.400020pt;}
.yf4_c00001{bottom:383.666686pt;}
.y2af_c00001{bottom:384.333353pt;}
.y14_c00001{bottom:385.000020pt;}
.y28e_c00001{bottom:385.600020pt;}
.y23b_c00001{bottom:385.933353pt;}
.ye0_c00001{bottom:386.266686pt;}
.y37_c00001{bottom:387.866686pt;}
.y67_c00001{bottom:388.200020pt;}
.y4f_c00001{bottom:388.466686pt;}
.y145_c00001{bottom:388.533353pt;}
.y325_c00001{bottom:388.733353pt;}
.y294_c00001{bottom:388.800020pt;}
.y2ec_c00001{bottom:389.000020pt;}
.y85_c00001{bottom:389.133353pt;}
.ya5_c00001{bottom:389.466686pt;}
.y10a_c00001{bottom:390.333353pt;}
.y130_c00001{bottom:390.400020pt;}
.y208_c00001{bottom:391.666686pt;}
.y2f4_c00001{bottom:391.733353pt;}
.y306_c00001{bottom:392.000020pt;}
.y15a_c00001{bottom:392.333353pt;}
.y3bf_c00001{bottom:393.933353pt;}
.y265_c00001{bottom:394.866686pt;}
.y31f_c00001{bottom:396.466686pt;}
.y17c_c00001{bottom:396.800020pt;}
.yee_c00001{bottom:397.133353pt;}
.y1b1_c00001{bottom:397.466686pt;}
.y2ae_c00001{bottom:398.066686pt;}
.y23a_c00001{bottom:399.666686pt;}
.y2c6_c00001{bottom:400.000020pt;}
.yb7_c00001{bottom:400.333353pt;}
.y160_c00001{bottom:400.666686pt;}
.y3b3_c00001{bottom:401.000020pt;}
.y36f_c00001{bottom:401.600020pt;}
.y13_c00001{bottom:402.600020pt;}
.y275_c00001{bottom:402.866686pt;}
.ydf_c00001{bottom:403.866686pt;}
.ye7_c00001{bottom:405.466686pt;}
.y4e_c00001{bottom:405.733353pt;}
.y66_c00001{bottom:405.800020pt;}
.y84_c00001{bottom:406.066686pt;}
.ya4_c00001{bottom:406.733353pt;}
.y18f_c00001{bottom:407.400020pt;}
.y109_c00001{bottom:407.666686pt;}
.y264_c00001{bottom:409.000020pt;}
.y30b_c00001{bottom:409.266686pt;}
.y159_c00001{bottom:409.600020pt;}
.yed_c00001{bottom:410.600020pt;}
.y2ad_c00001{bottom:412.200020pt;}
.y2d7_c00001{bottom:412.466686pt;}
.y280_c00001{bottom:412.666686pt;}
.y117_c00001{bottom:413.466686pt;}
.y360_c00001{bottom:413.800020pt;}
.y17b_c00001{bottom:414.066686pt;}
.y1b0_c00001{bottom:414.400020pt;}
.y36e_c00001{bottom:415.066686pt;}
.y239_c00001{bottom:416.666686pt;}
.y274_c00001{bottom:417.000020pt;}
.yb6_c00001{bottom:417.266686pt;}
.y143_c00001{bottom:417.600020pt;}
.y15f_c00001{bottom:417.933353pt;}
.y163_c00001{bottom:418.866686pt;}
.y12_c00001{bottom:419.866686pt;}
.y219_c00001{bottom:420.200020pt;}
.yde_c00001{bottom:421.133353pt;}
.yfc_c00001{bottom:422.400020pt;}
.y65_c00001{bottom:422.733353pt;}
.y36_c00001{bottom:423.066686pt;}
.y83_c00001{bottom:423.400020pt;}
.y122_c00001{bottom:423.666686pt;}
.ya3_c00001{bottom:424.333353pt;}
.y18e_c00001{bottom:424.666686pt;}
.y108_c00001{bottom:425.000020pt;}
.y356_c00001{bottom:425.933353pt;}
.y263_c00001{bottom:426.266686pt;}
.y158_c00001{bottom:427.200020pt;}
.y31e_c00001{bottom:427.533353pt;}
.y35f_c00001{bottom:427.866686pt;}
.y1af_c00001{bottom:428.200020pt;}
.y2ac_c00001{bottom:429.133353pt;}
.y2d6_c00001{bottom:429.466686pt;}
.y28d_c00001{bottom:430.733353pt;}
.y17a_c00001{bottom:431.066686pt;}
.y1d1_c00001{bottom:433.933353pt;}
.y359_c00001{bottom:434.200020pt;}
.y293_c00001{bottom:434.266686pt;}
.yb5_c00001{bottom:434.866686pt;}
.y195_c00001{bottom:435.200020pt;}
.y11_c00001{bottom:436.466686pt;}
.y218_c00001{bottom:436.800020pt;}
.y207_c00001{bottom:437.133353pt;}
.y2ef_c00001{bottom:437.333353pt;}
.ydd_c00001{bottom:438.400020pt;}
.yfb_c00001{bottom:439.666686pt;}
.ye6_c00001{bottom:439.933353pt;}
.y64_c00001{bottom:440.000020pt;}
.y35_c00001{bottom:440.333353pt;}
.y82_c00001{bottom:441.000020pt;}
.ya2_c00001{bottom:441.600020pt;}
.y12f_c00001{bottom:441.933353pt;}
.y107_c00001{bottom:442.266686pt;}
.y2ab_c00001{bottom:443.533353pt;}
.y157_c00001{bottom:444.466686pt;}
.y37d_c00001{bottom:444.733353pt;}
.y346_c00001{bottom:444.800020pt;}
.y30f_c00001{bottom:445.000020pt;}
.y2c5_c00001{bottom:445.133353pt;}
.y3b2_c00001{bottom:446.066686pt;}
.y1f1_c00001{bottom:447.666686pt;}
.y228_c00001{bottom:448.000020pt;}
.y179_c00001{bottom:448.666686pt;}
.y1d0_c00001{bottom:450.866686pt;}
.y29c_c00001{bottom:450.933353pt;}
.y24c_c00001{bottom:451.200020pt;}
.y194_c00001{bottom:452.200020pt;}
.y142_c00001{bottom:452.533353pt;}
.y10_c00001{bottom:453.800020pt;}
.y206_c00001{bottom:454.066686pt;}
.y34d_c00001{bottom:454.266686pt;}
.y2e5_c00001{bottom:454.400020pt;}
.y305_c00001{bottom:454.600020pt;}
.y31d_c00001{bottom:455.666686pt;}
.y1ae_c00001{bottom:456.666686pt;}
.y38b_c00001{bottom:457.000020pt;}
.y4d_c00001{bottom:457.266686pt;}
.y262_c00001{bottom:457.333353pt;}
.y63_c00001{bottom:457.600020pt;}
.y116_c00001{bottom:457.666686pt;}
.y81_c00001{bottom:457.933353pt;}
.ya1_c00001{bottom:458.600020pt;}
.y2c4_c00001{bottom:458.866686pt;}
.y12e_c00001{bottom:459.200020pt;}
.y18d_c00001{bottom:459.533353pt;}
.y2aa_c00001{bottom:460.466686pt;}
.y156_c00001{bottom:461.800020pt;}
.y33e_c00001{bottom:461.933353pt;}
.y324_c00001{bottom:462.066686pt;}
.y332_c00001{bottom:462.266686pt;}
.y1cf_c00001{bottom:465.000020pt;}
.y292_c00001{bottom:465.266686pt;}
.y178_c00001{bottom:465.933353pt;}
.y205_c00001{bottom:468.200020pt;}
.y217_c00001{bottom:468.466686pt;}
.y141_c00001{bottom:469.800020pt;}
.y2e4_c00001{bottom:471.066686pt;}
.yf_c00001{bottom:471.400020pt;}
.y31c_c00001{bottom:472.666686pt;}
.y37c_c00001{bottom:473.000020pt;}
.y1ad_c00001{bottom:473.266686pt;}
.y2a9_c00001{bottom:474.266686pt;}
.ye5_c00001{bottom:474.600020pt;}
.y4c_c00001{bottom:474.866686pt;}
.y62_c00001{bottom:474.933353pt;}
.y80_c00001{bottom:475.200020pt;}
.y121_c00001{bottom:475.533353pt;}
.y106_c00001{bottom:475.866686pt;}
.ya0_c00001{bottom:476.200020pt;}
.y12d_c00001{bottom:476.800020pt;}
.y155_c00001{bottom:478.733353pt;}
.y1f0_c00001{bottom:479.066686pt;}
.y238_c00001{bottom:479.400020pt;}
.y216_c00001{bottom:481.933353pt;}
.y1ce_c00001{bottom:482.266686pt;}
.y177_c00001{bottom:482.866686pt;}
.y204_c00001{bottom:485.133353pt;}
.y25b_c00001{bottom:485.466686pt;}
.y344_c00001{bottom:485.600020pt;}
.y193_c00001{bottom:486.733353pt;}
.y140_c00001{bottom:487.066686pt;}
.y1ac_c00001{bottom:487.666686pt;}
.yb4_c00001{bottom:488.000020pt;}
.ye_c00001{bottom:488.333353pt;}
.y2a8_c00001{bottom:488.666686pt;}
.y35e_c00001{bottom:489.933353pt;}
.y2c3_c00001{bottom:490.266686pt;}
.y3b1_c00001{bottom:491.533353pt;}
.y4b_c00001{bottom:491.866686pt;}
.y33_c00001{bottom:492.200020pt;}
.y7f_c00001{bottom:492.466686pt;}
.y28c_c00001{bottom:492.800020pt;}
.y237_c00001{bottom:493.133353pt;}
.y9f_c00001{bottom:493.466686pt;}
.y12c_c00001{bottom:494.066686pt;}
.y29b_c00001{bottom:495.933353pt;}
.y1ef_c00001{bottom:496.000020pt;}
.y393_c00001{bottom:496.200020pt;}
.y154_c00001{bottom:496.333353pt;}
.y27f_c00001{bottom:496.533353pt;}
.y203_c00001{bottom:499.200020pt;}
.y343_c00001{bottom:499.466686pt;}
.y24b_c00001{bottom:499.533353pt;}
.y176_c00001{bottom:500.533353pt;}
.y38a_c00001{bottom:502.066686pt;}
.y2d5_c00001{bottom:502.400020pt;}
.y31b_c00001{bottom:503.666686pt;}
.y35d_c00001{bottom:504.000020pt;}
.y13f_c00001{bottom:504.333353pt;}
.y1ab_c00001{bottom:505.000020pt;}
.y3b0_c00001{bottom:505.266686pt;}
.yd_c00001{bottom:505.600020pt;}
.y30e_c00001{bottom:506.866686pt;}
.y2c2_c00001{bottom:507.200020pt;}
.y32_c00001{bottom:509.133353pt;}
.y4a_c00001{bottom:509.466686pt;}
.y39b_c00001{bottom:509.800020pt;}
.y7e_c00001{bottom:510.066686pt;}
.y120_c00001{bottom:510.133353pt;}
.y9e_c00001{bottom:510.400020pt;}
.y236_c00001{bottom:510.600020pt;}
.y12b_c00001{bottom:511.066686pt;}
.y18c_c00001{bottom:511.400020pt;}
.y1cd_c00001{bottom:513.266686pt;}
.y153_c00001{bottom:513.600020pt;}
.y389_c00001{bottom:516.200020pt;}
.y202_c00001{bottom:516.800020pt;}
.y261_c00001{bottom:517.000020pt;}
.y175_c00001{bottom:517.800020pt;}
.y31a_c00001{bottom:518.066686pt;}
.y1aa_c00001{bottom:518.733353pt;}
.y2d4_c00001{bottom:519.400020pt;}
.y2a7_c00001{bottom:519.866686pt;}
.y2c1_c00001{bottom:521.000020pt;}
.y33d_c00001{bottom:521.266686pt;}
.y13e_c00001{bottom:521.600020pt;}
.y3af_c00001{bottom:522.600020pt;}
.yc_c00001{bottom:523.200020pt;}
.y235_c00001{bottom:524.200020pt;}
.y227_c00001{bottom:524.466686pt;}
.y32e_c00001{bottom:524.533353pt;}
.y31_c00001{bottom:526.333353pt;}
.y61_c00001{bottom:526.400020pt;}
.y49_c00001{bottom:526.733353pt;}
.y7d_c00001{bottom:527.066686pt;}
.y11f_c00001{bottom:527.400020pt;}
.y9d_c00001{bottom:528.000020pt;}
.ydc_c00001{bottom:528.333353pt;}
.y215_c00001{bottom:530.266686pt;}
.y1cc_c00001{bottom:530.600020pt;}
.y152_c00001{bottom:530.866686pt;}
.y1a9_c00001{bottom:532.800020pt;}
.y2d3_c00001{bottom:533.466686pt;}
.y2a6_c00001{bottom:533.800020pt;}
.y174_c00001{bottom:535.066686pt;}
.y319_c00001{bottom:535.400020pt;}
.y2c0_c00001{bottom:537.933353pt;}
.y304_c00001{bottom:538.266686pt;}
.y15e_c00001{bottom:538.600020pt;}
.y13d_c00001{bottom:538.866686pt;}
.y3ae_c00001{bottom:539.533353pt;}
.yb_c00001{bottom:540.466686pt;}
.y1ee_c00001{bottom:541.133353pt;}
.y234_c00001{bottom:541.466686pt;}
.yb3_c00001{bottom:543.066686pt;}
.y30_c00001{bottom:543.666686pt;}
.yfa_c00001{bottom:543.733353pt;}
.y105_c00001{bottom:543.933353pt;}
.y60_c00001{bottom:544.000020pt;}
.y197_c00001{bottom:544.066686pt;}
.y7c_c00001{bottom:544.333353pt;}
.y11e_c00001{bottom:544.666686pt;}
.y383_c00001{bottom:544.800020pt;}
.y9c_c00001{bottom:545.266686pt;}
.ydb_c00001{bottom:545.600020pt;}
.y18b_c00001{bottom:545.800020pt;}
.y12a_c00001{bottom:545.933353pt;}
.y1a8_c00001{bottom:546.600020pt;}
.y2a5_c00001{bottom:547.533353pt;}
.y201_c00001{bottom:547.866686pt;}
.y151_c00001{bottom:548.200020pt;}
.y318_c00001{bottom:549.133353pt;}
.y36d_c00001{bottom:551.066686pt;}
.y192_c00001{bottom:551.666686pt;}
.y303_c00001{bottom:552.000020pt;}
.y173_c00001{bottom:552.333353pt;}
.y3ad_c00001{bottom:553.600020pt;}
.y28b_c00001{bottom:555.200020pt;}
.y1ed_c00001{bottom:555.533353pt;}
.y13c_c00001{bottom:556.200020pt;}
.ya_c00001{bottom:557.466686pt;}
.y27e_c00001{bottom:558.400020pt;}
.y2f3_c00001{bottom:558.666686pt;}
.y24a_c00001{bottom:558.733353pt;}
.y260_c00001{bottom:558.933353pt;}
.y2f_c00001{bottom:561.000020pt;}
.y5f_c00001{bottom:561.266686pt;}
.yb2_c00001{bottom:561.333353pt;}
.y1cb_c00001{bottom:561.600020pt;}
.y7b_c00001{bottom:561.933353pt;}
.y37f_c00001{bottom:562.133353pt;}
.y9b_c00001{bottom:562.600020pt;}
.yda_c00001{bottom:562.866686pt;}
.y18a_c00001{bottom:563.133353pt;}
.y129_c00001{bottom:563.200020pt;}
.y1a7_c00001{bottom:563.533353pt;}
.y36c_c00001{bottom:564.466686pt;}
.y2d2_c00001{bottom:564.800020pt;}
.y150_c00001{bottom:565.466686pt;}
.y317_c00001{bottom:566.400020pt;}
.y1ec_c00001{bottom:569.266686pt;}
.y172_c00001{bottom:569.600020pt;}
.y3ac_c00001{bottom:570.866686pt;}
.y226_c00001{bottom:572.466686pt;}
.y249_c00001{bottom:572.666686pt;}
.y25a_c00001{bottom:572.800020pt;}
.y15d_c00001{bottom:573.133353pt;}
.y13b_c00001{bottom:573.466686pt;}
.y9_c00001{bottom:575.066686pt;}
.y273_c00001{bottom:575.400020pt;}
.y1ca_c00001{bottom:575.666686pt;}
.y37e_c00001{bottom:575.733353pt;}
.y1a6_c00001{bottom:577.933353pt;}
.y48_c00001{bottom:578.266686pt;}
.y2e_c00001{bottom:578.600020pt;}
.y7a_c00001{bottom:579.200020pt;}
.y9a_c00001{bottom:579.866686pt;}
.yd9_c00001{bottom:580.200020pt;}
.y189_c00001{bottom:580.466686pt;}
.y14f_c00001{bottom:582.733353pt;}
.y2bf_c00001{bottom:583.066686pt;}
.y32d_c00001{bottom:583.400020pt;}
.y3ab_c00001{bottom:585.000020pt;}
.y233_c00001{bottom:586.266686pt;}
.y2a2_c00001{bottom:586.400020pt;}
.y171_c00001{bottom:586.600020pt;}
.y328_c00001{bottom:589.133353pt;}
.y1c9_c00001{bottom:589.466686pt;}
.y214_c00001{bottom:589.800020pt;}
.y13a_c00001{bottom:590.400020pt;}
.y1a5_c00001{bottom:591.666686pt;}
.y8_c00001{bottom:592.333353pt;}
.y2d1_c00001{bottom:592.666686pt;}
.y355_c00001{bottom:593.133353pt;}
.y47_c00001{bottom:595.533353pt;}
.y2d_c00001{bottom:595.866686pt;}
.y36b_c00001{bottom:596.333353pt;}
.y79_c00001{bottom:596.466686pt;}
.y11d_c00001{bottom:596.533353pt;}
.yd8_c00001{bottom:597.200020pt;}
.y316_c00001{bottom:597.466686pt;}
.y128_c00001{bottom:597.800020pt;}
.y14e_c00001{bottom:600.000020pt;}
.y232_c00001{bottom:600.333353pt;}
.y1eb_c00001{bottom:600.666686pt;}
.y3aa_c00001{bottom:602.266686pt;}
.y1c8_c00001{bottom:603.533353pt;}
.y170_c00001{bottom:603.866686pt;}
.y388_c00001{bottom:606.400020pt;}
.y30a_c00001{bottom:606.733353pt;}
.y354_c00001{bottom:607.200020pt;}
.y15c_c00001{bottom:607.400020pt;}
.y139_c00001{bottom:607.666686pt;}
.y1a4_c00001{bottom:608.666686pt;}
.y2d0_c00001{bottom:609.600020pt;}
.y36a_c00001{bottom:609.933353pt;}
.y315_c00001{bottom:611.533353pt;}
.yf6_c00001{bottom:612.733353pt;}
.yc4_c00001{bottom:612.800020pt;}
.y2c_c00001{bottom:613.133353pt;}
.y78_c00001{bottom:613.800020pt;}
.y99_c00001{bottom:614.066686pt;}
.y2be_c00001{bottom:614.400020pt;}
.yd7_c00001{bottom:614.466686pt;}
.y1ea_c00001{bottom:614.733353pt;}
.y127_c00001{bottom:615.066686pt;}
.y3a9_c00001{bottom:615.666686pt;}
.y14d_c00001{bottom:617.266686pt;}
.y1c7_c00001{bottom:617.600020pt;}
.y248_c00001{bottom:617.800020pt;}
.y347_c00001{bottom:617.866686pt;}
.y225_c00001{bottom:617.933353pt;}
.y272_c00001{bottom:620.466686pt;}
.y2a4_c00001{bottom:620.733353pt;}
.y200_c00001{bottom:620.800020pt;}
.y16f_c00001{bottom:621.133353pt;}
.y1a3_c00001{bottom:623.066686pt;}
.y2cf_c00001{bottom:623.666686pt;}
.y34c_c00001{bottom:628.466686pt;}
.y7_c00001{bottom:628.800020pt;}
.y2b_c00001{bottom:630.066686pt;}
.yf9_c00001{bottom:630.333353pt;}
.y5e_c00001{bottom:630.400020pt;}
.y137_c00001{bottom:630.466686pt;}
.y77_c00001{bottom:630.733353pt;}
.y98_c00001{bottom:631.066686pt;}
.y1e9_c00001{bottom:631.400020pt;}
.y339_c00001{bottom:631.533353pt;}
.y27d_c00001{bottom:631.666686pt;}
.yd6_c00001{bottom:631.733353pt;}
.y35b_c00001{bottom:631.866686pt;}
.y188_c00001{bottom:632.000020pt;}
.y126_c00001{bottom:632.333353pt;}
.y3a8_c00001{bottom:633.000020pt;}
.y14c_c00001{bottom:634.266686pt;}
.y1c6_c00001{bottom:634.600020pt;}
.y1ff_c00001{bottom:634.866686pt;}
.y35c_c00001{bottom:634.933353pt;}
.y353_c00001{bottom:635.066686pt;}
.y1a2_c00001{bottom:637.133353pt;}
.y2ce_c00001{bottom:637.800020pt;}
.y16e_c00001{bottom:638.066686pt;}
.y138_c00001{bottom:638.400020pt;}
.y387_c00001{bottom:641.000020pt;}
.y314_c00001{bottom:642.266686pt;}
.y1e8_c00001{bottom:645.466686pt;}
.y231_c00001{bottom:645.800020pt;}
.y91_c00001{bottom:647.400020pt;}
.y2a_c00001{bottom:647.666686pt;}
.yb1_c00001{bottom:647.733353pt;}
.y76_c00001{bottom:648.000020pt;}
.y97_c00001{bottom:648.666686pt;}
.y2ca_c00001{bottom:648.800020pt;}
.yd5_c00001{bottom:649.000020pt;}
.y125_c00001{bottom:649.600020pt;}
.y187_c00001{bottom:649.666686pt;}
.y3a7_c00001{bottom:649.933353pt;}
.y14b_c00001{bottom:651.533353pt;}
.y369_c00001{bottom:651.866686pt;}
.y2f9_c00001{bottom:652.200020pt;}
.y386_c00001{bottom:655.066686pt;}
.y2cd_c00001{bottom:655.200020pt;}
.y16d_c00001{bottom:655.400020pt;}
.y2bd_c00001{bottom:659.533353pt;}
.y34b_c00001{bottom:659.866686pt;}
.y1e7_c00001{bottom:662.733353pt;}
.y1c5_c00001{bottom:663.066686pt;}
.y29_c00001{bottom:664.666686pt;}
.y75_c00001{bottom:665.000020pt;}
.y1fe_c00001{bottom:665.600020pt;}
.y2f8_c00001{bottom:665.933353pt;}
.yd4_c00001{bottom:666.266686pt;}
.y186_c00001{bottom:666.933353pt;}
.y3a6_c00001{bottom:667.200020pt;}
.y1a1_c00001{bottom:668.800020pt;}
.y14a_c00001{bottom:669.133353pt;}
.y3cc_c00001{bottom:670.733353pt;}
.y313_c00001{bottom:673.933353pt;}
.y1e6_c00001{bottom:676.466686pt;}
.y247_c00001{bottom:676.666686pt;}
.y213_c00001{bottom:676.800020pt;}
.y33b_c00001{bottom:677.000020pt;}
.y27c_c00001{bottom:679.666686pt;}
.y342_c00001{bottom:679.733353pt;}
.y271_c00001{bottom:679.933353pt;}
.y1c4_c00001{bottom:680.000020pt;}
.y28_c00001{bottom:681.933353pt;}
.y100_c00001{bottom:682.200020pt;}
.y6_c00001{bottom:682.266686pt;}
.y74_c00001{bottom:682.600020pt;}
.y2cc_c00001{bottom:682.866686pt;}
.yd3_c00001{bottom:683.200020pt;}
.y124_c00001{bottom:683.533353pt;}
.y185_c00001{bottom:684.200020pt;}
.y3a5_c00001{bottom:684.466686pt;}
.y149_c00001{bottom:686.400020pt;}
.y16c_c00001{bottom:687.400020pt;}
.y1e5_c00001{bottom:690.600020pt;}
.y2a1_c00001{bottom:690.866686pt;}
.y1c3_c00001{bottom:693.800020pt;}
.y1fd_c00001{bottom:694.066686pt;}
.y259_c00001{bottom:694.266686pt;}
.y352_c00001{bottom:697.000020pt;}
.y2cb_c00001{bottom:697.266686pt;}
.y3cb_c00001{bottom:698.266686pt;}
.y46_c00001{bottom:698.866686pt;}
.y5_c00001{bottom:698.933353pt;}
.y162_c00001{bottom:699.133353pt;}
.y27_c00001{bottom:699.200020pt;}
.y73_c00001{bottom:699.866686pt;}
.yd2_c00001{bottom:700.800020pt;}
.y184_c00001{bottom:701.466686pt;}
.y148_c00001{bottom:703.666686pt;}
.y312_c00001{bottom:704.666686pt;}
.y37b_c00001{bottom:705.000020pt;}
.y1e4_c00001{bottom:707.866686pt;}
.y1c2_c00001{bottom:708.200020pt;}
.y1fc_c00001{bottom:710.733353pt;}
.y2f7_c00001{bottom:711.066686pt;}
.y4_c00001{bottom:716.200020pt;}
.y45_c00001{bottom:716.466686pt;}
.y161_c00001{bottom:716.533353pt;}
.y72_c00001{bottom:716.800020pt;}
.y385_c00001{bottom:717.133353pt;}
.yd1_c00001{bottom:718.066686pt;}
.y183_c00001{bottom:718.400020pt;}
.y3a4_c00001{bottom:718.733353pt;}
.y147_c00001{bottom:720.666686pt;}
.y1e3_c00001{bottom:721.600020pt;}
.y270_c00001{bottom:721.933353pt;}
.y34a_c00001{bottom:724.733353pt;}
.y1c1_c00001{bottom:724.800020pt;}
.y212_c00001{bottom:725.133353pt;}
.y258_c00001{bottom:725.333353pt;}
.y96_c00001{bottom:729.000020pt;}
.y3ca_c00001{bottom:730.866686pt;}
.y3_c00001{bottom:733.466686pt;}
.y26_c00001{bottom:733.800020pt;}
.y302_c00001{bottom:735.666686pt;}
.y3a3_c00001{bottom:736.000020pt;}
.y399_c00001{bottom:738.600020pt;}
.y1c0_c00001{bottom:738.866686pt;}
.y2ff_c00001{bottom:739.066686pt;}
.y1fb_c00001{bottom:739.200020pt;}
.y309_c00001{bottom:739.400020pt;}
.y95_c00001{bottom:749.133353pt;}
.y3c9_c00001{bottom:750.066686pt;}
.y2_c00001{bottom:750.733353pt;}
.y90_c00001{bottom:751.066686pt;}
.y146_c00001{bottom:751.400020pt;}
.y1bf_c00001{bottom:753.000020pt;}
.y341_c00001{bottom:753.133353pt;}
.y211_c00001{bottom:753.266686pt;}
.y257_c00001{bottom:753.466686pt;}
.y392_c00001{bottom:787.866686pt;}
.y34_c00001{bottom:788.200020pt;}
.y1_c00001{bottom:788.333353pt;}
.y1e2_c00001{bottom:788.466686pt;}
.h2_c00001{height:44.470052pt;}
.h4_c00001{height:44.492188pt;}
.h6_c00001{height:44.758854pt;}
.h3_c00001{height:52.343750pt;}
.h5_c00001{height:57.578125pt;}
.h1_c00001{height:851.333333pt;}
.h0_c00001{height:851.533333pt;}
.w2_c00001{width:570.533360pt;}
.w3_c00001{width:570.666667pt;}
.w1_c00001{width:572.000000pt;}
.w0_c00001{width:572.133333pt;}
.x0_c00001{left:0.000000pt;}
.x5_c00001{left:71.333333pt;}
.x4_c00001{left:72.333333pt;}
.x7_c00001{left:77.733333pt;}
.x12_c00001{left:79.666667pt;}
.x1_c00001{left:80.666667pt;}
.xd_c00001{left:81.600000pt;}
.x17_c00001{left:83.533333pt;}
.x15_c00001{left:84.466667pt;}
.x14_c00001{left:85.466667pt;}
.x3_c00001{left:86.400000pt;}
.xc_c00001{left:88.333333pt;}
.x18_c00001{left:92.466667pt;}
.xe_c00001{left:93.466667pt;}
.xb_c00001{left:94.400000pt;}
.x2_c00001{left:95.333333pt;}
.x10_c00001{left:106.533333pt;}
.xa_c00001{left:107.866667pt;}
.x11_c00001{left:115.866667pt;}
.x9_c00001{left:116.800000pt;}
.xf_c00001{left:128.333333pt;}
.x6_c00001{left:151.066667pt;}
.x13_c00001{left:227.533333pt;}
.x1a_c00001{left:373.133333pt;}
.x19_c00001{left:406.400000pt;}
.x16_c00001{left:439.666667pt;}
.x8_c00001{left:472.333333pt;}
}




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