
    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;}
.sc__c00000{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
}
.y0_c00000{bottom:0.000000px;}
.h0_c00000{height:1263.000000px;}
.w0_c00000{width:1914.000000px;}
.x0_c00000{left:0.000000px;}
@media print{
.y0_c00000{bottom:0.000000pt;}
.h0_c00000{height:1122.666667pt;}
.w0_c00000{width:1701.333333pt;}
.x0_c00000{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_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_4ef6a53d4cf4ecf88bdb1900.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00001;src:url('chunks/assets/font_732ce8294b9cc485c0fd2700.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls5_c00001{letter-spacing:0.000000px;}
.ls4_c00001{letter-spacing:0.014400px;}
.ls3_c00001{letter-spacing:0.119640px;}
.ls0_c00001{letter-spacing:0.233856px;}
.ls2_c00001{letter-spacing:0.317376px;}
.ls1_c00001{letter-spacing:0.359136px;}
.ls6_c00001{letter-spacing:0.442656px;}
.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:-20.030400px;}
.ws1_c00001{word-spacing:0.000000px;}
._1_c00001{margin-left:-1.002240px;}
._3_c00001{width:354.419100px;}
._2_c00001{width:1557.659700px;}
._0_c00001{width:2079.683700px;}
.fc0_c00001{color:rgb(0,0,0);}
.fs0_c00001{font-size:72.000000px;}
.fs2_c00001{font-size:83.520000px;}
.fs1_c00001{font-size:95.040000px;}
.y0_c00001{bottom:0.000000px;}
.y1_c00001{bottom:18.750000px;}
.y3_c00001{bottom:37.860030px;}
.y21_c00001{bottom:126.420015px;}
.y20_c00001{bottom:167.820000px;}
.y1f_c00001{bottom:209.220000px;}
.y1e_c00001{bottom:250.620000px;}
.y1d_c00001{bottom:292.020000px;}
.y1c_c00001{bottom:333.420000px;}
.y1b_c00001{bottom:353.940000px;}
.y1a_c00001{bottom:374.820000px;}
.y19_c00001{bottom:395.340000px;}
.y18_c00001{bottom:415.860000px;}
.y17_c00001{bottom:436.740000px;}
.y16_c00001{bottom:457.260000px;}
.y15_c00001{bottom:478.140000px;}
.y14_c00001{bottom:498.660000px;}
.y13_c00001{bottom:519.540000px;}
.y12_c00001{bottom:540.420000px;}
.y11_c00001{bottom:564.540000px;}
.y10_c00001{bottom:588.660000px;}
.yf_c00001{bottom:612.780000px;}
.ye_c00001{bottom:650.580000px;}
.yd_c00001{bottom:684.780000px;}
.yc_c00001{bottom:719.700000px;}
.yb_c00001{bottom:757.500000px;}
.ya_c00001{bottom:795.660000px;}
.y9_c00001{bottom:833.820000px;}
.y8_c00001{bottom:871.980000px;}
.y7_c00001{bottom:910.860000px;}
.y6_c00001{bottom:952.620000px;}
.y5_c00001{bottom:989.340000px;}
.y4_c00001{bottom:1120.740000px;}
.y2_c00001{bottom:1173.660000px;}
.h2_c00001{height:64.546875px;}
.h6_c00001{height:65.003906px;}
.h5_c00001{height:74.874375px;}
.h4_c00001{height:75.404531px;}
.h3_c00001{height:85.201875px;}
.h1_c00001{height:1225.500000px;}
.h0_c00001{height:1263.000000px;}
.w1_c00001{width:855.000000px;}
.w0_c00001{width:892.500000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:18.750000px;}
.x2_c00001{left:109.439925px;}
.x9_c00001{left:116.534550px;}
.x8_c00001{left:146.301600px;}
.x6_c00001{left:179.488350px;}
.x5_c00001{left:184.800000px;}
.xc_c00001{left:196.505400px;}
.xb_c00001{left:199.515750px;}
.xd_c00001{left:204.964950px;}
.xa_c00001{left:342.925350px;}
.x7_c00001{left:348.600150px;}
.x3_c00001{left:428.114850px;}
.x4_c00001{left:579.014700px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls5_c00001{letter-spacing:0.000000pt;}
.ls4_c00001{letter-spacing:0.012800pt;}
.ls3_c00001{letter-spacing:0.106347pt;}
.ls0_c00001{letter-spacing:0.207872pt;}
.ls2_c00001{letter-spacing:0.282112pt;}
.ls1_c00001{letter-spacing:0.319232pt;}
.ls6_c00001{letter-spacing:0.393472pt;}
.ws0_c00001{word-spacing:-17.804800pt;}
.ws1_c00001{word-spacing:0.000000pt;}
._1_c00001{margin-left:-0.890880pt;}
._3_c00001{width:315.039200pt;}
._2_c00001{width:1384.586400pt;}
._0_c00001{width:1848.607733pt;}
.fs0_c00001{font-size:64.000000pt;}
.fs2_c00001{font-size:74.240000pt;}
.fs1_c00001{font-size:84.480000pt;}
.y0_c00001{bottom:0.000000pt;}
.y1_c00001{bottom:16.666667pt;}
.y3_c00001{bottom:33.653360pt;}
.y21_c00001{bottom:112.373347pt;}
.y20_c00001{bottom:149.173333pt;}
.y1f_c00001{bottom:185.973333pt;}
.y1e_c00001{bottom:222.773333pt;}
.y1d_c00001{bottom:259.573333pt;}
.y1c_c00001{bottom:296.373333pt;}
.y1b_c00001{bottom:314.613333pt;}
.y1a_c00001{bottom:333.173333pt;}
.y19_c00001{bottom:351.413333pt;}
.y18_c00001{bottom:369.653333pt;}
.y17_c00001{bottom:388.213333pt;}
.y16_c00001{bottom:406.453333pt;}
.y15_c00001{bottom:425.013333pt;}
.y14_c00001{bottom:443.253333pt;}
.y13_c00001{bottom:461.813333pt;}
.y12_c00001{bottom:480.373333pt;}
.y11_c00001{bottom:501.813333pt;}
.y10_c00001{bottom:523.253333pt;}
.yf_c00001{bottom:544.693333pt;}
.ye_c00001{bottom:578.293333pt;}
.yd_c00001{bottom:608.693333pt;}
.yc_c00001{bottom:639.733333pt;}
.yb_c00001{bottom:673.333333pt;}
.ya_c00001{bottom:707.253333pt;}
.y9_c00001{bottom:741.173333pt;}
.y8_c00001{bottom:775.093333pt;}
.y7_c00001{bottom:809.653333pt;}
.y6_c00001{bottom:846.773333pt;}
.y5_c00001{bottom:879.413333pt;}
.y4_c00001{bottom:996.213333pt;}
.y2_c00001{bottom:1043.253333pt;}
.h2_c00001{height:57.375000pt;}
.h6_c00001{height:57.781250pt;}
.h5_c00001{height:66.555000pt;}
.h4_c00001{height:67.026250pt;}
.h3_c00001{height:75.735000pt;}
.h1_c00001{height:1089.333333pt;}
.h0_c00001{height:1122.666667pt;}
.w1_c00001{width:760.000000pt;}
.w0_c00001{width:793.333333pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:16.666667pt;}
.x2_c00001{left:97.279933pt;}
.x9_c00001{left:103.586267pt;}
.x8_c00001{left:130.045867pt;}
.x6_c00001{left:159.545200pt;}
.x5_c00001{left:164.266667pt;}
.xc_c00001{left:174.671467pt;}
.xb_c00001{left:177.347333pt;}
.xd_c00001{left:182.191067pt;}
.xa_c00001{left:304.822533pt;}
.x7_c00001{left:309.866800pt;}
.x3_c00001{left:380.546533pt;}
.x4_c00001{left:514.679733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc845accef0beaceb15afc88.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(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;}
._2_c00002{width:843.983700px;}
._1_c00002{width:1146.684000px;}
._0_c00002{width:1254.683700px;}
.fc0_c00002{color:rgb(0,0,0);}
.fs0_c00002{font-size:72.000000px;}
.y0_c00002{bottom:0.000000px;}
.y1_c00002{bottom:18.750000px;}
.y3_c00002{bottom:37.860030px;}
.y2_c00002{bottom:58.380030px;}
.y4_c00002{bottom:1120.740000px;}
.h2_c00002{height:64.546875px;}
.h1_c00002{height:1225.500000px;}
.h0_c00002{height:1263.000000px;}
.w1_c00002{width:855.000000px;}
.w0_c00002{width:892.500000px;}
.x0_c00002{left:0.000000px;}
.x1_c00002{left:18.750000px;}
.x2_c00002{left:109.439925px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls0_c00002{letter-spacing:0.000000pt;}
.ws0_c00002{word-spacing:0.000000pt;}
._2_c00002{width:750.207733pt;}
._1_c00002{width:1019.274667pt;}
._0_c00002{width:1115.274400pt;}
.fs0_c00002{font-size:64.000000pt;}
.y0_c00002{bottom:0.000000pt;}
.y1_c00002{bottom:16.666667pt;}
.y3_c00002{bottom:33.653360pt;}
.y2_c00002{bottom:51.893360pt;}
.y4_c00002{bottom:996.213333pt;}
.h2_c00002{height:57.375000pt;}
.h1_c00002{height:1089.333333pt;}
.h0_c00002{height:1122.666667pt;}
.w1_c00002{width:760.000000pt;}
.w0_c00002{width:793.333333pt;}
.x0_c00002{left:0.000000pt;}
.x1_c00002{left:16.666667pt;}
.x2_c00002{left:97.279933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4734fdc36bc64d0d12cd027a.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00003;src:url('chunks/assets/font_546fcbc67ae3053e62804d37.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:1.113281;font-style: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;}
.ls5_c00003{letter-spacing:0.000000px;}
.ls4_c00003{letter-spacing:0.014400px;}
.ls3_c00003{letter-spacing:0.119640px;}
.ls0_c00003{letter-spacing:0.251280px;}
.ls2_c00003{letter-spacing:0.317376px;}
.ls1_c00003{letter-spacing:0.359136px;}
.ls7_c00003{letter-spacing:0.442656px;}
.ls6_c00003{letter-spacing:0.712800px;}
.sc__c00003{text-shadow:none;}
.sc0_c00003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
.sc0_c00003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00003{word-spacing:0.000000px;}
._1_c00003{margin-left:-1.235520px;}
._0_c00003{width:2079.683700px;}
.fc0_c00003{color:rgb(0,0,0);}
.fs0_c00003{font-size:72.000000px;}
.fs2_c00003{font-size:83.520000px;}
.fs1_c00003{font-size:95.040000px;}
.y0_c00003{bottom:0.000000px;}
.y1_c00003{bottom:18.750000px;}
.y3_c00003{bottom:37.860030px;}
.y23_c00003{bottom:120.660030px;}
.y22_c00003{bottom:162.060000px;}
.y21_c00003{bottom:203.460000px;}
.y20_c00003{bottom:223.980000px;}
.y1f_c00003{bottom:244.860000px;}
.y1e_c00003{bottom:265.380000px;}
.y1d_c00003{bottom:286.260000px;}
.y1c_c00003{bottom:306.780000px;}
.y1b_c00003{bottom:327.660000px;}
.y1a_c00003{bottom:348.180000px;}
.y19_c00003{bottom:369.060000px;}
.y18_c00003{bottom:389.580000px;}
.y17_c00003{bottom:410.460000px;}
.y16_c00003{bottom:430.980000px;}
.y15_c00003{bottom:451.860000px;}
.y14_c00003{bottom:475.980000px;}
.y13_c00003{bottom:500.100000px;}
.y12_c00003{bottom:524.580000px;}
.y11_c00003{bottom:562.020000px;}
.y10_c00003{bottom:596.220000px;}
.yf_c00003{bottom:630.780000px;}
.ye_c00003{bottom:664.980000px;}
.yd_c00003{bottom:699.900000px;}
.yc_c00003{bottom:738.060000px;}
.yb_c00003{bottom:775.860000px;}
.ya_c00003{bottom:814.020000px;}
.y9_c00003{bottom:852.180000px;}
.y8_c00003{bottom:889.980000px;}
.y7_c00003{bottom:928.140000px;}
.y6_c00003{bottom:967.020000px;}
.y5_c00003{bottom:1004.100000px;}
.y4_c00003{bottom:1120.740000px;}
.y2_c00003{bottom:1173.660000px;}
.h2_c00003{height:64.546875px;}
.h6_c00003{height:65.003906px;}
.h5_c00003{height:74.874375px;}
.h7_c00003{height:75.404531px;}
.h3_c00003{height:85.201875px;}
.h4_c00003{height:85.805156px;}
.h1_c00003{height:1225.500000px;}
.h0_c00003{height:1263.000000px;}
.w1_c00003{width:855.000000px;}
.w0_c00003{width:892.500000px;}
.x0_c00003{left:0.000000px;}
.x1_c00003{left:18.750000px;}
.x2_c00003{left:109.439925px;}
.x9_c00003{left:116.534550px;}
.x5_c00003{left:126.714480px;}
.x8_c00003{left:146.301600px;}
.x6_c00003{left:188.311800px;}
.xc_c00003{left:287.028450px;}
.xb_c00003{left:322.575750px;}
.xa_c00003{left:342.925350px;}
.x7_c00003{left:348.600150px;}
.x3_c00003{left:428.114850px;}
.x4_c00003{left:492.239850px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls5_c00003{letter-spacing:0.000000pt;}
.ls4_c00003{letter-spacing:0.012800pt;}
.ls3_c00003{letter-spacing:0.106347pt;}
.ls0_c00003{letter-spacing:0.223360pt;}
.ls2_c00003{letter-spacing:0.282112pt;}
.ls1_c00003{letter-spacing:0.319232pt;}
.ls7_c00003{letter-spacing:0.393472pt;}
.ls6_c00003{letter-spacing:0.633600pt;}
.ws0_c00003{word-spacing:0.000000pt;}
._1_c00003{margin-left:-1.098240pt;}
._0_c00003{width:1848.607733pt;}
.fs0_c00003{font-size:64.000000pt;}
.fs2_c00003{font-size:74.240000pt;}
.fs1_c00003{font-size:84.480000pt;}
.y0_c00003{bottom:0.000000pt;}
.y1_c00003{bottom:16.666667pt;}
.y3_c00003{bottom:33.653360pt;}
.y23_c00003{bottom:107.253360pt;}
.y22_c00003{bottom:144.053333pt;}
.y21_c00003{bottom:180.853333pt;}
.y20_c00003{bottom:199.093333pt;}
.y1f_c00003{bottom:217.653333pt;}
.y1e_c00003{bottom:235.893333pt;}
.y1d_c00003{bottom:254.453333pt;}
.y1c_c00003{bottom:272.693333pt;}
.y1b_c00003{bottom:291.253333pt;}
.y1a_c00003{bottom:309.493333pt;}
.y19_c00003{bottom:328.053333pt;}
.y18_c00003{bottom:346.293333pt;}
.y17_c00003{bottom:364.853333pt;}
.y16_c00003{bottom:383.093333pt;}
.y15_c00003{bottom:401.653333pt;}
.y14_c00003{bottom:423.093333pt;}
.y13_c00003{bottom:444.533333pt;}
.y12_c00003{bottom:466.293333pt;}
.y11_c00003{bottom:499.573333pt;}
.y10_c00003{bottom:529.973333pt;}
.yf_c00003{bottom:560.693333pt;}
.ye_c00003{bottom:591.093333pt;}
.yd_c00003{bottom:622.133333pt;}
.yc_c00003{bottom:656.053333pt;}
.yb_c00003{bottom:689.653333pt;}
.ya_c00003{bottom:723.573333pt;}
.y9_c00003{bottom:757.493333pt;}
.y8_c00003{bottom:791.093333pt;}
.y7_c00003{bottom:825.013333pt;}
.y6_c00003{bottom:859.573333pt;}
.y5_c00003{bottom:892.533333pt;}
.y4_c00003{bottom:996.213333pt;}
.y2_c00003{bottom:1043.253333pt;}
.h2_c00003{height:57.375000pt;}
.h6_c00003{height:57.781250pt;}
.h5_c00003{height:66.555000pt;}
.h7_c00003{height:67.026250pt;}
.h3_c00003{height:75.735000pt;}
.h4_c00003{height:76.271250pt;}
.h1_c00003{height:1089.333333pt;}
.h0_c00003{height:1122.666667pt;}
.w1_c00003{width:760.000000pt;}
.w0_c00003{width:793.333333pt;}
.x0_c00003{left:0.000000pt;}
.x1_c00003{left:16.666667pt;}
.x2_c00003{left:97.279933pt;}
.x9_c00003{left:103.586267pt;}
.x5_c00003{left:112.635093pt;}
.x8_c00003{left:130.045867pt;}
.x6_c00003{left:167.388267pt;}
.xc_c00003{left:255.136400pt;}
.xb_c00003{left:286.734000pt;}
.xa_c00003{left:304.822533pt;}
.x7_c00003{left:309.866800pt;}
.x3_c00003{left:380.546533pt;}
.x4_c00003{left:437.546533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc845accef0beaceb15afc88.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00004{vertical-align:0.000000px;}
.ls0_c00004{letter-spacing:0.000000px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00004{word-spacing:0.000000px;}
._2_c00004{width:840.781440px;}
._1_c00004{width:1146.684000px;}
._0_c00004{width:1254.683700px;}
.fc0_c00004{color:rgb(0,0,0);}
.fs0_c00004{font-size:72.000000px;}
.fs1_c00004{font-size:83.520000px;}
.y0_c00004{bottom:0.000000px;}
.y1_c00004{bottom:18.750000px;}
.y3_c00004{bottom:37.860030px;}
.y2_c00004{bottom:58.380030px;}
.y4_c00004{bottom:1117.500000px;}
.h2_c00004{height:64.546875px;}
.h3_c00004{height:74.874375px;}
.h1_c00004{height:1225.500000px;}
.h0_c00004{height:1263.000000px;}
.w1_c00004{width:855.000000px;}
.w0_c00004{width:892.500000px;}
.x0_c00004{left:0.000000px;}
.x1_c00004{left:18.750000px;}
.x2_c00004{left:109.439925px;}
.x3_c00004{left:428.114850px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls0_c00004{letter-spacing:0.000000pt;}
.ws0_c00004{word-spacing:0.000000pt;}
._2_c00004{width:747.361280pt;}
._1_c00004{width:1019.274667pt;}
._0_c00004{width:1115.274400pt;}
.fs0_c00004{font-size:64.000000pt;}
.fs1_c00004{font-size:74.240000pt;}
.y0_c00004{bottom:0.000000pt;}
.y1_c00004{bottom:16.666667pt;}
.y3_c00004{bottom:33.653360pt;}
.y2_c00004{bottom:51.893360pt;}
.y4_c00004{bottom:993.333333pt;}
.h2_c00004{height:57.375000pt;}
.h3_c00004{height:66.555000pt;}
.h1_c00004{height:1089.333333pt;}
.h0_c00004{height:1122.666667pt;}
.w1_c00004{width:760.000000pt;}
.w0_c00004{width:793.333333pt;}
.x0_c00004{left:0.000000pt;}
.x1_c00004{left:16.666667pt;}
.x2_c00004{left:97.279933pt;}
.x3_c00004{left:380.546533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f74ceed0e29a5f9aa13bfedb.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00005;src:url('chunks/assets/font_d62321010b6ad27d43c18f98.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:1.113281;font-style: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;}
.ls3_c00005{letter-spacing:-0.014400px;}
.ls2_c00005{letter-spacing:0.000000px;}
.ls0_c00005{letter-spacing:0.014400px;}
.ls1_c00005{letter-spacing:0.317376px;}
.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:-23.535936px;}
.ws2_c00005{word-spacing:-20.016000px;}
.ws1_c00005{word-spacing:-20.001600px;}
.ws3_c00005{word-spacing:0.000000px;}
._9_c00005{width:1.802700px;}
._1_c00005{width:3.146400px;}
._8_c00005{width:6.580800px;}
._a_c00005{width:16.300800px;}
._2_c00005{width:18.836700px;}
._3_c00005{width:22.452000px;}
._4_c00005{width:23.668800px;}
._7_c00005{width:24.868800px;}
._6_c00005{width:27.311100px;}
._5_c00005{width:35.258400px;}
._0_c00005{width:2079.683700px;}
.fc0_c00005{color:rgb(0,0,0);}
.fs0_c00005{font-size:72.000000px;}
.fs1_c00005{font-size:83.520000px;}
.y0_c00005{bottom:0.000000px;}
.y1_c00005{bottom:18.750000px;}
.y3_c00005{bottom:37.860030px;}
.y1c_c00005{bottom:113.100030px;}
.y1b_c00005{bottom:154.500000px;}
.y1a_c00005{bottom:195.900000px;}
.y19_c00005{bottom:237.300000px;}
.y18_c00005{bottom:278.700000px;}
.y17_c00005{bottom:320.100000px;}
.y16_c00005{bottom:361.500000px;}
.y15_c00005{bottom:402.900000px;}
.y14_c00005{bottom:444.300000px;}
.y13_c00005{bottom:485.700000px;}
.y12_c00005{bottom:527.100000px;}
.y11_c00005{bottom:568.500000px;}
.y10_c00005{bottom:609.900000px;}
.yf_c00005{bottom:651.300000px;}
.ye_c00005{bottom:692.700000px;}
.yd_c00005{bottom:734.100000px;}
.yc_c00005{bottom:775.500000px;}
.yb_c00005{bottom:816.900000px;}
.ya_c00005{bottom:858.300000px;}
.y9_c00005{bottom:903.300000px;}
.y8_c00005{bottom:951.900000px;}
.y7_c00005{bottom:996.540000px;}
.y6_c00005{bottom:1037.940000px;}
.y5_c00005{bottom:1079.340000px;}
.y4_c00005{bottom:1120.740000px;}
.y2_c00005{bottom:1173.660000px;}
.h2_c00005{height:64.546875px;}
.h3_c00005{height:65.003906px;}
.h4_c00005{height:75.404531px;}
.h1_c00005{height:1225.500000px;}
.h0_c00005{height:1263.000000px;}
.w1_c00005{width:855.000000px;}
.w0_c00005{width:892.500000px;}
.x0_c00005{left:0.000000px;}
.x1_c00005{left:18.750000px;}
.x2_c00005{left:109.439925px;}
.x4_c00005{left:373.851150px;}
.x5_c00005{left:386.107500px;}
.x3_c00005{left:428.114850px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls3_c00005{letter-spacing:-0.012800pt;}
.ls2_c00005{letter-spacing:0.000000pt;}
.ls0_c00005{letter-spacing:0.012800pt;}
.ls1_c00005{letter-spacing:0.282112pt;}
.ws0_c00005{word-spacing:-20.920832pt;}
.ws2_c00005{word-spacing:-17.792000pt;}
.ws1_c00005{word-spacing:-17.779200pt;}
.ws3_c00005{word-spacing:0.000000pt;}
._9_c00005{width:1.602400pt;}
._1_c00005{width:2.796800pt;}
._8_c00005{width:5.849600pt;}
._a_c00005{width:14.489600pt;}
._2_c00005{width:16.743733pt;}
._3_c00005{width:19.957333pt;}
._4_c00005{width:21.038933pt;}
._7_c00005{width:22.105600pt;}
._6_c00005{width:24.276533pt;}
._5_c00005{width:31.340800pt;}
._0_c00005{width:1848.607733pt;}
.fs0_c00005{font-size:64.000000pt;}
.fs1_c00005{font-size:74.240000pt;}
.y0_c00005{bottom:0.000000pt;}
.y1_c00005{bottom:16.666667pt;}
.y3_c00005{bottom:33.653360pt;}
.y1c_c00005{bottom:100.533360pt;}
.y1b_c00005{bottom:137.333333pt;}
.y1a_c00005{bottom:174.133333pt;}
.y19_c00005{bottom:210.933333pt;}
.y18_c00005{bottom:247.733333pt;}
.y17_c00005{bottom:284.533333pt;}
.y16_c00005{bottom:321.333333pt;}
.y15_c00005{bottom:358.133333pt;}
.y14_c00005{bottom:394.933333pt;}
.y13_c00005{bottom:431.733333pt;}
.y12_c00005{bottom:468.533333pt;}
.y11_c00005{bottom:505.333333pt;}
.y10_c00005{bottom:542.133333pt;}
.yf_c00005{bottom:578.933333pt;}
.ye_c00005{bottom:615.733333pt;}
.yd_c00005{bottom:652.533333pt;}
.yc_c00005{bottom:689.333333pt;}
.yb_c00005{bottom:726.133333pt;}
.ya_c00005{bottom:762.933333pt;}
.y9_c00005{bottom:802.933333pt;}
.y8_c00005{bottom:846.133333pt;}
.y7_c00005{bottom:885.813333pt;}
.y6_c00005{bottom:922.613333pt;}
.y5_c00005{bottom:959.413333pt;}
.y4_c00005{bottom:996.213333pt;}
.y2_c00005{bottom:1043.253333pt;}
.h2_c00005{height:57.375000pt;}
.h3_c00005{height:57.781250pt;}
.h4_c00005{height:67.026250pt;}
.h1_c00005{height:1089.333333pt;}
.h0_c00005{height:1122.666667pt;}
.w1_c00005{width:760.000000pt;}
.w0_c00005{width:793.333333pt;}
.x0_c00005{left:0.000000pt;}
.x1_c00005{left:16.666667pt;}
.x2_c00005{left:97.279933pt;}
.x4_c00005{left:332.312133pt;}
.x5_c00005{left:343.206667pt;}
.x3_c00005{left:380.546533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc845accef0beaceb15afc88.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00006{vertical-align:0.000000px;}
.ls0_c00006{letter-spacing:0.000000px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00006{word-spacing:0.000000px;}
._2_c00006{width:843.983700px;}
._1_c00006{width:1146.684000px;}
._0_c00006{width:1254.683700px;}
.fc0_c00006{color:rgb(0,0,0);}
.fs0_c00006{font-size:72.000000px;}
.y0_c00006{bottom:0.000000px;}
.y1_c00006{bottom:18.750000px;}
.y3_c00006{bottom:37.860030px;}
.y2_c00006{bottom:58.380030px;}
.y6_c00006{bottom:1037.940000px;}
.y5_c00006{bottom:1079.340000px;}
.y4_c00006{bottom:1120.740000px;}
.h2_c00006{height:64.546875px;}
.h1_c00006{height:1225.500000px;}
.h0_c00006{height:1263.000000px;}
.w1_c00006{width:855.000000px;}
.w0_c00006{width:892.500000px;}
.x0_c00006{left:0.000000px;}
.x1_c00006{left:18.750000px;}
.x2_c00006{left:109.439925px;}
.x3_c00006{left:151.965150px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls0_c00006{letter-spacing:0.000000pt;}
.ws0_c00006{word-spacing:0.000000pt;}
._2_c00006{width:750.207733pt;}
._1_c00006{width:1019.274667pt;}
._0_c00006{width:1115.274400pt;}
.fs0_c00006{font-size:64.000000pt;}
.y0_c00006{bottom:0.000000pt;}
.y1_c00006{bottom:16.666667pt;}
.y3_c00006{bottom:33.653360pt;}
.y2_c00006{bottom:51.893360pt;}
.y6_c00006{bottom:922.613333pt;}
.y5_c00006{bottom:959.413333pt;}
.y4_c00006{bottom:996.213333pt;}
.h2_c00006{height:57.375000pt;}
.h1_c00006{height:1089.333333pt;}
.h0_c00006{height:1122.666667pt;}
.w1_c00006{width:760.000000pt;}
.w0_c00006{width:793.333333pt;}
.x0_c00006{left:0.000000pt;}
.x1_c00006{left:16.666667pt;}
.x2_c00006{left:97.279933pt;}
.x3_c00006{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f387aca0616bc22ef5b5c9de.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00007;src:url('chunks/assets/font_4d3d36ad59428c5192a2ef1f.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.ls1_c00007{letter-spacing:0.000000px;}
.ls0_c00007{letter-spacing:0.014400px;}
.sc__c00007{text-shadow:none;}
.sc0_c00007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00007{-webkit-text-stroke:0px transparent;}
.sc0_c00007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00007{word-spacing:0.000000px;}
._3_c00007{width:2.102700px;}
._2_c00007{width:3.340800px;}
._b_c00007{width:7.300800px;}
._4_c00007{width:8.546400px;}
._1_c00007{width:9.633600px;}
._c_c00007{width:13.888800px;}
._6_c00007{width:16.293600px;}
._5_c00007{width:23.306400px;}
._a_c00007{width:24.645600px;}
._d_c00007{width:26.755200px;}
._8_c00007{width:34.322400px;}
._7_c00007{width:35.942400px;}
._9_c00007{width:38.721600px;}
._0_c00007{width:2079.683700px;}
.fc0_c00007{color:rgb(0,0,0);}
.fs0_c00007{font-size:72.000000px;}
.y0_c00007{bottom:0.000000px;}
.y1_c00007{bottom:18.750000px;}
.y3_c00007{bottom:37.860030px;}
.y1e_c00007{bottom:113.820030px;}
.y1d_c00007{bottom:155.220000px;}
.y1c_c00007{bottom:196.620000px;}
.y1b_c00007{bottom:238.020000px;}
.y1a_c00007{bottom:279.420000px;}
.y19_c00007{bottom:320.820000px;}
.y18_c00007{bottom:362.220000px;}
.y17_c00007{bottom:403.620000px;}
.y16_c00007{bottom:445.020000px;}
.y15_c00007{bottom:486.420000px;}
.y14_c00007{bottom:527.820000px;}
.y13_c00007{bottom:569.220000px;}
.y12_c00007{bottom:610.620000px;}
.y11_c00007{bottom:652.020000px;}
.y10_c00007{bottom:693.420000px;}
.yf_c00007{bottom:734.820000px;}
.ye_c00007{bottom:776.220000px;}
.yd_c00007{bottom:817.620000px;}
.yc_c00007{bottom:859.020000px;}
.yb_c00007{bottom:900.420000px;}
.ya_c00007{bottom:941.820000px;}
.y9_c00007{bottom:983.220000px;}
.y8_c00007{bottom:1003.740000px;}
.y7_c00007{bottom:1044.780000px;}
.y6_c00007{bottom:1065.660000px;}
.y5_c00007{bottom:1086.180000px;}
.y4_c00007{bottom:1120.740000px;}
.y2_c00007{bottom:1173.660000px;}
.h2_c00007{height:64.546875px;}
.h3_c00007{height:65.003906px;}
.h1_c00007{height:1225.500000px;}
.h0_c00007{height:1263.000000px;}
.w1_c00007{width:855.000000px;}
.w0_c00007{width:892.500000px;}
.x0_c00007{left:0.000000px;}
.x1_c00007{left:18.750000px;}
.x2_c00007{left:109.439925px;}
.x4_c00007{left:151.965150px;}
.x3_c00007{left:428.114850px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls1_c00007{letter-spacing:0.000000pt;}
.ls0_c00007{letter-spacing:0.012800pt;}
.ws0_c00007{word-spacing:0.000000pt;}
._3_c00007{width:1.869067pt;}
._2_c00007{width:2.969600pt;}
._b_c00007{width:6.489600pt;}
._4_c00007{width:7.596800pt;}
._1_c00007{width:8.563200pt;}
._c_c00007{width:12.345600pt;}
._6_c00007{width:14.483200pt;}
._5_c00007{width:20.716800pt;}
._a_c00007{width:21.907200pt;}
._d_c00007{width:23.782400pt;}
._8_c00007{width:30.508800pt;}
._7_c00007{width:31.948800pt;}
._9_c00007{width:34.419200pt;}
._0_c00007{width:1848.607733pt;}
.fs0_c00007{font-size:64.000000pt;}
.y0_c00007{bottom:0.000000pt;}
.y1_c00007{bottom:16.666667pt;}
.y3_c00007{bottom:33.653360pt;}
.y1e_c00007{bottom:101.173360pt;}
.y1d_c00007{bottom:137.973333pt;}
.y1c_c00007{bottom:174.773333pt;}
.y1b_c00007{bottom:211.573333pt;}
.y1a_c00007{bottom:248.373333pt;}
.y19_c00007{bottom:285.173333pt;}
.y18_c00007{bottom:321.973333pt;}
.y17_c00007{bottom:358.773333pt;}
.y16_c00007{bottom:395.573333pt;}
.y15_c00007{bottom:432.373333pt;}
.y14_c00007{bottom:469.173333pt;}
.y13_c00007{bottom:505.973333pt;}
.y12_c00007{bottom:542.773333pt;}
.y11_c00007{bottom:579.573333pt;}
.y10_c00007{bottom:616.373333pt;}
.yf_c00007{bottom:653.173333pt;}
.ye_c00007{bottom:689.973333pt;}
.yd_c00007{bottom:726.773333pt;}
.yc_c00007{bottom:763.573333pt;}
.yb_c00007{bottom:800.373333pt;}
.ya_c00007{bottom:837.173333pt;}
.y9_c00007{bottom:873.973333pt;}
.y8_c00007{bottom:892.213333pt;}
.y7_c00007{bottom:928.693333pt;}
.y6_c00007{bottom:947.253333pt;}
.y5_c00007{bottom:965.493333pt;}
.y4_c00007{bottom:996.213333pt;}
.y2_c00007{bottom:1043.253333pt;}
.h2_c00007{height:57.375000pt;}
.h3_c00007{height:57.781250pt;}
.h1_c00007{height:1089.333333pt;}
.h0_c00007{height:1122.666667pt;}
.w1_c00007{width:760.000000pt;}
.w0_c00007{width:793.333333pt;}
.x0_c00007{left:0.000000pt;}
.x1_c00007{left:16.666667pt;}
.x2_c00007{left:97.279933pt;}
.x4_c00007{left:135.080133pt;}
.x3_c00007{left:380.546533pt;}
}





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

.ir_c00008:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00008;src:url('chunks/assets/font_d02492ee72edbd20606feb6f.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.ls1_c00008{letter-spacing:0.000000px;}
.ls0_c00008{letter-spacing:0.014400px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00008{word-spacing:0.000000px;}
._3_c00008{width:1.468800px;}
._2_c00008{width:5.781600px;}
._4_c00008{width:12.434400px;}
._5_c00008{width:18.964800px;}
._6_c00008{width:48.484800px;}
._7_c00008{width:843.984000px;}
._1_c00008{width:1146.684000px;}
._0_c00008{width:1254.683700px;}
.fc1_c00008{color:transparent;}
.fc0_c00008{color:rgb(0,0,0);}
.fs0_c00008{font-size:72.000000px;}
.y0_c00008{bottom:0.000000px;}
.y1_c00008{bottom:18.750000px;}
.y3_c00008{bottom:37.860030px;}
.y2_c00008{bottom:58.380030px;}
.ya_c00008{bottom:872.340000px;}
.y9_c00008{bottom:913.740000px;}
.y8_c00008{bottom:955.140000px;}
.y7_c00008{bottom:996.540000px;}
.y6_c00008{bottom:1037.940000px;}
.y5_c00008{bottom:1079.340000px;}
.y4_c00008{bottom:1120.740000px;}
.h2_c00008{height:64.546875px;}
.h1_c00008{height:1225.500000px;}
.h0_c00008{height:1263.000000px;}
.w1_c00008{width:855.000000px;}
.w0_c00008{width:892.500000px;}
.x0_c00008{left:0.000000px;}
.x1_c00008{left:18.750000px;}
.x2_c00008{left:109.439925px;}
.x3_c00008{left:151.965150px;}
.x4_c00008{left:746.789700px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls1_c00008{letter-spacing:0.000000pt;}
.ls0_c00008{letter-spacing:0.012800pt;}
.ws0_c00008{word-spacing:0.000000pt;}
._3_c00008{width:1.305600pt;}
._2_c00008{width:5.139200pt;}
._4_c00008{width:11.052800pt;}
._5_c00008{width:16.857600pt;}
._6_c00008{width:43.097600pt;}
._7_c00008{width:750.208000pt;}
._1_c00008{width:1019.274667pt;}
._0_c00008{width:1115.274400pt;}
.fs0_c00008{font-size:64.000000pt;}
.y0_c00008{bottom:0.000000pt;}
.y1_c00008{bottom:16.666667pt;}
.y3_c00008{bottom:33.653360pt;}
.y2_c00008{bottom:51.893360pt;}
.ya_c00008{bottom:775.413333pt;}
.y9_c00008{bottom:812.213333pt;}
.y8_c00008{bottom:849.013333pt;}
.y7_c00008{bottom:885.813333pt;}
.y6_c00008{bottom:922.613333pt;}
.y5_c00008{bottom:959.413333pt;}
.y4_c00008{bottom:996.213333pt;}
.h2_c00008{height:57.375000pt;}
.h1_c00008{height:1089.333333pt;}
.h0_c00008{height:1122.666667pt;}
.w1_c00008{width:760.000000pt;}
.w0_c00008{width:793.333333pt;}
.x0_c00008{left:0.000000pt;}
.x1_c00008{left:16.666667pt;}
.x2_c00008{left:97.279933pt;}
.x3_c00008{left:135.080133pt;}
.x4_c00008{left:663.813067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_867a073792e9137f99bf5e80.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.ls1_c00009{letter-spacing:0.000000px;}
.ls0_c00009{letter-spacing:0.036000px;}
.sc__c00009{text-shadow:none;}
.sc0_c00009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00009{-webkit-text-stroke:0px transparent;}
.sc0_c00009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00009{word-spacing:0.000000px;}
._0_c00009{width:2079.683700px;}
.fc0_c00009{color:rgb(0,0,0);}
.fs0_c00009{font-size:72.000000px;}
.y0_c00009{bottom:0.000000px;}
.y1_c00009{bottom:18.750000px;}
.y3_c00009{bottom:37.860030px;}
.y1c_c00009{bottom:127.140030px;}
.y1b_c00009{bottom:168.540000px;}
.y1a_c00009{bottom:209.940000px;}
.y19_c00009{bottom:251.340000px;}
.y18_c00009{bottom:292.740000px;}
.y17_c00009{bottom:334.140000px;}
.y16_c00009{bottom:375.540000px;}
.y15_c00009{bottom:416.940000px;}
.y14_c00009{bottom:458.340000px;}
.y13_c00009{bottom:499.740000px;}
.y12_c00009{bottom:541.140000px;}
.y11_c00009{bottom:582.540000px;}
.y10_c00009{bottom:623.940000px;}
.yf_c00009{bottom:665.340000px;}
.ye_c00009{bottom:706.740000px;}
.yd_c00009{bottom:748.140000px;}
.yc_c00009{bottom:789.540000px;}
.yb_c00009{bottom:830.940000px;}
.ya_c00009{bottom:872.340000px;}
.y9_c00009{bottom:913.740000px;}
.y8_c00009{bottom:955.140000px;}
.y7_c00009{bottom:996.540000px;}
.y6_c00009{bottom:1037.940000px;}
.y5_c00009{bottom:1079.340000px;}
.y4_c00009{bottom:1120.740000px;}
.y2_c00009{bottom:1173.660000px;}
.h2_c00009{height:64.546875px;}
.h1_c00009{height:1225.500000px;}
.h0_c00009{height:1263.000000px;}
.w1_c00009{width:855.000000px;}
.w0_c00009{width:892.500000px;}
.x0_c00009{left:0.000000px;}
.x1_c00009{left:18.750000px;}
.x2_c00009{left:109.439925px;}
.x3_c00009{left:428.114850px;}
.x5_c00009{left:653.757600px;}
.x4_c00009{left:746.789700px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls1_c00009{letter-spacing:0.000000pt;}
.ls0_c00009{letter-spacing:0.032000pt;}
.ws0_c00009{word-spacing:0.000000pt;}
._0_c00009{width:1848.607733pt;}
.fs0_c00009{font-size:64.000000pt;}
.y0_c00009{bottom:0.000000pt;}
.y1_c00009{bottom:16.666667pt;}
.y3_c00009{bottom:33.653360pt;}
.y1c_c00009{bottom:113.013360pt;}
.y1b_c00009{bottom:149.813333pt;}
.y1a_c00009{bottom:186.613333pt;}
.y19_c00009{bottom:223.413333pt;}
.y18_c00009{bottom:260.213333pt;}
.y17_c00009{bottom:297.013333pt;}
.y16_c00009{bottom:333.813333pt;}
.y15_c00009{bottom:370.613333pt;}
.y14_c00009{bottom:407.413333pt;}
.y13_c00009{bottom:444.213333pt;}
.y12_c00009{bottom:481.013333pt;}
.y11_c00009{bottom:517.813333pt;}
.y10_c00009{bottom:554.613333pt;}
.yf_c00009{bottom:591.413333pt;}
.ye_c00009{bottom:628.213333pt;}
.yd_c00009{bottom:665.013333pt;}
.yc_c00009{bottom:701.813333pt;}
.yb_c00009{bottom:738.613333pt;}
.ya_c00009{bottom:775.413333pt;}
.y9_c00009{bottom:812.213333pt;}
.y8_c00009{bottom:849.013333pt;}
.y7_c00009{bottom:885.813333pt;}
.y6_c00009{bottom:922.613333pt;}
.y5_c00009{bottom:959.413333pt;}
.y4_c00009{bottom:996.213333pt;}
.y2_c00009{bottom:1043.253333pt;}
.h2_c00009{height:57.375000pt;}
.h1_c00009{height:1089.333333pt;}
.h0_c00009{height:1122.666667pt;}
.w1_c00009{width:760.000000pt;}
.w0_c00009{width:793.333333pt;}
.x0_c00009{left:0.000000pt;}
.x1_c00009{left:16.666667pt;}
.x2_c00009{left:97.279933pt;}
.x3_c00009{left:380.546533pt;}
.x5_c00009{left:581.117867pt;}
.x4_c00009{left:663.813067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc845accef0beaceb15afc88.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00010{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.ls0_c00010{letter-spacing:0.000000px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00010{word-spacing:0.000000px;}
._2_c00010{width:843.983700px;}
._1_c00010{width:1146.684000px;}
._0_c00010{width:1254.683700px;}
.fc0_c00010{color:rgb(0,0,0);}
.fs0_c00010{font-size:72.000000px;}
.y0_c00010{bottom:0.000000px;}
.y1_c00010{bottom:18.750000px;}
.y3_c00010{bottom:37.860030px;}
.y2_c00010{bottom:58.380030px;}
.y4_c00010{bottom:1120.740000px;}
.h2_c00010{height:64.546875px;}
.h1_c00010{height:1225.500000px;}
.h0_c00010{height:1263.000000px;}
.w1_c00010{width:855.000000px;}
.w0_c00010{width:892.500000px;}
.x0_c00010{left:0.000000px;}
.x1_c00010{left:18.750000px;}
.x2_c00010{left:109.439925px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls0_c00010{letter-spacing:0.000000pt;}
.ws0_c00010{word-spacing:0.000000pt;}
._2_c00010{width:750.207733pt;}
._1_c00010{width:1019.274667pt;}
._0_c00010{width:1115.274400pt;}
.fs0_c00010{font-size:64.000000pt;}
.y0_c00010{bottom:0.000000pt;}
.y1_c00010{bottom:16.666667pt;}
.y3_c00010{bottom:33.653360pt;}
.y2_c00010{bottom:51.893360pt;}
.y4_c00010{bottom:996.213333pt;}
.h2_c00010{height:57.375000pt;}
.h1_c00010{height:1089.333333pt;}
.h0_c00010{height:1122.666667pt;}
.w1_c00010{width:760.000000pt;}
.w0_c00010{width:793.333333pt;}
.x0_c00010{left:0.000000pt;}
.x1_c00010{left:16.666667pt;}
.x2_c00010{left:97.279933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_90f9293ac0a344e9ace1daec.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00011;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00011;src:url('chunks/assets/font_e60fe1e8768c2f72d7b8c321.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls1_c00011{letter-spacing:0.000000px;}
.ls0_c00011{letter-spacing:0.014400px;}
.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:0.000000px;}
._0_c00011{width:2079.683700px;}
.fc0_c00011{color:rgb(0,0,0);}
.fs0_c00011{font-size:72.000000px;}
.y0_c00011{bottom:0.000000px;}
.y1_c00011{bottom:18.750000px;}
.y3_c00011{bottom:37.860030px;}
.y1d_c00011{bottom:116.700030px;}
.y1c_c00011{bottom:158.100000px;}
.y1b_c00011{bottom:199.500000px;}
.y1a_c00011{bottom:240.900000px;}
.y19_c00011{bottom:282.300000px;}
.y18_c00011{bottom:323.700000px;}
.y17_c00011{bottom:365.100000px;}
.y16_c00011{bottom:406.500000px;}
.y15_c00011{bottom:447.900000px;}
.y14_c00011{bottom:489.300000px;}
.y13_c00011{bottom:530.700000px;}
.y12_c00011{bottom:572.100000px;}
.y11_c00011{bottom:613.500000px;}
.y10_c00011{bottom:654.900000px;}
.yf_c00011{bottom:696.300000px;}
.ye_c00011{bottom:737.700000px;}
.yd_c00011{bottom:779.100000px;}
.yc_c00011{bottom:820.500000px;}
.yb_c00011{bottom:861.900000px;}
.ya_c00011{bottom:903.300000px;}
.y9_c00011{bottom:934.260000px;}
.y8_c00011{bottom:965.220000px;}
.y7_c00011{bottom:996.540000px;}
.y6_c00011{bottom:1037.940000px;}
.y5_c00011{bottom:1079.340000px;}
.y4_c00011{bottom:1120.740000px;}
.y2_c00011{bottom:1173.660000px;}
.h4_c00011{height:64.371094px;}
.h2_c00011{height:64.546875px;}
.h3_c00011{height:65.003906px;}
.h1_c00011{height:1225.500000px;}
.h0_c00011{height:1263.000000px;}
.w1_c00011{width:855.000000px;}
.w0_c00011{width:892.500000px;}
.x0_c00011{left:0.000000px;}
.x1_c00011{left:18.750000px;}
.x2_c00011{left:109.439925px;}
.x3_c00011{left:428.114850px;}
.x8_c00011{left:570.700950px;}
.x6_c00011{left:593.675550px;}
.x5_c00011{left:644.704800px;}
.x7_c00011{left:646.735050px;}
.x4_c00011{left:746.789700px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls1_c00011{letter-spacing:0.000000pt;}
.ls0_c00011{letter-spacing:0.012800pt;}
.ws0_c00011{word-spacing:0.000000pt;}
._0_c00011{width:1848.607733pt;}
.fs0_c00011{font-size:64.000000pt;}
.y0_c00011{bottom:0.000000pt;}
.y1_c00011{bottom:16.666667pt;}
.y3_c00011{bottom:33.653360pt;}
.y1d_c00011{bottom:103.733360pt;}
.y1c_c00011{bottom:140.533333pt;}
.y1b_c00011{bottom:177.333333pt;}
.y1a_c00011{bottom:214.133333pt;}
.y19_c00011{bottom:250.933333pt;}
.y18_c00011{bottom:287.733333pt;}
.y17_c00011{bottom:324.533333pt;}
.y16_c00011{bottom:361.333333pt;}
.y15_c00011{bottom:398.133333pt;}
.y14_c00011{bottom:434.933333pt;}
.y13_c00011{bottom:471.733333pt;}
.y12_c00011{bottom:508.533333pt;}
.y11_c00011{bottom:545.333333pt;}
.y10_c00011{bottom:582.133333pt;}
.yf_c00011{bottom:618.933333pt;}
.ye_c00011{bottom:655.733333pt;}
.yd_c00011{bottom:692.533333pt;}
.yc_c00011{bottom:729.333333pt;}
.yb_c00011{bottom:766.133333pt;}
.ya_c00011{bottom:802.933333pt;}
.y9_c00011{bottom:830.453333pt;}
.y8_c00011{bottom:857.973333pt;}
.y7_c00011{bottom:885.813333pt;}
.y6_c00011{bottom:922.613333pt;}
.y5_c00011{bottom:959.413333pt;}
.y4_c00011{bottom:996.213333pt;}
.y2_c00011{bottom:1043.253333pt;}
.h4_c00011{height:57.218750pt;}
.h2_c00011{height:57.375000pt;}
.h3_c00011{height:57.781250pt;}
.h1_c00011{height:1089.333333pt;}
.h0_c00011{height:1122.666667pt;}
.w1_c00011{width:760.000000pt;}
.w0_c00011{width:793.333333pt;}
.x0_c00011{left:0.000000pt;}
.x1_c00011{left:16.666667pt;}
.x2_c00011{left:97.279933pt;}
.x3_c00011{left:380.546533pt;}
.x8_c00011{left:507.289733pt;}
.x6_c00011{left:527.711600pt;}
.x5_c00011{left:573.070933pt;}
.x7_c00011{left:574.875600pt;}
.x4_c00011{left:663.813067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc845accef0beaceb15afc88.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls1_c00012{letter-spacing:0.000000px;}
.ls0_c00012{letter-spacing:843.984000px;}
.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:0.000000px;}
._1_c00012{width:1146.684000px;}
._0_c00012{width:1254.683700px;}
.fc1_c00012{color:transparent;}
.fc0_c00012{color:rgb(0,0,0);}
.fs0_c00012{font-size:72.000000px;}
.fs1_c00012{font-size:83.520000px;}
.y0_c00012{bottom:0.000000px;}
.y1_c00012{bottom:18.750000px;}
.y3_c00012{bottom:37.860030px;}
.y2_c00012{bottom:58.380030px;}
.y4_c00012{bottom:1117.500000px;}
.h2_c00012{height:64.546875px;}
.h3_c00012{height:74.874375px;}
.h1_c00012{height:1225.500000px;}
.h0_c00012{height:1263.000000px;}
.w1_c00012{width:855.000000px;}
.w0_c00012{width:892.500000px;}
.x0_c00012{left:0.000000px;}
.x1_c00012{left:18.750000px;}
.x2_c00012{left:109.439925px;}
.x3_c00012{left:746.789700px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls1_c00012{letter-spacing:0.000000pt;}
.ls0_c00012{letter-spacing:750.208000pt;}
.ws0_c00012{word-spacing:0.000000pt;}
._1_c00012{width:1019.274667pt;}
._0_c00012{width:1115.274400pt;}
.fs0_c00012{font-size:64.000000pt;}
.fs1_c00012{font-size:74.240000pt;}
.y0_c00012{bottom:0.000000pt;}
.y1_c00012{bottom:16.666667pt;}
.y3_c00012{bottom:33.653360pt;}
.y2_c00012{bottom:51.893360pt;}
.y4_c00012{bottom:993.333333pt;}
.h2_c00012{height:57.375000pt;}
.h3_c00012{height:66.555000pt;}
.h1_c00012{height:1089.333333pt;}
.h0_c00012{height:1122.666667pt;}
.w1_c00012{width:760.000000pt;}
.w0_c00012{width:793.333333pt;}
.x0_c00012{left:0.000000pt;}
.x1_c00012{left:16.666667pt;}
.x2_c00012{left:97.279933pt;}
.x3_c00012{left:663.813067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_86e519db82feb6afdc658899.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.106934;font-style:normal;font-weight:normal;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_cdfd7c55b6b6dd21012ade5f.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:0.673828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.ls2_c00013{letter-spacing:-0.014400px;}
.ls1_c00013{letter-spacing:0.000000px;}
.ls0_c00013{letter-spacing:0.014400px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00013{word-spacing:0.000000px;}
._2_c00013{width:1.252800px;}
._3_c00013{width:2.988300px;}
._8_c00013{width:5.140800px;}
._1_c00013{width:6.674400px;}
._6_c00013{width:7.963200px;}
._5_c00013{width:11.556000px;}
._7_c00013{width:13.917600px;}
._a_c00013{width:21.081600px;}
._9_c00013{width:22.975200px;}
._4_c00013{width:30.153600px;}
._b_c00013{width:845.999700px;}
._0_c00013{width:2079.683700px;}
.fc0_c00013{color:rgb(0,0,0);}
.fs0_c00013{font-size:72.000000px;}
.y0_c00013{bottom:0.000000px;}
.y1_c00013{bottom:18.750000px;}
.y3_c00013{bottom:37.860030px;}
.y1b_c00013{bottom:172.860000px;}
.y1a_c00013{bottom:207.060000px;}
.y19_c00013{bottom:241.260000px;}
.y18_c00013{bottom:275.820000px;}
.y17_c00013{bottom:310.020000px;}
.y16_c00013{bottom:351.420000px;}
.y15_c00013{bottom:392.820000px;}
.y14_c00013{bottom:434.220000px;}
.y13_c00013{bottom:475.620000px;}
.y12_c00013{bottom:517.020000px;}
.y11_c00013{bottom:558.420000px;}
.y10_c00013{bottom:599.820000px;}
.yf_c00013{bottom:641.220000px;}
.ye_c00013{bottom:682.620000px;}
.yd_c00013{bottom:724.020000px;}
.yc_c00013{bottom:765.420000px;}
.yb_c00013{bottom:806.820000px;}
.ya_c00013{bottom:848.220000px;}
.y9_c00013{bottom:889.620000px;}
.y8_c00013{bottom:931.020000px;}
.y7_c00013{bottom:972.420000px;}
.y6_c00013{bottom:1013.820000px;}
.y5_c00013{bottom:1066.740000px;}
.y4_c00013{bottom:1120.380000px;}
.y2_c00013{bottom:1173.660000px;}
.h3_c00013{height:47.988281px;}
.h2_c00013{height:64.546875px;}
.h1_c00013{height:1225.500000px;}
.h0_c00013{height:1263.000000px;}
.w1_c00013{width:855.000000px;}
.w0_c00013{width:892.500000px;}
.x0_c00013{left:0.000000px;}
.x1_c00013{left:18.750000px;}
.x2_c00013{left:109.439925px;}
.x4_c00013{left:151.965150px;}
.x3_c00013{left:428.114850px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls2_c00013{letter-spacing:-0.012800pt;}
.ls1_c00013{letter-spacing:0.000000pt;}
.ls0_c00013{letter-spacing:0.012800pt;}
.ws0_c00013{word-spacing:0.000000pt;}
._2_c00013{width:1.113600pt;}
._3_c00013{width:2.656267pt;}
._8_c00013{width:4.569600pt;}
._1_c00013{width:5.932800pt;}
._6_c00013{width:7.078400pt;}
._5_c00013{width:10.272000pt;}
._7_c00013{width:12.371200pt;}
._a_c00013{width:18.739200pt;}
._9_c00013{width:20.422400pt;}
._4_c00013{width:26.803200pt;}
._b_c00013{width:751.999733pt;}
._0_c00013{width:1848.607733pt;}
.fs0_c00013{font-size:64.000000pt;}
.y0_c00013{bottom:0.000000pt;}
.y1_c00013{bottom:16.666667pt;}
.y3_c00013{bottom:33.653360pt;}
.y1b_c00013{bottom:153.653333pt;}
.y1a_c00013{bottom:184.053333pt;}
.y19_c00013{bottom:214.453333pt;}
.y18_c00013{bottom:245.173333pt;}
.y17_c00013{bottom:275.573333pt;}
.y16_c00013{bottom:312.373333pt;}
.y15_c00013{bottom:349.173333pt;}
.y14_c00013{bottom:385.973333pt;}
.y13_c00013{bottom:422.773333pt;}
.y12_c00013{bottom:459.573333pt;}
.y11_c00013{bottom:496.373333pt;}
.y10_c00013{bottom:533.173333pt;}
.yf_c00013{bottom:569.973333pt;}
.ye_c00013{bottom:606.773333pt;}
.yd_c00013{bottom:643.573333pt;}
.yc_c00013{bottom:680.373333pt;}
.yb_c00013{bottom:717.173333pt;}
.ya_c00013{bottom:753.973333pt;}
.y9_c00013{bottom:790.773333pt;}
.y8_c00013{bottom:827.573333pt;}
.y7_c00013{bottom:864.373333pt;}
.y6_c00013{bottom:901.173333pt;}
.y5_c00013{bottom:948.213333pt;}
.y4_c00013{bottom:995.893333pt;}
.y2_c00013{bottom:1043.253333pt;}
.h3_c00013{height:42.656250pt;}
.h2_c00013{height:57.375000pt;}
.h1_c00013{height:1089.333333pt;}
.h0_c00013{height:1122.666667pt;}
.w1_c00013{width:760.000000pt;}
.w0_c00013{width:793.333333pt;}
.x0_c00013{left:0.000000pt;}
.x1_c00013{left:16.666667pt;}
.x2_c00013{left:97.279933pt;}
.x4_c00013{left:135.080133pt;}
.x3_c00013{left:380.546533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc845accef0beaceb15afc88.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.106934;font-style:normal;font-weight:normal;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_cdfd7c55b6b6dd21012ade5f.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:0.673828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00014{vertical-align:0.000000px;}
.ls0_c00014{letter-spacing:0.000000px;}
.sc__c00014{text-shadow:none;}
.sc0_c00014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00014{-webkit-text-stroke:0px transparent;}
.sc0_c00014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00014{word-spacing:0.000000px;}
._2_c00014{width:846.000000px;}
._1_c00014{width:1146.684000px;}
._0_c00014{width:1254.683700px;}
.fc1_c00014{color:transparent;}
.fc0_c00014{color:rgb(0,0,0);}
.fs0_c00014{font-size:72.000000px;}
.y0_c00014{bottom:0.000000px;}
.y1_c00014{bottom:18.750000px;}
.y3_c00014{bottom:37.860030px;}
.y2_c00014{bottom:58.380030px;}
.y4_c00014{bottom:1120.740000px;}
.h3_c00014{height:47.988281px;}
.h2_c00014{height:64.546875px;}
.h1_c00014{height:1225.500000px;}
.h0_c00014{height:1263.000000px;}
.w1_c00014{width:855.000000px;}
.w0_c00014{width:892.500000px;}
.x0_c00014{left:0.000000px;}
.x1_c00014{left:18.750000px;}
.x2_c00014{left:109.439925px;}
.x3_c00014{left:746.789700px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls0_c00014{letter-spacing:0.000000pt;}
.ws0_c00014{word-spacing:0.000000pt;}
._2_c00014{width:752.000000pt;}
._1_c00014{width:1019.274667pt;}
._0_c00014{width:1115.274400pt;}
.fs0_c00014{font-size:64.000000pt;}
.y0_c00014{bottom:0.000000pt;}
.y1_c00014{bottom:16.666667pt;}
.y3_c00014{bottom:33.653360pt;}
.y2_c00014{bottom:51.893360pt;}
.y4_c00014{bottom:996.213333pt;}
.h3_c00014{height:42.656250pt;}
.h2_c00014{height:57.375000pt;}
.h1_c00014{height:1089.333333pt;}
.h0_c00014{height:1122.666667pt;}
.w1_c00014{width:760.000000pt;}
.w0_c00014{width:793.333333pt;}
.x0_c00014{left:0.000000pt;}
.x1_c00014{left:16.666667pt;}
.x2_c00014{left:97.279933pt;}
.x3_c00014{left:663.813067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c11bd93032bfe5a32477a238.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.106934;font-style:normal;font-weight:normal;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_cdfd7c55b6b6dd21012ade5f.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:0.673828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.ls0_c00015{letter-spacing:0.000000px;}
.ls1_c00015{letter-spacing:0.116928px;}
.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:-23.335488px;}
.ws1_c00015{word-spacing:0.000000px;}
._1_c00015{width:845.999700px;}
._0_c00015{width:2079.683700px;}
.fc0_c00015{color:rgb(0,0,0);}
.fs0_c00015{font-size:72.000000px;}
.fs1_c00015{font-size:83.520000px;}
.y0_c00015{bottom:0.000000px;}
.y1_c00015{bottom:18.750000px;}
.y3_c00015{bottom:37.860030px;}
.y13_c00015{bottom:599.460000px;}
.y12_c00015{bottom:636.540000px;}
.y11_c00015{bottom:674.340000px;}
.y10_c00015{bottom:708.540000px;}
.yf_c00015{bottom:742.740000px;}
.ye_c00015{bottom:777.300000px;}
.yd_c00015{bottom:811.500000px;}
.yc_c00015{bottom:846.060000px;}
.yb_c00015{bottom:880.260000px;}
.ya_c00015{bottom:914.460000px;}
.y9_c00015{bottom:949.020000px;}
.y8_c00015{bottom:983.220000px;}
.y7_c00015{bottom:1017.420000px;}
.y6_c00015{bottom:1051.980000px;}
.y5_c00015{bottom:1086.180000px;}
.y4_c00015{bottom:1120.740000px;}
.y2_c00015{bottom:1173.660000px;}
.h3_c00015{height:47.988281px;}
.h2_c00015{height:64.546875px;}
.h4_c00015{height:74.874375px;}
.h1_c00015{height:1225.500000px;}
.h0_c00015{height:1263.000000px;}
.w1_c00015{width:855.000000px;}
.w0_c00015{width:892.500000px;}
.x0_c00015{left:0.000000px;}
.x1_c00015{left:18.750000px;}
.x2_c00015{left:109.439925px;}
.x3_c00015{left:428.114850px;}
.x5_c00015{left:675.617400px;}
.x4_c00015{left:746.789700px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls0_c00015{letter-spacing:0.000000pt;}
.ls1_c00015{letter-spacing:0.103936pt;}
.ws0_c00015{word-spacing:-20.742656pt;}
.ws1_c00015{word-spacing:0.000000pt;}
._1_c00015{width:751.999733pt;}
._0_c00015{width:1848.607733pt;}
.fs0_c00015{font-size:64.000000pt;}
.fs1_c00015{font-size:74.240000pt;}
.y0_c00015{bottom:0.000000pt;}
.y1_c00015{bottom:16.666667pt;}
.y3_c00015{bottom:33.653360pt;}
.y13_c00015{bottom:532.853333pt;}
.y12_c00015{bottom:565.813333pt;}
.y11_c00015{bottom:599.413333pt;}
.y10_c00015{bottom:629.813333pt;}
.yf_c00015{bottom:660.213333pt;}
.ye_c00015{bottom:690.933333pt;}
.yd_c00015{bottom:721.333333pt;}
.yc_c00015{bottom:752.053333pt;}
.yb_c00015{bottom:782.453333pt;}
.ya_c00015{bottom:812.853333pt;}
.y9_c00015{bottom:843.573333pt;}
.y8_c00015{bottom:873.973333pt;}
.y7_c00015{bottom:904.373333pt;}
.y6_c00015{bottom:935.093333pt;}
.y5_c00015{bottom:965.493333pt;}
.y4_c00015{bottom:996.213333pt;}
.y2_c00015{bottom:1043.253333pt;}
.h3_c00015{height:42.656250pt;}
.h2_c00015{height:57.375000pt;}
.h4_c00015{height:66.555000pt;}
.h1_c00015{height:1089.333333pt;}
.h0_c00015{height:1122.666667pt;}
.w1_c00015{width:760.000000pt;}
.w0_c00015{width:793.333333pt;}
.x0_c00015{left:0.000000pt;}
.x1_c00015{left:16.666667pt;}
.x2_c00015{left:97.279933pt;}
.x3_c00015{left:380.546533pt;}
.x5_c00015{left:600.548800pt;}
.x4_c00015{left:663.813067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc845accef0beaceb15afc88.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00016;src:url('chunks/assets/font_cdfd7c55b6b6dd21012ade5f.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:0.673828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.ls0_c00016{letter-spacing:0.000000px;}
.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:0.000000px;}
._1_c00016{width:1146.684000px;}
._0_c00016{width:1254.683700px;}
.fc0_c00016{color:rgb(0,0,0);}
.fs0_c00016{font-size:72.000000px;}
.y0_c00016{bottom:0.000000px;}
.y1_c00016{bottom:18.750000px;}
.y3_c00016{bottom:37.860030px;}
.y2_c00016{bottom:58.380030px;}
.y5_c00016{bottom:1086.180000px;}
.y4_c00016{bottom:1120.740000px;}
.h3_c00016{height:47.988281px;}
.h2_c00016{height:64.546875px;}
.h1_c00016{height:1225.500000px;}
.h0_c00016{height:1263.000000px;}
.w1_c00016{width:855.000000px;}
.w0_c00016{width:892.500000px;}
.x0_c00016{left:0.000000px;}
.x1_c00016{left:18.750000px;}
.x2_c00016{left:109.439925px;}
.x3_c00016{left:746.789700px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls0_c00016{letter-spacing:0.000000pt;}
.ws0_c00016{word-spacing:0.000000pt;}
._1_c00016{width:1019.274667pt;}
._0_c00016{width:1115.274400pt;}
.fs0_c00016{font-size:64.000000pt;}
.y0_c00016{bottom:0.000000pt;}
.y1_c00016{bottom:16.666667pt;}
.y3_c00016{bottom:33.653360pt;}
.y2_c00016{bottom:51.893360pt;}
.y5_c00016{bottom:965.493333pt;}
.y4_c00016{bottom:996.213333pt;}
.h3_c00016{height:42.656250pt;}
.h2_c00016{height:57.375000pt;}
.h1_c00016{height:1089.333333pt;}
.h0_c00016{height:1122.666667pt;}
.w1_c00016{width:760.000000pt;}
.w0_c00016{width:793.333333pt;}
.x0_c00016{left:0.000000pt;}
.x1_c00016{left:16.666667pt;}
.x2_c00016{left:97.279933pt;}
.x3_c00016{left:663.813067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_60a77fc52b784f9b964827d7.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00017;src:url('chunks/assets/font_e6ef1d1a9e725e083d5891e5.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00017{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00017{vertical-align:0.000000px;}
.lsb_c00017{letter-spacing:-0.014400px;}
.lsa_c00017{letter-spacing:0.000000px;}
.ls6_c00017{letter-spacing:0.000600px;}
.ls1_c00017{letter-spacing:0.010740px;}
.ls4_c00017{letter-spacing:0.010980px;}
.ls3_c00017{letter-spacing:0.011400px;}
.ls0_c00017{letter-spacing:0.014400px;}
.lsc_c00017{letter-spacing:0.036000px;}
.ls2_c00017{letter-spacing:9.987000px;}
.ls8_c00017{letter-spacing:825.270000px;}
.ls9_c00017{letter-spacing:1215.218400px;}
.ls5_c00017{letter-spacing:1285.465800px;}
.ls7_c00017{letter-spacing:1657.735200px;}
.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;}
}
.ws2_c00017{word-spacing:-20.052000px;}
.ws1_c00017{word-spacing:-20.030400px;}
.ws0_c00017{word-spacing:-20.016000px;}
.ws3_c00017{word-spacing:0.000000px;}
._1c_c00017{margin-left:-1.001400px;}
._13_c00017{width:1.548000px;}
._1b_c00017{width:3.557400px;}
._5_c00017{width:8.598000px;}
._7_c00017{width:9.900540px;}
._19_c00017{width:14.947200px;}
._f_c00017{width:17.231400px;}
._12_c00017{width:21.407400px;}
._1a_c00017{width:23.378400px;}
._18_c00017{width:187.277100px;}
._3_c00017{width:277.582800px;}
._a_c00017{width:450.322200px;}
._10_c00017{width:459.246600px;}
._9_c00017{width:573.759000px;}
._11_c00017{width:615.889800px;}
._d_c00017{width:742.397400px;}
._15_c00017{width:813.743400px;}
._e_c00017{width:822.706200px;}
._6_c00017{width:832.964400px;}
._8_c00017{width:1057.762800px;}
._17_c00017{width:1117.191600px;}
._c_c00017{width:1338.946200px;}
._4_c00017{width:1367.645100px;}
._b_c00017{width:1402.810200px;}
._16_c00017{width:1447.640520px;}
._2_c00017{width:1579.541100px;}
._14_c00017{width:1620.419400px;}
._1_c00017{width:1843.881300px;}
._0_c00017{width:2079.683700px;}
.fc1_c00017{color:transparent;}
.fc0_c00017{color:rgb(0,0,0);}
.fs0_c00017{font-size:72.000000px;}
.y0_c00017{bottom:0.000000px;}
.y5_c00017{bottom:4.320000px;}
.y1_c00017{bottom:18.750000px;}
.y3_c00017{bottom:37.860030px;}
.y4_c00017{bottom:52.290030px;}
.y25_c00017{bottom:104.100030px;}
.y24_c00017{bottom:135.060000px;}
.y23_c00017{bottom:166.380000px;}
.y22_c00017{bottom:197.340000px;}
.y21_c00017{bottom:228.300000px;}
.y20_c00017{bottom:259.260000px;}
.y1f_c00017{bottom:290.580000px;}
.y1e_c00017{bottom:321.540000px;}
.y1d_c00017{bottom:352.500000px;}
.y1c_c00017{bottom:383.460000px;}
.y1b_c00017{bottom:423.420000px;}
.y1a_c00017{bottom:472.740000px;}
.y19_c00017{bottom:503.700000px;}
.y18_c00017{bottom:534.660000px;}
.y17_c00017{bottom:565.620000px;}
.y16_c00017{bottom:596.940000px;}
.y15_c00017{bottom:627.900000px;}
.y14_c00017{bottom:658.860000px;}
.y13_c00017{bottom:689.820000px;}
.y12_c00017{bottom:721.140000px;}
.y11_c00017{bottom:752.100000px;}
.y10_c00017{bottom:783.060000px;}
.yf_c00017{bottom:814.020000px;}
.ye_c00017{bottom:845.340000px;}
.yd_c00017{bottom:876.300000px;}
.yc_c00017{bottom:907.260000px;}
.yb_c00017{bottom:938.220000px;}
.ya_c00017{bottom:969.540000px;}
.y9_c00017{bottom:1000.500000px;}
.y8_c00017{bottom:1040.460000px;}
.y7_c00017{bottom:1089.420000px;}
.y6_c00017{bottom:1120.740000px;}
.y2_c00017{bottom:1173.660000px;}
.h3_c00017{height:20.880000px;}
.h2_c00017{height:64.546875px;}
.h4_c00017{height:65.003906px;}
.h1_c00017{height:1225.500000px;}
.h0_c00017{height:1263.000000px;}
.w2_c00017{width:10.080002px;}
.w1_c00017{width:855.000000px;}
.w0_c00017{width:892.500000px;}
.x0_c00017{left:0.000000px;}
.x1_c00017{left:18.750000px;}
.x2_c00017{left:109.439925px;}
.x5_c00017{left:130.739865px;}
.x3_c00017{left:136.440000px;}
.x7_c00017{left:151.965150px;}
.x6_c00017{left:173.265000px;}
.x8_c00017{left:247.664850px;}
.x4_c00017{left:755.670000px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.lsb_c00017{letter-spacing:-0.012800pt;}
.lsa_c00017{letter-spacing:0.000000pt;}
.ls6_c00017{letter-spacing:0.000533pt;}
.ls1_c00017{letter-spacing:0.009547pt;}
.ls4_c00017{letter-spacing:0.009760pt;}
.ls3_c00017{letter-spacing:0.010133pt;}
.ls0_c00017{letter-spacing:0.012800pt;}
.lsc_c00017{letter-spacing:0.032000pt;}
.ls2_c00017{letter-spacing:8.877333pt;}
.ls8_c00017{letter-spacing:733.573333pt;}
.ls9_c00017{letter-spacing:1080.194133pt;}
.ls5_c00017{letter-spacing:1142.636267pt;}
.ls7_c00017{letter-spacing:1473.542400pt;}
.ws2_c00017{word-spacing:-17.824000pt;}
.ws1_c00017{word-spacing:-17.804800pt;}
.ws0_c00017{word-spacing:-17.792000pt;}
.ws3_c00017{word-spacing:0.000000pt;}
._1c_c00017{margin-left:-0.890133pt;}
._13_c00017{width:1.376000pt;}
._1b_c00017{width:3.162133pt;}
._5_c00017{width:7.642667pt;}
._7_c00017{width:8.800480pt;}
._19_c00017{width:13.286400pt;}
._f_c00017{width:15.316800pt;}
._12_c00017{width:19.028800pt;}
._1a_c00017{width:20.780800pt;}
._18_c00017{width:166.468533pt;}
._3_c00017{width:246.740267pt;}
._a_c00017{width:400.286400pt;}
._10_c00017{width:408.219200pt;}
._9_c00017{width:510.008000pt;}
._11_c00017{width:547.457600pt;}
._d_c00017{width:659.908800pt;}
._15_c00017{width:723.327467pt;}
._e_c00017{width:731.294400pt;}
._6_c00017{width:740.412800pt;}
._8_c00017{width:940.233600pt;}
._17_c00017{width:993.059200pt;}
._c_c00017{width:1190.174400pt;}
._4_c00017{width:1215.684533pt;}
._b_c00017{width:1246.942400pt;}
._16_c00017{width:1286.791573pt;}
._2_c00017{width:1404.036533pt;}
._14_c00017{width:1440.372800pt;}
._1_c00017{width:1639.005600pt;}
._0_c00017{width:1848.607733pt;}
.fs0_c00017{font-size:64.000000pt;}
.y0_c00017{bottom:0.000000pt;}
.y5_c00017{bottom:3.840000pt;}
.y1_c00017{bottom:16.666667pt;}
.y3_c00017{bottom:33.653360pt;}
.y4_c00017{bottom:46.480027pt;}
.y25_c00017{bottom:92.533360pt;}
.y24_c00017{bottom:120.053333pt;}
.y23_c00017{bottom:147.893333pt;}
.y22_c00017{bottom:175.413333pt;}
.y21_c00017{bottom:202.933333pt;}
.y20_c00017{bottom:230.453333pt;}
.y1f_c00017{bottom:258.293333pt;}
.y1e_c00017{bottom:285.813333pt;}
.y1d_c00017{bottom:313.333333pt;}
.y1c_c00017{bottom:340.853333pt;}
.y1b_c00017{bottom:376.373333pt;}
.y1a_c00017{bottom:420.213333pt;}
.y19_c00017{bottom:447.733333pt;}
.y18_c00017{bottom:475.253333pt;}
.y17_c00017{bottom:502.773333pt;}
.y16_c00017{bottom:530.613333pt;}
.y15_c00017{bottom:558.133333pt;}
.y14_c00017{bottom:585.653333pt;}
.y13_c00017{bottom:613.173333pt;}
.y12_c00017{bottom:641.013333pt;}
.y11_c00017{bottom:668.533333pt;}
.y10_c00017{bottom:696.053333pt;}
.yf_c00017{bottom:723.573333pt;}
.ye_c00017{bottom:751.413333pt;}
.yd_c00017{bottom:778.933333pt;}
.yc_c00017{bottom:806.453333pt;}
.yb_c00017{bottom:833.973333pt;}
.ya_c00017{bottom:861.813333pt;}
.y9_c00017{bottom:889.333333pt;}
.y8_c00017{bottom:924.853333pt;}
.y7_c00017{bottom:968.373333pt;}
.y6_c00017{bottom:996.213333pt;}
.y2_c00017{bottom:1043.253333pt;}
.h3_c00017{height:18.560000pt;}
.h2_c00017{height:57.375000pt;}
.h4_c00017{height:57.781250pt;}
.h1_c00017{height:1089.333333pt;}
.h0_c00017{height:1122.666667pt;}
.w2_c00017{width:8.960001pt;}
.w1_c00017{width:760.000000pt;}
.w0_c00017{width:793.333333pt;}
.x0_c00017{left:0.000000pt;}
.x1_c00017{left:16.666667pt;}
.x2_c00017{left:97.279933pt;}
.x5_c00017{left:116.213213pt;}
.x3_c00017{left:121.280000pt;}
.x7_c00017{left:135.080133pt;}
.x6_c00017{left:154.013333pt;}
.x8_c00017{left:220.146533pt;}
.x4_c00017{left:671.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_490f82b2ab5d48d622a6ae91.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00018;src:url('chunks/assets/font_b2c5d917c2d9057c2ca14447.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.ls5_c00018{letter-spacing:-0.014400px;}
.ls4_c00018{letter-spacing:0.000000px;}
.ls1_c00018{letter-spacing:0.010740px;}
.ls3_c00018{letter-spacing:0.010800px;}
.ls2_c00018{letter-spacing:0.011400px;}
.ls0_c00018{letter-spacing:0.014400px;}
.ls6_c00018{letter-spacing:0.036000px;}
.sc__c00018{text-shadow:none;}
.sc0_c00018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00018{-webkit-text-stroke:0px transparent;}
.sc0_c00018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00018{word-spacing:-20.030400px;}
.ws2_c00018{word-spacing:-20.026800px;}
.ws3_c00018{word-spacing:-20.016000px;}
.ws1_c00018{word-spacing:-20.001600px;}
.ws4_c00018{word-spacing:0.000000px;}
._b_c00018{width:1.008000px;}
._11_c00018{width:4.105380px;}
._9_c00018{width:5.106960px;}
._3_c00018{width:10.019400px;}
._16_c00018{width:14.683800px;}
._15_c00018{width:17.429400px;}
._a_c00018{width:21.016800px;}
._1_c00018{width:29.930940px;}
._1f_c00018{width:190.117200px;}
._19_c00018{width:192.683400px;}
._1a_c00018{width:235.284600px;}
._d_c00018{width:333.085140px;}
._25_c00018{width:345.896400px;}
._24_c00018{width:349.496400px;}
._23_c00018{width:390.349200px;}
._6_c00018{width:448.272000px;}
._20_c00018{width:550.333200px;}
._22_c00018{width:591.139800px;}
._8_c00018{width:628.416000px;}
._1b_c00018{width:682.453200px;}
._1e_c00018{width:738.541200px;}
._1c_c00018{width:842.250000px;}
._7_c00018{width:864.432000px;}
._1d_c00018{width:974.629200px;}
._12_c00018{width:1013.482800px;}
._5_c00018{width:1016.640000px;}
._21_c00018{width:1058.494800px;}
._18_c00018{width:1074.651600px;}
._14_c00018{width:1076.511600px;}
._10_c00018{width:1096.630740px;}
._17_c00018{width:1133.953200px;}
._0_c00018{width:1146.683400px;}
._13_c00018{width:1153.398540px;}
._e_c00018{width:1325.360340px;}
._4_c00018{width:1327.584600px;}
._2_c00018{width:1339.536600px;}
._f_c00018{width:1465.429140px;}
._c_c00018{width:1909.885140px;}
.fc1_c00018{color:transparent;}
.fc0_c00018{color:rgb(0,0,0);}
.fs0_c00018{font-size:72.000000px;}
.y0_c00018{bottom:0.000000px;}
.y4_c00018{bottom:4.320000px;}
.y1_c00018{bottom:18.750000px;}
.y2_c00018{bottom:37.860030px;}
.y3_c00018{bottom:52.290030px;}
.y25_c00018{bottom:100.140030px;}
.y24_c00018{bottom:131.100030px;}
.y23_c00018{bottom:162.060000px;}
.y22_c00018{bottom:193.380000px;}
.y21_c00018{bottom:224.340000px;}
.y20_c00018{bottom:255.300000px;}
.y1f_c00018{bottom:286.260000px;}
.y1e_c00018{bottom:317.580000px;}
.y1d_c00018{bottom:348.540000px;}
.y1c_c00018{bottom:379.500000px;}
.y1b_c00018{bottom:410.460000px;}
.y1a_c00018{bottom:441.420000px;}
.y19_c00018{bottom:472.740000px;}
.y18_c00018{bottom:503.700000px;}
.y17_c00018{bottom:534.660000px;}
.y16_c00018{bottom:565.620000px;}
.y15_c00018{bottom:596.940000px;}
.y14_c00018{bottom:627.900000px;}
.y13_c00018{bottom:658.860000px;}
.y12_c00018{bottom:689.820000px;}
.y11_c00018{bottom:721.140000px;}
.y10_c00018{bottom:752.100000px;}
.yf_c00018{bottom:783.060000px;}
.ye_c00018{bottom:814.020000px;}
.yd_c00018{bottom:845.340000px;}
.yc_c00018{bottom:876.300000px;}
.yb_c00018{bottom:916.260000px;}
.ya_c00018{bottom:965.220000px;}
.y9_c00018{bottom:996.540000px;}
.y8_c00018{bottom:1027.500000px;}
.y7_c00018{bottom:1058.460000px;}
.y6_c00018{bottom:1089.420000px;}
.y5_c00018{bottom:1120.740000px;}
.h3_c00018{height:20.880000px;}
.h2_c00018{height:64.546875px;}
.h4_c00018{height:65.003906px;}
.h1_c00018{height:1225.500000px;}
.h0_c00018{height:1263.000000px;}
.w2_c00018{width:10.080002px;}
.w1_c00018{width:855.000000px;}
.w0_c00018{width:892.500000px;}
.x0_c00018{left:0.000000px;}
.x1_c00018{left:18.750000px;}
.x6_c00018{left:109.439925px;}
.x3_c00018{left:128.190000px;}
.x4_c00018{left:130.739865px;}
.x2_c00018{left:136.440000px;}
.x5_c00018{left:151.965150px;}
.x7_c00018{left:162.614850px;}
.x8_c00018{left:173.265000px;}
.xa_c00018{left:194.489850px;}
.x9_c00018{left:247.664850px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls5_c00018{letter-spacing:-0.012800pt;}
.ls4_c00018{letter-spacing:0.000000pt;}
.ls1_c00018{letter-spacing:0.009547pt;}
.ls3_c00018{letter-spacing:0.009600pt;}
.ls2_c00018{letter-spacing:0.010133pt;}
.ls0_c00018{letter-spacing:0.012800pt;}
.ls6_c00018{letter-spacing:0.032000pt;}
.ws0_c00018{word-spacing:-17.804800pt;}
.ws2_c00018{word-spacing:-17.801600pt;}
.ws3_c00018{word-spacing:-17.792000pt;}
.ws1_c00018{word-spacing:-17.779200pt;}
.ws4_c00018{word-spacing:0.000000pt;}
._b_c00018{width:0.896000pt;}
._11_c00018{width:3.649227pt;}
._9_c00018{width:4.539520pt;}
._3_c00018{width:8.906133pt;}
._16_c00018{width:13.052267pt;}
._15_c00018{width:15.492800pt;}
._a_c00018{width:18.681600pt;}
._1_c00018{width:26.605280pt;}
._1f_c00018{width:168.993067pt;}
._19_c00018{width:171.274133pt;}
._1a_c00018{width:209.141867pt;}
._d_c00018{width:296.075680pt;}
._25_c00018{width:307.463467pt;}
._24_c00018{width:310.663467pt;}
._23_c00018{width:346.977067pt;}
._6_c00018{width:398.464000pt;}
._20_c00018{width:489.185067pt;}
._22_c00018{width:525.457600pt;}
._8_c00018{width:558.592000pt;}
._1b_c00018{width:606.625067pt;}
._1e_c00018{width:656.481067pt;}
._1c_c00018{width:748.666667pt;}
._7_c00018{width:768.384000pt;}
._1d_c00018{width:866.337067pt;}
._12_c00018{width:900.873600pt;}
._5_c00018{width:903.680000pt;}
._21_c00018{width:940.884267pt;}
._18_c00018{width:955.245867pt;}
._14_c00018{width:956.899200pt;}
._10_c00018{width:974.782880pt;}
._17_c00018{width:1007.958400pt;}
._0_c00018{width:1019.274133pt;}
._13_c00018{width:1025.243147pt;}
._e_c00018{width:1178.098080pt;}
._4_c00018{width:1180.075200pt;}
._2_c00018{width:1190.699200pt;}
._f_c00018{width:1302.603680pt;}
._c_c00018{width:1697.675680pt;}
.fs0_c00018{font-size:64.000000pt;}
.y0_c00018{bottom:0.000000pt;}
.y4_c00018{bottom:3.840000pt;}
.y1_c00018{bottom:16.666667pt;}
.y2_c00018{bottom:33.653360pt;}
.y3_c00018{bottom:46.480027pt;}
.y25_c00018{bottom:89.013360pt;}
.y24_c00018{bottom:116.533360pt;}
.y23_c00018{bottom:144.053333pt;}
.y22_c00018{bottom:171.893333pt;}
.y21_c00018{bottom:199.413333pt;}
.y20_c00018{bottom:226.933333pt;}
.y1f_c00018{bottom:254.453333pt;}
.y1e_c00018{bottom:282.293333pt;}
.y1d_c00018{bottom:309.813333pt;}
.y1c_c00018{bottom:337.333333pt;}
.y1b_c00018{bottom:364.853333pt;}
.y1a_c00018{bottom:392.373333pt;}
.y19_c00018{bottom:420.213333pt;}
.y18_c00018{bottom:447.733333pt;}
.y17_c00018{bottom:475.253333pt;}
.y16_c00018{bottom:502.773333pt;}
.y15_c00018{bottom:530.613333pt;}
.y14_c00018{bottom:558.133333pt;}
.y13_c00018{bottom:585.653333pt;}
.y12_c00018{bottom:613.173333pt;}
.y11_c00018{bottom:641.013333pt;}
.y10_c00018{bottom:668.533333pt;}
.yf_c00018{bottom:696.053333pt;}
.ye_c00018{bottom:723.573333pt;}
.yd_c00018{bottom:751.413333pt;}
.yc_c00018{bottom:778.933333pt;}
.yb_c00018{bottom:814.453333pt;}
.ya_c00018{bottom:857.973333pt;}
.y9_c00018{bottom:885.813333pt;}
.y8_c00018{bottom:913.333333pt;}
.y7_c00018{bottom:940.853333pt;}
.y6_c00018{bottom:968.373333pt;}
.y5_c00018{bottom:996.213333pt;}
.h3_c00018{height:18.560000pt;}
.h2_c00018{height:57.375000pt;}
.h4_c00018{height:57.781250pt;}
.h1_c00018{height:1089.333333pt;}
.h0_c00018{height:1122.666667pt;}
.w2_c00018{width:8.960001pt;}
.w1_c00018{width:760.000000pt;}
.w0_c00018{width:793.333333pt;}
.x0_c00018{left:0.000000pt;}
.x1_c00018{left:16.666667pt;}
.x6_c00018{left:97.279933pt;}
.x3_c00018{left:113.946667pt;}
.x4_c00018{left:116.213213pt;}
.x2_c00018{left:121.280000pt;}
.x5_c00018{left:135.080133pt;}
.x7_c00018{left:144.546533pt;}
.x8_c00018{left:154.013333pt;}
.xa_c00018{left:172.879867pt;}
.x9_c00018{left:220.146533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10171730c67c297cb1a0454a.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00019{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.ls6_c00019{letter-spacing:-0.021600px;}
.ls4_c00019{letter-spacing:-0.014400px;}
.ls3_c00019{letter-spacing:0.000000px;}
.ls0_c00019{letter-spacing:0.010800px;}
.ls1_c00019{letter-spacing:0.014400px;}
.ls5_c00019{letter-spacing:0.036000px;}
.ls7_c00019{letter-spacing:0.885600px;}
.ls2_c00019{letter-spacing:1091.151600px;}
.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;}
}
.ws3_c00019{word-spacing:-20.052000px;}
.ws0_c00019{word-spacing:-20.030400px;}
.ws1_c00019{word-spacing:-20.026800px;}
.ws4_c00019{word-spacing:-20.016000px;}
.ws2_c00019{word-spacing:-20.001600px;}
.ws5_c00019{word-spacing:0.000000px;}
._14_c00019{margin-left:-11.551200px;}
._4_c00019{margin-left:-5.168400px;}
._8_c00019{width:1.022400px;}
._18_c00019{width:2.358600px;}
._15_c00019{width:5.875200px;}
._11_c00019{width:7.927200px;}
._5_c00019{width:11.700000px;}
._f_c00019{width:14.918400px;}
._1c_c00019{width:21.168600px;}
._1b_c00019{width:37.219200px;}
._1a_c00019{width:38.359200px;}
._7_c00019{width:59.088600px;}
._2_c00019{width:192.683400px;}
._3_c00019{width:235.284600px;}
._1e_c00019{width:330.157200px;}
._1f_c00019{width:393.459600px;}
._1_c00019{width:459.264600px;}
._21_c00019{width:606.349200px;}
._9_c00019{width:650.470800px;}
._b_c00019{width:694.477200px;}
._20_c00019{width:713.787600px;}
._13_c00019{width:748.267800px;}
._a_c00019{width:754.525200px;}
._c_c00019{width:806.509200px;}
._12_c00019{width:934.381200px;}
._1d_c00019{width:1041.534000px;}
._e_c00019{width:1079.256600px;}
._19_c00019{width:1093.719600px;}
._10_c00019{width:1174.587600px;}
._6_c00019{width:1416.557400px;}
._d_c00019{width:1504.627200px;}
._16_c00019{width:1534.129200px;}
._17_c00019{width:1622.113200px;}
._0_c00019{width:2079.683700px;}
.fc1_c00019{color:transparent;}
.fc0_c00019{color:rgb(0,0,0);}
.fs0_c00019{font-size:72.000000px;}
.y0_c00019{bottom:0.000000px;}
.y5_c00019{bottom:4.320000px;}
.y1_c00019{bottom:18.750000px;}
.y3_c00019{bottom:37.860030px;}
.y4_c00019{bottom:52.290030px;}
.y27_c00019{bottom:96.180030px;}
.y26_c00019{bottom:127.140030px;}
.y25_c00019{bottom:158.100000px;}
.y24_c00019{bottom:189.060000px;}
.y23_c00019{bottom:220.380000px;}
.y22_c00019{bottom:251.340000px;}
.y21_c00019{bottom:282.300000px;}
.y20_c00019{bottom:313.260000px;}
.y1f_c00019{bottom:344.580000px;}
.y1e_c00019{bottom:375.540000px;}
.y1d_c00019{bottom:406.500000px;}
.y1c_c00019{bottom:437.460000px;}
.y1b_c00019{bottom:468.420000px;}
.y1a_c00019{bottom:499.740000px;}
.y19_c00019{bottom:530.700000px;}
.y18_c00019{bottom:561.660000px;}
.y17_c00019{bottom:592.620000px;}
.y16_c00019{bottom:623.940000px;}
.y15_c00019{bottom:654.900000px;}
.y14_c00019{bottom:685.860000px;}
.y13_c00019{bottom:716.820000px;}
.y12_c00019{bottom:748.140000px;}
.y11_c00019{bottom:779.100000px;}
.y10_c00019{bottom:810.060000px;}
.yf_c00019{bottom:841.020000px;}
.ye_c00019{bottom:872.340000px;}
.yd_c00019{bottom:903.300000px;}
.yc_c00019{bottom:934.260000px;}
.yb_c00019{bottom:965.220000px;}
.ya_c00019{bottom:996.540000px;}
.y9_c00019{bottom:1027.500000px;}
.y8_c00019{bottom:1058.460000px;}
.y7_c00019{bottom:1089.420000px;}
.y6_c00019{bottom:1120.740000px;}
.y2_c00019{bottom:1173.660000px;}
.h3_c00019{height:20.880000px;}
.h2_c00019{height:64.546875px;}
.h1_c00019{height:1225.500000px;}
.h0_c00019{height:1263.000000px;}
.w2_c00019{width:10.080002px;}
.w1_c00019{width:855.000000px;}
.w0_c00019{width:892.500000px;}
.x0_c00019{left:0.000000px;}
.x1_c00019{left:18.750000px;}
.x2_c00019{left:109.439925px;}
.x3_c00019{left:136.440000px;}
.x9_c00019{left:151.965150px;}
.x5_c00019{left:173.265000px;}
.x7_c00019{left:194.489850px;}
.x8_c00019{left:226.439850px;}
.x6_c00019{left:237.015000px;}
.xb_c00019{left:247.664850px;}
.xa_c00019{left:279.539850px;}
.x4_c00019{left:755.670000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls6_c00019{letter-spacing:-0.019200pt;}
.ls4_c00019{letter-spacing:-0.012800pt;}
.ls3_c00019{letter-spacing:0.000000pt;}
.ls0_c00019{letter-spacing:0.009600pt;}
.ls1_c00019{letter-spacing:0.012800pt;}
.ls5_c00019{letter-spacing:0.032000pt;}
.ls7_c00019{letter-spacing:0.787200pt;}
.ls2_c00019{letter-spacing:969.912533pt;}
.ws3_c00019{word-spacing:-17.824000pt;}
.ws0_c00019{word-spacing:-17.804800pt;}
.ws1_c00019{word-spacing:-17.801600pt;}
.ws4_c00019{word-spacing:-17.792000pt;}
.ws2_c00019{word-spacing:-17.779200pt;}
.ws5_c00019{word-spacing:0.000000pt;}
._14_c00019{margin-left:-10.267733pt;}
._4_c00019{margin-left:-4.594133pt;}
._8_c00019{width:0.908800pt;}
._18_c00019{width:2.096533pt;}
._15_c00019{width:5.222400pt;}
._11_c00019{width:7.046400pt;}
._5_c00019{width:10.400000pt;}
._f_c00019{width:13.260800pt;}
._1c_c00019{width:18.816533pt;}
._1b_c00019{width:33.083733pt;}
._1a_c00019{width:34.097067pt;}
._7_c00019{width:52.523200pt;}
._2_c00019{width:171.274133pt;}
._3_c00019{width:209.141867pt;}
._1e_c00019{width:293.473067pt;}
._1f_c00019{width:349.741867pt;}
._1_c00019{width:408.235200pt;}
._21_c00019{width:538.977067pt;}
._9_c00019{width:578.196267pt;}
._b_c00019{width:617.313067pt;}
._20_c00019{width:634.477867pt;}
._13_c00019{width:665.126933pt;}
._a_c00019{width:670.689067pt;}
._c_c00019{width:716.897067pt;}
._12_c00019{width:830.561067pt;}
._1d_c00019{width:925.808000pt;}
._e_c00019{width:959.339200pt;}
._19_c00019{width:972.195200pt;}
._10_c00019{width:1044.077867pt;}
._6_c00019{width:1259.162133pt;}
._d_c00019{width:1337.446400pt;}
._16_c00019{width:1363.670400pt;}
._17_c00019{width:1441.878400pt;}
._0_c00019{width:1848.607733pt;}
.fs0_c00019{font-size:64.000000pt;}
.y0_c00019{bottom:0.000000pt;}
.y5_c00019{bottom:3.840000pt;}
.y1_c00019{bottom:16.666667pt;}
.y3_c00019{bottom:33.653360pt;}
.y4_c00019{bottom:46.480027pt;}
.y27_c00019{bottom:85.493360pt;}
.y26_c00019{bottom:113.013360pt;}
.y25_c00019{bottom:140.533333pt;}
.y24_c00019{bottom:168.053333pt;}
.y23_c00019{bottom:195.893333pt;}
.y22_c00019{bottom:223.413333pt;}
.y21_c00019{bottom:250.933333pt;}
.y20_c00019{bottom:278.453333pt;}
.y1f_c00019{bottom:306.293333pt;}
.y1e_c00019{bottom:333.813333pt;}
.y1d_c00019{bottom:361.333333pt;}
.y1c_c00019{bottom:388.853333pt;}
.y1b_c00019{bottom:416.373333pt;}
.y1a_c00019{bottom:444.213333pt;}
.y19_c00019{bottom:471.733333pt;}
.y18_c00019{bottom:499.253333pt;}
.y17_c00019{bottom:526.773333pt;}
.y16_c00019{bottom:554.613333pt;}
.y15_c00019{bottom:582.133333pt;}
.y14_c00019{bottom:609.653333pt;}
.y13_c00019{bottom:637.173333pt;}
.y12_c00019{bottom:665.013333pt;}
.y11_c00019{bottom:692.533333pt;}
.y10_c00019{bottom:720.053333pt;}
.yf_c00019{bottom:747.573333pt;}
.ye_c00019{bottom:775.413333pt;}
.yd_c00019{bottom:802.933333pt;}
.yc_c00019{bottom:830.453333pt;}
.yb_c00019{bottom:857.973333pt;}
.ya_c00019{bottom:885.813333pt;}
.y9_c00019{bottom:913.333333pt;}
.y8_c00019{bottom:940.853333pt;}
.y7_c00019{bottom:968.373333pt;}
.y6_c00019{bottom:996.213333pt;}
.y2_c00019{bottom:1043.253333pt;}
.h3_c00019{height:18.560000pt;}
.h2_c00019{height:57.375000pt;}
.h1_c00019{height:1089.333333pt;}
.h0_c00019{height:1122.666667pt;}
.w2_c00019{width:8.960001pt;}
.w1_c00019{width:760.000000pt;}
.w0_c00019{width:793.333333pt;}
.x0_c00019{left:0.000000pt;}
.x1_c00019{left:16.666667pt;}
.x2_c00019{left:97.279933pt;}
.x3_c00019{left:121.280000pt;}
.x9_c00019{left:135.080133pt;}
.x5_c00019{left:154.013333pt;}
.x7_c00019{left:172.879867pt;}
.x8_c00019{left:201.279867pt;}
.x6_c00019{left:210.680000pt;}
.xb_c00019{left:220.146533pt;}
.xa_c00019{left:248.479867pt;}
.x4_c00019{left:671.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_112aa14ae5f5b72022627457.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00020;src:url('chunks/assets/font_106d000d46f447faf0ce101f.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.ls4_c00020{letter-spacing:-0.014400px;}
.ls2_c00020{letter-spacing:0.000000px;}
.ls1_c00020{letter-spacing:0.010740px;}
.ls0_c00020{letter-spacing:0.014400px;}
.ls3_c00020{letter-spacing:0.036000px;}
.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:-20.030400px;}
.ws1_c00020{word-spacing:0.000000px;}
._9_c00020{width:24.493140px;}
._5_c00020{width:122.808600px;}
._4_c00020{width:142.896600px;}
._1_c00020{width:163.128600px;}
._a_c00020{width:172.667400px;}
._2_c00020{width:192.683400px;}
._3_c00020{width:235.284600px;}
._6_c00020{width:402.445200px;}
._c_c00020{width:505.309140px;}
._7_c00020{width:618.589200px;}
._d_c00020{width:718.812900px;}
._16_c00020{width:1012.262400px;}
._14_c00020{width:1028.361600px;}
._b_c00020{width:1109.576340px;}
._17_c00020{width:1137.400800px;}
._0_c00020{width:1146.683400px;}
._8_c00020{width:1194.905700px;}
._15_c00020{width:1321.663200px;}
._12_c00020{width:1329.665940px;}
._10_c00020{width:1353.598740px;}
._f_c00020{width:1409.729940px;}
._13_c00020{width:1457.743200px;}
._e_c00020{width:1489.721940px;}
._11_c00020{width:1550.988900px;}
.fc1_c00020{color:transparent;}
.fc0_c00020{color:rgb(0,0,0);}
.fs0_c00020{font-size:72.000000px;}
.y0_c00020{bottom:0.000000px;}
.y4_c00020{bottom:4.320000px;}
.y1_c00020{bottom:18.750000px;}
.y2_c00020{bottom:37.860030px;}
.y3_c00020{bottom:52.290030px;}
.y24_c00020{bottom:104.100030px;}
.y23_c00020{bottom:135.060000px;}
.y22_c00020{bottom:166.380000px;}
.y21_c00020{bottom:197.340000px;}
.y20_c00020{bottom:228.300000px;}
.y1f_c00020{bottom:259.260000px;}
.y1e_c00020{bottom:290.580000px;}
.y1d_c00020{bottom:321.540000px;}
.y1c_c00020{bottom:352.500000px;}
.y1b_c00020{bottom:383.460000px;}
.y1a_c00020{bottom:414.420000px;}
.y19_c00020{bottom:445.740000px;}
.y18_c00020{bottom:476.700000px;}
.y17_c00020{bottom:507.660000px;}
.y16_c00020{bottom:538.620000px;}
.y15_c00020{bottom:569.940000px;}
.y14_c00020{bottom:600.900000px;}
.y13_c00020{bottom:640.860000px;}
.y12_c00020{bottom:689.820000px;}
.y11_c00020{bottom:721.140000px;}
.y10_c00020{bottom:752.100000px;}
.yf_c00020{bottom:783.060000px;}
.ye_c00020{bottom:814.020000px;}
.yd_c00020{bottom:845.340000px;}
.yc_c00020{bottom:876.300000px;}
.yb_c00020{bottom:907.260000px;}
.ya_c00020{bottom:947.220000px;}
.y9_c00020{bottom:996.540000px;}
.y8_c00020{bottom:1027.500000px;}
.y7_c00020{bottom:1058.460000px;}
.y6_c00020{bottom:1089.420000px;}
.y5_c00020{bottom:1120.740000px;}
.h3_c00020{height:20.880000px;}
.h2_c00020{height:64.546875px;}
.h4_c00020{height:65.003906px;}
.h1_c00020{height:1225.500000px;}
.h0_c00020{height:1263.000000px;}
.w2_c00020{width:10.080002px;}
.w1_c00020{width:855.000000px;}
.w0_c00020{width:892.500000px;}
.x0_c00020{left:0.000000px;}
.x1_c00020{left:18.750000px;}
.x6_c00020{left:109.439925px;}
.x3_c00020{left:128.190000px;}
.x7_c00020{left:130.739865px;}
.x2_c00020{left:136.440000px;}
.x8_c00020{left:151.965150px;}
.x4_c00020{left:173.265000px;}
.x5_c00020{left:194.489850px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls4_c00020{letter-spacing:-0.012800pt;}
.ls2_c00020{letter-spacing:0.000000pt;}
.ls1_c00020{letter-spacing:0.009547pt;}
.ls0_c00020{letter-spacing:0.012800pt;}
.ls3_c00020{letter-spacing:0.032000pt;}
.ws0_c00020{word-spacing:-17.804800pt;}
.ws1_c00020{word-spacing:0.000000pt;}
._9_c00020{width:21.771680pt;}
._5_c00020{width:109.163200pt;}
._4_c00020{width:127.019200pt;}
._1_c00020{width:145.003200pt;}
._a_c00020{width:153.482133pt;}
._2_c00020{width:171.274133pt;}
._3_c00020{width:209.141867pt;}
._6_c00020{width:357.729067pt;}
._c_c00020{width:449.163680pt;}
._7_c00020{width:549.857067pt;}
._d_c00020{width:638.944800pt;}
._16_c00020{width:899.788800pt;}
._14_c00020{width:914.099200pt;}
._b_c00020{width:986.290080pt;}
._17_c00020{width:1011.022933pt;}
._0_c00020{width:1019.274133pt;}
._8_c00020{width:1062.138400pt;}
._15_c00020{width:1174.811733pt;}
._12_c00020{width:1181.925280pt;}
._10_c00020{width:1203.198880pt;}
._f_c00020{width:1253.093280pt;}
._13_c00020{width:1295.771733pt;}
._e_c00020{width:1324.197280pt;}
._11_c00020{width:1378.656800pt;}
.fs0_c00020{font-size:64.000000pt;}
.y0_c00020{bottom:0.000000pt;}
.y4_c00020{bottom:3.840000pt;}
.y1_c00020{bottom:16.666667pt;}
.y2_c00020{bottom:33.653360pt;}
.y3_c00020{bottom:46.480027pt;}
.y24_c00020{bottom:92.533360pt;}
.y23_c00020{bottom:120.053333pt;}
.y22_c00020{bottom:147.893333pt;}
.y21_c00020{bottom:175.413333pt;}
.y20_c00020{bottom:202.933333pt;}
.y1f_c00020{bottom:230.453333pt;}
.y1e_c00020{bottom:258.293333pt;}
.y1d_c00020{bottom:285.813333pt;}
.y1c_c00020{bottom:313.333333pt;}
.y1b_c00020{bottom:340.853333pt;}
.y1a_c00020{bottom:368.373333pt;}
.y19_c00020{bottom:396.213333pt;}
.y18_c00020{bottom:423.733333pt;}
.y17_c00020{bottom:451.253333pt;}
.y16_c00020{bottom:478.773333pt;}
.y15_c00020{bottom:506.613333pt;}
.y14_c00020{bottom:534.133333pt;}
.y13_c00020{bottom:569.653333pt;}
.y12_c00020{bottom:613.173333pt;}
.y11_c00020{bottom:641.013333pt;}
.y10_c00020{bottom:668.533333pt;}
.yf_c00020{bottom:696.053333pt;}
.ye_c00020{bottom:723.573333pt;}
.yd_c00020{bottom:751.413333pt;}
.yc_c00020{bottom:778.933333pt;}
.yb_c00020{bottom:806.453333pt;}
.ya_c00020{bottom:841.973333pt;}
.y9_c00020{bottom:885.813333pt;}
.y8_c00020{bottom:913.333333pt;}
.y7_c00020{bottom:940.853333pt;}
.y6_c00020{bottom:968.373333pt;}
.y5_c00020{bottom:996.213333pt;}
.h3_c00020{height:18.560000pt;}
.h2_c00020{height:57.375000pt;}
.h4_c00020{height:57.781250pt;}
.h1_c00020{height:1089.333333pt;}
.h0_c00020{height:1122.666667pt;}
.w2_c00020{width:8.960001pt;}
.w1_c00020{width:760.000000pt;}
.w0_c00020{width:793.333333pt;}
.x0_c00020{left:0.000000pt;}
.x1_c00020{left:16.666667pt;}
.x6_c00020{left:97.279933pt;}
.x3_c00020{left:113.946667pt;}
.x7_c00020{left:116.213213pt;}
.x2_c00020{left:121.280000pt;}
.x8_c00020{left:135.080133pt;}
.x4_c00020{left:154.013333pt;}
.x5_c00020{left:172.879867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_507f02d6c3fda2c4844359d6.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00021;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.ls3_c00021{letter-spacing:-0.014400px;}
.ls2_c00021{letter-spacing:0.000000px;}
.ls0_c00021{letter-spacing:0.010740px;}
.ls1_c00021{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00021{word-spacing:-20.001600px;}
.ws2_c00021{word-spacing:0.000000px;}
._6_c00021{width:4.240800px;}
._c_c00021{width:69.508200px;}
._2_c00021{width:192.683400px;}
._3_c00021{width:235.284600px;}
._8_c00021{width:316.440000px;}
._a_c00021{width:584.568000px;}
._9_c00021{width:716.227200px;}
._5_c00021{width:853.519200px;}
._b_c00021{width:960.379200px;}
._4_c00021{width:1028.318400px;}
._1_c00021{width:1157.719200px;}
._7_c00021{width:1316.908800px;}
._e_c00021{width:1361.763540px;}
._d_c00021{width:1456.848000px;}
._0_c00021{width:2079.683700px;}
.fc1_c00021{color:transparent;}
.fc0_c00021{color:rgb(0,0,0);}
.fs0_c00021{font-size:72.000000px;}
.y0_c00021{bottom:0.000000px;}
.y5_c00021{bottom:4.320000px;}
.y1_c00021{bottom:18.750000px;}
.y3_c00021{bottom:37.860030px;}
.y4_c00021{bottom:52.290030px;}
.y27_c00021{bottom:96.180030px;}
.y26_c00021{bottom:127.140030px;}
.y25_c00021{bottom:158.100000px;}
.y24_c00021{bottom:189.060000px;}
.y23_c00021{bottom:220.380000px;}
.y22_c00021{bottom:251.340000px;}
.y21_c00021{bottom:282.300000px;}
.y20_c00021{bottom:313.260000px;}
.y1f_c00021{bottom:344.580000px;}
.y1e_c00021{bottom:375.540000px;}
.y1d_c00021{bottom:406.500000px;}
.y1c_c00021{bottom:437.460000px;}
.y1b_c00021{bottom:468.420000px;}
.y1a_c00021{bottom:499.740000px;}
.y19_c00021{bottom:530.700000px;}
.y18_c00021{bottom:561.660000px;}
.y17_c00021{bottom:592.620000px;}
.y16_c00021{bottom:623.940000px;}
.y15_c00021{bottom:654.900000px;}
.y14_c00021{bottom:685.860000px;}
.y13_c00021{bottom:716.820000px;}
.y12_c00021{bottom:748.140000px;}
.y11_c00021{bottom:779.100000px;}
.y10_c00021{bottom:810.060000px;}
.yf_c00021{bottom:841.020000px;}
.ye_c00021{bottom:872.340000px;}
.yd_c00021{bottom:903.300000px;}
.yc_c00021{bottom:934.260000px;}
.yb_c00021{bottom:965.220000px;}
.ya_c00021{bottom:996.540000px;}
.y9_c00021{bottom:1027.500000px;}
.y8_c00021{bottom:1058.460000px;}
.y7_c00021{bottom:1089.420000px;}
.y6_c00021{bottom:1120.740000px;}
.y2_c00021{bottom:1173.660000px;}
.h3_c00021{height:20.880000px;}
.h2_c00021{height:64.546875px;}
.h4_c00021{height:65.003906px;}
.h1_c00021{height:1225.500000px;}
.h0_c00021{height:1263.000000px;}
.w2_c00021{width:10.080002px;}
.w1_c00021{width:855.000000px;}
.w0_c00021{width:892.500000px;}
.x0_c00021{left:0.000000px;}
.x1_c00021{left:18.750000px;}
.x2_c00021{left:109.439925px;}
.x5_c00021{left:130.739865px;}
.x3_c00021{left:136.440000px;}
.x6_c00021{left:151.965150px;}
.x4_c00021{left:755.670000px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls3_c00021{letter-spacing:-0.012800pt;}
.ls2_c00021{letter-spacing:0.000000pt;}
.ls0_c00021{letter-spacing:0.009547pt;}
.ls1_c00021{letter-spacing:0.012800pt;}
.ws0_c00021{word-spacing:-17.804800pt;}
.ws1_c00021{word-spacing:-17.779200pt;}
.ws2_c00021{word-spacing:0.000000pt;}
._6_c00021{width:3.769600pt;}
._c_c00021{width:61.785067pt;}
._2_c00021{width:171.274133pt;}
._3_c00021{width:209.141867pt;}
._8_c00021{width:281.280000pt;}
._a_c00021{width:519.616000pt;}
._9_c00021{width:636.646400pt;}
._5_c00021{width:758.683733pt;}
._b_c00021{width:853.670400pt;}
._4_c00021{width:914.060800pt;}
._1_c00021{width:1029.083733pt;}
._7_c00021{width:1170.585600pt;}
._e_c00021{width:1210.456480pt;}
._d_c00021{width:1294.976000pt;}
._0_c00021{width:1848.607733pt;}
.fs0_c00021{font-size:64.000000pt;}
.y0_c00021{bottom:0.000000pt;}
.y5_c00021{bottom:3.840000pt;}
.y1_c00021{bottom:16.666667pt;}
.y3_c00021{bottom:33.653360pt;}
.y4_c00021{bottom:46.480027pt;}
.y27_c00021{bottom:85.493360pt;}
.y26_c00021{bottom:113.013360pt;}
.y25_c00021{bottom:140.533333pt;}
.y24_c00021{bottom:168.053333pt;}
.y23_c00021{bottom:195.893333pt;}
.y22_c00021{bottom:223.413333pt;}
.y21_c00021{bottom:250.933333pt;}
.y20_c00021{bottom:278.453333pt;}
.y1f_c00021{bottom:306.293333pt;}
.y1e_c00021{bottom:333.813333pt;}
.y1d_c00021{bottom:361.333333pt;}
.y1c_c00021{bottom:388.853333pt;}
.y1b_c00021{bottom:416.373333pt;}
.y1a_c00021{bottom:444.213333pt;}
.y19_c00021{bottom:471.733333pt;}
.y18_c00021{bottom:499.253333pt;}
.y17_c00021{bottom:526.773333pt;}
.y16_c00021{bottom:554.613333pt;}
.y15_c00021{bottom:582.133333pt;}
.y14_c00021{bottom:609.653333pt;}
.y13_c00021{bottom:637.173333pt;}
.y12_c00021{bottom:665.013333pt;}
.y11_c00021{bottom:692.533333pt;}
.y10_c00021{bottom:720.053333pt;}
.yf_c00021{bottom:747.573333pt;}
.ye_c00021{bottom:775.413333pt;}
.yd_c00021{bottom:802.933333pt;}
.yc_c00021{bottom:830.453333pt;}
.yb_c00021{bottom:857.973333pt;}
.ya_c00021{bottom:885.813333pt;}
.y9_c00021{bottom:913.333333pt;}
.y8_c00021{bottom:940.853333pt;}
.y7_c00021{bottom:968.373333pt;}
.y6_c00021{bottom:996.213333pt;}
.y2_c00021{bottom:1043.253333pt;}
.h3_c00021{height:18.560000pt;}
.h2_c00021{height:57.375000pt;}
.h4_c00021{height:57.781250pt;}
.h1_c00021{height:1089.333333pt;}
.h0_c00021{height:1122.666667pt;}
.w2_c00021{width:8.960001pt;}
.w1_c00021{width:760.000000pt;}
.w0_c00021{width:793.333333pt;}
.x0_c00021{left:0.000000pt;}
.x1_c00021{left:16.666667pt;}
.x2_c00021{left:97.279933pt;}
.x5_c00021{left:116.213213pt;}
.x3_c00021{left:121.280000pt;}
.x6_c00021{left:135.080133pt;}
.x4_c00021{left:671.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4b15fe19f46bfe744688d810.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00022;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls0_c00022{letter-spacing:0.000000px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00022{word-spacing:0.000000px;}
._0_c00022{width:1146.683400px;}
.fc1_c00022{color:transparent;}
.fc0_c00022{color:rgb(0,0,0);}
.fs0_c00022{font-size:72.000000px;}
.y0_c00022{bottom:0.000000px;}
.y4_c00022{bottom:4.320000px;}
.y1_c00022{bottom:18.750000px;}
.y2_c00022{bottom:37.860030px;}
.y3_c00022{bottom:52.290030px;}
.y11_c00022{bottom:748.140000px;}
.y10_c00022{bottom:779.100000px;}
.yf_c00022{bottom:810.060000px;}
.ye_c00022{bottom:841.020000px;}
.yd_c00022{bottom:872.340000px;}
.yc_c00022{bottom:903.300000px;}
.yb_c00022{bottom:934.260000px;}
.ya_c00022{bottom:965.220000px;}
.y9_c00022{bottom:996.540000px;}
.y8_c00022{bottom:1027.500000px;}
.y7_c00022{bottom:1058.460000px;}
.y6_c00022{bottom:1089.420000px;}
.y5_c00022{bottom:1120.740000px;}
.h3_c00022{height:20.880000px;}
.h2_c00022{height:64.546875px;}
.h4_c00022{height:65.003906px;}
.h1_c00022{height:1225.500000px;}
.h0_c00022{height:1263.000000px;}
.w2_c00022{width:10.080002px;}
.w1_c00022{width:855.000000px;}
.w0_c00022{width:892.500000px;}
.x0_c00022{left:0.000000px;}
.x1_c00022{left:18.750000px;}
.x4_c00022{left:109.439925px;}
.x3_c00022{left:128.190000px;}
.x2_c00022{left:136.440000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls0_c00022{letter-spacing:0.000000pt;}
.ws0_c00022{word-spacing:0.000000pt;}
._0_c00022{width:1019.274133pt;}
.fs0_c00022{font-size:64.000000pt;}
.y0_c00022{bottom:0.000000pt;}
.y4_c00022{bottom:3.840000pt;}
.y1_c00022{bottom:16.666667pt;}
.y2_c00022{bottom:33.653360pt;}
.y3_c00022{bottom:46.480027pt;}
.y11_c00022{bottom:665.013333pt;}
.y10_c00022{bottom:692.533333pt;}
.yf_c00022{bottom:720.053333pt;}
.ye_c00022{bottom:747.573333pt;}
.yd_c00022{bottom:775.413333pt;}
.yc_c00022{bottom:802.933333pt;}
.yb_c00022{bottom:830.453333pt;}
.ya_c00022{bottom:857.973333pt;}
.y9_c00022{bottom:885.813333pt;}
.y8_c00022{bottom:913.333333pt;}
.y7_c00022{bottom:940.853333pt;}
.y6_c00022{bottom:968.373333pt;}
.y5_c00022{bottom:996.213333pt;}
.h3_c00022{height:18.560000pt;}
.h2_c00022{height:57.375000pt;}
.h4_c00022{height:57.781250pt;}
.h1_c00022{height:1089.333333pt;}
.h0_c00022{height:1122.666667pt;}
.w2_c00022{width:8.960001pt;}
.w1_c00022{width:760.000000pt;}
.w0_c00022{width:793.333333pt;}
.x0_c00022{left:0.000000pt;}
.x1_c00022{left:16.666667pt;}
.x4_c00022{left:97.279933pt;}
.x3_c00022{left:113.946667pt;}
.x2_c00022{left:121.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0c7d83701a76c29eef851f64.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.ls1_c00023{letter-spacing:0.000000px;}
.ls0_c00023{letter-spacing:0.367488px;}
.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:-23.586048px;}
.ws1_c00023{word-spacing:0.000000px;}
._1_c00023{width:1339.583100px;}
._0_c00023{width:2079.683700px;}
.fc0_c00023{color:rgb(0,0,0);}
.fs1_c00023{font-size:53.280000px;}
.fs0_c00023{font-size:72.000000px;}
.fs2_c00023{font-size:83.520000px;}
.y0_c00023{bottom:0.000000px;}
.y1_c00023{bottom:18.750000px;}
.y3_c00023{bottom:36.420030px;}
.y11_c00023{bottom:622.500000px;}
.y10_c00023{bottom:660.660000px;}
.yf_c00023{bottom:698.820000px;}
.ye_c00023{bottom:736.620000px;}
.yd_c00023{bottom:774.780000px;}
.yc_c00023{bottom:812.940000px;}
.yb_c00023{bottom:851.100000px;}
.ya_c00023{bottom:888.900000px;}
.y9_c00023{bottom:927.060000px;}
.y8_c00023{bottom:965.220000px;}
.y7_c00023{bottom:1003.020000px;}
.y6_c00023{bottom:1041.180000px;}
.y5_c00023{bottom:1079.340000px;}
.y4_c00023{bottom:1117.500000px;}
.y2_c00023{bottom:1173.660000px;}
.h2_c00023{height:64.546875px;}
.h3_c00023{height:74.874375px;}
.h1_c00023{height:1225.500000px;}
.h0_c00023{height:1263.000000px;}
.w1_c00023{width:855.000000px;}
.w0_c00023{width:892.500000px;}
.x0_c00023{left:0.000000px;}
.x1_c00023{left:18.750000px;}
.x2_c00023{left:88.200075px;}
.x4_c00023{left:604.675800px;}
.x3_c00023{left:767.999850px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls1_c00023{letter-spacing:0.000000pt;}
.ls0_c00023{letter-spacing:0.326656pt;}
.ws0_c00023{word-spacing:-20.965376pt;}
.ws1_c00023{word-spacing:0.000000pt;}
._1_c00023{width:1190.740533pt;}
._0_c00023{width:1848.607733pt;}
.fs1_c00023{font-size:47.360000pt;}
.fs0_c00023{font-size:64.000000pt;}
.fs2_c00023{font-size:74.240000pt;}
.y0_c00023{bottom:0.000000pt;}
.y1_c00023{bottom:16.666667pt;}
.y3_c00023{bottom:32.373360pt;}
.y11_c00023{bottom:553.333333pt;}
.y10_c00023{bottom:587.253333pt;}
.yf_c00023{bottom:621.173333pt;}
.ye_c00023{bottom:654.773333pt;}
.yd_c00023{bottom:688.693333pt;}
.yc_c00023{bottom:722.613333pt;}
.yb_c00023{bottom:756.533333pt;}
.ya_c00023{bottom:790.133333pt;}
.y9_c00023{bottom:824.053333pt;}
.y8_c00023{bottom:857.973333pt;}
.y7_c00023{bottom:891.573333pt;}
.y6_c00023{bottom:925.493333pt;}
.y5_c00023{bottom:959.413333pt;}
.y4_c00023{bottom:993.333333pt;}
.y2_c00023{bottom:1043.253333pt;}
.h2_c00023{height:57.375000pt;}
.h3_c00023{height:66.555000pt;}
.h1_c00023{height:1089.333333pt;}
.h0_c00023{height:1122.666667pt;}
.w1_c00023{width:760.000000pt;}
.w0_c00023{width:793.333333pt;}
.x0_c00023{left:0.000000pt;}
.x1_c00023{left:16.666667pt;}
.x2_c00023{left:78.400067pt;}
.x4_c00023{left:537.489600pt;}
.x3_c00023{left:682.666533pt;}
}





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

.ir_c00024:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00024;src:url('chunks/assets/font_fc845accef0beaceb15afc88.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00024;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00024{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00024{vertical-align:0.000000px;}
.ls0_c00024{letter-spacing:0.000000px;}
.sc__c00024{text-shadow:none;}
.sc0_c00024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00024{-webkit-text-stroke:0px transparent;}
.sc0_c00024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00024{word-spacing:0.000000px;}
._1_c00024{width:1231.584600px;}
._0_c00024{width:1339.583100px;}
.fc0_c00024{color:rgb(0,0,0);}
.fs0_c00024{font-size:72.000000px;}
.y0_c00024{bottom:0.000000px;}
.y1_c00024{bottom:18.750000px;}
.y3_c00024{bottom:37.860030px;}
.y2_c00024{bottom:58.380030px;}
.y4_c00024{bottom:1120.740000px;}
.h2_c00024{height:64.546875px;}
.h3_c00024{height:65.003906px;}
.h1_c00024{height:1225.500000px;}
.h0_c00024{height:1263.000000px;}
.w1_c00024{width:855.000000px;}
.w0_c00024{width:892.500000px;}
.x0_c00024{left:0.000000px;}
.x1_c00024{left:18.750000px;}
.x2_c00024{left:88.200075px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls0_c00024{letter-spacing:0.000000pt;}
.ws0_c00024{word-spacing:0.000000pt;}
._1_c00024{width:1094.741867pt;}
._0_c00024{width:1190.740533pt;}
.fs0_c00024{font-size:64.000000pt;}
.y0_c00024{bottom:0.000000pt;}
.y1_c00024{bottom:16.666667pt;}
.y3_c00024{bottom:33.653360pt;}
.y2_c00024{bottom:51.893360pt;}
.y4_c00024{bottom:996.213333pt;}
.h2_c00024{height:57.375000pt;}
.h3_c00024{height:57.781250pt;}
.h1_c00024{height:1089.333333pt;}
.h0_c00024{height:1122.666667pt;}
.w1_c00024{width:760.000000pt;}
.w0_c00024{width:793.333333pt;}
.x0_c00024{left:0.000000pt;}
.x1_c00024{left:16.666667pt;}
.x2_c00024{left:78.400067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f4df4569828c52a2996828c5.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00025;src:url('chunks/assets/font_06d4cf6dc14c798a798bedc5.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00025{vertical-align:0.000000px;}
.ls3_c00025{letter-spacing:-0.014400px;}
.ls2_c00025{letter-spacing:0.000000px;}
.ls0_c00025{letter-spacing:0.014400px;}
.ls1_c00025{letter-spacing:0.036000px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00025{word-spacing:-20.052000px;}
.ws2_c00025{word-spacing:-20.030400px;}
.ws0_c00025{word-spacing:-20.001600px;}
.ws3_c00025{word-spacing:0.000000px;}
._7_c00025{margin-left:-1.001700px;}
._8_c00025{width:1.130400px;}
._4_c00025{width:2.131200px;}
._3_c00025{width:3.340800px;}
._b_c00025{width:5.428800px;}
._c_c00025{width:7.526700px;}
._5_c00025{width:9.280800px;}
._e_c00025{width:11.656800px;}
._12_c00025{width:15.264000px;}
._f_c00025{width:16.305900px;}
._9_c00025{width:17.964000px;}
._10_c00025{width:21.681300px;}
._6_c00025{width:23.306400px;}
._11_c00025{width:27.684000px;}
._d_c00025{width:31.838400px;}
._a_c00025{width:35.942400px;}
._1_c00025{width:1061.484000px;}
._2_c00025{width:1146.684000px;}
._0_c00025{width:2079.683700px;}
.fc1_c00025{color:transparent;}
.fc0_c00025{color:rgb(0,0,0);}
.fs1_c00025{font-size:53.280000px;}
.fs0_c00025{font-size:72.000000px;}
.y0_c00025{bottom:0.000000px;}
.y5_c00025{bottom:3.960000px;}
.y1_c00025{bottom:18.750000px;}
.y3_c00025{bottom:36.420030px;}
.y4_c00025{bottom:47.250030px;}
.y1e_c00025{bottom:127.140030px;}
.y1d_c00025{bottom:168.540000px;}
.y1c_c00025{bottom:209.940000px;}
.y1b_c00025{bottom:251.340000px;}
.y1a_c00025{bottom:292.740000px;}
.y19_c00025{bottom:334.140000px;}
.y18_c00025{bottom:375.540000px;}
.y17_c00025{bottom:416.940000px;}
.y16_c00025{bottom:458.340000px;}
.y15_c00025{bottom:499.740000px;}
.y14_c00025{bottom:541.140000px;}
.y13_c00025{bottom:582.540000px;}
.y12_c00025{bottom:623.940000px;}
.y11_c00025{bottom:665.340000px;}
.y10_c00025{bottom:706.740000px;}
.yf_c00025{bottom:748.140000px;}
.ye_c00025{bottom:789.540000px;}
.yd_c00025{bottom:830.940000px;}
.yc_c00025{bottom:872.340000px;}
.yb_c00025{bottom:913.740000px;}
.ya_c00025{bottom:955.140000px;}
.y9_c00025{bottom:996.540000px;}
.y8_c00025{bottom:1037.940000px;}
.y7_c00025{bottom:1079.340000px;}
.y6_c00025{bottom:1120.740000px;}
.y2_c00025{bottom:1173.660000px;}
.h3_c00025{height:20.520000px;}
.h2_c00025{height:64.546875px;}
.h4_c00025{height:65.003906px;}
.h1_c00025{height:1225.500000px;}
.h0_c00025{height:1263.000000px;}
.w2_c00025{width:10.080002px;}
.w1_c00025{width:855.000000px;}
.w0_c00025{width:892.500000px;}
.x0_c00025{left:0.000000px;}
.x1_c00025{left:18.750000px;}
.x2_c00025{left:109.439925px;}
.x5_c00025{left:151.965150px;}
.x3_c00025{left:157.739850px;}
.x4_c00025{left:755.670000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls3_c00025{letter-spacing:-0.012800pt;}
.ls2_c00025{letter-spacing:0.000000pt;}
.ls0_c00025{letter-spacing:0.012800pt;}
.ls1_c00025{letter-spacing:0.032000pt;}
.ws1_c00025{word-spacing:-17.824000pt;}
.ws2_c00025{word-spacing:-17.804800pt;}
.ws0_c00025{word-spacing:-17.779200pt;}
.ws3_c00025{word-spacing:0.000000pt;}
._7_c00025{margin-left:-0.890400pt;}
._8_c00025{width:1.004800pt;}
._4_c00025{width:1.894400pt;}
._3_c00025{width:2.969600pt;}
._b_c00025{width:4.825600pt;}
._c_c00025{width:6.690400pt;}
._5_c00025{width:8.249600pt;}
._e_c00025{width:10.361600pt;}
._12_c00025{width:13.568000pt;}
._f_c00025{width:14.494133pt;}
._9_c00025{width:15.968000pt;}
._10_c00025{width:19.272267pt;}
._6_c00025{width:20.716800pt;}
._11_c00025{width:24.608000pt;}
._d_c00025{width:28.300800pt;}
._a_c00025{width:31.948800pt;}
._1_c00025{width:943.541333pt;}
._2_c00025{width:1019.274667pt;}
._0_c00025{width:1848.607733pt;}
.fs1_c00025{font-size:47.360000pt;}
.fs0_c00025{font-size:64.000000pt;}
.y0_c00025{bottom:0.000000pt;}
.y5_c00025{bottom:3.520000pt;}
.y1_c00025{bottom:16.666667pt;}
.y3_c00025{bottom:32.373360pt;}
.y4_c00025{bottom:42.000027pt;}
.y1e_c00025{bottom:113.013360pt;}
.y1d_c00025{bottom:149.813333pt;}
.y1c_c00025{bottom:186.613333pt;}
.y1b_c00025{bottom:223.413333pt;}
.y1a_c00025{bottom:260.213333pt;}
.y19_c00025{bottom:297.013333pt;}
.y18_c00025{bottom:333.813333pt;}
.y17_c00025{bottom:370.613333pt;}
.y16_c00025{bottom:407.413333pt;}
.y15_c00025{bottom:444.213333pt;}
.y14_c00025{bottom:481.013333pt;}
.y13_c00025{bottom:517.813333pt;}
.y12_c00025{bottom:554.613333pt;}
.y11_c00025{bottom:591.413333pt;}
.y10_c00025{bottom:628.213333pt;}
.yf_c00025{bottom:665.013333pt;}
.ye_c00025{bottom:701.813333pt;}
.yd_c00025{bottom:738.613333pt;}
.yc_c00025{bottom:775.413333pt;}
.yb_c00025{bottom:812.213333pt;}
.ya_c00025{bottom:849.013333pt;}
.y9_c00025{bottom:885.813333pt;}
.y8_c00025{bottom:922.613333pt;}
.y7_c00025{bottom:959.413333pt;}
.y6_c00025{bottom:996.213333pt;}
.y2_c00025{bottom:1043.253333pt;}
.h3_c00025{height:18.240000pt;}
.h2_c00025{height:57.375000pt;}
.h4_c00025{height:57.781250pt;}
.h1_c00025{height:1089.333333pt;}
.h0_c00025{height:1122.666667pt;}
.w2_c00025{width:8.960001pt;}
.w1_c00025{width:760.000000pt;}
.w0_c00025{width:793.333333pt;}
.x0_c00025{left:0.000000pt;}
.x1_c00025{left:16.666667pt;}
.x2_c00025{left:97.279933pt;}
.x5_c00025{left:135.080133pt;}
.x3_c00025{left:140.213200pt;}
.x4_c00025{left:671.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e4e30642b1f911beec5ffdea.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00026{vertical-align:0.000000px;}
.ls2_c00026{letter-spacing:-0.014400px;}
.ls1_c00026{letter-spacing:0.000000px;}
.ls0_c00026{letter-spacing:0.014400px;}
.ls3_c00026{letter-spacing:0.036000px;}
.sc__c00026{text-shadow:none;}
.sc0_c00026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00026{-webkit-text-stroke:0px transparent;}
.sc0_c00026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00026{word-spacing:-20.030400px;}
.ws1_c00026{word-spacing:-20.001600px;}
.ws2_c00026{word-spacing:0.000000px;}
._c_c00026{width:1.008600px;}
._6_c00026{width:2.599200px;}
._1_c00026{width:4.356000px;}
._3_c00026{width:5.547300px;}
._d_c00026{width:6.574800px;}
._11_c00026{width:7.578000px;}
._e_c00026{width:12.434400px;}
._5_c00026{width:13.507200px;}
._4_c00026{width:15.343200px;}
._f_c00026{width:18.964800px;}
._8_c00026{width:21.204000px;}
._7_c00026{width:23.529600px;}
._9_c00026{width:26.755200px;}
._b_c00026{width:28.069500px;}
._2_c00026{width:30.560400px;}
._a_c00026{width:39.456000px;}
._10_c00026{width:48.484800px;}
._0_c00026{width:1146.683400px;}
.fc1_c00026{color:transparent;}
.fc0_c00026{color:rgb(0,0,0);}
.fs0_c00026{font-size:72.000000px;}
.y0_c00026{bottom:0.000000px;}
.y4_c00026{bottom:4.320000px;}
.y1_c00026{bottom:18.750000px;}
.y2_c00026{bottom:37.860030px;}
.y3_c00026{bottom:52.290030px;}
.y1d_c00026{bottom:127.140030px;}
.y1c_c00026{bottom:168.540000px;}
.y1b_c00026{bottom:209.940000px;}
.y1a_c00026{bottom:251.340000px;}
.y19_c00026{bottom:292.740000px;}
.y18_c00026{bottom:334.140000px;}
.y17_c00026{bottom:375.540000px;}
.y16_c00026{bottom:416.940000px;}
.y15_c00026{bottom:458.340000px;}
.y14_c00026{bottom:499.740000px;}
.y13_c00026{bottom:541.140000px;}
.y12_c00026{bottom:582.540000px;}
.y11_c00026{bottom:623.940000px;}
.y10_c00026{bottom:665.340000px;}
.yf_c00026{bottom:706.740000px;}
.ye_c00026{bottom:748.140000px;}
.yd_c00026{bottom:789.540000px;}
.yc_c00026{bottom:830.940000px;}
.yb_c00026{bottom:872.340000px;}
.ya_c00026{bottom:913.740000px;}
.y9_c00026{bottom:955.140000px;}
.y8_c00026{bottom:996.540000px;}
.y7_c00026{bottom:1037.940000px;}
.y6_c00026{bottom:1079.340000px;}
.y5_c00026{bottom:1120.740000px;}
.h3_c00026{height:20.880000px;}
.h2_c00026{height:64.546875px;}
.h1_c00026{height:1225.500000px;}
.h0_c00026{height:1263.000000px;}
.w2_c00026{width:20.160000px;}
.w1_c00026{width:855.000000px;}
.w0_c00026{width:892.500000px;}
.x0_c00026{left:0.000000px;}
.x1_c00026{left:18.750000px;}
.x4_c00026{left:109.439925px;}
.x3_c00026{left:128.190000px;}
.x2_c00026{left:136.440000px;}
.x5_c00026{left:151.965150px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls2_c00026{letter-spacing:-0.012800pt;}
.ls1_c00026{letter-spacing:0.000000pt;}
.ls0_c00026{letter-spacing:0.012800pt;}
.ls3_c00026{letter-spacing:0.032000pt;}
.ws0_c00026{word-spacing:-17.804800pt;}
.ws1_c00026{word-spacing:-17.779200pt;}
.ws2_c00026{word-spacing:0.000000pt;}
._c_c00026{width:0.896533pt;}
._6_c00026{width:2.310400pt;}
._1_c00026{width:3.872000pt;}
._3_c00026{width:4.930933pt;}
._d_c00026{width:5.844267pt;}
._11_c00026{width:6.736000pt;}
._e_c00026{width:11.052800pt;}
._5_c00026{width:12.006400pt;}
._4_c00026{width:13.638400pt;}
._f_c00026{width:16.857600pt;}
._8_c00026{width:18.848000pt;}
._7_c00026{width:20.915200pt;}
._9_c00026{width:23.782400pt;}
._b_c00026{width:24.950667pt;}
._2_c00026{width:27.164800pt;}
._a_c00026{width:35.072000pt;}
._10_c00026{width:43.097600pt;}
._0_c00026{width:1019.274133pt;}
.fs0_c00026{font-size:64.000000pt;}
.y0_c00026{bottom:0.000000pt;}
.y4_c00026{bottom:3.840000pt;}
.y1_c00026{bottom:16.666667pt;}
.y2_c00026{bottom:33.653360pt;}
.y3_c00026{bottom:46.480027pt;}
.y1d_c00026{bottom:113.013360pt;}
.y1c_c00026{bottom:149.813333pt;}
.y1b_c00026{bottom:186.613333pt;}
.y1a_c00026{bottom:223.413333pt;}
.y19_c00026{bottom:260.213333pt;}
.y18_c00026{bottom:297.013333pt;}
.y17_c00026{bottom:333.813333pt;}
.y16_c00026{bottom:370.613333pt;}
.y15_c00026{bottom:407.413333pt;}
.y14_c00026{bottom:444.213333pt;}
.y13_c00026{bottom:481.013333pt;}
.y12_c00026{bottom:517.813333pt;}
.y11_c00026{bottom:554.613333pt;}
.y10_c00026{bottom:591.413333pt;}
.yf_c00026{bottom:628.213333pt;}
.ye_c00026{bottom:665.013333pt;}
.yd_c00026{bottom:701.813333pt;}
.yc_c00026{bottom:738.613333pt;}
.yb_c00026{bottom:775.413333pt;}
.ya_c00026{bottom:812.213333pt;}
.y9_c00026{bottom:849.013333pt;}
.y8_c00026{bottom:885.813333pt;}
.y7_c00026{bottom:922.613333pt;}
.y6_c00026{bottom:959.413333pt;}
.y5_c00026{bottom:996.213333pt;}
.h3_c00026{height:18.560000pt;}
.h2_c00026{height:57.375000pt;}
.h1_c00026{height:1089.333333pt;}
.h0_c00026{height:1122.666667pt;}
.w2_c00026{width:17.920000pt;}
.w1_c00026{width:760.000000pt;}
.w0_c00026{width:793.333333pt;}
.x0_c00026{left:0.000000pt;}
.x1_c00026{left:16.666667pt;}
.x4_c00026{left:97.279933pt;}
.x3_c00026{left:113.946667pt;}
.x2_c00026{left:121.280000pt;}
.x5_c00026{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45f01a945be076188a48ac7f.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00027;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.ls2_c00027{letter-spacing:0.000000px;}
.ls0_c00027{letter-spacing:0.014400px;}
.ls1_c00027{letter-spacing:0.036000px;}
.sc__c00027{text-shadow:none;}
.sc0_c00027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00027{-webkit-text-stroke:0px transparent;}
.sc0_c00027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00027{word-spacing:-20.030400px;}
.ws1_c00027{word-spacing:0.000000px;}
._4_c00027{width:1.836000px;}
._a_c00027{width:3.009600px;}
._7_c00027{width:4.687200px;}
._3_c00027{width:5.889600px;}
._6_c00027{width:7.509600px;}
._8_c00027{width:9.234600px;}
._9_c00027{width:31.723200px;}
._5_c00027{width:33.645600px;}
._b_c00027{width:843.983700px;}
._1_c00027{width:1061.484000px;}
._2_c00027{width:1146.684000px;}
._0_c00027{width:2079.683700px;}
.fc1_c00027{color:transparent;}
.fc0_c00027{color:rgb(0,0,0);}
.fs1_c00027{font-size:53.280000px;}
.fs0_c00027{font-size:72.000000px;}
.y0_c00027{bottom:0.000000px;}
.y5_c00027{bottom:3.960000px;}
.y1_c00027{bottom:18.750000px;}
.y3_c00027{bottom:36.420030px;}
.y4_c00027{bottom:47.250030px;}
.y18_c00027{bottom:231.540000px;}
.y17_c00027{bottom:290.940000px;}
.y16_c00027{bottom:350.340000px;}
.y15_c00027{bottom:391.740000px;}
.y14_c00027{bottom:433.140000px;}
.y13_c00027{bottom:492.540000px;}
.y12_c00027{bottom:533.940000px;}
.y11_c00027{bottom:575.340000px;}
.y10_c00027{bottom:634.740000px;}
.yf_c00027{bottom:676.140000px;}
.ye_c00027{bottom:735.540000px;}
.yd_c00027{bottom:776.940000px;}
.yc_c00027{bottom:836.340000px;}
.yb_c00027{bottom:877.740000px;}
.ya_c00027{bottom:919.140000px;}
.y9_c00027{bottom:978.540000px;}
.y8_c00027{bottom:1019.940000px;}
.y7_c00027{bottom:1079.340000px;}
.y6_c00027{bottom:1120.740000px;}
.y2_c00027{bottom:1173.660000px;}
.h3_c00027{height:20.520000px;}
.h2_c00027{height:64.546875px;}
.h4_c00027{height:65.003906px;}
.h1_c00027{height:1225.500000px;}
.h0_c00027{height:1263.000000px;}
.w2_c00027{width:20.160000px;}
.w1_c00027{width:855.000000px;}
.w0_c00027{width:892.500000px;}
.x0_c00027{left:0.000000px;}
.x1_c00027{left:18.750000px;}
.x2_c00027{left:109.439925px;}
.x5_c00027{left:151.965150px;}
.x3_c00027{left:157.739850px;}
.x4_c00027{left:745.590000px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls2_c00027{letter-spacing:0.000000pt;}
.ls0_c00027{letter-spacing:0.012800pt;}
.ls1_c00027{letter-spacing:0.032000pt;}
.ws0_c00027{word-spacing:-17.804800pt;}
.ws1_c00027{word-spacing:0.000000pt;}
._4_c00027{width:1.632000pt;}
._a_c00027{width:2.675200pt;}
._7_c00027{width:4.166400pt;}
._3_c00027{width:5.235200pt;}
._6_c00027{width:6.675200pt;}
._8_c00027{width:8.208533pt;}
._9_c00027{width:28.198400pt;}
._5_c00027{width:29.907200pt;}
._b_c00027{width:750.207733pt;}
._1_c00027{width:943.541333pt;}
._2_c00027{width:1019.274667pt;}
._0_c00027{width:1848.607733pt;}
.fs1_c00027{font-size:47.360000pt;}
.fs0_c00027{font-size:64.000000pt;}
.y0_c00027{bottom:0.000000pt;}
.y5_c00027{bottom:3.520000pt;}
.y1_c00027{bottom:16.666667pt;}
.y3_c00027{bottom:32.373360pt;}
.y4_c00027{bottom:42.000027pt;}
.y18_c00027{bottom:205.813333pt;}
.y17_c00027{bottom:258.613333pt;}
.y16_c00027{bottom:311.413333pt;}
.y15_c00027{bottom:348.213333pt;}
.y14_c00027{bottom:385.013333pt;}
.y13_c00027{bottom:437.813333pt;}
.y12_c00027{bottom:474.613333pt;}
.y11_c00027{bottom:511.413333pt;}
.y10_c00027{bottom:564.213333pt;}
.yf_c00027{bottom:601.013333pt;}
.ye_c00027{bottom:653.813333pt;}
.yd_c00027{bottom:690.613333pt;}
.yc_c00027{bottom:743.413333pt;}
.yb_c00027{bottom:780.213333pt;}
.ya_c00027{bottom:817.013333pt;}
.y9_c00027{bottom:869.813333pt;}
.y8_c00027{bottom:906.613333pt;}
.y7_c00027{bottom:959.413333pt;}
.y6_c00027{bottom:996.213333pt;}
.y2_c00027{bottom:1043.253333pt;}
.h3_c00027{height:18.240000pt;}
.h2_c00027{height:57.375000pt;}
.h4_c00027{height:57.781250pt;}
.h1_c00027{height:1089.333333pt;}
.h0_c00027{height:1122.666667pt;}
.w2_c00027{width:17.920000pt;}
.w1_c00027{width:760.000000pt;}
.w0_c00027{width:793.333333pt;}
.x0_c00027{left:0.000000pt;}
.x1_c00027{left:16.666667pt;}
.x2_c00027{left:97.279933pt;}
.x5_c00027{left:135.080133pt;}
.x3_c00027{left:140.213200pt;}
.x4_c00027{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2ca2896fa5a57e2d82537491.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00028{letter-spacing:0.014400px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00028{word-spacing:-20.030400px;}
.ws1_c00028{word-spacing:0.000000px;}
._1_c00028{width:840.781140px;}
._0_c00028{width:1146.683400px;}
.fc1_c00028{color:transparent;}
.fc0_c00028{color:rgb(0,0,0);}
.fs0_c00028{font-size:72.000000px;}
.fs1_c00028{font-size:83.520000px;}
.y0_c00028{bottom:0.000000px;}
.y4_c00028{bottom:4.320000px;}
.y1_c00028{bottom:18.750000px;}
.y2_c00028{bottom:37.860030px;}
.y3_c00028{bottom:52.290030px;}
.y5_c00028{bottom:1117.500000px;}
.h3_c00028{height:20.880000px;}
.h2_c00028{height:64.546875px;}
.h4_c00028{height:74.874375px;}
.h1_c00028{height:1225.500000px;}
.h0_c00028{height:1263.000000px;}
.w2_c00028{width:20.160000px;}
.w1_c00028{width:855.000000px;}
.w0_c00028{width:892.500000px;}
.x0_c00028{left:0.000000px;}
.x1_c00028{left:18.750000px;}
.x4_c00028{left:109.439925px;}
.x3_c00028{left:128.190000px;}
.x2_c00028{left:136.440000px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls0_c00028{letter-spacing:0.000000pt;}
.ls1_c00028{letter-spacing:0.012800pt;}
.ws0_c00028{word-spacing:-17.804800pt;}
.ws1_c00028{word-spacing:0.000000pt;}
._1_c00028{width:747.361013pt;}
._0_c00028{width:1019.274133pt;}
.fs0_c00028{font-size:64.000000pt;}
.fs1_c00028{font-size:74.240000pt;}
.y0_c00028{bottom:0.000000pt;}
.y4_c00028{bottom:3.840000pt;}
.y1_c00028{bottom:16.666667pt;}
.y2_c00028{bottom:33.653360pt;}
.y3_c00028{bottom:46.480027pt;}
.y5_c00028{bottom:993.333333pt;}
.h3_c00028{height:18.560000pt;}
.h2_c00028{height:57.375000pt;}
.h4_c00028{height:66.555000pt;}
.h1_c00028{height:1089.333333pt;}
.h0_c00028{height:1122.666667pt;}
.w2_c00028{width:17.920000pt;}
.w1_c00028{width:760.000000pt;}
.w0_c00028{width:793.333333pt;}
.x0_c00028{left:0.000000pt;}
.x1_c00028{left:16.666667pt;}
.x4_c00028{left:97.279933pt;}
.x3_c00028{left:113.946667pt;}
.x2_c00028{left:121.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cf0839dd5f25a73f4c51ffda.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00029{vertical-align:0.000000px;}
.ls1_c00029{letter-spacing:0.000000px;}
.ls0_c00029{letter-spacing:0.275616px;}
.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:-23.494176px;}
.ws1_c00029{word-spacing:0.000000px;}
._2_c00029{width:1146.684000px;}
._1_c00029{width:1254.683700px;}
._0_c00029{width:2079.683700px;}
.fc0_c00029{color:rgb(0,0,0);}
.fs1_c00029{font-size:53.280000px;}
.fs0_c00029{font-size:72.000000px;}
.fs2_c00029{font-size:83.520000px;}
.y0_c00029{bottom:0.000000px;}
.y1_c00029{bottom:18.750000px;}
.y3_c00029{bottom:36.420030px;}
.y11_c00029{bottom:622.500000px;}
.y10_c00029{bottom:660.660000px;}
.yf_c00029{bottom:698.820000px;}
.ye_c00029{bottom:736.620000px;}
.yd_c00029{bottom:774.780000px;}
.yc_c00029{bottom:812.940000px;}
.yb_c00029{bottom:851.100000px;}
.ya_c00029{bottom:888.900000px;}
.y9_c00029{bottom:927.060000px;}
.y8_c00029{bottom:965.220000px;}
.y7_c00029{bottom:1003.020000px;}
.y6_c00029{bottom:1041.180000px;}
.y5_c00029{bottom:1079.340000px;}
.y4_c00029{bottom:1117.500000px;}
.y2_c00029{bottom:1173.660000px;}
.h2_c00029{height:64.546875px;}
.h3_c00029{height:74.874375px;}
.h1_c00029{height:1225.500000px;}
.h0_c00029{height:1263.000000px;}
.w1_c00029{width:855.000000px;}
.w0_c00029{width:892.500000px;}
.x0_c00029{left:0.000000px;}
.x1_c00029{left:18.750000px;}
.x2_c00029{left:109.439925px;}
.x4_c00029{left:605.583150px;}
.x3_c00029{left:746.789700px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls1_c00029{letter-spacing:0.000000pt;}
.ls0_c00029{letter-spacing:0.244992pt;}
.ws0_c00029{word-spacing:-20.883712pt;}
.ws1_c00029{word-spacing:0.000000pt;}
._2_c00029{width:1019.274667pt;}
._1_c00029{width:1115.274400pt;}
._0_c00029{width:1848.607733pt;}
.fs1_c00029{font-size:47.360000pt;}
.fs0_c00029{font-size:64.000000pt;}
.fs2_c00029{font-size:74.240000pt;}
.y0_c00029{bottom:0.000000pt;}
.y1_c00029{bottom:16.666667pt;}
.y3_c00029{bottom:32.373360pt;}
.y11_c00029{bottom:553.333333pt;}
.y10_c00029{bottom:587.253333pt;}
.yf_c00029{bottom:621.173333pt;}
.ye_c00029{bottom:654.773333pt;}
.yd_c00029{bottom:688.693333pt;}
.yc_c00029{bottom:722.613333pt;}
.yb_c00029{bottom:756.533333pt;}
.ya_c00029{bottom:790.133333pt;}
.y9_c00029{bottom:824.053333pt;}
.y8_c00029{bottom:857.973333pt;}
.y7_c00029{bottom:891.573333pt;}
.y6_c00029{bottom:925.493333pt;}
.y5_c00029{bottom:959.413333pt;}
.y4_c00029{bottom:993.333333pt;}
.y2_c00029{bottom:1043.253333pt;}
.h2_c00029{height:57.375000pt;}
.h3_c00029{height:66.555000pt;}
.h1_c00029{height:1089.333333pt;}
.h0_c00029{height:1122.666667pt;}
.w1_c00029{width:760.000000pt;}
.w0_c00029{width:793.333333pt;}
.x0_c00029{left:0.000000pt;}
.x1_c00029{left:16.666667pt;}
.x2_c00029{left:97.279933pt;}
.x4_c00029{left:538.296133pt;}
.x3_c00029{left:663.813067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc845accef0beaceb15afc88.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00030{vertical-align:0.000000px;}
.ls0_c00030{letter-spacing:0.000000px;}
.sc__c00030{text-shadow:none;}
.sc0_c00030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00030{-webkit-text-stroke:0px transparent;}
.sc0_c00030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00030{word-spacing:0.000000px;}
._1_c00030{width:1146.684000px;}
._0_c00030{width:1254.683700px;}
.fc0_c00030{color:rgb(0,0,0);}
.fs0_c00030{font-size:72.000000px;}
.fs1_c00030{font-size:83.520000px;}
.y0_c00030{bottom:0.000000px;}
.y1_c00030{bottom:18.750000px;}
.y3_c00030{bottom:37.860030px;}
.y2_c00030{bottom:58.380030px;}
.y4_c00030{bottom:1117.500000px;}
.h2_c00030{height:64.546875px;}
.h3_c00030{height:74.874375px;}
.h1_c00030{height:1225.500000px;}
.h0_c00030{height:1263.000000px;}
.w1_c00030{width:855.000000px;}
.w0_c00030{width:892.500000px;}
.x0_c00030{left:0.000000px;}
.x1_c00030{left:18.750000px;}
.x2_c00030{left:109.439925px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls0_c00030{letter-spacing:0.000000pt;}
.ws0_c00030{word-spacing:0.000000pt;}
._1_c00030{width:1019.274667pt;}
._0_c00030{width:1115.274400pt;}
.fs0_c00030{font-size:64.000000pt;}
.fs1_c00030{font-size:74.240000pt;}
.y0_c00030{bottom:0.000000pt;}
.y1_c00030{bottom:16.666667pt;}
.y3_c00030{bottom:33.653360pt;}
.y2_c00030{bottom:51.893360pt;}
.y4_c00030{bottom:993.333333pt;}
.h2_c00030{height:57.375000pt;}
.h3_c00030{height:66.555000pt;}
.h1_c00030{height:1089.333333pt;}
.h0_c00030{height:1122.666667pt;}
.w1_c00030{width:760.000000pt;}
.w0_c00030{width:793.333333pt;}
.x0_c00030{left:0.000000pt;}
.x1_c00030{left:16.666667pt;}
.x2_c00030{left:97.279933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cf9a462d97e96443ef279205.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00031;src:url('chunks/assets/font_99efddd05ce3db2e401e37c6.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00031{vertical-align:0.000000px;}
.ls2_c00031{letter-spacing:0.000000px;}
.ls0_c00031{letter-spacing:0.014400px;}
.ls1_c00031{letter-spacing:0.036000px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00031{word-spacing:-20.030400px;}
.ws1_c00031{word-spacing:0.000000px;}
._e_c00031{margin-left:-1.015500px;}
._6_c00031{width:1.015200px;}
._b_c00031{width:2.822400px;}
._5_c00031{width:4.009740px;}
._3_c00031{width:5.106960px;}
._f_c00031{width:6.369900px;}
._8_c00031{width:7.545600px;}
._c_c00031{width:10.944000px;}
._d_c00031{width:11.944800px;}
._11_c00031{width:15.962400px;}
._7_c00031{width:16.984800px;}
._10_c00031{width:21.247200px;}
._4_c00031{width:24.969600px;}
._a_c00031{width:27.914400px;}
._9_c00031{width:35.424000px;}
._1_c00031{width:1061.484000px;}
._2_c00031{width:1146.684000px;}
._0_c00031{width:2079.683700px;}
.fc1_c00031{color:transparent;}
.fc0_c00031{color:rgb(0,0,0);}
.fs1_c00031{font-size:53.280000px;}
.fs0_c00031{font-size:72.000000px;}
.y0_c00031{bottom:0.000000px;}
.y5_c00031{bottom:3.960000px;}
.y1_c00031{bottom:18.750000px;}
.y3_c00031{bottom:36.420030px;}
.y4_c00031{bottom:47.250030px;}
.y1e_c00031{bottom:127.140030px;}
.y1d_c00031{bottom:168.540000px;}
.y1c_c00031{bottom:209.940000px;}
.y1b_c00031{bottom:251.340000px;}
.y1a_c00031{bottom:292.740000px;}
.y19_c00031{bottom:334.140000px;}
.y18_c00031{bottom:375.540000px;}
.y17_c00031{bottom:416.940000px;}
.y16_c00031{bottom:458.340000px;}
.y15_c00031{bottom:499.740000px;}
.y14_c00031{bottom:541.140000px;}
.y13_c00031{bottom:582.540000px;}
.y12_c00031{bottom:623.940000px;}
.y11_c00031{bottom:665.340000px;}
.y10_c00031{bottom:706.740000px;}
.yf_c00031{bottom:748.140000px;}
.ye_c00031{bottom:789.540000px;}
.yd_c00031{bottom:830.940000px;}
.yc_c00031{bottom:872.340000px;}
.yb_c00031{bottom:913.740000px;}
.ya_c00031{bottom:955.140000px;}
.y9_c00031{bottom:996.540000px;}
.y8_c00031{bottom:1037.940000px;}
.y7_c00031{bottom:1079.340000px;}
.y6_c00031{bottom:1120.740000px;}
.y2_c00031{bottom:1173.660000px;}
.h3_c00031{height:20.520000px;}
.h2_c00031{height:64.546875px;}
.h4_c00031{height:65.003906px;}
.h1_c00031{height:1225.500000px;}
.h0_c00031{height:1263.000000px;}
.w2_c00031{width:20.160000px;}
.w1_c00031{width:855.000000px;}
.w0_c00031{width:892.500000px;}
.x0_c00031{left:0.000000px;}
.x1_c00031{left:18.750000px;}
.x2_c00031{left:109.439925px;}
.x5_c00031{left:151.965150px;}
.x3_c00031{left:157.739850px;}
.x4_c00031{left:745.590000px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls2_c00031{letter-spacing:0.000000pt;}
.ls0_c00031{letter-spacing:0.012800pt;}
.ls1_c00031{letter-spacing:0.032000pt;}
.ws0_c00031{word-spacing:-17.804800pt;}
.ws1_c00031{word-spacing:0.000000pt;}
._e_c00031{margin-left:-0.902667pt;}
._6_c00031{width:0.902400pt;}
._b_c00031{width:2.508800pt;}
._5_c00031{width:3.564213pt;}
._3_c00031{width:4.539520pt;}
._f_c00031{width:5.662133pt;}
._8_c00031{width:6.707200pt;}
._c_c00031{width:9.728000pt;}
._d_c00031{width:10.617600pt;}
._11_c00031{width:14.188800pt;}
._7_c00031{width:15.097600pt;}
._10_c00031{width:18.886400pt;}
._4_c00031{width:22.195200pt;}
._a_c00031{width:24.812800pt;}
._9_c00031{width:31.488000pt;}
._1_c00031{width:943.541333pt;}
._2_c00031{width:1019.274667pt;}
._0_c00031{width:1848.607733pt;}
.fs1_c00031{font-size:47.360000pt;}
.fs0_c00031{font-size:64.000000pt;}
.y0_c00031{bottom:0.000000pt;}
.y5_c00031{bottom:3.520000pt;}
.y1_c00031{bottom:16.666667pt;}
.y3_c00031{bottom:32.373360pt;}
.y4_c00031{bottom:42.000027pt;}
.y1e_c00031{bottom:113.013360pt;}
.y1d_c00031{bottom:149.813333pt;}
.y1c_c00031{bottom:186.613333pt;}
.y1b_c00031{bottom:223.413333pt;}
.y1a_c00031{bottom:260.213333pt;}
.y19_c00031{bottom:297.013333pt;}
.y18_c00031{bottom:333.813333pt;}
.y17_c00031{bottom:370.613333pt;}
.y16_c00031{bottom:407.413333pt;}
.y15_c00031{bottom:444.213333pt;}
.y14_c00031{bottom:481.013333pt;}
.y13_c00031{bottom:517.813333pt;}
.y12_c00031{bottom:554.613333pt;}
.y11_c00031{bottom:591.413333pt;}
.y10_c00031{bottom:628.213333pt;}
.yf_c00031{bottom:665.013333pt;}
.ye_c00031{bottom:701.813333pt;}
.yd_c00031{bottom:738.613333pt;}
.yc_c00031{bottom:775.413333pt;}
.yb_c00031{bottom:812.213333pt;}
.ya_c00031{bottom:849.013333pt;}
.y9_c00031{bottom:885.813333pt;}
.y8_c00031{bottom:922.613333pt;}
.y7_c00031{bottom:959.413333pt;}
.y6_c00031{bottom:996.213333pt;}
.y2_c00031{bottom:1043.253333pt;}
.h3_c00031{height:18.240000pt;}
.h2_c00031{height:57.375000pt;}
.h4_c00031{height:57.781250pt;}
.h1_c00031{height:1089.333333pt;}
.h0_c00031{height:1122.666667pt;}
.w2_c00031{width:17.920000pt;}
.w1_c00031{width:760.000000pt;}
.w0_c00031{width:793.333333pt;}
.x0_c00031{left:0.000000pt;}
.x1_c00031{left:16.666667pt;}
.x2_c00031{left:97.279933pt;}
.x5_c00031{left:135.080133pt;}
.x3_c00031{left:140.213200pt;}
.x4_c00031{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aacbaa8ce9c10efa5dc9791a.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00032{letter-spacing:-0.014400px;}
.ls1_c00032{letter-spacing:0.000000px;}
.ls0_c00032{letter-spacing:0.014400px;}
.ls2_c00032{letter-spacing:0.036000px;}
.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:-20.030400px;}
.ws1_c00032{word-spacing:-20.016000px;}
.ws2_c00032{word-spacing:0.000000px;}
._4_c00032{width:1.526400px;}
._a_c00032{width:5.212800px;}
._b_c00032{width:6.832800px;}
._6_c00032{width:7.948800px;}
._5_c00032{width:12.434400px;}
._d_c00032{width:13.680000px;}
._e_c00032{width:15.256800px;}
._2_c00032{width:18.100800px;}
._1_c00032{width:29.772000px;}
._7_c00032{width:31.953600px;}
._9_c00032{width:34.596000px;}
._c_c00032{width:41.637600px;}
._8_c00032{width:42.638400px;}
._3_c00032{width:47.692800px;}
._0_c00032{width:1146.683400px;}
.fc1_c00032{color:transparent;}
.fc0_c00032{color:rgb(0,0,0);}
.fs0_c00032{font-size:72.000000px;}
.y0_c00032{bottom:0.000000px;}
.y4_c00032{bottom:4.320000px;}
.y1_c00032{bottom:18.750000px;}
.y2_c00032{bottom:37.860030px;}
.y3_c00032{bottom:52.290030px;}
.y1d_c00032{bottom:127.140030px;}
.y1c_c00032{bottom:168.540000px;}
.y1b_c00032{bottom:209.940000px;}
.y1a_c00032{bottom:251.340000px;}
.y19_c00032{bottom:292.740000px;}
.y18_c00032{bottom:334.140000px;}
.y17_c00032{bottom:375.540000px;}
.y16_c00032{bottom:416.940000px;}
.y15_c00032{bottom:458.340000px;}
.y14_c00032{bottom:499.740000px;}
.y13_c00032{bottom:541.140000px;}
.y12_c00032{bottom:582.540000px;}
.y11_c00032{bottom:623.940000px;}
.y10_c00032{bottom:665.340000px;}
.yf_c00032{bottom:706.740000px;}
.ye_c00032{bottom:748.140000px;}
.yd_c00032{bottom:789.540000px;}
.yc_c00032{bottom:830.940000px;}
.yb_c00032{bottom:872.340000px;}
.ya_c00032{bottom:913.740000px;}
.y9_c00032{bottom:955.140000px;}
.y8_c00032{bottom:996.540000px;}
.y7_c00032{bottom:1037.940000px;}
.y6_c00032{bottom:1079.340000px;}
.y5_c00032{bottom:1120.740000px;}
.h3_c00032{height:20.880000px;}
.h2_c00032{height:64.546875px;}
.h1_c00032{height:1225.500000px;}
.h0_c00032{height:1263.000000px;}
.w2_c00032{width:20.160000px;}
.w1_c00032{width:855.000000px;}
.w0_c00032{width:892.500000px;}
.x0_c00032{left:0.000000px;}
.x1_c00032{left:18.750000px;}
.x5_c00032{left:109.439925px;}
.x3_c00032{left:128.190000px;}
.x2_c00032{left:136.440000px;}
.x4_c00032{left:151.965150px;}
.x6_c00032{left:162.539850px;}
.x7_c00032{left:194.489850px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls3_c00032{letter-spacing:-0.012800pt;}
.ls1_c00032{letter-spacing:0.000000pt;}
.ls0_c00032{letter-spacing:0.012800pt;}
.ls2_c00032{letter-spacing:0.032000pt;}
.ws0_c00032{word-spacing:-17.804800pt;}
.ws1_c00032{word-spacing:-17.792000pt;}
.ws2_c00032{word-spacing:0.000000pt;}
._4_c00032{width:1.356800pt;}
._a_c00032{width:4.633600pt;}
._b_c00032{width:6.073600pt;}
._6_c00032{width:7.065600pt;}
._5_c00032{width:11.052800pt;}
._d_c00032{width:12.160000pt;}
._e_c00032{width:13.561600pt;}
._2_c00032{width:16.089600pt;}
._1_c00032{width:26.464000pt;}
._7_c00032{width:28.403200pt;}
._9_c00032{width:30.752000pt;}
._c_c00032{width:37.011200pt;}
._8_c00032{width:37.900800pt;}
._3_c00032{width:42.393600pt;}
._0_c00032{width:1019.274133pt;}
.fs0_c00032{font-size:64.000000pt;}
.y0_c00032{bottom:0.000000pt;}
.y4_c00032{bottom:3.840000pt;}
.y1_c00032{bottom:16.666667pt;}
.y2_c00032{bottom:33.653360pt;}
.y3_c00032{bottom:46.480027pt;}
.y1d_c00032{bottom:113.013360pt;}
.y1c_c00032{bottom:149.813333pt;}
.y1b_c00032{bottom:186.613333pt;}
.y1a_c00032{bottom:223.413333pt;}
.y19_c00032{bottom:260.213333pt;}
.y18_c00032{bottom:297.013333pt;}
.y17_c00032{bottom:333.813333pt;}
.y16_c00032{bottom:370.613333pt;}
.y15_c00032{bottom:407.413333pt;}
.y14_c00032{bottom:444.213333pt;}
.y13_c00032{bottom:481.013333pt;}
.y12_c00032{bottom:517.813333pt;}
.y11_c00032{bottom:554.613333pt;}
.y10_c00032{bottom:591.413333pt;}
.yf_c00032{bottom:628.213333pt;}
.ye_c00032{bottom:665.013333pt;}
.yd_c00032{bottom:701.813333pt;}
.yc_c00032{bottom:738.613333pt;}
.yb_c00032{bottom:775.413333pt;}
.ya_c00032{bottom:812.213333pt;}
.y9_c00032{bottom:849.013333pt;}
.y8_c00032{bottom:885.813333pt;}
.y7_c00032{bottom:922.613333pt;}
.y6_c00032{bottom:959.413333pt;}
.y5_c00032{bottom:996.213333pt;}
.h3_c00032{height:18.560000pt;}
.h2_c00032{height:57.375000pt;}
.h1_c00032{height:1089.333333pt;}
.h0_c00032{height:1122.666667pt;}
.w2_c00032{width:17.920000pt;}
.w1_c00032{width:760.000000pt;}
.w0_c00032{width:793.333333pt;}
.x0_c00032{left:0.000000pt;}
.x1_c00032{left:16.666667pt;}
.x5_c00032{left:97.279933pt;}
.x3_c00032{left:113.946667pt;}
.x2_c00032{left:121.280000pt;}
.x4_c00032{left:135.080133pt;}
.x6_c00032{left:144.479867pt;}
.x7_c00032{left:172.879867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_85506655d8afe64a5782fa9c.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.ls1_c00033{letter-spacing:0.000000px;}
.ls0_c00033{letter-spacing:0.014400px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00033{word-spacing:-20.030400px;}
.ws1_c00033{word-spacing:0.000000px;}
._9_c00033{width:5.940000px;}
._7_c00033{width:7.646400px;}
._4_c00033{width:8.812800px;}
._8_c00033{width:15.657600px;}
._5_c00033{width:16.696800px;}
._6_c00033{width:21.578400px;}
._a_c00033{width:23.068200px;}
._b_c00033{width:24.250800px;}
._3_c00033{width:47.692800px;}
._c_c00033{width:843.983700px;}
._1_c00033{width:1061.484000px;}
._2_c00033{width:1146.684000px;}
._0_c00033{width:2079.683700px;}
.fc1_c00033{color:transparent;}
.fc0_c00033{color:rgb(0,0,0);}
.fs1_c00033{font-size:53.280000px;}
.fs0_c00033{font-size:72.000000px;}
.y0_c00033{bottom:0.000000px;}
.y5_c00033{bottom:3.960000px;}
.y1_c00033{bottom:18.750000px;}
.y3_c00033{bottom:36.420030px;}
.y4_c00033{bottom:47.250030px;}
.y12_c00033{bottom:623.940000px;}
.y11_c00033{bottom:665.340000px;}
.y10_c00033{bottom:706.740000px;}
.yf_c00033{bottom:748.140000px;}
.ye_c00033{bottom:789.540000px;}
.yd_c00033{bottom:830.940000px;}
.yc_c00033{bottom:872.340000px;}
.yb_c00033{bottom:913.740000px;}
.ya_c00033{bottom:955.140000px;}
.y9_c00033{bottom:996.540000px;}
.y8_c00033{bottom:1037.940000px;}
.y7_c00033{bottom:1079.340000px;}
.y6_c00033{bottom:1120.740000px;}
.y2_c00033{bottom:1173.660000px;}
.h3_c00033{height:20.520000px;}
.h2_c00033{height:64.546875px;}
.h1_c00033{height:1225.500000px;}
.h0_c00033{height:1263.000000px;}
.w2_c00033{width:20.160000px;}
.w1_c00033{width:855.000000px;}
.w0_c00033{width:892.500000px;}
.x0_c00033{left:0.000000px;}
.x1_c00033{left:18.750000px;}
.x2_c00033{left:109.439925px;}
.x3_c00033{left:157.739850px;}
.x5_c00033{left:162.539850px;}
.x6_c00033{left:194.489850px;}
.x4_c00033{left:745.590000px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls1_c00033{letter-spacing:0.000000pt;}
.ls0_c00033{letter-spacing:0.012800pt;}
.ws0_c00033{word-spacing:-17.804800pt;}
.ws1_c00033{word-spacing:0.000000pt;}
._9_c00033{width:5.280000pt;}
._7_c00033{width:6.796800pt;}
._4_c00033{width:7.833600pt;}
._8_c00033{width:13.917867pt;}
._5_c00033{width:14.841600pt;}
._6_c00033{width:19.180800pt;}
._a_c00033{width:20.505067pt;}
._b_c00033{width:21.556267pt;}
._3_c00033{width:42.393600pt;}
._c_c00033{width:750.207733pt;}
._1_c00033{width:943.541333pt;}
._2_c00033{width:1019.274667pt;}
._0_c00033{width:1848.607733pt;}
.fs1_c00033{font-size:47.360000pt;}
.fs0_c00033{font-size:64.000000pt;}
.y0_c00033{bottom:0.000000pt;}
.y5_c00033{bottom:3.520000pt;}
.y1_c00033{bottom:16.666667pt;}
.y3_c00033{bottom:32.373360pt;}
.y4_c00033{bottom:42.000027pt;}
.y12_c00033{bottom:554.613333pt;}
.y11_c00033{bottom:591.413333pt;}
.y10_c00033{bottom:628.213333pt;}
.yf_c00033{bottom:665.013333pt;}
.ye_c00033{bottom:701.813333pt;}
.yd_c00033{bottom:738.613333pt;}
.yc_c00033{bottom:775.413333pt;}
.yb_c00033{bottom:812.213333pt;}
.ya_c00033{bottom:849.013333pt;}
.y9_c00033{bottom:885.813333pt;}
.y8_c00033{bottom:922.613333pt;}
.y7_c00033{bottom:959.413333pt;}
.y6_c00033{bottom:996.213333pt;}
.y2_c00033{bottom:1043.253333pt;}
.h3_c00033{height:18.240000pt;}
.h2_c00033{height:57.375000pt;}
.h1_c00033{height:1089.333333pt;}
.h0_c00033{height:1122.666667pt;}
.w2_c00033{width:17.920000pt;}
.w1_c00033{width:760.000000pt;}
.w0_c00033{width:793.333333pt;}
.x0_c00033{left:0.000000pt;}
.x1_c00033{left:16.666667pt;}
.x2_c00033{left:97.279933pt;}
.x3_c00033{left:140.213200pt;}
.x5_c00033{left:144.479867pt;}
.x6_c00033{left:172.879867pt;}
.x4_c00033{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_504519d7ddd782825b01c0ed.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00034{letter-spacing:0.014400px;}
.sc__c00034{text-shadow:none;}
.sc0_c00034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00034{-webkit-text-stroke:0px transparent;}
.sc0_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00034{word-spacing:-20.030400px;}
.ws1_c00034{word-spacing:0.000000px;}
._0_c00034{width:1146.683400px;}
.fc1_c00034{color:transparent;}
.fc0_c00034{color:rgb(0,0,0);}
.fs0_c00034{font-size:72.000000px;}
.y0_c00034{bottom:0.000000px;}
.y4_c00034{bottom:4.320000px;}
.y1_c00034{bottom:18.750000px;}
.y2_c00034{bottom:37.860030px;}
.y3_c00034{bottom:52.290030px;}
.y1d_c00034{bottom:127.140030px;}
.y1c_c00034{bottom:168.540000px;}
.y1b_c00034{bottom:209.940000px;}
.y1a_c00034{bottom:251.340000px;}
.y19_c00034{bottom:292.740000px;}
.y18_c00034{bottom:334.140000px;}
.y17_c00034{bottom:375.540000px;}
.y16_c00034{bottom:416.940000px;}
.y15_c00034{bottom:458.340000px;}
.y14_c00034{bottom:499.740000px;}
.y13_c00034{bottom:541.140000px;}
.y12_c00034{bottom:582.540000px;}
.y11_c00034{bottom:623.940000px;}
.y10_c00034{bottom:665.340000px;}
.yf_c00034{bottom:706.740000px;}
.ye_c00034{bottom:748.140000px;}
.yd_c00034{bottom:789.540000px;}
.yc_c00034{bottom:830.940000px;}
.yb_c00034{bottom:872.340000px;}
.ya_c00034{bottom:913.740000px;}
.y9_c00034{bottom:955.140000px;}
.y8_c00034{bottom:996.540000px;}
.y7_c00034{bottom:1037.940000px;}
.y6_c00034{bottom:1079.340000px;}
.y5_c00034{bottom:1120.740000px;}
.h3_c00034{height:20.880000px;}
.h2_c00034{height:64.546875px;}
.h1_c00034{height:1225.500000px;}
.h0_c00034{height:1263.000000px;}
.w2_c00034{width:20.160000px;}
.w1_c00034{width:855.000000px;}
.w0_c00034{width:892.500000px;}
.x0_c00034{left:0.000000px;}
.x1_c00034{left:18.750000px;}
.x3_c00034{left:128.190000px;}
.x2_c00034{left:136.440000px;}
.x4_c00034{left:151.965150px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls0_c00034{letter-spacing:0.000000pt;}
.ls1_c00034{letter-spacing:0.012800pt;}
.ws0_c00034{word-spacing:-17.804800pt;}
.ws1_c00034{word-spacing:0.000000pt;}
._0_c00034{width:1019.274133pt;}
.fs0_c00034{font-size:64.000000pt;}
.y0_c00034{bottom:0.000000pt;}
.y4_c00034{bottom:3.840000pt;}
.y1_c00034{bottom:16.666667pt;}
.y2_c00034{bottom:33.653360pt;}
.y3_c00034{bottom:46.480027pt;}
.y1d_c00034{bottom:113.013360pt;}
.y1c_c00034{bottom:149.813333pt;}
.y1b_c00034{bottom:186.613333pt;}
.y1a_c00034{bottom:223.413333pt;}
.y19_c00034{bottom:260.213333pt;}
.y18_c00034{bottom:297.013333pt;}
.y17_c00034{bottom:333.813333pt;}
.y16_c00034{bottom:370.613333pt;}
.y15_c00034{bottom:407.413333pt;}
.y14_c00034{bottom:444.213333pt;}
.y13_c00034{bottom:481.013333pt;}
.y12_c00034{bottom:517.813333pt;}
.y11_c00034{bottom:554.613333pt;}
.y10_c00034{bottom:591.413333pt;}
.yf_c00034{bottom:628.213333pt;}
.ye_c00034{bottom:665.013333pt;}
.yd_c00034{bottom:701.813333pt;}
.yc_c00034{bottom:738.613333pt;}
.yb_c00034{bottom:775.413333pt;}
.ya_c00034{bottom:812.213333pt;}
.y9_c00034{bottom:849.013333pt;}
.y8_c00034{bottom:885.813333pt;}
.y7_c00034{bottom:922.613333pt;}
.y6_c00034{bottom:959.413333pt;}
.y5_c00034{bottom:996.213333pt;}
.h3_c00034{height:18.560000pt;}
.h2_c00034{height:57.375000pt;}
.h1_c00034{height:1089.333333pt;}
.h0_c00034{height:1122.666667pt;}
.w2_c00034{width:17.920000pt;}
.w1_c00034{width:760.000000pt;}
.w0_c00034{width:793.333333pt;}
.x0_c00034{left:0.000000pt;}
.x1_c00034{left:16.666667pt;}
.x3_c00034{left:113.946667pt;}
.x2_c00034{left:121.280000pt;}
.x4_c00034{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_32a564ca2d51e7a1636a91a8.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00035;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.113281;font-style: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;}
.ls1_c00035{letter-spacing:0.275616px;}
.ls2_c00035{letter-spacing:0.442656px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00035{word-spacing:0.000000px;}
._3_c00035{margin-left:-1.060368px;}
._4_c00035{width:843.983700px;}
._2_c00035{width:1146.684000px;}
._1_c00035{width:1254.683700px;}
._0_c00035{width:2079.683700px;}
.fc0_c00035{color:rgb(0,0,0);}
.fs1_c00035{font-size:53.280000px;}
.fs0_c00035{font-size:72.000000px;}
.fs2_c00035{font-size:83.520000px;}
.y0_c00035{bottom:0.000000px;}
.y1_c00035{bottom:18.750000px;}
.y3_c00035{bottom:36.420030px;}
.y12_c00035{bottom:582.180000px;}
.y11_c00035{bottom:619.260000px;}
.y10_c00035{bottom:657.420000px;}
.yf_c00035{bottom:695.220000px;}
.ye_c00035{bottom:733.380000px;}
.yd_c00035{bottom:771.540000px;}
.yc_c00035{bottom:809.700000px;}
.yb_c00035{bottom:847.500000px;}
.ya_c00035{bottom:885.660000px;}
.y9_c00035{bottom:923.820000px;}
.y8_c00035{bottom:961.620000px;}
.y7_c00035{bottom:999.780000px;}
.y6_c00035{bottom:1037.940000px;}
.y5_c00035{bottom:1076.100000px;}
.y4_c00035{bottom:1120.740000px;}
.y2_c00035{bottom:1173.660000px;}
.h2_c00035{height:64.546875px;}
.h4_c00035{height:65.003906px;}
.h3_c00035{height:74.874375px;}
.h1_c00035{height:1225.500000px;}
.h0_c00035{height:1263.000000px;}
.w1_c00035{width:855.000000px;}
.w0_c00035{width:892.500000px;}
.x0_c00035{left:0.000000px;}
.x1_c00035{left:18.750000px;}
.x2_c00035{left:109.439925px;}
.x3_c00035{left:151.965150px;}
.x5_c00035{left:543.762450px;}
.x4_c00035{left:746.789700px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls0_c00035{letter-spacing:0.000000pt;}
.ls1_c00035{letter-spacing:0.244992pt;}
.ls2_c00035{letter-spacing:0.393472pt;}
.ws0_c00035{word-spacing:0.000000pt;}
._3_c00035{margin-left:-0.942549pt;}
._4_c00035{width:750.207733pt;}
._2_c00035{width:1019.274667pt;}
._1_c00035{width:1115.274400pt;}
._0_c00035{width:1848.607733pt;}
.fs1_c00035{font-size:47.360000pt;}
.fs0_c00035{font-size:64.000000pt;}
.fs2_c00035{font-size:74.240000pt;}
.y0_c00035{bottom:0.000000pt;}
.y1_c00035{bottom:16.666667pt;}
.y3_c00035{bottom:32.373360pt;}
.y12_c00035{bottom:517.493333pt;}
.y11_c00035{bottom:550.453333pt;}
.y10_c00035{bottom:584.373333pt;}
.yf_c00035{bottom:617.973333pt;}
.ye_c00035{bottom:651.893333pt;}
.yd_c00035{bottom:685.813333pt;}
.yc_c00035{bottom:719.733333pt;}
.yb_c00035{bottom:753.333333pt;}
.ya_c00035{bottom:787.253333pt;}
.y9_c00035{bottom:821.173333pt;}
.y8_c00035{bottom:854.773333pt;}
.y7_c00035{bottom:888.693333pt;}
.y6_c00035{bottom:922.613333pt;}
.y5_c00035{bottom:956.533333pt;}
.y4_c00035{bottom:996.213333pt;}
.y2_c00035{bottom:1043.253333pt;}
.h2_c00035{height:57.375000pt;}
.h4_c00035{height:57.781250pt;}
.h3_c00035{height:66.555000pt;}
.h1_c00035{height:1089.333333pt;}
.h0_c00035{height:1122.666667pt;}
.w1_c00035{width:760.000000pt;}
.w0_c00035{width:793.333333pt;}
.x0_c00035{left:0.000000pt;}
.x1_c00035{left:16.666667pt;}
.x2_c00035{left:97.279933pt;}
.x3_c00035{left:135.080133pt;}
.x5_c00035{left:483.344400pt;}
.x4_c00035{left:663.813067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc845accef0beaceb15afc88.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00036;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00036{vertical-align:0.000000px;}
.ls0_c00036{letter-spacing:0.000000px;}
.sc__c00036{text-shadow:none;}
.sc0_c00036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00036{-webkit-text-stroke:0px transparent;}
.sc0_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00036{word-spacing:0.000000px;}
._1_c00036{width:1146.684000px;}
._0_c00036{width:1254.683700px;}
.fc0_c00036{color:rgb(0,0,0);}
.fs0_c00036{font-size:72.000000px;}
.y0_c00036{bottom:0.000000px;}
.y1_c00036{bottom:18.750000px;}
.y3_c00036{bottom:37.860030px;}
.y2_c00036{bottom:58.380030px;}
.y4_c00036{bottom:1120.740000px;}
.h2_c00036{height:64.546875px;}
.h3_c00036{height:65.003906px;}
.h1_c00036{height:1225.500000px;}
.h0_c00036{height:1263.000000px;}
.w1_c00036{width:855.000000px;}
.w0_c00036{width:892.500000px;}
.x0_c00036{left:0.000000px;}
.x1_c00036{left:18.750000px;}
.x2_c00036{left:109.439925px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls0_c00036{letter-spacing:0.000000pt;}
.ws0_c00036{word-spacing:0.000000pt;}
._1_c00036{width:1019.274667pt;}
._0_c00036{width:1115.274400pt;}
.fs0_c00036{font-size:64.000000pt;}
.y0_c00036{bottom:0.000000pt;}
.y1_c00036{bottom:16.666667pt;}
.y3_c00036{bottom:33.653360pt;}
.y2_c00036{bottom:51.893360pt;}
.y4_c00036{bottom:996.213333pt;}
.h2_c00036{height:57.375000pt;}
.h3_c00036{height:57.781250pt;}
.h1_c00036{height:1089.333333pt;}
.h0_c00036{height:1122.666667pt;}
.w1_c00036{width:760.000000pt;}
.w0_c00036{width:793.333333pt;}
.x0_c00036{left:0.000000pt;}
.x1_c00036{left:16.666667pt;}
.x2_c00036{left:97.279933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_01dc6da50a5d0cc39ba50169.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00037;src:url('chunks/assets/font_e72590d70e6364812a15719c.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.ls2_c00037{letter-spacing:-0.014400px;}
.ls1_c00037{letter-spacing:0.000000px;}
.ls0_c00037{letter-spacing:0.014400px;}
.sc__c00037{text-shadow:none;}
.sc0_c00037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00037{-webkit-text-stroke:0px transparent;}
.sc0_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00037{word-spacing:-20.030400px;}
.ws1_c00037{word-spacing:0.000000px;}
._5_c00037{margin-left:-1.008000px;}
._c_c00037{width:1.051200px;}
._3_c00037{width:2.088000px;}
._b_c00037{width:3.384000px;}
._1_c00037{width:5.106960px;}
._d_c00037{width:7.653600px;}
._9_c00037{width:9.360000px;}
._4_c00037{width:11.505600px;}
._6_c00037{width:13.089600px;}
._8_c00037{width:15.480000px;}
._7_c00037{width:17.121600px;}
._10_c00037{width:18.496800px;}
._f_c00037{width:21.124800px;}
._11_c00037{width:22.173900px;}
._e_c00037{width:28.303200px;}
._a_c00037{width:29.931300px;}
._2_c00037{width:60.228000px;}
._0_c00037{width:2079.683700px;}
.fc1_c00037{color:transparent;}
.fc0_c00037{color:rgb(0,0,0);}
.fs0_c00037{font-size:72.000000px;}
.y0_c00037{bottom:0.000000px;}
.y5_c00037{bottom:4.320000px;}
.y1_c00037{bottom:18.750000px;}
.y3_c00037{bottom:37.860030px;}
.y4_c00037{bottom:52.290030px;}
.y1d_c00037{bottom:150.540000px;}
.y1c_c00037{bottom:191.940000px;}
.y1b_c00037{bottom:233.340000px;}
.y1a_c00037{bottom:274.740000px;}
.y19_c00037{bottom:316.140000px;}
.y18_c00037{bottom:357.540000px;}
.y17_c00037{bottom:398.940000px;}
.y16_c00037{bottom:440.340000px;}
.y15_c00037{bottom:481.740000px;}
.y14_c00037{bottom:523.140000px;}
.y13_c00037{bottom:564.540000px;}
.y12_c00037{bottom:623.940000px;}
.y11_c00037{bottom:665.340000px;}
.y10_c00037{bottom:706.740000px;}
.yf_c00037{bottom:748.140000px;}
.ye_c00037{bottom:789.540000px;}
.yd_c00037{bottom:830.940000px;}
.yc_c00037{bottom:872.340000px;}
.yb_c00037{bottom:913.740000px;}
.ya_c00037{bottom:955.140000px;}
.y9_c00037{bottom:996.540000px;}
.y8_c00037{bottom:1037.940000px;}
.y7_c00037{bottom:1079.340000px;}
.y6_c00037{bottom:1120.740000px;}
.y2_c00037{bottom:1173.660000px;}
.h3_c00037{height:20.880000px;}
.h2_c00037{height:64.546875px;}
.h4_c00037{height:65.003906px;}
.h1_c00037{height:1225.500000px;}
.h0_c00037{height:1263.000000px;}
.w2_c00037{width:20.160000px;}
.w1_c00037{width:855.000000px;}
.w0_c00037{width:892.500000px;}
.x0_c00037{left:0.000000px;}
.x1_c00037{left:18.750000px;}
.x2_c00037{left:109.439925px;}
.x3_c00037{left:136.440000px;}
.x5_c00037{left:151.965150px;}
.x4_c00037{left:745.590000px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls2_c00037{letter-spacing:-0.012800pt;}
.ls1_c00037{letter-spacing:0.000000pt;}
.ls0_c00037{letter-spacing:0.012800pt;}
.ws0_c00037{word-spacing:-17.804800pt;}
.ws1_c00037{word-spacing:0.000000pt;}
._5_c00037{margin-left:-0.896000pt;}
._c_c00037{width:0.934400pt;}
._3_c00037{width:1.856000pt;}
._b_c00037{width:3.008000pt;}
._1_c00037{width:4.539520pt;}
._d_c00037{width:6.803200pt;}
._9_c00037{width:8.320000pt;}
._4_c00037{width:10.227200pt;}
._6_c00037{width:11.635200pt;}
._8_c00037{width:13.760000pt;}
._7_c00037{width:15.219200pt;}
._10_c00037{width:16.441600pt;}
._f_c00037{width:18.777600pt;}
._11_c00037{width:19.710133pt;}
._e_c00037{width:25.158400pt;}
._a_c00037{width:26.605600pt;}
._2_c00037{width:53.536000pt;}
._0_c00037{width:1848.607733pt;}
.fs0_c00037{font-size:64.000000pt;}
.y0_c00037{bottom:0.000000pt;}
.y5_c00037{bottom:3.840000pt;}
.y1_c00037{bottom:16.666667pt;}
.y3_c00037{bottom:33.653360pt;}
.y4_c00037{bottom:46.480027pt;}
.y1d_c00037{bottom:133.813333pt;}
.y1c_c00037{bottom:170.613333pt;}
.y1b_c00037{bottom:207.413333pt;}
.y1a_c00037{bottom:244.213333pt;}
.y19_c00037{bottom:281.013333pt;}
.y18_c00037{bottom:317.813333pt;}
.y17_c00037{bottom:354.613333pt;}
.y16_c00037{bottom:391.413333pt;}
.y15_c00037{bottom:428.213333pt;}
.y14_c00037{bottom:465.013333pt;}
.y13_c00037{bottom:501.813333pt;}
.y12_c00037{bottom:554.613333pt;}
.y11_c00037{bottom:591.413333pt;}
.y10_c00037{bottom:628.213333pt;}
.yf_c00037{bottom:665.013333pt;}
.ye_c00037{bottom:701.813333pt;}
.yd_c00037{bottom:738.613333pt;}
.yc_c00037{bottom:775.413333pt;}
.yb_c00037{bottom:812.213333pt;}
.ya_c00037{bottom:849.013333pt;}
.y9_c00037{bottom:885.813333pt;}
.y8_c00037{bottom:922.613333pt;}
.y7_c00037{bottom:959.413333pt;}
.y6_c00037{bottom:996.213333pt;}
.y2_c00037{bottom:1043.253333pt;}
.h3_c00037{height:18.560000pt;}
.h2_c00037{height:57.375000pt;}
.h4_c00037{height:57.781250pt;}
.h1_c00037{height:1089.333333pt;}
.h0_c00037{height:1122.666667pt;}
.w2_c00037{width:17.920000pt;}
.w1_c00037{width:760.000000pt;}
.w0_c00037{width:793.333333pt;}
.x0_c00037{left:0.000000pt;}
.x1_c00037{left:16.666667pt;}
.x2_c00037{left:97.279933pt;}
.x3_c00037{left:121.280000pt;}
.x5_c00037{left:135.080133pt;}
.x4_c00037{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f645409177133c7399e7019a.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00038{vertical-align:0.000000px;}
.ls3_c00038{letter-spacing:-0.014400px;}
.ls2_c00038{letter-spacing:0.000000px;}
.ls0_c00038{letter-spacing:0.014400px;}
.ls1_c00038{letter-spacing:0.036000px;}
.sc__c00038{text-shadow:none;}
.sc0_c00038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00038{-webkit-text-stroke:0px transparent;}
.sc0_c00038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00038{word-spacing:-20.030400px;}
.ws1_c00038{word-spacing:0.000000px;}
._c_c00038{width:1.014300px;}
._8_c00038{width:2.023200px;}
._2_c00038{width:3.852000px;}
._7_c00038{width:4.886700px;}
._b_c00038{width:6.011100px;}
._d_c00038{width:7.261200px;}
._e_c00038{width:8.330400px;}
._3_c00038{width:9.396000px;}
._6_c00038{width:13.269600px;}
._4_c00038{width:16.279200px;}
._9_c00038{width:21.072300px;}
._1_c00038{width:32.889600px;}
._a_c00038{width:34.423200px;}
._5_c00038{width:42.444000px;}
._0_c00038{width:1146.683400px;}
.fc1_c00038{color:transparent;}
.fc0_c00038{color:rgb(0,0,0);}
.fs0_c00038{font-size:72.000000px;}
.y0_c00038{bottom:0.000000px;}
.y4_c00038{bottom:4.320000px;}
.y1_c00038{bottom:18.750000px;}
.y2_c00038{bottom:37.860030px;}
.y3_c00038{bottom:52.290030px;}
.y1d_c00038{bottom:127.140030px;}
.y1c_c00038{bottom:168.540000px;}
.y1b_c00038{bottom:209.940000px;}
.y1a_c00038{bottom:251.340000px;}
.y19_c00038{bottom:292.740000px;}
.y18_c00038{bottom:334.140000px;}
.y17_c00038{bottom:375.540000px;}
.y16_c00038{bottom:416.940000px;}
.y15_c00038{bottom:458.340000px;}
.y14_c00038{bottom:499.740000px;}
.y13_c00038{bottom:541.140000px;}
.y12_c00038{bottom:582.540000px;}
.y11_c00038{bottom:623.940000px;}
.y10_c00038{bottom:665.340000px;}
.yf_c00038{bottom:706.740000px;}
.ye_c00038{bottom:748.140000px;}
.yd_c00038{bottom:789.540000px;}
.yc_c00038{bottom:830.940000px;}
.yb_c00038{bottom:872.340000px;}
.ya_c00038{bottom:913.740000px;}
.y9_c00038{bottom:955.140000px;}
.y8_c00038{bottom:996.540000px;}
.y7_c00038{bottom:1037.940000px;}
.y6_c00038{bottom:1079.340000px;}
.y5_c00038{bottom:1120.740000px;}
.h3_c00038{height:20.880000px;}
.h2_c00038{height:64.546875px;}
.h1_c00038{height:1225.500000px;}
.h0_c00038{height:1263.000000px;}
.w2_c00038{width:20.160000px;}
.w1_c00038{width:855.000000px;}
.w0_c00038{width:892.500000px;}
.x0_c00038{left:0.000000px;}
.x1_c00038{left:18.750000px;}
.x4_c00038{left:109.439925px;}
.x3_c00038{left:128.190000px;}
.x2_c00038{left:136.440000px;}
.x5_c00038{left:151.965150px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls3_c00038{letter-spacing:-0.012800pt;}
.ls2_c00038{letter-spacing:0.000000pt;}
.ls0_c00038{letter-spacing:0.012800pt;}
.ls1_c00038{letter-spacing:0.032000pt;}
.ws0_c00038{word-spacing:-17.804800pt;}
.ws1_c00038{word-spacing:0.000000pt;}
._c_c00038{width:0.901600pt;}
._8_c00038{width:1.798400pt;}
._2_c00038{width:3.424000pt;}
._7_c00038{width:4.343733pt;}
._b_c00038{width:5.343200pt;}
._d_c00038{width:6.454400pt;}
._e_c00038{width:7.404800pt;}
._3_c00038{width:8.352000pt;}
._6_c00038{width:11.795200pt;}
._4_c00038{width:14.470400pt;}
._9_c00038{width:18.730933pt;}
._1_c00038{width:29.235200pt;}
._a_c00038{width:30.598400pt;}
._5_c00038{width:37.728000pt;}
._0_c00038{width:1019.274133pt;}
.fs0_c00038{font-size:64.000000pt;}
.y0_c00038{bottom:0.000000pt;}
.y4_c00038{bottom:3.840000pt;}
.y1_c00038{bottom:16.666667pt;}
.y2_c00038{bottom:33.653360pt;}
.y3_c00038{bottom:46.480027pt;}
.y1d_c00038{bottom:113.013360pt;}
.y1c_c00038{bottom:149.813333pt;}
.y1b_c00038{bottom:186.613333pt;}
.y1a_c00038{bottom:223.413333pt;}
.y19_c00038{bottom:260.213333pt;}
.y18_c00038{bottom:297.013333pt;}
.y17_c00038{bottom:333.813333pt;}
.y16_c00038{bottom:370.613333pt;}
.y15_c00038{bottom:407.413333pt;}
.y14_c00038{bottom:444.213333pt;}
.y13_c00038{bottom:481.013333pt;}
.y12_c00038{bottom:517.813333pt;}
.y11_c00038{bottom:554.613333pt;}
.y10_c00038{bottom:591.413333pt;}
.yf_c00038{bottom:628.213333pt;}
.ye_c00038{bottom:665.013333pt;}
.yd_c00038{bottom:701.813333pt;}
.yc_c00038{bottom:738.613333pt;}
.yb_c00038{bottom:775.413333pt;}
.ya_c00038{bottom:812.213333pt;}
.y9_c00038{bottom:849.013333pt;}
.y8_c00038{bottom:885.813333pt;}
.y7_c00038{bottom:922.613333pt;}
.y6_c00038{bottom:959.413333pt;}
.y5_c00038{bottom:996.213333pt;}
.h3_c00038{height:18.560000pt;}
.h2_c00038{height:57.375000pt;}
.h1_c00038{height:1089.333333pt;}
.h0_c00038{height:1122.666667pt;}
.w2_c00038{width:17.920000pt;}
.w1_c00038{width:760.000000pt;}
.w0_c00038{width:793.333333pt;}
.x0_c00038{left:0.000000pt;}
.x1_c00038{left:16.666667pt;}
.x4_c00038{left:97.279933pt;}
.x3_c00038{left:113.946667pt;}
.x2_c00038{left:121.280000pt;}
.x5_c00038{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6ba6adefa3a03eb5ce71129b.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00039{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00039{vertical-align:0.000000px;}
.ls3_c00039{letter-spacing:-0.014400px;}
.ls2_c00039{letter-spacing:0.000000px;}
.ls0_c00039{letter-spacing:0.014400px;}
.ls1_c00039{letter-spacing:0.036000px;}
.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:-20.052000px;}
.ws0_c00039{word-spacing:-20.030400px;}
.ws2_c00039{word-spacing:0.000000px;}
._2_c00039{width:1.303200px;}
._9_c00039{width:3.247200px;}
._3_c00039{width:4.651200px;}
._6_c00039{width:5.961600px;}
._8_c00039{width:7.173300px;}
._7_c00039{width:8.280000px;}
._f_c00039{width:10.900800px;}
._4_c00039{width:11.973600px;}
._e_c00039{width:14.580000px;}
._a_c00039{width:15.652800px;}
._b_c00039{width:25.034400px;}
._1_c00039{width:26.078400px;}
._5_c00039{width:27.345600px;}
._d_c00039{width:28.555200px;}
._c_c00039{width:29.675100px;}
._0_c00039{width:2079.683700px;}
.fc1_c00039{color:transparent;}
.fc0_c00039{color:rgb(0,0,0);}
.fs0_c00039{font-size:72.000000px;}
.y0_c00039{bottom:0.000000px;}
.y5_c00039{bottom:4.320000px;}
.y1_c00039{bottom:18.750000px;}
.y3_c00039{bottom:37.860030px;}
.y4_c00039{bottom:52.290030px;}
.y1e_c00039{bottom:127.140030px;}
.y1d_c00039{bottom:168.540000px;}
.y1c_c00039{bottom:209.940000px;}
.y1b_c00039{bottom:251.340000px;}
.y1a_c00039{bottom:292.740000px;}
.y19_c00039{bottom:334.140000px;}
.y18_c00039{bottom:375.540000px;}
.y17_c00039{bottom:416.940000px;}
.y16_c00039{bottom:458.340000px;}
.y15_c00039{bottom:499.740000px;}
.y14_c00039{bottom:541.140000px;}
.y13_c00039{bottom:582.540000px;}
.y12_c00039{bottom:623.940000px;}
.y11_c00039{bottom:665.340000px;}
.y10_c00039{bottom:706.740000px;}
.yf_c00039{bottom:748.140000px;}
.ye_c00039{bottom:789.540000px;}
.yd_c00039{bottom:830.940000px;}
.yc_c00039{bottom:872.340000px;}
.yb_c00039{bottom:913.740000px;}
.ya_c00039{bottom:955.140000px;}
.y9_c00039{bottom:996.540000px;}
.y8_c00039{bottom:1037.940000px;}
.y7_c00039{bottom:1079.340000px;}
.y6_c00039{bottom:1120.740000px;}
.y2_c00039{bottom:1173.660000px;}
.h3_c00039{height:20.880000px;}
.h2_c00039{height:64.546875px;}
.h1_c00039{height:1225.500000px;}
.h0_c00039{height:1263.000000px;}
.w2_c00039{width:20.160000px;}
.w1_c00039{width:855.000000px;}
.w0_c00039{width:892.500000px;}
.x0_c00039{left:0.000000px;}
.x1_c00039{left:18.750000px;}
.x2_c00039{left:109.439925px;}
.x3_c00039{left:136.440000px;}
.x5_c00039{left:151.965150px;}
.x4_c00039{left:745.590000px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls3_c00039{letter-spacing:-0.012800pt;}
.ls2_c00039{letter-spacing:0.000000pt;}
.ls0_c00039{letter-spacing:0.012800pt;}
.ls1_c00039{letter-spacing:0.032000pt;}
.ws1_c00039{word-spacing:-17.824000pt;}
.ws0_c00039{word-spacing:-17.804800pt;}
.ws2_c00039{word-spacing:0.000000pt;}
._2_c00039{width:1.158400pt;}
._9_c00039{width:2.886400pt;}
._3_c00039{width:4.134400pt;}
._6_c00039{width:5.299200pt;}
._8_c00039{width:6.376267pt;}
._7_c00039{width:7.360000pt;}
._f_c00039{width:9.689600pt;}
._4_c00039{width:10.643200pt;}
._e_c00039{width:12.960000pt;}
._a_c00039{width:13.913600pt;}
._b_c00039{width:22.252800pt;}
._1_c00039{width:23.180800pt;}
._5_c00039{width:24.307200pt;}
._d_c00039{width:25.382400pt;}
._c_c00039{width:26.377867pt;}
._0_c00039{width:1848.607733pt;}
.fs0_c00039{font-size:64.000000pt;}
.y0_c00039{bottom:0.000000pt;}
.y5_c00039{bottom:3.840000pt;}
.y1_c00039{bottom:16.666667pt;}
.y3_c00039{bottom:33.653360pt;}
.y4_c00039{bottom:46.480027pt;}
.y1e_c00039{bottom:113.013360pt;}
.y1d_c00039{bottom:149.813333pt;}
.y1c_c00039{bottom:186.613333pt;}
.y1b_c00039{bottom:223.413333pt;}
.y1a_c00039{bottom:260.213333pt;}
.y19_c00039{bottom:297.013333pt;}
.y18_c00039{bottom:333.813333pt;}
.y17_c00039{bottom:370.613333pt;}
.y16_c00039{bottom:407.413333pt;}
.y15_c00039{bottom:444.213333pt;}
.y14_c00039{bottom:481.013333pt;}
.y13_c00039{bottom:517.813333pt;}
.y12_c00039{bottom:554.613333pt;}
.y11_c00039{bottom:591.413333pt;}
.y10_c00039{bottom:628.213333pt;}
.yf_c00039{bottom:665.013333pt;}
.ye_c00039{bottom:701.813333pt;}
.yd_c00039{bottom:738.613333pt;}
.yc_c00039{bottom:775.413333pt;}
.yb_c00039{bottom:812.213333pt;}
.ya_c00039{bottom:849.013333pt;}
.y9_c00039{bottom:885.813333pt;}
.y8_c00039{bottom:922.613333pt;}
.y7_c00039{bottom:959.413333pt;}
.y6_c00039{bottom:996.213333pt;}
.y2_c00039{bottom:1043.253333pt;}
.h3_c00039{height:18.560000pt;}
.h2_c00039{height:57.375000pt;}
.h1_c00039{height:1089.333333pt;}
.h0_c00039{height:1122.666667pt;}
.w2_c00039{width:17.920000pt;}
.w1_c00039{width:760.000000pt;}
.w0_c00039{width:793.333333pt;}
.x0_c00039{left:0.000000pt;}
.x1_c00039{left:16.666667pt;}
.x2_c00039{left:97.279933pt;}
.x3_c00039{left:121.280000pt;}
.x5_c00039{left:135.080133pt;}
.x4_c00039{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eaa0ca58568f7d1cd691dc06.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.ls1_c00040{letter-spacing:0.000000px;}
.ls0_c00040{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00040{word-spacing:0.000000px;}
._5_c00040{width:1.483200px;}
._c_c00040{width:3.340800px;}
._6_c00040{width:4.456800px;}
._2_c00040{width:5.774400px;}
._b_c00040{width:7.531200px;}
._3_c00040{width:9.273600px;}
._1_c00040{width:10.908000px;}
._8_c00040{width:12.765600px;}
._d_c00040{width:15.544800px;}
._4_c00040{width:16.912800px;}
._a_c00040{width:23.738400px;}
._9_c00040{width:27.000000px;}
._e_c00040{width:33.386400px;}
._f_c00040{width:38.347200px;}
._7_c00040{width:39.513600px;}
._0_c00040{width:1146.683400px;}
.fc1_c00040{color:transparent;}
.fc0_c00040{color:rgb(0,0,0);}
.fs0_c00040{font-size:72.000000px;}
.y0_c00040{bottom:0.000000px;}
.y4_c00040{bottom:4.320000px;}
.y1_c00040{bottom:18.750000px;}
.y2_c00040{bottom:37.860030px;}
.y3_c00040{bottom:52.290030px;}
.y1d_c00040{bottom:127.140030px;}
.y1c_c00040{bottom:168.540000px;}
.y1b_c00040{bottom:209.940000px;}
.y1a_c00040{bottom:251.340000px;}
.y19_c00040{bottom:292.740000px;}
.y18_c00040{bottom:334.140000px;}
.y17_c00040{bottom:375.540000px;}
.y16_c00040{bottom:416.940000px;}
.y15_c00040{bottom:458.340000px;}
.y14_c00040{bottom:499.740000px;}
.y13_c00040{bottom:541.140000px;}
.y12_c00040{bottom:582.540000px;}
.y11_c00040{bottom:623.940000px;}
.y10_c00040{bottom:665.340000px;}
.yf_c00040{bottom:706.740000px;}
.ye_c00040{bottom:748.140000px;}
.yd_c00040{bottom:789.540000px;}
.yc_c00040{bottom:830.940000px;}
.yb_c00040{bottom:872.340000px;}
.ya_c00040{bottom:913.740000px;}
.y9_c00040{bottom:955.140000px;}
.y8_c00040{bottom:996.540000px;}
.y7_c00040{bottom:1037.940000px;}
.y6_c00040{bottom:1079.340000px;}
.y5_c00040{bottom:1120.740000px;}
.h3_c00040{height:20.880000px;}
.h2_c00040{height:64.546875px;}
.h1_c00040{height:1225.500000px;}
.h0_c00040{height:1263.000000px;}
.w2_c00040{width:20.160000px;}
.w1_c00040{width:855.000000px;}
.w0_c00040{width:892.500000px;}
.x0_c00040{left:0.000000px;}
.x1_c00040{left:18.750000px;}
.x4_c00040{left:109.439925px;}
.x3_c00040{left:128.190000px;}
.x2_c00040{left:136.440000px;}
.x5_c00040{left:151.965150px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls1_c00040{letter-spacing:0.000000pt;}
.ls0_c00040{letter-spacing:0.012800pt;}
.ws0_c00040{word-spacing:-17.804800pt;}
.ws1_c00040{word-spacing:0.000000pt;}
._5_c00040{width:1.318400pt;}
._c_c00040{width:2.969600pt;}
._6_c00040{width:3.961600pt;}
._2_c00040{width:5.132800pt;}
._b_c00040{width:6.694400pt;}
._3_c00040{width:8.243200pt;}
._1_c00040{width:9.696000pt;}
._8_c00040{width:11.347200pt;}
._d_c00040{width:13.817600pt;}
._4_c00040{width:15.033600pt;}
._a_c00040{width:21.100800pt;}
._9_c00040{width:24.000000pt;}
._e_c00040{width:29.676800pt;}
._f_c00040{width:34.086400pt;}
._7_c00040{width:35.123200pt;}
._0_c00040{width:1019.274133pt;}
.fs0_c00040{font-size:64.000000pt;}
.y0_c00040{bottom:0.000000pt;}
.y4_c00040{bottom:3.840000pt;}
.y1_c00040{bottom:16.666667pt;}
.y2_c00040{bottom:33.653360pt;}
.y3_c00040{bottom:46.480027pt;}
.y1d_c00040{bottom:113.013360pt;}
.y1c_c00040{bottom:149.813333pt;}
.y1b_c00040{bottom:186.613333pt;}
.y1a_c00040{bottom:223.413333pt;}
.y19_c00040{bottom:260.213333pt;}
.y18_c00040{bottom:297.013333pt;}
.y17_c00040{bottom:333.813333pt;}
.y16_c00040{bottom:370.613333pt;}
.y15_c00040{bottom:407.413333pt;}
.y14_c00040{bottom:444.213333pt;}
.y13_c00040{bottom:481.013333pt;}
.y12_c00040{bottom:517.813333pt;}
.y11_c00040{bottom:554.613333pt;}
.y10_c00040{bottom:591.413333pt;}
.yf_c00040{bottom:628.213333pt;}
.ye_c00040{bottom:665.013333pt;}
.yd_c00040{bottom:701.813333pt;}
.yc_c00040{bottom:738.613333pt;}
.yb_c00040{bottom:775.413333pt;}
.ya_c00040{bottom:812.213333pt;}
.y9_c00040{bottom:849.013333pt;}
.y8_c00040{bottom:885.813333pt;}
.y7_c00040{bottom:922.613333pt;}
.y6_c00040{bottom:959.413333pt;}
.y5_c00040{bottom:996.213333pt;}
.h3_c00040{height:18.560000pt;}
.h2_c00040{height:57.375000pt;}
.h1_c00040{height:1089.333333pt;}
.h0_c00040{height:1122.666667pt;}
.w2_c00040{width:17.920000pt;}
.w1_c00040{width:760.000000pt;}
.w0_c00040{width:793.333333pt;}
.x0_c00040{left:0.000000pt;}
.x1_c00040{left:16.666667pt;}
.x4_c00040{left:97.279933pt;}
.x3_c00040{left:113.946667pt;}
.x2_c00040{left:121.280000pt;}
.x5_c00040{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_51317ce7b88bc549ed2f44cd.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00041{vertical-align:0.000000px;}
.ls3_c00041{letter-spacing:0.000000px;}
.ls0_c00041{letter-spacing:0.014400px;}
.ls2_c00041{letter-spacing:0.190560px;}
.ls8_c00041{letter-spacing:0.362304px;}
.ls7_c00041{letter-spacing:0.388944px;}
.ls1_c00041{letter-spacing:0.408720px;}
.ls5_c00041{letter-spacing:0.410256px;}
.ls4_c00041{letter-spacing:0.431568px;}
.ls6_c00041{letter-spacing:0.628704px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00041{word-spacing:-20.030400px;}
.ws1_c00041{word-spacing:-15.174144px;}
.ws2_c00041{word-spacing:0.000000px;}
._7_c00041{margin-left:-1.012320px;}
._6_c00041{width:1.811520px;}
._c_c00041{width:2.980800px;}
._3_c00041{width:5.241600px;}
._5_c00041{width:6.264000px;}
._1_c00041{width:7.495200px;}
._a_c00041{width:11.668320px;}
._8_c00041{width:12.680640px;}
._9_c00041{width:13.683684px;}
._4_c00041{width:14.752800px;}
._d_c00041{width:16.322400px;}
._b_c00041{width:18.979200px;}
._f_c00041{width:24.220800px;}
._e_c00041{width:30.592800px;}
._2_c00041{width:32.371200px;}
._0_c00041{width:2079.683700px;}
.fc1_c00041{color:transparent;}
.fc0_c00041{color:rgb(0,0,0);}
.fs1_c00041{font-size:53.280000px;}
.fs0_c00041{font-size:72.000000px;}
.y0_c00041{bottom:0.000000px;}
.y5_c00041{bottom:4.320000px;}
.y1_c00041{bottom:18.750000px;}
.y3_c00041{bottom:37.860030px;}
.y4_c00041{bottom:52.290030px;}
.y17_c00041{bottom:100.140030px;}
.y16_c00041{bottom:141.540000px;}
.y15_c00041{bottom:182.940000px;}
.y14_c00041{bottom:224.340000px;}
.y13_c00041{bottom:265.740000px;}
.y12_c00041{bottom:307.140000px;}
.y11_c00041{bottom:348.540000px;}
.y10_c00041{bottom:389.940000px;}
.yf_c00041{bottom:436.380000px;}
.ye_c00041{bottom:452.220000px;}
.yd_c00041{bottom:467.700000px;}
.yc_c00041{bottom:480.660000px;}
.yb_c00041{bottom:913.740000px;}
.ya_c00041{bottom:955.140000px;}
.y9_c00041{bottom:996.540000px;}
.y8_c00041{bottom:1037.940000px;}
.y7_c00041{bottom:1079.340000px;}
.y6_c00041{bottom:1120.740000px;}
.y2_c00041{bottom:1173.660000px;}
.h3_c00041{height:20.880000px;}
.h4_c00041{height:47.764688px;}
.h2_c00041{height:64.546875px;}
.h1_c00041{height:1225.500000px;}
.h0_c00041{height:1263.000000px;}
.w2_c00041{width:20.160000px;}
.w1_c00041{width:855.000000px;}
.w0_c00041{width:892.500000px;}
.x0_c00041{left:0.000000px;}
.x1_c00041{left:18.750000px;}
.x2_c00041{left:109.439925px;}
.x3_c00041{left:136.440000px;}
.x5_c00041{left:151.965150px;}
.x4_c00041{left:745.590000px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls3_c00041{letter-spacing:0.000000pt;}
.ls0_c00041{letter-spacing:0.012800pt;}
.ls2_c00041{letter-spacing:0.169387pt;}
.ls8_c00041{letter-spacing:0.322048pt;}
.ls7_c00041{letter-spacing:0.345728pt;}
.ls1_c00041{letter-spacing:0.363307pt;}
.ls5_c00041{letter-spacing:0.364672pt;}
.ls4_c00041{letter-spacing:0.383616pt;}
.ls6_c00041{letter-spacing:0.558848pt;}
.ws0_c00041{word-spacing:-17.804800pt;}
.ws1_c00041{word-spacing:-13.488128pt;}
.ws2_c00041{word-spacing:0.000000pt;}
._7_c00041{margin-left:-0.899840pt;}
._6_c00041{width:1.610240pt;}
._c_c00041{width:2.649600pt;}
._3_c00041{width:4.659200pt;}
._5_c00041{width:5.568000pt;}
._1_c00041{width:6.662400pt;}
._a_c00041{width:10.371840pt;}
._8_c00041{width:11.271680pt;}
._9_c00041{width:12.163275pt;}
._4_c00041{width:13.113600pt;}
._d_c00041{width:14.508800pt;}
._b_c00041{width:16.870400pt;}
._f_c00041{width:21.529600pt;}
._e_c00041{width:27.193600pt;}
._2_c00041{width:28.774400pt;}
._0_c00041{width:1848.607733pt;}
.fs1_c00041{font-size:47.360000pt;}
.fs0_c00041{font-size:64.000000pt;}
.y0_c00041{bottom:0.000000pt;}
.y5_c00041{bottom:3.840000pt;}
.y1_c00041{bottom:16.666667pt;}
.y3_c00041{bottom:33.653360pt;}
.y4_c00041{bottom:46.480027pt;}
.y17_c00041{bottom:89.013360pt;}
.y16_c00041{bottom:125.813333pt;}
.y15_c00041{bottom:162.613333pt;}
.y14_c00041{bottom:199.413333pt;}
.y13_c00041{bottom:236.213333pt;}
.y12_c00041{bottom:273.013333pt;}
.y11_c00041{bottom:309.813333pt;}
.y10_c00041{bottom:346.613333pt;}
.yf_c00041{bottom:387.893333pt;}
.ye_c00041{bottom:401.973333pt;}
.yd_c00041{bottom:415.733333pt;}
.yc_c00041{bottom:427.253333pt;}
.yb_c00041{bottom:812.213333pt;}
.ya_c00041{bottom:849.013333pt;}
.y9_c00041{bottom:885.813333pt;}
.y8_c00041{bottom:922.613333pt;}
.y7_c00041{bottom:959.413333pt;}
.y6_c00041{bottom:996.213333pt;}
.y2_c00041{bottom:1043.253333pt;}
.h3_c00041{height:18.560000pt;}
.h4_c00041{height:42.457500pt;}
.h2_c00041{height:57.375000pt;}
.h1_c00041{height:1089.333333pt;}
.h0_c00041{height:1122.666667pt;}
.w2_c00041{width:17.920000pt;}
.w1_c00041{width:760.000000pt;}
.w0_c00041{width:793.333333pt;}
.x0_c00041{left:0.000000pt;}
.x1_c00041{left:16.666667pt;}
.x2_c00041{left:97.279933pt;}
.x3_c00041{left:121.280000pt;}
.x5_c00041{left:135.080133pt;}
.x4_c00041{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_03b82eb2a3a8073eef2f7fc2.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00042;src:url('chunks/assets/font_8c393b6803718c12a6cd88d6.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00042;src:url('chunks/assets/font_b9bb5a09c68a2debe9eb5055.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.ls5_c00042{letter-spacing:-0.014400px;}
.ls4_c00042{letter-spacing:0.000000px;}
.ls3_c00042{letter-spacing:0.000600px;}
.ls0_c00042{letter-spacing:0.014400px;}
.ls1_c00042{letter-spacing:4.765800px;}
.ls2_c00042{letter-spacing:6.358800px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00042{word-spacing:-20.030400px;}
.ws2_c00042{word-spacing:-20.001600px;}
.ws1_c00042{word-spacing:-0.072000px;}
.ws3_c00042{word-spacing:0.000000px;}
._e_c00042{width:1.004400px;}
._10_c00042{width:2.034000px;}
._d_c00042{width:4.708800px;}
._c_c00042{width:6.156000px;}
._3_c00042{width:7.192800px;}
._4_c00042{width:8.711100px;}
._8_c00042{width:10.159200px;}
._f_c00042{width:11.728800px;}
._1_c00042{width:17.784000px;}
._7_c00042{width:18.830700px;}
._2_c00042{width:21.031200px;}
._9_c00042{width:22.140000px;}
._b_c00042{width:24.753600px;}
._11_c00042{width:26.474400px;}
._a_c00042{width:30.916800px;}
._5_c00042{width:32.788800px;}
._6_c00042{width:54.964800px;}
._0_c00042{width:1146.683400px;}
.fc1_c00042{color:transparent;}
.fc0_c00042{color:rgb(0,0,0);}
.fs0_c00042{font-size:72.000000px;}
.y0_c00042{bottom:0.000000px;}
.y4_c00042{bottom:4.320000px;}
.y1_c00042{bottom:18.750000px;}
.y2_c00042{bottom:37.860030px;}
.y3_c00042{bottom:52.290030px;}
.y1d_c00042{bottom:118.140030px;}
.y1c_c00042{bottom:159.540000px;}
.y1b_c00042{bottom:200.940000px;}
.y1a_c00042{bottom:242.340000px;}
.y19_c00042{bottom:283.740000px;}
.y18_c00042{bottom:325.140000px;}
.y17_c00042{bottom:366.540000px;}
.y16_c00042{bottom:407.940000px;}
.y15_c00042{bottom:449.340000px;}
.y14_c00042{bottom:499.740000px;}
.y13_c00042{bottom:541.140000px;}
.y12_c00042{bottom:582.540000px;}
.y11_c00042{bottom:623.940000px;}
.y10_c00042{bottom:665.340000px;}
.yf_c00042{bottom:706.740000px;}
.ye_c00042{bottom:748.140000px;}
.yd_c00042{bottom:789.540000px;}
.yc_c00042{bottom:830.940000px;}
.yb_c00042{bottom:872.340000px;}
.ya_c00042{bottom:913.740000px;}
.y9_c00042{bottom:955.140000px;}
.y8_c00042{bottom:996.540000px;}
.y7_c00042{bottom:1037.940000px;}
.y6_c00042{bottom:1079.340000px;}
.y5_c00042{bottom:1120.740000px;}
.h3_c00042{height:20.880000px;}
.h4_c00042{height:64.371094px;}
.h2_c00042{height:64.546875px;}
.h1_c00042{height:1225.500000px;}
.h0_c00042{height:1263.000000px;}
.w2_c00042{width:20.160000px;}
.w1_c00042{width:855.000000px;}
.w0_c00042{width:892.500000px;}
.x0_c00042{left:0.000000px;}
.x1_c00042{left:18.750000px;}
.x4_c00042{left:109.439925px;}
.x3_c00042{left:128.190000px;}
.x2_c00042{left:136.440000px;}
.x5_c00042{left:151.965150px;}
.x6_c00042{left:453.567300px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls5_c00042{letter-spacing:-0.012800pt;}
.ls4_c00042{letter-spacing:0.000000pt;}
.ls3_c00042{letter-spacing:0.000533pt;}
.ls0_c00042{letter-spacing:0.012800pt;}
.ls1_c00042{letter-spacing:4.236267pt;}
.ls2_c00042{letter-spacing:5.652267pt;}
.ws0_c00042{word-spacing:-17.804800pt;}
.ws2_c00042{word-spacing:-17.779200pt;}
.ws1_c00042{word-spacing:-0.064000pt;}
.ws3_c00042{word-spacing:0.000000pt;}
._e_c00042{width:0.892800pt;}
._10_c00042{width:1.808000pt;}
._d_c00042{width:4.185600pt;}
._c_c00042{width:5.472000pt;}
._3_c00042{width:6.393600pt;}
._4_c00042{width:7.743200pt;}
._8_c00042{width:9.030400pt;}
._f_c00042{width:10.425600pt;}
._1_c00042{width:15.808000pt;}
._7_c00042{width:16.738400pt;}
._2_c00042{width:18.694400pt;}
._9_c00042{width:19.680000pt;}
._b_c00042{width:22.003200pt;}
._11_c00042{width:23.532800pt;}
._a_c00042{width:27.481600pt;}
._5_c00042{width:29.145600pt;}
._6_c00042{width:48.857600pt;}
._0_c00042{width:1019.274133pt;}
.fs0_c00042{font-size:64.000000pt;}
.y0_c00042{bottom:0.000000pt;}
.y4_c00042{bottom:3.840000pt;}
.y1_c00042{bottom:16.666667pt;}
.y2_c00042{bottom:33.653360pt;}
.y3_c00042{bottom:46.480027pt;}
.y1d_c00042{bottom:105.013360pt;}
.y1c_c00042{bottom:141.813333pt;}
.y1b_c00042{bottom:178.613333pt;}
.y1a_c00042{bottom:215.413333pt;}
.y19_c00042{bottom:252.213333pt;}
.y18_c00042{bottom:289.013333pt;}
.y17_c00042{bottom:325.813333pt;}
.y16_c00042{bottom:362.613333pt;}
.y15_c00042{bottom:399.413333pt;}
.y14_c00042{bottom:444.213333pt;}
.y13_c00042{bottom:481.013333pt;}
.y12_c00042{bottom:517.813333pt;}
.y11_c00042{bottom:554.613333pt;}
.y10_c00042{bottom:591.413333pt;}
.yf_c00042{bottom:628.213333pt;}
.ye_c00042{bottom:665.013333pt;}
.yd_c00042{bottom:701.813333pt;}
.yc_c00042{bottom:738.613333pt;}
.yb_c00042{bottom:775.413333pt;}
.ya_c00042{bottom:812.213333pt;}
.y9_c00042{bottom:849.013333pt;}
.y8_c00042{bottom:885.813333pt;}
.y7_c00042{bottom:922.613333pt;}
.y6_c00042{bottom:959.413333pt;}
.y5_c00042{bottom:996.213333pt;}
.h3_c00042{height:18.560000pt;}
.h4_c00042{height:57.218750pt;}
.h2_c00042{height:57.375000pt;}
.h1_c00042{height:1089.333333pt;}
.h0_c00042{height:1122.666667pt;}
.w2_c00042{width:17.920000pt;}
.w1_c00042{width:760.000000pt;}
.w0_c00042{width:793.333333pt;}
.x0_c00042{left:0.000000pt;}
.x1_c00042{left:16.666667pt;}
.x4_c00042{left:97.279933pt;}
.x3_c00042{left:113.946667pt;}
.x2_c00042{left:121.280000pt;}
.x5_c00042{left:135.080133pt;}
.x6_c00042{left:403.170933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2340409357176acee743cb9d.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00043{vertical-align:0.000000px;}
.ls9_c00043{letter-spacing:0.000000px;}
.ls0_c00043{letter-spacing:0.014400px;}
.lsd_c00043{letter-spacing:0.170496px;}
.lse_c00043{letter-spacing:0.191808px;}
.lsa_c00043{letter-spacing:0.239760px;}
.ls3_c00043{letter-spacing:0.240360px;}
.ls10_c00043{letter-spacing:0.362304px;}
.ls2_c00043{letter-spacing:0.388944px;}
.ls6_c00043{letter-spacing:0.399600px;}
.ls5_c00043{letter-spacing:0.404928px;}
.ls4_c00043{letter-spacing:0.410256px;}
.ls8_c00043{letter-spacing:0.415584px;}
.lsc_c00043{letter-spacing:0.479520px;}
.ls11_c00043{letter-spacing:0.527472px;}
.lsf_c00043{letter-spacing:0.548784px;}
.lsb_c00043{letter-spacing:0.628704px;}
.ls7_c00043{letter-spacing:2.233560px;}
.ls1_c00043{letter-spacing:4.390800px;}
.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:-20.030400px;}
.ws2_c00043{word-spacing:-15.440544px;}
.ws3_c00043{word-spacing:-15.360624px;}
.ws5_c00043{word-spacing:-15.222096px;}
.ws4_c00043{word-spacing:-15.211440px;}
.ws1_c00043{word-spacing:-15.051600px;}
.ws6_c00043{word-spacing:0.000000px;}
._12_c00043{margin-left:-1.025796px;}
._d_c00043{width:1.757700px;}
._e_c00043{width:3.030300px;}
._a_c00043{width:4.997040px;}
._2_c00043{width:6.839760px;}
._7_c00043{width:8.018220px;}
._9_c00043{width:9.055560px;}
._f_c00043{width:10.375200px;}
._1_c00043{width:12.096000px;}
._5_c00043{width:13.924800px;}
._11_c00043{width:17.219280px;}
._3_c00043{width:18.273600px;}
._14_c00043{width:19.566324px;}
._13_c00043{width:20.992320px;}
._4_c00043{width:22.320000px;}
._10_c00043{width:24.256800px;}
._6_c00043{width:25.358400px;}
._8_c00043{width:26.618400px;}
._c_c00043{width:31.089600px;}
._b_c00043{width:43.480800px;}
._0_c00043{width:2079.683700px;}
.fc1_c00043{color:transparent;}
.fc0_c00043{color:rgb(0,0,0);}
.fs1_c00043{font-size:53.280000px;}
.fs0_c00043{font-size:72.000000px;}
.y0_c00043{bottom:0.000000px;}
.y5_c00043{bottom:4.320000px;}
.y1_c00043{bottom:18.750000px;}
.y3_c00043{bottom:37.860030px;}
.y4_c00043{bottom:52.290030px;}
.y28_c00043{bottom:103.020030px;}
.y27_c00043{bottom:118.500030px;}
.y26_c00043{bottom:133.980000px;}
.y25_c00043{bottom:149.460000px;}
.y24_c00043{bottom:164.940000px;}
.y23_c00043{bottom:180.420000px;}
.y22_c00043{bottom:195.900000px;}
.y21_c00043{bottom:211.740000px;}
.y20_c00043{bottom:227.220000px;}
.y1f_c00043{bottom:242.700000px;}
.y1e_c00043{bottom:258.180000px;}
.y1d_c00043{bottom:273.660000px;}
.y1c_c00043{bottom:289.140000px;}
.y1b_c00043{bottom:304.620000px;}
.y1a_c00043{bottom:320.100000px;}
.y19_c00043{bottom:335.940000px;}
.y18_c00043{bottom:375.540000px;}
.y17_c00043{bottom:416.940000px;}
.y16_c00043{bottom:458.340000px;}
.y15_c00043{bottom:499.740000px;}
.y14_c00043{bottom:541.140000px;}
.y13_c00043{bottom:582.540000px;}
.y12_c00043{bottom:623.940000px;}
.y11_c00043{bottom:665.340000px;}
.y10_c00043{bottom:706.740000px;}
.yf_c00043{bottom:748.140000px;}
.ye_c00043{bottom:789.540000px;}
.yd_c00043{bottom:830.940000px;}
.yc_c00043{bottom:872.340000px;}
.yb_c00043{bottom:913.740000px;}
.ya_c00043{bottom:955.140000px;}
.y9_c00043{bottom:996.540000px;}
.y8_c00043{bottom:1037.940000px;}
.y7_c00043{bottom:1079.340000px;}
.y6_c00043{bottom:1120.740000px;}
.y2_c00043{bottom:1173.660000px;}
.h3_c00043{height:20.880000px;}
.h4_c00043{height:47.764688px;}
.h2_c00043{height:64.546875px;}
.h1_c00043{height:1225.500000px;}
.h0_c00043{height:1263.000000px;}
.w2_c00043{width:20.160000px;}
.w1_c00043{width:855.000000px;}
.w0_c00043{width:892.500000px;}
.x0_c00043{left:0.000000px;}
.x1_c00043{left:18.750000px;}
.x2_c00043{left:109.439925px;}
.x6_c00043{left:130.739865px;}
.x3_c00043{left:136.440000px;}
.x5_c00043{left:151.965150px;}
.x4_c00043{left:745.590000px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls9_c00043{letter-spacing:0.000000pt;}
.ls0_c00043{letter-spacing:0.012800pt;}
.lsd_c00043{letter-spacing:0.151552pt;}
.lse_c00043{letter-spacing:0.170496pt;}
.lsa_c00043{letter-spacing:0.213120pt;}
.ls3_c00043{letter-spacing:0.213653pt;}
.ls10_c00043{letter-spacing:0.322048pt;}
.ls2_c00043{letter-spacing:0.345728pt;}
.ls6_c00043{letter-spacing:0.355200pt;}
.ls5_c00043{letter-spacing:0.359936pt;}
.ls4_c00043{letter-spacing:0.364672pt;}
.ls8_c00043{letter-spacing:0.369408pt;}
.lsc_c00043{letter-spacing:0.426240pt;}
.ls11_c00043{letter-spacing:0.468864pt;}
.lsf_c00043{letter-spacing:0.487808pt;}
.lsb_c00043{letter-spacing:0.558848pt;}
.ls7_c00043{letter-spacing:1.985387pt;}
.ls1_c00043{letter-spacing:3.902933pt;}
.ws0_c00043{word-spacing:-17.804800pt;}
.ws2_c00043{word-spacing:-13.724928pt;}
.ws3_c00043{word-spacing:-13.653888pt;}
.ws5_c00043{word-spacing:-13.530752pt;}
.ws4_c00043{word-spacing:-13.521280pt;}
.ws1_c00043{word-spacing:-13.379200pt;}
.ws6_c00043{word-spacing:0.000000pt;}
._12_c00043{margin-left:-0.911819pt;}
._d_c00043{width:1.562400pt;}
._e_c00043{width:2.693600pt;}
._a_c00043{width:4.441813pt;}
._2_c00043{width:6.079787pt;}
._7_c00043{width:7.127307pt;}
._9_c00043{width:8.049387pt;}
._f_c00043{width:9.222400pt;}
._1_c00043{width:10.752000pt;}
._5_c00043{width:12.377600pt;}
._11_c00043{width:15.306027pt;}
._3_c00043{width:16.243200pt;}
._14_c00043{width:17.392288pt;}
._13_c00043{width:18.659840pt;}
._4_c00043{width:19.840000pt;}
._10_c00043{width:21.561600pt;}
._6_c00043{width:22.540800pt;}
._8_c00043{width:23.660800pt;}
._c_c00043{width:27.635200pt;}
._b_c00043{width:38.649600pt;}
._0_c00043{width:1848.607733pt;}
.fs1_c00043{font-size:47.360000pt;}
.fs0_c00043{font-size:64.000000pt;}
.y0_c00043{bottom:0.000000pt;}
.y5_c00043{bottom:3.840000pt;}
.y1_c00043{bottom:16.666667pt;}
.y3_c00043{bottom:33.653360pt;}
.y4_c00043{bottom:46.480027pt;}
.y28_c00043{bottom:91.573360pt;}
.y27_c00043{bottom:105.333360pt;}
.y26_c00043{bottom:119.093333pt;}
.y25_c00043{bottom:132.853333pt;}
.y24_c00043{bottom:146.613333pt;}
.y23_c00043{bottom:160.373333pt;}
.y22_c00043{bottom:174.133333pt;}
.y21_c00043{bottom:188.213333pt;}
.y20_c00043{bottom:201.973333pt;}
.y1f_c00043{bottom:215.733333pt;}
.y1e_c00043{bottom:229.493333pt;}
.y1d_c00043{bottom:243.253333pt;}
.y1c_c00043{bottom:257.013333pt;}
.y1b_c00043{bottom:270.773333pt;}
.y1a_c00043{bottom:284.533333pt;}
.y19_c00043{bottom:298.613333pt;}
.y18_c00043{bottom:333.813333pt;}
.y17_c00043{bottom:370.613333pt;}
.y16_c00043{bottom:407.413333pt;}
.y15_c00043{bottom:444.213333pt;}
.y14_c00043{bottom:481.013333pt;}
.y13_c00043{bottom:517.813333pt;}
.y12_c00043{bottom:554.613333pt;}
.y11_c00043{bottom:591.413333pt;}
.y10_c00043{bottom:628.213333pt;}
.yf_c00043{bottom:665.013333pt;}
.ye_c00043{bottom:701.813333pt;}
.yd_c00043{bottom:738.613333pt;}
.yc_c00043{bottom:775.413333pt;}
.yb_c00043{bottom:812.213333pt;}
.ya_c00043{bottom:849.013333pt;}
.y9_c00043{bottom:885.813333pt;}
.y8_c00043{bottom:922.613333pt;}
.y7_c00043{bottom:959.413333pt;}
.y6_c00043{bottom:996.213333pt;}
.y2_c00043{bottom:1043.253333pt;}
.h3_c00043{height:18.560000pt;}
.h4_c00043{height:42.457500pt;}
.h2_c00043{height:57.375000pt;}
.h1_c00043{height:1089.333333pt;}
.h0_c00043{height:1122.666667pt;}
.w2_c00043{width:17.920000pt;}
.w1_c00043{width:760.000000pt;}
.w0_c00043{width:793.333333pt;}
.x0_c00043{left:0.000000pt;}
.x1_c00043{left:16.666667pt;}
.x2_c00043{left:97.279933pt;}
.x6_c00043{left:116.213213pt;}
.x3_c00043{left:121.280000pt;}
.x5_c00043{left:135.080133pt;}
.x4_c00043{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8bda3344d8686d315761f5e2.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00044{letter-spacing:-0.014400px;}
.ls1_c00044{letter-spacing:0.000000px;}
.ls0_c00044{letter-spacing:0.014400px;}
.sc__c00044{text-shadow:none;}
.sc0_c00044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00044{-webkit-text-stroke:0px transparent;}
.sc0_c00044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00044{word-spacing:-20.030400px;}
.ws1_c00044{word-spacing:0.000000px;}
._5_c00044{width:1.173600px;}
._7_c00044{width:2.375700px;}
._4_c00044{width:3.931560px;}
._8_c00044{width:5.378400px;}
._a_c00044{width:8.834400px;}
._3_c00044{width:10.389600px;}
._b_c00044{width:11.498400px;}
._c_c00044{width:12.672000px;}
._6_c00044{width:16.027200px;}
._d_c00044{width:17.524800px;}
._1_c00044{width:21.477600px;}
._2_c00044{width:24.955500px;}
._9_c00044{width:43.747200px;}
._0_c00044{width:1146.683400px;}
.fc1_c00044{color:transparent;}
.fc0_c00044{color:rgb(0,0,0);}
.fs0_c00044{font-size:72.000000px;}
.y0_c00044{bottom:0.000000px;}
.y4_c00044{bottom:4.320000px;}
.y1_c00044{bottom:18.750000px;}
.y2_c00044{bottom:37.860030px;}
.y3_c00044{bottom:52.290030px;}
.y1d_c00044{bottom:127.140030px;}
.y1c_c00044{bottom:168.540000px;}
.y1b_c00044{bottom:209.940000px;}
.y1a_c00044{bottom:251.340000px;}
.y19_c00044{bottom:292.740000px;}
.y18_c00044{bottom:334.140000px;}
.y17_c00044{bottom:375.540000px;}
.y16_c00044{bottom:416.940000px;}
.y15_c00044{bottom:458.340000px;}
.y14_c00044{bottom:499.740000px;}
.y13_c00044{bottom:541.140000px;}
.y12_c00044{bottom:582.540000px;}
.y11_c00044{bottom:623.940000px;}
.y10_c00044{bottom:665.340000px;}
.yf_c00044{bottom:706.740000px;}
.ye_c00044{bottom:748.140000px;}
.yd_c00044{bottom:789.540000px;}
.yc_c00044{bottom:830.940000px;}
.yb_c00044{bottom:872.340000px;}
.ya_c00044{bottom:913.740000px;}
.y9_c00044{bottom:955.140000px;}
.y8_c00044{bottom:996.540000px;}
.y7_c00044{bottom:1037.940000px;}
.y6_c00044{bottom:1079.340000px;}
.y5_c00044{bottom:1120.740000px;}
.h3_c00044{height:20.880000px;}
.h2_c00044{height:64.546875px;}
.h1_c00044{height:1225.500000px;}
.h0_c00044{height:1263.000000px;}
.w2_c00044{width:20.160000px;}
.w1_c00044{width:855.000000px;}
.w0_c00044{width:892.500000px;}
.x0_c00044{left:0.000000px;}
.x1_c00044{left:18.750000px;}
.x5_c00044{left:109.439925px;}
.x3_c00044{left:128.190000px;}
.x2_c00044{left:136.440000px;}
.x4_c00044{left:151.965150px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls2_c00044{letter-spacing:-0.012800pt;}
.ls1_c00044{letter-spacing:0.000000pt;}
.ls0_c00044{letter-spacing:0.012800pt;}
.ws0_c00044{word-spacing:-17.804800pt;}
.ws1_c00044{word-spacing:0.000000pt;}
._5_c00044{width:1.043200pt;}
._7_c00044{width:2.111733pt;}
._4_c00044{width:3.494720pt;}
._8_c00044{width:4.780800pt;}
._a_c00044{width:7.852800pt;}
._3_c00044{width:9.235200pt;}
._b_c00044{width:10.220800pt;}
._c_c00044{width:11.264000pt;}
._6_c00044{width:14.246400pt;}
._d_c00044{width:15.577600pt;}
._1_c00044{width:19.091200pt;}
._2_c00044{width:22.182667pt;}
._9_c00044{width:38.886400pt;}
._0_c00044{width:1019.274133pt;}
.fs0_c00044{font-size:64.000000pt;}
.y0_c00044{bottom:0.000000pt;}
.y4_c00044{bottom:3.840000pt;}
.y1_c00044{bottom:16.666667pt;}
.y2_c00044{bottom:33.653360pt;}
.y3_c00044{bottom:46.480027pt;}
.y1d_c00044{bottom:113.013360pt;}
.y1c_c00044{bottom:149.813333pt;}
.y1b_c00044{bottom:186.613333pt;}
.y1a_c00044{bottom:223.413333pt;}
.y19_c00044{bottom:260.213333pt;}
.y18_c00044{bottom:297.013333pt;}
.y17_c00044{bottom:333.813333pt;}
.y16_c00044{bottom:370.613333pt;}
.y15_c00044{bottom:407.413333pt;}
.y14_c00044{bottom:444.213333pt;}
.y13_c00044{bottom:481.013333pt;}
.y12_c00044{bottom:517.813333pt;}
.y11_c00044{bottom:554.613333pt;}
.y10_c00044{bottom:591.413333pt;}
.yf_c00044{bottom:628.213333pt;}
.ye_c00044{bottom:665.013333pt;}
.yd_c00044{bottom:701.813333pt;}
.yc_c00044{bottom:738.613333pt;}
.yb_c00044{bottom:775.413333pt;}
.ya_c00044{bottom:812.213333pt;}
.y9_c00044{bottom:849.013333pt;}
.y8_c00044{bottom:885.813333pt;}
.y7_c00044{bottom:922.613333pt;}
.y6_c00044{bottom:959.413333pt;}
.y5_c00044{bottom:996.213333pt;}
.h3_c00044{height:18.560000pt;}
.h2_c00044{height:57.375000pt;}
.h1_c00044{height:1089.333333pt;}
.h0_c00044{height:1122.666667pt;}
.w2_c00044{width:17.920000pt;}
.w1_c00044{width:760.000000pt;}
.w0_c00044{width:793.333333pt;}
.x0_c00044{left:0.000000pt;}
.x1_c00044{left:16.666667pt;}
.x5_c00044{left:97.279933pt;}
.x3_c00044{left:113.946667pt;}
.x2_c00044{left:121.280000pt;}
.x4_c00044{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_27630fca7eebfd739c128618.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.ls7_c00045{letter-spacing:-0.014400px;}
.ls6_c00045{letter-spacing:0.000000px;}
.ls0_c00045{letter-spacing:0.014400px;}
.ls8_c00045{letter-spacing:0.036000px;}
.ls5_c00045{letter-spacing:0.190560px;}
.ls9_c00045{letter-spacing:0.239760px;}
.ls2_c00045{letter-spacing:0.240360px;}
.ls3_c00045{letter-spacing:0.410256px;}
.lsa_c00045{letter-spacing:0.431568px;}
.lsb_c00045{letter-spacing:0.628704px;}
.ls1_c00045{letter-spacing:4.390800px;}
.ls4_c00045{letter-spacing:13.095360px;}
.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;}
}
.ws1_c00045{word-spacing:-20.052000px;}
.ws0_c00045{word-spacing:-20.030400px;}
.ws2_c00045{word-spacing:-15.051600px;}
.ws3_c00045{word-spacing:0.000000px;}
._d_c00045{margin-left:-1.127760px;}
._3_c00045{width:1.000800px;}
._5_c00045{width:2.505600px;}
._1_c00045{width:3.772800px;}
._2_c00045{width:5.817600px;}
._4_c00045{width:9.547200px;}
._e_c00045{width:12.565020px;}
._7_c00045{width:13.924800px;}
._a_c00045{width:15.091200px;}
._b_c00045{width:16.768800px;}
._c_c00045{width:23.364000px;}
._8_c00045{width:24.732000px;}
._6_c00045{width:25.970400px;}
._9_c00045{width:47.916000px;}
._0_c00045{width:2079.683700px;}
.fc1_c00045{color:transparent;}
.fc0_c00045{color:rgb(0,0,0);}
.fs1_c00045{font-size:53.280000px;}
.fs0_c00045{font-size:72.000000px;}
.y0_c00045{bottom:0.000000px;}
.y5_c00045{bottom:4.320000px;}
.y1_c00045{bottom:18.750000px;}
.y3_c00045{bottom:37.860030px;}
.y4_c00045{bottom:52.290030px;}
.y20_c00045{bottom:97.620030px;}
.y1f_c00045{bottom:113.100030px;}
.y1e_c00045{bottom:128.940015px;}
.y1d_c00045{bottom:168.540000px;}
.y1c_c00045{bottom:209.940000px;}
.y1b_c00045{bottom:251.340000px;}
.y1a_c00045{bottom:292.740000px;}
.y19_c00045{bottom:334.140000px;}
.y18_c00045{bottom:375.540000px;}
.y17_c00045{bottom:416.940000px;}
.y16_c00045{bottom:458.340000px;}
.y15_c00045{bottom:499.740000px;}
.y14_c00045{bottom:541.140000px;}
.y13_c00045{bottom:582.540000px;}
.y12_c00045{bottom:623.940000px;}
.y11_c00045{bottom:665.340000px;}
.y10_c00045{bottom:706.740000px;}
.yf_c00045{bottom:748.140000px;}
.ye_c00045{bottom:789.540000px;}
.yd_c00045{bottom:830.940000px;}
.yc_c00045{bottom:872.340000px;}
.yb_c00045{bottom:913.740000px;}
.ya_c00045{bottom:955.140000px;}
.y9_c00045{bottom:996.540000px;}
.y8_c00045{bottom:1037.940000px;}
.y7_c00045{bottom:1079.340000px;}
.y6_c00045{bottom:1120.740000px;}
.y2_c00045{bottom:1173.660000px;}
.h3_c00045{height:20.880000px;}
.h4_c00045{height:47.764688px;}
.h2_c00045{height:64.546875px;}
.h1_c00045{height:1225.500000px;}
.h0_c00045{height:1263.000000px;}
.w2_c00045{width:20.160000px;}
.w1_c00045{width:855.000000px;}
.w0_c00045{width:892.500000px;}
.x0_c00045{left:0.000000px;}
.x1_c00045{left:18.750000px;}
.x2_c00045{left:109.439925px;}
.x6_c00045{left:130.739865px;}
.x3_c00045{left:136.440000px;}
.x5_c00045{left:151.965150px;}
.x4_c00045{left:745.590000px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls7_c00045{letter-spacing:-0.012800pt;}
.ls6_c00045{letter-spacing:0.000000pt;}
.ls0_c00045{letter-spacing:0.012800pt;}
.ls8_c00045{letter-spacing:0.032000pt;}
.ls5_c00045{letter-spacing:0.169387pt;}
.ls9_c00045{letter-spacing:0.213120pt;}
.ls2_c00045{letter-spacing:0.213653pt;}
.ls3_c00045{letter-spacing:0.364672pt;}
.lsa_c00045{letter-spacing:0.383616pt;}
.lsb_c00045{letter-spacing:0.558848pt;}
.ls1_c00045{letter-spacing:3.902933pt;}
.ls4_c00045{letter-spacing:11.640320pt;}
.ws1_c00045{word-spacing:-17.824000pt;}
.ws0_c00045{word-spacing:-17.804800pt;}
.ws2_c00045{word-spacing:-13.379200pt;}
.ws3_c00045{word-spacing:0.000000pt;}
._d_c00045{margin-left:-1.002453pt;}
._3_c00045{width:0.889600pt;}
._5_c00045{width:2.227200pt;}
._1_c00045{width:3.353600pt;}
._2_c00045{width:5.171200pt;}
._4_c00045{width:8.486400pt;}
._e_c00045{width:11.168907pt;}
._7_c00045{width:12.377600pt;}
._a_c00045{width:13.414400pt;}
._b_c00045{width:14.905600pt;}
._c_c00045{width:20.768000pt;}
._8_c00045{width:21.984000pt;}
._6_c00045{width:23.084800pt;}
._9_c00045{width:42.592000pt;}
._0_c00045{width:1848.607733pt;}
.fs1_c00045{font-size:47.360000pt;}
.fs0_c00045{font-size:64.000000pt;}
.y0_c00045{bottom:0.000000pt;}
.y5_c00045{bottom:3.840000pt;}
.y1_c00045{bottom:16.666667pt;}
.y3_c00045{bottom:33.653360pt;}
.y4_c00045{bottom:46.480027pt;}
.y20_c00045{bottom:86.773360pt;}
.y1f_c00045{bottom:100.533360pt;}
.y1e_c00045{bottom:114.613347pt;}
.y1d_c00045{bottom:149.813333pt;}
.y1c_c00045{bottom:186.613333pt;}
.y1b_c00045{bottom:223.413333pt;}
.y1a_c00045{bottom:260.213333pt;}
.y19_c00045{bottom:297.013333pt;}
.y18_c00045{bottom:333.813333pt;}
.y17_c00045{bottom:370.613333pt;}
.y16_c00045{bottom:407.413333pt;}
.y15_c00045{bottom:444.213333pt;}
.y14_c00045{bottom:481.013333pt;}
.y13_c00045{bottom:517.813333pt;}
.y12_c00045{bottom:554.613333pt;}
.y11_c00045{bottom:591.413333pt;}
.y10_c00045{bottom:628.213333pt;}
.yf_c00045{bottom:665.013333pt;}
.ye_c00045{bottom:701.813333pt;}
.yd_c00045{bottom:738.613333pt;}
.yc_c00045{bottom:775.413333pt;}
.yb_c00045{bottom:812.213333pt;}
.ya_c00045{bottom:849.013333pt;}
.y9_c00045{bottom:885.813333pt;}
.y8_c00045{bottom:922.613333pt;}
.y7_c00045{bottom:959.413333pt;}
.y6_c00045{bottom:996.213333pt;}
.y2_c00045{bottom:1043.253333pt;}
.h3_c00045{height:18.560000pt;}
.h4_c00045{height:42.457500pt;}
.h2_c00045{height:57.375000pt;}
.h1_c00045{height:1089.333333pt;}
.h0_c00045{height:1122.666667pt;}
.w2_c00045{width:17.920000pt;}
.w1_c00045{width:760.000000pt;}
.w0_c00045{width:793.333333pt;}
.x0_c00045{left:0.000000pt;}
.x1_c00045{left:16.666667pt;}
.x2_c00045{left:97.279933pt;}
.x6_c00045{left:116.213213pt;}
.x3_c00045{left:121.280000pt;}
.x5_c00045{left:135.080133pt;}
.x4_c00045{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2f095325ab52e7a37e0c84a3.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c00046{letter-spacing:-0.014400px;}
.ls3_c00046{letter-spacing:0.000000px;}
.ls0_c00046{letter-spacing:0.014400px;}
.ls5_c00046{letter-spacing:0.239760px;}
.ls7_c00046{letter-spacing:0.362304px;}
.ls6_c00046{letter-spacing:0.410256px;}
.ls1_c00046{letter-spacing:4.390800px;}
.ls2_c00046{letter-spacing:9.174960px;}
.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:-20.030400px;}
.ws1_c00046{word-spacing:-15.051600px;}
.ws2_c00046{word-spacing:0.000000px;}
._f_c00046{margin-left:-1.012320px;}
._5_c00046{width:1.009800px;}
._6_c00046{width:4.263900px;}
._a_c00046{width:5.742600px;}
._7_c00046{width:6.854400px;}
._3_c00046{width:7.869600px;}
._1_c00046{width:9.324000px;}
._c_c00046{width:10.412400px;}
._b_c00046{width:11.966400px;}
._2_c00046{width:17.013600px;}
._4_c00046{width:18.073500px;}
._8_c00046{width:21.312000px;}
._d_c00046{width:27.050400px;}
._9_c00046{width:29.714400px;}
._e_c00046{width:47.052000px;}
._0_c00046{width:1146.683400px;}
.fc1_c00046{color:transparent;}
.fc0_c00046{color:rgb(0,0,0);}
.fs1_c00046{font-size:53.280000px;}
.fs0_c00046{font-size:72.000000px;}
.y0_c00046{bottom:0.000000px;}
.y4_c00046{bottom:4.320000px;}
.y1_c00046{bottom:18.750000px;}
.y2_c00046{bottom:37.860030px;}
.y3_c00046{bottom:52.290030px;}
.y1f_c00046{bottom:93.660030px;}
.y1e_c00046{bottom:113.100030px;}
.y1d_c00046{bottom:128.940015px;}
.y1c_c00046{bottom:168.540000px;}
.y1b_c00046{bottom:209.940000px;}
.y1a_c00046{bottom:251.340000px;}
.y19_c00046{bottom:292.740000px;}
.y18_c00046{bottom:334.140000px;}
.y17_c00046{bottom:375.540000px;}
.y16_c00046{bottom:416.940000px;}
.y15_c00046{bottom:458.340000px;}
.y14_c00046{bottom:499.740000px;}
.y13_c00046{bottom:541.140000px;}
.y12_c00046{bottom:582.540000px;}
.y11_c00046{bottom:623.940000px;}
.y10_c00046{bottom:665.340000px;}
.yf_c00046{bottom:706.740000px;}
.ye_c00046{bottom:748.140000px;}
.yd_c00046{bottom:789.540000px;}
.yc_c00046{bottom:830.940000px;}
.yb_c00046{bottom:872.340000px;}
.ya_c00046{bottom:913.740000px;}
.y9_c00046{bottom:955.140000px;}
.y8_c00046{bottom:996.540000px;}
.y7_c00046{bottom:1037.940000px;}
.y6_c00046{bottom:1079.340000px;}
.y5_c00046{bottom:1120.740000px;}
.h3_c00046{height:20.880000px;}
.h4_c00046{height:47.764688px;}
.h2_c00046{height:64.546875px;}
.h1_c00046{height:1225.500000px;}
.h0_c00046{height:1263.000000px;}
.w2_c00046{width:20.160000px;}
.w1_c00046{width:855.000000px;}
.w0_c00046{width:892.500000px;}
.x0_c00046{left:0.000000px;}
.x1_c00046{left:18.750000px;}
.x4_c00046{left:109.439925px;}
.x3_c00046{left:128.190000px;}
.x6_c00046{left:130.739865px;}
.x2_c00046{left:136.440000px;}
.x5_c00046{left:151.965150px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls4_c00046{letter-spacing:-0.012800pt;}
.ls3_c00046{letter-spacing:0.000000pt;}
.ls0_c00046{letter-spacing:0.012800pt;}
.ls5_c00046{letter-spacing:0.213120pt;}
.ls7_c00046{letter-spacing:0.322048pt;}
.ls6_c00046{letter-spacing:0.364672pt;}
.ls1_c00046{letter-spacing:3.902933pt;}
.ls2_c00046{letter-spacing:8.155520pt;}
.ws0_c00046{word-spacing:-17.804800pt;}
.ws1_c00046{word-spacing:-13.379200pt;}
.ws2_c00046{word-spacing:0.000000pt;}
._f_c00046{margin-left:-0.899840pt;}
._5_c00046{width:0.897600pt;}
._6_c00046{width:3.790133pt;}
._a_c00046{width:5.104533pt;}
._7_c00046{width:6.092800pt;}
._3_c00046{width:6.995200pt;}
._1_c00046{width:8.288000pt;}
._c_c00046{width:9.255467pt;}
._b_c00046{width:10.636800pt;}
._2_c00046{width:15.123200pt;}
._4_c00046{width:16.065333pt;}
._8_c00046{width:18.944000pt;}
._d_c00046{width:24.044800pt;}
._9_c00046{width:26.412800pt;}
._e_c00046{width:41.824000pt;}
._0_c00046{width:1019.274133pt;}
.fs1_c00046{font-size:47.360000pt;}
.fs0_c00046{font-size:64.000000pt;}
.y0_c00046{bottom:0.000000pt;}
.y4_c00046{bottom:3.840000pt;}
.y1_c00046{bottom:16.666667pt;}
.y2_c00046{bottom:33.653360pt;}
.y3_c00046{bottom:46.480027pt;}
.y1f_c00046{bottom:83.253360pt;}
.y1e_c00046{bottom:100.533360pt;}
.y1d_c00046{bottom:114.613347pt;}
.y1c_c00046{bottom:149.813333pt;}
.y1b_c00046{bottom:186.613333pt;}
.y1a_c00046{bottom:223.413333pt;}
.y19_c00046{bottom:260.213333pt;}
.y18_c00046{bottom:297.013333pt;}
.y17_c00046{bottom:333.813333pt;}
.y16_c00046{bottom:370.613333pt;}
.y15_c00046{bottom:407.413333pt;}
.y14_c00046{bottom:444.213333pt;}
.y13_c00046{bottom:481.013333pt;}
.y12_c00046{bottom:517.813333pt;}
.y11_c00046{bottom:554.613333pt;}
.y10_c00046{bottom:591.413333pt;}
.yf_c00046{bottom:628.213333pt;}
.ye_c00046{bottom:665.013333pt;}
.yd_c00046{bottom:701.813333pt;}
.yc_c00046{bottom:738.613333pt;}
.yb_c00046{bottom:775.413333pt;}
.ya_c00046{bottom:812.213333pt;}
.y9_c00046{bottom:849.013333pt;}
.y8_c00046{bottom:885.813333pt;}
.y7_c00046{bottom:922.613333pt;}
.y6_c00046{bottom:959.413333pt;}
.y5_c00046{bottom:996.213333pt;}
.h3_c00046{height:18.560000pt;}
.h4_c00046{height:42.457500pt;}
.h2_c00046{height:57.375000pt;}
.h1_c00046{height:1089.333333pt;}
.h0_c00046{height:1122.666667pt;}
.w2_c00046{width:17.920000pt;}
.w1_c00046{width:760.000000pt;}
.w0_c00046{width:793.333333pt;}
.x0_c00046{left:0.000000pt;}
.x1_c00046{left:16.666667pt;}
.x4_c00046{left:97.279933pt;}
.x3_c00046{left:113.946667pt;}
.x6_c00046{left:116.213213pt;}
.x2_c00046{left:121.280000pt;}
.x5_c00046{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ffb72bc40f8303ca6c00996b.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00047{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00047{vertical-align:0.000000px;}
.ls3_c00047{letter-spacing:-0.014400px;}
.ls2_c00047{letter-spacing:0.000000px;}
.ls0_c00047{letter-spacing:0.014400px;}
.ls1_c00047{letter-spacing:25.413000px;}
.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:-20.030400px;}
.ws1_c00047{word-spacing:-20.001600px;}
.ws2_c00047{word-spacing:0.000000px;}
._d_c00047{width:1.051200px;}
._6_c00047{width:2.664300px;}
._7_c00047{width:4.017600px;}
._2_c00047{width:5.522400px;}
._3_c00047{width:7.531200px;}
._a_c00047{width:9.252000px;}
._1_c00047{width:10.944000px;}
._b_c00047{width:12.535200px;}
._4_c00047{width:13.723200px;}
._e_c00047{width:17.762400px;}
._9_c00047{width:22.672800px;}
._c_c00047{width:23.904000px;}
._5_c00047{width:25.358400px;}
._8_c00047{width:27.979200px;}
._0_c00047{width:2079.683700px;}
.fc1_c00047{color:transparent;}
.fc0_c00047{color:rgb(0,0,0);}
.fs0_c00047{font-size:72.000000px;}
.y0_c00047{bottom:0.000000px;}
.y5_c00047{bottom:4.320000px;}
.y1_c00047{bottom:18.750000px;}
.y3_c00047{bottom:37.860030px;}
.y4_c00047{bottom:52.290030px;}
.y1e_c00047{bottom:127.140030px;}
.y1d_c00047{bottom:168.540000px;}
.y1c_c00047{bottom:209.940000px;}
.y1b_c00047{bottom:251.340000px;}
.y1a_c00047{bottom:292.740000px;}
.y19_c00047{bottom:334.140000px;}
.y18_c00047{bottom:375.540000px;}
.y17_c00047{bottom:416.940000px;}
.y16_c00047{bottom:458.340000px;}
.y15_c00047{bottom:499.740000px;}
.y14_c00047{bottom:541.140000px;}
.y13_c00047{bottom:582.540000px;}
.y12_c00047{bottom:623.940000px;}
.y11_c00047{bottom:665.340000px;}
.y10_c00047{bottom:706.740000px;}
.yf_c00047{bottom:748.140000px;}
.ye_c00047{bottom:789.540000px;}
.yd_c00047{bottom:830.940000px;}
.yc_c00047{bottom:872.340000px;}
.yb_c00047{bottom:913.740000px;}
.ya_c00047{bottom:955.140000px;}
.y9_c00047{bottom:996.540000px;}
.y8_c00047{bottom:1037.940000px;}
.y7_c00047{bottom:1079.340000px;}
.y6_c00047{bottom:1120.740000px;}
.y2_c00047{bottom:1173.660000px;}
.h3_c00047{height:20.880000px;}
.h2_c00047{height:64.546875px;}
.h1_c00047{height:1225.500000px;}
.h0_c00047{height:1263.000000px;}
.w2_c00047{width:20.160000px;}
.w1_c00047{width:855.000000px;}
.w0_c00047{width:892.500000px;}
.x0_c00047{left:0.000000px;}
.x1_c00047{left:18.750000px;}
.x2_c00047{left:109.439925px;}
.x3_c00047{left:136.440000px;}
.x5_c00047{left:151.965150px;}
.x4_c00047{left:745.590000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls3_c00047{letter-spacing:-0.012800pt;}
.ls2_c00047{letter-spacing:0.000000pt;}
.ls0_c00047{letter-spacing:0.012800pt;}
.ls1_c00047{letter-spacing:22.589333pt;}
.ws0_c00047{word-spacing:-17.804800pt;}
.ws1_c00047{word-spacing:-17.779200pt;}
.ws2_c00047{word-spacing:0.000000pt;}
._d_c00047{width:0.934400pt;}
._6_c00047{width:2.368267pt;}
._7_c00047{width:3.571200pt;}
._2_c00047{width:4.908800pt;}
._3_c00047{width:6.694400pt;}
._a_c00047{width:8.224000pt;}
._1_c00047{width:9.728000pt;}
._b_c00047{width:11.142400pt;}
._4_c00047{width:12.198400pt;}
._e_c00047{width:15.788800pt;}
._9_c00047{width:20.153600pt;}
._c_c00047{width:21.248000pt;}
._5_c00047{width:22.540800pt;}
._8_c00047{width:24.870400pt;}
._0_c00047{width:1848.607733pt;}
.fs0_c00047{font-size:64.000000pt;}
.y0_c00047{bottom:0.000000pt;}
.y5_c00047{bottom:3.840000pt;}
.y1_c00047{bottom:16.666667pt;}
.y3_c00047{bottom:33.653360pt;}
.y4_c00047{bottom:46.480027pt;}
.y1e_c00047{bottom:113.013360pt;}
.y1d_c00047{bottom:149.813333pt;}
.y1c_c00047{bottom:186.613333pt;}
.y1b_c00047{bottom:223.413333pt;}
.y1a_c00047{bottom:260.213333pt;}
.y19_c00047{bottom:297.013333pt;}
.y18_c00047{bottom:333.813333pt;}
.y17_c00047{bottom:370.613333pt;}
.y16_c00047{bottom:407.413333pt;}
.y15_c00047{bottom:444.213333pt;}
.y14_c00047{bottom:481.013333pt;}
.y13_c00047{bottom:517.813333pt;}
.y12_c00047{bottom:554.613333pt;}
.y11_c00047{bottom:591.413333pt;}
.y10_c00047{bottom:628.213333pt;}
.yf_c00047{bottom:665.013333pt;}
.ye_c00047{bottom:701.813333pt;}
.yd_c00047{bottom:738.613333pt;}
.yc_c00047{bottom:775.413333pt;}
.yb_c00047{bottom:812.213333pt;}
.ya_c00047{bottom:849.013333pt;}
.y9_c00047{bottom:885.813333pt;}
.y8_c00047{bottom:922.613333pt;}
.y7_c00047{bottom:959.413333pt;}
.y6_c00047{bottom:996.213333pt;}
.y2_c00047{bottom:1043.253333pt;}
.h3_c00047{height:18.560000pt;}
.h2_c00047{height:57.375000pt;}
.h1_c00047{height:1089.333333pt;}
.h0_c00047{height:1122.666667pt;}
.w2_c00047{width:17.920000pt;}
.w1_c00047{width:760.000000pt;}
.w0_c00047{width:793.333333pt;}
.x0_c00047{left:0.000000pt;}
.x1_c00047{left:16.666667pt;}
.x2_c00047{left:97.279933pt;}
.x3_c00047{left:121.280000pt;}
.x5_c00047{left:135.080133pt;}
.x4_c00047{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_aef2dc1f5cfb2dcf2c5026ca.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00048;src:url('chunks/assets/font_47c9cc03f4c3ef8ae2ede80d.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.113281;font-style: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;}
.ls1_c00048{letter-spacing:0.000000px;}
.ls0_c00048{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00048{word-spacing:0.000000px;}
._4_c00048{width:1.404000px;}
._8_c00048{width:2.800800px;}
._9_c00048{width:4.824000px;}
._3_c00048{width:5.968800px;}
._5_c00048{width:7.365600px;}
._e_c00048{width:8.373600px;}
._1_c00048{width:9.374400px;}
._2_c00048{width:10.397700px;}
._7_c00048{width:13.946400px;}
._10_c00048{width:15.674400px;}
._a_c00048{width:16.957800px;}
._b_c00048{width:18.086400px;}
._c_c00048{width:22.363200px;}
._f_c00048{width:23.407200px;}
._11_c00048{width:25.696800px;}
._6_c00048{width:29.931300px;}
._13_c00048{width:33.897600px;}
._12_c00048{width:35.949600px;}
._d_c00048{width:37.569600px;}
._0_c00048{width:1146.683400px;}
.fc1_c00048{color:transparent;}
.fc0_c00048{color:rgb(0,0,0);}
.fs0_c00048{font-size:72.000000px;}
.y0_c00048{bottom:0.000000px;}
.y4_c00048{bottom:4.320000px;}
.y1_c00048{bottom:18.750000px;}
.y2_c00048{bottom:37.860030px;}
.y3_c00048{bottom:52.290030px;}
.y1d_c00048{bottom:109.140030px;}
.y1c_c00048{bottom:150.540000px;}
.y1b_c00048{bottom:191.940000px;}
.y1a_c00048{bottom:233.340000px;}
.y19_c00048{bottom:274.740000px;}
.y18_c00048{bottom:316.140000px;}
.y17_c00048{bottom:357.540000px;}
.y16_c00048{bottom:398.940000px;}
.y15_c00048{bottom:440.340000px;}
.y14_c00048{bottom:481.740000px;}
.y13_c00048{bottom:523.140000px;}
.y12_c00048{bottom:564.540000px;}
.y11_c00048{bottom:605.940000px;}
.y10_c00048{bottom:647.340000px;}
.yf_c00048{bottom:688.740000px;}
.ye_c00048{bottom:730.140000px;}
.yd_c00048{bottom:771.540000px;}
.yc_c00048{bottom:812.940000px;}
.yb_c00048{bottom:854.340000px;}
.ya_c00048{bottom:913.740000px;}
.y9_c00048{bottom:955.140000px;}
.y8_c00048{bottom:996.540000px;}
.y7_c00048{bottom:1037.940000px;}
.y6_c00048{bottom:1079.340000px;}
.y5_c00048{bottom:1120.740000px;}
.h3_c00048{height:20.880000px;}
.h2_c00048{height:64.546875px;}
.h4_c00048{height:65.003906px;}
.h1_c00048{height:1225.500000px;}
.h0_c00048{height:1263.000000px;}
.w2_c00048{width:20.160000px;}
.w1_c00048{width:855.000000px;}
.w0_c00048{width:892.500000px;}
.x0_c00048{left:0.000000px;}
.x1_c00048{left:18.750000px;}
.x4_c00048{left:109.439925px;}
.x3_c00048{left:128.190000px;}
.x2_c00048{left:136.440000px;}
.x5_c00048{left:151.965150px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls1_c00048{letter-spacing:0.000000pt;}
.ls0_c00048{letter-spacing:0.012800pt;}
.ws0_c00048{word-spacing:-17.804800pt;}
.ws1_c00048{word-spacing:0.000000pt;}
._4_c00048{width:1.248000pt;}
._8_c00048{width:2.489600pt;}
._9_c00048{width:4.288000pt;}
._3_c00048{width:5.305600pt;}
._5_c00048{width:6.547200pt;}
._e_c00048{width:7.443200pt;}
._1_c00048{width:8.332800pt;}
._2_c00048{width:9.242400pt;}
._7_c00048{width:12.396800pt;}
._10_c00048{width:13.932800pt;}
._a_c00048{width:15.073600pt;}
._b_c00048{width:16.076800pt;}
._c_c00048{width:19.878400pt;}
._f_c00048{width:20.806400pt;}
._11_c00048{width:22.841600pt;}
._6_c00048{width:26.605600pt;}
._13_c00048{width:30.131200pt;}
._12_c00048{width:31.955200pt;}
._d_c00048{width:33.395200pt;}
._0_c00048{width:1019.274133pt;}
.fs0_c00048{font-size:64.000000pt;}
.y0_c00048{bottom:0.000000pt;}
.y4_c00048{bottom:3.840000pt;}
.y1_c00048{bottom:16.666667pt;}
.y2_c00048{bottom:33.653360pt;}
.y3_c00048{bottom:46.480027pt;}
.y1d_c00048{bottom:97.013360pt;}
.y1c_c00048{bottom:133.813333pt;}
.y1b_c00048{bottom:170.613333pt;}
.y1a_c00048{bottom:207.413333pt;}
.y19_c00048{bottom:244.213333pt;}
.y18_c00048{bottom:281.013333pt;}
.y17_c00048{bottom:317.813333pt;}
.y16_c00048{bottom:354.613333pt;}
.y15_c00048{bottom:391.413333pt;}
.y14_c00048{bottom:428.213333pt;}
.y13_c00048{bottom:465.013333pt;}
.y12_c00048{bottom:501.813333pt;}
.y11_c00048{bottom:538.613333pt;}
.y10_c00048{bottom:575.413333pt;}
.yf_c00048{bottom:612.213333pt;}
.ye_c00048{bottom:649.013333pt;}
.yd_c00048{bottom:685.813333pt;}
.yc_c00048{bottom:722.613333pt;}
.yb_c00048{bottom:759.413333pt;}
.ya_c00048{bottom:812.213333pt;}
.y9_c00048{bottom:849.013333pt;}
.y8_c00048{bottom:885.813333pt;}
.y7_c00048{bottom:922.613333pt;}
.y6_c00048{bottom:959.413333pt;}
.y5_c00048{bottom:996.213333pt;}
.h3_c00048{height:18.560000pt;}
.h2_c00048{height:57.375000pt;}
.h4_c00048{height:57.781250pt;}
.h1_c00048{height:1089.333333pt;}
.h0_c00048{height:1122.666667pt;}
.w2_c00048{width:17.920000pt;}
.w1_c00048{width:760.000000pt;}
.w0_c00048{width:793.333333pt;}
.x0_c00048{left:0.000000pt;}
.x1_c00048{left:16.666667pt;}
.x4_c00048{left:97.279933pt;}
.x3_c00048{left:113.946667pt;}
.x2_c00048{left:121.280000pt;}
.x5_c00048{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d43182cafd0b29fa78ca919e.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00049;src:url('chunks/assets/font_b497c00ef038d994cfce3212.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.113281;font-style: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;}
.ls1_c00049{letter-spacing:0.000000px;}
.ls0_c00049{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00049{word-spacing:0.000000px;}
._12_c00049{margin-left:-1.007400px;}
._f_c00049{width:1.569600px;}
._7_c00049{width:2.577600px;}
._3_c00049{width:6.336000px;}
._9_c00049{width:7.905600px;}
._b_c00049{width:9.309600px;}
._11_c00049{width:10.879200px;}
._2_c00049{width:13.032000px;}
._5_c00049{width:14.263200px;}
._8_c00049{width:16.344000px;}
._a_c00049{width:17.402400px;}
._4_c00049{width:19.000800px;}
._1_c00049{width:21.909600px;}
._10_c00049{width:22.996800px;}
._6_c00049{width:25.358400px;}
._13_c00049{width:34.300800px;}
._d_c00049{width:37.080000px;}
._e_c00049{width:47.044800px;}
._c_c00049{width:50.925600px;}
._0_c00049{width:2079.683700px;}
.fc1_c00049{color:transparent;}
.fc0_c00049{color:rgb(0,0,0);}
.fs0_c00049{font-size:72.000000px;}
.y0_c00049{bottom:0.000000px;}
.y5_c00049{bottom:4.320000px;}
.y1_c00049{bottom:18.750000px;}
.y3_c00049{bottom:37.860030px;}
.y4_c00049{bottom:52.290030px;}
.y1e_c00049{bottom:109.140030px;}
.y1d_c00049{bottom:150.540000px;}
.y1c_c00049{bottom:191.940000px;}
.y1b_c00049{bottom:233.340000px;}
.y1a_c00049{bottom:274.740000px;}
.y19_c00049{bottom:316.140000px;}
.y18_c00049{bottom:357.540000px;}
.y17_c00049{bottom:398.940000px;}
.y16_c00049{bottom:440.340000px;}
.y15_c00049{bottom:481.740000px;}
.y14_c00049{bottom:523.140000px;}
.y13_c00049{bottom:564.540000px;}
.y12_c00049{bottom:623.940000px;}
.y11_c00049{bottom:665.340000px;}
.y10_c00049{bottom:706.740000px;}
.yf_c00049{bottom:748.140000px;}
.ye_c00049{bottom:789.540000px;}
.yd_c00049{bottom:830.940000px;}
.yc_c00049{bottom:872.340000px;}
.yb_c00049{bottom:913.740000px;}
.ya_c00049{bottom:955.140000px;}
.y9_c00049{bottom:996.540000px;}
.y8_c00049{bottom:1037.940000px;}
.y7_c00049{bottom:1079.340000px;}
.y6_c00049{bottom:1120.740000px;}
.y2_c00049{bottom:1173.660000px;}
.h3_c00049{height:20.880000px;}
.h2_c00049{height:64.546875px;}
.h4_c00049{height:65.003906px;}
.h1_c00049{height:1225.500000px;}
.h0_c00049{height:1263.000000px;}
.w2_c00049{width:20.160000px;}
.w1_c00049{width:855.000000px;}
.w0_c00049{width:892.500000px;}
.x0_c00049{left:0.000000px;}
.x1_c00049{left:18.750000px;}
.x2_c00049{left:109.439925px;}
.x3_c00049{left:136.440000px;}
.x5_c00049{left:151.965150px;}
.x4_c00049{left:745.590000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls1_c00049{letter-spacing:0.000000pt;}
.ls0_c00049{letter-spacing:0.012800pt;}
.ws0_c00049{word-spacing:-17.804800pt;}
.ws1_c00049{word-spacing:0.000000pt;}
._12_c00049{margin-left:-0.895467pt;}
._f_c00049{width:1.395200pt;}
._7_c00049{width:2.291200pt;}
._3_c00049{width:5.632000pt;}
._9_c00049{width:7.027200pt;}
._b_c00049{width:8.275200pt;}
._11_c00049{width:9.670400pt;}
._2_c00049{width:11.584000pt;}
._5_c00049{width:12.678400pt;}
._8_c00049{width:14.528000pt;}
._a_c00049{width:15.468800pt;}
._4_c00049{width:16.889600pt;}
._1_c00049{width:19.475200pt;}
._10_c00049{width:20.441600pt;}
._6_c00049{width:22.540800pt;}
._13_c00049{width:30.489600pt;}
._d_c00049{width:32.960000pt;}
._e_c00049{width:41.817600pt;}
._c_c00049{width:45.267200pt;}
._0_c00049{width:1848.607733pt;}
.fs0_c00049{font-size:64.000000pt;}
.y0_c00049{bottom:0.000000pt;}
.y5_c00049{bottom:3.840000pt;}
.y1_c00049{bottom:16.666667pt;}
.y3_c00049{bottom:33.653360pt;}
.y4_c00049{bottom:46.480027pt;}
.y1e_c00049{bottom:97.013360pt;}
.y1d_c00049{bottom:133.813333pt;}
.y1c_c00049{bottom:170.613333pt;}
.y1b_c00049{bottom:207.413333pt;}
.y1a_c00049{bottom:244.213333pt;}
.y19_c00049{bottom:281.013333pt;}
.y18_c00049{bottom:317.813333pt;}
.y17_c00049{bottom:354.613333pt;}
.y16_c00049{bottom:391.413333pt;}
.y15_c00049{bottom:428.213333pt;}
.y14_c00049{bottom:465.013333pt;}
.y13_c00049{bottom:501.813333pt;}
.y12_c00049{bottom:554.613333pt;}
.y11_c00049{bottom:591.413333pt;}
.y10_c00049{bottom:628.213333pt;}
.yf_c00049{bottom:665.013333pt;}
.ye_c00049{bottom:701.813333pt;}
.yd_c00049{bottom:738.613333pt;}
.yc_c00049{bottom:775.413333pt;}
.yb_c00049{bottom:812.213333pt;}
.ya_c00049{bottom:849.013333pt;}
.y9_c00049{bottom:885.813333pt;}
.y8_c00049{bottom:922.613333pt;}
.y7_c00049{bottom:959.413333pt;}
.y6_c00049{bottom:996.213333pt;}
.y2_c00049{bottom:1043.253333pt;}
.h3_c00049{height:18.560000pt;}
.h2_c00049{height:57.375000pt;}
.h4_c00049{height:57.781250pt;}
.h1_c00049{height:1089.333333pt;}
.h0_c00049{height:1122.666667pt;}
.w2_c00049{width:17.920000pt;}
.w1_c00049{width:760.000000pt;}
.w0_c00049{width:793.333333pt;}
.x0_c00049{left:0.000000pt;}
.x1_c00049{left:16.666667pt;}
.x2_c00049{left:97.279933pt;}
.x3_c00049{left:121.280000pt;}
.x5_c00049{left:135.080133pt;}
.x4_c00049{left:662.746667pt;}
}





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

.ir_c00050:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00050;src:url('chunks/assets/font_79470dbf2376a2e6043e30b1.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00050{vertical-align:0.000000px;}
.ls1_c00050{letter-spacing:0.000000px;}
.ls0_c00050{letter-spacing:0.014400px;}
.sc__c00050{text-shadow:none;}
.sc0_c00050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00050{-webkit-text-stroke:0px transparent;}
.sc0_c00050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00050{word-spacing:-20.030400px;}
.ws1_c00050{word-spacing:0.000000px;}
._5_c00050{width:1.152000px;}
._3_c00050{width:2.332800px;}
._2_c00050{width:4.053600px;}
._4_c00050{width:5.601600px;}
._c_c00050{width:6.814500px;}
._1_c00050{width:7.905600px;}
._6_c00050{width:9.957600px;}
._b_c00050{width:11.224800px;}
._8_c00050{width:21.938400px;}
._a_c00050{width:23.522400px;}
._d_c00050{width:26.344800px;}
._9_c00050{width:28.929600px;}
._7_c00050{width:32.169600px;}
._0_c00050{width:1146.683400px;}
.fc1_c00050{color:transparent;}
.fc0_c00050{color:rgb(0,0,0);}
.fs0_c00050{font-size:72.000000px;}
.y0_c00050{bottom:0.000000px;}
.y4_c00050{bottom:4.320000px;}
.y1_c00050{bottom:18.750000px;}
.y2_c00050{bottom:37.860030px;}
.y3_c00050{bottom:52.290030px;}
.y1d_c00050{bottom:127.140030px;}
.y1c_c00050{bottom:168.540000px;}
.y1b_c00050{bottom:209.940000px;}
.y1a_c00050{bottom:251.340000px;}
.y19_c00050{bottom:292.740000px;}
.y18_c00050{bottom:334.140000px;}
.y17_c00050{bottom:375.540000px;}
.y16_c00050{bottom:416.940000px;}
.y15_c00050{bottom:458.340000px;}
.y14_c00050{bottom:499.740000px;}
.y13_c00050{bottom:541.140000px;}
.y12_c00050{bottom:582.540000px;}
.y11_c00050{bottom:623.940000px;}
.y10_c00050{bottom:665.340000px;}
.yf_c00050{bottom:706.740000px;}
.ye_c00050{bottom:748.140000px;}
.yd_c00050{bottom:789.540000px;}
.yc_c00050{bottom:830.940000px;}
.yb_c00050{bottom:872.340000px;}
.ya_c00050{bottom:913.740000px;}
.y9_c00050{bottom:955.140000px;}
.y8_c00050{bottom:996.540000px;}
.y7_c00050{bottom:1037.940000px;}
.y6_c00050{bottom:1079.340000px;}
.y5_c00050{bottom:1120.740000px;}
.h3_c00050{height:20.880000px;}
.h2_c00050{height:64.546875px;}
.h1_c00050{height:1225.500000px;}
.h0_c00050{height:1263.000000px;}
.w2_c00050{width:20.160000px;}
.w1_c00050{width:855.000000px;}
.w0_c00050{width:892.500000px;}
.x0_c00050{left:0.000000px;}
.x1_c00050{left:18.750000px;}
.x4_c00050{left:109.439925px;}
.x3_c00050{left:128.190000px;}
.x2_c00050{left:136.440000px;}
.x5_c00050{left:151.965150px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls1_c00050{letter-spacing:0.000000pt;}
.ls0_c00050{letter-spacing:0.012800pt;}
.ws0_c00050{word-spacing:-17.804800pt;}
.ws1_c00050{word-spacing:0.000000pt;}
._5_c00050{width:1.024000pt;}
._3_c00050{width:2.073600pt;}
._2_c00050{width:3.603200pt;}
._4_c00050{width:4.979200pt;}
._c_c00050{width:6.057333pt;}
._1_c00050{width:7.027200pt;}
._6_c00050{width:8.851200pt;}
._b_c00050{width:9.977600pt;}
._8_c00050{width:19.500800pt;}
._a_c00050{width:20.908800pt;}
._d_c00050{width:23.417600pt;}
._9_c00050{width:25.715200pt;}
._7_c00050{width:28.595200pt;}
._0_c00050{width:1019.274133pt;}
.fs0_c00050{font-size:64.000000pt;}
.y0_c00050{bottom:0.000000pt;}
.y4_c00050{bottom:3.840000pt;}
.y1_c00050{bottom:16.666667pt;}
.y2_c00050{bottom:33.653360pt;}
.y3_c00050{bottom:46.480027pt;}
.y1d_c00050{bottom:113.013360pt;}
.y1c_c00050{bottom:149.813333pt;}
.y1b_c00050{bottom:186.613333pt;}
.y1a_c00050{bottom:223.413333pt;}
.y19_c00050{bottom:260.213333pt;}
.y18_c00050{bottom:297.013333pt;}
.y17_c00050{bottom:333.813333pt;}
.y16_c00050{bottom:370.613333pt;}
.y15_c00050{bottom:407.413333pt;}
.y14_c00050{bottom:444.213333pt;}
.y13_c00050{bottom:481.013333pt;}
.y12_c00050{bottom:517.813333pt;}
.y11_c00050{bottom:554.613333pt;}
.y10_c00050{bottom:591.413333pt;}
.yf_c00050{bottom:628.213333pt;}
.ye_c00050{bottom:665.013333pt;}
.yd_c00050{bottom:701.813333pt;}
.yc_c00050{bottom:738.613333pt;}
.yb_c00050{bottom:775.413333pt;}
.ya_c00050{bottom:812.213333pt;}
.y9_c00050{bottom:849.013333pt;}
.y8_c00050{bottom:885.813333pt;}
.y7_c00050{bottom:922.613333pt;}
.y6_c00050{bottom:959.413333pt;}
.y5_c00050{bottom:996.213333pt;}
.h3_c00050{height:18.560000pt;}
.h2_c00050{height:57.375000pt;}
.h1_c00050{height:1089.333333pt;}
.h0_c00050{height:1122.666667pt;}
.w2_c00050{width:17.920000pt;}
.w1_c00050{width:760.000000pt;}
.w0_c00050{width:793.333333pt;}
.x0_c00050{left:0.000000pt;}
.x1_c00050{left:16.666667pt;}
.x4_c00050{left:97.279933pt;}
.x3_c00050{left:113.946667pt;}
.x2_c00050{left:121.280000pt;}
.x5_c00050{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9af21a0c97612112dedcdbdb.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.ls1_c00051{letter-spacing:0.000000px;}
.ls0_c00051{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00051{word-spacing:0.000000px;}
._e_c00051{margin-left:-1.000800px;}
._b_c00051{width:1.008000px;}
._11_c00051{width:2.563200px;}
._a_c00051{width:3.729600px;}
._8_c00051{width:5.378400px;}
._1_c00051{width:6.458400px;}
._6_c00051{width:7.624800px;}
._f_c00051{width:11.296800px;}
._d_c00051{width:12.297600px;}
._c_c00051{width:13.766400px;}
._5_c00051{width:18.446400px;}
._7_c00051{width:21.844800px;}
._10_c00051{width:23.184000px;}
._9_c00051{width:28.871760px;}
._2_c00051{width:33.271200px;}
._4_c00051{width:50.227200px;}
._3_c00051{width:54.259200px;}
._0_c00051{width:2079.683700px;}
.fc1_c00051{color:transparent;}
.fc0_c00051{color:rgb(0,0,0);}
.fs0_c00051{font-size:72.000000px;}
.y0_c00051{bottom:0.000000px;}
.y5_c00051{bottom:4.320000px;}
.y1_c00051{bottom:18.750000px;}
.y3_c00051{bottom:37.860030px;}
.y4_c00051{bottom:52.290030px;}
.y1e_c00051{bottom:127.140030px;}
.y1d_c00051{bottom:168.540000px;}
.y1c_c00051{bottom:209.940000px;}
.y1b_c00051{bottom:251.340000px;}
.y1a_c00051{bottom:292.740000px;}
.y19_c00051{bottom:334.140000px;}
.y18_c00051{bottom:375.540000px;}
.y17_c00051{bottom:416.940000px;}
.y16_c00051{bottom:458.340000px;}
.y15_c00051{bottom:499.740000px;}
.y14_c00051{bottom:541.140000px;}
.y13_c00051{bottom:582.540000px;}
.y12_c00051{bottom:623.940000px;}
.y11_c00051{bottom:665.340000px;}
.y10_c00051{bottom:706.740000px;}
.yf_c00051{bottom:748.140000px;}
.ye_c00051{bottom:789.540000px;}
.yd_c00051{bottom:830.940000px;}
.yc_c00051{bottom:872.340000px;}
.yb_c00051{bottom:913.740000px;}
.ya_c00051{bottom:955.140000px;}
.y9_c00051{bottom:996.540000px;}
.y8_c00051{bottom:1037.940000px;}
.y7_c00051{bottom:1079.340000px;}
.y6_c00051{bottom:1120.740000px;}
.y2_c00051{bottom:1173.660000px;}
.h3_c00051{height:20.880000px;}
.h2_c00051{height:64.546875px;}
.h1_c00051{height:1225.500000px;}
.h0_c00051{height:1263.000000px;}
.w2_c00051{width:20.160000px;}
.w1_c00051{width:855.000000px;}
.w0_c00051{width:892.500000px;}
.x0_c00051{left:0.000000px;}
.x1_c00051{left:18.750000px;}
.x2_c00051{left:109.439925px;}
.x3_c00051{left:136.440000px;}
.x6_c00051{left:151.965150px;}
.x5_c00051{left:315.360000px;}
.x4_c00051{left:745.590000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls1_c00051{letter-spacing:0.000000pt;}
.ls0_c00051{letter-spacing:0.012800pt;}
.ws0_c00051{word-spacing:-17.804800pt;}
.ws1_c00051{word-spacing:0.000000pt;}
._e_c00051{margin-left:-0.889600pt;}
._b_c00051{width:0.896000pt;}
._11_c00051{width:2.278400pt;}
._a_c00051{width:3.315200pt;}
._8_c00051{width:4.780800pt;}
._1_c00051{width:5.740800pt;}
._6_c00051{width:6.777600pt;}
._f_c00051{width:10.041600pt;}
._d_c00051{width:10.931200pt;}
._c_c00051{width:12.236800pt;}
._5_c00051{width:16.396800pt;}
._7_c00051{width:19.417600pt;}
._10_c00051{width:20.608000pt;}
._9_c00051{width:25.663787pt;}
._2_c00051{width:29.574400pt;}
._4_c00051{width:44.646400pt;}
._3_c00051{width:48.230400pt;}
._0_c00051{width:1848.607733pt;}
.fs0_c00051{font-size:64.000000pt;}
.y0_c00051{bottom:0.000000pt;}
.y5_c00051{bottom:3.840000pt;}
.y1_c00051{bottom:16.666667pt;}
.y3_c00051{bottom:33.653360pt;}
.y4_c00051{bottom:46.480027pt;}
.y1e_c00051{bottom:113.013360pt;}
.y1d_c00051{bottom:149.813333pt;}
.y1c_c00051{bottom:186.613333pt;}
.y1b_c00051{bottom:223.413333pt;}
.y1a_c00051{bottom:260.213333pt;}
.y19_c00051{bottom:297.013333pt;}
.y18_c00051{bottom:333.813333pt;}
.y17_c00051{bottom:370.613333pt;}
.y16_c00051{bottom:407.413333pt;}
.y15_c00051{bottom:444.213333pt;}
.y14_c00051{bottom:481.013333pt;}
.y13_c00051{bottom:517.813333pt;}
.y12_c00051{bottom:554.613333pt;}
.y11_c00051{bottom:591.413333pt;}
.y10_c00051{bottom:628.213333pt;}
.yf_c00051{bottom:665.013333pt;}
.ye_c00051{bottom:701.813333pt;}
.yd_c00051{bottom:738.613333pt;}
.yc_c00051{bottom:775.413333pt;}
.yb_c00051{bottom:812.213333pt;}
.ya_c00051{bottom:849.013333pt;}
.y9_c00051{bottom:885.813333pt;}
.y8_c00051{bottom:922.613333pt;}
.y7_c00051{bottom:959.413333pt;}
.y6_c00051{bottom:996.213333pt;}
.y2_c00051{bottom:1043.253333pt;}
.h3_c00051{height:18.560000pt;}
.h2_c00051{height:57.375000pt;}
.h1_c00051{height:1089.333333pt;}
.h0_c00051{height:1122.666667pt;}
.w2_c00051{width:17.920000pt;}
.w1_c00051{width:760.000000pt;}
.w0_c00051{width:793.333333pt;}
.x0_c00051{left:0.000000pt;}
.x1_c00051{left:16.666667pt;}
.x2_c00051{left:97.279933pt;}
.x3_c00051{left:121.280000pt;}
.x6_c00051{left:135.080133pt;}
.x5_c00051{left:280.320000pt;}
.x4_c00051{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_24621ed3572c9becf503d519.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00052;src:url('chunks/assets/font_89603e5dfafa4500bd65e8d9.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00052;src:url('chunks/assets/font_e3e3a3df1e5ec743c6e732fb.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:1.113281;font-style: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;}
.ls3_c00052{letter-spacing:-0.014400px;}
.ls2_c00052{letter-spacing:0.000000px;}
.ls0_c00052{letter-spacing:0.014400px;}
.ls1_c00052{letter-spacing:15.843600px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00052{word-spacing:-20.030400px;}
.ws1_c00052{word-spacing:0.000000px;}
._3_c00052{width:1.008000px;}
._a_c00052{width:2.836800px;}
._8_c00052{width:8.762400px;}
._9_c00052{width:9.900000px;}
._b_c00052{width:11.635200px;}
._c_c00052{width:14.104800px;}
._e_c00052{width:15.278400px;}
._2_c00052{width:17.676000px;}
._5_c00052{width:18.705600px;}
._4_c00052{width:21.412800px;}
._7_c00052{width:24.314400px;}
._1_c00052{width:25.754400px;}
._d_c00052{width:32.284800px;}
._6_c00052{width:34.956000px;}
._0_c00052{width:1146.683400px;}
.fc1_c00052{color:transparent;}
.fc0_c00052{color:rgb(0,0,0);}
.fs0_c00052{font-size:72.000000px;}
.y0_c00052{bottom:0.000000px;}
.y4_c00052{bottom:4.320000px;}
.y1_c00052{bottom:18.750000px;}
.y2_c00052{bottom:37.860030px;}
.y3_c00052{bottom:52.290030px;}
.y1d_c00052{bottom:109.140030px;}
.y1c_c00052{bottom:150.540000px;}
.y1b_c00052{bottom:191.940000px;}
.y1a_c00052{bottom:251.340000px;}
.y19_c00052{bottom:292.740000px;}
.y18_c00052{bottom:334.140000px;}
.y17_c00052{bottom:375.540000px;}
.y16_c00052{bottom:416.940000px;}
.y15_c00052{bottom:458.340000px;}
.y14_c00052{bottom:499.740000px;}
.y13_c00052{bottom:541.140000px;}
.y12_c00052{bottom:582.540000px;}
.y11_c00052{bottom:623.940000px;}
.y10_c00052{bottom:665.340000px;}
.yf_c00052{bottom:706.740000px;}
.ye_c00052{bottom:748.140000px;}
.yd_c00052{bottom:789.540000px;}
.yc_c00052{bottom:830.940000px;}
.yb_c00052{bottom:872.340000px;}
.ya_c00052{bottom:913.740000px;}
.y9_c00052{bottom:955.140000px;}
.y8_c00052{bottom:996.540000px;}
.y7_c00052{bottom:1037.940000px;}
.y6_c00052{bottom:1079.340000px;}
.y5_c00052{bottom:1120.740000px;}
.h3_c00052{height:20.880000px;}
.h4_c00052{height:64.371094px;}
.h2_c00052{height:64.546875px;}
.h5_c00052{height:65.003906px;}
.h1_c00052{height:1225.500000px;}
.h0_c00052{height:1263.000000px;}
.w2_c00052{width:20.160000px;}
.w1_c00052{width:855.000000px;}
.w0_c00052{width:892.500000px;}
.x0_c00052{left:0.000000px;}
.x1_c00052{left:18.750000px;}
.x5_c00052{left:109.439925px;}
.x3_c00052{left:128.190000px;}
.x2_c00052{left:136.440000px;}
.x4_c00052{left:151.965150px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls3_c00052{letter-spacing:-0.012800pt;}
.ls2_c00052{letter-spacing:0.000000pt;}
.ls0_c00052{letter-spacing:0.012800pt;}
.ls1_c00052{letter-spacing:14.083200pt;}
.ws0_c00052{word-spacing:-17.804800pt;}
.ws1_c00052{word-spacing:0.000000pt;}
._3_c00052{width:0.896000pt;}
._a_c00052{width:2.521600pt;}
._8_c00052{width:7.788800pt;}
._9_c00052{width:8.800000pt;}
._b_c00052{width:10.342400pt;}
._c_c00052{width:12.537600pt;}
._e_c00052{width:13.580800pt;}
._2_c00052{width:15.712000pt;}
._5_c00052{width:16.627200pt;}
._4_c00052{width:19.033600pt;}
._7_c00052{width:21.612800pt;}
._1_c00052{width:22.892800pt;}
._d_c00052{width:28.697600pt;}
._6_c00052{width:31.072000pt;}
._0_c00052{width:1019.274133pt;}
.fs0_c00052{font-size:64.000000pt;}
.y0_c00052{bottom:0.000000pt;}
.y4_c00052{bottom:3.840000pt;}
.y1_c00052{bottom:16.666667pt;}
.y2_c00052{bottom:33.653360pt;}
.y3_c00052{bottom:46.480027pt;}
.y1d_c00052{bottom:97.013360pt;}
.y1c_c00052{bottom:133.813333pt;}
.y1b_c00052{bottom:170.613333pt;}
.y1a_c00052{bottom:223.413333pt;}
.y19_c00052{bottom:260.213333pt;}
.y18_c00052{bottom:297.013333pt;}
.y17_c00052{bottom:333.813333pt;}
.y16_c00052{bottom:370.613333pt;}
.y15_c00052{bottom:407.413333pt;}
.y14_c00052{bottom:444.213333pt;}
.y13_c00052{bottom:481.013333pt;}
.y12_c00052{bottom:517.813333pt;}
.y11_c00052{bottom:554.613333pt;}
.y10_c00052{bottom:591.413333pt;}
.yf_c00052{bottom:628.213333pt;}
.ye_c00052{bottom:665.013333pt;}
.yd_c00052{bottom:701.813333pt;}
.yc_c00052{bottom:738.613333pt;}
.yb_c00052{bottom:775.413333pt;}
.ya_c00052{bottom:812.213333pt;}
.y9_c00052{bottom:849.013333pt;}
.y8_c00052{bottom:885.813333pt;}
.y7_c00052{bottom:922.613333pt;}
.y6_c00052{bottom:959.413333pt;}
.y5_c00052{bottom:996.213333pt;}
.h3_c00052{height:18.560000pt;}
.h4_c00052{height:57.218750pt;}
.h2_c00052{height:57.375000pt;}
.h5_c00052{height:57.781250pt;}
.h1_c00052{height:1089.333333pt;}
.h0_c00052{height:1122.666667pt;}
.w2_c00052{width:17.920000pt;}
.w1_c00052{width:760.000000pt;}
.w0_c00052{width:793.333333pt;}
.x0_c00052{left:0.000000pt;}
.x1_c00052{left:16.666667pt;}
.x5_c00052{left:97.279933pt;}
.x3_c00052{left:113.946667pt;}
.x2_c00052{left:121.280000pt;}
.x4_c00052{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d6a1ad5dae1639921db278b6.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00053{vertical-align:0.000000px;}
.ls2_c00053{letter-spacing:0.000000px;}
.ls0_c00053{letter-spacing:0.010800px;}
.ls1_c00053{letter-spacing:0.014400px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00053{word-spacing:0.000000px;}
._4_c00053{width:1.036800px;}
._6_c00053{width:2.518500px;}
._1_c00053{width:3.974400px;}
._2_c00053{width:6.696000px;}
._f_c00053{width:7.948800px;}
._5_c00053{width:9.338400px;}
._3_c00053{width:10.526400px;}
._a_c00053{width:11.822400px;}
._7_c00053{width:13.219200px;}
._b_c00053{width:15.004800px;}
._9_c00053{width:16.588800px;}
._10_c00053{width:22.024800px;}
._11_c00053{width:23.032800px;}
._c_c00053{width:24.660000px;}
._e_c00053{width:26.388000px;}
._8_c00053{width:27.424800px;}
._d_c00053{width:40.478400px;}
._0_c00053{width:2079.683700px;}
.fc1_c00053{color:transparent;}
.fc0_c00053{color:rgb(0,0,0);}
.fs0_c00053{font-size:72.000000px;}
.y0_c00053{bottom:0.000000px;}
.y5_c00053{bottom:4.320000px;}
.y1_c00053{bottom:18.750000px;}
.y3_c00053{bottom:37.860030px;}
.y4_c00053{bottom:52.290030px;}
.y1e_c00053{bottom:127.140030px;}
.y1d_c00053{bottom:168.540000px;}
.y1c_c00053{bottom:209.940000px;}
.y1b_c00053{bottom:251.340000px;}
.y1a_c00053{bottom:292.740000px;}
.y19_c00053{bottom:334.140000px;}
.y18_c00053{bottom:375.540000px;}
.y17_c00053{bottom:416.940000px;}
.y16_c00053{bottom:458.340000px;}
.y15_c00053{bottom:499.740000px;}
.y14_c00053{bottom:541.140000px;}
.y13_c00053{bottom:582.540000px;}
.y12_c00053{bottom:623.940000px;}
.y11_c00053{bottom:665.340000px;}
.y10_c00053{bottom:706.740000px;}
.yf_c00053{bottom:748.140000px;}
.ye_c00053{bottom:789.540000px;}
.yd_c00053{bottom:830.940000px;}
.yc_c00053{bottom:872.340000px;}
.yb_c00053{bottom:913.740000px;}
.ya_c00053{bottom:955.140000px;}
.y9_c00053{bottom:996.540000px;}
.y8_c00053{bottom:1037.940000px;}
.y7_c00053{bottom:1079.340000px;}
.y6_c00053{bottom:1120.740000px;}
.y2_c00053{bottom:1173.660000px;}
.h3_c00053{height:20.880000px;}
.h2_c00053{height:64.546875px;}
.h1_c00053{height:1225.500000px;}
.h0_c00053{height:1263.000000px;}
.w2_c00053{width:20.160000px;}
.w1_c00053{width:855.000000px;}
.w0_c00053{width:892.500000px;}
.x0_c00053{left:0.000000px;}
.x1_c00053{left:18.750000px;}
.x2_c00053{left:109.439925px;}
.x3_c00053{left:136.440000px;}
.x5_c00053{left:151.965150px;}
.x4_c00053{left:745.590000px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls2_c00053{letter-spacing:0.000000pt;}
.ls0_c00053{letter-spacing:0.009600pt;}
.ls1_c00053{letter-spacing:0.012800pt;}
.ws0_c00053{word-spacing:0.000000pt;}
._4_c00053{width:0.921600pt;}
._6_c00053{width:2.238667pt;}
._1_c00053{width:3.532800pt;}
._2_c00053{width:5.952000pt;}
._f_c00053{width:7.065600pt;}
._5_c00053{width:8.300800pt;}
._3_c00053{width:9.356800pt;}
._a_c00053{width:10.508800pt;}
._7_c00053{width:11.750400pt;}
._b_c00053{width:13.337600pt;}
._9_c00053{width:14.745600pt;}
._10_c00053{width:19.577600pt;}
._11_c00053{width:20.473600pt;}
._c_c00053{width:21.920000pt;}
._e_c00053{width:23.456000pt;}
._8_c00053{width:24.377600pt;}
._d_c00053{width:35.980800pt;}
._0_c00053{width:1848.607733pt;}
.fs0_c00053{font-size:64.000000pt;}
.y0_c00053{bottom:0.000000pt;}
.y5_c00053{bottom:3.840000pt;}
.y1_c00053{bottom:16.666667pt;}
.y3_c00053{bottom:33.653360pt;}
.y4_c00053{bottom:46.480027pt;}
.y1e_c00053{bottom:113.013360pt;}
.y1d_c00053{bottom:149.813333pt;}
.y1c_c00053{bottom:186.613333pt;}
.y1b_c00053{bottom:223.413333pt;}
.y1a_c00053{bottom:260.213333pt;}
.y19_c00053{bottom:297.013333pt;}
.y18_c00053{bottom:333.813333pt;}
.y17_c00053{bottom:370.613333pt;}
.y16_c00053{bottom:407.413333pt;}
.y15_c00053{bottom:444.213333pt;}
.y14_c00053{bottom:481.013333pt;}
.y13_c00053{bottom:517.813333pt;}
.y12_c00053{bottom:554.613333pt;}
.y11_c00053{bottom:591.413333pt;}
.y10_c00053{bottom:628.213333pt;}
.yf_c00053{bottom:665.013333pt;}
.ye_c00053{bottom:701.813333pt;}
.yd_c00053{bottom:738.613333pt;}
.yc_c00053{bottom:775.413333pt;}
.yb_c00053{bottom:812.213333pt;}
.ya_c00053{bottom:849.013333pt;}
.y9_c00053{bottom:885.813333pt;}
.y8_c00053{bottom:922.613333pt;}
.y7_c00053{bottom:959.413333pt;}
.y6_c00053{bottom:996.213333pt;}
.y2_c00053{bottom:1043.253333pt;}
.h3_c00053{height:18.560000pt;}
.h2_c00053{height:57.375000pt;}
.h1_c00053{height:1089.333333pt;}
.h0_c00053{height:1122.666667pt;}
.w2_c00053{width:17.920000pt;}
.w1_c00053{width:760.000000pt;}
.w0_c00053{width:793.333333pt;}
.x0_c00053{left:0.000000pt;}
.x1_c00053{left:16.666667pt;}
.x2_c00053{left:97.279933pt;}
.x3_c00053{left:121.280000pt;}
.x5_c00053{left:135.080133pt;}
.x4_c00053{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2d5706a7fe865179391b5cf2.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.ls1_c00054{letter-spacing:0.000000px;}
.ls0_c00054{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00054{word-spacing:0.000000px;}
._9_c00054{margin-left:-1.009200px;}
._c_c00054{width:1.116000px;}
._4_c00054{width:3.535200px;}
._3_c00054{width:5.385600px;}
._6_c00054{width:6.724800px;}
._1_c00054{width:8.258400px;}
._7_c00054{width:9.525600px;}
._e_c00054{width:11.707200px;}
._2_c00054{width:12.938400px;}
._b_c00054{width:14.263200px;}
._d_c00054{width:16.696800px;}
._8_c00054{width:18.547200px;}
._10_c00054{width:21.974400px;}
._f_c00054{width:30.090000px;}
._5_c00054{width:31.140000px;}
._a_c00054{width:34.293600px;}
._0_c00054{width:1146.683400px;}
.fc1_c00054{color:transparent;}
.fc0_c00054{color:rgb(0,0,0);}
.fs0_c00054{font-size:72.000000px;}
.y0_c00054{bottom:0.000000px;}
.y4_c00054{bottom:4.320000px;}
.y1_c00054{bottom:18.750000px;}
.y2_c00054{bottom:37.860030px;}
.y3_c00054{bottom:52.290030px;}
.y1d_c00054{bottom:127.140030px;}
.y1c_c00054{bottom:168.540000px;}
.y1b_c00054{bottom:209.940000px;}
.y1a_c00054{bottom:251.340000px;}
.y19_c00054{bottom:292.740000px;}
.y18_c00054{bottom:334.140000px;}
.y17_c00054{bottom:375.540000px;}
.y16_c00054{bottom:416.940000px;}
.y15_c00054{bottom:458.340000px;}
.y14_c00054{bottom:499.740000px;}
.y13_c00054{bottom:541.140000px;}
.y12_c00054{bottom:582.540000px;}
.y11_c00054{bottom:623.940000px;}
.y10_c00054{bottom:665.340000px;}
.yf_c00054{bottom:706.740000px;}
.ye_c00054{bottom:748.140000px;}
.yd_c00054{bottom:789.540000px;}
.yc_c00054{bottom:830.940000px;}
.yb_c00054{bottom:872.340000px;}
.ya_c00054{bottom:913.740000px;}
.y9_c00054{bottom:955.140000px;}
.y8_c00054{bottom:996.540000px;}
.y7_c00054{bottom:1037.940000px;}
.y6_c00054{bottom:1079.340000px;}
.y5_c00054{bottom:1120.740000px;}
.h3_c00054{height:20.880000px;}
.h2_c00054{height:64.546875px;}
.h1_c00054{height:1225.500000px;}
.h0_c00054{height:1263.000000px;}
.w2_c00054{width:20.160000px;}
.w1_c00054{width:855.000000px;}
.w0_c00054{width:892.500000px;}
.x0_c00054{left:0.000000px;}
.x1_c00054{left:18.750000px;}
.x4_c00054{left:109.439925px;}
.x3_c00054{left:128.190000px;}
.x2_c00054{left:136.440000px;}
.x5_c00054{left:151.965150px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls1_c00054{letter-spacing:0.000000pt;}
.ls0_c00054{letter-spacing:0.012800pt;}
.ws0_c00054{word-spacing:-17.804800pt;}
.ws1_c00054{word-spacing:0.000000pt;}
._9_c00054{margin-left:-0.897067pt;}
._c_c00054{width:0.992000pt;}
._4_c00054{width:3.142400pt;}
._3_c00054{width:4.787200pt;}
._6_c00054{width:5.977600pt;}
._1_c00054{width:7.340800pt;}
._7_c00054{width:8.467200pt;}
._e_c00054{width:10.406400pt;}
._2_c00054{width:11.500800pt;}
._b_c00054{width:12.678400pt;}
._d_c00054{width:14.841600pt;}
._8_c00054{width:16.486400pt;}
._10_c00054{width:19.532800pt;}
._f_c00054{width:26.746667pt;}
._5_c00054{width:27.680000pt;}
._a_c00054{width:30.483200pt;}
._0_c00054{width:1019.274133pt;}
.fs0_c00054{font-size:64.000000pt;}
.y0_c00054{bottom:0.000000pt;}
.y4_c00054{bottom:3.840000pt;}
.y1_c00054{bottom:16.666667pt;}
.y2_c00054{bottom:33.653360pt;}
.y3_c00054{bottom:46.480027pt;}
.y1d_c00054{bottom:113.013360pt;}
.y1c_c00054{bottom:149.813333pt;}
.y1b_c00054{bottom:186.613333pt;}
.y1a_c00054{bottom:223.413333pt;}
.y19_c00054{bottom:260.213333pt;}
.y18_c00054{bottom:297.013333pt;}
.y17_c00054{bottom:333.813333pt;}
.y16_c00054{bottom:370.613333pt;}
.y15_c00054{bottom:407.413333pt;}
.y14_c00054{bottom:444.213333pt;}
.y13_c00054{bottom:481.013333pt;}
.y12_c00054{bottom:517.813333pt;}
.y11_c00054{bottom:554.613333pt;}
.y10_c00054{bottom:591.413333pt;}
.yf_c00054{bottom:628.213333pt;}
.ye_c00054{bottom:665.013333pt;}
.yd_c00054{bottom:701.813333pt;}
.yc_c00054{bottom:738.613333pt;}
.yb_c00054{bottom:775.413333pt;}
.ya_c00054{bottom:812.213333pt;}
.y9_c00054{bottom:849.013333pt;}
.y8_c00054{bottom:885.813333pt;}
.y7_c00054{bottom:922.613333pt;}
.y6_c00054{bottom:959.413333pt;}
.y5_c00054{bottom:996.213333pt;}
.h3_c00054{height:18.560000pt;}
.h2_c00054{height:57.375000pt;}
.h1_c00054{height:1089.333333pt;}
.h0_c00054{height:1122.666667pt;}
.w2_c00054{width:17.920000pt;}
.w1_c00054{width:760.000000pt;}
.w0_c00054{width:793.333333pt;}
.x0_c00054{left:0.000000pt;}
.x1_c00054{left:16.666667pt;}
.x4_c00054{left:97.279933pt;}
.x3_c00054{left:113.946667pt;}
.x2_c00054{left:121.280000pt;}
.x5_c00054{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38dac2501dbf9839a0ec9c2c.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00055;src:url('chunks/assets/font_33002270f02ef50caeb025e9.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:0.881836;font-style: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;}
.ls3_c00055{letter-spacing:0.000000px;}
.ls2_c00055{letter-spacing:0.014400px;}
.ls1_c00055{letter-spacing:0.618048px;}
.ls4_c00055{letter-spacing:0.719280px;}
.ls0_c00055{letter-spacing:0.977760px;}
.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:-20.030400px;}
.ws1_c00055{word-spacing:-15.429888px;}
.ws2_c00055{word-spacing:-0.072000px;}
.ws3_c00055{word-spacing:0.000000px;}
._2_c00055{margin-left:-2.267280px;}
._1_c00055{margin-left:-1.118880px;}
._3_c00055{width:1.180080px;}
._f_c00055{width:2.923200px;}
._10_c00055{width:3.952800px;}
._8_c00055{width:5.040000px;}
._7_c00055{width:6.170400px;}
._a_c00055{width:7.416000px;}
._5_c00055{width:9.165600px;}
._b_c00055{width:14.580000px;}
._6_c00055{width:15.724800px;}
._d_c00055{width:18.403200px;}
._11_c00055{width:21.391200px;}
._4_c00055{width:22.960800px;}
._12_c00055{width:25.965000px;}
._e_c00055{width:32.140800px;}
._9_c00055{width:37.836000px;}
._c_c00055{width:88.185600px;}
._0_c00055{width:2079.683700px;}
.fc1_c00055{color:transparent;}
.fc0_c00055{color:rgb(0,0,0);}
.fs1_c00055{font-size:53.280000px;}
.fs0_c00055{font-size:72.000000px;}
.y0_c00055{bottom:0.000000px;}
.y5_c00055{bottom:4.320000px;}
.y7_c00055{bottom:11.160000px;}
.y1_c00055{bottom:18.750000px;}
.y3_c00055{bottom:37.860030px;}
.y4_c00055{bottom:52.290030px;}
.y20_c00055{bottom:116.700030px;}
.y1f_c00055{bottom:168.540000px;}
.y1e_c00055{bottom:209.940000px;}
.y1d_c00055{bottom:251.340000px;}
.y1c_c00055{bottom:292.740000px;}
.y1b_c00055{bottom:334.140000px;}
.y1a_c00055{bottom:375.540000px;}
.y19_c00055{bottom:416.940000px;}
.y18_c00055{bottom:458.340000px;}
.y17_c00055{bottom:499.740000px;}
.y16_c00055{bottom:541.140000px;}
.y6_c00055{bottom:574.455000px;}
.y15_c00055{bottom:582.540000px;}
.y14_c00055{bottom:623.940000px;}
.y13_c00055{bottom:665.340000px;}
.y12_c00055{bottom:706.740000px;}
.y11_c00055{bottom:748.140000px;}
.y10_c00055{bottom:789.540000px;}
.yf_c00055{bottom:830.940000px;}
.ye_c00055{bottom:872.340000px;}
.yd_c00055{bottom:913.740000px;}
.yc_c00055{bottom:955.140000px;}
.yb_c00055{bottom:996.540000px;}
.ya_c00055{bottom:1037.940000px;}
.y9_c00055{bottom:1079.340000px;}
.y8_c00055{bottom:1120.740000px;}
.y2_c00055{bottom:1173.660000px;}
.h3_c00055{height:20.880000px;}
.h4_c00055{height:23.760000px;}
.h5_c00055{height:47.764688px;}
.h2_c00055{height:64.546875px;}
.h1_c00055{height:1225.500000px;}
.h0_c00055{height:1263.000000px;}
.w2_c00055{width:20.160000px;}
.w3_c00055{width:185.040000px;}
.w1_c00055{width:855.000000px;}
.w0_c00055{width:892.500000px;}
.x0_c00055{left:0.000000px;}
.x6_c00055{left:10.800000px;}
.x1_c00055{left:18.750000px;}
.x2_c00055{left:109.439925px;}
.x3_c00055{left:136.440000px;}
.x7_c00055{left:151.965150px;}
.x5_c00055{left:594.900000px;}
.x4_c00055{left:745.590000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls3_c00055{letter-spacing:0.000000pt;}
.ls2_c00055{letter-spacing:0.012800pt;}
.ls1_c00055{letter-spacing:0.549376pt;}
.ls4_c00055{letter-spacing:0.639360pt;}
.ls0_c00055{letter-spacing:0.869120pt;}
.ws0_c00055{word-spacing:-17.804800pt;}
.ws1_c00055{word-spacing:-13.715456pt;}
.ws2_c00055{word-spacing:-0.064000pt;}
.ws3_c00055{word-spacing:0.000000pt;}
._2_c00055{margin-left:-2.015360pt;}
._1_c00055{margin-left:-0.994560pt;}
._3_c00055{width:1.048960pt;}
._f_c00055{width:2.598400pt;}
._10_c00055{width:3.513600pt;}
._8_c00055{width:4.480000pt;}
._7_c00055{width:5.484800pt;}
._a_c00055{width:6.592000pt;}
._5_c00055{width:8.147200pt;}
._b_c00055{width:12.960000pt;}
._6_c00055{width:13.977600pt;}
._d_c00055{width:16.358400pt;}
._11_c00055{width:19.014400pt;}
._4_c00055{width:20.409600pt;}
._12_c00055{width:23.080000pt;}
._e_c00055{width:28.569600pt;}
._9_c00055{width:33.632000pt;}
._c_c00055{width:78.387200pt;}
._0_c00055{width:1848.607733pt;}
.fs1_c00055{font-size:47.360000pt;}
.fs0_c00055{font-size:64.000000pt;}
.y0_c00055{bottom:0.000000pt;}
.y5_c00055{bottom:3.840000pt;}
.y7_c00055{bottom:9.920000pt;}
.y1_c00055{bottom:16.666667pt;}
.y3_c00055{bottom:33.653360pt;}
.y4_c00055{bottom:46.480027pt;}
.y20_c00055{bottom:103.733360pt;}
.y1f_c00055{bottom:149.813333pt;}
.y1e_c00055{bottom:186.613333pt;}
.y1d_c00055{bottom:223.413333pt;}
.y1c_c00055{bottom:260.213333pt;}
.y1b_c00055{bottom:297.013333pt;}
.y1a_c00055{bottom:333.813333pt;}
.y19_c00055{bottom:370.613333pt;}
.y18_c00055{bottom:407.413333pt;}
.y17_c00055{bottom:444.213333pt;}
.y16_c00055{bottom:481.013333pt;}
.y6_c00055{bottom:510.626667pt;}
.y15_c00055{bottom:517.813333pt;}
.y14_c00055{bottom:554.613333pt;}
.y13_c00055{bottom:591.413333pt;}
.y12_c00055{bottom:628.213333pt;}
.y11_c00055{bottom:665.013333pt;}
.y10_c00055{bottom:701.813333pt;}
.yf_c00055{bottom:738.613333pt;}
.ye_c00055{bottom:775.413333pt;}
.yd_c00055{bottom:812.213333pt;}
.yc_c00055{bottom:849.013333pt;}
.yb_c00055{bottom:885.813333pt;}
.ya_c00055{bottom:922.613333pt;}
.y9_c00055{bottom:959.413333pt;}
.y8_c00055{bottom:996.213333pt;}
.y2_c00055{bottom:1043.253333pt;}
.h3_c00055{height:18.560000pt;}
.h4_c00055{height:21.120000pt;}
.h5_c00055{height:42.457500pt;}
.h2_c00055{height:57.375000pt;}
.h1_c00055{height:1089.333333pt;}
.h0_c00055{height:1122.666667pt;}
.w2_c00055{width:17.920000pt;}
.w3_c00055{width:164.480000pt;}
.w1_c00055{width:760.000000pt;}
.w0_c00055{width:793.333333pt;}
.x0_c00055{left:0.000000pt;}
.x6_c00055{left:9.600000pt;}
.x1_c00055{left:16.666667pt;}
.x2_c00055{left:97.279933pt;}
.x3_c00055{left:121.280000pt;}
.x7_c00055{left:135.080133pt;}
.x5_c00055{left:528.800000pt;}
.x4_c00055{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_fac8c1d045bd203c4220ef38.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00056;src:url('chunks/assets/font_33002270f02ef50caeb025e9.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.ls3_c00056{letter-spacing:0.000000px;}
.ls0_c00056{letter-spacing:0.014400px;}
.ls1_c00056{letter-spacing:0.240360px;}
.ls2_c00056{letter-spacing:0.410256px;}
.ls4_c00056{letter-spacing:0.479520px;}
.sc__c00056{text-shadow:none;}
.sc0_c00056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00056{-webkit-text-stroke:0px transparent;}
.sc0_c00056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00056{word-spacing:-20.030400px;}
.ws2_c00056{word-spacing:-15.222096px;}
.ws1_c00056{word-spacing:-0.072000px;}
.ws3_c00056{word-spacing:0.000000px;}
._8_c00056{margin-left:-1.225440px;}
._2_c00056{width:1.051200px;}
._6_c00056{width:3.794400px;}
._4_c00056{width:6.012000px;}
._3_c00056{width:13.161600px;}
._7_c00056{width:16.963200px;}
._1_c00056{width:32.049000px;}
._5_c00056{width:36.446400px;}
._0_c00056{width:1146.683400px;}
.fc1_c00056{color:transparent;}
.fc0_c00056{color:rgb(0,0,0);}
.fs1_c00056{font-size:53.280000px;}
.fs0_c00056{font-size:72.000000px;}
.y0_c00056{bottom:0.000000px;}
.y4_c00056{bottom:4.320000px;}
.y1_c00056{bottom:18.750000px;}
.y2_c00056{bottom:37.860030px;}
.y3_c00056{bottom:52.290030px;}
.y17_c00056{bottom:99.780030px;}
.y16_c00056{bottom:112.380015px;}
.y15_c00056{bottom:438.180000px;}
.y14_c00056{bottom:479.580000px;}
.y13_c00056{bottom:520.980000px;}
.y12_c00056{bottom:571.380000px;}
.y11_c00056{bottom:614.220000px;}
.y10_c00056{bottom:655.260000px;}
.yf_c00056{bottom:697.740000px;}
.ye_c00056{bottom:740.580000px;}
.yd_c00056{bottom:783.420000px;}
.yc_c00056{bottom:824.460000px;}
.yb_c00056{bottom:867.300000px;}
.ya_c00056{bottom:909.780000px;}
.y9_c00056{bottom:952.620000px;}
.y8_c00056{bottom:993.660000px;}
.y7_c00056{bottom:1036.500000px;}
.y6_c00056{bottom:1077.900000px;}
.y5_c00056{bottom:1120.740000px;}
.h3_c00056{height:20.880000px;}
.h4_c00056{height:47.764688px;}
.h2_c00056{height:64.546875px;}
.h1_c00056{height:1225.500000px;}
.h0_c00056{height:1263.000000px;}
.w2_c00056{width:20.160000px;}
.w1_c00056{width:855.000000px;}
.w0_c00056{width:892.500000px;}
.x0_c00056{left:0.000000px;}
.x1_c00056{left:18.750000px;}
.x6_c00056{left:109.439925px;}
.x3_c00056{left:128.190000px;}
.x2_c00056{left:136.440000px;}
.x5_c00056{left:151.965150px;}
.x4_c00056{left:173.265000px;}
.x8_c00056{left:369.451800px;}
.x7_c00056{left:550.177350px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls3_c00056{letter-spacing:0.000000pt;}
.ls0_c00056{letter-spacing:0.012800pt;}
.ls1_c00056{letter-spacing:0.213653pt;}
.ls2_c00056{letter-spacing:0.364672pt;}
.ls4_c00056{letter-spacing:0.426240pt;}
.ws0_c00056{word-spacing:-17.804800pt;}
.ws2_c00056{word-spacing:-13.530752pt;}
.ws1_c00056{word-spacing:-0.064000pt;}
.ws3_c00056{word-spacing:0.000000pt;}
._8_c00056{margin-left:-1.089280pt;}
._2_c00056{width:0.934400pt;}
._6_c00056{width:3.372800pt;}
._4_c00056{width:5.344000pt;}
._3_c00056{width:11.699200pt;}
._7_c00056{width:15.078400pt;}
._1_c00056{width:28.488000pt;}
._5_c00056{width:32.396800pt;}
._0_c00056{width:1019.274133pt;}
.fs1_c00056{font-size:47.360000pt;}
.fs0_c00056{font-size:64.000000pt;}
.y0_c00056{bottom:0.000000pt;}
.y4_c00056{bottom:3.840000pt;}
.y1_c00056{bottom:16.666667pt;}
.y2_c00056{bottom:33.653360pt;}
.y3_c00056{bottom:46.480027pt;}
.y17_c00056{bottom:88.693360pt;}
.y16_c00056{bottom:99.893347pt;}
.y15_c00056{bottom:389.493333pt;}
.y14_c00056{bottom:426.293333pt;}
.y13_c00056{bottom:463.093333pt;}
.y12_c00056{bottom:507.893333pt;}
.y11_c00056{bottom:545.973333pt;}
.y10_c00056{bottom:582.453333pt;}
.yf_c00056{bottom:620.213333pt;}
.ye_c00056{bottom:658.293333pt;}
.yd_c00056{bottom:696.373333pt;}
.yc_c00056{bottom:732.853333pt;}
.yb_c00056{bottom:770.933333pt;}
.ya_c00056{bottom:808.693333pt;}
.y9_c00056{bottom:846.773333pt;}
.y8_c00056{bottom:883.253333pt;}
.y7_c00056{bottom:921.333333pt;}
.y6_c00056{bottom:958.133333pt;}
.y5_c00056{bottom:996.213333pt;}
.h3_c00056{height:18.560000pt;}
.h4_c00056{height:42.457500pt;}
.h2_c00056{height:57.375000pt;}
.h1_c00056{height:1089.333333pt;}
.h0_c00056{height:1122.666667pt;}
.w2_c00056{width:17.920000pt;}
.w1_c00056{width:760.000000pt;}
.w0_c00056{width:793.333333pt;}
.x0_c00056{left:0.000000pt;}
.x1_c00056{left:16.666667pt;}
.x6_c00056{left:97.279933pt;}
.x3_c00056{left:113.946667pt;}
.x2_c00056{left:121.280000pt;}
.x5_c00056{left:135.080133pt;}
.x4_c00056{left:154.013333pt;}
.x8_c00056{left:328.401600pt;}
.x7_c00056{left:489.046533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_57e01e5369651d48bdfbc106.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00057;src:url('chunks/assets/font_33002270f02ef50caeb025e9.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00057;src:url('chunks/assets/font_8138b0eff853cffeb7660820.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:0.869629;font-style: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;}
.ls3_c00057{letter-spacing:0.000000px;}
.ls1_c00057{letter-spacing:0.000600px;}
.ls2_c00057{letter-spacing:0.014400px;}
.ls5_c00057{letter-spacing:0.036000px;}
.ls4_c00057{letter-spacing:0.255744px;}
.ls0_c00057{letter-spacing:52.056000px;}
.sc__c00057{text-shadow:none;}
.sc0_c00057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00057{-webkit-text-stroke:0px transparent;}
.sc0_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00057{word-spacing:0.000000px;}
._1_c00057{margin-left:-1.385280px;}
._0_c00057{width:1.118880px;}
._6_c00057{width:2.949120px;}
._9_c00057{width:7.221600px;}
._2_c00057{width:8.344800px;}
._c_c00057{width:9.468000px;}
._e_c00057{width:13.134024px;}
._5_c00057{width:16.344000px;}
._8_c00057{width:22.003200px;}
._a_c00057{width:23.947200px;}
._b_c00057{width:24.962400px;}
._3_c00057{width:28.015200px;}
._4_c00057{width:34.768800px;}
._d_c00057{width:36.669600px;}
._7_c00057{width:49.672800px;}
.fc1_c00057{color:transparent;}
.fc0_c00057{color:rgb(0,0,0);}
.fs1_c00057{font-size:53.280000px;}
.fs0_c00057{font-size:72.000000px;}
.y0_c00057{bottom:0.000000px;}
.y2_c00057{bottom:4.320000px;}
.y4_c00057{bottom:18.360000px;}
.y5_c00057{bottom:18.750000px;}
.y1_c00057{bottom:52.290000px;}
.y1e_c00057{bottom:133.959000px;}
.y1d_c00057{bottom:175.359000px;}
.y1c_c00057{bottom:216.759000px;}
.y1b_c00057{bottom:258.159000px;}
.y1a_c00057{bottom:287.700000px;}
.y19_c00057{bottom:329.100000px;}
.y18_c00057{bottom:370.500000px;}
.y17_c00057{bottom:413.340000px;}
.y16_c00057{bottom:454.380000px;}
.y15_c00057{bottom:497.220000px;}
.y14_c00057{bottom:538.260000px;}
.y13_c00057{bottom:581.100000px;}
.y12_c00057{bottom:623.940000px;}
.y11_c00057{bottom:665.340000px;}
.y10_c00057{bottom:706.740000px;}
.y3_c00057{bottom:745.890000px;}
.yf_c00057{bottom:748.140000px;}
.ye_c00057{bottom:789.540000px;}
.yd_c00057{bottom:830.940000px;}
.yc_c00057{bottom:872.340000px;}
.yb_c00057{bottom:913.740000px;}
.ya_c00057{bottom:955.140000px;}
.y9_c00057{bottom:996.540000px;}
.y8_c00057{bottom:1037.940000px;}
.y7_c00057{bottom:1079.340000px;}
.y6_c00057{bottom:1120.740000px;}
.h1_c00057{height:20.880000px;}
.h3_c00057{height:30.960000px;}
.h4_c00057{height:47.764688px;}
.h2_c00057{height:64.546875px;}
.h5_c00057{height:1225.500000px;}
.h0_c00057{height:1263.000000px;}
.w1_c00057{width:20.160000px;}
.w2_c00057{width:181.080000px;}
.w3_c00057{width:855.000000px;}
.w0_c00057{width:892.500000px;}
.x0_c00057{left:0.000000px;}
.x3_c00057{left:12.600000px;}
.x4_c00057{left:18.750000px;}
.x6_c00057{left:109.431150px;}
.x9_c00057{left:128.190000px;}
.x5_c00057{left:151.965150px;}
.x8_c00057{left:170.715000px;}
.x7_c00057{left:173.259150px;}
.x2_c00057{left:570.510000px;}
.x1_c00057{left:745.590000px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls3_c00057{letter-spacing:0.000000pt;}
.ls1_c00057{letter-spacing:0.000533pt;}
.ls2_c00057{letter-spacing:0.012800pt;}
.ls5_c00057{letter-spacing:0.032000pt;}
.ls4_c00057{letter-spacing:0.227328pt;}
.ls0_c00057{letter-spacing:46.272000pt;}
.ws0_c00057{word-spacing:0.000000pt;}
._1_c00057{margin-left:-1.231360pt;}
._0_c00057{width:0.994560pt;}
._6_c00057{width:2.621440pt;}
._9_c00057{width:6.419200pt;}
._2_c00057{width:7.417600pt;}
._c_c00057{width:8.416000pt;}
._e_c00057{width:11.674688pt;}
._5_c00057{width:14.528000pt;}
._8_c00057{width:19.558400pt;}
._a_c00057{width:21.286400pt;}
._b_c00057{width:22.188800pt;}
._3_c00057{width:24.902400pt;}
._4_c00057{width:30.905600pt;}
._d_c00057{width:32.595200pt;}
._7_c00057{width:44.153600pt;}
.fs1_c00057{font-size:47.360000pt;}
.fs0_c00057{font-size:64.000000pt;}
.y0_c00057{bottom:0.000000pt;}
.y2_c00057{bottom:3.840000pt;}
.y4_c00057{bottom:16.320000pt;}
.y5_c00057{bottom:16.666667pt;}
.y1_c00057{bottom:46.480000pt;}
.y1e_c00057{bottom:119.074667pt;}
.y1d_c00057{bottom:155.874667pt;}
.y1c_c00057{bottom:192.674667pt;}
.y1b_c00057{bottom:229.474667pt;}
.y1a_c00057{bottom:255.733333pt;}
.y19_c00057{bottom:292.533333pt;}
.y18_c00057{bottom:329.333333pt;}
.y17_c00057{bottom:367.413333pt;}
.y16_c00057{bottom:403.893333pt;}
.y15_c00057{bottom:441.973333pt;}
.y14_c00057{bottom:478.453333pt;}
.y13_c00057{bottom:516.533333pt;}
.y12_c00057{bottom:554.613333pt;}
.y11_c00057{bottom:591.413333pt;}
.y10_c00057{bottom:628.213333pt;}
.y3_c00057{bottom:663.013333pt;}
.yf_c00057{bottom:665.013333pt;}
.ye_c00057{bottom:701.813333pt;}
.yd_c00057{bottom:738.613333pt;}
.yc_c00057{bottom:775.413333pt;}
.yb_c00057{bottom:812.213333pt;}
.ya_c00057{bottom:849.013333pt;}
.y9_c00057{bottom:885.813333pt;}
.y8_c00057{bottom:922.613333pt;}
.y7_c00057{bottom:959.413333pt;}
.y6_c00057{bottom:996.213333pt;}
.h1_c00057{height:18.560000pt;}
.h3_c00057{height:27.520000pt;}
.h4_c00057{height:42.457500pt;}
.h2_c00057{height:57.375000pt;}
.h5_c00057{height:1089.333333pt;}
.h0_c00057{height:1122.666667pt;}
.w1_c00057{width:17.920000pt;}
.w2_c00057{width:160.960000pt;}
.w3_c00057{width:760.000000pt;}
.w0_c00057{width:793.333333pt;}
.x0_c00057{left:0.000000pt;}
.x3_c00057{left:11.200000pt;}
.x4_c00057{left:16.666667pt;}
.x6_c00057{left:97.272133pt;}
.x9_c00057{left:113.946667pt;}
.x5_c00057{left:135.080133pt;}
.x8_c00057{left:151.746667pt;}
.x7_c00057{left:154.008133pt;}
.x2_c00057{left:507.120000pt;}
.x1_c00057{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_481c805e0bffe20c4b0ba8fc.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00058;src:url('chunks/assets/font_33002270f02ef50caeb025e9.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00058{vertical-align:0.000000px;}
.ls1_c00058{letter-spacing:0.000000px;}
.ls0_c00058{letter-spacing:0.014400px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00058{word-spacing:-20.030400px;}
.ws1_c00058{word-spacing:-0.072000px;}
.ws2_c00058{word-spacing:0.000000px;}
._b_c00058{width:1.008000px;}
._4_c00058{width:2.224800px;}
._6_c00058{width:3.859200px;}
._c_c00058{width:5.392800px;}
._2_c00058{width:6.400800px;}
._d_c00058{width:8.344800px;}
._5_c00058{width:10.706400px;}
._9_c00058{width:12.895200px;}
._a_c00058{width:14.076000px;}
._3_c00058{width:23.659200px;}
._7_c00058{width:25.315200px;}
._e_c00058{width:27.633600px;}
._1_c00058{width:32.063400px;}
._f_c00058{width:39.427200px;}
._8_c00058{width:63.540000px;}
._0_c00058{width:1146.683400px;}
.fc1_c00058{color:transparent;}
.fc0_c00058{color:rgb(0,0,0);}
.fs0_c00058{font-size:72.000000px;}
.y0_c00058{bottom:0.000000px;}
.y4_c00058{bottom:4.320000px;}
.y1_c00058{bottom:18.750000px;}
.y2_c00058{bottom:37.860030px;}
.y3_c00058{bottom:52.290030px;}
.y1d_c00058{bottom:100.500030px;}
.y1c_c00058{bottom:141.900000px;}
.y1b_c00058{bottom:184.740000px;}
.y1a_c00058{bottom:226.140000px;}
.y19_c00058{bottom:267.180000px;}
.y18_c00058{bottom:310.020000px;}
.y17_c00058{bottom:351.420000px;}
.y16_c00058{bottom:392.460000px;}
.y15_c00058{bottom:444.300000px;}
.y14_c00058{bottom:485.700000px;}
.y13_c00058{bottom:536.100000px;}
.y12_c00058{bottom:577.500000px;}
.y11_c00058{bottom:618.900000px;}
.y10_c00058{bottom:660.300000px;}
.yf_c00058{bottom:701.700000px;}
.ye_c00058{bottom:744.540000px;}
.yd_c00058{bottom:785.940000px;}
.yc_c00058{bottom:827.340000px;}
.yb_c00058{bottom:868.740000px;}
.ya_c00058{bottom:909.780000px;}
.y9_c00058{bottom:952.620000px;}
.y8_c00058{bottom:993.660000px;}
.y7_c00058{bottom:1036.500000px;}
.y6_c00058{bottom:1077.900000px;}
.y5_c00058{bottom:1119.300000px;}
.h3_c00058{height:20.880000px;}
.h2_c00058{height:64.546875px;}
.h1_c00058{height:1225.500000px;}
.h0_c00058{height:1263.000000px;}
.w2_c00058{width:20.160000px;}
.w1_c00058{width:855.000000px;}
.w0_c00058{width:892.500000px;}
.x0_c00058{left:0.000000px;}
.x1_c00058{left:18.750000px;}
.x6_c00058{left:109.439925px;}
.x3_c00058{left:128.190000px;}
.x2_c00058{left:136.440000px;}
.x4_c00058{left:151.965150px;}
.x5_c00058{left:173.265000px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls1_c00058{letter-spacing:0.000000pt;}
.ls0_c00058{letter-spacing:0.012800pt;}
.ws0_c00058{word-spacing:-17.804800pt;}
.ws1_c00058{word-spacing:-0.064000pt;}
.ws2_c00058{word-spacing:0.000000pt;}
._b_c00058{width:0.896000pt;}
._4_c00058{width:1.977600pt;}
._6_c00058{width:3.430400pt;}
._c_c00058{width:4.793600pt;}
._2_c00058{width:5.689600pt;}
._d_c00058{width:7.417600pt;}
._5_c00058{width:9.516800pt;}
._9_c00058{width:11.462400pt;}
._a_c00058{width:12.512000pt;}
._3_c00058{width:21.030400pt;}
._7_c00058{width:22.502400pt;}
._e_c00058{width:24.563200pt;}
._1_c00058{width:28.500800pt;}
._f_c00058{width:35.046400pt;}
._8_c00058{width:56.480000pt;}
._0_c00058{width:1019.274133pt;}
.fs0_c00058{font-size:64.000000pt;}
.y0_c00058{bottom:0.000000pt;}
.y4_c00058{bottom:3.840000pt;}
.y1_c00058{bottom:16.666667pt;}
.y2_c00058{bottom:33.653360pt;}
.y3_c00058{bottom:46.480027pt;}
.y1d_c00058{bottom:89.333360pt;}
.y1c_c00058{bottom:126.133333pt;}
.y1b_c00058{bottom:164.213333pt;}
.y1a_c00058{bottom:201.013333pt;}
.y19_c00058{bottom:237.493333pt;}
.y18_c00058{bottom:275.573333pt;}
.y17_c00058{bottom:312.373333pt;}
.y16_c00058{bottom:348.853333pt;}
.y15_c00058{bottom:394.933333pt;}
.y14_c00058{bottom:431.733333pt;}
.y13_c00058{bottom:476.533333pt;}
.y12_c00058{bottom:513.333333pt;}
.y11_c00058{bottom:550.133333pt;}
.y10_c00058{bottom:586.933333pt;}
.yf_c00058{bottom:623.733333pt;}
.ye_c00058{bottom:661.813333pt;}
.yd_c00058{bottom:698.613333pt;}
.yc_c00058{bottom:735.413333pt;}
.yb_c00058{bottom:772.213333pt;}
.ya_c00058{bottom:808.693333pt;}
.y9_c00058{bottom:846.773333pt;}
.y8_c00058{bottom:883.253333pt;}
.y7_c00058{bottom:921.333333pt;}
.y6_c00058{bottom:958.133333pt;}
.y5_c00058{bottom:994.933333pt;}
.h3_c00058{height:18.560000pt;}
.h2_c00058{height:57.375000pt;}
.h1_c00058{height:1089.333333pt;}
.h0_c00058{height:1122.666667pt;}
.w2_c00058{width:17.920000pt;}
.w1_c00058{width:760.000000pt;}
.w0_c00058{width:793.333333pt;}
.x0_c00058{left:0.000000pt;}
.x1_c00058{left:16.666667pt;}
.x6_c00058{left:97.279933pt;}
.x3_c00058{left:113.946667pt;}
.x2_c00058{left:121.280000pt;}
.x4_c00058{left:135.080133pt;}
.x5_c00058{left:154.013333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_936d121d4c7d3e9e1eeda76e.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00059{letter-spacing:-0.014400px;}
.ls1_c00059{letter-spacing:0.000000px;}
.ls0_c00059{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00059{word-spacing:0.000000px;}
._f_c00059{width:1.195200px;}
._6_c00059{width:3.513600px;}
._a_c00059{width:4.550400px;}
._5_c00059{width:7.725000px;}
._11_c00059{width:10.130400px;}
._d_c00059{width:12.607200px;}
._10_c00059{width:13.903200px;}
._3_c00059{width:16.365600px;}
._e_c00059{width:17.373600px;}
._4_c00059{width:19.000800px;}
._c_c00059{width:21.081600px;}
._1_c00059{width:22.528800px;}
._9_c00059{width:29.239200px;}
._8_c00059{width:33.040800px;}
._b_c00059{width:34.228800px;}
._2_c00059{width:38.620800px;}
._7_c00059{width:43.977600px;}
._0_c00059{width:2079.683700px;}
.fc1_c00059{color:transparent;}
.fc0_c00059{color:rgb(0,0,0);}
.fs0_c00059{font-size:72.000000px;}
.y0_c00059{bottom:0.000000px;}
.y5_c00059{bottom:4.320000px;}
.y1_c00059{bottom:18.750000px;}
.y3_c00059{bottom:37.860030px;}
.y4_c00059{bottom:52.290030px;}
.y1e_c00059{bottom:118.140030px;}
.y1d_c00059{bottom:159.540000px;}
.y1c_c00059{bottom:200.940000px;}
.y1b_c00059{bottom:242.340000px;}
.y1a_c00059{bottom:283.740000px;}
.y19_c00059{bottom:325.140000px;}
.y18_c00059{bottom:366.540000px;}
.y17_c00059{bottom:407.940000px;}
.y16_c00059{bottom:449.340000px;}
.y15_c00059{bottom:490.740000px;}
.y14_c00059{bottom:532.140000px;}
.y13_c00059{bottom:573.540000px;}
.y12_c00059{bottom:614.940000px;}
.y11_c00059{bottom:656.340000px;}
.y10_c00059{bottom:697.740000px;}
.yf_c00059{bottom:739.140000px;}
.ye_c00059{bottom:780.540000px;}
.yd_c00059{bottom:821.940000px;}
.yc_c00059{bottom:863.340000px;}
.yb_c00059{bottom:904.740000px;}
.ya_c00059{bottom:946.140000px;}
.y9_c00059{bottom:987.540000px;}
.y8_c00059{bottom:1028.940000px;}
.y7_c00059{bottom:1079.340000px;}
.y6_c00059{bottom:1120.740000px;}
.y2_c00059{bottom:1173.660000px;}
.h3_c00059{height:20.880000px;}
.h2_c00059{height:64.546875px;}
.h1_c00059{height:1225.500000px;}
.h0_c00059{height:1263.000000px;}
.w2_c00059{width:20.160000px;}
.w1_c00059{width:855.000000px;}
.w0_c00059{width:892.500000px;}
.x0_c00059{left:0.000000px;}
.x1_c00059{left:18.750000px;}
.x2_c00059{left:109.439925px;}
.x3_c00059{left:136.440000px;}
.x6_c00059{left:151.965150px;}
.x5_c00059{left:173.265000px;}
.x4_c00059{left:745.590000px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls2_c00059{letter-spacing:-0.012800pt;}
.ls1_c00059{letter-spacing:0.000000pt;}
.ls0_c00059{letter-spacing:0.012800pt;}
.ws0_c00059{word-spacing:-17.804800pt;}
.ws1_c00059{word-spacing:0.000000pt;}
._f_c00059{width:1.062400pt;}
._6_c00059{width:3.123200pt;}
._a_c00059{width:4.044800pt;}
._5_c00059{width:6.866667pt;}
._11_c00059{width:9.004800pt;}
._d_c00059{width:11.206400pt;}
._10_c00059{width:12.358400pt;}
._3_c00059{width:14.547200pt;}
._e_c00059{width:15.443200pt;}
._4_c00059{width:16.889600pt;}
._c_c00059{width:18.739200pt;}
._1_c00059{width:20.025600pt;}
._9_c00059{width:25.990400pt;}
._8_c00059{width:29.369600pt;}
._b_c00059{width:30.425600pt;}
._2_c00059{width:34.329600pt;}
._7_c00059{width:39.091200pt;}
._0_c00059{width:1848.607733pt;}
.fs0_c00059{font-size:64.000000pt;}
.y0_c00059{bottom:0.000000pt;}
.y5_c00059{bottom:3.840000pt;}
.y1_c00059{bottom:16.666667pt;}
.y3_c00059{bottom:33.653360pt;}
.y4_c00059{bottom:46.480027pt;}
.y1e_c00059{bottom:105.013360pt;}
.y1d_c00059{bottom:141.813333pt;}
.y1c_c00059{bottom:178.613333pt;}
.y1b_c00059{bottom:215.413333pt;}
.y1a_c00059{bottom:252.213333pt;}
.y19_c00059{bottom:289.013333pt;}
.y18_c00059{bottom:325.813333pt;}
.y17_c00059{bottom:362.613333pt;}
.y16_c00059{bottom:399.413333pt;}
.y15_c00059{bottom:436.213333pt;}
.y14_c00059{bottom:473.013333pt;}
.y13_c00059{bottom:509.813333pt;}
.y12_c00059{bottom:546.613333pt;}
.y11_c00059{bottom:583.413333pt;}
.y10_c00059{bottom:620.213333pt;}
.yf_c00059{bottom:657.013333pt;}
.ye_c00059{bottom:693.813333pt;}
.yd_c00059{bottom:730.613333pt;}
.yc_c00059{bottom:767.413333pt;}
.yb_c00059{bottom:804.213333pt;}
.ya_c00059{bottom:841.013333pt;}
.y9_c00059{bottom:877.813333pt;}
.y8_c00059{bottom:914.613333pt;}
.y7_c00059{bottom:959.413333pt;}
.y6_c00059{bottom:996.213333pt;}
.y2_c00059{bottom:1043.253333pt;}
.h3_c00059{height:18.560000pt;}
.h2_c00059{height:57.375000pt;}
.h1_c00059{height:1089.333333pt;}
.h0_c00059{height:1122.666667pt;}
.w2_c00059{width:17.920000pt;}
.w1_c00059{width:760.000000pt;}
.w0_c00059{width:793.333333pt;}
.x0_c00059{left:0.000000pt;}
.x1_c00059{left:16.666667pt;}
.x2_c00059{left:97.279933pt;}
.x3_c00059{left:121.280000pt;}
.x6_c00059{left:135.080133pt;}
.x5_c00059{left:154.013333pt;}
.x4_c00059{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_225ba9d9f75d0fbf14d5b397.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls1_c00060{letter-spacing:0.000000px;}
.ls0_c00060{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00060{word-spacing:0.000000px;}
._5_c00060{width:1.000800px;}
._e_c00060{width:2.037600px;}
._4_c00060{width:3.240000px;}
._3_c00060{width:5.162400px;}
._c_c00060{width:7.346400px;}
._6_c00060{width:8.575200px;}
._d_c00060{width:11.424300px;}
._1_c00060{width:12.470400px;}
._a_c00060{width:13.779600px;}
._b_c00060{width:15.615000px;}
._9_c00060{width:17.136000px;}
._7_c00060{width:18.403200px;}
._8_c00060{width:21.088800px;}
._2_c00060{width:47.691600px;}
._0_c00060{width:1146.683400px;}
.fc1_c00060{color:transparent;}
.fc0_c00060{color:rgb(0,0,0);}
.fs0_c00060{font-size:72.000000px;}
.y0_c00060{bottom:0.000000px;}
.y4_c00060{bottom:4.320000px;}
.y1_c00060{bottom:18.750000px;}
.y2_c00060{bottom:37.860030px;}
.y3_c00060{bottom:52.290030px;}
.y1d_c00060{bottom:109.140030px;}
.y1c_c00060{bottom:150.540000px;}
.y1b_c00060{bottom:191.940000px;}
.y1a_c00060{bottom:233.340000px;}
.y19_c00060{bottom:283.740000px;}
.y18_c00060{bottom:325.140000px;}
.y17_c00060{bottom:366.540000px;}
.y16_c00060{bottom:407.940000px;}
.y15_c00060{bottom:449.340000px;}
.y14_c00060{bottom:490.740000px;}
.y13_c00060{bottom:532.140000px;}
.y12_c00060{bottom:573.540000px;}
.y11_c00060{bottom:614.940000px;}
.y10_c00060{bottom:656.340000px;}
.yf_c00060{bottom:697.740000px;}
.ye_c00060{bottom:739.140000px;}
.yd_c00060{bottom:780.540000px;}
.yc_c00060{bottom:821.940000px;}
.yb_c00060{bottom:863.340000px;}
.ya_c00060{bottom:904.740000px;}
.y9_c00060{bottom:946.140000px;}
.y8_c00060{bottom:987.540000px;}
.y7_c00060{bottom:1028.940000px;}
.y6_c00060{bottom:1079.340000px;}
.y5_c00060{bottom:1120.740000px;}
.h3_c00060{height:20.880000px;}
.h2_c00060{height:64.546875px;}
.h1_c00060{height:1225.500000px;}
.h0_c00060{height:1263.000000px;}
.w2_c00060{width:20.160000px;}
.w1_c00060{width:855.000000px;}
.w0_c00060{width:892.500000px;}
.x0_c00060{left:0.000000px;}
.x1_c00060{left:18.750000px;}
.x5_c00060{left:109.439925px;}
.x3_c00060{left:128.190000px;}
.x2_c00060{left:136.440000px;}
.x4_c00060{left:151.965150px;}
.x6_c00060{left:183.914850px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls1_c00060{letter-spacing:0.000000pt;}
.ls0_c00060{letter-spacing:0.012800pt;}
.ws0_c00060{word-spacing:-17.804800pt;}
.ws1_c00060{word-spacing:0.000000pt;}
._5_c00060{width:0.889600pt;}
._e_c00060{width:1.811200pt;}
._4_c00060{width:2.880000pt;}
._3_c00060{width:4.588800pt;}
._c_c00060{width:6.530133pt;}
._6_c00060{width:7.622400pt;}
._d_c00060{width:10.154933pt;}
._1_c00060{width:11.084800pt;}
._a_c00060{width:12.248533pt;}
._b_c00060{width:13.880000pt;}
._9_c00060{width:15.232000pt;}
._7_c00060{width:16.358400pt;}
._8_c00060{width:18.745600pt;}
._2_c00060{width:42.392533pt;}
._0_c00060{width:1019.274133pt;}
.fs0_c00060{font-size:64.000000pt;}
.y0_c00060{bottom:0.000000pt;}
.y4_c00060{bottom:3.840000pt;}
.y1_c00060{bottom:16.666667pt;}
.y2_c00060{bottom:33.653360pt;}
.y3_c00060{bottom:46.480027pt;}
.y1d_c00060{bottom:97.013360pt;}
.y1c_c00060{bottom:133.813333pt;}
.y1b_c00060{bottom:170.613333pt;}
.y1a_c00060{bottom:207.413333pt;}
.y19_c00060{bottom:252.213333pt;}
.y18_c00060{bottom:289.013333pt;}
.y17_c00060{bottom:325.813333pt;}
.y16_c00060{bottom:362.613333pt;}
.y15_c00060{bottom:399.413333pt;}
.y14_c00060{bottom:436.213333pt;}
.y13_c00060{bottom:473.013333pt;}
.y12_c00060{bottom:509.813333pt;}
.y11_c00060{bottom:546.613333pt;}
.y10_c00060{bottom:583.413333pt;}
.yf_c00060{bottom:620.213333pt;}
.ye_c00060{bottom:657.013333pt;}
.yd_c00060{bottom:693.813333pt;}
.yc_c00060{bottom:730.613333pt;}
.yb_c00060{bottom:767.413333pt;}
.ya_c00060{bottom:804.213333pt;}
.y9_c00060{bottom:841.013333pt;}
.y8_c00060{bottom:877.813333pt;}
.y7_c00060{bottom:914.613333pt;}
.y6_c00060{bottom:959.413333pt;}
.y5_c00060{bottom:996.213333pt;}
.h3_c00060{height:18.560000pt;}
.h2_c00060{height:57.375000pt;}
.h1_c00060{height:1089.333333pt;}
.h0_c00060{height:1122.666667pt;}
.w2_c00060{width:17.920000pt;}
.w1_c00060{width:760.000000pt;}
.w0_c00060{width:793.333333pt;}
.x0_c00060{left:0.000000pt;}
.x1_c00060{left:16.666667pt;}
.x5_c00060{left:97.279933pt;}
.x3_c00060{left:113.946667pt;}
.x2_c00060{left:121.280000pt;}
.x4_c00060{left:135.080133pt;}
.x6_c00060{left:163.479867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ee4c4ff6899d7e439d95df2d.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00061;src:url('chunks/assets/font_33002270f02ef50caeb025e9.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls1_c00061{letter-spacing:0.000000px;}
.ls0_c00061{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00061{word-spacing:-0.072000px;}
.ws2_c00061{word-spacing:0.000000px;}
._10_c00061{width:1.332000px;}
._8_c00061{width:5.108400px;}
._3_c00061{width:6.782400px;}
._e_c00061{width:9.064800px;}
._c_c00061{width:10.404000px;}
._d_c00061{width:11.757600px;}
._7_c00061{width:14.112000px;}
._6_c00061{width:15.508800px;}
._2_c00061{width:26.625600px;}
._1_c00061{width:32.063400px;}
._4_c00061{width:34.509600px;}
._f_c00061{width:36.446400px;}
._5_c00061{width:44.856000px;}
._b_c00061{width:47.656800px;}
._9_c00061{width:50.899200px;}
._a_c00061{width:51.950400px;}
._0_c00061{width:2079.683700px;}
.fc1_c00061{color:transparent;}
.fc0_c00061{color:rgb(0,0,0);}
.fs0_c00061{font-size:72.000000px;}
.y0_c00061{bottom:0.000000px;}
.y5_c00061{bottom:4.320000px;}
.y1_c00061{bottom:18.750000px;}
.y3_c00061{bottom:37.860030px;}
.y4_c00061{bottom:52.290030px;}
.y1f_c00061{bottom:114.540030px;}
.y1e_c00061{bottom:155.940000px;}
.y1d_c00061{bottom:197.340000px;}
.y1c_c00061{bottom:238.740000px;}
.y1b_c00061{bottom:280.140000px;}
.y1a_c00061{bottom:321.180000px;}
.y19_c00061{bottom:343.500000px;}
.y18_c00061{bottom:384.900000px;}
.y17_c00061{bottom:426.300000px;}
.y16_c00061{bottom:467.340000px;}
.y15_c00061{bottom:508.740000px;}
.y14_c00061{bottom:550.140000px;}
.y13_c00061{bottom:591.540000px;}
.y12_c00061{bottom:632.940000px;}
.y11_c00061{bottom:674.340000px;}
.y10_c00061{bottom:715.740000px;}
.yf_c00061{bottom:736.620000px;}
.ye_c00061{bottom:778.020000px;}
.yd_c00061{bottom:819.420000px;}
.yc_c00061{bottom:860.820000px;}
.yb_c00061{bottom:901.860000px;}
.ya_c00061{bottom:944.700000px;}
.y9_c00061{bottom:986.100000px;}
.y8_c00061{bottom:1027.500000px;}
.y7_c00061{bottom:1068.900000px;}
.y6_c00061{bottom:1120.740000px;}
.y2_c00061{bottom:1173.660000px;}
.h3_c00061{height:20.880000px;}
.h2_c00061{height:64.546875px;}
.h1_c00061{height:1225.500000px;}
.h0_c00061{height:1263.000000px;}
.w2_c00061{width:20.160000px;}
.w1_c00061{width:855.000000px;}
.w0_c00061{width:892.500000px;}
.x0_c00061{left:0.000000px;}
.x1_c00061{left:18.750000px;}
.x2_c00061{left:109.439925px;}
.x3_c00061{left:136.440000px;}
.x5_c00061{left:151.965150px;}
.x6_c00061{left:173.265000px;}
.x7_c00061{left:215.789700px;}
.x8_c00061{left:237.015000px;}
.x4_c00061{left:745.590000px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls1_c00061{letter-spacing:0.000000pt;}
.ls0_c00061{letter-spacing:0.012800pt;}
.ws0_c00061{word-spacing:-17.804800pt;}
.ws1_c00061{word-spacing:-0.064000pt;}
.ws2_c00061{word-spacing:0.000000pt;}
._10_c00061{width:1.184000pt;}
._8_c00061{width:4.540800pt;}
._3_c00061{width:6.028800pt;}
._e_c00061{width:8.057600pt;}
._c_c00061{width:9.248000pt;}
._d_c00061{width:10.451200pt;}
._7_c00061{width:12.544000pt;}
._6_c00061{width:13.785600pt;}
._2_c00061{width:23.667200pt;}
._1_c00061{width:28.500800pt;}
._4_c00061{width:30.675200pt;}
._f_c00061{width:32.396800pt;}
._5_c00061{width:39.872000pt;}
._b_c00061{width:42.361600pt;}
._9_c00061{width:45.243733pt;}
._a_c00061{width:46.178133pt;}
._0_c00061{width:1848.607733pt;}
.fs0_c00061{font-size:64.000000pt;}
.y0_c00061{bottom:0.000000pt;}
.y5_c00061{bottom:3.840000pt;}
.y1_c00061{bottom:16.666667pt;}
.y3_c00061{bottom:33.653360pt;}
.y4_c00061{bottom:46.480027pt;}
.y1f_c00061{bottom:101.813360pt;}
.y1e_c00061{bottom:138.613333pt;}
.y1d_c00061{bottom:175.413333pt;}
.y1c_c00061{bottom:212.213333pt;}
.y1b_c00061{bottom:249.013333pt;}
.y1a_c00061{bottom:285.493333pt;}
.y19_c00061{bottom:305.333333pt;}
.y18_c00061{bottom:342.133333pt;}
.y17_c00061{bottom:378.933333pt;}
.y16_c00061{bottom:415.413333pt;}
.y15_c00061{bottom:452.213333pt;}
.y14_c00061{bottom:489.013333pt;}
.y13_c00061{bottom:525.813333pt;}
.y12_c00061{bottom:562.613333pt;}
.y11_c00061{bottom:599.413333pt;}
.y10_c00061{bottom:636.213333pt;}
.yf_c00061{bottom:654.773333pt;}
.ye_c00061{bottom:691.573333pt;}
.yd_c00061{bottom:728.373333pt;}
.yc_c00061{bottom:765.173333pt;}
.yb_c00061{bottom:801.653333pt;}
.ya_c00061{bottom:839.733333pt;}
.y9_c00061{bottom:876.533333pt;}
.y8_c00061{bottom:913.333333pt;}
.y7_c00061{bottom:950.133333pt;}
.y6_c00061{bottom:996.213333pt;}
.y2_c00061{bottom:1043.253333pt;}
.h3_c00061{height:18.560000pt;}
.h2_c00061{height:57.375000pt;}
.h1_c00061{height:1089.333333pt;}
.h0_c00061{height:1122.666667pt;}
.w2_c00061{width:17.920000pt;}
.w1_c00061{width:760.000000pt;}
.w0_c00061{width:793.333333pt;}
.x0_c00061{left:0.000000pt;}
.x1_c00061{left:16.666667pt;}
.x2_c00061{left:97.279933pt;}
.x3_c00061{left:121.280000pt;}
.x5_c00061{left:135.080133pt;}
.x6_c00061{left:154.013333pt;}
.x7_c00061{left:191.813067pt;}
.x8_c00061{left:210.680000pt;}
.x4_c00061{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3b13e46c2e1a50812cd9f7c2.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00062;src:url('chunks/assets/font_33002270f02ef50caeb025e9.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.ls1_c00062{letter-spacing:0.000000px;}
.ls0_c00062{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00062{word-spacing:-0.072000px;}
.ws2_c00062{word-spacing:0.000000px;}
._e_c00062{width:2.174400px;}
._7_c00062{width:3.204000px;}
._6_c00062{width:4.327200px;}
._9_c00062{width:5.853000px;}
._1_c00062{width:8.064000px;}
._8_c00062{width:9.108000px;}
._b_c00062{width:11.570400px;}
._2_c00062{width:13.730400px;}
._a_c00062{width:14.860800px;}
._5_c00062{width:17.928000px;}
._4_c00062{width:23.119200px;}
._c_c00062{width:24.501600px;}
._d_c00062{width:27.338400px;}
._3_c00062{width:32.049000px;}
._0_c00062{width:1146.683400px;}
.fc1_c00062{color:transparent;}
.fc0_c00062{color:rgb(0,0,0);}
.fs0_c00062{font-size:72.000000px;}
.y0_c00062{bottom:0.000000px;}
.y4_c00062{bottom:4.320000px;}
.y1_c00062{bottom:18.750000px;}
.y2_c00062{bottom:37.860030px;}
.y3_c00062{bottom:52.290030px;}
.y1c_c00062{bottom:145.500000px;}
.y1b_c00062{bottom:204.900000px;}
.y1a_c00062{bottom:246.300000px;}
.y19_c00062{bottom:287.700000px;}
.y18_c00062{bottom:330.540000px;}
.y17_c00062{bottom:371.580000px;}
.y16_c00062{bottom:414.420000px;}
.y15_c00062{bottom:455.820000px;}
.y14_c00062{bottom:497.220000px;}
.y13_c00062{bottom:538.620000px;}
.y12_c00062{bottom:580.020000px;}
.y11_c00062{bottom:621.060000px;}
.y10_c00062{bottom:663.900000px;}
.yf_c00062{bottom:705.300000px;}
.ye_c00062{bottom:746.700000px;}
.yd_c00062{bottom:788.100000px;}
.yc_c00062{bottom:829.500000px;}
.yb_c00062{bottom:870.900000px;}
.ya_c00062{bottom:912.300000px;}
.y9_c00062{bottom:953.700000px;}
.y8_c00062{bottom:995.100000px;}
.y7_c00062{bottom:1037.940000px;}
.y6_c00062{bottom:1079.340000px;}
.y5_c00062{bottom:1120.740000px;}
.h3_c00062{height:20.880000px;}
.h2_c00062{height:64.546875px;}
.h1_c00062{height:1225.500000px;}
.h0_c00062{height:1263.000000px;}
.w2_c00062{width:20.160000px;}
.w1_c00062{width:855.000000px;}
.w0_c00062{width:892.500000px;}
.x0_c00062{left:0.000000px;}
.x1_c00062{left:18.750000px;}
.x3_c00062{left:128.190000px;}
.x2_c00062{left:136.440000px;}
.x5_c00062{left:151.965150px;}
.x4_c00062{left:173.265000px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls1_c00062{letter-spacing:0.000000pt;}
.ls0_c00062{letter-spacing:0.012800pt;}
.ws0_c00062{word-spacing:-17.804800pt;}
.ws1_c00062{word-spacing:-0.064000pt;}
.ws2_c00062{word-spacing:0.000000pt;}
._e_c00062{width:1.932800pt;}
._7_c00062{width:2.848000pt;}
._6_c00062{width:3.846400pt;}
._9_c00062{width:5.202667pt;}
._1_c00062{width:7.168000pt;}
._8_c00062{width:8.096000pt;}
._b_c00062{width:10.284800pt;}
._2_c00062{width:12.204800pt;}
._a_c00062{width:13.209600pt;}
._5_c00062{width:15.936000pt;}
._4_c00062{width:20.550400pt;}
._c_c00062{width:21.779200pt;}
._d_c00062{width:24.300800pt;}
._3_c00062{width:28.488000pt;}
._0_c00062{width:1019.274133pt;}
.fs0_c00062{font-size:64.000000pt;}
.y0_c00062{bottom:0.000000pt;}
.y4_c00062{bottom:3.840000pt;}
.y1_c00062{bottom:16.666667pt;}
.y2_c00062{bottom:33.653360pt;}
.y3_c00062{bottom:46.480027pt;}
.y1c_c00062{bottom:129.333333pt;}
.y1b_c00062{bottom:182.133333pt;}
.y1a_c00062{bottom:218.933333pt;}
.y19_c00062{bottom:255.733333pt;}
.y18_c00062{bottom:293.813333pt;}
.y17_c00062{bottom:330.293333pt;}
.y16_c00062{bottom:368.373333pt;}
.y15_c00062{bottom:405.173333pt;}
.y14_c00062{bottom:441.973333pt;}
.y13_c00062{bottom:478.773333pt;}
.y12_c00062{bottom:515.573333pt;}
.y11_c00062{bottom:552.053333pt;}
.y10_c00062{bottom:590.133333pt;}
.yf_c00062{bottom:626.933333pt;}
.ye_c00062{bottom:663.733333pt;}
.yd_c00062{bottom:700.533333pt;}
.yc_c00062{bottom:737.333333pt;}
.yb_c00062{bottom:774.133333pt;}
.ya_c00062{bottom:810.933333pt;}
.y9_c00062{bottom:847.733333pt;}
.y8_c00062{bottom:884.533333pt;}
.y7_c00062{bottom:922.613333pt;}
.y6_c00062{bottom:959.413333pt;}
.y5_c00062{bottom:996.213333pt;}
.h3_c00062{height:18.560000pt;}
.h2_c00062{height:57.375000pt;}
.h1_c00062{height:1089.333333pt;}
.h0_c00062{height:1122.666667pt;}
.w2_c00062{width:17.920000pt;}
.w1_c00062{width:760.000000pt;}
.w0_c00062{width:793.333333pt;}
.x0_c00062{left:0.000000pt;}
.x1_c00062{left:16.666667pt;}
.x3_c00062{left:113.946667pt;}
.x2_c00062{left:121.280000pt;}
.x5_c00062{left:135.080133pt;}
.x4_c00062{left:154.013333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8aef12cb4f9f184e9d325bf0.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00063;src:url('chunks/assets/font_9c7423a75d7e0b3bd42955e9.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00063;src:url('chunks/assets/font_33002270f02ef50caeb025e9.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:0.881836;font-style: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;}
.ls1_c00063{letter-spacing:0.000000px;}
.ls0_c00063{letter-spacing:0.014400px;}
.sc__c00063{text-shadow:none;}
.sc0_c00063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00063{-webkit-text-stroke:0px transparent;}
.sc0_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00063{word-spacing:-20.030400px;}
.ws1_c00063{word-spacing:-0.072000px;}
.ws2_c00063{word-spacing:0.000000px;}
._10_c00063{width:3.520800px;}
._6_c00063{width:6.595200px;}
._b_c00063{width:8.006400px;}
._9_c00063{width:9.662400px;}
._2_c00063{width:11.937600px;}
._f_c00063{width:13.363200px;}
._4_c00063{width:15.753900px;}
._1_c00063{width:17.028000px;}
._7_c00063{width:18.835200px;}
._8_c00063{width:22.204800px;}
._e_c00063{width:30.843000px;}
._a_c00063{width:32.049000px;}
._d_c00063{width:35.618400px;}
._c_c00063{width:36.705600px;}
._3_c00063{width:48.412800px;}
._5_c00063{width:65.080800px;}
._0_c00063{width:2079.683700px;}
.fc1_c00063{color:transparent;}
.fc0_c00063{color:rgb(0,0,0);}
.fs0_c00063{font-size:72.000000px;}
.y0_c00063{bottom:0.000000px;}
.y5_c00063{bottom:4.320000px;}
.y1_c00063{bottom:18.750000px;}
.y3_c00063{bottom:37.860030px;}
.y4_c00063{bottom:52.290030px;}
.y1e_c00063{bottom:97.620030px;}
.y1d_c00063{bottom:139.020000px;}
.y1c_c00063{bottom:180.060000px;}
.y1b_c00063{bottom:222.900000px;}
.y1a_c00063{bottom:264.300000px;}
.y19_c00063{bottom:305.700000px;}
.y18_c00063{bottom:347.100000px;}
.y17_c00063{bottom:388.500000px;}
.y16_c00063{bottom:429.900000px;}
.y15_c00063{bottom:471.300000px;}
.y14_c00063{bottom:512.700000px;}
.y13_c00063{bottom:564.540000px;}
.y12_c00063{bottom:605.940000px;}
.y11_c00063{bottom:647.340000px;}
.y10_c00063{bottom:688.740000px;}
.yf_c00063{bottom:730.140000px;}
.ye_c00063{bottom:771.540000px;}
.yd_c00063{bottom:812.940000px;}
.yc_c00063{bottom:854.340000px;}
.yb_c00063{bottom:895.740000px;}
.ya_c00063{bottom:937.140000px;}
.y9_c00063{bottom:996.540000px;}
.y8_c00063{bottom:1037.940000px;}
.y7_c00063{bottom:1079.340000px;}
.y6_c00063{bottom:1120.740000px;}
.y2_c00063{bottom:1173.660000px;}
.h3_c00063{height:20.880000px;}
.h2_c00063{height:64.546875px;}
.h4_c00063{height:65.003906px;}
.h1_c00063{height:1225.500000px;}
.h0_c00063{height:1263.000000px;}
.w2_c00063{width:20.160000px;}
.w1_c00063{width:855.000000px;}
.w0_c00063{width:892.500000px;}
.x0_c00063{left:0.000000px;}
.x1_c00063{left:18.750000px;}
.x2_c00063{left:109.439925px;}
.x3_c00063{left:136.440000px;}
.x5_c00063{left:151.965150px;}
.x6_c00063{left:173.265000px;}
.x4_c00063{left:745.590000px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls1_c00063{letter-spacing:0.000000pt;}
.ls0_c00063{letter-spacing:0.012800pt;}
.ws0_c00063{word-spacing:-17.804800pt;}
.ws1_c00063{word-spacing:-0.064000pt;}
.ws2_c00063{word-spacing:0.000000pt;}
._10_c00063{width:3.129600pt;}
._6_c00063{width:5.862400pt;}
._b_c00063{width:7.116800pt;}
._9_c00063{width:8.588800pt;}
._2_c00063{width:10.611200pt;}
._f_c00063{width:11.878400pt;}
._4_c00063{width:14.003467pt;}
._1_c00063{width:15.136000pt;}
._7_c00063{width:16.742400pt;}
._8_c00063{width:19.737600pt;}
._e_c00063{width:27.416000pt;}
._a_c00063{width:28.488000pt;}
._d_c00063{width:31.660800pt;}
._c_c00063{width:32.627200pt;}
._3_c00063{width:43.033600pt;}
._5_c00063{width:57.849600pt;}
._0_c00063{width:1848.607733pt;}
.fs0_c00063{font-size:64.000000pt;}
.y0_c00063{bottom:0.000000pt;}
.y5_c00063{bottom:3.840000pt;}
.y1_c00063{bottom:16.666667pt;}
.y3_c00063{bottom:33.653360pt;}
.y4_c00063{bottom:46.480027pt;}
.y1e_c00063{bottom:86.773360pt;}
.y1d_c00063{bottom:123.573333pt;}
.y1c_c00063{bottom:160.053333pt;}
.y1b_c00063{bottom:198.133333pt;}
.y1a_c00063{bottom:234.933333pt;}
.y19_c00063{bottom:271.733333pt;}
.y18_c00063{bottom:308.533333pt;}
.y17_c00063{bottom:345.333333pt;}
.y16_c00063{bottom:382.133333pt;}
.y15_c00063{bottom:418.933333pt;}
.y14_c00063{bottom:455.733333pt;}
.y13_c00063{bottom:501.813333pt;}
.y12_c00063{bottom:538.613333pt;}
.y11_c00063{bottom:575.413333pt;}
.y10_c00063{bottom:612.213333pt;}
.yf_c00063{bottom:649.013333pt;}
.ye_c00063{bottom:685.813333pt;}
.yd_c00063{bottom:722.613333pt;}
.yc_c00063{bottom:759.413333pt;}
.yb_c00063{bottom:796.213333pt;}
.ya_c00063{bottom:833.013333pt;}
.y9_c00063{bottom:885.813333pt;}
.y8_c00063{bottom:922.613333pt;}
.y7_c00063{bottom:959.413333pt;}
.y6_c00063{bottom:996.213333pt;}
.y2_c00063{bottom:1043.253333pt;}
.h3_c00063{height:18.560000pt;}
.h2_c00063{height:57.375000pt;}
.h4_c00063{height:57.781250pt;}
.h1_c00063{height:1089.333333pt;}
.h0_c00063{height:1122.666667pt;}
.w2_c00063{width:17.920000pt;}
.w1_c00063{width:760.000000pt;}
.w0_c00063{width:793.333333pt;}
.x0_c00063{left:0.000000pt;}
.x1_c00063{left:16.666667pt;}
.x2_c00063{left:97.279933pt;}
.x3_c00063{left:121.280000pt;}
.x5_c00063{left:135.080133pt;}
.x6_c00063{left:154.013333pt;}
.x4_c00063{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cce33fe98449167c22fbf912.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00064;src:url('chunks/assets/font_33002270f02ef50caeb025e9.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:0.881836;font-style: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;}
.ls3_c00064{letter-spacing:-0.014400px;}
.ls1_c00064{letter-spacing:0.000000px;}
.ls0_c00064{letter-spacing:0.014400px;}
.ls2_c00064{letter-spacing:0.036000px;}
.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;}
}
.ws2_c00064{word-spacing:-20.052000px;}
.ws0_c00064{word-spacing:-20.030400px;}
.ws3_c00064{word-spacing:-20.001600px;}
.ws1_c00064{word-spacing:-0.072000px;}
.ws4_c00064{word-spacing:0.000000px;}
._e_c00064{margin-left:-1.008000px;}
._a_c00064{width:1.000800px;}
._7_c00064{width:2.347200px;}
._5_c00064{width:4.046400px;}
._9_c00064{width:6.343200px;}
._4_c00064{width:8.215200px;}
._2_c00064{width:9.252000px;}
._3_c00064{width:10.256400px;}
._c_c00064{width:11.736000px;}
._11_c00064{width:13.694400px;}
._8_c00064{width:15.105600px;}
._10_c00064{width:16.696800px;}
._d_c00064{width:21.240000px;}
._6_c00064{width:23.248800px;}
._1_c00064{width:32.049000px;}
._f_c00064{width:35.100000px;}
._b_c00064{width:36.439200px;}
._0_c00064{width:1146.683400px;}
.fc1_c00064{color:transparent;}
.fc0_c00064{color:rgb(0,0,0);}
.fs0_c00064{font-size:72.000000px;}
.y0_c00064{bottom:0.000000px;}
.y4_c00064{bottom:4.320000px;}
.y1_c00064{bottom:18.750000px;}
.y2_c00064{bottom:37.860030px;}
.y3_c00064{bottom:52.290030px;}
.y1d_c00064{bottom:115.620030px;}
.y1c_c00064{bottom:157.020000px;}
.y1b_c00064{bottom:198.420000px;}
.y1a_c00064{bottom:239.820000px;}
.y19_c00064{bottom:281.220000px;}
.y18_c00064{bottom:322.620000px;}
.y17_c00064{bottom:364.020000px;}
.y16_c00064{bottom:405.420000px;}
.y15_c00064{bottom:446.820000px;}
.y14_c00064{bottom:488.220000px;}
.y13_c00064{bottom:529.620000px;}
.y12_c00064{bottom:571.020000px;}
.y11_c00064{bottom:612.420000px;}
.y10_c00064{bottom:662.820000px;}
.yf_c00064{bottom:704.220000px;}
.ye_c00064{bottom:745.620000px;}
.yd_c00064{bottom:787.020000px;}
.yc_c00064{bottom:828.420000px;}
.yb_c00064{bottom:869.820000px;}
.ya_c00064{bottom:911.220000px;}
.y9_c00064{bottom:952.260000px;}
.y8_c00064{bottom:995.100000px;}
.y7_c00064{bottom:1036.500000px;}
.y6_c00064{bottom:1077.900000px;}
.y5_c00064{bottom:1120.740000px;}
.h3_c00064{height:20.880000px;}
.h2_c00064{height:64.546875px;}
.h1_c00064{height:1225.500000px;}
.h0_c00064{height:1263.000000px;}
.w2_c00064{width:20.160000px;}
.w1_c00064{width:855.000000px;}
.w0_c00064{width:892.500000px;}
.x0_c00064{left:0.000000px;}
.x1_c00064{left:18.750000px;}
.x6_c00064{left:109.439925px;}
.x3_c00064{left:128.190000px;}
.x2_c00064{left:136.440000px;}
.x5_c00064{left:151.965150px;}
.x4_c00064{left:173.265000px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls3_c00064{letter-spacing:-0.012800pt;}
.ls1_c00064{letter-spacing:0.000000pt;}
.ls0_c00064{letter-spacing:0.012800pt;}
.ls2_c00064{letter-spacing:0.032000pt;}
.ws2_c00064{word-spacing:-17.824000pt;}
.ws0_c00064{word-spacing:-17.804800pt;}
.ws3_c00064{word-spacing:-17.779200pt;}
.ws1_c00064{word-spacing:-0.064000pt;}
.ws4_c00064{word-spacing:0.000000pt;}
._e_c00064{margin-left:-0.896000pt;}
._a_c00064{width:0.889600pt;}
._7_c00064{width:2.086400pt;}
._5_c00064{width:3.596800pt;}
._9_c00064{width:5.638400pt;}
._4_c00064{width:7.302400pt;}
._2_c00064{width:8.224000pt;}
._3_c00064{width:9.116800pt;}
._c_c00064{width:10.432000pt;}
._11_c00064{width:12.172800pt;}
._8_c00064{width:13.427200pt;}
._10_c00064{width:14.841600pt;}
._d_c00064{width:18.880000pt;}
._6_c00064{width:20.665600pt;}
._1_c00064{width:28.488000pt;}
._f_c00064{width:31.200000pt;}
._b_c00064{width:32.390400pt;}
._0_c00064{width:1019.274133pt;}
.fs0_c00064{font-size:64.000000pt;}
.y0_c00064{bottom:0.000000pt;}
.y4_c00064{bottom:3.840000pt;}
.y1_c00064{bottom:16.666667pt;}
.y2_c00064{bottom:33.653360pt;}
.y3_c00064{bottom:46.480027pt;}
.y1d_c00064{bottom:102.773360pt;}
.y1c_c00064{bottom:139.573333pt;}
.y1b_c00064{bottom:176.373333pt;}
.y1a_c00064{bottom:213.173333pt;}
.y19_c00064{bottom:249.973333pt;}
.y18_c00064{bottom:286.773333pt;}
.y17_c00064{bottom:323.573333pt;}
.y16_c00064{bottom:360.373333pt;}
.y15_c00064{bottom:397.173333pt;}
.y14_c00064{bottom:433.973333pt;}
.y13_c00064{bottom:470.773333pt;}
.y12_c00064{bottom:507.573333pt;}
.y11_c00064{bottom:544.373333pt;}
.y10_c00064{bottom:589.173333pt;}
.yf_c00064{bottom:625.973333pt;}
.ye_c00064{bottom:662.773333pt;}
.yd_c00064{bottom:699.573333pt;}
.yc_c00064{bottom:736.373333pt;}
.yb_c00064{bottom:773.173333pt;}
.ya_c00064{bottom:809.973333pt;}
.y9_c00064{bottom:846.453333pt;}
.y8_c00064{bottom:884.533333pt;}
.y7_c00064{bottom:921.333333pt;}
.y6_c00064{bottom:958.133333pt;}
.y5_c00064{bottom:996.213333pt;}
.h3_c00064{height:18.560000pt;}
.h2_c00064{height:57.375000pt;}
.h1_c00064{height:1089.333333pt;}
.h0_c00064{height:1122.666667pt;}
.w2_c00064{width:17.920000pt;}
.w1_c00064{width:760.000000pt;}
.w0_c00064{width:793.333333pt;}
.x0_c00064{left:0.000000pt;}
.x1_c00064{left:16.666667pt;}
.x6_c00064{left:97.279933pt;}
.x3_c00064{left:113.946667pt;}
.x2_c00064{left:121.280000pt;}
.x5_c00064{left:135.080133pt;}
.x4_c00064{left:154.013333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_db1b6d7f877f54a486b44c33.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00065;src:url('chunks/assets/font_0559069899ee2eec3eb632b3.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00065;src:url('chunks/assets/font_33002270f02ef50caeb025e9.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00065;src:url('chunks/assets/font_e7c40a9e4fc4a6f85f6ad52b.woff2')format("woff");}.ff4_c00065{font-family:ff4_c00065;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00065{transform:matrix(0.248627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248627,0.000000,0.000000,0.250000,0,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;}
.ls2_c00065{letter-spacing:-0.760814px;}
.ls1_c00065{letter-spacing:0.000000px;}
.ls0_c00065{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00065{word-spacing:-0.072000px;}
.ws2_c00065{word-spacing:0.000000px;}
._12_c00065{margin-left:-1.006200px;}
._d_c00065{width:1.000800px;}
._f_c00065{width:2.929800px;}
._6_c00065{width:3.960000px;}
._7_c00065{width:5.544000px;}
._c_c00065{width:6.840000px;}
._3_c00065{width:7.862400px;}
._a_c00065{width:8.985600px;}
._5_c00065{width:10.584000px;}
._11_c00065{width:11.988000px;}
._2_c00065{width:13.356000px;}
._9_c00065{width:14.708100px;}
._1_c00065{width:15.753900px;}
._10_c00065{width:18.691200px;}
._8_c00065{width:22.010400px;}
._e_c00065{width:24.004800px;}
._b_c00065{width:28.368000px;}
._4_c00065{width:32.049000px;}
._0_c00065{width:2079.683700px;}
.fc1_c00065{color:transparent;}
.fc0_c00065{color:rgb(0,0,0);}
.fs0_c00065{font-size:72.000000px;}
.fs1_c00065{font-size:76.081418px;}
.y0_c00065{bottom:0.000000px;}
.y5_c00065{bottom:4.320000px;}
.y20_c00065{bottom:5.170095px;}
.y1_c00065{bottom:18.750000px;}
.y3_c00065{bottom:37.860030px;}
.y4_c00065{bottom:52.290030px;}
.y1e_c00065{bottom:106.260030px;}
.y1f_c00065{bottom:125.010015px;}
.y1d_c00065{bottom:158.100000px;}
.y1c_c00065{bottom:199.500000px;}
.y1b_c00065{bottom:240.900000px;}
.y1a_c00065{bottom:282.300000px;}
.y19_c00065{bottom:323.700000px;}
.y18_c00065{bottom:365.100000px;}
.y17_c00065{bottom:406.500000px;}
.y16_c00065{bottom:447.900000px;}
.y15_c00065{bottom:489.300000px;}
.y14_c00065{bottom:530.700000px;}
.y13_c00065{bottom:572.100000px;}
.y12_c00065{bottom:613.500000px;}
.y11_c00065{bottom:654.900000px;}
.y10_c00065{bottom:696.300000px;}
.yf_c00065{bottom:737.700000px;}
.ye_c00065{bottom:779.100000px;}
.yd_c00065{bottom:820.500000px;}
.yc_c00065{bottom:861.900000px;}
.yb_c00065{bottom:903.300000px;}
.ya_c00065{bottom:944.700000px;}
.y9_c00065{bottom:996.540000px;}
.y8_c00065{bottom:1037.940000px;}
.y7_c00065{bottom:1079.340000px;}
.y6_c00065{bottom:1120.740000px;}
.y2_c00065{bottom:1173.660000px;}
.h3_c00065{height:20.880000px;}
.h5_c00065{height:27.360000px;}
.h6_c00065{height:51.414396px;}
.h2_c00065{height:64.546875px;}
.h4_c00065{height:65.003906px;}
.h1_c00065{height:1225.500000px;}
.h0_c00065{height:1263.000000px;}
.w2_c00065{width:20.160000px;}
.w3_c00065{width:46.800015px;}
.w1_c00065{width:855.000000px;}
.w0_c00065{width:892.500000px;}
.x0_c00065{left:0.000000px;}
.x8_c00065{left:15.049592px;}
.x1_c00065{left:18.750000px;}
.x2_c00065{left:109.439925px;}
.x3_c00065{left:136.440000px;}
.x5_c00065{left:151.965150px;}
.x6_c00065{left:173.265000px;}
.x7_c00065{left:632.190000px;}
.x9_c00065{left:660.318150px;}
.x4_c00065{left:745.590000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls2_c00065{letter-spacing:-0.676279pt;}
.ls1_c00065{letter-spacing:0.000000pt;}
.ls0_c00065{letter-spacing:0.012800pt;}
.ws0_c00065{word-spacing:-17.804800pt;}
.ws1_c00065{word-spacing:-0.064000pt;}
.ws2_c00065{word-spacing:0.000000pt;}
._12_c00065{margin-left:-0.894400pt;}
._d_c00065{width:0.889600pt;}
._f_c00065{width:2.604267pt;}
._6_c00065{width:3.520000pt;}
._7_c00065{width:4.928000pt;}
._c_c00065{width:6.080000pt;}
._3_c00065{width:6.988800pt;}
._a_c00065{width:7.987200pt;}
._5_c00065{width:9.408000pt;}
._11_c00065{width:10.656000pt;}
._2_c00065{width:11.872000pt;}
._9_c00065{width:13.073867pt;}
._1_c00065{width:14.003467pt;}
._10_c00065{width:16.614400pt;}
._8_c00065{width:19.564800pt;}
._e_c00065{width:21.337600pt;}
._b_c00065{width:25.216000pt;}
._4_c00065{width:28.488000pt;}
._0_c00065{width:1848.607733pt;}
.fs0_c00065{font-size:64.000000pt;}
.fs1_c00065{font-size:67.627927pt;}
.y0_c00065{bottom:0.000000pt;}
.y5_c00065{bottom:3.840000pt;}
.y20_c00065{bottom:4.595640pt;}
.y1_c00065{bottom:16.666667pt;}
.y3_c00065{bottom:33.653360pt;}
.y4_c00065{bottom:46.480027pt;}
.y1e_c00065{bottom:94.453360pt;}
.y1f_c00065{bottom:111.120013pt;}
.y1d_c00065{bottom:140.533333pt;}
.y1c_c00065{bottom:177.333333pt;}
.y1b_c00065{bottom:214.133333pt;}
.y1a_c00065{bottom:250.933333pt;}
.y19_c00065{bottom:287.733333pt;}
.y18_c00065{bottom:324.533333pt;}
.y17_c00065{bottom:361.333333pt;}
.y16_c00065{bottom:398.133333pt;}
.y15_c00065{bottom:434.933333pt;}
.y14_c00065{bottom:471.733333pt;}
.y13_c00065{bottom:508.533333pt;}
.y12_c00065{bottom:545.333333pt;}
.y11_c00065{bottom:582.133333pt;}
.y10_c00065{bottom:618.933333pt;}
.yf_c00065{bottom:655.733333pt;}
.ye_c00065{bottom:692.533333pt;}
.yd_c00065{bottom:729.333333pt;}
.yc_c00065{bottom:766.133333pt;}
.yb_c00065{bottom:802.933333pt;}
.ya_c00065{bottom:839.733333pt;}
.y9_c00065{bottom:885.813333pt;}
.y8_c00065{bottom:922.613333pt;}
.y7_c00065{bottom:959.413333pt;}
.y6_c00065{bottom:996.213333pt;}
.y2_c00065{bottom:1043.253333pt;}
.h3_c00065{height:18.560000pt;}
.h5_c00065{height:24.320000pt;}
.h6_c00065{height:45.701685pt;}
.h2_c00065{height:57.375000pt;}
.h4_c00065{height:57.781250pt;}
.h1_c00065{height:1089.333333pt;}
.h0_c00065{height:1122.666667pt;}
.w2_c00065{width:17.920000pt;}
.w3_c00065{width:41.600013pt;}
.w1_c00065{width:760.000000pt;}
.w0_c00065{width:793.333333pt;}
.x0_c00065{left:0.000000pt;}
.x8_c00065{left:13.377415pt;}
.x1_c00065{left:16.666667pt;}
.x2_c00065{left:97.279933pt;}
.x3_c00065{left:121.280000pt;}
.x5_c00065{left:135.080133pt;}
.x6_c00065{left:154.013333pt;}
.x7_c00065{left:561.946667pt;}
.x9_c00065{left:586.949467pt;}
.x4_c00065{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_45e09002e73b4f64264e7c5e.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00066;src:url('chunks/assets/font_3e610d552774b545ed8fbfaa.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00066;src:url('chunks/assets/font_73ccaffdbe8dcbf312368688.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00066;src:url('chunks/assets/font_86f63f456ecb25ba484bf82a.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00066;src:url('chunks/assets/font_33002270f02ef50caeb025e9.woff2')format("woff");}.ff5_c00066{font-family:ff5_c00066;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00066;src:url('chunks/assets/font_7e4f2b0086cfe0c89e94c71e.woff2')format("woff");}.ff6_c00066{font-family:ff6_c00066;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00066{transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);}
.m0_c00066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls3_c00066{letter-spacing:0.000000px;}
.ls2_c00066{letter-spacing:0.007200px;}
.ls0_c00066{letter-spacing:0.014400px;}
.ls5_c00066{letter-spacing:35.714657px;}
.ls4_c00066{letter-spacing:150.441356px;}
.ls1_c00066{letter-spacing:157.796604px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00066{word-spacing:-157.872431px;}
.ws1_c00066{word-spacing:-150.517184px;}
.ws0_c00066{word-spacing:-20.030400px;}
.ws2_c00066{word-spacing:-13.118122px;}
.ws4_c00066{word-spacing:-0.072000px;}
.ws5_c00066{word-spacing:0.000000px;}
._4_c00066{margin-left:-779.943226px;}
._9_c00066{margin-left:-515.505863px;}
._1_c00066{margin-left:-151.882075px;}
._3_c00066{margin-left:-5.611220px;}
._2_c00066{margin-left:-3.412228px;}
._e_c00066{margin-left:-1.013400px;}
._b_c00066{width:2.181600px;}
._12_c00066{width:3.758400px;}
._14_c00066{width:5.299200px;}
._a_c00066{width:6.400800px;}
._c_c00066{width:12.088800px;}
._15_c00066{width:13.536000px;}
._18_c00066{width:16.711200px;}
._d_c00066{width:18.885600px;}
._11_c00066{width:21.663600px;}
._6_c00066{width:23.733944px;}
._10_c00066{width:25.024456px;}
._7_c00066{width:26.084590px;}
._8_c00066{width:27.146172px;}
._5_c00066{width:28.359409px;}
._f_c00066{width:32.049000px;}
._13_c00066{width:36.201600px;}
._16_c00066{width:47.109600px;}
._17_c00066{width:52.948800px;}
._0_c00066{width:1146.683400px;}
.fc1_c00066{color:transparent;}
.fc0_c00066{color:rgb(0,0,0);}
.fs0_c00066{font-size:72.000000px;}
.fs1_c00066{font-size:75.827297px;}
.y0_c00066{bottom:0.000000px;}
.y4_c00066{bottom:4.320000px;}
.y8_c00066{bottom:8.118760px;}
.y1_c00066{bottom:18.750000px;}
.y2_c00066{bottom:37.860030px;}
.y3_c00066{bottom:52.290030px;}
.y20_c00066{bottom:91.860015px;}
.y1f_c00066{bottom:133.260000px;}
.y1e_c00066{bottom:174.660000px;}
.y1d_c00066{bottom:216.060000px;}
.y1c_c00066{bottom:257.460000px;}
.y1b_c00066{bottom:298.860000px;}
.y1a_c00066{bottom:340.260000px;}
.y19_c00066{bottom:381.660000px;}
.y18_c00066{bottom:423.060000px;}
.y17_c00066{bottom:464.460000px;}
.y16_c00066{bottom:505.860000px;}
.y15_c00066{bottom:547.260000px;}
.y14_c00066{bottom:588.660000px;}
.y13_c00066{bottom:630.060000px;}
.y12_c00066{bottom:650.580000px;}
.y11_c00066{bottom:691.980000px;}
.y10_c00066{bottom:733.380000px;}
.yf_c00066{bottom:776.220000px;}
.ye_c00066{bottom:817.620000px;}
.yd_c00066{bottom:859.020000px;}
.yc_c00066{bottom:900.420000px;}
.yb_c00066{bottom:941.820000px;}
.ya_c00066{bottom:983.220000px;}
.y9_c00066{bottom:1024.620000px;}
.y6_c00066{bottom:1065.660000px;}
.y7_c00066{bottom:1084.410000px;}
.y5_c00066{bottom:1120.740000px;}
.h3_c00066{height:20.880000px;}
.h4_c00066{height:30.239955px;}
.h5_c00066{height:53.464168px;}
.h2_c00066{height:64.546875px;}
.h1_c00066{height:1225.500000px;}
.h0_c00066{height:1263.000000px;}
.w2_c00066{width:20.160000px;}
.w3_c00066{width:176.760000px;}
.w1_c00066{width:855.000000px;}
.w0_c00066{width:892.500000px;}
.x0_c00066{left:0.000000px;}
.x1_c00066{left:18.750000px;}
.x7_c00066{left:26.869553px;}
.x3_c00066{left:128.190000px;}
.x2_c00066{left:136.440000px;}
.x9_c00066{left:151.965150px;}
.x4_c00066{left:173.265000px;}
.xa_c00066{left:215.789700px;}
.xb_c00066{left:237.015000px;}
.x5_c00066{left:355.444650px;}
.x6_c00066{left:406.830000px;}
.x8_c00066{left:564.610050px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls3_c00066{letter-spacing:0.000000pt;}
.ls2_c00066{letter-spacing:0.006400pt;}
.ls0_c00066{letter-spacing:0.012800pt;}
.ls5_c00066{letter-spacing:31.746362pt;}
.ls4_c00066{letter-spacing:133.725650pt;}
.ls1_c00066{letter-spacing:140.263648pt;}
.ws3_c00066{word-spacing:-140.331050pt;}
.ws1_c00066{word-spacing:-133.793052pt;}
.ws0_c00066{word-spacing:-17.804800pt;}
.ws2_c00066{word-spacing:-11.660553pt;}
.ws4_c00066{word-spacing:-0.064000pt;}
.ws5_c00066{word-spacing:0.000000pt;}
._4_c00066{margin-left:-693.282868pt;}
._9_c00066{margin-left:-458.227434pt;}
._1_c00066{margin-left:-135.006289pt;}
._3_c00066{margin-left:-4.987751pt;}
._2_c00066{margin-left:-3.033092pt;}
._e_c00066{margin-left:-0.900800pt;}
._b_c00066{width:1.939200pt;}
._12_c00066{width:3.340800pt;}
._14_c00066{width:4.710400pt;}
._a_c00066{width:5.689600pt;}
._c_c00066{width:10.745600pt;}
._15_c00066{width:12.032000pt;}
._18_c00066{width:14.854400pt;}
._d_c00066{width:16.787200pt;}
._11_c00066{width:19.256533pt;}
._6_c00066{width:21.096839pt;}
._10_c00066{width:22.243961pt;}
._7_c00066{width:23.186302pt;}
._8_c00066{width:24.129931pt;}
._5_c00066{width:25.208363pt;}
._f_c00066{width:28.488000pt;}
._13_c00066{width:32.179200pt;}
._16_c00066{width:41.875200pt;}
._17_c00066{width:47.065600pt;}
._0_c00066{width:1019.274133pt;}
.fs0_c00066{font-size:64.000000pt;}
.fs1_c00066{font-size:67.402041pt;}
.y0_c00066{bottom:0.000000pt;}
.y4_c00066{bottom:3.840000pt;}
.y8_c00066{bottom:7.216675pt;}
.y1_c00066{bottom:16.666667pt;}
.y2_c00066{bottom:33.653360pt;}
.y3_c00066{bottom:46.480027pt;}
.y20_c00066{bottom:81.653347pt;}
.y1f_c00066{bottom:118.453333pt;}
.y1e_c00066{bottom:155.253333pt;}
.y1d_c00066{bottom:192.053333pt;}
.y1c_c00066{bottom:228.853333pt;}
.y1b_c00066{bottom:265.653333pt;}
.y1a_c00066{bottom:302.453333pt;}
.y19_c00066{bottom:339.253333pt;}
.y18_c00066{bottom:376.053333pt;}
.y17_c00066{bottom:412.853333pt;}
.y16_c00066{bottom:449.653333pt;}
.y15_c00066{bottom:486.453333pt;}
.y14_c00066{bottom:523.253333pt;}
.y13_c00066{bottom:560.053333pt;}
.y12_c00066{bottom:578.293333pt;}
.y11_c00066{bottom:615.093333pt;}
.y10_c00066{bottom:651.893333pt;}
.yf_c00066{bottom:689.973333pt;}
.ye_c00066{bottom:726.773333pt;}
.yd_c00066{bottom:763.573333pt;}
.yc_c00066{bottom:800.373333pt;}
.yb_c00066{bottom:837.173333pt;}
.ya_c00066{bottom:873.973333pt;}
.y9_c00066{bottom:910.773333pt;}
.y6_c00066{bottom:947.253333pt;}
.y7_c00066{bottom:963.920000pt;}
.y5_c00066{bottom:996.213333pt;}
.h3_c00066{height:18.560000pt;}
.h4_c00066{height:26.879960pt;}
.h5_c00066{height:47.523705pt;}
.h2_c00066{height:57.375000pt;}
.h1_c00066{height:1089.333333pt;}
.h0_c00066{height:1122.666667pt;}
.w2_c00066{width:17.920000pt;}
.w3_c00066{width:157.120000pt;}
.w1_c00066{width:760.000000pt;}
.w0_c00066{width:793.333333pt;}
.x0_c00066{left:0.000000pt;}
.x1_c00066{left:16.666667pt;}
.x7_c00066{left:23.884047pt;}
.x3_c00066{left:113.946667pt;}
.x2_c00066{left:121.280000pt;}
.x9_c00066{left:135.080133pt;}
.x4_c00066{left:154.013333pt;}
.xa_c00066{left:191.813067pt;}
.xb_c00066{left:210.680000pt;}
.x5_c00066{left:315.950800pt;}
.x6_c00066{left:361.626667pt;}
.x8_c00066{left:501.875600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_93bdbc656ceaded2ab4367ae.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00067;src:url('chunks/assets/font_33002270f02ef50caeb025e9.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:0.881836;font-style: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;}
.ls1_c00067{letter-spacing:0.000000px;}
.ls0_c00067{letter-spacing:0.014400px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00067{word-spacing:-20.030400px;}
.ws1_c00067{word-spacing:-0.072000px;}
.ws2_c00067{word-spacing:0.000000px;}
._6_c00067{width:1.245600px;}
._5_c00067{width:4.089600px;}
._a_c00067{width:5.104800px;}
._3_c00067{width:6.487200px;}
._9_c00067{width:7.992000px;}
._8_c00067{width:9.482400px;}
._4_c00067{width:10.555200px;}
._b_c00067{width:18.568800px;}
._1_c00067{width:32.063400px;}
._2_c00067{width:36.578400px;}
._7_c00067{width:37.785600px;}
._0_c00067{width:2079.683700px;}
.fc1_c00067{color:transparent;}
.fc0_c00067{color:rgb(0,0,0);}
.fs0_c00067{font-size:72.000000px;}
.y0_c00067{bottom:0.000000px;}
.y5_c00067{bottom:4.320000px;}
.y27_c00067{bottom:5.040000px;}
.y21_c00067{bottom:7.560000px;}
.y23_c00067{bottom:11.520000px;}
.y1_c00067{bottom:18.750000px;}
.y26_c00067{bottom:26.280000px;}
.y20_c00067{bottom:28.080000px;}
.y3_c00067{bottom:37.860030px;}
.y25_c00067{bottom:46.800000px;}
.y4_c00067{bottom:52.290030px;}
.y1e_c00067{bottom:107.700030px;}
.y1d_c00067{bottom:149.100000px;}
.y1c_c00067{bottom:190.500000px;}
.y1b_c00067{bottom:231.900000px;}
.y1a_c00067{bottom:273.300000px;}
.y19_c00067{bottom:314.700000px;}
.y18_c00067{bottom:356.100000px;}
.y24_c00067{bottom:374.850000px;}
.y17_c00067{bottom:397.500000px;}
.y16_c00067{bottom:438.900000px;}
.y15_c00067{bottom:480.300000px;}
.y14_c00067{bottom:521.700000px;}
.y1f_c00067{bottom:535.410000px;}
.y22_c00067{bottom:543.690000px;}
.y13_c00067{bottom:563.100000px;}
.y12_c00067{bottom:622.500000px;}
.y11_c00067{bottom:663.900000px;}
.y10_c00067{bottom:705.300000px;}
.yf_c00067{bottom:746.700000px;}
.ye_c00067{bottom:788.100000px;}
.yd_c00067{bottom:829.500000px;}
.yc_c00067{bottom:870.900000px;}
.yb_c00067{bottom:912.300000px;}
.ya_c00067{bottom:953.700000px;}
.y9_c00067{bottom:995.100000px;}
.y8_c00067{bottom:1036.500000px;}
.y7_c00067{bottom:1077.900000px;}
.y6_c00067{bottom:1119.300000px;}
.y2_c00067{bottom:1173.660000px;}
.h3_c00067{height:20.880000px;}
.h5_c00067{height:28.439985px;}
.h4_c00067{height:44.640015px;}
.h6_c00067{height:63.360015px;}
.h2_c00067{height:64.546875px;}
.h1_c00067{height:1225.500000px;}
.h0_c00067{height:1263.000000px;}
.w2_c00067{width:20.160000px;}
.w3_c00067{width:106.920000px;}
.w4_c00067{width:107.279985px;}
.w6_c00067{width:206.640000px;}
.w5_c00067{width:213.480000px;}
.w1_c00067{width:855.000000px;}
.w0_c00067{width:892.500000px;}
.x0_c00067{left:0.000000px;}
.xd_c00067{left:10.800000px;}
.xb_c00067{left:14.012550px;}
.x1_c00067{left:18.750000px;}
.x10_c00067{left:24.797550px;}
.x8_c00067{left:29.533950px;}
.xf_c00067{left:30.809250px;}
.x9_c00067{left:32.034450px;}
.x14_c00067{left:38.803050px;}
.x13_c00067{left:43.817250px;}
.x12_c00067{left:46.313400px;}
.x2_c00067{left:109.439925px;}
.x3_c00067{left:136.440000px;}
.x5_c00067{left:151.965150px;}
.x6_c00067{left:173.265000px;}
.x7_c00067{left:213.150000px;}
.xe_c00067{left:217.830000px;}
.xc_c00067{left:358.590000px;}
.x11_c00067{left:527.430000px;}
.xa_c00067{left:635.790000px;}
.x4_c00067{left:745.590000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls1_c00067{letter-spacing:0.000000pt;}
.ls0_c00067{letter-spacing:0.012800pt;}
.ws0_c00067{word-spacing:-17.804800pt;}
.ws1_c00067{word-spacing:-0.064000pt;}
.ws2_c00067{word-spacing:0.000000pt;}
._6_c00067{width:1.107200pt;}
._5_c00067{width:3.635200pt;}
._a_c00067{width:4.537600pt;}
._3_c00067{width:5.766400pt;}
._9_c00067{width:7.104000pt;}
._8_c00067{width:8.428800pt;}
._4_c00067{width:9.382400pt;}
._b_c00067{width:16.505600pt;}
._1_c00067{width:28.500800pt;}
._2_c00067{width:32.514133pt;}
._7_c00067{width:33.587200pt;}
._0_c00067{width:1848.607733pt;}
.fs0_c00067{font-size:64.000000pt;}
.y0_c00067{bottom:0.000000pt;}
.y5_c00067{bottom:3.840000pt;}
.y27_c00067{bottom:4.480000pt;}
.y21_c00067{bottom:6.720000pt;}
.y23_c00067{bottom:10.240000pt;}
.y1_c00067{bottom:16.666667pt;}
.y26_c00067{bottom:23.360000pt;}
.y20_c00067{bottom:24.960000pt;}
.y3_c00067{bottom:33.653360pt;}
.y25_c00067{bottom:41.600000pt;}
.y4_c00067{bottom:46.480027pt;}
.y1e_c00067{bottom:95.733360pt;}
.y1d_c00067{bottom:132.533333pt;}
.y1c_c00067{bottom:169.333333pt;}
.y1b_c00067{bottom:206.133333pt;}
.y1a_c00067{bottom:242.933333pt;}
.y19_c00067{bottom:279.733333pt;}
.y18_c00067{bottom:316.533333pt;}
.y24_c00067{bottom:333.200000pt;}
.y17_c00067{bottom:353.333333pt;}
.y16_c00067{bottom:390.133333pt;}
.y15_c00067{bottom:426.933333pt;}
.y14_c00067{bottom:463.733333pt;}
.y1f_c00067{bottom:475.920000pt;}
.y22_c00067{bottom:483.280000pt;}
.y13_c00067{bottom:500.533333pt;}
.y12_c00067{bottom:553.333333pt;}
.y11_c00067{bottom:590.133333pt;}
.y10_c00067{bottom:626.933333pt;}
.yf_c00067{bottom:663.733333pt;}
.ye_c00067{bottom:700.533333pt;}
.yd_c00067{bottom:737.333333pt;}
.yc_c00067{bottom:774.133333pt;}
.yb_c00067{bottom:810.933333pt;}
.ya_c00067{bottom:847.733333pt;}
.y9_c00067{bottom:884.533333pt;}
.y8_c00067{bottom:921.333333pt;}
.y7_c00067{bottom:958.133333pt;}
.y6_c00067{bottom:994.933333pt;}
.y2_c00067{bottom:1043.253333pt;}
.h3_c00067{height:18.560000pt;}
.h5_c00067{height:25.279987pt;}
.h4_c00067{height:39.680013pt;}
.h6_c00067{height:56.320013pt;}
.h2_c00067{height:57.375000pt;}
.h1_c00067{height:1089.333333pt;}
.h0_c00067{height:1122.666667pt;}
.w2_c00067{width:17.920000pt;}
.w3_c00067{width:95.040000pt;}
.w4_c00067{width:95.359987pt;}
.w6_c00067{width:183.680000pt;}
.w5_c00067{width:189.760000pt;}
.w1_c00067{width:760.000000pt;}
.w0_c00067{width:793.333333pt;}
.x0_c00067{left:0.000000pt;}
.xd_c00067{left:9.600000pt;}
.xb_c00067{left:12.455600pt;}
.x1_c00067{left:16.666667pt;}
.x10_c00067{left:22.042267pt;}
.x8_c00067{left:26.252400pt;}
.xf_c00067{left:27.386000pt;}
.x9_c00067{left:28.475067pt;}
.x14_c00067{left:34.491600pt;}
.x13_c00067{left:38.948667pt;}
.x12_c00067{left:41.167467pt;}
.x2_c00067{left:97.279933pt;}
.x3_c00067{left:121.280000pt;}
.x5_c00067{left:135.080133pt;}
.x6_c00067{left:154.013333pt;}
.x7_c00067{left:189.466667pt;}
.xe_c00067{left:193.626667pt;}
.xc_c00067{left:318.746667pt;}
.x11_c00067{left:468.826667pt;}
.xa_c00067{left:565.146667pt;}
.x4_c00067{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_97d7067941a0b2215234d877.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00068;src:url('chunks/assets/font_33002270f02ef50caeb025e9.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:0.881836;font-style: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;}
.ls2_c00068{letter-spacing:-0.014400px;}
.ls1_c00068{letter-spacing:0.000000px;}
.ls0_c00068{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00068{word-spacing:-0.072000px;}
.ws2_c00068{word-spacing:0.000000px;}
._2_c00068{width:3.564000px;}
._4_c00068{width:4.917600px;}
._9_c00068{width:5.954400px;}
._8_c00068{width:7.178400px;}
._7_c00068{width:8.935200px;}
._c_c00068{width:12.124800px;}
._d_c00068{width:16.675200px;}
._a_c00068{width:21.261600px;}
._6_c00068{width:25.257600px;}
._5_c00068{width:26.373600px;}
._3_c00068{width:32.040000px;}
._b_c00068{width:33.071400px;}
._1_c00068{width:45.352800px;}
._0_c00068{width:1146.683400px;}
.fc1_c00068{color:transparent;}
.fc0_c00068{color:rgb(0,0,0);}
.fs0_c00068{font-size:72.000000px;}
.y0_c00068{bottom:0.000000px;}
.y4_c00068{bottom:4.320000px;}
.y1_c00068{bottom:18.750000px;}
.y2_c00068{bottom:37.860030px;}
.y3_c00068{bottom:52.290030px;}
.y1d_c00068{bottom:125.700030px;}
.y1c_c00068{bottom:167.100000px;}
.y1b_c00068{bottom:208.500000px;}
.y1a_c00068{bottom:249.900000px;}
.y19_c00068{bottom:291.300000px;}
.y18_c00068{bottom:334.140000px;}
.y17_c00068{bottom:375.540000px;}
.y16_c00068{bottom:416.940000px;}
.y15_c00068{bottom:458.340000px;}
.y14_c00068{bottom:499.740000px;}
.y13_c00068{bottom:541.140000px;}
.y12_c00068{bottom:582.540000px;}
.y11_c00068{bottom:623.940000px;}
.y10_c00068{bottom:665.340000px;}
.yf_c00068{bottom:706.740000px;}
.ye_c00068{bottom:748.140000px;}
.yd_c00068{bottom:789.540000px;}
.yc_c00068{bottom:830.940000px;}
.yb_c00068{bottom:872.340000px;}
.ya_c00068{bottom:913.740000px;}
.y9_c00068{bottom:955.140000px;}
.y8_c00068{bottom:996.540000px;}
.y7_c00068{bottom:1037.940000px;}
.y6_c00068{bottom:1079.340000px;}
.y5_c00068{bottom:1120.740000px;}
.h3_c00068{height:20.880000px;}
.h2_c00068{height:64.546875px;}
.h1_c00068{height:1225.500000px;}
.h0_c00068{height:1263.000000px;}
.w2_c00068{width:20.160000px;}
.w1_c00068{width:855.000000px;}
.w0_c00068{width:892.500000px;}
.x0_c00068{left:0.000000px;}
.x1_c00068{left:18.750000px;}
.x3_c00068{left:128.190000px;}
.x2_c00068{left:136.440000px;}
.x5_c00068{left:151.965150px;}
.x4_c00068{left:173.265000px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls2_c00068{letter-spacing:-0.012800pt;}
.ls1_c00068{letter-spacing:0.000000pt;}
.ls0_c00068{letter-spacing:0.012800pt;}
.ws0_c00068{word-spacing:-17.804800pt;}
.ws1_c00068{word-spacing:-0.064000pt;}
.ws2_c00068{word-spacing:0.000000pt;}
._2_c00068{width:3.168000pt;}
._4_c00068{width:4.371200pt;}
._9_c00068{width:5.292800pt;}
._8_c00068{width:6.380800pt;}
._7_c00068{width:7.942400pt;}
._c_c00068{width:10.777600pt;}
._d_c00068{width:14.822400pt;}
._a_c00068{width:18.899200pt;}
._6_c00068{width:22.451200pt;}
._5_c00068{width:23.443200pt;}
._3_c00068{width:28.480000pt;}
._b_c00068{width:29.396800pt;}
._1_c00068{width:40.313600pt;}
._0_c00068{width:1019.274133pt;}
.fs0_c00068{font-size:64.000000pt;}
.y0_c00068{bottom:0.000000pt;}
.y4_c00068{bottom:3.840000pt;}
.y1_c00068{bottom:16.666667pt;}
.y2_c00068{bottom:33.653360pt;}
.y3_c00068{bottom:46.480027pt;}
.y1d_c00068{bottom:111.733360pt;}
.y1c_c00068{bottom:148.533333pt;}
.y1b_c00068{bottom:185.333333pt;}
.y1a_c00068{bottom:222.133333pt;}
.y19_c00068{bottom:258.933333pt;}
.y18_c00068{bottom:297.013333pt;}
.y17_c00068{bottom:333.813333pt;}
.y16_c00068{bottom:370.613333pt;}
.y15_c00068{bottom:407.413333pt;}
.y14_c00068{bottom:444.213333pt;}
.y13_c00068{bottom:481.013333pt;}
.y12_c00068{bottom:517.813333pt;}
.y11_c00068{bottom:554.613333pt;}
.y10_c00068{bottom:591.413333pt;}
.yf_c00068{bottom:628.213333pt;}
.ye_c00068{bottom:665.013333pt;}
.yd_c00068{bottom:701.813333pt;}
.yc_c00068{bottom:738.613333pt;}
.yb_c00068{bottom:775.413333pt;}
.ya_c00068{bottom:812.213333pt;}
.y9_c00068{bottom:849.013333pt;}
.y8_c00068{bottom:885.813333pt;}
.y7_c00068{bottom:922.613333pt;}
.y6_c00068{bottom:959.413333pt;}
.y5_c00068{bottom:996.213333pt;}
.h3_c00068{height:18.560000pt;}
.h2_c00068{height:57.375000pt;}
.h1_c00068{height:1089.333333pt;}
.h0_c00068{height:1122.666667pt;}
.w2_c00068{width:17.920000pt;}
.w1_c00068{width:760.000000pt;}
.w0_c00068{width:793.333333pt;}
.x0_c00068{left:0.000000pt;}
.x1_c00068{left:16.666667pt;}
.x3_c00068{left:113.946667pt;}
.x2_c00068{left:121.280000pt;}
.x5_c00068{left:135.080133pt;}
.x4_c00068{left:154.013333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb36a491cfb988d4909c6e94.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00069;src:url('chunks/assets/font_33002270f02ef50caeb025e9.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.ls1_c00069{letter-spacing:0.000000px;}
.ls0_c00069{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00069{word-spacing:-0.072000px;}
.ws2_c00069{word-spacing:0.000000px;}
._7_c00069{margin-left:-1.013400px;}
._9_c00069{width:1.778400px;}
._a_c00069{width:2.923200px;}
._f_c00069{width:4.435200px;}
._8_c00069{width:5.851200px;}
._4_c00069{width:7.738200px;}
._5_c00069{width:8.882400px;}
._e_c00069{width:10.449600px;}
._b_c00069{width:11.764800px;}
._2_c00069{width:14.875200px;}
._10_c00069{width:16.430400px;}
._c_c00069{width:18.381600px;}
._11_c00069{width:21.412800px;}
._1_c00069{width:28.936800px;}
._3_c00069{width:32.515200px;}
._d_c00069{width:35.488800px;}
._6_c00069{width:43.581600px;}
._12_c00069{width:55.548000px;}
._0_c00069{width:2079.683700px;}
.fc1_c00069{color:transparent;}
.fc0_c00069{color:rgb(0,0,0);}
.fs0_c00069{font-size:72.000000px;}
.y0_c00069{bottom:0.000000px;}
.y5_c00069{bottom:4.320000px;}
.y1_c00069{bottom:18.750000px;}
.y3_c00069{bottom:37.860030px;}
.y4_c00069{bottom:52.290030px;}
.y1e_c00069{bottom:125.700030px;}
.y1d_c00069{bottom:167.100000px;}
.y1c_c00069{bottom:208.500000px;}
.y1b_c00069{bottom:249.900000px;}
.y1a_c00069{bottom:291.300000px;}
.y19_c00069{bottom:332.700000px;}
.y18_c00069{bottom:374.100000px;}
.y17_c00069{bottom:415.500000px;}
.y16_c00069{bottom:456.900000px;}
.y15_c00069{bottom:498.300000px;}
.y14_c00069{bottom:539.700000px;}
.y13_c00069{bottom:581.100000px;}
.y12_c00069{bottom:622.500000px;}
.y11_c00069{bottom:663.900000px;}
.y10_c00069{bottom:705.300000px;}
.yf_c00069{bottom:746.700000px;}
.ye_c00069{bottom:788.100000px;}
.yd_c00069{bottom:829.500000px;}
.yc_c00069{bottom:870.900000px;}
.yb_c00069{bottom:912.300000px;}
.ya_c00069{bottom:955.140000px;}
.y9_c00069{bottom:996.540000px;}
.y8_c00069{bottom:1037.940000px;}
.y7_c00069{bottom:1079.340000px;}
.y6_c00069{bottom:1120.740000px;}
.y2_c00069{bottom:1173.660000px;}
.h3_c00069{height:20.880000px;}
.h2_c00069{height:64.546875px;}
.h1_c00069{height:1225.500000px;}
.h0_c00069{height:1263.000000px;}
.w2_c00069{width:20.160000px;}
.w1_c00069{width:855.000000px;}
.w0_c00069{width:892.500000px;}
.x0_c00069{left:0.000000px;}
.x1_c00069{left:18.750000px;}
.x2_c00069{left:109.439925px;}
.x3_c00069{left:136.440000px;}
.x6_c00069{left:151.965150px;}
.x5_c00069{left:173.265000px;}
.x7_c00069{left:379.080000px;}
.x4_c00069{left:745.590000px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls1_c00069{letter-spacing:0.000000pt;}
.ls0_c00069{letter-spacing:0.012800pt;}
.ws0_c00069{word-spacing:-17.804800pt;}
.ws1_c00069{word-spacing:-0.064000pt;}
.ws2_c00069{word-spacing:0.000000pt;}
._7_c00069{margin-left:-0.900800pt;}
._9_c00069{width:1.580800pt;}
._a_c00069{width:2.598400pt;}
._f_c00069{width:3.942400pt;}
._8_c00069{width:5.201067pt;}
._4_c00069{width:6.878400pt;}
._5_c00069{width:7.895467pt;}
._e_c00069{width:9.288533pt;}
._b_c00069{width:10.457600pt;}
._2_c00069{width:13.222400pt;}
._10_c00069{width:14.604800pt;}
._c_c00069{width:16.339200pt;}
._11_c00069{width:19.033600pt;}
._1_c00069{width:25.721600pt;}
._3_c00069{width:28.902400pt;}
._d_c00069{width:31.545600pt;}
._6_c00069{width:38.739200pt;}
._12_c00069{width:49.376000pt;}
._0_c00069{width:1848.607733pt;}
.fs0_c00069{font-size:64.000000pt;}
.y0_c00069{bottom:0.000000pt;}
.y5_c00069{bottom:3.840000pt;}
.y1_c00069{bottom:16.666667pt;}
.y3_c00069{bottom:33.653360pt;}
.y4_c00069{bottom:46.480027pt;}
.y1e_c00069{bottom:111.733360pt;}
.y1d_c00069{bottom:148.533333pt;}
.y1c_c00069{bottom:185.333333pt;}
.y1b_c00069{bottom:222.133333pt;}
.y1a_c00069{bottom:258.933333pt;}
.y19_c00069{bottom:295.733333pt;}
.y18_c00069{bottom:332.533333pt;}
.y17_c00069{bottom:369.333333pt;}
.y16_c00069{bottom:406.133333pt;}
.y15_c00069{bottom:442.933333pt;}
.y14_c00069{bottom:479.733333pt;}
.y13_c00069{bottom:516.533333pt;}
.y12_c00069{bottom:553.333333pt;}
.y11_c00069{bottom:590.133333pt;}
.y10_c00069{bottom:626.933333pt;}
.yf_c00069{bottom:663.733333pt;}
.ye_c00069{bottom:700.533333pt;}
.yd_c00069{bottom:737.333333pt;}
.yc_c00069{bottom:774.133333pt;}
.yb_c00069{bottom:810.933333pt;}
.ya_c00069{bottom:849.013333pt;}
.y9_c00069{bottom:885.813333pt;}
.y8_c00069{bottom:922.613333pt;}
.y7_c00069{bottom:959.413333pt;}
.y6_c00069{bottom:996.213333pt;}
.y2_c00069{bottom:1043.253333pt;}
.h3_c00069{height:18.560000pt;}
.h2_c00069{height:57.375000pt;}
.h1_c00069{height:1089.333333pt;}
.h0_c00069{height:1122.666667pt;}
.w2_c00069{width:17.920000pt;}
.w1_c00069{width:760.000000pt;}
.w0_c00069{width:793.333333pt;}
.x0_c00069{left:0.000000pt;}
.x1_c00069{left:16.666667pt;}
.x2_c00069{left:97.279933pt;}
.x3_c00069{left:121.280000pt;}
.x6_c00069{left:135.080133pt;}
.x5_c00069{left:154.013333pt;}
.x7_c00069{left:336.960000pt;}
.x4_c00069{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c935a988cc90271795f45053.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00070;src:url('chunks/assets/font_33002270f02ef50caeb025e9.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00070;src:url('chunks/assets/font_98dee0f2a7c56f4e1972d8ff.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:1.104492;font-style: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;}
.ls2_c00070{letter-spacing:-0.014400px;}
.ls1_c00070{letter-spacing:0.000000px;}
.ls0_c00070{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws2_c00070{word-spacing:-20.016000px;}
.ws1_c00070{word-spacing:-0.072000px;}
.ws3_c00070{word-spacing:0.000000px;}
._6_c00070{width:1.461600px;}
._b_c00070{width:2.887200px;}
._9_c00070{width:4.392000px;}
._4_c00070{width:6.192000px;}
._a_c00070{width:9.354000px;}
._8_c00070{width:12.787200px;}
._3_c00070{width:14.392800px;}
._2_c00070{width:16.048800px;}
._c_c00070{width:18.519600px;}
._5_c00070{width:21.571800px;}
._d_c00070{width:23.652000px;}
._f_c00070{width:26.949600px;}
._e_c00070{width:30.715200px;}
._1_c00070{width:32.049000px;}
._7_c00070{width:179.027400px;}
._0_c00070{width:1146.683400px;}
.fc1_c00070{color:transparent;}
.fc0_c00070{color:rgb(0,0,0);}
.fs0_c00070{font-size:72.000000px;}
.y0_c00070{bottom:0.000000px;}
.y4_c00070{bottom:4.320000px;}
.y1_c00070{bottom:18.750000px;}
.y2_c00070{bottom:37.860030px;}
.y3_c00070{bottom:52.290030px;}
.y1d_c00070{bottom:125.700030px;}
.y1c_c00070{bottom:167.100000px;}
.y1b_c00070{bottom:208.500000px;}
.y1a_c00070{bottom:249.900000px;}
.y19_c00070{bottom:291.300000px;}
.y18_c00070{bottom:332.700000px;}
.y17_c00070{bottom:374.100000px;}
.y16_c00070{bottom:415.500000px;}
.y15_c00070{bottom:456.900000px;}
.y14_c00070{bottom:498.300000px;}
.y13_c00070{bottom:539.700000px;}
.y12_c00070{bottom:581.100000px;}
.y11_c00070{bottom:622.500000px;}
.y10_c00070{bottom:663.900000px;}
.yf_c00070{bottom:705.300000px;}
.ye_c00070{bottom:746.700000px;}
.yd_c00070{bottom:788.100000px;}
.yc_c00070{bottom:829.500000px;}
.yb_c00070{bottom:870.900000px;}
.ya_c00070{bottom:912.300000px;}
.y9_c00070{bottom:953.700000px;}
.y8_c00070{bottom:995.100000px;}
.y7_c00070{bottom:1036.500000px;}
.y6_c00070{bottom:1077.900000px;}
.y5_c00070{bottom:1119.300000px;}
.h3_c00070{height:20.880000px;}
.h2_c00070{height:64.546875px;}
.h1_c00070{height:1225.500000px;}
.h0_c00070{height:1263.000000px;}
.w2_c00070{width:20.160000px;}
.w1_c00070{width:855.000000px;}
.w0_c00070{width:892.500000px;}
.x0_c00070{left:0.000000px;}
.x1_c00070{left:18.750000px;}
.x3_c00070{left:128.190000px;}
.x2_c00070{left:136.440000px;}
.x4_c00070{left:151.965150px;}
.x5_c00070{left:173.265000px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls2_c00070{letter-spacing:-0.012800pt;}
.ls1_c00070{letter-spacing:0.000000pt;}
.ls0_c00070{letter-spacing:0.012800pt;}
.ws0_c00070{word-spacing:-17.804800pt;}
.ws2_c00070{word-spacing:-17.792000pt;}
.ws1_c00070{word-spacing:-0.064000pt;}
.ws3_c00070{word-spacing:0.000000pt;}
._6_c00070{width:1.299200pt;}
._b_c00070{width:2.566400pt;}
._9_c00070{width:3.904000pt;}
._4_c00070{width:5.504000pt;}
._a_c00070{width:8.314667pt;}
._8_c00070{width:11.366400pt;}
._3_c00070{width:12.793600pt;}
._2_c00070{width:14.265600pt;}
._c_c00070{width:16.461867pt;}
._5_c00070{width:19.174933pt;}
._d_c00070{width:21.024000pt;}
._f_c00070{width:23.955200pt;}
._e_c00070{width:27.302400pt;}
._1_c00070{width:28.488000pt;}
._7_c00070{width:159.135467pt;}
._0_c00070{width:1019.274133pt;}
.fs0_c00070{font-size:64.000000pt;}
.y0_c00070{bottom:0.000000pt;}
.y4_c00070{bottom:3.840000pt;}
.y1_c00070{bottom:16.666667pt;}
.y2_c00070{bottom:33.653360pt;}
.y3_c00070{bottom:46.480027pt;}
.y1d_c00070{bottom:111.733360pt;}
.y1c_c00070{bottom:148.533333pt;}
.y1b_c00070{bottom:185.333333pt;}
.y1a_c00070{bottom:222.133333pt;}
.y19_c00070{bottom:258.933333pt;}
.y18_c00070{bottom:295.733333pt;}
.y17_c00070{bottom:332.533333pt;}
.y16_c00070{bottom:369.333333pt;}
.y15_c00070{bottom:406.133333pt;}
.y14_c00070{bottom:442.933333pt;}
.y13_c00070{bottom:479.733333pt;}
.y12_c00070{bottom:516.533333pt;}
.y11_c00070{bottom:553.333333pt;}
.y10_c00070{bottom:590.133333pt;}
.yf_c00070{bottom:626.933333pt;}
.ye_c00070{bottom:663.733333pt;}
.yd_c00070{bottom:700.533333pt;}
.yc_c00070{bottom:737.333333pt;}
.yb_c00070{bottom:774.133333pt;}
.ya_c00070{bottom:810.933333pt;}
.y9_c00070{bottom:847.733333pt;}
.y8_c00070{bottom:884.533333pt;}
.y7_c00070{bottom:921.333333pt;}
.y6_c00070{bottom:958.133333pt;}
.y5_c00070{bottom:994.933333pt;}
.h3_c00070{height:18.560000pt;}
.h2_c00070{height:57.375000pt;}
.h1_c00070{height:1089.333333pt;}
.h0_c00070{height:1122.666667pt;}
.w2_c00070{width:17.920000pt;}
.w1_c00070{width:760.000000pt;}
.w0_c00070{width:793.333333pt;}
.x0_c00070{left:0.000000pt;}
.x1_c00070{left:16.666667pt;}
.x3_c00070{left:113.946667pt;}
.x2_c00070{left:121.280000pt;}
.x4_c00070{left:135.080133pt;}
.x5_c00070{left:154.013333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5a2e45a57abc46e286625db.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00071;src:url('chunks/assets/font_2f482e04fe34fe77ff306f30.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:1.104492;font-style: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;}
.ls5_c00071{letter-spacing:-0.014400px;}
.ls4_c00071{letter-spacing:0.000000px;}
.ls0_c00071{letter-spacing:0.014400px;}
.ls9_c00071{letter-spacing:0.324000px;}
.ls7_c00071{letter-spacing:0.602640px;}
.ls3_c00071{letter-spacing:0.667440px;}
.ls1_c00071{letter-spacing:0.677400px;}
.ls2_c00071{letter-spacing:0.680400px;}
.ls8_c00071{letter-spacing:0.797040px;}
.ls6_c00071{letter-spacing:0.874800px;}
.lsa_c00071{letter-spacing:0.920160px;}
.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:-20.030400px;}
.ws4_c00071{word-spacing:-18.889200px;}
.ws6_c00071{word-spacing:-18.811440px;}
.ws2_c00071{word-spacing:-18.694800px;}
.ws5_c00071{word-spacing:-18.681840px;}
.ws1_c00071{word-spacing:-18.617040px;}
.ws3_c00071{word-spacing:-18.338400px;}
.ws7_c00071{word-spacing:0.000000px;}
._c_c00071{margin-left:-1.490400px;}
._6_c00071{width:1.188000px;}
._1_c00071{width:3.607200px;}
._e_c00071{width:4.665600px;}
._d_c00071{width:6.091200px;}
._4_c00071{width:7.365600px;}
._2_c00071{width:8.366400px;}
._f_c00071{width:9.936000px;}
._3_c00071{width:12.045600px;}
._b_c00071{width:18.266400px;}
._10_c00071{width:19.612800px;}
._5_c00071{width:21.052800px;}
._7_c00071{width:22.860000px;}
._8_c00071{width:24.281400px;}
._9_c00071{width:28.843200px;}
._a_c00071{width:60.084000px;}
._0_c00071{width:2079.683700px;}
.fc1_c00071{color:transparent;}
.fc0_c00071{color:rgb(0,0,0);}
.fs1_c00071{font-size:64.800000px;}
.fs0_c00071{font-size:72.000000px;}
.y0_c00071{bottom:0.000000px;}
.y23_c00071{bottom:3.600000px;}
.y19_c00071{bottom:3.960000px;}
.y5_c00071{bottom:4.320000px;}
.y1_c00071{bottom:18.750000px;}
.y22_c00071{bottom:22.679970px;}
.y1c_c00071{bottom:22.680000px;}
.y18_c00071{bottom:23.040000px;}
.y3_c00071{bottom:37.860030px;}
.y21_c00071{bottom:41.759970px;}
.y1b_c00071{bottom:41.760000px;}
.y4_c00071{bottom:52.290030px;}
.y1f_c00071{bottom:60.840000px;}
.y24_c00071{bottom:107.010030px;}
.y20_c00071{bottom:145.890030px;}
.y1e_c00071{bottom:203.490000px;}
.y1d_c00071{bottom:280.170000px;}
.y1a_c00071{bottom:337.770000px;}
.y17_c00071{bottom:395.370000px;}
.y16_c00071{bottom:458.340000px;}
.y15_c00071{bottom:499.740000px;}
.y14_c00071{bottom:541.140000px;}
.y13_c00071{bottom:582.540000px;}
.y12_c00071{bottom:623.940000px;}
.y11_c00071{bottom:665.340000px;}
.y10_c00071{bottom:706.740000px;}
.yf_c00071{bottom:748.140000px;}
.ye_c00071{bottom:789.540000px;}
.yd_c00071{bottom:830.940000px;}
.yc_c00071{bottom:872.340000px;}
.yb_c00071{bottom:913.740000px;}
.ya_c00071{bottom:955.140000px;}
.y9_c00071{bottom:996.540000px;}
.y8_c00071{bottom:1037.940000px;}
.y7_c00071{bottom:1079.340000px;}
.y6_c00071{bottom:1120.740000px;}
.y2_c00071{bottom:1173.660000px;}
.h3_c00071{height:20.880000px;}
.h9_c00071{height:38.159985px;}
.h4_c00071{height:38.160000px;}
.h6_c00071{height:56.880000px;}
.h8_c00071{height:56.880015px;}
.h5_c00071{height:58.092188px;}
.h2_c00071{height:64.546875px;}
.h7_c00071{height:75.960000px;}
.h1_c00071{height:1225.500000px;}
.h0_c00071{height:1263.000000px;}
.w2_c00071{width:20.160000px;}
.w4_c00071{width:287.280000px;}
.w3_c00071{width:292.680000px;}
.w1_c00071{width:855.000000px;}
.w0_c00071{width:892.500000px;}
.x0_c00071{left:0.000000px;}
.xb_c00071{left:7.560000px;}
.x1_c00071{left:18.750000px;}
.xa_c00071{left:61.283550px;}
.x7_c00071{left:66.479250px;}
.x2_c00071{left:109.439925px;}
.x3_c00071{left:136.440000px;}
.x8_c00071{left:146.272200px;}
.x5_c00071{left:173.265000px;}
.x6_c00071{left:192.630000px;}
.x9_c00071{left:486.030000px;}
.x4_c00071{left:745.590000px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls5_c00071{letter-spacing:-0.012800pt;}
.ls4_c00071{letter-spacing:0.000000pt;}
.ls0_c00071{letter-spacing:0.012800pt;}
.ls9_c00071{letter-spacing:0.288000pt;}
.ls7_c00071{letter-spacing:0.535680pt;}
.ls3_c00071{letter-spacing:0.593280pt;}
.ls1_c00071{letter-spacing:0.602133pt;}
.ls2_c00071{letter-spacing:0.604800pt;}
.ls8_c00071{letter-spacing:0.708480pt;}
.ls6_c00071{letter-spacing:0.777600pt;}
.lsa_c00071{letter-spacing:0.817920pt;}
.ws0_c00071{word-spacing:-17.804800pt;}
.ws4_c00071{word-spacing:-16.790400pt;}
.ws6_c00071{word-spacing:-16.721280pt;}
.ws2_c00071{word-spacing:-16.617600pt;}
.ws5_c00071{word-spacing:-16.606080pt;}
.ws1_c00071{word-spacing:-16.548480pt;}
.ws3_c00071{word-spacing:-16.300800pt;}
.ws7_c00071{word-spacing:0.000000pt;}
._c_c00071{margin-left:-1.324800pt;}
._6_c00071{width:1.056000pt;}
._1_c00071{width:3.206400pt;}
._e_c00071{width:4.147200pt;}
._d_c00071{width:5.414400pt;}
._4_c00071{width:6.547200pt;}
._2_c00071{width:7.436800pt;}
._f_c00071{width:8.832000pt;}
._3_c00071{width:10.707200pt;}
._b_c00071{width:16.236800pt;}
._10_c00071{width:17.433600pt;}
._5_c00071{width:18.713600pt;}
._7_c00071{width:20.320000pt;}
._8_c00071{width:21.583467pt;}
._9_c00071{width:25.638400pt;}
._a_c00071{width:53.408000pt;}
._0_c00071{width:1848.607733pt;}
.fs1_c00071{font-size:57.600000pt;}
.fs0_c00071{font-size:64.000000pt;}
.y0_c00071{bottom:0.000000pt;}
.y23_c00071{bottom:3.200000pt;}
.y19_c00071{bottom:3.520000pt;}
.y5_c00071{bottom:3.840000pt;}
.y1_c00071{bottom:16.666667pt;}
.y22_c00071{bottom:20.159973pt;}
.y1c_c00071{bottom:20.160000pt;}
.y18_c00071{bottom:20.480000pt;}
.y3_c00071{bottom:33.653360pt;}
.y21_c00071{bottom:37.119973pt;}
.y1b_c00071{bottom:37.120000pt;}
.y4_c00071{bottom:46.480027pt;}
.y1f_c00071{bottom:54.080000pt;}
.y24_c00071{bottom:95.120027pt;}
.y20_c00071{bottom:129.680027pt;}
.y1e_c00071{bottom:180.880000pt;}
.y1d_c00071{bottom:249.040000pt;}
.y1a_c00071{bottom:300.240000pt;}
.y17_c00071{bottom:351.440000pt;}
.y16_c00071{bottom:407.413333pt;}
.y15_c00071{bottom:444.213333pt;}
.y14_c00071{bottom:481.013333pt;}
.y13_c00071{bottom:517.813333pt;}
.y12_c00071{bottom:554.613333pt;}
.y11_c00071{bottom:591.413333pt;}
.y10_c00071{bottom:628.213333pt;}
.yf_c00071{bottom:665.013333pt;}
.ye_c00071{bottom:701.813333pt;}
.yd_c00071{bottom:738.613333pt;}
.yc_c00071{bottom:775.413333pt;}
.yb_c00071{bottom:812.213333pt;}
.ya_c00071{bottom:849.013333pt;}
.y9_c00071{bottom:885.813333pt;}
.y8_c00071{bottom:922.613333pt;}
.y7_c00071{bottom:959.413333pt;}
.y6_c00071{bottom:996.213333pt;}
.y2_c00071{bottom:1043.253333pt;}
.h3_c00071{height:18.560000pt;}
.h9_c00071{height:33.919987pt;}
.h4_c00071{height:33.920000pt;}
.h6_c00071{height:50.560000pt;}
.h8_c00071{height:50.560013pt;}
.h5_c00071{height:51.637500pt;}
.h2_c00071{height:57.375000pt;}
.h7_c00071{height:67.520000pt;}
.h1_c00071{height:1089.333333pt;}
.h0_c00071{height:1122.666667pt;}
.w2_c00071{width:17.920000pt;}
.w4_c00071{width:255.360000pt;}
.w3_c00071{width:260.160000pt;}
.w1_c00071{width:760.000000pt;}
.w0_c00071{width:793.333333pt;}
.x0_c00071{left:0.000000pt;}
.xb_c00071{left:6.720000pt;}
.x1_c00071{left:16.666667pt;}
.xa_c00071{left:54.474267pt;}
.x7_c00071{left:59.092667pt;}
.x2_c00071{left:97.279933pt;}
.x3_c00071{left:121.280000pt;}
.x8_c00071{left:130.019733pt;}
.x5_c00071{left:154.013333pt;}
.x6_c00071{left:171.226667pt;}
.x9_c00071{left:432.026667pt;}
.x4_c00071{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_47ae8cda6d5796bd1d65f8f7.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00072;src:url('chunks/assets/font_33002270f02ef50caeb025e9.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.ls3_c00072{letter-spacing:0.000000px;}
.ls2_c00072{letter-spacing:0.014400px;}
.lsa_c00072{letter-spacing:0.036000px;}
.ls8_c00072{letter-spacing:0.401760px;}
.ls6_c00072{letter-spacing:0.602640px;}
.ls1_c00072{letter-spacing:0.667440px;}
.ls0_c00072{letter-spacing:0.680400px;}
.ls9_c00072{letter-spacing:0.725760px;}
.ls5_c00072{letter-spacing:0.797040px;}
.ls4_c00072{letter-spacing:0.874800px;}
.ls7_c00072{letter-spacing:0.920160px;}
.sc__c00072{text-shadow:none;}
.sc0_c00072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00072{-webkit-text-stroke:0px transparent;}
.sc0_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00072{word-spacing:-20.030400px;}
.ws1_c00072{word-spacing:-18.889200px;}
.ws5_c00072{word-spacing:-18.811440px;}
.ws2_c00072{word-spacing:-18.694800px;}
.ws4_c00072{word-spacing:-18.681840px;}
.ws3_c00072{word-spacing:-18.617040px;}
.ws6_c00072{word-spacing:-0.072000px;}
.ws7_c00072{word-spacing:0.000000px;}
._1_c00072{margin-left:-1.555200px;}
._6_c00072{width:1.166400px;}
._b_c00072{width:2.300100px;}
._2_c00072{width:3.304800px;}
._e_c00072{width:6.264000px;}
._8_c00072{width:9.532800px;}
._c_c00072{width:11.001600px;}
._f_c00072{width:18.352800px;}
._4_c00072{width:27.212640px;}
._9_c00072{width:32.049000px;}
._d_c00072{width:42.926400px;}
._a_c00072{width:49.975200px;}
._5_c00072{width:58.579200px;}
._7_c00072{width:60.523200px;}
._3_c00072{width:97.848000px;}
._0_c00072{width:1146.683400px;}
.fc1_c00072{color:transparent;}
.fc0_c00072{color:rgb(0,0,0);}
.fs1_c00072{font-size:64.800000px;}
.fs0_c00072{font-size:72.000000px;}
.y0_c00072{bottom:0.000000px;}
.ya_c00072{bottom:3.600000px;}
.y7_c00072{bottom:3.960000px;}
.y4_c00072{bottom:4.320000px;}
.y1_c00072{bottom:18.750000px;}
.y9_c00072{bottom:22.680000px;}
.y6_c00072{bottom:23.040000px;}
.y2_c00072{bottom:37.860030px;}
.yd_c00072{bottom:41.760000px;}
.y3_c00072{bottom:52.290030px;}
.yc_c00072{bottom:60.840000px;}
.y20_c00072{bottom:100.500030px;}
.y1f_c00072{bottom:141.900000px;}
.y1e_c00072{bottom:183.300000px;}
.y1d_c00072{bottom:224.700000px;}
.y1c_c00072{bottom:265.740000px;}
.y1b_c00072{bottom:317.580000px;}
.y1a_c00072{bottom:358.980000px;}
.y19_c00072{bottom:400.380000px;}
.y18_c00072{bottom:450.420000px;}
.y17_c00072{bottom:493.260000px;}
.y16_c00072{bottom:535.740000px;}
.y15_c00072{bottom:578.220000px;}
.y14_c00072{bottom:621.060000px;}
.y13_c00072{bottom:663.540000px;}
.y12_c00072{bottom:715.380000px;}
.y11_c00072{bottom:756.780000px;}
.y10_c00072{bottom:828.810000px;}
.yf_c00072{bottom:886.410000px;}
.ye_c00072{bottom:944.370000px;}
.yb_c00072{bottom:1001.970000px;}
.y8_c00072{bottom:1078.650000px;}
.y5_c00072{bottom:1117.170000px;}
.h3_c00072{height:20.880000px;}
.h6_c00072{height:37.800015px;}
.h4_c00072{height:38.160000px;}
.h8_c00072{height:56.879970px;}
.h5_c00072{height:58.092188px;}
.h2_c00072{height:64.546875px;}
.h7_c00072{height:75.960015px;}
.h1_c00072{height:1225.500000px;}
.h0_c00072{height:1263.000000px;}
.w2_c00072{width:20.160000px;}
.w4_c00072{width:287.280000px;}
.w3_c00072{width:292.680000px;}
.w1_c00072{width:855.000000px;}
.w0_c00072{width:892.500000px;}
.x0_c00072{left:0.000000px;}
.x5_c00072{left:7.560000px;}
.x1_c00072{left:18.750000px;}
.x8_c00072{left:109.439925px;}
.x3_c00072{left:128.190000px;}
.x2_c00072{left:136.440000px;}
.x7_c00072{left:151.965150px;}
.x9_c00072{left:173.265000px;}
.x4_c00072{left:192.630000px;}
.x6_c00072{left:486.030000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls3_c00072{letter-spacing:0.000000pt;}
.ls2_c00072{letter-spacing:0.012800pt;}
.lsa_c00072{letter-spacing:0.032000pt;}
.ls8_c00072{letter-spacing:0.357120pt;}
.ls6_c00072{letter-spacing:0.535680pt;}
.ls1_c00072{letter-spacing:0.593280pt;}
.ls0_c00072{letter-spacing:0.604800pt;}
.ls9_c00072{letter-spacing:0.645120pt;}
.ls5_c00072{letter-spacing:0.708480pt;}
.ls4_c00072{letter-spacing:0.777600pt;}
.ls7_c00072{letter-spacing:0.817920pt;}
.ws0_c00072{word-spacing:-17.804800pt;}
.ws1_c00072{word-spacing:-16.790400pt;}
.ws5_c00072{word-spacing:-16.721280pt;}
.ws2_c00072{word-spacing:-16.617600pt;}
.ws4_c00072{word-spacing:-16.606080pt;}
.ws3_c00072{word-spacing:-16.548480pt;}
.ws6_c00072{word-spacing:-0.064000pt;}
.ws7_c00072{word-spacing:0.000000pt;}
._1_c00072{margin-left:-1.382400pt;}
._6_c00072{width:1.036800pt;}
._b_c00072{width:2.044533pt;}
._2_c00072{width:2.937600pt;}
._e_c00072{width:5.568000pt;}
._8_c00072{width:8.473600pt;}
._c_c00072{width:9.779200pt;}
._f_c00072{width:16.313600pt;}
._4_c00072{width:24.189013pt;}
._9_c00072{width:28.488000pt;}
._d_c00072{width:38.156800pt;}
._a_c00072{width:44.422400pt;}
._5_c00072{width:52.070400pt;}
._7_c00072{width:53.798400pt;}
._3_c00072{width:86.976000pt;}
._0_c00072{width:1019.274133pt;}
.fs1_c00072{font-size:57.600000pt;}
.fs0_c00072{font-size:64.000000pt;}
.y0_c00072{bottom:0.000000pt;}
.ya_c00072{bottom:3.200000pt;}
.y7_c00072{bottom:3.520000pt;}
.y4_c00072{bottom:3.840000pt;}
.y1_c00072{bottom:16.666667pt;}
.y9_c00072{bottom:20.160000pt;}
.y6_c00072{bottom:20.480000pt;}
.y2_c00072{bottom:33.653360pt;}
.yd_c00072{bottom:37.120000pt;}
.y3_c00072{bottom:46.480027pt;}
.yc_c00072{bottom:54.080000pt;}
.y20_c00072{bottom:89.333360pt;}
.y1f_c00072{bottom:126.133333pt;}
.y1e_c00072{bottom:162.933333pt;}
.y1d_c00072{bottom:199.733333pt;}
.y1c_c00072{bottom:236.213333pt;}
.y1b_c00072{bottom:282.293333pt;}
.y1a_c00072{bottom:319.093333pt;}
.y19_c00072{bottom:355.893333pt;}
.y18_c00072{bottom:400.373333pt;}
.y17_c00072{bottom:438.453333pt;}
.y16_c00072{bottom:476.213333pt;}
.y15_c00072{bottom:513.973333pt;}
.y14_c00072{bottom:552.053333pt;}
.y13_c00072{bottom:589.813333pt;}
.y12_c00072{bottom:635.893333pt;}
.y11_c00072{bottom:672.693333pt;}
.y10_c00072{bottom:736.720000pt;}
.yf_c00072{bottom:787.920000pt;}
.ye_c00072{bottom:839.440000pt;}
.yb_c00072{bottom:890.640000pt;}
.y8_c00072{bottom:958.800000pt;}
.y5_c00072{bottom:993.040000pt;}
.h3_c00072{height:18.560000pt;}
.h6_c00072{height:33.600013pt;}
.h4_c00072{height:33.920000pt;}
.h8_c00072{height:50.559973pt;}
.h5_c00072{height:51.637500pt;}
.h2_c00072{height:57.375000pt;}
.h7_c00072{height:67.520013pt;}
.h1_c00072{height:1089.333333pt;}
.h0_c00072{height:1122.666667pt;}
.w2_c00072{width:17.920000pt;}
.w4_c00072{width:255.360000pt;}
.w3_c00072{width:260.160000pt;}
.w1_c00072{width:760.000000pt;}
.w0_c00072{width:793.333333pt;}
.x0_c00072{left:0.000000pt;}
.x5_c00072{left:6.720000pt;}
.x1_c00072{left:16.666667pt;}
.x8_c00072{left:97.279933pt;}
.x3_c00072{left:113.946667pt;}
.x2_c00072{left:121.280000pt;}
.x7_c00072{left:135.080133pt;}
.x9_c00072{left:154.013333pt;}
.x4_c00072{left:171.226667pt;}
.x6_c00072{left:432.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a47f2fea9f9ee48100197b1a.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00073;src:url('chunks/assets/font_33002270f02ef50caeb025e9.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00073;src:url('chunks/assets/font_824db6c56db43fb4ac9b412c.woff2')format("woff");}.ff3_c00073{font-family:ff3_c00073;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.ls1_c00073{letter-spacing:0.000000px;}
.ls0_c00073{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00073{word-spacing:-0.072000px;}
.ws2_c00073{word-spacing:0.000000px;}
._7_c00073{width:1.944000px;}
._d_c00073{width:4.176000px;}
._8_c00073{width:6.105600px;}
._5_c00073{width:8.035200px;}
._6_c00073{width:9.993600px;}
._10_c00073{width:12.880800px;}
._3_c00073{width:14.241600px;}
._4_c00073{width:16.430400px;}
._2_c00073{width:18.021600px;}
._b_c00073{width:19.022400px;}
._1_c00073{width:32.049000px;}
._c_c00073{width:33.710400px;}
._e_c00073{width:37.346400px;}
._f_c00073{width:42.271200px;}
._a_c00073{width:47.714400px;}
._9_c00073{width:171.569700px;}
._0_c00073{width:2079.683700px;}
.fc1_c00073{color:transparent;}
.fc0_c00073{color:rgb(0,0,0);}
.fs0_c00073{font-size:72.000000px;}
.y0_c00073{bottom:0.000000px;}
.y5_c00073{bottom:4.320000px;}
.y1_c00073{bottom:18.750000px;}
.y3_c00073{bottom:37.860030px;}
.y4_c00073{bottom:52.290030px;}
.y1e_c00073{bottom:105.540030px;}
.y1d_c00073{bottom:146.940000px;}
.y1c_c00073{bottom:188.340000px;}
.y1b_c00073{bottom:229.740000px;}
.y1a_c00073{bottom:271.140000px;}
.y19_c00073{bottom:312.540000px;}
.y18_c00073{bottom:353.940000px;}
.y17_c00073{bottom:395.340000px;}
.y16_c00073{bottom:436.740000px;}
.y15_c00073{bottom:487.140000px;}
.y14_c00073{bottom:528.540000px;}
.y13_c00073{bottom:578.940000px;}
.y12_c00073{bottom:620.340000px;}
.y11_c00073{bottom:661.740000px;}
.y10_c00073{bottom:703.140000px;}
.yf_c00073{bottom:744.180000px;}
.ye_c00073{bottom:787.020000px;}
.yd_c00073{bottom:828.420000px;}
.yc_c00073{bottom:869.820000px;}
.yb_c00073{bottom:910.860000px;}
.ya_c00073{bottom:953.700000px;}
.y9_c00073{bottom:995.100000px;}
.y8_c00073{bottom:1036.500000px;}
.y7_c00073{bottom:1077.900000px;}
.y6_c00073{bottom:1119.300000px;}
.y2_c00073{bottom:1173.660000px;}
.h3_c00073{height:20.880000px;}
.h4_c00073{height:64.371094px;}
.h2_c00073{height:64.546875px;}
.h1_c00073{height:1225.500000px;}
.h0_c00073{height:1263.000000px;}
.w2_c00073{width:20.160000px;}
.w1_c00073{width:855.000000px;}
.w0_c00073{width:892.500000px;}
.x0_c00073{left:0.000000px;}
.x1_c00073{left:18.750000px;}
.x2_c00073{left:109.439925px;}
.x3_c00073{left:136.440000px;}
.x5_c00073{left:151.965150px;}
.x6_c00073{left:173.265000px;}
.x4_c00073{left:745.590000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls1_c00073{letter-spacing:0.000000pt;}
.ls0_c00073{letter-spacing:0.012800pt;}
.ws0_c00073{word-spacing:-17.804800pt;}
.ws1_c00073{word-spacing:-0.064000pt;}
.ws2_c00073{word-spacing:0.000000pt;}
._7_c00073{width:1.728000pt;}
._d_c00073{width:3.712000pt;}
._8_c00073{width:5.427200pt;}
._5_c00073{width:7.142400pt;}
._6_c00073{width:8.883200pt;}
._10_c00073{width:11.449600pt;}
._3_c00073{width:12.659200pt;}
._4_c00073{width:14.604800pt;}
._2_c00073{width:16.019200pt;}
._b_c00073{width:16.908800pt;}
._1_c00073{width:28.488000pt;}
._c_c00073{width:29.964800pt;}
._e_c00073{width:33.196800pt;}
._f_c00073{width:37.574400pt;}
._a_c00073{width:42.412800pt;}
._9_c00073{width:152.506400pt;}
._0_c00073{width:1848.607733pt;}
.fs0_c00073{font-size:64.000000pt;}
.y0_c00073{bottom:0.000000pt;}
.y5_c00073{bottom:3.840000pt;}
.y1_c00073{bottom:16.666667pt;}
.y3_c00073{bottom:33.653360pt;}
.y4_c00073{bottom:46.480027pt;}
.y1e_c00073{bottom:93.813360pt;}
.y1d_c00073{bottom:130.613333pt;}
.y1c_c00073{bottom:167.413333pt;}
.y1b_c00073{bottom:204.213333pt;}
.y1a_c00073{bottom:241.013333pt;}
.y19_c00073{bottom:277.813333pt;}
.y18_c00073{bottom:314.613333pt;}
.y17_c00073{bottom:351.413333pt;}
.y16_c00073{bottom:388.213333pt;}
.y15_c00073{bottom:433.013333pt;}
.y14_c00073{bottom:469.813333pt;}
.y13_c00073{bottom:514.613333pt;}
.y12_c00073{bottom:551.413333pt;}
.y11_c00073{bottom:588.213333pt;}
.y10_c00073{bottom:625.013333pt;}
.yf_c00073{bottom:661.493333pt;}
.ye_c00073{bottom:699.573333pt;}
.yd_c00073{bottom:736.373333pt;}
.yc_c00073{bottom:773.173333pt;}
.yb_c00073{bottom:809.653333pt;}
.ya_c00073{bottom:847.733333pt;}
.y9_c00073{bottom:884.533333pt;}
.y8_c00073{bottom:921.333333pt;}
.y7_c00073{bottom:958.133333pt;}
.y6_c00073{bottom:994.933333pt;}
.y2_c00073{bottom:1043.253333pt;}
.h3_c00073{height:18.560000pt;}
.h4_c00073{height:57.218750pt;}
.h2_c00073{height:57.375000pt;}
.h1_c00073{height:1089.333333pt;}
.h0_c00073{height:1122.666667pt;}
.w2_c00073{width:17.920000pt;}
.w1_c00073{width:760.000000pt;}
.w0_c00073{width:793.333333pt;}
.x0_c00073{left:0.000000pt;}
.x1_c00073{left:16.666667pt;}
.x2_c00073{left:97.279933pt;}
.x3_c00073{left:121.280000pt;}
.x5_c00073{left:135.080133pt;}
.x6_c00073{left:154.013333pt;}
.x4_c00073{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e24bec37f0da98d66587c265.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00074;src:url('chunks/assets/font_c70784c86392da0617ffdf50.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.ls1_c00074{letter-spacing:0.000000px;}
.ls0_c00074{letter-spacing:0.014400px;}
.sc__c00074{text-shadow:none;}
.sc0_c00074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00074{-webkit-text-stroke:0px transparent;}
.sc0_c00074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00074{word-spacing:-20.030400px;}
.ws1_c00074{word-spacing:0.000000px;}
._c_c00074{margin-left:-1.000800px;}
._7_c00074{width:1.132800px;}
._d_c00074{width:2.412000px;}
._b_c00074{width:4.219200px;}
._12_c00074{width:6.523200px;}
._8_c00074{width:8.150400px;}
._6_c00074{width:10.089000px;}
._5_c00074{width:11.871000px;}
._3_c00074{width:13.195800px;}
._11_c00074{width:14.248800px;}
._2_c00074{width:15.415200px;}
._1_c00074{width:17.056800px;}
._10_c00074{width:18.525600px;}
._a_c00074{width:21.088800px;}
._4_c00074{width:22.384800px;}
._9_c00074{width:25.675200px;}
._f_c00074{width:36.280800px;}
._e_c00074{width:91.699200px;}
._0_c00074{width:1146.683400px;}
.fc1_c00074{color:transparent;}
.fc0_c00074{color:rgb(0,0,0);}
.fs0_c00074{font-size:72.000000px;}
.y0_c00074{bottom:0.000000px;}
.y4_c00074{bottom:4.320000px;}
.y1_c00074{bottom:18.750000px;}
.y2_c00074{bottom:37.860030px;}
.y3_c00074{bottom:52.290030px;}
.y1d_c00074{bottom:127.140030px;}
.y1c_c00074{bottom:168.540000px;}
.y1b_c00074{bottom:209.940000px;}
.y1a_c00074{bottom:251.340000px;}
.y19_c00074{bottom:292.740000px;}
.y18_c00074{bottom:334.140000px;}
.y17_c00074{bottom:375.540000px;}
.y16_c00074{bottom:416.940000px;}
.y15_c00074{bottom:458.340000px;}
.y14_c00074{bottom:499.740000px;}
.y13_c00074{bottom:541.140000px;}
.y12_c00074{bottom:582.540000px;}
.y11_c00074{bottom:623.940000px;}
.y10_c00074{bottom:665.340000px;}
.yf_c00074{bottom:706.740000px;}
.ye_c00074{bottom:748.140000px;}
.yd_c00074{bottom:789.540000px;}
.yc_c00074{bottom:830.940000px;}
.yb_c00074{bottom:872.340000px;}
.ya_c00074{bottom:913.740000px;}
.y9_c00074{bottom:955.140000px;}
.y8_c00074{bottom:996.540000px;}
.y7_c00074{bottom:1037.940000px;}
.y6_c00074{bottom:1079.340000px;}
.y5_c00074{bottom:1120.740000px;}
.h3_c00074{height:20.880000px;}
.h4_c00074{height:64.371094px;}
.h2_c00074{height:64.546875px;}
.h1_c00074{height:1225.500000px;}
.h0_c00074{height:1263.000000px;}
.w2_c00074{width:20.160000px;}
.w1_c00074{width:855.000000px;}
.w0_c00074{width:892.500000px;}
.x0_c00074{left:0.000000px;}
.x1_c00074{left:18.750000px;}
.x3_c00074{left:128.190000px;}
.x2_c00074{left:136.440000px;}
.x4_c00074{left:151.965150px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls1_c00074{letter-spacing:0.000000pt;}
.ls0_c00074{letter-spacing:0.012800pt;}
.ws0_c00074{word-spacing:-17.804800pt;}
.ws1_c00074{word-spacing:0.000000pt;}
._c_c00074{margin-left:-0.889600pt;}
._7_c00074{width:1.006933pt;}
._d_c00074{width:2.144000pt;}
._b_c00074{width:3.750400pt;}
._12_c00074{width:5.798400pt;}
._8_c00074{width:7.244800pt;}
._6_c00074{width:8.968000pt;}
._5_c00074{width:10.552000pt;}
._3_c00074{width:11.729600pt;}
._11_c00074{width:12.665600pt;}
._2_c00074{width:13.702400pt;}
._1_c00074{width:15.161600pt;}
._10_c00074{width:16.467200pt;}
._a_c00074{width:18.745600pt;}
._4_c00074{width:19.897600pt;}
._9_c00074{width:22.822400pt;}
._f_c00074{width:32.249600pt;}
._e_c00074{width:81.510400pt;}
._0_c00074{width:1019.274133pt;}
.fs0_c00074{font-size:64.000000pt;}
.y0_c00074{bottom:0.000000pt;}
.y4_c00074{bottom:3.840000pt;}
.y1_c00074{bottom:16.666667pt;}
.y2_c00074{bottom:33.653360pt;}
.y3_c00074{bottom:46.480027pt;}
.y1d_c00074{bottom:113.013360pt;}
.y1c_c00074{bottom:149.813333pt;}
.y1b_c00074{bottom:186.613333pt;}
.y1a_c00074{bottom:223.413333pt;}
.y19_c00074{bottom:260.213333pt;}
.y18_c00074{bottom:297.013333pt;}
.y17_c00074{bottom:333.813333pt;}
.y16_c00074{bottom:370.613333pt;}
.y15_c00074{bottom:407.413333pt;}
.y14_c00074{bottom:444.213333pt;}
.y13_c00074{bottom:481.013333pt;}
.y12_c00074{bottom:517.813333pt;}
.y11_c00074{bottom:554.613333pt;}
.y10_c00074{bottom:591.413333pt;}
.yf_c00074{bottom:628.213333pt;}
.ye_c00074{bottom:665.013333pt;}
.yd_c00074{bottom:701.813333pt;}
.yc_c00074{bottom:738.613333pt;}
.yb_c00074{bottom:775.413333pt;}
.ya_c00074{bottom:812.213333pt;}
.y9_c00074{bottom:849.013333pt;}
.y8_c00074{bottom:885.813333pt;}
.y7_c00074{bottom:922.613333pt;}
.y6_c00074{bottom:959.413333pt;}
.y5_c00074{bottom:996.213333pt;}
.h3_c00074{height:18.560000pt;}
.h4_c00074{height:57.218750pt;}
.h2_c00074{height:57.375000pt;}
.h1_c00074{height:1089.333333pt;}
.h0_c00074{height:1122.666667pt;}
.w2_c00074{width:17.920000pt;}
.w1_c00074{width:760.000000pt;}
.w0_c00074{width:793.333333pt;}
.x0_c00074{left:0.000000pt;}
.x1_c00074{left:16.666667pt;}
.x3_c00074{left:113.946667pt;}
.x2_c00074{left:121.280000pt;}
.x4_c00074{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e1fc43745e9d7f38fb949711.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00075;src:url('chunks/assets/font_74550367904d7d2d15b2a00b.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00075;src:url('chunks/assets/font_ce7ea1a7ecb0ce2c176bc91e.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.ls5_c00075{letter-spacing:-0.014400px;}
.ls3_c00075{letter-spacing:0.000000px;}
.ls0_c00075{letter-spacing:0.014400px;}
.ls2_c00075{letter-spacing:0.036000px;}
.ls4_c00075{letter-spacing:0.255744px;}
.ls1_c00075{letter-spacing:15.843600px;}
.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:-20.030400px;}
.ws1_c00075{word-spacing:0.000000px;}
._1_c00075{width:1.065600px;}
._5_c00075{width:2.680200px;}
._2_c00075{width:4.118400px;}
._6_c00075{width:6.381300px;}
._3_c00075{width:7.862400px;}
._d_c00075{width:11.577600px;}
._7_c00075{width:12.643200px;}
._9_c00075{width:15.912000px;}
._8_c00075{width:16.977600px;}
._4_c00075{width:18.504000px;}
._e_c00075{width:22.428000px;}
._c_c00075{width:26.935200px;}
._b_c00075{width:32.630400px;}
._a_c00075{width:55.447200px;}
._0_c00075{width:2079.683700px;}
.fc1_c00075{color:transparent;}
.fc0_c00075{color:rgb(0,0,0);}
.fs1_c00075{font-size:53.280000px;}
.fs0_c00075{font-size:72.000000px;}
.y0_c00075{bottom:0.000000px;}
.y5_c00075{bottom:4.320000px;}
.y7_c00075{bottom:4.680000px;}
.y1_c00075{bottom:18.750000px;}
.y3_c00075{bottom:37.860030px;}
.y4_c00075{bottom:52.290030px;}
.y1f_c00075{bottom:120.300030px;}
.y1e_c00075{bottom:161.700000px;}
.y1d_c00075{bottom:203.100000px;}
.y1c_c00075{bottom:244.500000px;}
.y6_c00075{bottom:284.220000px;}
.y1b_c00075{bottom:285.900000px;}
.y1a_c00075{bottom:327.300000px;}
.y19_c00075{bottom:368.700000px;}
.y18_c00075{bottom:410.100000px;}
.y17_c00075{bottom:451.500000px;}
.y16_c00075{bottom:492.900000px;}
.y15_c00075{bottom:543.300000px;}
.y14_c00075{bottom:584.700000px;}
.y13_c00075{bottom:626.100000px;}
.y12_c00075{bottom:667.500000px;}
.y11_c00075{bottom:708.900000px;}
.y10_c00075{bottom:771.180000px;}
.yf_c00075{bottom:812.940000px;}
.ye_c00075{bottom:854.340000px;}
.yd_c00075{bottom:895.740000px;}
.yc_c00075{bottom:955.140000px;}
.yb_c00075{bottom:996.540000px;}
.ya_c00075{bottom:1037.940000px;}
.y9_c00075{bottom:1079.340000px;}
.y8_c00075{bottom:1120.740000px;}
.y2_c00075{bottom:1173.660000px;}
.h4_c00075{height:17.280000px;}
.h3_c00075{height:20.880000px;}
.h5_c00075{height:64.371094px;}
.h2_c00075{height:64.546875px;}
.h6_c00075{height:65.003906px;}
.h1_c00075{height:1225.500000px;}
.h0_c00075{height:1263.000000px;}
.w2_c00075{width:20.160000px;}
.w3_c00075{width:136.800015px;}
.w1_c00075{width:855.000000px;}
.w0_c00075{width:892.500000px;}
.x0_c00075{left:0.000000px;}
.x6_c00075{left:10.800000px;}
.x1_c00075{left:18.750000px;}
.x2_c00075{left:109.439925px;}
.x3_c00075{left:136.440000px;}
.x7_c00075{left:151.965150px;}
.x5_c00075{left:627.435000px;}
.x4_c00075{left:745.590000px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls5_c00075{letter-spacing:-0.012800pt;}
.ls3_c00075{letter-spacing:0.000000pt;}
.ls0_c00075{letter-spacing:0.012800pt;}
.ls2_c00075{letter-spacing:0.032000pt;}
.ls4_c00075{letter-spacing:0.227328pt;}
.ls1_c00075{letter-spacing:14.083200pt;}
.ws0_c00075{word-spacing:-17.804800pt;}
.ws1_c00075{word-spacing:0.000000pt;}
._1_c00075{width:0.947200pt;}
._5_c00075{width:2.382400pt;}
._2_c00075{width:3.660800pt;}
._6_c00075{width:5.672267pt;}
._3_c00075{width:6.988800pt;}
._d_c00075{width:10.291200pt;}
._7_c00075{width:11.238400pt;}
._9_c00075{width:14.144000pt;}
._8_c00075{width:15.091200pt;}
._4_c00075{width:16.448000pt;}
._e_c00075{width:19.936000pt;}
._c_c00075{width:23.942400pt;}
._b_c00075{width:29.004800pt;}
._a_c00075{width:49.286400pt;}
._0_c00075{width:1848.607733pt;}
.fs1_c00075{font-size:47.360000pt;}
.fs0_c00075{font-size:64.000000pt;}
.y0_c00075{bottom:0.000000pt;}
.y5_c00075{bottom:3.840000pt;}
.y7_c00075{bottom:4.160000pt;}
.y1_c00075{bottom:16.666667pt;}
.y3_c00075{bottom:33.653360pt;}
.y4_c00075{bottom:46.480027pt;}
.y1f_c00075{bottom:106.933360pt;}
.y1e_c00075{bottom:143.733333pt;}
.y1d_c00075{bottom:180.533333pt;}
.y1c_c00075{bottom:217.333333pt;}
.y6_c00075{bottom:252.640000pt;}
.y1b_c00075{bottom:254.133333pt;}
.y1a_c00075{bottom:290.933333pt;}
.y19_c00075{bottom:327.733333pt;}
.y18_c00075{bottom:364.533333pt;}
.y17_c00075{bottom:401.333333pt;}
.y16_c00075{bottom:438.133333pt;}
.y15_c00075{bottom:482.933333pt;}
.y14_c00075{bottom:519.733333pt;}
.y13_c00075{bottom:556.533333pt;}
.y12_c00075{bottom:593.333333pt;}
.y11_c00075{bottom:630.133333pt;}
.y10_c00075{bottom:685.493333pt;}
.yf_c00075{bottom:722.613333pt;}
.ye_c00075{bottom:759.413333pt;}
.yd_c00075{bottom:796.213333pt;}
.yc_c00075{bottom:849.013333pt;}
.yb_c00075{bottom:885.813333pt;}
.ya_c00075{bottom:922.613333pt;}
.y9_c00075{bottom:959.413333pt;}
.y8_c00075{bottom:996.213333pt;}
.y2_c00075{bottom:1043.253333pt;}
.h4_c00075{height:15.360000pt;}
.h3_c00075{height:18.560000pt;}
.h5_c00075{height:57.218750pt;}
.h2_c00075{height:57.375000pt;}
.h6_c00075{height:57.781250pt;}
.h1_c00075{height:1089.333333pt;}
.h0_c00075{height:1122.666667pt;}
.w2_c00075{width:17.920000pt;}
.w3_c00075{width:121.600013pt;}
.w1_c00075{width:760.000000pt;}
.w0_c00075{width:793.333333pt;}
.x0_c00075{left:0.000000pt;}
.x6_c00075{left:9.600000pt;}
.x1_c00075{left:16.666667pt;}
.x2_c00075{left:97.279933pt;}
.x3_c00075{left:121.280000pt;}
.x7_c00075{left:135.080133pt;}
.x5_c00075{left:557.720000pt;}
.x4_c00075{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7a77afe562ca437075acacaa.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00076;src:url('chunks/assets/font_33002270f02ef50caeb025e9.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:0.881836;font-style: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;}
.ls2_c00076{letter-spacing:0.000000px;}
.ls0_c00076{letter-spacing:0.014400px;}
.ls1_c00076{letter-spacing:32.066400px;}
.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:-20.030400px;}
.ws1_c00076{word-spacing:-0.072000px;}
.ws2_c00076{word-spacing:0.000000px;}
._c_c00076{width:1.533600px;}
._5_c00076{width:2.620800px;}
._4_c00076{width:3.916800px;}
._6_c00076{width:5.529600px;}
._b_c00076{width:6.957900px;}
._e_c00076{width:11.476800px;}
._3_c00076{width:16.286400px;}
._a_c00076{width:17.632800px;}
._d_c00076{width:24.415200px;}
._7_c00076{width:32.049000px;}
._8_c00076{width:34.862400px;}
._9_c00076{width:38.531400px;}
._1_c00076{width:42.616800px;}
._2_c00076{width:44.172000px;}
._0_c00076{width:1146.683400px;}
.fc1_c00076{color:transparent;}
.fc0_c00076{color:rgb(0,0,0);}
.fs0_c00076{font-size:72.000000px;}
.y0_c00076{bottom:0.000000px;}
.y4_c00076{bottom:4.320000px;}
.y1_c00076{bottom:18.750000px;}
.y2_c00076{bottom:37.860030px;}
.y3_c00076{bottom:52.290030px;}
.y1c_c00076{bottom:125.340015px;}
.y1b_c00076{bottom:166.740000px;}
.y1a_c00076{bottom:208.140000px;}
.y19_c00076{bottom:258.540000px;}
.y18_c00076{bottom:299.580000px;}
.y17_c00076{bottom:342.060000px;}
.y16_c00076{bottom:384.900000px;}
.y15_c00076{bottom:436.740000px;}
.y14_c00076{bottom:478.140000px;}
.y13_c00076{bottom:519.540000px;}
.y12_c00076{bottom:569.940000px;}
.y11_c00076{bottom:610.980000px;}
.y10_c00076{bottom:653.820000px;}
.yf_c00076{bottom:694.860000px;}
.ye_c00076{bottom:737.700000px;}
.yd_c00076{bottom:779.100000px;}
.yc_c00076{bottom:830.940000px;}
.yb_c00076{bottom:872.340000px;}
.ya_c00076{bottom:913.740000px;}
.y9_c00076{bottom:955.140000px;}
.y8_c00076{bottom:996.540000px;}
.y7_c00076{bottom:1037.940000px;}
.y6_c00076{bottom:1079.340000px;}
.y5_c00076{bottom:1120.740000px;}
.h3_c00076{height:20.880000px;}
.h2_c00076{height:64.546875px;}
.h1_c00076{height:1225.500000px;}
.h0_c00076{height:1263.000000px;}
.w2_c00076{width:20.160000px;}
.w1_c00076{width:855.000000px;}
.w0_c00076{width:892.500000px;}
.x0_c00076{left:0.000000px;}
.x1_c00076{left:18.750000px;}
.x4_c00076{left:109.439925px;}
.x3_c00076{left:128.190000px;}
.x2_c00076{left:136.440000px;}
.x5_c00076{left:151.965150px;}
.x6_c00076{left:173.265000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls2_c00076{letter-spacing:0.000000pt;}
.ls0_c00076{letter-spacing:0.012800pt;}
.ls1_c00076{letter-spacing:28.503467pt;}
.ws0_c00076{word-spacing:-17.804800pt;}
.ws1_c00076{word-spacing:-0.064000pt;}
.ws2_c00076{word-spacing:0.000000pt;}
._c_c00076{width:1.363200pt;}
._5_c00076{width:2.329600pt;}
._4_c00076{width:3.481600pt;}
._6_c00076{width:4.915200pt;}
._b_c00076{width:6.184800pt;}
._e_c00076{width:10.201600pt;}
._3_c00076{width:14.476800pt;}
._a_c00076{width:15.673600pt;}
._d_c00076{width:21.702400pt;}
._7_c00076{width:28.488000pt;}
._8_c00076{width:30.988800pt;}
._9_c00076{width:34.250133pt;}
._1_c00076{width:37.881600pt;}
._2_c00076{width:39.264000pt;}
._0_c00076{width:1019.274133pt;}
.fs0_c00076{font-size:64.000000pt;}
.y0_c00076{bottom:0.000000pt;}
.y4_c00076{bottom:3.840000pt;}
.y1_c00076{bottom:16.666667pt;}
.y2_c00076{bottom:33.653360pt;}
.y3_c00076{bottom:46.480027pt;}
.y1c_c00076{bottom:111.413347pt;}
.y1b_c00076{bottom:148.213333pt;}
.y1a_c00076{bottom:185.013333pt;}
.y19_c00076{bottom:229.813333pt;}
.y18_c00076{bottom:266.293333pt;}
.y17_c00076{bottom:304.053333pt;}
.y16_c00076{bottom:342.133333pt;}
.y15_c00076{bottom:388.213333pt;}
.y14_c00076{bottom:425.013333pt;}
.y13_c00076{bottom:461.813333pt;}
.y12_c00076{bottom:506.613333pt;}
.y11_c00076{bottom:543.093333pt;}
.y10_c00076{bottom:581.173333pt;}
.yf_c00076{bottom:617.653333pt;}
.ye_c00076{bottom:655.733333pt;}
.yd_c00076{bottom:692.533333pt;}
.yc_c00076{bottom:738.613333pt;}
.yb_c00076{bottom:775.413333pt;}
.ya_c00076{bottom:812.213333pt;}
.y9_c00076{bottom:849.013333pt;}
.y8_c00076{bottom:885.813333pt;}
.y7_c00076{bottom:922.613333pt;}
.y6_c00076{bottom:959.413333pt;}
.y5_c00076{bottom:996.213333pt;}
.h3_c00076{height:18.560000pt;}
.h2_c00076{height:57.375000pt;}
.h1_c00076{height:1089.333333pt;}
.h0_c00076{height:1122.666667pt;}
.w2_c00076{width:17.920000pt;}
.w1_c00076{width:760.000000pt;}
.w0_c00076{width:793.333333pt;}
.x0_c00076{left:0.000000pt;}
.x1_c00076{left:16.666667pt;}
.x4_c00076{left:97.279933pt;}
.x3_c00076{left:113.946667pt;}
.x2_c00076{left:121.280000pt;}
.x5_c00076{left:135.080133pt;}
.x6_c00076{left:154.013333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c28685de010148c043c587ea.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00077;src:url('chunks/assets/font_33002270f02ef50caeb025e9.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00077;src:url('chunks/assets/font_117eb80e6e13b68cd92c5fe1.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:1.113281;font-style: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;}
.ls1_c00077{letter-spacing:0.000000px;}
.ls0_c00077{letter-spacing:0.014400px;}
.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;}
}
.ws0_c00077{word-spacing:-20.030400px;}
.ws1_c00077{word-spacing:-0.072000px;}
.ws2_c00077{word-spacing:0.000000px;}
._a_c00077{width:1.411200px;}
._4_c00077{width:4.298400px;}
._3_c00077{width:6.105600px;}
._5_c00077{width:7.120800px;}
._9_c00077{width:8.236800px;}
._8_c00077{width:9.669600px;}
._1_c00077{width:14.666400px;}
._7_c00077{width:15.753900px;}
._2_c00077{width:17.726400px;}
._6_c00077{width:32.049000px;}
._b_c00077{width:38.880000px;}
._d_c00077{width:46.432800px;}
._c_c00077{width:62.956800px;}
._0_c00077{width:2079.683700px;}
.fc1_c00077{color:transparent;}
.fc0_c00077{color:rgb(0,0,0);}
.fs0_c00077{font-size:72.000000px;}
.y0_c00077{bottom:0.000000px;}
.y5_c00077{bottom:4.320000px;}
.y1_c00077{bottom:18.750000px;}
.y3_c00077{bottom:37.860030px;}
.y4_c00077{bottom:52.290030px;}
.y1f_c00077{bottom:93.660030px;}
.y1e_c00077{bottom:135.060000px;}
.y1d_c00077{bottom:176.460000px;}
.y1c_c00077{bottom:217.860000px;}
.y1b_c00077{bottom:259.260000px;}
.y1a_c00077{bottom:300.660000px;}
.y19_c00077{bottom:342.060000px;}
.y18_c00077{bottom:383.460000px;}
.y17_c00077{bottom:424.860000px;}
.y16_c00077{bottom:466.260000px;}
.y15_c00077{bottom:507.660000px;}
.y14_c00077{bottom:549.060000px;}
.y13_c00077{bottom:590.460000px;}
.y12_c00077{bottom:631.860000px;}
.y11_c00077{bottom:652.740000px;}
.y10_c00077{bottom:693.780000px;}
.yf_c00077{bottom:736.260000px;}
.ye_c00077{bottom:779.100000px;}
.yd_c00077{bottom:830.940000px;}
.yc_c00077{bottom:872.340000px;}
.yb_c00077{bottom:913.740000px;}
.ya_c00077{bottom:955.140000px;}
.y9_c00077{bottom:996.540000px;}
.y8_c00077{bottom:1037.940000px;}
.y7_c00077{bottom:1079.340000px;}
.y6_c00077{bottom:1120.740000px;}
.y2_c00077{bottom:1173.660000px;}
.h3_c00077{height:20.880000px;}
.h2_c00077{height:64.546875px;}
.h4_c00077{height:65.003906px;}
.h1_c00077{height:1225.500000px;}
.h0_c00077{height:1263.000000px;}
.w2_c00077{width:20.160000px;}
.w1_c00077{width:855.000000px;}
.w0_c00077{width:892.500000px;}
.x0_c00077{left:0.000000px;}
.x1_c00077{left:18.750000px;}
.x2_c00077{left:109.439925px;}
.x3_c00077{left:136.440000px;}
.x5_c00077{left:151.965150px;}
.x6_c00077{left:173.265000px;}
.x4_c00077{left:745.590000px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls1_c00077{letter-spacing:0.000000pt;}
.ls0_c00077{letter-spacing:0.012800pt;}
.ws0_c00077{word-spacing:-17.804800pt;}
.ws1_c00077{word-spacing:-0.064000pt;}
.ws2_c00077{word-spacing:0.000000pt;}
._a_c00077{width:1.254400pt;}
._4_c00077{width:3.820800pt;}
._3_c00077{width:5.427200pt;}
._5_c00077{width:6.329600pt;}
._9_c00077{width:7.321600pt;}
._8_c00077{width:8.595200pt;}
._1_c00077{width:13.036800pt;}
._7_c00077{width:14.003467pt;}
._2_c00077{width:15.756800pt;}
._6_c00077{width:28.488000pt;}
._b_c00077{width:34.560000pt;}
._d_c00077{width:41.273600pt;}
._c_c00077{width:55.961600pt;}
._0_c00077{width:1848.607733pt;}
.fs0_c00077{font-size:64.000000pt;}
.y0_c00077{bottom:0.000000pt;}
.y5_c00077{bottom:3.840000pt;}
.y1_c00077{bottom:16.666667pt;}
.y3_c00077{bottom:33.653360pt;}
.y4_c00077{bottom:46.480027pt;}
.y1f_c00077{bottom:83.253360pt;}
.y1e_c00077{bottom:120.053333pt;}
.y1d_c00077{bottom:156.853333pt;}
.y1c_c00077{bottom:193.653333pt;}
.y1b_c00077{bottom:230.453333pt;}
.y1a_c00077{bottom:267.253333pt;}
.y19_c00077{bottom:304.053333pt;}
.y18_c00077{bottom:340.853333pt;}
.y17_c00077{bottom:377.653333pt;}
.y16_c00077{bottom:414.453333pt;}
.y15_c00077{bottom:451.253333pt;}
.y14_c00077{bottom:488.053333pt;}
.y13_c00077{bottom:524.853333pt;}
.y12_c00077{bottom:561.653333pt;}
.y11_c00077{bottom:580.213333pt;}
.y10_c00077{bottom:616.693333pt;}
.yf_c00077{bottom:654.453333pt;}
.ye_c00077{bottom:692.533333pt;}
.yd_c00077{bottom:738.613333pt;}
.yc_c00077{bottom:775.413333pt;}
.yb_c00077{bottom:812.213333pt;}
.ya_c00077{bottom:849.013333pt;}
.y9_c00077{bottom:885.813333pt;}
.y8_c00077{bottom:922.613333pt;}
.y7_c00077{bottom:959.413333pt;}
.y6_c00077{bottom:996.213333pt;}
.y2_c00077{bottom:1043.253333pt;}
.h3_c00077{height:18.560000pt;}
.h2_c00077{height:57.375000pt;}
.h4_c00077{height:57.781250pt;}
.h1_c00077{height:1089.333333pt;}
.h0_c00077{height:1122.666667pt;}
.w2_c00077{width:17.920000pt;}
.w1_c00077{width:760.000000pt;}
.w0_c00077{width:793.333333pt;}
.x0_c00077{left:0.000000pt;}
.x1_c00077{left:16.666667pt;}
.x2_c00077{left:97.279933pt;}
.x3_c00077{left:121.280000pt;}
.x5_c00077{left:135.080133pt;}
.x6_c00077{left:154.013333pt;}
.x4_c00077{left:662.746667pt;}
}





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

.ir_c00078:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00078;src:url('chunks/assets/font_c37cabd5a6322ea8981fd132.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00078;src:url('chunks/assets/font_2f3eb33da37e894d30a9d3a8.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.ls7_c00078{letter-spacing:0.000000px;}
.ls0_c00078{letter-spacing:0.014400px;}
.ls9_c00078{letter-spacing:0.278640px;}
.ls2_c00078{letter-spacing:0.322800px;}
.ls11_c00078{letter-spacing:0.324000px;}
.ls6_c00078{letter-spacing:0.400200px;}
.lsf_c00078{letter-spacing:0.401760px;}
.ls10_c00078{letter-spacing:0.602640px;}
.lsb_c00078{letter-spacing:0.635040px;}
.ls5_c00078{letter-spacing:0.667440px;}
.ls3_c00078{letter-spacing:0.680400px;}
.ls8_c00078{letter-spacing:0.725760px;}
.lsd_c00078{letter-spacing:0.797040px;}
.ls1_c00078{letter-spacing:0.799800px;}
.lsa_c00078{letter-spacing:0.829440px;}
.lsc_c00078{letter-spacing:0.874800px;}
.lse_c00078{letter-spacing:1.030320px;}
.ls4_c00078{letter-spacing:4.592400px;}
.sc__c00078{text-shadow:none;}
.sc0_c00078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00078{-webkit-text-stroke:0px transparent;}
.sc0_c00078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00078{word-spacing:-20.030400px;}
.ws4_c00078{word-spacing:-18.889200px;}
.ws2_c00078{word-spacing:-18.843840px;}
.ws3_c00078{word-spacing:-18.694800px;}
.ws1_c00078{word-spacing:-18.293040px;}
.ws5_c00078{word-spacing:0.000000px;}
._1_c00078{margin-left:-1.296000px;}
._3_c00078{width:1.231200px;}
._5_c00078{width:3.369600px;}
._4_c00078{width:5.054400px;}
._2_c00078{width:10.497600px;}
._7_c00078{width:12.052800px;}
._9_c00078{width:15.728400px;}
._8_c00078{width:17.236800px;}
._6_c00078{width:27.345600px;}
._0_c00078{width:1146.683400px;}
.fc1_c00078{color:transparent;}
.fc0_c00078{color:rgb(0,0,0);}
.fs1_c00078{font-size:64.800000px;}
.fs0_c00078{font-size:72.000000px;}
.y0_c00078{bottom:0.000000px;}
.y4_c00078{bottom:4.320000px;}
.y7_c00078{bottom:12.960000px;}
.y1_c00078{bottom:18.750000px;}
.y2_c00078{bottom:37.860030px;}
.y28_c00078{bottom:41.399970px;}
.y3_c00078{bottom:52.290030px;}
.y27_c00078{bottom:69.839970px;}
.y26_c00078{bottom:98.279970px;}
.y25_c00078{bottom:126.719970px;}
.y8_c00078{bottom:132.930030px;}
.y24_c00078{bottom:155.159970px;}
.y23_c00078{bottom:183.599970px;}
.y22_c00078{bottom:212.039970px;}
.y21_c00078{bottom:240.479970px;}
.y20_c00078{bottom:268.919970px;}
.y1f_c00078{bottom:297.359970px;}
.y1e_c00078{bottom:325.799970px;}
.y1d_c00078{bottom:354.239970px;}
.y1c_c00078{bottom:382.679970px;}
.y1b_c00078{bottom:411.119970px;}
.y1a_c00078{bottom:439.559970px;}
.y19_c00078{bottom:467.999970px;}
.y18_c00078{bottom:496.799970px;}
.y17_c00078{bottom:525.239970px;}
.y16_c00078{bottom:553.679970px;}
.y15_c00078{bottom:582.119970px;}
.y14_c00078{bottom:610.559970px;}
.y13_c00078{bottom:638.999970px;}
.y12_c00078{bottom:667.439970px;}
.y11_c00078{bottom:695.879970px;}
.y10_c00078{bottom:724.319970px;}
.yf_c00078{bottom:752.759970px;}
.ye_c00078{bottom:781.199970px;}
.yd_c00078{bottom:809.639970px;}
.yc_c00078{bottom:838.079970px;}
.yb_c00078{bottom:866.519970px;}
.ya_c00078{bottom:894.959970px;}
.y9_c00078{bottom:923.399970px;}
.y6_c00078{bottom:1073.250000px;}
.y5_c00078{bottom:1120.740000px;}
.h3_c00078{height:20.880000px;}
.h5_c00078{height:37.440030px;}
.h8_c00078{height:58.092188px;}
.h6_c00078{height:58.503516px;}
.h2_c00078{height:64.546875px;}
.h4_c00078{height:65.003906px;}
.h7_c00078{height:938.880000px;}
.h1_c00078{height:1225.500000px;}
.h0_c00078{height:1263.000000px;}
.w2_c00078{width:20.160000px;}
.w4_c00078{width:135.000000px;}
.w5_c00078{width:496.440000px;}
.w3_c00078{width:632.520000px;}
.w1_c00078{width:855.000000px;}
.w0_c00078{width:892.500000px;}
.x0_c00078{left:0.000000px;}
.x9_c00078{left:7.199910px;}
.xb_c00078{left:8.279850px;}
.x1_c00078{left:18.750000px;}
.x7_c00078{left:33.557250px;}
.x8_c00078{left:49.725000px;}
.x6_c00078{left:67.499850px;}
.x4_c00078{left:109.439925px;}
.x3_c00078{left:128.190000px;}
.x5_c00078{left:130.710000px;}
.x2_c00078{left:136.440000px;}
.xa_c00078{left:266.790000px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls7_c00078{letter-spacing:0.000000pt;}
.ls0_c00078{letter-spacing:0.012800pt;}
.ls9_c00078{letter-spacing:0.247680pt;}
.ls2_c00078{letter-spacing:0.286933pt;}
.ls11_c00078{letter-spacing:0.288000pt;}
.ls6_c00078{letter-spacing:0.355733pt;}
.lsf_c00078{letter-spacing:0.357120pt;}
.ls10_c00078{letter-spacing:0.535680pt;}
.lsb_c00078{letter-spacing:0.564480pt;}
.ls5_c00078{letter-spacing:0.593280pt;}
.ls3_c00078{letter-spacing:0.604800pt;}
.ls8_c00078{letter-spacing:0.645120pt;}
.lsd_c00078{letter-spacing:0.708480pt;}
.ls1_c00078{letter-spacing:0.710933pt;}
.lsa_c00078{letter-spacing:0.737280pt;}
.lsc_c00078{letter-spacing:0.777600pt;}
.lse_c00078{letter-spacing:0.915840pt;}
.ls4_c00078{letter-spacing:4.082133pt;}
.ws0_c00078{word-spacing:-17.804800pt;}
.ws4_c00078{word-spacing:-16.790400pt;}
.ws2_c00078{word-spacing:-16.750080pt;}
.ws3_c00078{word-spacing:-16.617600pt;}
.ws1_c00078{word-spacing:-16.260480pt;}
.ws5_c00078{word-spacing:0.000000pt;}
._1_c00078{margin-left:-1.152000pt;}
._3_c00078{width:1.094400pt;}
._5_c00078{width:2.995200pt;}
._4_c00078{width:4.492800pt;}
._2_c00078{width:9.331200pt;}
._7_c00078{width:10.713600pt;}
._9_c00078{width:13.980800pt;}
._8_c00078{width:15.321600pt;}
._6_c00078{width:24.307200pt;}
._0_c00078{width:1019.274133pt;}
.fs1_c00078{font-size:57.600000pt;}
.fs0_c00078{font-size:64.000000pt;}
.y0_c00078{bottom:0.000000pt;}
.y4_c00078{bottom:3.840000pt;}
.y7_c00078{bottom:11.520000pt;}
.y1_c00078{bottom:16.666667pt;}
.y2_c00078{bottom:33.653360pt;}
.y28_c00078{bottom:36.799973pt;}
.y3_c00078{bottom:46.480027pt;}
.y27_c00078{bottom:62.079973pt;}
.y26_c00078{bottom:87.359973pt;}
.y25_c00078{bottom:112.639973pt;}
.y8_c00078{bottom:118.160027pt;}
.y24_c00078{bottom:137.919973pt;}
.y23_c00078{bottom:163.199973pt;}
.y22_c00078{bottom:188.479973pt;}
.y21_c00078{bottom:213.759973pt;}
.y20_c00078{bottom:239.039973pt;}
.y1f_c00078{bottom:264.319973pt;}
.y1e_c00078{bottom:289.599973pt;}
.y1d_c00078{bottom:314.879973pt;}
.y1c_c00078{bottom:340.159973pt;}
.y1b_c00078{bottom:365.439973pt;}
.y1a_c00078{bottom:390.719973pt;}
.y19_c00078{bottom:415.999973pt;}
.y18_c00078{bottom:441.599973pt;}
.y17_c00078{bottom:466.879973pt;}
.y16_c00078{bottom:492.159973pt;}
.y15_c00078{bottom:517.439973pt;}
.y14_c00078{bottom:542.719973pt;}
.y13_c00078{bottom:567.999973pt;}
.y12_c00078{bottom:593.279973pt;}
.y11_c00078{bottom:618.559973pt;}
.y10_c00078{bottom:643.839973pt;}
.yf_c00078{bottom:669.119973pt;}
.ye_c00078{bottom:694.399973pt;}
.yd_c00078{bottom:719.679973pt;}
.yc_c00078{bottom:744.959973pt;}
.yb_c00078{bottom:770.239973pt;}
.ya_c00078{bottom:795.519973pt;}
.y9_c00078{bottom:820.799973pt;}
.y6_c00078{bottom:954.000000pt;}
.y5_c00078{bottom:996.213333pt;}
.h3_c00078{height:18.560000pt;}
.h5_c00078{height:33.280027pt;}
.h8_c00078{height:51.637500pt;}
.h6_c00078{height:52.003125pt;}
.h2_c00078{height:57.375000pt;}
.h4_c00078{height:57.781250pt;}
.h7_c00078{height:834.560000pt;}
.h1_c00078{height:1089.333333pt;}
.h0_c00078{height:1122.666667pt;}
.w2_c00078{width:17.920000pt;}
.w4_c00078{width:120.000000pt;}
.w5_c00078{width:441.280000pt;}
.w3_c00078{width:562.240000pt;}
.w1_c00078{width:760.000000pt;}
.w0_c00078{width:793.333333pt;}
.x0_c00078{left:0.000000pt;}
.x9_c00078{left:6.399920pt;}
.xb_c00078{left:7.359867pt;}
.x1_c00078{left:16.666667pt;}
.x7_c00078{left:29.828667pt;}
.x8_c00078{left:44.200000pt;}
.x6_c00078{left:59.999867pt;}
.x4_c00078{left:97.279933pt;}
.x3_c00078{left:113.946667pt;}
.x5_c00078{left:116.186667pt;}
.x2_c00078{left:121.280000pt;}
.xa_c00078{left:237.146667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b38d43f5b0c5043c5915570e.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00079;src:url('chunks/assets/font_7c8b75d1777223f508fe9d93.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.113281;font-style: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;}
.ls8_c00079{letter-spacing:0.000000px;}
.ls9_c00079{letter-spacing:0.014400px;}
.ls1_c00079{letter-spacing:0.324000px;}
.ls4_c00079{letter-spacing:0.399600px;}
.ls2_c00079{letter-spacing:0.400200px;}
.ls6_c00079{letter-spacing:0.400800px;}
.lsb_c00079{letter-spacing:0.602640px;}
.ls10_c00079{letter-spacing:0.635040px;}
.ls3_c00079{letter-spacing:0.667440px;}
.ls7_c00079{letter-spacing:0.677400px;}
.ls0_c00079{letter-spacing:0.680400px;}
.lsd_c00079{letter-spacing:0.725760px;}
.lsa_c00079{letter-spacing:0.797040px;}
.lsf_c00079{letter-spacing:0.874800px;}
.lse_c00079{letter-spacing:0.920160px;}
.lsc_c00079{letter-spacing:1.030320px;}
.ls5_c00079{letter-spacing:4.891200px;}
.sc__c00079{text-shadow:none;}
.sc0_c00079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00079{-webkit-text-stroke:0px transparent;}
.sc0_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00079{word-spacing:-20.030400px;}
.ws3_c00079{word-spacing:-18.934560px;}
.ws2_c00079{word-spacing:-18.811440px;}
.ws1_c00079{word-spacing:-18.694800px;}
.ws4_c00079{word-spacing:0.000000px;}
._2_c00079{margin-left:-1.036800px;}
._4_c00079{width:1.012800px;}
._3_c00079{width:2.857200px;}
._8_c00079{width:3.934800px;}
._7_c00079{width:5.184000px;}
._5_c00079{width:6.220800px;}
._6_c00079{width:7.452000px;}
._11_c00079{width:9.012000px;}
._1_c00079{width:10.562400px;}
._10_c00079{width:13.996800px;}
._9_c00079{width:17.269200px;}
._f_c00079{width:21.902400px;}
._e_c00079{width:23.198400px;}
._a_c00079{width:26.956800px;}
._b_c00079{width:28.317600px;}
._d_c00079{width:30.585600px;}
._c_c00079{width:38.943720px;}
._0_c00079{width:2079.683700px;}
.fc1_c00079{color:transparent;}
.fc0_c00079{color:rgb(0,0,0);}
.fs1_c00079{font-size:64.800000px;}
.fs0_c00079{font-size:72.000000px;}
.y0_c00079{bottom:0.000000px;}
.y5_c00079{bottom:4.320000px;}
.y1e_c00079{bottom:12.960000px;}
.y1_c00079{bottom:18.750000px;}
.y3_c00079{bottom:37.860030px;}
.y2a_c00079{bottom:41.399970px;}
.y1d_c00079{bottom:41.400000px;}
.y4_c00079{bottom:52.290030px;}
.y1c_c00079{bottom:69.840000px;}
.y29_c00079{bottom:70.199970px;}
.y1b_c00079{bottom:98.280000px;}
.y28_c00079{bottom:98.639970px;}
.y1a_c00079{bottom:126.720000px;}
.y27_c00079{bottom:127.079970px;}
.y22_c00079{bottom:127.530030px;}
.y19_c00079{bottom:155.160000px;}
.y26_c00079{bottom:155.519970px;}
.y18_c00079{bottom:183.600000px;}
.y25_c00079{bottom:183.959970px;}
.y17_c00079{bottom:212.040000px;}
.y24_c00079{bottom:212.399970px;}
.y16_c00079{bottom:240.480000px;}
.y23_c00079{bottom:240.839970px;}
.y15_c00079{bottom:268.920000px;}
.y14_c00079{bottom:297.360000px;}
.y13_c00079{bottom:325.800000px;}
.y12_c00079{bottom:354.240000px;}
.y11_c00079{bottom:382.680000px;}
.y21_c00079{bottom:384.930000px;}
.y10_c00079{bottom:411.480000px;}
.y20_c00079{bottom:411.900000px;}
.y1f_c00079{bottom:432.420000px;}
.yf_c00079{bottom:439.920000px;}
.ye_c00079{bottom:468.360000px;}
.y6_c00079{bottom:471.690000px;}
.yd_c00079{bottom:496.800000px;}
.yc_c00079{bottom:525.240000px;}
.yb_c00079{bottom:553.680000px;}
.ya_c00079{bottom:582.120000px;}
.y9_c00079{bottom:610.560000px;}
.y8_c00079{bottom:639.000000px;}
.y7_c00079{bottom:667.440000px;}
.y2_c00079{bottom:1173.660000px;}
.h3_c00079{height:20.880000px;}
.h6_c00079{height:37.439985px;}
.h5_c00079{height:58.092188px;}
.h7_c00079{height:58.503516px;}
.h2_c00079{height:64.546875px;}
.h8_c00079{height:256.320000px;}
.h4_c00079{height:682.920000px;}
.h1_c00079{height:1225.500000px;}
.h0_c00079{height:1263.000000px;}
.w2_c00079{width:20.160000px;}
.w3_c00079{width:135.000000px;}
.w6_c00079{width:136.079985px;}
.w4_c00079{width:496.440000px;}
.w7_c00079{width:497.160000px;}
.w5_c00079{width:633.960000px;}
.w1_c00079{width:855.000000px;}
.w0_c00079{width:892.500000px;}
.x0_c00079{left:0.000000px;}
.x8_c00079{left:8.279850px;}
.xf_c00079{left:9.855300px;}
.x1_c00079{left:18.750000px;}
.xd_c00079{left:44.099400px;}
.x6_c00079{left:49.725000px;}
.x9_c00079{left:50.805000px;}
.xc_c00079{left:62.452350px;}
.xe_c00079{left:83.715000px;}
.x2_c00079{left:109.439925px;}
.xb_c00079{left:118.899300px;}
.x5_c00079{left:130.710000px;}
.x3_c00079{left:136.440000px;}
.xa_c00079{left:151.965150px;}
.x7_c00079{left:266.790000px;}
.x4_c00079{left:745.590000px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls8_c00079{letter-spacing:0.000000pt;}
.ls9_c00079{letter-spacing:0.012800pt;}
.ls1_c00079{letter-spacing:0.288000pt;}
.ls4_c00079{letter-spacing:0.355200pt;}
.ls2_c00079{letter-spacing:0.355733pt;}
.ls6_c00079{letter-spacing:0.356267pt;}
.lsb_c00079{letter-spacing:0.535680pt;}
.ls10_c00079{letter-spacing:0.564480pt;}
.ls3_c00079{letter-spacing:0.593280pt;}
.ls7_c00079{letter-spacing:0.602133pt;}
.ls0_c00079{letter-spacing:0.604800pt;}
.lsd_c00079{letter-spacing:0.645120pt;}
.lsa_c00079{letter-spacing:0.708480pt;}
.lsf_c00079{letter-spacing:0.777600pt;}
.lse_c00079{letter-spacing:0.817920pt;}
.lsc_c00079{letter-spacing:0.915840pt;}
.ls5_c00079{letter-spacing:4.347733pt;}
.ws0_c00079{word-spacing:-17.804800pt;}
.ws3_c00079{word-spacing:-16.830720pt;}
.ws2_c00079{word-spacing:-16.721280pt;}
.ws1_c00079{word-spacing:-16.617600pt;}
.ws4_c00079{word-spacing:0.000000pt;}
._2_c00079{margin-left:-0.921600pt;}
._4_c00079{width:0.900267pt;}
._3_c00079{width:2.539733pt;}
._8_c00079{width:3.497600pt;}
._7_c00079{width:4.608000pt;}
._5_c00079{width:5.529600pt;}
._6_c00079{width:6.624000pt;}
._11_c00079{width:8.010667pt;}
._1_c00079{width:9.388800pt;}
._10_c00079{width:12.441600pt;}
._9_c00079{width:15.350400pt;}
._f_c00079{width:19.468800pt;}
._e_c00079{width:20.620800pt;}
._a_c00079{width:23.961600pt;}
._b_c00079{width:25.171200pt;}
._d_c00079{width:27.187200pt;}
._c_c00079{width:34.616640pt;}
._0_c00079{width:1848.607733pt;}
.fs1_c00079{font-size:57.600000pt;}
.fs0_c00079{font-size:64.000000pt;}
.y0_c00079{bottom:0.000000pt;}
.y5_c00079{bottom:3.840000pt;}
.y1e_c00079{bottom:11.520000pt;}
.y1_c00079{bottom:16.666667pt;}
.y3_c00079{bottom:33.653360pt;}
.y2a_c00079{bottom:36.799973pt;}
.y1d_c00079{bottom:36.800000pt;}
.y4_c00079{bottom:46.480027pt;}
.y1c_c00079{bottom:62.080000pt;}
.y29_c00079{bottom:62.399973pt;}
.y1b_c00079{bottom:87.360000pt;}
.y28_c00079{bottom:87.679973pt;}
.y1a_c00079{bottom:112.640000pt;}
.y27_c00079{bottom:112.959973pt;}
.y22_c00079{bottom:113.360027pt;}
.y19_c00079{bottom:137.920000pt;}
.y26_c00079{bottom:138.239973pt;}
.y18_c00079{bottom:163.200000pt;}
.y25_c00079{bottom:163.519973pt;}
.y17_c00079{bottom:188.480000pt;}
.y24_c00079{bottom:188.799973pt;}
.y16_c00079{bottom:213.760000pt;}
.y23_c00079{bottom:214.079973pt;}
.y15_c00079{bottom:239.040000pt;}
.y14_c00079{bottom:264.320000pt;}
.y13_c00079{bottom:289.600000pt;}
.y12_c00079{bottom:314.880000pt;}
.y11_c00079{bottom:340.160000pt;}
.y21_c00079{bottom:342.160000pt;}
.y10_c00079{bottom:365.760000pt;}
.y20_c00079{bottom:366.133333pt;}
.y1f_c00079{bottom:384.373333pt;}
.yf_c00079{bottom:391.040000pt;}
.ye_c00079{bottom:416.320000pt;}
.y6_c00079{bottom:419.280000pt;}
.yd_c00079{bottom:441.600000pt;}
.yc_c00079{bottom:466.880000pt;}
.yb_c00079{bottom:492.160000pt;}
.ya_c00079{bottom:517.440000pt;}
.y9_c00079{bottom:542.720000pt;}
.y8_c00079{bottom:568.000000pt;}
.y7_c00079{bottom:593.280000pt;}
.y2_c00079{bottom:1043.253333pt;}
.h3_c00079{height:18.560000pt;}
.h6_c00079{height:33.279987pt;}
.h5_c00079{height:51.637500pt;}
.h7_c00079{height:52.003125pt;}
.h2_c00079{height:57.375000pt;}
.h8_c00079{height:227.840000pt;}
.h4_c00079{height:607.040000pt;}
.h1_c00079{height:1089.333333pt;}
.h0_c00079{height:1122.666667pt;}
.w2_c00079{width:17.920000pt;}
.w3_c00079{width:120.000000pt;}
.w6_c00079{width:120.959987pt;}
.w4_c00079{width:441.280000pt;}
.w7_c00079{width:441.920000pt;}
.w5_c00079{width:563.520000pt;}
.w1_c00079{width:760.000000pt;}
.w0_c00079{width:793.333333pt;}
.x0_c00079{left:0.000000pt;}
.x8_c00079{left:7.359867pt;}
.xf_c00079{left:8.760267pt;}
.x1_c00079{left:16.666667pt;}
.xd_c00079{left:39.199467pt;}
.x6_c00079{left:44.200000pt;}
.x9_c00079{left:45.160000pt;}
.xc_c00079{left:55.513200pt;}
.xe_c00079{left:74.413333pt;}
.x2_c00079{left:97.279933pt;}
.xb_c00079{left:105.688267pt;}
.x5_c00079{left:116.186667pt;}
.x3_c00079{left:121.280000pt;}
.xa_c00079{left:135.080133pt;}
.x7_c00079{left:237.146667pt;}
.x4_c00079{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9adfd7db61cf0a8750aaf26d.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00080{vertical-align:0.000000px;}
.ls9_c00080{letter-spacing:0.000000px;}
.lsa_c00080{letter-spacing:0.014400px;}
.ls12_c00080{letter-spacing:0.278640px;}
.ls11_c00080{letter-spacing:0.324000px;}
.ls6_c00080{letter-spacing:0.400200px;}
.ls7_c00080{letter-spacing:0.400800px;}
.ls13_c00080{letter-spacing:0.401760px;}
.lsc_c00080{letter-spacing:0.602640px;}
.ls14_c00080{letter-spacing:0.635040px;}
.ls4_c00080{letter-spacing:0.667440px;}
.ls5_c00080{letter-spacing:0.677400px;}
.ls0_c00080{letter-spacing:0.680400px;}
.ls1_c00080{letter-spacing:0.722400px;}
.lsb_c00080{letter-spacing:0.725760px;}
.lse_c00080{letter-spacing:0.797040px;}
.lsd_c00080{letter-spacing:0.829440px;}
.lsf_c00080{letter-spacing:0.874800px;}
.ls10_c00080{letter-spacing:1.030320px;}
.ls2_c00080{letter-spacing:4.581000px;}
.ls3_c00080{letter-spacing:7.708200px;}
.ls8_c00080{letter-spacing:44.932800px;}
.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;}
}
.ws0_c00080{word-spacing:-20.030400px;}
.ws2_c00080{word-spacing:-18.843840px;}
.ws3_c00080{word-spacing:-18.694800px;}
.ws1_c00080{word-spacing:-18.617040px;}
.ws4_c00080{word-spacing:0.000000px;}
._1_c00080{margin-left:-1.036800px;}
._a_c00080{width:1.036800px;}
._2_c00080{width:2.851200px;}
._8_c00080{width:3.952800px;}
._9_c00080{width:5.054400px;}
._c_c00080{width:6.253800px;}
._b_c00080{width:7.711200px;}
._e_c00080{width:13.413600px;}
._f_c00080{width:14.968800px;}
._10_c00080{width:17.172000px;}
._7_c00080{width:21.578400px;}
._3_c00080{width:23.263200px;}
._4_c00080{width:30.974400px;}
._d_c00080{width:32.400000px;}
._11_c00080{width:41.083200px;}
._12_c00080{width:42.680400px;}
._13_c00080{width:44.258400px;}
._5_c00080{width:48.276000px;}
._6_c00080{width:49.312800px;}
._0_c00080{width:1146.683400px;}
.fc1_c00080{color:transparent;}
.fc0_c00080{color:rgb(0,0,0);}
.fs1_c00080{font-size:64.800000px;}
.fs0_c00080{font-size:72.000000px;}
.y0_c00080{bottom:0.000000px;}
.y4_c00080{bottom:4.320000px;}
.y29_c00080{bottom:12.960000px;}
.y1_c00080{bottom:18.750000px;}
.y2_c00080{bottom:37.860030px;}
.y28_c00080{bottom:41.399970px;}
.y3_c00080{bottom:52.290030px;}
.y27_c00080{bottom:69.839970px;}
.y26_c00080{bottom:98.279970px;}
.y25_c00080{bottom:126.719970px;}
.y5_c00080{bottom:130.050030px;}
.y24_c00080{bottom:155.159970px;}
.y23_c00080{bottom:183.599970px;}
.y22_c00080{bottom:212.039970px;}
.y21_c00080{bottom:240.839970px;}
.y20_c00080{bottom:269.279970px;}
.y1f_c00080{bottom:297.719970px;}
.y1e_c00080{bottom:326.159970px;}
.y1d_c00080{bottom:354.599970px;}
.y1c_c00080{bottom:383.039970px;}
.y1b_c00080{bottom:411.479970px;}
.y1a_c00080{bottom:439.919970px;}
.y19_c00080{bottom:468.359970px;}
.y18_c00080{bottom:496.799970px;}
.y17_c00080{bottom:525.239970px;}
.y16_c00080{bottom:553.679970px;}
.y15_c00080{bottom:582.119970px;}
.y14_c00080{bottom:610.559970px;}
.y13_c00080{bottom:638.999970px;}
.y12_c00080{bottom:667.439970px;}
.y11_c00080{bottom:695.879970px;}
.y10_c00080{bottom:724.319970px;}
.yf_c00080{bottom:753.119970px;}
.ye_c00080{bottom:781.559970px;}
.yd_c00080{bottom:809.999970px;}
.yc_c00080{bottom:838.439970px;}
.yb_c00080{bottom:866.879970px;}
.ya_c00080{bottom:895.319970px;}
.y9_c00080{bottom:923.759970px;}
.y8_c00080{bottom:952.199970px;}
.y7_c00080{bottom:980.639970px;}
.y6_c00080{bottom:1009.079970px;}
.h3_c00080{height:20.880000px;}
.h5_c00080{height:58.092188px;}
.h2_c00080{height:64.546875px;}
.h4_c00080{height:1024.560000px;}
.h1_c00080{height:1225.500000px;}
.h0_c00080{height:1263.000000px;}
.w2_c00080{width:20.160000px;}
.w3_c00080{width:136.079985px;}
.w4_c00080{width:497.160000px;}
.w1_c00080{width:855.000000px;}
.w0_c00080{width:892.500000px;}
.x0_c00080{left:0.000000px;}
.x6_c00080{left:3.296490px;}
.xf_c00080{left:8.280150px;}
.xe_c00080{left:9.855300px;}
.x1_c00080{left:18.750000px;}
.xc_c00080{left:27.595350px;}
.xb_c00080{left:29.887500px;}
.x9_c00080{left:36.679500px;}
.xa_c00080{left:44.099400px;}
.x7_c00080{left:49.146900px;}
.x5_c00080{left:62.452350px;}
.x8_c00080{left:83.715000px;}
.x3_c00080{left:128.190000px;}
.x4_c00080{left:130.350000px;}
.x2_c00080{left:136.440000px;}
.xd_c00080{left:267.150000px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls9_c00080{letter-spacing:0.000000pt;}
.lsa_c00080{letter-spacing:0.012800pt;}
.ls12_c00080{letter-spacing:0.247680pt;}
.ls11_c00080{letter-spacing:0.288000pt;}
.ls6_c00080{letter-spacing:0.355733pt;}
.ls7_c00080{letter-spacing:0.356267pt;}
.ls13_c00080{letter-spacing:0.357120pt;}
.lsc_c00080{letter-spacing:0.535680pt;}
.ls14_c00080{letter-spacing:0.564480pt;}
.ls4_c00080{letter-spacing:0.593280pt;}
.ls5_c00080{letter-spacing:0.602133pt;}
.ls0_c00080{letter-spacing:0.604800pt;}
.ls1_c00080{letter-spacing:0.642133pt;}
.lsb_c00080{letter-spacing:0.645120pt;}
.lse_c00080{letter-spacing:0.708480pt;}
.lsd_c00080{letter-spacing:0.737280pt;}
.lsf_c00080{letter-spacing:0.777600pt;}
.ls10_c00080{letter-spacing:0.915840pt;}
.ls2_c00080{letter-spacing:4.072000pt;}
.ls3_c00080{letter-spacing:6.851733pt;}
.ls8_c00080{letter-spacing:39.940267pt;}
.ws0_c00080{word-spacing:-17.804800pt;}
.ws2_c00080{word-spacing:-16.750080pt;}
.ws3_c00080{word-spacing:-16.617600pt;}
.ws1_c00080{word-spacing:-16.548480pt;}
.ws4_c00080{word-spacing:0.000000pt;}
._1_c00080{margin-left:-0.921600pt;}
._a_c00080{width:0.921600pt;}
._2_c00080{width:2.534400pt;}
._8_c00080{width:3.513600pt;}
._9_c00080{width:4.492800pt;}
._c_c00080{width:5.558933pt;}
._b_c00080{width:6.854400pt;}
._e_c00080{width:11.923200pt;}
._f_c00080{width:13.305600pt;}
._10_c00080{width:15.264000pt;}
._7_c00080{width:19.180800pt;}
._3_c00080{width:20.678400pt;}
._4_c00080{width:27.532800pt;}
._d_c00080{width:28.800000pt;}
._11_c00080{width:36.518400pt;}
._12_c00080{width:37.938133pt;}
._13_c00080{width:39.340800pt;}
._5_c00080{width:42.912000pt;}
._6_c00080{width:43.833600pt;}
._0_c00080{width:1019.274133pt;}
.fs1_c00080{font-size:57.600000pt;}
.fs0_c00080{font-size:64.000000pt;}
.y0_c00080{bottom:0.000000pt;}
.y4_c00080{bottom:3.840000pt;}
.y29_c00080{bottom:11.520000pt;}
.y1_c00080{bottom:16.666667pt;}
.y2_c00080{bottom:33.653360pt;}
.y28_c00080{bottom:36.799973pt;}
.y3_c00080{bottom:46.480027pt;}
.y27_c00080{bottom:62.079973pt;}
.y26_c00080{bottom:87.359973pt;}
.y25_c00080{bottom:112.639973pt;}
.y5_c00080{bottom:115.600027pt;}
.y24_c00080{bottom:137.919973pt;}
.y23_c00080{bottom:163.199973pt;}
.y22_c00080{bottom:188.479973pt;}
.y21_c00080{bottom:214.079973pt;}
.y20_c00080{bottom:239.359973pt;}
.y1f_c00080{bottom:264.639973pt;}
.y1e_c00080{bottom:289.919973pt;}
.y1d_c00080{bottom:315.199973pt;}
.y1c_c00080{bottom:340.479973pt;}
.y1b_c00080{bottom:365.759973pt;}
.y1a_c00080{bottom:391.039973pt;}
.y19_c00080{bottom:416.319973pt;}
.y18_c00080{bottom:441.599973pt;}
.y17_c00080{bottom:466.879973pt;}
.y16_c00080{bottom:492.159973pt;}
.y15_c00080{bottom:517.439973pt;}
.y14_c00080{bottom:542.719973pt;}
.y13_c00080{bottom:567.999973pt;}
.y12_c00080{bottom:593.279973pt;}
.y11_c00080{bottom:618.559973pt;}
.y10_c00080{bottom:643.839973pt;}
.yf_c00080{bottom:669.439973pt;}
.ye_c00080{bottom:694.719973pt;}
.yd_c00080{bottom:719.999973pt;}
.yc_c00080{bottom:745.279973pt;}
.yb_c00080{bottom:770.559973pt;}
.ya_c00080{bottom:795.839973pt;}
.y9_c00080{bottom:821.119973pt;}
.y8_c00080{bottom:846.399973pt;}
.y7_c00080{bottom:871.679973pt;}
.y6_c00080{bottom:896.959973pt;}
.h3_c00080{height:18.560000pt;}
.h5_c00080{height:51.637500pt;}
.h2_c00080{height:57.375000pt;}
.h4_c00080{height:910.720000pt;}
.h1_c00080{height:1089.333333pt;}
.h0_c00080{height:1122.666667pt;}
.w2_c00080{width:17.920000pt;}
.w3_c00080{width:120.959987pt;}
.w4_c00080{width:441.920000pt;}
.w1_c00080{width:760.000000pt;}
.w0_c00080{width:793.333333pt;}
.x0_c00080{left:0.000000pt;}
.x6_c00080{left:2.930213pt;}
.xf_c00080{left:7.360133pt;}
.xe_c00080{left:8.760267pt;}
.x1_c00080{left:16.666667pt;}
.xc_c00080{left:24.529200pt;}
.xb_c00080{left:26.566667pt;}
.x9_c00080{left:32.604000pt;}
.xa_c00080{left:39.199467pt;}
.x7_c00080{left:43.686133pt;}
.x5_c00080{left:55.513200pt;}
.x8_c00080{left:74.413333pt;}
.x3_c00080{left:113.946667pt;}
.x4_c00080{left:115.866667pt;}
.x2_c00080{left:121.280000pt;}
.xd_c00080{left:237.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_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_6e71e722450e87580ca5ad57.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00081;src:url('chunks/assets/font_b5eca215dbd0dd12cb7c2e16.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00081{vertical-align:0.000000px;}
.ls1_c00081{letter-spacing:0.000000px;}
.ls0_c00081{letter-spacing:0.014400px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00081{word-spacing:-20.030400px;}
.ws1_c00081{word-spacing:0.000000px;}
._c_c00081{margin-left:-1.000800px;}
._7_c00081{width:1.533600px;}
._4_c00081{width:2.692800px;}
._3_c00081{width:3.960000px;}
._8_c00081{width:5.760000px;}
._d_c00081{width:7.596000px;}
._b_c00081{width:8.812800px;}
._1_c00081{width:10.101600px;}
._9_c00081{width:11.397000px;}
._6_c00081{width:12.945600px;}
._2_c00081{width:14.126400px;}
._10_c00081{width:16.963200px;}
._e_c00081{width:21.471300px;}
._f_c00081{width:29.570400px;}
._5_c00081{width:31.564800px;}
._a_c00081{width:32.767200px;}
._12_c00081{width:38.930400px;}
._11_c00081{width:43.056000px;}
._0_c00081{width:2079.683700px;}
.fc1_c00081{color:transparent;}
.fc0_c00081{color:rgb(0,0,0);}
.fs0_c00081{font-size:72.000000px;}
.y0_c00081{bottom:0.000000px;}
.y5_c00081{bottom:4.320000px;}
.y1_c00081{bottom:18.750000px;}
.y3_c00081{bottom:37.860030px;}
.y4_c00081{bottom:52.290030px;}
.y1e_c00081{bottom:127.140030px;}
.y1d_c00081{bottom:168.540000px;}
.y1c_c00081{bottom:209.940000px;}
.y1b_c00081{bottom:251.340000px;}
.y1a_c00081{bottom:292.740000px;}
.y19_c00081{bottom:334.140000px;}
.y18_c00081{bottom:375.540000px;}
.y17_c00081{bottom:416.940000px;}
.y16_c00081{bottom:458.340000px;}
.y15_c00081{bottom:499.740000px;}
.y14_c00081{bottom:541.140000px;}
.y13_c00081{bottom:582.540000px;}
.y12_c00081{bottom:623.940000px;}
.y11_c00081{bottom:665.340000px;}
.y10_c00081{bottom:706.740000px;}
.yf_c00081{bottom:748.140000px;}
.ye_c00081{bottom:789.540000px;}
.yd_c00081{bottom:830.940000px;}
.yc_c00081{bottom:872.340000px;}
.yb_c00081{bottom:913.740000px;}
.ya_c00081{bottom:955.140000px;}
.y9_c00081{bottom:996.540000px;}
.y8_c00081{bottom:1037.940000px;}
.y7_c00081{bottom:1079.340000px;}
.y6_c00081{bottom:1120.740000px;}
.y2_c00081{bottom:1173.660000px;}
.h3_c00081{height:20.880000px;}
.h2_c00081{height:64.546875px;}
.h4_c00081{height:65.003906px;}
.h1_c00081{height:1225.500000px;}
.h0_c00081{height:1263.000000px;}
.w2_c00081{width:20.160000px;}
.w1_c00081{width:855.000000px;}
.w0_c00081{width:892.500000px;}
.x0_c00081{left:0.000000px;}
.x1_c00081{left:18.750000px;}
.x2_c00081{left:109.439925px;}
.x3_c00081{left:136.440000px;}
.x5_c00081{left:151.965150px;}
.x4_c00081{left:745.590000px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls1_c00081{letter-spacing:0.000000pt;}
.ls0_c00081{letter-spacing:0.012800pt;}
.ws0_c00081{word-spacing:-17.804800pt;}
.ws1_c00081{word-spacing:0.000000pt;}
._c_c00081{margin-left:-0.889600pt;}
._7_c00081{width:1.363200pt;}
._4_c00081{width:2.393600pt;}
._3_c00081{width:3.520000pt;}
._8_c00081{width:5.120000pt;}
._d_c00081{width:6.752000pt;}
._b_c00081{width:7.833600pt;}
._1_c00081{width:8.979200pt;}
._9_c00081{width:10.130667pt;}
._6_c00081{width:11.507200pt;}
._2_c00081{width:12.556800pt;}
._10_c00081{width:15.078400pt;}
._e_c00081{width:19.085600pt;}
._f_c00081{width:26.284800pt;}
._5_c00081{width:28.057600pt;}
._a_c00081{width:29.126400pt;}
._12_c00081{width:34.604800pt;}
._11_c00081{width:38.272000pt;}
._0_c00081{width:1848.607733pt;}
.fs0_c00081{font-size:64.000000pt;}
.y0_c00081{bottom:0.000000pt;}
.y5_c00081{bottom:3.840000pt;}
.y1_c00081{bottom:16.666667pt;}
.y3_c00081{bottom:33.653360pt;}
.y4_c00081{bottom:46.480027pt;}
.y1e_c00081{bottom:113.013360pt;}
.y1d_c00081{bottom:149.813333pt;}
.y1c_c00081{bottom:186.613333pt;}
.y1b_c00081{bottom:223.413333pt;}
.y1a_c00081{bottom:260.213333pt;}
.y19_c00081{bottom:297.013333pt;}
.y18_c00081{bottom:333.813333pt;}
.y17_c00081{bottom:370.613333pt;}
.y16_c00081{bottom:407.413333pt;}
.y15_c00081{bottom:444.213333pt;}
.y14_c00081{bottom:481.013333pt;}
.y13_c00081{bottom:517.813333pt;}
.y12_c00081{bottom:554.613333pt;}
.y11_c00081{bottom:591.413333pt;}
.y10_c00081{bottom:628.213333pt;}
.yf_c00081{bottom:665.013333pt;}
.ye_c00081{bottom:701.813333pt;}
.yd_c00081{bottom:738.613333pt;}
.yc_c00081{bottom:775.413333pt;}
.yb_c00081{bottom:812.213333pt;}
.ya_c00081{bottom:849.013333pt;}
.y9_c00081{bottom:885.813333pt;}
.y8_c00081{bottom:922.613333pt;}
.y7_c00081{bottom:959.413333pt;}
.y6_c00081{bottom:996.213333pt;}
.y2_c00081{bottom:1043.253333pt;}
.h3_c00081{height:18.560000pt;}
.h2_c00081{height:57.375000pt;}
.h4_c00081{height:57.781250pt;}
.h1_c00081{height:1089.333333pt;}
.h0_c00081{height:1122.666667pt;}
.w2_c00081{width:17.920000pt;}
.w1_c00081{width:760.000000pt;}
.w0_c00081{width:793.333333pt;}
.x0_c00081{left:0.000000pt;}
.x1_c00081{left:16.666667pt;}
.x2_c00081{left:97.279933pt;}
.x3_c00081{left:121.280000pt;}
.x5_c00081{left:135.080133pt;}
.x4_c00081{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_864a1d1c4a53f97cb29b66d4.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00082{letter-spacing:0.000000px;}
.ls0_c00082{letter-spacing:0.014400px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00082{word-spacing:-20.030400px;}
.ws1_c00082{word-spacing:0.000000px;}
._2_c00082{width:1.166400px;}
._4_c00082{width:2.973600px;}
._9_c00082{width:4.125600px;}
._7_c00082{width:6.465600px;}
._6_c00082{width:8.269500px;}
._d_c00082{width:9.280200px;}
._a_c00082{width:15.595200px;}
._b_c00082{width:16.732800px;}
._f_c00082{width:17.949600px;}
._c_c00082{width:23.392800px;}
._e_c00082{width:25.495200px;}
._3_c00082{width:31.946400px;}
._1_c00082{width:34.574400px;}
._10_c00082{width:37.504800px;}
._8_c00082{width:40.442400px;}
._5_c00082{width:46.821600px;}
._0_c00082{width:1146.683400px;}
.fc1_c00082{color:transparent;}
.fc0_c00082{color:rgb(0,0,0);}
.fs0_c00082{font-size:72.000000px;}
.y0_c00082{bottom:0.000000px;}
.y4_c00082{bottom:4.320000px;}
.y1_c00082{bottom:18.750000px;}
.y2_c00082{bottom:37.860030px;}
.y3_c00082{bottom:52.290030px;}
.y1d_c00082{bottom:127.140030px;}
.y1c_c00082{bottom:168.540000px;}
.y1b_c00082{bottom:209.940000px;}
.y1a_c00082{bottom:251.340000px;}
.y19_c00082{bottom:292.740000px;}
.y18_c00082{bottom:334.140000px;}
.y17_c00082{bottom:375.540000px;}
.y16_c00082{bottom:416.940000px;}
.y15_c00082{bottom:458.340000px;}
.y14_c00082{bottom:499.740000px;}
.y13_c00082{bottom:541.140000px;}
.y12_c00082{bottom:582.540000px;}
.y11_c00082{bottom:623.940000px;}
.y10_c00082{bottom:665.340000px;}
.yf_c00082{bottom:706.740000px;}
.ye_c00082{bottom:748.140000px;}
.yd_c00082{bottom:789.540000px;}
.yc_c00082{bottom:830.940000px;}
.yb_c00082{bottom:872.340000px;}
.ya_c00082{bottom:913.740000px;}
.y9_c00082{bottom:955.140000px;}
.y8_c00082{bottom:996.540000px;}
.y7_c00082{bottom:1037.940000px;}
.y6_c00082{bottom:1079.340000px;}
.y5_c00082{bottom:1120.740000px;}
.h3_c00082{height:20.880000px;}
.h2_c00082{height:64.546875px;}
.h1_c00082{height:1225.500000px;}
.h0_c00082{height:1263.000000px;}
.w2_c00082{width:20.160000px;}
.w1_c00082{width:855.000000px;}
.w0_c00082{width:892.500000px;}
.x0_c00082{left:0.000000px;}
.x1_c00082{left:18.750000px;}
.x4_c00082{left:109.439925px;}
.x3_c00082{left:128.190000px;}
.x2_c00082{left:136.440000px;}
.x5_c00082{left:151.965150px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls1_c00082{letter-spacing:0.000000pt;}
.ls0_c00082{letter-spacing:0.012800pt;}
.ws0_c00082{word-spacing:-17.804800pt;}
.ws1_c00082{word-spacing:0.000000pt;}
._2_c00082{width:1.036800pt;}
._4_c00082{width:2.643200pt;}
._9_c00082{width:3.667200pt;}
._7_c00082{width:5.747200pt;}
._6_c00082{width:7.350667pt;}
._d_c00082{width:8.249067pt;}
._a_c00082{width:13.862400pt;}
._b_c00082{width:14.873600pt;}
._f_c00082{width:15.955200pt;}
._c_c00082{width:20.793600pt;}
._e_c00082{width:22.662400pt;}
._3_c00082{width:28.396800pt;}
._1_c00082{width:30.732800pt;}
._10_c00082{width:33.337600pt;}
._8_c00082{width:35.948800pt;}
._5_c00082{width:41.619200pt;}
._0_c00082{width:1019.274133pt;}
.fs0_c00082{font-size:64.000000pt;}
.y0_c00082{bottom:0.000000pt;}
.y4_c00082{bottom:3.840000pt;}
.y1_c00082{bottom:16.666667pt;}
.y2_c00082{bottom:33.653360pt;}
.y3_c00082{bottom:46.480027pt;}
.y1d_c00082{bottom:113.013360pt;}
.y1c_c00082{bottom:149.813333pt;}
.y1b_c00082{bottom:186.613333pt;}
.y1a_c00082{bottom:223.413333pt;}
.y19_c00082{bottom:260.213333pt;}
.y18_c00082{bottom:297.013333pt;}
.y17_c00082{bottom:333.813333pt;}
.y16_c00082{bottom:370.613333pt;}
.y15_c00082{bottom:407.413333pt;}
.y14_c00082{bottom:444.213333pt;}
.y13_c00082{bottom:481.013333pt;}
.y12_c00082{bottom:517.813333pt;}
.y11_c00082{bottom:554.613333pt;}
.y10_c00082{bottom:591.413333pt;}
.yf_c00082{bottom:628.213333pt;}
.ye_c00082{bottom:665.013333pt;}
.yd_c00082{bottom:701.813333pt;}
.yc_c00082{bottom:738.613333pt;}
.yb_c00082{bottom:775.413333pt;}
.ya_c00082{bottom:812.213333pt;}
.y9_c00082{bottom:849.013333pt;}
.y8_c00082{bottom:885.813333pt;}
.y7_c00082{bottom:922.613333pt;}
.y6_c00082{bottom:959.413333pt;}
.y5_c00082{bottom:996.213333pt;}
.h3_c00082{height:18.560000pt;}
.h2_c00082{height:57.375000pt;}
.h1_c00082{height:1089.333333pt;}
.h0_c00082{height:1122.666667pt;}
.w2_c00082{width:17.920000pt;}
.w1_c00082{width:760.000000pt;}
.w0_c00082{width:793.333333pt;}
.x0_c00082{left:0.000000pt;}
.x1_c00082{left:16.666667pt;}
.x4_c00082{left:97.279933pt;}
.x3_c00082{left:113.946667pt;}
.x2_c00082{left:121.280000pt;}
.x5_c00082{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2fd54ed497a9c09aa2462c08.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.ls2_c00083{letter-spacing:-0.014400px;}
.ls1_c00083{letter-spacing:0.000000px;}
.ls0_c00083{letter-spacing:0.014400px;}
.sc__c00083{text-shadow:none;}
.sc0_c00083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00083{-webkit-text-stroke:0px transparent;}
.sc0_c00083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00083{word-spacing:-20.030400px;}
.ws1_c00083{word-spacing:-20.001600px;}
.ws2_c00083{word-spacing:0.000000px;}
._1_c00083{width:1.742400px;}
._6_c00083{width:2.743200px;}
._3_c00083{width:4.795200px;}
._4_c00083{width:6.089100px;}
._5_c00083{width:9.554400px;}
._a_c00083{width:11.304000px;}
._b_c00083{width:12.319200px;}
._f_c00083{width:13.932000px;}
._2_c00083{width:15.048000px;}
._c_c00083{width:18.352800px;}
._7_c00083{width:21.672000px;}
._d_c00083{width:22.881600px;}
._10_c00083{width:29.383200px;}
._11_c00083{width:32.342400px;}
._8_c00083{width:37.216800px;}
._e_c00083{width:38.671200px;}
._9_c00083{width:66.441600px;}
._0_c00083{width:2079.683700px;}
.fc1_c00083{color:transparent;}
.fc0_c00083{color:rgb(0,0,0);}
.fs0_c00083{font-size:72.000000px;}
.y0_c00083{bottom:0.000000px;}
.y5_c00083{bottom:4.320000px;}
.y1_c00083{bottom:18.750000px;}
.y3_c00083{bottom:37.860030px;}
.y4_c00083{bottom:52.290030px;}
.y1e_c00083{bottom:127.140030px;}
.y1d_c00083{bottom:168.540000px;}
.y1c_c00083{bottom:209.940000px;}
.y1b_c00083{bottom:251.340000px;}
.y1a_c00083{bottom:292.740000px;}
.y19_c00083{bottom:334.140000px;}
.y18_c00083{bottom:375.540000px;}
.y17_c00083{bottom:416.940000px;}
.y16_c00083{bottom:458.340000px;}
.y15_c00083{bottom:499.740000px;}
.y14_c00083{bottom:541.140000px;}
.y13_c00083{bottom:582.540000px;}
.y12_c00083{bottom:623.940000px;}
.y11_c00083{bottom:665.340000px;}
.y10_c00083{bottom:706.740000px;}
.yf_c00083{bottom:748.140000px;}
.ye_c00083{bottom:789.540000px;}
.yd_c00083{bottom:830.940000px;}
.yc_c00083{bottom:872.340000px;}
.yb_c00083{bottom:913.740000px;}
.ya_c00083{bottom:955.140000px;}
.y9_c00083{bottom:996.540000px;}
.y8_c00083{bottom:1037.940000px;}
.y7_c00083{bottom:1079.340000px;}
.y6_c00083{bottom:1120.740000px;}
.y2_c00083{bottom:1173.660000px;}
.h3_c00083{height:20.880000px;}
.h2_c00083{height:64.546875px;}
.h1_c00083{height:1225.500000px;}
.h0_c00083{height:1263.000000px;}
.w2_c00083{width:20.160000px;}
.w1_c00083{width:855.000000px;}
.w0_c00083{width:892.500000px;}
.x0_c00083{left:0.000000px;}
.x1_c00083{left:18.750000px;}
.x2_c00083{left:109.439925px;}
.x3_c00083{left:136.440000px;}
.x5_c00083{left:151.965150px;}
.x4_c00083{left:745.590000px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls2_c00083{letter-spacing:-0.012800pt;}
.ls1_c00083{letter-spacing:0.000000pt;}
.ls0_c00083{letter-spacing:0.012800pt;}
.ws0_c00083{word-spacing:-17.804800pt;}
.ws1_c00083{word-spacing:-17.779200pt;}
.ws2_c00083{word-spacing:0.000000pt;}
._1_c00083{width:1.548800pt;}
._6_c00083{width:2.438400pt;}
._3_c00083{width:4.262400pt;}
._4_c00083{width:5.412533pt;}
._5_c00083{width:8.492800pt;}
._a_c00083{width:10.048000pt;}
._b_c00083{width:10.950400pt;}
._f_c00083{width:12.384000pt;}
._2_c00083{width:13.376000pt;}
._c_c00083{width:16.313600pt;}
._7_c00083{width:19.264000pt;}
._d_c00083{width:20.339200pt;}
._10_c00083{width:26.118400pt;}
._11_c00083{width:28.748800pt;}
._8_c00083{width:33.081600pt;}
._e_c00083{width:34.374400pt;}
._9_c00083{width:59.059200pt;}
._0_c00083{width:1848.607733pt;}
.fs0_c00083{font-size:64.000000pt;}
.y0_c00083{bottom:0.000000pt;}
.y5_c00083{bottom:3.840000pt;}
.y1_c00083{bottom:16.666667pt;}
.y3_c00083{bottom:33.653360pt;}
.y4_c00083{bottom:46.480027pt;}
.y1e_c00083{bottom:113.013360pt;}
.y1d_c00083{bottom:149.813333pt;}
.y1c_c00083{bottom:186.613333pt;}
.y1b_c00083{bottom:223.413333pt;}
.y1a_c00083{bottom:260.213333pt;}
.y19_c00083{bottom:297.013333pt;}
.y18_c00083{bottom:333.813333pt;}
.y17_c00083{bottom:370.613333pt;}
.y16_c00083{bottom:407.413333pt;}
.y15_c00083{bottom:444.213333pt;}
.y14_c00083{bottom:481.013333pt;}
.y13_c00083{bottom:517.813333pt;}
.y12_c00083{bottom:554.613333pt;}
.y11_c00083{bottom:591.413333pt;}
.y10_c00083{bottom:628.213333pt;}
.yf_c00083{bottom:665.013333pt;}
.ye_c00083{bottom:701.813333pt;}
.yd_c00083{bottom:738.613333pt;}
.yc_c00083{bottom:775.413333pt;}
.yb_c00083{bottom:812.213333pt;}
.ya_c00083{bottom:849.013333pt;}
.y9_c00083{bottom:885.813333pt;}
.y8_c00083{bottom:922.613333pt;}
.y7_c00083{bottom:959.413333pt;}
.y6_c00083{bottom:996.213333pt;}
.y2_c00083{bottom:1043.253333pt;}
.h3_c00083{height:18.560000pt;}
.h2_c00083{height:57.375000pt;}
.h1_c00083{height:1089.333333pt;}
.h0_c00083{height:1122.666667pt;}
.w2_c00083{width:17.920000pt;}
.w1_c00083{width:760.000000pt;}
.w0_c00083{width:793.333333pt;}
.x0_c00083{left:0.000000pt;}
.x1_c00083{left:16.666667pt;}
.x2_c00083{left:97.279933pt;}
.x3_c00083{left:121.280000pt;}
.x5_c00083{left:135.080133pt;}
.x4_c00083{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3cb947b3bd7dbee8a2b0e2ab.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00084;src:url('chunks/assets/font_6d7dcb6e708b4852a013d655.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00084{vertical-align:0.000000px;}
.ls1_c00084{letter-spacing:0.000000px;}
.ls0_c00084{letter-spacing:0.014400px;}
.sc__c00084{text-shadow:none;}
.sc0_c00084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00084{-webkit-text-stroke:0px transparent;}
.sc0_c00084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00084{word-spacing:-20.030400px;}
.ws1_c00084{word-spacing:0.000000px;}
._d_c00084{width:1.929600px;}
._a_c00084{width:5.018400px;}
._12_c00084{width:6.912000px;}
._10_c00084{width:8.359200px;}
._6_c00084{width:9.367200px;}
._b_c00084{width:10.526400px;}
._f_c00084{width:14.320800px;}
._c_c00084{width:18.568800px;}
._3_c00084{width:22.308900px;}
._11_c00084{width:23.843100px;}
._2_c00084{width:28.101600px;}
._e_c00084{width:29.829600px;}
._5_c00084{width:30.988800px;}
._4_c00084{width:34.610400px;}
._9_c00084{width:39.173700px;}
._7_c00084{width:45.864000px;}
._1_c00084{width:48.499200px;}
._8_c00084{width:67.701600px;}
._0_c00084{width:1146.683400px;}
.fc1_c00084{color:transparent;}
.fc0_c00084{color:rgb(0,0,0);}
.fs0_c00084{font-size:72.000000px;}
.y0_c00084{bottom:0.000000px;}
.y4_c00084{bottom:4.320000px;}
.y1_c00084{bottom:18.750000px;}
.y2_c00084{bottom:37.860030px;}
.y3_c00084{bottom:52.290030px;}
.y1d_c00084{bottom:109.140030px;}
.y1c_c00084{bottom:150.540000px;}
.y1b_c00084{bottom:191.940000px;}
.y1a_c00084{bottom:233.340000px;}
.y19_c00084{bottom:274.740000px;}
.y18_c00084{bottom:316.140000px;}
.y17_c00084{bottom:357.540000px;}
.y16_c00084{bottom:398.940000px;}
.y15_c00084{bottom:440.340000px;}
.y14_c00084{bottom:481.740000px;}
.y13_c00084{bottom:523.140000px;}
.y12_c00084{bottom:564.540000px;}
.y11_c00084{bottom:605.940000px;}
.y10_c00084{bottom:647.340000px;}
.yf_c00084{bottom:688.740000px;}
.ye_c00084{bottom:730.140000px;}
.yd_c00084{bottom:771.540000px;}
.yc_c00084{bottom:830.940000px;}
.yb_c00084{bottom:872.340000px;}
.ya_c00084{bottom:913.740000px;}
.y9_c00084{bottom:955.140000px;}
.y8_c00084{bottom:996.540000px;}
.y7_c00084{bottom:1037.940000px;}
.y6_c00084{bottom:1079.340000px;}
.y5_c00084{bottom:1120.740000px;}
.h3_c00084{height:20.880000px;}
.h2_c00084{height:64.546875px;}
.h4_c00084{height:65.003906px;}
.h1_c00084{height:1225.500000px;}
.h0_c00084{height:1263.000000px;}
.w2_c00084{width:20.160000px;}
.w1_c00084{width:855.000000px;}
.w0_c00084{width:892.500000px;}
.x0_c00084{left:0.000000px;}
.x1_c00084{left:18.750000px;}
.x4_c00084{left:109.439925px;}
.x3_c00084{left:128.190000px;}
.x2_c00084{left:136.440000px;}
.x5_c00084{left:151.965150px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls1_c00084{letter-spacing:0.000000pt;}
.ls0_c00084{letter-spacing:0.012800pt;}
.ws0_c00084{word-spacing:-17.804800pt;}
.ws1_c00084{word-spacing:0.000000pt;}
._d_c00084{width:1.715200pt;}
._a_c00084{width:4.460800pt;}
._12_c00084{width:6.144000pt;}
._10_c00084{width:7.430400pt;}
._6_c00084{width:8.326400pt;}
._b_c00084{width:9.356800pt;}
._f_c00084{width:12.729600pt;}
._c_c00084{width:16.505600pt;}
._3_c00084{width:19.830133pt;}
._11_c00084{width:21.193867pt;}
._2_c00084{width:24.979200pt;}
._e_c00084{width:26.515200pt;}
._5_c00084{width:27.545600pt;}
._4_c00084{width:30.764800pt;}
._9_c00084{width:34.821067pt;}
._7_c00084{width:40.768000pt;}
._1_c00084{width:43.110400pt;}
._8_c00084{width:60.179200pt;}
._0_c00084{width:1019.274133pt;}
.fs0_c00084{font-size:64.000000pt;}
.y0_c00084{bottom:0.000000pt;}
.y4_c00084{bottom:3.840000pt;}
.y1_c00084{bottom:16.666667pt;}
.y2_c00084{bottom:33.653360pt;}
.y3_c00084{bottom:46.480027pt;}
.y1d_c00084{bottom:97.013360pt;}
.y1c_c00084{bottom:133.813333pt;}
.y1b_c00084{bottom:170.613333pt;}
.y1a_c00084{bottom:207.413333pt;}
.y19_c00084{bottom:244.213333pt;}
.y18_c00084{bottom:281.013333pt;}
.y17_c00084{bottom:317.813333pt;}
.y16_c00084{bottom:354.613333pt;}
.y15_c00084{bottom:391.413333pt;}
.y14_c00084{bottom:428.213333pt;}
.y13_c00084{bottom:465.013333pt;}
.y12_c00084{bottom:501.813333pt;}
.y11_c00084{bottom:538.613333pt;}
.y10_c00084{bottom:575.413333pt;}
.yf_c00084{bottom:612.213333pt;}
.ye_c00084{bottom:649.013333pt;}
.yd_c00084{bottom:685.813333pt;}
.yc_c00084{bottom:738.613333pt;}
.yb_c00084{bottom:775.413333pt;}
.ya_c00084{bottom:812.213333pt;}
.y9_c00084{bottom:849.013333pt;}
.y8_c00084{bottom:885.813333pt;}
.y7_c00084{bottom:922.613333pt;}
.y6_c00084{bottom:959.413333pt;}
.y5_c00084{bottom:996.213333pt;}
.h3_c00084{height:18.560000pt;}
.h2_c00084{height:57.375000pt;}
.h4_c00084{height:57.781250pt;}
.h1_c00084{height:1089.333333pt;}
.h0_c00084{height:1122.666667pt;}
.w2_c00084{width:17.920000pt;}
.w1_c00084{width:760.000000pt;}
.w0_c00084{width:793.333333pt;}
.x0_c00084{left:0.000000pt;}
.x1_c00084{left:16.666667pt;}
.x4_c00084{left:97.279933pt;}
.x3_c00084{left:113.946667pt;}
.x2_c00084{left:121.280000pt;}
.x5_c00084{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_77819c50857529817e0bb77e.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00085{vertical-align:0.000000px;}
.ls1_c00085{letter-spacing:0.000000px;}
.ls0_c00085{letter-spacing:0.014400px;}
.sc__c00085{text-shadow:none;}
.sc0_c00085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00085{-webkit-text-stroke:0px transparent;}
.sc0_c00085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00085{word-spacing:-20.030400px;}
.ws1_c00085{word-spacing:0.000000px;}
._f_c00085{margin-left:-1.008000px;}
._9_c00085{width:1.688700px;}
._4_c00085{width:3.264900px;}
._7_c00085{width:4.269600px;}
._8_c00085{width:5.282400px;}
._d_c00085{width:6.540000px;}
._6_c00085{width:8.488800px;}
._1_c00085{width:13.420800px;}
._5_c00085{width:16.819200px;}
._e_c00085{width:18.928800px;}
._c_c00085{width:24.069600px;}
._b_c00085{width:25.156800px;}
._10_c00085{width:26.949600px;}
._3_c00085{width:32.558400px;}
._a_c00085{width:37.663200px;}
._2_c00085{width:39.506400px;}
._11_c00085{width:53.078400px;}
._0_c00085{width:2079.683700px;}
.fc1_c00085{color:transparent;}
.fc0_c00085{color:rgb(0,0,0);}
.fs0_c00085{font-size:72.000000px;}
.y0_c00085{bottom:0.000000px;}
.y5_c00085{bottom:4.320000px;}
.y1_c00085{bottom:18.750000px;}
.y3_c00085{bottom:37.860030px;}
.y4_c00085{bottom:52.290030px;}
.y1e_c00085{bottom:127.140030px;}
.y1d_c00085{bottom:168.540000px;}
.y1c_c00085{bottom:209.940000px;}
.y1b_c00085{bottom:251.340000px;}
.y1a_c00085{bottom:292.740000px;}
.y19_c00085{bottom:334.140000px;}
.y18_c00085{bottom:375.540000px;}
.y17_c00085{bottom:416.940000px;}
.y16_c00085{bottom:458.340000px;}
.y15_c00085{bottom:499.740000px;}
.y14_c00085{bottom:541.140000px;}
.y13_c00085{bottom:582.540000px;}
.y12_c00085{bottom:623.940000px;}
.y11_c00085{bottom:665.340000px;}
.y10_c00085{bottom:706.740000px;}
.yf_c00085{bottom:748.140000px;}
.ye_c00085{bottom:789.540000px;}
.yd_c00085{bottom:830.940000px;}
.yc_c00085{bottom:872.340000px;}
.yb_c00085{bottom:913.740000px;}
.ya_c00085{bottom:955.140000px;}
.y9_c00085{bottom:996.540000px;}
.y8_c00085{bottom:1037.940000px;}
.y7_c00085{bottom:1079.340000px;}
.y6_c00085{bottom:1120.740000px;}
.y2_c00085{bottom:1173.660000px;}
.h3_c00085{height:20.880000px;}
.h2_c00085{height:64.546875px;}
.h1_c00085{height:1225.500000px;}
.h0_c00085{height:1263.000000px;}
.w2_c00085{width:20.160000px;}
.w1_c00085{width:855.000000px;}
.w0_c00085{width:892.500000px;}
.x0_c00085{left:0.000000px;}
.x1_c00085{left:18.750000px;}
.x2_c00085{left:109.439925px;}
.x3_c00085{left:136.440000px;}
.x5_c00085{left:151.965150px;}
.x4_c00085{left:745.590000px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls1_c00085{letter-spacing:0.000000pt;}
.ls0_c00085{letter-spacing:0.012800pt;}
.ws0_c00085{word-spacing:-17.804800pt;}
.ws1_c00085{word-spacing:0.000000pt;}
._f_c00085{margin-left:-0.896000pt;}
._9_c00085{width:1.501067pt;}
._4_c00085{width:2.902133pt;}
._7_c00085{width:3.795200pt;}
._8_c00085{width:4.695467pt;}
._d_c00085{width:5.813333pt;}
._6_c00085{width:7.545600pt;}
._1_c00085{width:11.929600pt;}
._5_c00085{width:14.950400pt;}
._e_c00085{width:16.825600pt;}
._c_c00085{width:21.395200pt;}
._b_c00085{width:22.361600pt;}
._10_c00085{width:23.955200pt;}
._3_c00085{width:28.940800pt;}
._a_c00085{width:33.478400pt;}
._2_c00085{width:35.116800pt;}
._11_c00085{width:47.180800pt;}
._0_c00085{width:1848.607733pt;}
.fs0_c00085{font-size:64.000000pt;}
.y0_c00085{bottom:0.000000pt;}
.y5_c00085{bottom:3.840000pt;}
.y1_c00085{bottom:16.666667pt;}
.y3_c00085{bottom:33.653360pt;}
.y4_c00085{bottom:46.480027pt;}
.y1e_c00085{bottom:113.013360pt;}
.y1d_c00085{bottom:149.813333pt;}
.y1c_c00085{bottom:186.613333pt;}
.y1b_c00085{bottom:223.413333pt;}
.y1a_c00085{bottom:260.213333pt;}
.y19_c00085{bottom:297.013333pt;}
.y18_c00085{bottom:333.813333pt;}
.y17_c00085{bottom:370.613333pt;}
.y16_c00085{bottom:407.413333pt;}
.y15_c00085{bottom:444.213333pt;}
.y14_c00085{bottom:481.013333pt;}
.y13_c00085{bottom:517.813333pt;}
.y12_c00085{bottom:554.613333pt;}
.y11_c00085{bottom:591.413333pt;}
.y10_c00085{bottom:628.213333pt;}
.yf_c00085{bottom:665.013333pt;}
.ye_c00085{bottom:701.813333pt;}
.yd_c00085{bottom:738.613333pt;}
.yc_c00085{bottom:775.413333pt;}
.yb_c00085{bottom:812.213333pt;}
.ya_c00085{bottom:849.013333pt;}
.y9_c00085{bottom:885.813333pt;}
.y8_c00085{bottom:922.613333pt;}
.y7_c00085{bottom:959.413333pt;}
.y6_c00085{bottom:996.213333pt;}
.y2_c00085{bottom:1043.253333pt;}
.h3_c00085{height:18.560000pt;}
.h2_c00085{height:57.375000pt;}
.h1_c00085{height:1089.333333pt;}
.h0_c00085{height:1122.666667pt;}
.w2_c00085{width:17.920000pt;}
.w1_c00085{width:760.000000pt;}
.w0_c00085{width:793.333333pt;}
.x0_c00085{left:0.000000pt;}
.x1_c00085{left:16.666667pt;}
.x2_c00085{left:97.279933pt;}
.x3_c00085{left:121.280000pt;}
.x5_c00085{left:135.080133pt;}
.x4_c00085{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_654c3b4afd3c86e9de098536.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.ls3_c00086{letter-spacing:0.000000px;}
.ls0_c00086{letter-spacing:0.014400px;}
.ls1_c00086{letter-spacing:0.036000px;}
.ls7_c00086{letter-spacing:0.324000px;}
.ls8_c00086{letter-spacing:0.602640px;}
.ls6_c00086{letter-spacing:0.725760px;}
.ls5_c00086{letter-spacing:0.797040px;}
.ls4_c00086{letter-spacing:0.874800px;}
.ls2_c00086{letter-spacing:7.612800px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00086{word-spacing:-20.030400px;}
.ws1_c00086{word-spacing:-18.889200px;}
.ws2_c00086{word-spacing:-18.338400px;}
.ws3_c00086{word-spacing:0.000000px;}
._8_c00086{margin-left:-1.075800px;}
._3_c00086{width:1.087200px;}
._1_c00086{width:2.088000px;}
._6_c00086{width:4.989600px;}
._d_c00086{width:7.113600px;}
._b_c00086{width:8.143200px;}
._4_c00086{width:9.799200px;}
._c_c00086{width:12.412800px;}
._9_c00086{width:14.943000px;}
._2_c00086{width:16.819200px;}
._a_c00086{width:20.426400px;}
._5_c00086{width:23.925600px;}
._7_c00086{width:29.815200px;}
._e_c00086{width:57.571200px;}
._0_c00086{width:1146.683400px;}
.fc1_c00086{color:transparent;}
.fc0_c00086{color:rgb(0,0,0);}
.fs1_c00086{font-size:64.800000px;}
.fs0_c00086{font-size:72.000000px;}
.y0_c00086{bottom:0.000000px;}
.y4_c00086{bottom:4.320000px;}
.y19_c00086{bottom:12.960000px;}
.y1_c00086{bottom:18.750000px;}
.y1e_c00086{bottom:32.040000px;}
.y2_c00086{bottom:37.860030px;}
.y18_c00086{bottom:41.400000px;}
.y1d_c00086{bottom:51.120000px;}
.y3_c00086{bottom:52.290030px;}
.y17_c00086{bottom:69.840000px;}
.y1c_c00086{bottom:70.200000px;}
.y13_c00086{bottom:79.560000px;}
.y16_c00086{bottom:98.280000px;}
.y12_c00086{bottom:98.640000px;}
.y11_c00086{bottom:117.720000px;}
.y15_c00086{bottom:126.720000px;}
.y26_c00086{bottom:131.820000px;}
.y10_c00086{bottom:136.440000px;}
.y14_c00086{bottom:155.160000px;}
.yf_c00086{bottom:155.520000px;}
.y25_c00086{bottom:173.220000px;}
.y24_c00086{bottom:214.620000px;}
.y23_c00086{bottom:256.020000px;}
.y22_c00086{bottom:297.420000px;}
.y21_c00086{bottom:338.820000px;}
.y20_c00086{bottom:380.220000px;}
.y1f_c00086{bottom:421.620000px;}
.y1b_c00086{bottom:487.890000px;}
.y1a_c00086{bottom:562.020000px;}
.ye_c00086{bottom:599.850000px;}
.yd_c00086{bottom:789.540000px;}
.yc_c00086{bottom:830.940000px;}
.yb_c00086{bottom:872.340000px;}
.ya_c00086{bottom:913.740000px;}
.y9_c00086{bottom:955.140000px;}
.y8_c00086{bottom:996.540000px;}
.y7_c00086{bottom:1037.940000px;}
.y6_c00086{bottom:1079.340000px;}
.y5_c00086{bottom:1120.740000px;}
.h3_c00086{height:20.880000px;}
.h5_c00086{height:58.092188px;}
.h2_c00086{height:64.546875px;}
.h6_c00086{height:85.320000px;}
.h4_c00086{height:170.640000px;}
.h1_c00086{height:1225.500000px;}
.h0_c00086{height:1263.000000px;}
.w2_c00086{width:20.160000px;}
.w3_c00086{width:136.079985px;}
.w5_c00086{width:136.440000px;}
.w4_c00086{width:497.160000px;}
.w6_c00086{width:500.400000px;}
.w1_c00086{width:855.000000px;}
.w0_c00086{width:892.500000px;}
.x0_c00086{left:0.000000px;}
.xb_c00086{left:8.280150px;}
.x1_c00086{left:18.750000px;}
.xe_c00086{left:20.034240px;}
.x9_c00086{left:26.974500px;}
.xc_c00086{left:41.805300px;}
.x10_c00086{left:43.680000px;}
.x8_c00086{left:67.777500px;}
.x7_c00086{left:88.215000px;}
.x4_c00086{left:109.439925px;}
.x3_c00086{left:128.190000px;}
.x6_c00086{left:130.350000px;}
.x2_c00086{left:136.440000px;}
.x5_c00086{left:151.965150px;}
.xf_c00086{left:265.350000px;}
.xa_c00086{left:267.150000px;}
.xd_c00086{left:449.377350px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls3_c00086{letter-spacing:0.000000pt;}
.ls0_c00086{letter-spacing:0.012800pt;}
.ls1_c00086{letter-spacing:0.032000pt;}
.ls7_c00086{letter-spacing:0.288000pt;}
.ls8_c00086{letter-spacing:0.535680pt;}
.ls6_c00086{letter-spacing:0.645120pt;}
.ls5_c00086{letter-spacing:0.708480pt;}
.ls4_c00086{letter-spacing:0.777600pt;}
.ls2_c00086{letter-spacing:6.766933pt;}
.ws0_c00086{word-spacing:-17.804800pt;}
.ws1_c00086{word-spacing:-16.790400pt;}
.ws2_c00086{word-spacing:-16.300800pt;}
.ws3_c00086{word-spacing:0.000000pt;}
._8_c00086{margin-left:-0.956267pt;}
._3_c00086{width:0.966400pt;}
._1_c00086{width:1.856000pt;}
._6_c00086{width:4.435200pt;}
._d_c00086{width:6.323200pt;}
._b_c00086{width:7.238400pt;}
._4_c00086{width:8.710400pt;}
._c_c00086{width:11.033600pt;}
._9_c00086{width:13.282667pt;}
._2_c00086{width:14.950400pt;}
._a_c00086{width:18.156800pt;}
._5_c00086{width:21.267200pt;}
._7_c00086{width:26.502400pt;}
._e_c00086{width:51.174400pt;}
._0_c00086{width:1019.274133pt;}
.fs1_c00086{font-size:57.600000pt;}
.fs0_c00086{font-size:64.000000pt;}
.y0_c00086{bottom:0.000000pt;}
.y4_c00086{bottom:3.840000pt;}
.y19_c00086{bottom:11.520000pt;}
.y1_c00086{bottom:16.666667pt;}
.y1e_c00086{bottom:28.480000pt;}
.y2_c00086{bottom:33.653360pt;}
.y18_c00086{bottom:36.800000pt;}
.y1d_c00086{bottom:45.440000pt;}
.y3_c00086{bottom:46.480027pt;}
.y17_c00086{bottom:62.080000pt;}
.y1c_c00086{bottom:62.400000pt;}
.y13_c00086{bottom:70.720000pt;}
.y16_c00086{bottom:87.360000pt;}
.y12_c00086{bottom:87.680000pt;}
.y11_c00086{bottom:104.640000pt;}
.y15_c00086{bottom:112.640000pt;}
.y26_c00086{bottom:117.173333pt;}
.y10_c00086{bottom:121.280000pt;}
.y14_c00086{bottom:137.920000pt;}
.yf_c00086{bottom:138.240000pt;}
.y25_c00086{bottom:153.973333pt;}
.y24_c00086{bottom:190.773333pt;}
.y23_c00086{bottom:227.573333pt;}
.y22_c00086{bottom:264.373333pt;}
.y21_c00086{bottom:301.173333pt;}
.y20_c00086{bottom:337.973333pt;}
.y1f_c00086{bottom:374.773333pt;}
.y1b_c00086{bottom:433.680000pt;}
.y1a_c00086{bottom:499.573333pt;}
.ye_c00086{bottom:533.200000pt;}
.yd_c00086{bottom:701.813333pt;}
.yc_c00086{bottom:738.613333pt;}
.yb_c00086{bottom:775.413333pt;}
.ya_c00086{bottom:812.213333pt;}
.y9_c00086{bottom:849.013333pt;}
.y8_c00086{bottom:885.813333pt;}
.y7_c00086{bottom:922.613333pt;}
.y6_c00086{bottom:959.413333pt;}
.y5_c00086{bottom:996.213333pt;}
.h3_c00086{height:18.560000pt;}
.h5_c00086{height:51.637500pt;}
.h2_c00086{height:57.375000pt;}
.h6_c00086{height:75.840000pt;}
.h4_c00086{height:151.680000pt;}
.h1_c00086{height:1089.333333pt;}
.h0_c00086{height:1122.666667pt;}
.w2_c00086{width:17.920000pt;}
.w3_c00086{width:120.959987pt;}
.w5_c00086{width:121.280000pt;}
.w4_c00086{width:441.920000pt;}
.w6_c00086{width:444.800000pt;}
.w1_c00086{width:760.000000pt;}
.w0_c00086{width:793.333333pt;}
.x0_c00086{left:0.000000pt;}
.xb_c00086{left:7.360133pt;}
.x1_c00086{left:16.666667pt;}
.xe_c00086{left:17.808213pt;}
.x9_c00086{left:23.977333pt;}
.xc_c00086{left:37.160267pt;}
.x10_c00086{left:38.826667pt;}
.x8_c00086{left:60.246667pt;}
.x7_c00086{left:78.413333pt;}
.x4_c00086{left:97.279933pt;}
.x3_c00086{left:113.946667pt;}
.x6_c00086{left:115.866667pt;}
.x2_c00086{left:121.280000pt;}
.x5_c00086{left:135.080133pt;}
.xf_c00086{left:235.866667pt;}
.xa_c00086{left:237.466667pt;}
.xd_c00086{left:399.446533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5036bc84bc402e1d76d491f.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00087;src:url('chunks/assets/font_eb237e017a71bc6350a4ae96.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00087;src:url('chunks/assets/font_817095b625770a2a671c75fc.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00087;src:url('chunks/assets/font_259c89a2eea68783f266bfb7.woff2')format("woff");}.ff4_c00087{font-family:ff4_c00087;line-height:1.111328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00087{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00087{vertical-align:0.000000px;}
.ls7_c00087{letter-spacing:-0.014400px;}
.ls6_c00087{letter-spacing:0.000000px;}
.ls0_c00087{letter-spacing:0.014400px;}
.ls8_c00087{letter-spacing:0.036000px;}
.lsc_c00087{letter-spacing:0.191808px;}
.ls9_c00087{letter-spacing:0.239760px;}
.ls3_c00087{letter-spacing:0.240360px;}
.lsb_c00087{letter-spacing:0.362304px;}
.ls5_c00087{letter-spacing:0.404928px;}
.ls2_c00087{letter-spacing:0.410256px;}
.lsa_c00087{letter-spacing:0.431568px;}
.ls4_c00087{letter-spacing:2.874360px;}
.ls1_c00087{letter-spacing:46.991340px;}
.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:-20.030400px;}
.ws1_c00087{word-spacing:-20.001600px;}
.ws3_c00087{word-spacing:-15.222096px;}
.ws2_c00087{word-spacing:-15.051600px;}
.ws4_c00087{word-spacing:-15.003648px;}
.ws5_c00087{word-spacing:0.000000px;}
._10_c00087{margin-left:-1.101384px;}
._4_c00087{width:1.706400px;}
._f_c00087{width:3.416880px;}
._9_c00087{width:4.420800px;}
._1_c00087{width:5.587200px;}
._c_c00087{width:7.552800px;}
._5_c00087{width:10.396800px;}
._8_c00087{width:11.422500px;}
._7_c00087{width:14.508300px;}
._b_c00087{width:17.740800px;}
._3_c00087{width:21.798000px;}
._d_c00087{width:24.163200px;}
._6_c00087{width:25.725600px;}
._a_c00087{width:28.378500px;}
._2_c00087{width:29.931300px;}
._e_c00087{width:43.113600px;}
._0_c00087{width:2079.683700px;}
.fc1_c00087{color:transparent;}
.fc0_c00087{color:rgb(0,0,0);}
.fs1_c00087{font-size:53.280000px;}
.fs0_c00087{font-size:72.000000px;}
.y0_c00087{bottom:0.000000px;}
.y5_c00087{bottom:4.320000px;}
.y1_c00087{bottom:18.750000px;}
.y3_c00087{bottom:37.860030px;}
.y4_c00087{bottom:52.290030px;}
.y20_c00087{bottom:101.580030px;}
.y1f_c00087{bottom:121.020030px;}
.y1e_c00087{bottom:136.500000px;}
.y1d_c00087{bottom:152.340000px;}
.y1c_c00087{bottom:191.940000px;}
.y1b_c00087{bottom:233.340000px;}
.y1a_c00087{bottom:274.740000px;}
.y19_c00087{bottom:316.140000px;}
.y18_c00087{bottom:357.540000px;}
.y17_c00087{bottom:398.940000px;}
.y16_c00087{bottom:440.340000px;}
.y15_c00087{bottom:481.740000px;}
.y14_c00087{bottom:523.140000px;}
.y13_c00087{bottom:564.540000px;}
.y12_c00087{bottom:605.940000px;}
.y11_c00087{bottom:647.340000px;}
.y10_c00087{bottom:688.740000px;}
.yf_c00087{bottom:730.140000px;}
.ye_c00087{bottom:771.540000px;}
.yd_c00087{bottom:812.940000px;}
.yc_c00087{bottom:854.340000px;}
.yb_c00087{bottom:895.740000px;}
.ya_c00087{bottom:937.140000px;}
.y9_c00087{bottom:978.540000px;}
.y8_c00087{bottom:1019.940000px;}
.y7_c00087{bottom:1079.340000px;}
.y6_c00087{bottom:1120.740000px;}
.y2_c00087{bottom:1173.660000px;}
.h3_c00087{height:20.880000px;}
.h6_c00087{height:47.764688px;}
.h2_c00087{height:64.546875px;}
.h4_c00087{height:65.003906px;}
.h5_c00087{height:65.707031px;}
.h1_c00087{height:1225.500000px;}
.h0_c00087{height:1263.000000px;}
.w2_c00087{width:20.160000px;}
.w1_c00087{width:855.000000px;}
.w0_c00087{width:892.500000px;}
.x0_c00087{left:0.000000px;}
.x1_c00087{left:18.750000px;}
.x2_c00087{left:109.439925px;}
.x3_c00087{left:136.440000px;}
.x6_c00087{left:141.390000px;}
.x5_c00087{left:151.965150px;}
.x4_c00087{left:745.590000px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls7_c00087{letter-spacing:-0.012800pt;}
.ls6_c00087{letter-spacing:0.000000pt;}
.ls0_c00087{letter-spacing:0.012800pt;}
.ls8_c00087{letter-spacing:0.032000pt;}
.lsc_c00087{letter-spacing:0.170496pt;}
.ls9_c00087{letter-spacing:0.213120pt;}
.ls3_c00087{letter-spacing:0.213653pt;}
.lsb_c00087{letter-spacing:0.322048pt;}
.ls5_c00087{letter-spacing:0.359936pt;}
.ls2_c00087{letter-spacing:0.364672pt;}
.lsa_c00087{letter-spacing:0.383616pt;}
.ls4_c00087{letter-spacing:2.554987pt;}
.ls1_c00087{letter-spacing:41.770080pt;}
.ws0_c00087{word-spacing:-17.804800pt;}
.ws1_c00087{word-spacing:-17.779200pt;}
.ws3_c00087{word-spacing:-13.530752pt;}
.ws2_c00087{word-spacing:-13.379200pt;}
.ws4_c00087{word-spacing:-13.336576pt;}
.ws5_c00087{word-spacing:0.000000pt;}
._10_c00087{margin-left:-0.979008pt;}
._4_c00087{width:1.516800pt;}
._f_c00087{width:3.037227pt;}
._9_c00087{width:3.929600pt;}
._1_c00087{width:4.966400pt;}
._c_c00087{width:6.713600pt;}
._5_c00087{width:9.241600pt;}
._8_c00087{width:10.153333pt;}
._7_c00087{width:12.896267pt;}
._b_c00087{width:15.769600pt;}
._3_c00087{width:19.376000pt;}
._d_c00087{width:21.478400pt;}
._6_c00087{width:22.867200pt;}
._a_c00087{width:25.225333pt;}
._2_c00087{width:26.605600pt;}
._e_c00087{width:38.323200pt;}
._0_c00087{width:1848.607733pt;}
.fs1_c00087{font-size:47.360000pt;}
.fs0_c00087{font-size:64.000000pt;}
.y0_c00087{bottom:0.000000pt;}
.y5_c00087{bottom:3.840000pt;}
.y1_c00087{bottom:16.666667pt;}
.y3_c00087{bottom:33.653360pt;}
.y4_c00087{bottom:46.480027pt;}
.y20_c00087{bottom:90.293360pt;}
.y1f_c00087{bottom:107.573360pt;}
.y1e_c00087{bottom:121.333333pt;}
.y1d_c00087{bottom:135.413333pt;}
.y1c_c00087{bottom:170.613333pt;}
.y1b_c00087{bottom:207.413333pt;}
.y1a_c00087{bottom:244.213333pt;}
.y19_c00087{bottom:281.013333pt;}
.y18_c00087{bottom:317.813333pt;}
.y17_c00087{bottom:354.613333pt;}
.y16_c00087{bottom:391.413333pt;}
.y15_c00087{bottom:428.213333pt;}
.y14_c00087{bottom:465.013333pt;}
.y13_c00087{bottom:501.813333pt;}
.y12_c00087{bottom:538.613333pt;}
.y11_c00087{bottom:575.413333pt;}
.y10_c00087{bottom:612.213333pt;}
.yf_c00087{bottom:649.013333pt;}
.ye_c00087{bottom:685.813333pt;}
.yd_c00087{bottom:722.613333pt;}
.yc_c00087{bottom:759.413333pt;}
.yb_c00087{bottom:796.213333pt;}
.ya_c00087{bottom:833.013333pt;}
.y9_c00087{bottom:869.813333pt;}
.y8_c00087{bottom:906.613333pt;}
.y7_c00087{bottom:959.413333pt;}
.y6_c00087{bottom:996.213333pt;}
.y2_c00087{bottom:1043.253333pt;}
.h3_c00087{height:18.560000pt;}
.h6_c00087{height:42.457500pt;}
.h2_c00087{height:57.375000pt;}
.h4_c00087{height:57.781250pt;}
.h5_c00087{height:58.406250pt;}
.h1_c00087{height:1089.333333pt;}
.h0_c00087{height:1122.666667pt;}
.w2_c00087{width:17.920000pt;}
.w1_c00087{width:760.000000pt;}
.w0_c00087{width:793.333333pt;}
.x0_c00087{left:0.000000pt;}
.x1_c00087{left:16.666667pt;}
.x2_c00087{left:97.279933pt;}
.x3_c00087{left:121.280000pt;}
.x6_c00087{left:125.680000pt;}
.x5_c00087{left:135.080133pt;}
.x4_c00087{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_990daf3e23bf31c9369a037f.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00088;src:url('chunks/assets/font_7eee83703dc568049f534435.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.104492;font-style: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;}
.ls10_c00088{letter-spacing:-0.014400px;}
.lsf_c00088{letter-spacing:0.000000px;}
.ls0_c00088{letter-spacing:0.014400px;}
.lse_c00088{letter-spacing:0.170496px;}
.ls14_c00088{letter-spacing:0.191808px;}
.ls11_c00088{letter-spacing:0.239760px;}
.ls2_c00088{letter-spacing:0.240360px;}
.ls6_c00088{letter-spacing:0.360000px;}
.ls12_c00088{letter-spacing:0.362304px;}
.ls7_c00088{letter-spacing:0.388944px;}
.ls3_c00088{letter-spacing:0.410256px;}
.lsa_c00088{letter-spacing:0.415584px;}
.ls8_c00088{letter-spacing:0.420912px;}
.ls13_c00088{letter-spacing:0.527472px;}
.ls4_c00088{letter-spacing:1.742760px;}
.ls9_c00088{letter-spacing:2.607960px;}
.lsc_c00088{letter-spacing:5.477160px;}
.lsb_c00088{letter-spacing:5.477760px;}
.lsd_c00088{letter-spacing:5.479560px;}
.ls5_c00088{letter-spacing:7.050960px;}
.ls1_c00088{letter-spacing:16.959360px;}
.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:-20.030400px;}
.ws1_c00088{word-spacing:-15.051600px;}
.ws2_c00088{word-spacing:0.000000px;}
._d_c00088{margin-left:-1.154424px;}
._7_c00088{width:1.002300px;}
._3_c00088{width:2.937600px;}
._8_c00088{width:4.464000px;}
._2_c00088{width:5.587200px;}
._e_c00088{width:6.660000px;}
._5_c00088{width:8.308800px;}
._a_c00088{width:9.689700px;}
._c_c00088{width:11.343000px;}
._1_c00088{width:13.240800px;}
._6_c00088{width:14.594400px;}
._4_c00088{width:16.387200px;}
._b_c00088{width:17.560800px;}
._9_c00088{width:23.976000px;}
._0_c00088{width:1146.683400px;}
.fc1_c00088{color:transparent;}
.fc0_c00088{color:rgb(0,0,0);}
.fs1_c00088{font-size:53.280000px;}
.fs0_c00088{font-size:72.000000px;}
.y0_c00088{bottom:0.000000px;}
.y4_c00088{bottom:4.320000px;}
.y1_c00088{bottom:18.750000px;}
.y2_c00088{bottom:37.860030px;}
.y3_c00088{bottom:52.290030px;}
.y24_c00088{bottom:93.660030px;}
.y23_c00088{bottom:113.100030px;}
.y22_c00088{bottom:128.940015px;}
.y21_c00088{bottom:144.420000px;}
.y20_c00088{bottom:159.900000px;}
.y1f_c00088{bottom:175.380000px;}
.y1e_c00088{bottom:190.860000px;}
.y1d_c00088{bottom:206.340000px;}
.y1c_c00088{bottom:221.820000px;}
.y1b_c00088{bottom:237.300000px;}
.y1a_c00088{bottom:253.140000px;}
.y19_c00088{bottom:292.740000px;}
.y18_c00088{bottom:334.140000px;}
.y17_c00088{bottom:375.540000px;}
.y16_c00088{bottom:416.940000px;}
.y15_c00088{bottom:458.340000px;}
.y14_c00088{bottom:499.740000px;}
.y13_c00088{bottom:541.140000px;}
.y12_c00088{bottom:582.540000px;}
.y11_c00088{bottom:623.940000px;}
.y10_c00088{bottom:665.340000px;}
.yf_c00088{bottom:706.740000px;}
.ye_c00088{bottom:748.140000px;}
.yd_c00088{bottom:789.540000px;}
.yc_c00088{bottom:830.940000px;}
.yb_c00088{bottom:872.340000px;}
.ya_c00088{bottom:913.740000px;}
.y9_c00088{bottom:955.140000px;}
.y8_c00088{bottom:996.540000px;}
.y7_c00088{bottom:1037.940000px;}
.y6_c00088{bottom:1079.340000px;}
.y5_c00088{bottom:1120.740000px;}
.h3_c00088{height:20.880000px;}
.h4_c00088{height:47.764688px;}
.h2_c00088{height:64.546875px;}
.h1_c00088{height:1225.500000px;}
.h0_c00088{height:1263.000000px;}
.w2_c00088{width:20.160000px;}
.w1_c00088{width:855.000000px;}
.w0_c00088{width:892.500000px;}
.x0_c00088{left:0.000000px;}
.x1_c00088{left:18.750000px;}
.x5_c00088{left:109.439925px;}
.x3_c00088{left:128.190000px;}
.x2_c00088{left:136.440000px;}
.x6_c00088{left:141.390000px;}
.x4_c00088{left:151.965150px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls10_c00088{letter-spacing:-0.012800pt;}
.lsf_c00088{letter-spacing:0.000000pt;}
.ls0_c00088{letter-spacing:0.012800pt;}
.lse_c00088{letter-spacing:0.151552pt;}
.ls14_c00088{letter-spacing:0.170496pt;}
.ls11_c00088{letter-spacing:0.213120pt;}
.ls2_c00088{letter-spacing:0.213653pt;}
.ls6_c00088{letter-spacing:0.320000pt;}
.ls12_c00088{letter-spacing:0.322048pt;}
.ls7_c00088{letter-spacing:0.345728pt;}
.ls3_c00088{letter-spacing:0.364672pt;}
.lsa_c00088{letter-spacing:0.369408pt;}
.ls8_c00088{letter-spacing:0.374144pt;}
.ls13_c00088{letter-spacing:0.468864pt;}
.ls4_c00088{letter-spacing:1.549120pt;}
.ls9_c00088{letter-spacing:2.318187pt;}
.lsc_c00088{letter-spacing:4.868587pt;}
.lsb_c00088{letter-spacing:4.869120pt;}
.lsd_c00088{letter-spacing:4.870720pt;}
.ls5_c00088{letter-spacing:6.267520pt;}
.ls1_c00088{letter-spacing:15.074987pt;}
.ws0_c00088{word-spacing:-17.804800pt;}
.ws1_c00088{word-spacing:-13.379200pt;}
.ws2_c00088{word-spacing:0.000000pt;}
._d_c00088{margin-left:-1.026155pt;}
._7_c00088{width:0.890933pt;}
._3_c00088{width:2.611200pt;}
._8_c00088{width:3.968000pt;}
._2_c00088{width:4.966400pt;}
._e_c00088{width:5.920000pt;}
._5_c00088{width:7.385600pt;}
._a_c00088{width:8.613067pt;}
._c_c00088{width:10.082667pt;}
._1_c00088{width:11.769600pt;}
._6_c00088{width:12.972800pt;}
._4_c00088{width:14.566400pt;}
._b_c00088{width:15.609600pt;}
._9_c00088{width:21.312000pt;}
._0_c00088{width:1019.274133pt;}
.fs1_c00088{font-size:47.360000pt;}
.fs0_c00088{font-size:64.000000pt;}
.y0_c00088{bottom:0.000000pt;}
.y4_c00088{bottom:3.840000pt;}
.y1_c00088{bottom:16.666667pt;}
.y2_c00088{bottom:33.653360pt;}
.y3_c00088{bottom:46.480027pt;}
.y24_c00088{bottom:83.253360pt;}
.y23_c00088{bottom:100.533360pt;}
.y22_c00088{bottom:114.613347pt;}
.y21_c00088{bottom:128.373333pt;}
.y20_c00088{bottom:142.133333pt;}
.y1f_c00088{bottom:155.893333pt;}
.y1e_c00088{bottom:169.653333pt;}
.y1d_c00088{bottom:183.413333pt;}
.y1c_c00088{bottom:197.173333pt;}
.y1b_c00088{bottom:210.933333pt;}
.y1a_c00088{bottom:225.013333pt;}
.y19_c00088{bottom:260.213333pt;}
.y18_c00088{bottom:297.013333pt;}
.y17_c00088{bottom:333.813333pt;}
.y16_c00088{bottom:370.613333pt;}
.y15_c00088{bottom:407.413333pt;}
.y14_c00088{bottom:444.213333pt;}
.y13_c00088{bottom:481.013333pt;}
.y12_c00088{bottom:517.813333pt;}
.y11_c00088{bottom:554.613333pt;}
.y10_c00088{bottom:591.413333pt;}
.yf_c00088{bottom:628.213333pt;}
.ye_c00088{bottom:665.013333pt;}
.yd_c00088{bottom:701.813333pt;}
.yc_c00088{bottom:738.613333pt;}
.yb_c00088{bottom:775.413333pt;}
.ya_c00088{bottom:812.213333pt;}
.y9_c00088{bottom:849.013333pt;}
.y8_c00088{bottom:885.813333pt;}
.y7_c00088{bottom:922.613333pt;}
.y6_c00088{bottom:959.413333pt;}
.y5_c00088{bottom:996.213333pt;}
.h3_c00088{height:18.560000pt;}
.h4_c00088{height:42.457500pt;}
.h2_c00088{height:57.375000pt;}
.h1_c00088{height:1089.333333pt;}
.h0_c00088{height:1122.666667pt;}
.w2_c00088{width:17.920000pt;}
.w1_c00088{width:760.000000pt;}
.w0_c00088{width:793.333333pt;}
.x0_c00088{left:0.000000pt;}
.x1_c00088{left:16.666667pt;}
.x5_c00088{left:97.279933pt;}
.x3_c00088{left:113.946667pt;}
.x2_c00088{left:121.280000pt;}
.x6_c00088{left:125.680000pt;}
.x4_c00088{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dda91a1a2119f11aec6c0dc1.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00089{vertical-align:0.000000px;}
.ls9_c00089{letter-spacing:-0.014400px;}
.ls8_c00089{letter-spacing:0.000000px;}
.ls0_c00089{letter-spacing:0.014400px;}
.lsa_c00089{letter-spacing:0.036000px;}
.lse_c00089{letter-spacing:0.170496px;}
.lsc_c00089{letter-spacing:0.191808px;}
.ls4_c00089{letter-spacing:0.239760px;}
.ls2_c00089{letter-spacing:0.240360px;}
.lsd_c00089{letter-spacing:0.362304px;}
.ls5_c00089{letter-spacing:0.404928px;}
.ls3_c00089{letter-spacing:0.410256px;}
.ls7_c00089{letter-spacing:0.431568px;}
.lsb_c00089{letter-spacing:0.479520px;}
.ls6_c00089{letter-spacing:2.484960px;}
.ls1_c00089{letter-spacing:16.959360px;}
.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:-20.030400px;}
.ws1_c00089{word-spacing:-20.016000px;}
.ws2_c00089{word-spacing:-20.001600px;}
.ws4_c00089{word-spacing:-15.222096px;}
.ws3_c00089{word-spacing:-15.051600px;}
.ws5_c00089{word-spacing:0.000000px;}
._d_c00089{margin-left:-1.065600px;}
._1_c00089{width:1.044000px;}
._9_c00089{width:2.901600px;}
._7_c00089{width:3.931200px;}
._2_c00089{width:5.047200px;}
._6_c00089{width:6.818400px;}
._a_c00089{width:8.035200px;}
._8_c00089{width:9.482400px;}
._5_c00089{width:10.699200px;}
._3_c00089{width:15.228000px;}
._b_c00089{width:16.999200px;}
._c_c00089{width:36.615300px;}
._4_c00089{width:50.447100px;}
._0_c00089{width:2079.683700px;}
.fc1_c00089{color:transparent;}
.fc0_c00089{color:rgb(0,0,0);}
.fs1_c00089{font-size:53.280000px;}
.fs0_c00089{font-size:72.000000px;}
.y0_c00089{bottom:0.000000px;}
.y5_c00089{bottom:4.320000px;}
.y1_c00089{bottom:18.750000px;}
.y3_c00089{bottom:37.860030px;}
.y4_c00089{bottom:52.290030px;}
.y22_c00089{bottom:92.580030px;}
.y21_c00089{bottom:108.060030px;}
.y20_c00089{bottom:123.540030px;}
.y1f_c00089{bottom:139.020000px;}
.y1e_c00089{bottom:154.500000px;}
.y1d_c00089{bottom:170.340000px;}
.y1c_c00089{bottom:209.940000px;}
.y1b_c00089{bottom:251.340000px;}
.y1a_c00089{bottom:292.740000px;}
.y19_c00089{bottom:334.140000px;}
.y18_c00089{bottom:375.540000px;}
.y17_c00089{bottom:416.940000px;}
.y16_c00089{bottom:458.340000px;}
.y15_c00089{bottom:499.740000px;}
.y14_c00089{bottom:541.140000px;}
.y13_c00089{bottom:582.540000px;}
.y12_c00089{bottom:623.940000px;}
.y11_c00089{bottom:665.340000px;}
.y10_c00089{bottom:706.740000px;}
.yf_c00089{bottom:748.140000px;}
.ye_c00089{bottom:789.540000px;}
.yd_c00089{bottom:830.940000px;}
.yc_c00089{bottom:872.340000px;}
.yb_c00089{bottom:913.740000px;}
.ya_c00089{bottom:955.140000px;}
.y9_c00089{bottom:996.540000px;}
.y8_c00089{bottom:1037.940000px;}
.y7_c00089{bottom:1079.340000px;}
.y6_c00089{bottom:1120.740000px;}
.y2_c00089{bottom:1173.660000px;}
.h3_c00089{height:20.880000px;}
.h4_c00089{height:47.764688px;}
.h2_c00089{height:64.546875px;}
.h1_c00089{height:1225.500000px;}
.h0_c00089{height:1263.000000px;}
.w2_c00089{width:20.160000px;}
.w1_c00089{width:855.000000px;}
.w0_c00089{width:892.500000px;}
.x0_c00089{left:0.000000px;}
.x1_c00089{left:18.750000px;}
.x2_c00089{left:109.439925px;}
.x3_c00089{left:136.440000px;}
.x6_c00089{left:141.390000px;}
.x5_c00089{left:151.965150px;}
.x4_c00089{left:745.590000px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls9_c00089{letter-spacing:-0.012800pt;}
.ls8_c00089{letter-spacing:0.000000pt;}
.ls0_c00089{letter-spacing:0.012800pt;}
.lsa_c00089{letter-spacing:0.032000pt;}
.lse_c00089{letter-spacing:0.151552pt;}
.lsc_c00089{letter-spacing:0.170496pt;}
.ls4_c00089{letter-spacing:0.213120pt;}
.ls2_c00089{letter-spacing:0.213653pt;}
.lsd_c00089{letter-spacing:0.322048pt;}
.ls5_c00089{letter-spacing:0.359936pt;}
.ls3_c00089{letter-spacing:0.364672pt;}
.ls7_c00089{letter-spacing:0.383616pt;}
.lsb_c00089{letter-spacing:0.426240pt;}
.ls6_c00089{letter-spacing:2.208853pt;}
.ls1_c00089{letter-spacing:15.074987pt;}
.ws0_c00089{word-spacing:-17.804800pt;}
.ws1_c00089{word-spacing:-17.792000pt;}
.ws2_c00089{word-spacing:-17.779200pt;}
.ws4_c00089{word-spacing:-13.530752pt;}
.ws3_c00089{word-spacing:-13.379200pt;}
.ws5_c00089{word-spacing:0.000000pt;}
._d_c00089{margin-left:-0.947200pt;}
._1_c00089{width:0.928000pt;}
._9_c00089{width:2.579200pt;}
._7_c00089{width:3.494400pt;}
._2_c00089{width:4.486400pt;}
._6_c00089{width:6.060800pt;}
._a_c00089{width:7.142400pt;}
._8_c00089{width:8.428800pt;}
._5_c00089{width:9.510400pt;}
._3_c00089{width:13.536000pt;}
._b_c00089{width:15.110400pt;}
._c_c00089{width:32.546933pt;}
._4_c00089{width:44.841867pt;}
._0_c00089{width:1848.607733pt;}
.fs1_c00089{font-size:47.360000pt;}
.fs0_c00089{font-size:64.000000pt;}
.y0_c00089{bottom:0.000000pt;}
.y5_c00089{bottom:3.840000pt;}
.y1_c00089{bottom:16.666667pt;}
.y3_c00089{bottom:33.653360pt;}
.y4_c00089{bottom:46.480027pt;}
.y22_c00089{bottom:82.293360pt;}
.y21_c00089{bottom:96.053360pt;}
.y20_c00089{bottom:109.813360pt;}
.y1f_c00089{bottom:123.573333pt;}
.y1e_c00089{bottom:137.333333pt;}
.y1d_c00089{bottom:151.413333pt;}
.y1c_c00089{bottom:186.613333pt;}
.y1b_c00089{bottom:223.413333pt;}
.y1a_c00089{bottom:260.213333pt;}
.y19_c00089{bottom:297.013333pt;}
.y18_c00089{bottom:333.813333pt;}
.y17_c00089{bottom:370.613333pt;}
.y16_c00089{bottom:407.413333pt;}
.y15_c00089{bottom:444.213333pt;}
.y14_c00089{bottom:481.013333pt;}
.y13_c00089{bottom:517.813333pt;}
.y12_c00089{bottom:554.613333pt;}
.y11_c00089{bottom:591.413333pt;}
.y10_c00089{bottom:628.213333pt;}
.yf_c00089{bottom:665.013333pt;}
.ye_c00089{bottom:701.813333pt;}
.yd_c00089{bottom:738.613333pt;}
.yc_c00089{bottom:775.413333pt;}
.yb_c00089{bottom:812.213333pt;}
.ya_c00089{bottom:849.013333pt;}
.y9_c00089{bottom:885.813333pt;}
.y8_c00089{bottom:922.613333pt;}
.y7_c00089{bottom:959.413333pt;}
.y6_c00089{bottom:996.213333pt;}
.y2_c00089{bottom:1043.253333pt;}
.h3_c00089{height:18.560000pt;}
.h4_c00089{height:42.457500pt;}
.h2_c00089{height:57.375000pt;}
.h1_c00089{height:1089.333333pt;}
.h0_c00089{height:1122.666667pt;}
.w2_c00089{width:17.920000pt;}
.w1_c00089{width:760.000000pt;}
.w0_c00089{width:793.333333pt;}
.x0_c00089{left:0.000000pt;}
.x1_c00089{left:16.666667pt;}
.x2_c00089{left:97.279933pt;}
.x3_c00089{left:121.280000pt;}
.x6_c00089{left:125.680000pt;}
.x5_c00089{left:135.080133pt;}
.x4_c00089{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7bbf841f5bbd3b1410448b4c.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00090;src:url('chunks/assets/font_9ae16584ee8a7853975648ad.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.111328;font-style: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;}
.ls8_c00090{letter-spacing:-0.014400px;}
.ls7_c00090{letter-spacing:0.000000px;}
.ls2_c00090{letter-spacing:0.010800px;}
.ls0_c00090{letter-spacing:0.014400px;}
.ls1_c00090{letter-spacing:0.036000px;}
.lsa_c00090{letter-spacing:0.191808px;}
.ls4_c00090{letter-spacing:0.239760px;}
.ls5_c00090{letter-spacing:0.388944px;}
.ls6_c00090{letter-spacing:0.410256px;}
.ls9_c00090{letter-spacing:0.527472px;}
.ls3_c00090{letter-spacing:16.959360px;}
.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:-20.030400px;}
.ws1_c00090{word-spacing:-15.051600px;}
.ws2_c00090{word-spacing:0.000000px;}
._3_c00090{margin-left:-1.002000px;}
._6_c00090{width:1.217700px;}
._1_c00090{width:2.339100px;}
._b_c00090{width:4.201800px;}
._2_c00090{width:5.556300px;}
._d_c00090{width:9.741000px;}
._c_c00090{width:11.009100px;}
._8_c00090{width:13.032000px;}
._9_c00090{width:14.623200px;}
._5_c00090{width:16.120800px;}
._a_c00090{width:17.164800px;}
._7_c00090{width:18.964800px;}
._4_c00090{width:43.128000px;}
._0_c00090{width:1146.683400px;}
.fc1_c00090{color:transparent;}
.fc0_c00090{color:rgb(0,0,0);}
.fs1_c00090{font-size:53.280000px;}
.fs0_c00090{font-size:72.000000px;}
.y0_c00090{bottom:0.000000px;}
.y4_c00090{bottom:4.320000px;}
.y1_c00090{bottom:18.750000px;}
.y2_c00090{bottom:37.860030px;}
.y3_c00090{bottom:52.290030px;}
.y1f_c00090{bottom:97.620030px;}
.y1e_c00090{bottom:113.100030px;}
.y1d_c00090{bottom:128.940015px;}
.y1c_c00090{bottom:168.540000px;}
.y1b_c00090{bottom:209.940000px;}
.y1a_c00090{bottom:251.340000px;}
.y19_c00090{bottom:292.740000px;}
.y18_c00090{bottom:334.140000px;}
.y17_c00090{bottom:375.540000px;}
.y16_c00090{bottom:416.940000px;}
.y15_c00090{bottom:458.340000px;}
.y14_c00090{bottom:499.740000px;}
.y13_c00090{bottom:541.140000px;}
.y12_c00090{bottom:582.540000px;}
.y11_c00090{bottom:623.940000px;}
.y10_c00090{bottom:665.340000px;}
.yf_c00090{bottom:706.740000px;}
.ye_c00090{bottom:748.140000px;}
.yd_c00090{bottom:789.540000px;}
.yc_c00090{bottom:830.940000px;}
.yb_c00090{bottom:872.340000px;}
.ya_c00090{bottom:913.740000px;}
.y9_c00090{bottom:955.140000px;}
.y8_c00090{bottom:996.540000px;}
.y7_c00090{bottom:1037.940000px;}
.y6_c00090{bottom:1079.340000px;}
.y5_c00090{bottom:1120.740000px;}
.h3_c00090{height:20.880000px;}
.h5_c00090{height:47.764688px;}
.h2_c00090{height:64.546875px;}
.h4_c00090{height:65.707031px;}
.h1_c00090{height:1225.500000px;}
.h0_c00090{height:1263.000000px;}
.w2_c00090{width:20.160000px;}
.w1_c00090{width:855.000000px;}
.w0_c00090{width:892.500000px;}
.x0_c00090{left:0.000000px;}
.x1_c00090{left:18.750000px;}
.x4_c00090{left:109.439925px;}
.x3_c00090{left:128.190000px;}
.x2_c00090{left:136.440000px;}
.x6_c00090{left:141.390000px;}
.x5_c00090{left:151.965150px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls8_c00090{letter-spacing:-0.012800pt;}
.ls7_c00090{letter-spacing:0.000000pt;}
.ls2_c00090{letter-spacing:0.009600pt;}
.ls0_c00090{letter-spacing:0.012800pt;}
.ls1_c00090{letter-spacing:0.032000pt;}
.lsa_c00090{letter-spacing:0.170496pt;}
.ls4_c00090{letter-spacing:0.213120pt;}
.ls5_c00090{letter-spacing:0.345728pt;}
.ls6_c00090{letter-spacing:0.364672pt;}
.ls9_c00090{letter-spacing:0.468864pt;}
.ls3_c00090{letter-spacing:15.074987pt;}
.ws0_c00090{word-spacing:-17.804800pt;}
.ws1_c00090{word-spacing:-13.379200pt;}
.ws2_c00090{word-spacing:0.000000pt;}
._3_c00090{margin-left:-0.890667pt;}
._6_c00090{width:1.082400pt;}
._1_c00090{width:2.079200pt;}
._b_c00090{width:3.734933pt;}
._2_c00090{width:4.938933pt;}
._d_c00090{width:8.658667pt;}
._c_c00090{width:9.785867pt;}
._8_c00090{width:11.584000pt;}
._9_c00090{width:12.998400pt;}
._5_c00090{width:14.329600pt;}
._a_c00090{width:15.257600pt;}
._7_c00090{width:16.857600pt;}
._4_c00090{width:38.336000pt;}
._0_c00090{width:1019.274133pt;}
.fs1_c00090{font-size:47.360000pt;}
.fs0_c00090{font-size:64.000000pt;}
.y0_c00090{bottom:0.000000pt;}
.y4_c00090{bottom:3.840000pt;}
.y1_c00090{bottom:16.666667pt;}
.y2_c00090{bottom:33.653360pt;}
.y3_c00090{bottom:46.480027pt;}
.y1f_c00090{bottom:86.773360pt;}
.y1e_c00090{bottom:100.533360pt;}
.y1d_c00090{bottom:114.613347pt;}
.y1c_c00090{bottom:149.813333pt;}
.y1b_c00090{bottom:186.613333pt;}
.y1a_c00090{bottom:223.413333pt;}
.y19_c00090{bottom:260.213333pt;}
.y18_c00090{bottom:297.013333pt;}
.y17_c00090{bottom:333.813333pt;}
.y16_c00090{bottom:370.613333pt;}
.y15_c00090{bottom:407.413333pt;}
.y14_c00090{bottom:444.213333pt;}
.y13_c00090{bottom:481.013333pt;}
.y12_c00090{bottom:517.813333pt;}
.y11_c00090{bottom:554.613333pt;}
.y10_c00090{bottom:591.413333pt;}
.yf_c00090{bottom:628.213333pt;}
.ye_c00090{bottom:665.013333pt;}
.yd_c00090{bottom:701.813333pt;}
.yc_c00090{bottom:738.613333pt;}
.yb_c00090{bottom:775.413333pt;}
.ya_c00090{bottom:812.213333pt;}
.y9_c00090{bottom:849.013333pt;}
.y8_c00090{bottom:885.813333pt;}
.y7_c00090{bottom:922.613333pt;}
.y6_c00090{bottom:959.413333pt;}
.y5_c00090{bottom:996.213333pt;}
.h3_c00090{height:18.560000pt;}
.h5_c00090{height:42.457500pt;}
.h2_c00090{height:57.375000pt;}
.h4_c00090{height:58.406250pt;}
.h1_c00090{height:1089.333333pt;}
.h0_c00090{height:1122.666667pt;}
.w2_c00090{width:17.920000pt;}
.w1_c00090{width:760.000000pt;}
.w0_c00090{width:793.333333pt;}
.x0_c00090{left:0.000000pt;}
.x1_c00090{left:16.666667pt;}
.x4_c00090{left:97.279933pt;}
.x3_c00090{left:113.946667pt;}
.x2_c00090{left:121.280000pt;}
.x6_c00090{left:125.680000pt;}
.x5_c00090{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5d54c2c8aa8e87422813312.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00091{letter-spacing:-0.014400px;}
.ls5_c00091{letter-spacing:0.000000px;}
.ls0_c00091{letter-spacing:0.014400px;}
.lsa_c00091{letter-spacing:0.170496px;}
.lsb_c00091{letter-spacing:0.191808px;}
.ls7_c00091{letter-spacing:0.239760px;}
.ls3_c00091{letter-spacing:0.240360px;}
.ls4_c00091{letter-spacing:0.410256px;}
.ls2_c00091{letter-spacing:0.420912px;}
.ls9_c00091{letter-spacing:0.479520px;}
.ls8_c00091{letter-spacing:0.527472px;}
.ls1_c00091{letter-spacing:16.959360px;}
.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:-20.030400px;}
.ws1_c00091{word-spacing:-20.016000px;}
.ws2_c00091{word-spacing:-15.051600px;}
.ws3_c00091{word-spacing:0.000000px;}
._e_c00091{margin-left:-1.217064px;}
._1_c00091{width:1.933200px;}
._6_c00091{width:4.737600px;}
._c_c00091{width:5.752800px;}
._7_c00091{width:6.969600px;}
._3_c00091{width:8.339700px;}
._2_c00091{width:9.360000px;}
._b_c00091{width:14.414100px;}
._5_c00091{width:17.056800px;}
._4_c00091{width:18.777960px;}
._d_c00091{width:22.715820px;}
._8_c00091{width:23.947200px;}
._a_c00091{width:25.770600px;}
._9_c00091{width:48.348000px;}
._0_c00091{width:2079.683700px;}
.fc1_c00091{color:transparent;}
.fc0_c00091{color:rgb(0,0,0);}
.fs1_c00091{font-size:53.280000px;}
.fs0_c00091{font-size:72.000000px;}
.y0_c00091{bottom:0.000000px;}
.y5_c00091{bottom:4.320000px;}
.y1_c00091{bottom:18.750000px;}
.y3_c00091{bottom:37.860030px;}
.y4_c00091{bottom:52.290030px;}
.y20_c00091{bottom:97.620030px;}
.y1f_c00091{bottom:113.100030px;}
.y1e_c00091{bottom:128.940015px;}
.y1d_c00091{bottom:168.540000px;}
.y1c_c00091{bottom:209.940000px;}
.y1b_c00091{bottom:251.340000px;}
.y1a_c00091{bottom:292.740000px;}
.y19_c00091{bottom:334.140000px;}
.y18_c00091{bottom:375.540000px;}
.y17_c00091{bottom:416.940000px;}
.y16_c00091{bottom:458.340000px;}
.y15_c00091{bottom:499.740000px;}
.y14_c00091{bottom:541.140000px;}
.y13_c00091{bottom:582.540000px;}
.y12_c00091{bottom:623.940000px;}
.y11_c00091{bottom:665.340000px;}
.y10_c00091{bottom:706.740000px;}
.yf_c00091{bottom:748.140000px;}
.ye_c00091{bottom:789.540000px;}
.yd_c00091{bottom:830.940000px;}
.yc_c00091{bottom:872.340000px;}
.yb_c00091{bottom:913.740000px;}
.ya_c00091{bottom:955.140000px;}
.y9_c00091{bottom:996.540000px;}
.y8_c00091{bottom:1037.940000px;}
.y7_c00091{bottom:1079.340000px;}
.y6_c00091{bottom:1120.740000px;}
.y2_c00091{bottom:1173.660000px;}
.h3_c00091{height:20.880000px;}
.h4_c00091{height:47.764688px;}
.h2_c00091{height:64.546875px;}
.h1_c00091{height:1225.500000px;}
.h0_c00091{height:1263.000000px;}
.w2_c00091{width:20.160000px;}
.w1_c00091{width:855.000000px;}
.w0_c00091{width:892.500000px;}
.x0_c00091{left:0.000000px;}
.x1_c00091{left:18.750000px;}
.x2_c00091{left:109.439925px;}
.x3_c00091{left:136.440000px;}
.x6_c00091{left:141.390000px;}
.x5_c00091{left:151.965150px;}
.x4_c00091{left:745.590000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls6_c00091{letter-spacing:-0.012800pt;}
.ls5_c00091{letter-spacing:0.000000pt;}
.ls0_c00091{letter-spacing:0.012800pt;}
.lsa_c00091{letter-spacing:0.151552pt;}
.lsb_c00091{letter-spacing:0.170496pt;}
.ls7_c00091{letter-spacing:0.213120pt;}
.ls3_c00091{letter-spacing:0.213653pt;}
.ls4_c00091{letter-spacing:0.364672pt;}
.ls2_c00091{letter-spacing:0.374144pt;}
.ls9_c00091{letter-spacing:0.426240pt;}
.ls8_c00091{letter-spacing:0.468864pt;}
.ls1_c00091{letter-spacing:15.074987pt;}
.ws0_c00091{word-spacing:-17.804800pt;}
.ws1_c00091{word-spacing:-17.792000pt;}
.ws2_c00091{word-spacing:-13.379200pt;}
.ws3_c00091{word-spacing:0.000000pt;}
._e_c00091{margin-left:-1.081835pt;}
._1_c00091{width:1.718400pt;}
._6_c00091{width:4.211200pt;}
._c_c00091{width:5.113600pt;}
._7_c00091{width:6.195200pt;}
._3_c00091{width:7.413067pt;}
._2_c00091{width:8.320000pt;}
._b_c00091{width:12.812533pt;}
._5_c00091{width:15.161600pt;}
._4_c00091{width:16.691520pt;}
._d_c00091{width:20.191840pt;}
._8_c00091{width:21.286400pt;}
._a_c00091{width:22.907200pt;}
._9_c00091{width:42.976000pt;}
._0_c00091{width:1848.607733pt;}
.fs1_c00091{font-size:47.360000pt;}
.fs0_c00091{font-size:64.000000pt;}
.y0_c00091{bottom:0.000000pt;}
.y5_c00091{bottom:3.840000pt;}
.y1_c00091{bottom:16.666667pt;}
.y3_c00091{bottom:33.653360pt;}
.y4_c00091{bottom:46.480027pt;}
.y20_c00091{bottom:86.773360pt;}
.y1f_c00091{bottom:100.533360pt;}
.y1e_c00091{bottom:114.613347pt;}
.y1d_c00091{bottom:149.813333pt;}
.y1c_c00091{bottom:186.613333pt;}
.y1b_c00091{bottom:223.413333pt;}
.y1a_c00091{bottom:260.213333pt;}
.y19_c00091{bottom:297.013333pt;}
.y18_c00091{bottom:333.813333pt;}
.y17_c00091{bottom:370.613333pt;}
.y16_c00091{bottom:407.413333pt;}
.y15_c00091{bottom:444.213333pt;}
.y14_c00091{bottom:481.013333pt;}
.y13_c00091{bottom:517.813333pt;}
.y12_c00091{bottom:554.613333pt;}
.y11_c00091{bottom:591.413333pt;}
.y10_c00091{bottom:628.213333pt;}
.yf_c00091{bottom:665.013333pt;}
.ye_c00091{bottom:701.813333pt;}
.yd_c00091{bottom:738.613333pt;}
.yc_c00091{bottom:775.413333pt;}
.yb_c00091{bottom:812.213333pt;}
.ya_c00091{bottom:849.013333pt;}
.y9_c00091{bottom:885.813333pt;}
.y8_c00091{bottom:922.613333pt;}
.y7_c00091{bottom:959.413333pt;}
.y6_c00091{bottom:996.213333pt;}
.y2_c00091{bottom:1043.253333pt;}
.h3_c00091{height:18.560000pt;}
.h4_c00091{height:42.457500pt;}
.h2_c00091{height:57.375000pt;}
.h1_c00091{height:1089.333333pt;}
.h0_c00091{height:1122.666667pt;}
.w2_c00091{width:17.920000pt;}
.w1_c00091{width:760.000000pt;}
.w0_c00091{width:793.333333pt;}
.x0_c00091{left:0.000000pt;}
.x1_c00091{left:16.666667pt;}
.x2_c00091{left:97.279933pt;}
.x3_c00091{left:121.280000pt;}
.x6_c00091{left:125.680000pt;}
.x5_c00091{left:135.080133pt;}
.x4_c00091{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_00a8ec01af977b34f54f3c3f.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00092{vertical-align:0.000000px;}
.ls9_c00092{letter-spacing:-0.014400px;}
.ls8_c00092{letter-spacing:0.000000px;}
.ls0_c00092{letter-spacing:0.014400px;}
.ls1_c00092{letter-spacing:0.036000px;}
.lsb_c00092{letter-spacing:0.239760px;}
.ls5_c00092{letter-spacing:0.240360px;}
.lse_c00092{letter-spacing:0.362304px;}
.ls4_c00092{letter-spacing:0.399600px;}
.ls6_c00092{letter-spacing:0.410256px;}
.ls7_c00092{letter-spacing:0.431568px;}
.lsd_c00092{letter-spacing:0.479520px;}
.ls3_c00092{letter-spacing:0.528840px;}
.lsc_c00092{letter-spacing:0.548784px;}
.lsa_c00092{letter-spacing:1.972800px;}
.ls2_c00092{letter-spacing:16.959360px;}
.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;}
}
.ws0_c00092{word-spacing:-20.030400px;}
.ws2_c00092{word-spacing:-15.211440px;}
.ws1_c00092{word-spacing:-15.051600px;}
.ws3_c00092{word-spacing:0.000000px;}
._7_c00092{margin-left:-1.008000px;}
._9_c00092{width:1.007100px;}
._12_c00092{width:2.894400px;}
._e_c00092{width:4.399200px;}
._a_c00092{width:6.969600px;}
._4_c00092{width:9.182700px;}
._5_c00092{width:10.213200px;}
._8_c00092{width:11.622300px;}
._11_c00092{width:13.507200px;}
._10_c00092{width:16.409940px;}
._c_c00092{width:17.515320px;}
._6_c00092{width:18.676800px;}
._b_c00092{width:21.951300px;}
._3_c00092{width:23.009100px;}
._2_c00092{width:24.081300px;}
._1_c00092{width:25.243200px;}
._d_c00092{width:26.748000px;}
._f_c00092{width:35.524800px;}
._0_c00092{width:1146.683400px;}
.fc1_c00092{color:transparent;}
.fc0_c00092{color:rgb(0,0,0);}
.fs1_c00092{font-size:53.280000px;}
.fs0_c00092{font-size:72.000000px;}
.y0_c00092{bottom:0.000000px;}
.y4_c00092{bottom:4.320000px;}
.y1_c00092{bottom:18.750000px;}
.y2_c00092{bottom:37.860030px;}
.y3_c00092{bottom:52.290030px;}
.y20_c00092{bottom:108.060030px;}
.y1f_c00092{bottom:123.540030px;}
.y1e_c00092{bottom:139.020000px;}
.y1d_c00092{bottom:154.500000px;}
.y1c_c00092{bottom:170.340000px;}
.y1b_c00092{bottom:209.940000px;}
.y1a_c00092{bottom:251.340000px;}
.y19_c00092{bottom:292.740000px;}
.y18_c00092{bottom:334.140000px;}
.y17_c00092{bottom:375.540000px;}
.y16_c00092{bottom:416.940000px;}
.y15_c00092{bottom:458.340000px;}
.y14_c00092{bottom:499.740000px;}
.y13_c00092{bottom:541.140000px;}
.y12_c00092{bottom:582.540000px;}
.y11_c00092{bottom:623.940000px;}
.y10_c00092{bottom:665.340000px;}
.yf_c00092{bottom:706.740000px;}
.ye_c00092{bottom:748.140000px;}
.yd_c00092{bottom:789.540000px;}
.yc_c00092{bottom:830.940000px;}
.yb_c00092{bottom:872.340000px;}
.ya_c00092{bottom:913.740000px;}
.y9_c00092{bottom:955.140000px;}
.y8_c00092{bottom:996.540000px;}
.y7_c00092{bottom:1037.940000px;}
.y6_c00092{bottom:1079.340000px;}
.y5_c00092{bottom:1120.740000px;}
.h3_c00092{height:20.880000px;}
.h4_c00092{height:47.764688px;}
.h2_c00092{height:64.546875px;}
.h1_c00092{height:1225.500000px;}
.h0_c00092{height:1263.000000px;}
.w2_c00092{width:20.160000px;}
.w1_c00092{width:855.000000px;}
.w0_c00092{width:892.500000px;}
.x0_c00092{left:0.000000px;}
.x1_c00092{left:18.750000px;}
.x5_c00092{left:109.439925px;}
.x3_c00092{left:128.190000px;}
.x2_c00092{left:136.440000px;}
.x6_c00092{left:141.390000px;}
.x4_c00092{left:151.965150px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls9_c00092{letter-spacing:-0.012800pt;}
.ls8_c00092{letter-spacing:0.000000pt;}
.ls0_c00092{letter-spacing:0.012800pt;}
.ls1_c00092{letter-spacing:0.032000pt;}
.lsb_c00092{letter-spacing:0.213120pt;}
.ls5_c00092{letter-spacing:0.213653pt;}
.lse_c00092{letter-spacing:0.322048pt;}
.ls4_c00092{letter-spacing:0.355200pt;}
.ls6_c00092{letter-spacing:0.364672pt;}
.ls7_c00092{letter-spacing:0.383616pt;}
.lsd_c00092{letter-spacing:0.426240pt;}
.ls3_c00092{letter-spacing:0.470080pt;}
.lsc_c00092{letter-spacing:0.487808pt;}
.lsa_c00092{letter-spacing:1.753600pt;}
.ls2_c00092{letter-spacing:15.074987pt;}
.ws0_c00092{word-spacing:-17.804800pt;}
.ws2_c00092{word-spacing:-13.521280pt;}
.ws1_c00092{word-spacing:-13.379200pt;}
.ws3_c00092{word-spacing:0.000000pt;}
._7_c00092{margin-left:-0.896000pt;}
._9_c00092{width:0.895200pt;}
._12_c00092{width:2.572800pt;}
._e_c00092{width:3.910400pt;}
._a_c00092{width:6.195200pt;}
._4_c00092{width:8.162400pt;}
._5_c00092{width:9.078400pt;}
._8_c00092{width:10.330933pt;}
._11_c00092{width:12.006400pt;}
._10_c00092{width:14.586613pt;}
._c_c00092{width:15.569173pt;}
._6_c00092{width:16.601600pt;}
._b_c00092{width:19.512267pt;}
._3_c00092{width:20.452533pt;}
._2_c00092{width:21.405600pt;}
._1_c00092{width:22.438400pt;}
._d_c00092{width:23.776000pt;}
._f_c00092{width:31.577600pt;}
._0_c00092{width:1019.274133pt;}
.fs1_c00092{font-size:47.360000pt;}
.fs0_c00092{font-size:64.000000pt;}
.y0_c00092{bottom:0.000000pt;}
.y4_c00092{bottom:3.840000pt;}
.y1_c00092{bottom:16.666667pt;}
.y2_c00092{bottom:33.653360pt;}
.y3_c00092{bottom:46.480027pt;}
.y20_c00092{bottom:96.053360pt;}
.y1f_c00092{bottom:109.813360pt;}
.y1e_c00092{bottom:123.573333pt;}
.y1d_c00092{bottom:137.333333pt;}
.y1c_c00092{bottom:151.413333pt;}
.y1b_c00092{bottom:186.613333pt;}
.y1a_c00092{bottom:223.413333pt;}
.y19_c00092{bottom:260.213333pt;}
.y18_c00092{bottom:297.013333pt;}
.y17_c00092{bottom:333.813333pt;}
.y16_c00092{bottom:370.613333pt;}
.y15_c00092{bottom:407.413333pt;}
.y14_c00092{bottom:444.213333pt;}
.y13_c00092{bottom:481.013333pt;}
.y12_c00092{bottom:517.813333pt;}
.y11_c00092{bottom:554.613333pt;}
.y10_c00092{bottom:591.413333pt;}
.yf_c00092{bottom:628.213333pt;}
.ye_c00092{bottom:665.013333pt;}
.yd_c00092{bottom:701.813333pt;}
.yc_c00092{bottom:738.613333pt;}
.yb_c00092{bottom:775.413333pt;}
.ya_c00092{bottom:812.213333pt;}
.y9_c00092{bottom:849.013333pt;}
.y8_c00092{bottom:885.813333pt;}
.y7_c00092{bottom:922.613333pt;}
.y6_c00092{bottom:959.413333pt;}
.y5_c00092{bottom:996.213333pt;}
.h3_c00092{height:18.560000pt;}
.h4_c00092{height:42.457500pt;}
.h2_c00092{height:57.375000pt;}
.h1_c00092{height:1089.333333pt;}
.h0_c00092{height:1122.666667pt;}
.w2_c00092{width:17.920000pt;}
.w1_c00092{width:760.000000pt;}
.w0_c00092{width:793.333333pt;}
.x0_c00092{left:0.000000pt;}
.x1_c00092{left:16.666667pt;}
.x5_c00092{left:97.279933pt;}
.x3_c00092{left:113.946667pt;}
.x2_c00092{left:121.280000pt;}
.x6_c00092{left:125.680000pt;}
.x4_c00092{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8341c78c151b0d430fc9b524.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00093;src:url('chunks/assets/font_b02391fcb9cdd2ce2c9f148e.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.104492;font-style: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;}
.ls6_c00093{letter-spacing:-0.014400px;}
.ls5_c00093{letter-spacing:0.000000px;}
.ls0_c00093{letter-spacing:0.014400px;}
.ls7_c00093{letter-spacing:0.239760px;}
.ls2_c00093{letter-spacing:0.240360px;}
.ls4_c00093{letter-spacing:0.388944px;}
.ls9_c00093{letter-spacing:0.410256px;}
.lsb_c00093{letter-spacing:0.479520px;}
.ls8_c00093{letter-spacing:0.527472px;}
.lsa_c00093{letter-spacing:0.548784px;}
.ls1_c00093{letter-spacing:16.959360px;}
.ls3_c00093{letter-spacing:17.126160px;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00093{word-spacing:-20.030400px;}
.ws1_c00093{word-spacing:-15.051600px;}
.ws2_c00093{word-spacing:0.000000px;}
._11_c00093{margin-left:-1.041732px;}
._8_c00093{width:1.335000px;}
._e_c00093{width:2.349900px;}
._9_c00093{width:3.641100px;}
._6_c00093{width:5.263200px;}
._f_c00093{width:6.292800px;}
._c_c00093{width:7.410900px;}
._3_c00093{width:8.611200px;}
._b_c00093{width:9.612000px;}
._7_c00093{width:10.878840px;}
._1_c00093{width:12.672000px;}
._2_c00093{width:13.781700px;}
._d_c00093{width:15.897600px;}
._12_c00093{width:17.080164px;}
._4_c00093{width:24.868800px;}
._a_c00093{width:26.154900px;}
._10_c00093{width:28.677600px;}
._5_c00093{width:33.861600px;}
._0_c00093{width:2079.683700px;}
.fc1_c00093{color:transparent;}
.fc0_c00093{color:rgb(0,0,0);}
.fs1_c00093{font-size:53.280000px;}
.fs0_c00093{font-size:72.000000px;}
.y0_c00093{bottom:0.000000px;}
.y5_c00093{bottom:4.320000px;}
.y1_c00093{bottom:18.750000px;}
.y3_c00093{bottom:37.860030px;}
.y4_c00093{bottom:52.290030px;}
.y20_c00093{bottom:97.620030px;}
.y1f_c00093{bottom:113.100030px;}
.y1e_c00093{bottom:128.940015px;}
.y1d_c00093{bottom:168.540000px;}
.y1c_c00093{bottom:209.940000px;}
.y1b_c00093{bottom:251.340000px;}
.y1a_c00093{bottom:292.740000px;}
.y19_c00093{bottom:334.140000px;}
.y18_c00093{bottom:375.540000px;}
.y17_c00093{bottom:416.940000px;}
.y16_c00093{bottom:458.340000px;}
.y15_c00093{bottom:499.740000px;}
.y14_c00093{bottom:541.140000px;}
.y13_c00093{bottom:582.540000px;}
.y12_c00093{bottom:623.940000px;}
.y11_c00093{bottom:665.340000px;}
.y10_c00093{bottom:706.740000px;}
.yf_c00093{bottom:748.140000px;}
.ye_c00093{bottom:789.540000px;}
.yd_c00093{bottom:830.940000px;}
.yc_c00093{bottom:872.340000px;}
.yb_c00093{bottom:913.740000px;}
.ya_c00093{bottom:955.140000px;}
.y9_c00093{bottom:996.540000px;}
.y8_c00093{bottom:1037.940000px;}
.y7_c00093{bottom:1079.340000px;}
.y6_c00093{bottom:1120.740000px;}
.y2_c00093{bottom:1173.660000px;}
.h3_c00093{height:20.880000px;}
.h4_c00093{height:47.764688px;}
.h2_c00093{height:64.546875px;}
.h1_c00093{height:1225.500000px;}
.h0_c00093{height:1263.000000px;}
.w2_c00093{width:20.160000px;}
.w1_c00093{width:855.000000px;}
.w0_c00093{width:892.500000px;}
.x0_c00093{left:0.000000px;}
.x1_c00093{left:18.750000px;}
.x2_c00093{left:109.439925px;}
.x3_c00093{left:136.440000px;}
.x6_c00093{left:141.390000px;}
.x5_c00093{left:151.965150px;}
.x4_c00093{left:745.590000px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls6_c00093{letter-spacing:-0.012800pt;}
.ls5_c00093{letter-spacing:0.000000pt;}
.ls0_c00093{letter-spacing:0.012800pt;}
.ls7_c00093{letter-spacing:0.213120pt;}
.ls2_c00093{letter-spacing:0.213653pt;}
.ls4_c00093{letter-spacing:0.345728pt;}
.ls9_c00093{letter-spacing:0.364672pt;}
.lsb_c00093{letter-spacing:0.426240pt;}
.ls8_c00093{letter-spacing:0.468864pt;}
.lsa_c00093{letter-spacing:0.487808pt;}
.ls1_c00093{letter-spacing:15.074987pt;}
.ls3_c00093{letter-spacing:15.223253pt;}
.ws0_c00093{word-spacing:-17.804800pt;}
.ws1_c00093{word-spacing:-13.379200pt;}
.ws2_c00093{word-spacing:0.000000pt;}
._11_c00093{margin-left:-0.925984pt;}
._8_c00093{width:1.186667pt;}
._e_c00093{width:2.088800pt;}
._9_c00093{width:3.236533pt;}
._6_c00093{width:4.678400pt;}
._f_c00093{width:5.593600pt;}
._c_c00093{width:6.587467pt;}
._3_c00093{width:7.654400pt;}
._b_c00093{width:8.544000pt;}
._7_c00093{width:9.670080pt;}
._1_c00093{width:11.264000pt;}
._2_c00093{width:12.250400pt;}
._d_c00093{width:14.131200pt;}
._12_c00093{width:15.182368pt;}
._4_c00093{width:22.105600pt;}
._a_c00093{width:23.248800pt;}
._10_c00093{width:25.491200pt;}
._5_c00093{width:30.099200pt;}
._0_c00093{width:1848.607733pt;}
.fs1_c00093{font-size:47.360000pt;}
.fs0_c00093{font-size:64.000000pt;}
.y0_c00093{bottom:0.000000pt;}
.y5_c00093{bottom:3.840000pt;}
.y1_c00093{bottom:16.666667pt;}
.y3_c00093{bottom:33.653360pt;}
.y4_c00093{bottom:46.480027pt;}
.y20_c00093{bottom:86.773360pt;}
.y1f_c00093{bottom:100.533360pt;}
.y1e_c00093{bottom:114.613347pt;}
.y1d_c00093{bottom:149.813333pt;}
.y1c_c00093{bottom:186.613333pt;}
.y1b_c00093{bottom:223.413333pt;}
.y1a_c00093{bottom:260.213333pt;}
.y19_c00093{bottom:297.013333pt;}
.y18_c00093{bottom:333.813333pt;}
.y17_c00093{bottom:370.613333pt;}
.y16_c00093{bottom:407.413333pt;}
.y15_c00093{bottom:444.213333pt;}
.y14_c00093{bottom:481.013333pt;}
.y13_c00093{bottom:517.813333pt;}
.y12_c00093{bottom:554.613333pt;}
.y11_c00093{bottom:591.413333pt;}
.y10_c00093{bottom:628.213333pt;}
.yf_c00093{bottom:665.013333pt;}
.ye_c00093{bottom:701.813333pt;}
.yd_c00093{bottom:738.613333pt;}
.yc_c00093{bottom:775.413333pt;}
.yb_c00093{bottom:812.213333pt;}
.ya_c00093{bottom:849.013333pt;}
.y9_c00093{bottom:885.813333pt;}
.y8_c00093{bottom:922.613333pt;}
.y7_c00093{bottom:959.413333pt;}
.y6_c00093{bottom:996.213333pt;}
.y2_c00093{bottom:1043.253333pt;}
.h3_c00093{height:18.560000pt;}
.h4_c00093{height:42.457500pt;}
.h2_c00093{height:57.375000pt;}
.h1_c00093{height:1089.333333pt;}
.h0_c00093{height:1122.666667pt;}
.w2_c00093{width:17.920000pt;}
.w1_c00093{width:760.000000pt;}
.w0_c00093{width:793.333333pt;}
.x0_c00093{left:0.000000pt;}
.x1_c00093{left:16.666667pt;}
.x2_c00093{left:97.279933pt;}
.x3_c00093{left:121.280000pt;}
.x6_c00093{left:125.680000pt;}
.x5_c00093{left:135.080133pt;}
.x4_c00093{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_738c6d4cad04d579d960f40d.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.ls3_c00094{letter-spacing:-0.014400px;}
.ls2_c00094{letter-spacing:0.000000px;}
.ls0_c00094{letter-spacing:0.014400px;}
.ls1_c00094{letter-spacing:0.036000px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00094{word-spacing:-20.052000px;}
.ws0_c00094{word-spacing:-20.030400px;}
.ws2_c00094{word-spacing:-20.016000px;}
.ws3_c00094{word-spacing:0.000000px;}
._7_c00094{width:1.008000px;}
._a_c00094{width:2.429700px;}
._b_c00094{width:4.107900px;}
._1_c00094{width:6.570300px;}
._8_c00094{width:7.710600px;}
._5_c00094{width:10.123200px;}
._6_c00094{width:12.038400px;}
._3_c00094{width:13.089600px;}
._2_c00094{width:15.616800px;}
._c_c00094{width:16.719600px;}
._f_c00094{width:17.935200px;}
._4_c00094{width:23.493600px;}
._e_c00094{width:26.272800px;}
._11_c00094{width:32.443200px;}
._9_c00094{width:35.071200px;}
._10_c00094{width:36.468300px;}
._d_c00094{width:47.073600px;}
._0_c00094{width:1146.683400px;}
.fc1_c00094{color:transparent;}
.fc0_c00094{color:rgb(0,0,0);}
.fs0_c00094{font-size:72.000000px;}
.y0_c00094{bottom:0.000000px;}
.y4_c00094{bottom:4.320000px;}
.y1_c00094{bottom:18.750000px;}
.y2_c00094{bottom:37.860030px;}
.y3_c00094{bottom:52.290030px;}
.y1d_c00094{bottom:127.140030px;}
.y1c_c00094{bottom:168.540000px;}
.y1b_c00094{bottom:209.940000px;}
.y1a_c00094{bottom:251.340000px;}
.y19_c00094{bottom:292.740000px;}
.y18_c00094{bottom:334.140000px;}
.y17_c00094{bottom:375.540000px;}
.y16_c00094{bottom:416.940000px;}
.y15_c00094{bottom:458.340000px;}
.y14_c00094{bottom:499.740000px;}
.y13_c00094{bottom:541.140000px;}
.y12_c00094{bottom:582.540000px;}
.y11_c00094{bottom:623.940000px;}
.y10_c00094{bottom:665.340000px;}
.yf_c00094{bottom:706.740000px;}
.ye_c00094{bottom:748.140000px;}
.yd_c00094{bottom:789.540000px;}
.yc_c00094{bottom:830.940000px;}
.yb_c00094{bottom:872.340000px;}
.ya_c00094{bottom:913.740000px;}
.y9_c00094{bottom:955.140000px;}
.y8_c00094{bottom:996.540000px;}
.y7_c00094{bottom:1037.940000px;}
.y6_c00094{bottom:1079.340000px;}
.y5_c00094{bottom:1120.740000px;}
.h3_c00094{height:20.880000px;}
.h2_c00094{height:64.546875px;}
.h1_c00094{height:1225.500000px;}
.h0_c00094{height:1263.000000px;}
.w2_c00094{width:20.160000px;}
.w1_c00094{width:855.000000px;}
.w0_c00094{width:892.500000px;}
.x0_c00094{left:0.000000px;}
.x1_c00094{left:18.750000px;}
.x4_c00094{left:109.439925px;}
.x3_c00094{left:128.190000px;}
.x2_c00094{left:136.440000px;}
.x5_c00094{left:151.965150px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls3_c00094{letter-spacing:-0.012800pt;}
.ls2_c00094{letter-spacing:0.000000pt;}
.ls0_c00094{letter-spacing:0.012800pt;}
.ls1_c00094{letter-spacing:0.032000pt;}
.ws1_c00094{word-spacing:-17.824000pt;}
.ws0_c00094{word-spacing:-17.804800pt;}
.ws2_c00094{word-spacing:-17.792000pt;}
.ws3_c00094{word-spacing:0.000000pt;}
._7_c00094{width:0.896000pt;}
._a_c00094{width:2.159733pt;}
._b_c00094{width:3.651467pt;}
._1_c00094{width:5.840267pt;}
._8_c00094{width:6.853867pt;}
._5_c00094{width:8.998400pt;}
._6_c00094{width:10.700800pt;}
._3_c00094{width:11.635200pt;}
._2_c00094{width:13.881600pt;}
._c_c00094{width:14.861867pt;}
._f_c00094{width:15.942400pt;}
._4_c00094{width:20.883200pt;}
._e_c00094{width:23.353600pt;}
._11_c00094{width:28.838400pt;}
._9_c00094{width:31.174400pt;}
._10_c00094{width:32.416267pt;}
._d_c00094{width:41.843200pt;}
._0_c00094{width:1019.274133pt;}
.fs0_c00094{font-size:64.000000pt;}
.y0_c00094{bottom:0.000000pt;}
.y4_c00094{bottom:3.840000pt;}
.y1_c00094{bottom:16.666667pt;}
.y2_c00094{bottom:33.653360pt;}
.y3_c00094{bottom:46.480027pt;}
.y1d_c00094{bottom:113.013360pt;}
.y1c_c00094{bottom:149.813333pt;}
.y1b_c00094{bottom:186.613333pt;}
.y1a_c00094{bottom:223.413333pt;}
.y19_c00094{bottom:260.213333pt;}
.y18_c00094{bottom:297.013333pt;}
.y17_c00094{bottom:333.813333pt;}
.y16_c00094{bottom:370.613333pt;}
.y15_c00094{bottom:407.413333pt;}
.y14_c00094{bottom:444.213333pt;}
.y13_c00094{bottom:481.013333pt;}
.y12_c00094{bottom:517.813333pt;}
.y11_c00094{bottom:554.613333pt;}
.y10_c00094{bottom:591.413333pt;}
.yf_c00094{bottom:628.213333pt;}
.ye_c00094{bottom:665.013333pt;}
.yd_c00094{bottom:701.813333pt;}
.yc_c00094{bottom:738.613333pt;}
.yb_c00094{bottom:775.413333pt;}
.ya_c00094{bottom:812.213333pt;}
.y9_c00094{bottom:849.013333pt;}
.y8_c00094{bottom:885.813333pt;}
.y7_c00094{bottom:922.613333pt;}
.y6_c00094{bottom:959.413333pt;}
.y5_c00094{bottom:996.213333pt;}
.h3_c00094{height:18.560000pt;}
.h2_c00094{height:57.375000pt;}
.h1_c00094{height:1089.333333pt;}
.h0_c00094{height:1122.666667pt;}
.w2_c00094{width:17.920000pt;}
.w1_c00094{width:760.000000pt;}
.w0_c00094{width:793.333333pt;}
.x0_c00094{left:0.000000pt;}
.x1_c00094{left:16.666667pt;}
.x4_c00094{left:97.279933pt;}
.x3_c00094{left:113.946667pt;}
.x2_c00094{left:121.280000pt;}
.x5_c00094{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b05d852c11599151857cc290.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00095{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00095{vertical-align:0.000000px;}
.ls5_c00095{letter-spacing:-0.014400px;}
.ls3_c00095{letter-spacing:0.000000px;}
.ls0_c00095{letter-spacing:0.014400px;}
.ls4_c00095{letter-spacing:0.036000px;}
.ls9_c00095{letter-spacing:0.170496px;}
.ls6_c00095{letter-spacing:0.239760px;}
.ls8_c00095{letter-spacing:0.362304px;}
.ls2_c00095{letter-spacing:0.410256px;}
.ls7_c00095{letter-spacing:0.479520px;}
.ls1_c00095{letter-spacing:16.959360px;}
.sc__c00095{text-shadow:none;}
.sc0_c00095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00095{-webkit-text-stroke:0px transparent;}
.sc0_c00095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00095{word-spacing:-20.030400px;}
.ws1_c00095{word-spacing:-15.051600px;}
.ws2_c00095{word-spacing:0.000000px;}
._7_c00095{margin-left:-1.108440px;}
._3_c00095{width:1.122900px;}
._a_c00095{width:2.180460px;}
._6_c00095{width:6.145740px;}
._8_c00095{width:7.422120px;}
._2_c00095{width:11.944800px;}
._1_c00095{width:13.118400px;}
._9_c00095{width:16.548768px;}
._4_c00095{width:21.537540px;}
._5_c00095{width:30.556560px;}
._0_c00095{width:2079.683700px;}
.fc1_c00095{color:transparent;}
.fc0_c00095{color:rgb(0,0,0);}
.fs1_c00095{font-size:53.280000px;}
.fs0_c00095{font-size:72.000000px;}
.y0_c00095{bottom:0.000000px;}
.y5_c00095{bottom:4.320000px;}
.y1_c00095{bottom:18.750000px;}
.y3_c00095{bottom:37.860030px;}
.y4_c00095{bottom:52.290030px;}
.y21_c00095{bottom:108.060030px;}
.y20_c00095{bottom:123.540030px;}
.y1f_c00095{bottom:139.020000px;}
.y1e_c00095{bottom:154.500000px;}
.y1d_c00095{bottom:170.340000px;}
.y1c_c00095{bottom:209.940000px;}
.y1b_c00095{bottom:251.340000px;}
.y1a_c00095{bottom:292.740000px;}
.y19_c00095{bottom:334.140000px;}
.y18_c00095{bottom:375.540000px;}
.y17_c00095{bottom:416.940000px;}
.y16_c00095{bottom:458.340000px;}
.y15_c00095{bottom:499.740000px;}
.y14_c00095{bottom:541.140000px;}
.y13_c00095{bottom:582.540000px;}
.y12_c00095{bottom:623.940000px;}
.y11_c00095{bottom:665.340000px;}
.y10_c00095{bottom:706.740000px;}
.yf_c00095{bottom:748.140000px;}
.ye_c00095{bottom:789.540000px;}
.yd_c00095{bottom:830.940000px;}
.yc_c00095{bottom:872.340000px;}
.yb_c00095{bottom:913.740000px;}
.ya_c00095{bottom:955.140000px;}
.y9_c00095{bottom:996.540000px;}
.y8_c00095{bottom:1037.940000px;}
.y7_c00095{bottom:1079.340000px;}
.y6_c00095{bottom:1120.740000px;}
.y2_c00095{bottom:1173.660000px;}
.h3_c00095{height:20.880000px;}
.h4_c00095{height:47.764688px;}
.h2_c00095{height:64.546875px;}
.h1_c00095{height:1225.500000px;}
.h0_c00095{height:1263.000000px;}
.w2_c00095{width:20.160000px;}
.w1_c00095{width:855.000000px;}
.w0_c00095{width:892.500000px;}
.x0_c00095{left:0.000000px;}
.x1_c00095{left:18.750000px;}
.x2_c00095{left:109.439925px;}
.x3_c00095{left:136.440000px;}
.x6_c00095{left:141.390000px;}
.x5_c00095{left:151.965150px;}
.x4_c00095{left:745.590000px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls5_c00095{letter-spacing:-0.012800pt;}
.ls3_c00095{letter-spacing:0.000000pt;}
.ls0_c00095{letter-spacing:0.012800pt;}
.ls4_c00095{letter-spacing:0.032000pt;}
.ls9_c00095{letter-spacing:0.151552pt;}
.ls6_c00095{letter-spacing:0.213120pt;}
.ls8_c00095{letter-spacing:0.322048pt;}
.ls2_c00095{letter-spacing:0.364672pt;}
.ls7_c00095{letter-spacing:0.426240pt;}
.ls1_c00095{letter-spacing:15.074987pt;}
.ws0_c00095{word-spacing:-17.804800pt;}
.ws1_c00095{word-spacing:-13.379200pt;}
.ws2_c00095{word-spacing:0.000000pt;}
._7_c00095{margin-left:-0.985280pt;}
._3_c00095{width:0.998133pt;}
._a_c00095{width:1.938187pt;}
._6_c00095{width:5.462880pt;}
._8_c00095{width:6.597440pt;}
._2_c00095{width:10.617600pt;}
._1_c00095{width:11.660800pt;}
._9_c00095{width:14.710016pt;}
._4_c00095{width:19.144480pt;}
._5_c00095{width:27.161387pt;}
._0_c00095{width:1848.607733pt;}
.fs1_c00095{font-size:47.360000pt;}
.fs0_c00095{font-size:64.000000pt;}
.y0_c00095{bottom:0.000000pt;}
.y5_c00095{bottom:3.840000pt;}
.y1_c00095{bottom:16.666667pt;}
.y3_c00095{bottom:33.653360pt;}
.y4_c00095{bottom:46.480027pt;}
.y21_c00095{bottom:96.053360pt;}
.y20_c00095{bottom:109.813360pt;}
.y1f_c00095{bottom:123.573333pt;}
.y1e_c00095{bottom:137.333333pt;}
.y1d_c00095{bottom:151.413333pt;}
.y1c_c00095{bottom:186.613333pt;}
.y1b_c00095{bottom:223.413333pt;}
.y1a_c00095{bottom:260.213333pt;}
.y19_c00095{bottom:297.013333pt;}
.y18_c00095{bottom:333.813333pt;}
.y17_c00095{bottom:370.613333pt;}
.y16_c00095{bottom:407.413333pt;}
.y15_c00095{bottom:444.213333pt;}
.y14_c00095{bottom:481.013333pt;}
.y13_c00095{bottom:517.813333pt;}
.y12_c00095{bottom:554.613333pt;}
.y11_c00095{bottom:591.413333pt;}
.y10_c00095{bottom:628.213333pt;}
.yf_c00095{bottom:665.013333pt;}
.ye_c00095{bottom:701.813333pt;}
.yd_c00095{bottom:738.613333pt;}
.yc_c00095{bottom:775.413333pt;}
.yb_c00095{bottom:812.213333pt;}
.ya_c00095{bottom:849.013333pt;}
.y9_c00095{bottom:885.813333pt;}
.y8_c00095{bottom:922.613333pt;}
.y7_c00095{bottom:959.413333pt;}
.y6_c00095{bottom:996.213333pt;}
.y2_c00095{bottom:1043.253333pt;}
.h3_c00095{height:18.560000pt;}
.h4_c00095{height:42.457500pt;}
.h2_c00095{height:57.375000pt;}
.h1_c00095{height:1089.333333pt;}
.h0_c00095{height:1122.666667pt;}
.w2_c00095{width:17.920000pt;}
.w1_c00095{width:760.000000pt;}
.w0_c00095{width:793.333333pt;}
.x0_c00095{left:0.000000pt;}
.x1_c00095{left:16.666667pt;}
.x2_c00095{left:97.279933pt;}
.x3_c00095{left:121.280000pt;}
.x6_c00095{left:125.680000pt;}
.x5_c00095{left:135.080133pt;}
.x4_c00095{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_46a7aeeac9ee399b15faf2be.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00096{vertical-align:0.000000px;}
.ls0_c00096{letter-spacing:0.000000px;}
.ls1_c00096{letter-spacing:0.014400px;}
.sc__c00096{text-shadow:none;}
.sc0_c00096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00096{-webkit-text-stroke:0px transparent;}
.sc0_c00096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00096{word-spacing:-20.030400px;}
.ws1_c00096{word-spacing:0.000000px;}
._0_c00096{width:1146.683400px;}
.fc1_c00096{color:transparent;}
.fc0_c00096{color:rgb(0,0,0);}
.fs0_c00096{font-size:72.000000px;}
.y0_c00096{bottom:0.000000px;}
.y4_c00096{bottom:4.320000px;}
.y1_c00096{bottom:18.750000px;}
.y2_c00096{bottom:37.860030px;}
.y3_c00096{bottom:52.290030px;}
.y1c_c00096{bottom:168.540000px;}
.y1b_c00096{bottom:209.940000px;}
.y1a_c00096{bottom:251.340000px;}
.y19_c00096{bottom:292.740000px;}
.y18_c00096{bottom:334.140000px;}
.y17_c00096{bottom:375.540000px;}
.y16_c00096{bottom:416.940000px;}
.y15_c00096{bottom:458.340000px;}
.y14_c00096{bottom:499.740000px;}
.y13_c00096{bottom:541.140000px;}
.y12_c00096{bottom:582.540000px;}
.y11_c00096{bottom:623.940000px;}
.y10_c00096{bottom:665.340000px;}
.yf_c00096{bottom:706.740000px;}
.ye_c00096{bottom:748.140000px;}
.yd_c00096{bottom:789.540000px;}
.yc_c00096{bottom:830.940000px;}
.yb_c00096{bottom:872.340000px;}
.ya_c00096{bottom:913.740000px;}
.y9_c00096{bottom:955.140000px;}
.y8_c00096{bottom:996.540000px;}
.y7_c00096{bottom:1037.940000px;}
.y6_c00096{bottom:1079.340000px;}
.y5_c00096{bottom:1120.740000px;}
.h3_c00096{height:20.880000px;}
.h2_c00096{height:64.546875px;}
.h1_c00096{height:1225.500000px;}
.h0_c00096{height:1263.000000px;}
.w2_c00096{width:20.160000px;}
.w1_c00096{width:855.000000px;}
.w0_c00096{width:892.500000px;}
.x0_c00096{left:0.000000px;}
.x1_c00096{left:18.750000px;}
.x3_c00096{left:128.190000px;}
.x2_c00096{left:136.440000px;}
.x4_c00096{left:151.965150px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls0_c00096{letter-spacing:0.000000pt;}
.ls1_c00096{letter-spacing:0.012800pt;}
.ws0_c00096{word-spacing:-17.804800pt;}
.ws1_c00096{word-spacing:0.000000pt;}
._0_c00096{width:1019.274133pt;}
.fs0_c00096{font-size:64.000000pt;}
.y0_c00096{bottom:0.000000pt;}
.y4_c00096{bottom:3.840000pt;}
.y1_c00096{bottom:16.666667pt;}
.y2_c00096{bottom:33.653360pt;}
.y3_c00096{bottom:46.480027pt;}
.y1c_c00096{bottom:149.813333pt;}
.y1b_c00096{bottom:186.613333pt;}
.y1a_c00096{bottom:223.413333pt;}
.y19_c00096{bottom:260.213333pt;}
.y18_c00096{bottom:297.013333pt;}
.y17_c00096{bottom:333.813333pt;}
.y16_c00096{bottom:370.613333pt;}
.y15_c00096{bottom:407.413333pt;}
.y14_c00096{bottom:444.213333pt;}
.y13_c00096{bottom:481.013333pt;}
.y12_c00096{bottom:517.813333pt;}
.y11_c00096{bottom:554.613333pt;}
.y10_c00096{bottom:591.413333pt;}
.yf_c00096{bottom:628.213333pt;}
.ye_c00096{bottom:665.013333pt;}
.yd_c00096{bottom:701.813333pt;}
.yc_c00096{bottom:738.613333pt;}
.yb_c00096{bottom:775.413333pt;}
.ya_c00096{bottom:812.213333pt;}
.y9_c00096{bottom:849.013333pt;}
.y8_c00096{bottom:885.813333pt;}
.y7_c00096{bottom:922.613333pt;}
.y6_c00096{bottom:959.413333pt;}
.y5_c00096{bottom:996.213333pt;}
.h3_c00096{height:18.560000pt;}
.h2_c00096{height:57.375000pt;}
.h1_c00096{height:1089.333333pt;}
.h0_c00096{height:1122.666667pt;}
.w2_c00096{width:17.920000pt;}
.w1_c00096{width:760.000000pt;}
.w0_c00096{width:793.333333pt;}
.x0_c00096{left:0.000000pt;}
.x1_c00096{left:16.666667pt;}
.x3_c00096{left:113.946667pt;}
.x2_c00096{left:121.280000pt;}
.x4_c00096{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_597bbb8d304ccb409b011260.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00097;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:1.113281;font-style: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;}
.ls1_c00097{letter-spacing:0.275616px;}
.ls2_c00097{letter-spacing:0.442656px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00097{word-spacing:-23.661216px;}
.ws1_c00097{word-spacing:0.000000px;}
._1_c00097{margin-left:-1.059768px;}
._2_c00097{width:843.983700px;}
._0_c00097{width:2079.683700px;}
.fc0_c00097{color:rgb(0,0,0);}
.fs0_c00097{font-size:72.000000px;}
.fs1_c00097{font-size:83.520000px;}
.y0_c00097{bottom:0.000000px;}
.y1_c00097{bottom:18.750000px;}
.y3_c00097{bottom:37.860030px;}
.y15_c00097{bottom:472.020000px;}
.y14_c00097{bottom:506.580000px;}
.y13_c00097{bottom:543.660000px;}
.y12_c00097{bottom:581.460000px;}
.y11_c00097{bottom:619.620000px;}
.y10_c00097{bottom:657.780000px;}
.yf_c00097{bottom:695.580000px;}
.ye_c00097{bottom:733.740000px;}
.yd_c00097{bottom:771.900000px;}
.yc_c00097{bottom:810.060000px;}
.yb_c00097{bottom:847.860000px;}
.ya_c00097{bottom:886.020000px;}
.y9_c00097{bottom:924.180000px;}
.y8_c00097{bottom:962.340000px;}
.y7_c00097{bottom:1000.140000px;}
.y6_c00097{bottom:1037.940000px;}
.y5_c00097{bottom:1079.340000px;}
.y4_c00097{bottom:1120.740000px;}
.y2_c00097{bottom:1173.660000px;}
.h2_c00097{height:64.546875px;}
.h4_c00097{height:65.003906px;}
.h3_c00097{height:74.874375px;}
.h1_c00097{height:1225.500000px;}
.h0_c00097{height:1263.000000px;}
.w1_c00097{width:855.000000px;}
.w0_c00097{width:892.500000px;}
.x0_c00097{left:0.000000px;}
.x1_c00097{left:18.750000px;}
.x2_c00097{left:109.439925px;}
.x3_c00097{left:136.440000px;}
.x4_c00097{left:151.965150px;}
.x6_c00097{left:567.079800px;}
.x5_c00097{left:746.789700px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls0_c00097{letter-spacing:0.000000pt;}
.ls1_c00097{letter-spacing:0.244992pt;}
.ls2_c00097{letter-spacing:0.393472pt;}
.ws0_c00097{word-spacing:-21.032192pt;}
.ws1_c00097{word-spacing:0.000000pt;}
._1_c00097{margin-left:-0.942016pt;}
._2_c00097{width:750.207733pt;}
._0_c00097{width:1848.607733pt;}
.fs0_c00097{font-size:64.000000pt;}
.fs1_c00097{font-size:74.240000pt;}
.y0_c00097{bottom:0.000000pt;}
.y1_c00097{bottom:16.666667pt;}
.y3_c00097{bottom:33.653360pt;}
.y15_c00097{bottom:419.573333pt;}
.y14_c00097{bottom:450.293333pt;}
.y13_c00097{bottom:483.253333pt;}
.y12_c00097{bottom:516.853333pt;}
.y11_c00097{bottom:550.773333pt;}
.y10_c00097{bottom:584.693333pt;}
.yf_c00097{bottom:618.293333pt;}
.ye_c00097{bottom:652.213333pt;}
.yd_c00097{bottom:686.133333pt;}
.yc_c00097{bottom:720.053333pt;}
.yb_c00097{bottom:753.653333pt;}
.ya_c00097{bottom:787.573333pt;}
.y9_c00097{bottom:821.493333pt;}
.y8_c00097{bottom:855.413333pt;}
.y7_c00097{bottom:889.013333pt;}
.y6_c00097{bottom:922.613333pt;}
.y5_c00097{bottom:959.413333pt;}
.y4_c00097{bottom:996.213333pt;}
.y2_c00097{bottom:1043.253333pt;}
.h2_c00097{height:57.375000pt;}
.h4_c00097{height:57.781250pt;}
.h3_c00097{height:66.555000pt;}
.h1_c00097{height:1089.333333pt;}
.h0_c00097{height:1122.666667pt;}
.w1_c00097{width:760.000000pt;}
.w0_c00097{width:793.333333pt;}
.x0_c00097{left:0.000000pt;}
.x1_c00097{left:16.666667pt;}
.x2_c00097{left:97.279933pt;}
.x3_c00097{left:121.280000pt;}
.x4_c00097{left:135.080133pt;}
.x6_c00097{left:504.070933pt;}
.x5_c00097{left:663.813067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc845accef0beaceb15afc88.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00098;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.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;}
}
.ws0_c00098{word-spacing:0.000000px;}
._0_c00098{width:1146.683400px;}
.fc0_c00098{color:rgb(0,0,0);}
.fs0_c00098{font-size:72.000000px;}
.y0_c00098{bottom:0.000000px;}
.y1_c00098{bottom:18.750000px;}
.y2_c00098{bottom:37.860030px;}
.y3_c00098{bottom:1120.740000px;}
.h2_c00098{height:64.546875px;}
.h3_c00098{height:65.003906px;}
.h1_c00098{height:1225.500000px;}
.h0_c00098{height:1263.000000px;}
.w1_c00098{width:855.000000px;}
.w0_c00098{width:892.500000px;}
.x0_c00098{left:0.000000px;}
.x1_c00098{left:18.750000px;}
.x3_c00098{left:109.439925px;}
.x2_c00098{left:136.440000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls0_c00098{letter-spacing:0.000000pt;}
.ws0_c00098{word-spacing:0.000000pt;}
._0_c00098{width:1019.274133pt;}
.fs0_c00098{font-size:64.000000pt;}
.y0_c00098{bottom:0.000000pt;}
.y1_c00098{bottom:16.666667pt;}
.y2_c00098{bottom:33.653360pt;}
.y3_c00098{bottom:996.213333pt;}
.h2_c00098{height:57.375000pt;}
.h3_c00098{height:57.781250pt;}
.h1_c00098{height:1089.333333pt;}
.h0_c00098{height:1122.666667pt;}
.w1_c00098{width:760.000000pt;}
.w0_c00098{width:793.333333pt;}
.x0_c00098{left:0.000000pt;}
.x1_c00098{left:16.666667pt;}
.x3_c00098{left:97.279933pt;}
.x2_c00098{left:121.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5bc0637b106646802fa5e913.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00099;src:url('chunks/assets/font_b095938776b48f640c2a25ce.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00099;src:url('chunks/assets/font_7c88b154d5c14b9d2c9f3faa.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:1.104492;font-style: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;}
.ls3_c00099{letter-spacing:-0.014400px;}
.ls2_c00099{letter-spacing:0.000000px;}
.ls0_c00099{letter-spacing:0.014400px;}
.ls1_c00099{letter-spacing:0.036000px;}
.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:-20.030400px;}
.ws1_c00099{word-spacing:-20.016000px;}
.ws2_c00099{word-spacing:0.000000px;}
._7_c00099{width:1.396800px;}
._d_c00099{width:3.734640px;}
._3_c00099{width:5.106960px;}
._8_c00099{width:8.308800px;}
._b_c00099{width:9.784800px;}
._4_c00099{width:10.836000px;}
._e_c00099{width:13.046400px;}
._6_c00099{width:14.623200px;}
._a_c00099{width:16.336800px;}
._11_c00099{width:17.348400px;}
._5_c00099{width:18.612000px;}
._10_c00099{width:21.751200px;}
._9_c00099{width:23.184000px;}
._c_c00099{width:24.439800px;}
._f_c00099{width:28.029600px;}
._1_c00099{width:1061.484000px;}
._2_c00099{width:1146.684000px;}
._0_c00099{width:2079.683700px;}
.fc1_c00099{color:transparent;}
.fc0_c00099{color:rgb(0,0,0);}
.fs1_c00099{font-size:53.280000px;}
.fs0_c00099{font-size:72.000000px;}
.y0_c00099{bottom:0.000000px;}
.y5_c00099{bottom:3.960000px;}
.y1_c00099{bottom:18.750000px;}
.y3_c00099{bottom:36.420030px;}
.y4_c00099{bottom:47.250030px;}
.y1e_c00099{bottom:129.660030px;}
.y1d_c00099{bottom:171.060000px;}
.y1c_c00099{bottom:212.460000px;}
.y1b_c00099{bottom:253.860000px;}
.y1a_c00099{bottom:295.260000px;}
.y19_c00099{bottom:336.660000px;}
.y18_c00099{bottom:378.060000px;}
.y17_c00099{bottom:419.460000px;}
.y16_c00099{bottom:440.340000px;}
.y15_c00099{bottom:481.740000px;}
.y14_c00099{bottom:523.140000px;}
.y13_c00099{bottom:564.540000px;}
.y12_c00099{bottom:605.940000px;}
.y11_c00099{bottom:647.340000px;}
.y10_c00099{bottom:688.740000px;}
.yf_c00099{bottom:748.140000px;}
.ye_c00099{bottom:789.540000px;}
.yd_c00099{bottom:830.940000px;}
.yc_c00099{bottom:872.340000px;}
.yb_c00099{bottom:913.740000px;}
.ya_c00099{bottom:955.140000px;}
.y9_c00099{bottom:996.540000px;}
.y8_c00099{bottom:1037.940000px;}
.y7_c00099{bottom:1079.340000px;}
.y6_c00099{bottom:1120.740000px;}
.y2_c00099{bottom:1173.660000px;}
.h3_c00099{height:20.520000px;}
.h2_c00099{height:64.546875px;}
.h4_c00099{height:65.003906px;}
.h1_c00099{height:1225.500000px;}
.h0_c00099{height:1263.000000px;}
.w2_c00099{width:20.160000px;}
.w1_c00099{width:855.000000px;}
.w0_c00099{width:892.500000px;}
.x0_c00099{left:0.000000px;}
.x1_c00099{left:18.750000px;}
.x2_c00099{left:109.439925px;}
.x5_c00099{left:151.965150px;}
.x3_c00099{left:157.739850px;}
.x6_c00099{left:173.265000px;}
.x4_c00099{left:745.590000px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls3_c00099{letter-spacing:-0.012800pt;}
.ls2_c00099{letter-spacing:0.000000pt;}
.ls0_c00099{letter-spacing:0.012800pt;}
.ls1_c00099{letter-spacing:0.032000pt;}
.ws0_c00099{word-spacing:-17.804800pt;}
.ws1_c00099{word-spacing:-17.792000pt;}
.ws2_c00099{word-spacing:0.000000pt;}
._7_c00099{width:1.241600pt;}
._d_c00099{width:3.319680pt;}
._3_c00099{width:4.539520pt;}
._8_c00099{width:7.385600pt;}
._b_c00099{width:8.697600pt;}
._4_c00099{width:9.632000pt;}
._e_c00099{width:11.596800pt;}
._6_c00099{width:12.998400pt;}
._a_c00099{width:14.521600pt;}
._11_c00099{width:15.420800pt;}
._5_c00099{width:16.544000pt;}
._10_c00099{width:19.334400pt;}
._9_c00099{width:20.608000pt;}
._c_c00099{width:21.724267pt;}
._f_c00099{width:24.915200pt;}
._1_c00099{width:943.541333pt;}
._2_c00099{width:1019.274667pt;}
._0_c00099{width:1848.607733pt;}
.fs1_c00099{font-size:47.360000pt;}
.fs0_c00099{font-size:64.000000pt;}
.y0_c00099{bottom:0.000000pt;}
.y5_c00099{bottom:3.520000pt;}
.y1_c00099{bottom:16.666667pt;}
.y3_c00099{bottom:32.373360pt;}
.y4_c00099{bottom:42.000027pt;}
.y1e_c00099{bottom:115.253360pt;}
.y1d_c00099{bottom:152.053333pt;}
.y1c_c00099{bottom:188.853333pt;}
.y1b_c00099{bottom:225.653333pt;}
.y1a_c00099{bottom:262.453333pt;}
.y19_c00099{bottom:299.253333pt;}
.y18_c00099{bottom:336.053333pt;}
.y17_c00099{bottom:372.853333pt;}
.y16_c00099{bottom:391.413333pt;}
.y15_c00099{bottom:428.213333pt;}
.y14_c00099{bottom:465.013333pt;}
.y13_c00099{bottom:501.813333pt;}
.y12_c00099{bottom:538.613333pt;}
.y11_c00099{bottom:575.413333pt;}
.y10_c00099{bottom:612.213333pt;}
.yf_c00099{bottom:665.013333pt;}
.ye_c00099{bottom:701.813333pt;}
.yd_c00099{bottom:738.613333pt;}
.yc_c00099{bottom:775.413333pt;}
.yb_c00099{bottom:812.213333pt;}
.ya_c00099{bottom:849.013333pt;}
.y9_c00099{bottom:885.813333pt;}
.y8_c00099{bottom:922.613333pt;}
.y7_c00099{bottom:959.413333pt;}
.y6_c00099{bottom:996.213333pt;}
.y2_c00099{bottom:1043.253333pt;}
.h3_c00099{height:18.240000pt;}
.h2_c00099{height:57.375000pt;}
.h4_c00099{height:57.781250pt;}
.h1_c00099{height:1089.333333pt;}
.h0_c00099{height:1122.666667pt;}
.w2_c00099{width:17.920000pt;}
.w1_c00099{width:760.000000pt;}
.w0_c00099{width:793.333333pt;}
.x0_c00099{left:0.000000pt;}
.x1_c00099{left:16.666667pt;}
.x2_c00099{left:97.279933pt;}
.x5_c00099{left:135.080133pt;}
.x3_c00099{left:140.213200pt;}
.x6_c00099{left:154.013333pt;}
.x4_c00099{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5892d60fb3d70d2fe7039112.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00100;src:url('chunks/assets/font_9ae16584ee8a7853975648ad.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.111328;font-style: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;}
.ls4_c00100{letter-spacing:-0.014400px;}
.ls3_c00100{letter-spacing:0.000000px;}
.ls2_c00100{letter-spacing:0.001800px;}
.ls1_c00100{letter-spacing:0.002400px;}
.ls0_c00100{letter-spacing:0.014400px;}
.ls5_c00100{letter-spacing:0.036000px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00100{word-spacing:-20.052000px;}
.ws0_c00100{word-spacing:-20.030400px;}
.ws2_c00100{word-spacing:0.000000px;}
._e_c00100{margin-left:-1.004100px;}
._a_c00100{width:1.303200px;}
._7_c00100{width:2.671200px;}
._9_c00100{width:4.824000px;}
._6_c00100{width:6.026400px;}
._2_c00100{width:8.042400px;}
._5_c00100{width:11.145600px;}
._8_c00100{width:13.806600px;}
._3_c00100{width:14.842200px;}
._4_c00100{width:16.033800px;}
._b_c00100{width:17.691000px;}
._f_c00100{width:22.888800px;}
._1_c00100{width:28.058400px;}
._c_c00100{width:30.312000px;}
._d_c00100{width:31.579200px;}
._0_c00100{width:1146.683400px;}
.fc1_c00100{color:transparent;}
.fc0_c00100{color:rgb(0,0,0);}
.fs0_c00100{font-size:72.000000px;}
.y0_c00100{bottom:0.000000px;}
.y4_c00100{bottom:4.320000px;}
.y1_c00100{bottom:18.750000px;}
.y2_c00100{bottom:37.860030px;}
.y3_c00100{bottom:52.290030px;}
.y1d_c00100{bottom:111.660030px;}
.y1c_c00100{bottom:153.060000px;}
.y1b_c00100{bottom:194.460000px;}
.y1a_c00100{bottom:235.860000px;}
.y19_c00100{bottom:277.260000px;}
.y18_c00100{bottom:318.660000px;}
.y17_c00100{bottom:378.060000px;}
.y16_c00100{bottom:419.460000px;}
.y15_c00100{bottom:460.860000px;}
.y14_c00100{bottom:502.260000px;}
.y13_c00100{bottom:561.660000px;}
.y12_c00100{bottom:603.060000px;}
.y11_c00100{bottom:644.460000px;}
.y10_c00100{bottom:685.860000px;}
.yf_c00100{bottom:727.260000px;}
.ye_c00100{bottom:768.660000px;}
.yd_c00100{bottom:810.060000px;}
.yc_c00100{bottom:830.940000px;}
.yb_c00100{bottom:872.340000px;}
.ya_c00100{bottom:913.740000px;}
.y9_c00100{bottom:955.140000px;}
.y8_c00100{bottom:996.540000px;}
.y7_c00100{bottom:1037.940000px;}
.y6_c00100{bottom:1079.340000px;}
.y5_c00100{bottom:1120.740000px;}
.h3_c00100{height:20.880000px;}
.h2_c00100{height:64.546875px;}
.h4_c00100{height:65.707031px;}
.h1_c00100{height:1225.500000px;}
.h0_c00100{height:1263.000000px;}
.w2_c00100{width:20.160000px;}
.w1_c00100{width:855.000000px;}
.w0_c00100{width:892.500000px;}
.x0_c00100{left:0.000000px;}
.x1_c00100{left:18.750000px;}
.x6_c00100{left:109.439925px;}
.x3_c00100{left:128.190000px;}
.x2_c00100{left:136.440000px;}
.x5_c00100{left:151.965150px;}
.x4_c00100{left:173.265000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls4_c00100{letter-spacing:-0.012800pt;}
.ls3_c00100{letter-spacing:0.000000pt;}
.ls2_c00100{letter-spacing:0.001600pt;}
.ls1_c00100{letter-spacing:0.002133pt;}
.ls0_c00100{letter-spacing:0.012800pt;}
.ls5_c00100{letter-spacing:0.032000pt;}
.ws1_c00100{word-spacing:-17.824000pt;}
.ws0_c00100{word-spacing:-17.804800pt;}
.ws2_c00100{word-spacing:0.000000pt;}
._e_c00100{margin-left:-0.892533pt;}
._a_c00100{width:1.158400pt;}
._7_c00100{width:2.374400pt;}
._9_c00100{width:4.288000pt;}
._6_c00100{width:5.356800pt;}
._2_c00100{width:7.148800pt;}
._5_c00100{width:9.907200pt;}
._8_c00100{width:12.272533pt;}
._3_c00100{width:13.193067pt;}
._4_c00100{width:14.252267pt;}
._b_c00100{width:15.725333pt;}
._f_c00100{width:20.345600pt;}
._1_c00100{width:24.940800pt;}
._c_c00100{width:26.944000pt;}
._d_c00100{width:28.070400pt;}
._0_c00100{width:1019.274133pt;}
.fs0_c00100{font-size:64.000000pt;}
.y0_c00100{bottom:0.000000pt;}
.y4_c00100{bottom:3.840000pt;}
.y1_c00100{bottom:16.666667pt;}
.y2_c00100{bottom:33.653360pt;}
.y3_c00100{bottom:46.480027pt;}
.y1d_c00100{bottom:99.253360pt;}
.y1c_c00100{bottom:136.053333pt;}
.y1b_c00100{bottom:172.853333pt;}
.y1a_c00100{bottom:209.653333pt;}
.y19_c00100{bottom:246.453333pt;}
.y18_c00100{bottom:283.253333pt;}
.y17_c00100{bottom:336.053333pt;}
.y16_c00100{bottom:372.853333pt;}
.y15_c00100{bottom:409.653333pt;}
.y14_c00100{bottom:446.453333pt;}
.y13_c00100{bottom:499.253333pt;}
.y12_c00100{bottom:536.053333pt;}
.y11_c00100{bottom:572.853333pt;}
.y10_c00100{bottom:609.653333pt;}
.yf_c00100{bottom:646.453333pt;}
.ye_c00100{bottom:683.253333pt;}
.yd_c00100{bottom:720.053333pt;}
.yc_c00100{bottom:738.613333pt;}
.yb_c00100{bottom:775.413333pt;}
.ya_c00100{bottom:812.213333pt;}
.y9_c00100{bottom:849.013333pt;}
.y8_c00100{bottom:885.813333pt;}
.y7_c00100{bottom:922.613333pt;}
.y6_c00100{bottom:959.413333pt;}
.y5_c00100{bottom:996.213333pt;}
.h3_c00100{height:18.560000pt;}
.h2_c00100{height:57.375000pt;}
.h4_c00100{height:58.406250pt;}
.h1_c00100{height:1089.333333pt;}
.h0_c00100{height:1122.666667pt;}
.w2_c00100{width:17.920000pt;}
.w1_c00100{width:760.000000pt;}
.w0_c00100{width:793.333333pt;}
.x0_c00100{left:0.000000pt;}
.x1_c00100{left:16.666667pt;}
.x6_c00100{left:97.279933pt;}
.x3_c00100{left:113.946667pt;}
.x2_c00100{left:121.280000pt;}
.x5_c00100{left:135.080133pt;}
.x4_c00100{left:154.013333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f0b537c4baf212cf81e3d72.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00101;src:url('chunks/assets/font_96012a290b12693f8538c47a.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00101;src:url('chunks/assets/font_9ae16584ee8a7853975648ad.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;line-height:1.111328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00101{vertical-align:0.000000px;}
.ls3_c00101{letter-spacing:-0.014400px;}
.ls2_c00101{letter-spacing:0.000000px;}
.ls1_c00101{letter-spacing:0.002400px;}
.ls0_c00101{letter-spacing:0.014400px;}
.sc__c00101{text-shadow:none;}
.sc0_c00101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00101{-webkit-text-stroke:0px transparent;}
.sc0_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00101{word-spacing:-20.030400px;}
.ws1_c00101{word-spacing:-20.001600px;}
.ws2_c00101{word-spacing:0.000000px;}
._e_c00101{width:1.605600px;}
._d_c00101{width:2.966400px;}
._4_c00101{width:4.035000px;}
._3_c00101{width:5.086200px;}
._5_c00101{width:7.588800px;}
._9_c00101{width:9.518400px;}
._b_c00101{width:10.771200px;}
._c_c00101{width:14.493300px;}
._f_c00101{width:16.798260px;}
._8_c00101{width:18.017400px;}
._a_c00101{width:22.400400px;}
._6_c00101{width:29.931300px;}
._7_c00101{width:45.979200px;}
._1_c00101{width:1061.484000px;}
._2_c00101{width:1146.684000px;}
._0_c00101{width:2079.683700px;}
.fc1_c00101{color:transparent;}
.fc0_c00101{color:rgb(0,0,0);}
.fs1_c00101{font-size:53.280000px;}
.fs0_c00101{font-size:72.000000px;}
.y0_c00101{bottom:0.000000px;}
.y5_c00101{bottom:3.960000px;}
.y1_c00101{bottom:18.750000px;}
.y3_c00101{bottom:36.420030px;}
.y4_c00101{bottom:47.250030px;}
.y1e_c00101{bottom:109.140030px;}
.y1d_c00101{bottom:150.540000px;}
.y1c_c00101{bottom:191.940000px;}
.y1b_c00101{bottom:233.340000px;}
.y1a_c00101{bottom:274.740000px;}
.y19_c00101{bottom:316.140000px;}
.y18_c00101{bottom:357.540000px;}
.y17_c00101{bottom:398.940000px;}
.y16_c00101{bottom:440.340000px;}
.y15_c00101{bottom:481.740000px;}
.y14_c00101{bottom:523.140000px;}
.y13_c00101{bottom:564.540000px;}
.y12_c00101{bottom:605.940000px;}
.y11_c00101{bottom:647.340000px;}
.y10_c00101{bottom:688.740000px;}
.yf_c00101{bottom:730.140000px;}
.ye_c00101{bottom:771.540000px;}
.yd_c00101{bottom:812.940000px;}
.yc_c00101{bottom:854.340000px;}
.yb_c00101{bottom:895.740000px;}
.ya_c00101{bottom:937.140000px;}
.y9_c00101{bottom:978.540000px;}
.y8_c00101{bottom:1037.940000px;}
.y7_c00101{bottom:1079.340000px;}
.y6_c00101{bottom:1120.740000px;}
.y2_c00101{bottom:1173.660000px;}
.h3_c00101{height:20.520000px;}
.h2_c00101{height:64.546875px;}
.h4_c00101{height:65.003906px;}
.h5_c00101{height:65.707031px;}
.h1_c00101{height:1225.500000px;}
.h0_c00101{height:1263.000000px;}
.w2_c00101{width:20.160000px;}
.w1_c00101{width:855.000000px;}
.w0_c00101{width:892.500000px;}
.x0_c00101{left:0.000000px;}
.x1_c00101{left:18.750000px;}
.x2_c00101{left:109.439925px;}
.x5_c00101{left:151.965150px;}
.x3_c00101{left:157.739850px;}
.x4_c00101{left:745.590000px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls3_c00101{letter-spacing:-0.012800pt;}
.ls2_c00101{letter-spacing:0.000000pt;}
.ls1_c00101{letter-spacing:0.002133pt;}
.ls0_c00101{letter-spacing:0.012800pt;}
.ws0_c00101{word-spacing:-17.804800pt;}
.ws1_c00101{word-spacing:-17.779200pt;}
.ws2_c00101{word-spacing:0.000000pt;}
._e_c00101{width:1.427200pt;}
._d_c00101{width:2.636800pt;}
._4_c00101{width:3.586667pt;}
._3_c00101{width:4.521067pt;}
._5_c00101{width:6.745600pt;}
._9_c00101{width:8.460800pt;}
._b_c00101{width:9.574400pt;}
._c_c00101{width:12.882933pt;}
._f_c00101{width:14.931787pt;}
._8_c00101{width:16.015467pt;}
._a_c00101{width:19.911467pt;}
._6_c00101{width:26.605600pt;}
._7_c00101{width:40.870400pt;}
._1_c00101{width:943.541333pt;}
._2_c00101{width:1019.274667pt;}
._0_c00101{width:1848.607733pt;}
.fs1_c00101{font-size:47.360000pt;}
.fs0_c00101{font-size:64.000000pt;}
.y0_c00101{bottom:0.000000pt;}
.y5_c00101{bottom:3.520000pt;}
.y1_c00101{bottom:16.666667pt;}
.y3_c00101{bottom:32.373360pt;}
.y4_c00101{bottom:42.000027pt;}
.y1e_c00101{bottom:97.013360pt;}
.y1d_c00101{bottom:133.813333pt;}
.y1c_c00101{bottom:170.613333pt;}
.y1b_c00101{bottom:207.413333pt;}
.y1a_c00101{bottom:244.213333pt;}
.y19_c00101{bottom:281.013333pt;}
.y18_c00101{bottom:317.813333pt;}
.y17_c00101{bottom:354.613333pt;}
.y16_c00101{bottom:391.413333pt;}
.y15_c00101{bottom:428.213333pt;}
.y14_c00101{bottom:465.013333pt;}
.y13_c00101{bottom:501.813333pt;}
.y12_c00101{bottom:538.613333pt;}
.y11_c00101{bottom:575.413333pt;}
.y10_c00101{bottom:612.213333pt;}
.yf_c00101{bottom:649.013333pt;}
.ye_c00101{bottom:685.813333pt;}
.yd_c00101{bottom:722.613333pt;}
.yc_c00101{bottom:759.413333pt;}
.yb_c00101{bottom:796.213333pt;}
.ya_c00101{bottom:833.013333pt;}
.y9_c00101{bottom:869.813333pt;}
.y8_c00101{bottom:922.613333pt;}
.y7_c00101{bottom:959.413333pt;}
.y6_c00101{bottom:996.213333pt;}
.y2_c00101{bottom:1043.253333pt;}
.h3_c00101{height:18.240000pt;}
.h2_c00101{height:57.375000pt;}
.h4_c00101{height:57.781250pt;}
.h5_c00101{height:58.406250pt;}
.h1_c00101{height:1089.333333pt;}
.h0_c00101{height:1122.666667pt;}
.w2_c00101{width:17.920000pt;}
.w1_c00101{width:760.000000pt;}
.w0_c00101{width:793.333333pt;}
.x0_c00101{left:0.000000pt;}
.x1_c00101{left:16.666667pt;}
.x2_c00101{left:97.279933pt;}
.x5_c00101{left:135.080133pt;}
.x3_c00101{left:140.213200pt;}
.x4_c00101{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e435da94b9e2e993047c2d32.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00102{vertical-align:0.000000px;}
.ls1_c00102{letter-spacing:0.000000px;}
.ls0_c00102{letter-spacing:0.014400px;}
.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;}
}
.ws0_c00102{word-spacing:-20.030400px;}
.ws1_c00102{word-spacing:0.000000px;}
._5_c00102{width:1.360800px;}
._8_c00102{width:2.440800px;}
._7_c00102{width:5.768700px;}
._c_c00102{width:7.225800px;}
._6_c00102{width:8.762400px;}
._3_c00102{width:10.317600px;}
._4_c00102{width:11.937600px;}
._9_c00102{width:15.300000px;}
._2_c00102{width:17.114400px;}
._1_c00102{width:18.504000px;}
._b_c00102{width:21.074400px;}
._a_c00102{width:22.420800px;}
._0_c00102{width:1146.683400px;}
.fc1_c00102{color:transparent;}
.fc0_c00102{color:rgb(0,0,0);}
.fs0_c00102{font-size:72.000000px;}
.y0_c00102{bottom:0.000000px;}
.y4_c00102{bottom:4.320000px;}
.y1_c00102{bottom:18.750000px;}
.y2_c00102{bottom:37.860030px;}
.y3_c00102{bottom:52.290030px;}
.y17_c00102{bottom:88.980015px;}
.y16_c00102{bottom:416.940000px;}
.y15_c00102{bottom:458.340000px;}
.y14_c00102{bottom:499.740000px;}
.y13_c00102{bottom:541.140000px;}
.y12_c00102{bottom:582.540000px;}
.y11_c00102{bottom:623.940000px;}
.y10_c00102{bottom:665.340000px;}
.yf_c00102{bottom:706.740000px;}
.ye_c00102{bottom:748.140000px;}
.yd_c00102{bottom:789.540000px;}
.yc_c00102{bottom:830.940000px;}
.yb_c00102{bottom:872.340000px;}
.ya_c00102{bottom:913.740000px;}
.y9_c00102{bottom:955.140000px;}
.y8_c00102{bottom:996.540000px;}
.y7_c00102{bottom:1037.940000px;}
.y6_c00102{bottom:1079.340000px;}
.y5_c00102{bottom:1120.740000px;}
.h3_c00102{height:20.880000px;}
.h2_c00102{height:64.546875px;}
.h1_c00102{height:1225.500000px;}
.h0_c00102{height:1263.000000px;}
.w2_c00102{width:20.160000px;}
.w1_c00102{width:855.000000px;}
.w0_c00102{width:892.500000px;}
.x0_c00102{left:0.000000px;}
.x1_c00102{left:18.750000px;}
.x4_c00102{left:109.439925px;}
.x3_c00102{left:128.190000px;}
.x2_c00102{left:136.440000px;}
.x5_c00102{left:151.965150px;}
.x6_c00102{left:680.864850px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls1_c00102{letter-spacing:0.000000pt;}
.ls0_c00102{letter-spacing:0.012800pt;}
.ws0_c00102{word-spacing:-17.804800pt;}
.ws1_c00102{word-spacing:0.000000pt;}
._5_c00102{width:1.209600pt;}
._8_c00102{width:2.169600pt;}
._7_c00102{width:5.127733pt;}
._c_c00102{width:6.422933pt;}
._6_c00102{width:7.788800pt;}
._3_c00102{width:9.171200pt;}
._4_c00102{width:10.611200pt;}
._9_c00102{width:13.600000pt;}
._2_c00102{width:15.212800pt;}
._1_c00102{width:16.448000pt;}
._b_c00102{width:18.732800pt;}
._a_c00102{width:19.929600pt;}
._0_c00102{width:1019.274133pt;}
.fs0_c00102{font-size:64.000000pt;}
.y0_c00102{bottom:0.000000pt;}
.y4_c00102{bottom:3.840000pt;}
.y1_c00102{bottom:16.666667pt;}
.y2_c00102{bottom:33.653360pt;}
.y3_c00102{bottom:46.480027pt;}
.y17_c00102{bottom:79.093347pt;}
.y16_c00102{bottom:370.613333pt;}
.y15_c00102{bottom:407.413333pt;}
.y14_c00102{bottom:444.213333pt;}
.y13_c00102{bottom:481.013333pt;}
.y12_c00102{bottom:517.813333pt;}
.y11_c00102{bottom:554.613333pt;}
.y10_c00102{bottom:591.413333pt;}
.yf_c00102{bottom:628.213333pt;}
.ye_c00102{bottom:665.013333pt;}
.yd_c00102{bottom:701.813333pt;}
.yc_c00102{bottom:738.613333pt;}
.yb_c00102{bottom:775.413333pt;}
.ya_c00102{bottom:812.213333pt;}
.y9_c00102{bottom:849.013333pt;}
.y8_c00102{bottom:885.813333pt;}
.y7_c00102{bottom:922.613333pt;}
.y6_c00102{bottom:959.413333pt;}
.y5_c00102{bottom:996.213333pt;}
.h3_c00102{height:18.560000pt;}
.h2_c00102{height:57.375000pt;}
.h1_c00102{height:1089.333333pt;}
.h0_c00102{height:1122.666667pt;}
.w2_c00102{width:17.920000pt;}
.w1_c00102{width:760.000000pt;}
.w0_c00102{width:793.333333pt;}
.x0_c00102{left:0.000000pt;}
.x1_c00102{left:16.666667pt;}
.x4_c00102{left:97.279933pt;}
.x3_c00102{left:113.946667pt;}
.x2_c00102{left:121.280000pt;}
.x5_c00102{left:135.080133pt;}
.x6_c00102{left:605.213200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3b22cb0c5a19e99b7a84f03.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00103{letter-spacing:0.275616px;}
.ls0_c00103{letter-spacing:0.325728px;}
.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:0.000000px;}
._3_c00103{margin-left:-1.060368px;}
._4_c00103{width:844.664928px;}
._2_c00103{width:1146.684000px;}
._1_c00103{width:1254.683700px;}
._0_c00103{width:2079.683700px;}
.fc1_c00103{color:transparent;}
.fc0_c00103{color:rgb(0,0,0);}
.fs1_c00103{font-size:53.280000px;}
.fs0_c00103{font-size:72.000000px;}
.fs2_c00103{font-size:83.520000px;}
.y0_c00103{bottom:0.000000px;}
.y1_c00103{bottom:18.750000px;}
.y3_c00103{bottom:36.420030px;}
.y12_c00103{bottom:636.540000px;}
.y11_c00103{bottom:674.340000px;}
.y10_c00103{bottom:708.540000px;}
.yf_c00103{bottom:742.740000px;}
.ye_c00103{bottom:777.300000px;}
.yd_c00103{bottom:811.500000px;}
.yc_c00103{bottom:846.060000px;}
.yb_c00103{bottom:880.260000px;}
.ya_c00103{bottom:914.460000px;}
.y9_c00103{bottom:949.020000px;}
.y8_c00103{bottom:983.220000px;}
.y7_c00103{bottom:1017.420000px;}
.y6_c00103{bottom:1051.980000px;}
.y5_c00103{bottom:1086.180000px;}
.y4_c00103{bottom:1120.740000px;}
.y2_c00103{bottom:1173.660000px;}
.h2_c00103{height:64.546875px;}
.h3_c00103{height:74.874375px;}
.h1_c00103{height:1225.500000px;}
.h0_c00103{height:1263.000000px;}
.w1_c00103{width:855.000000px;}
.w0_c00103{width:892.500000px;}
.x0_c00103{left:0.000000px;}
.x1_c00103{left:18.750000px;}
.x2_c00103{left:109.439925px;}
.x3_c00103{left:199.508100px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls1_c00103{letter-spacing:0.000000pt;}
.ls2_c00103{letter-spacing:0.244992pt;}
.ls0_c00103{letter-spacing:0.289536pt;}
.ws0_c00103{word-spacing:0.000000pt;}
._3_c00103{margin-left:-0.942549pt;}
._4_c00103{width:750.813269pt;}
._2_c00103{width:1019.274667pt;}
._1_c00103{width:1115.274400pt;}
._0_c00103{width:1848.607733pt;}
.fs1_c00103{font-size:47.360000pt;}
.fs0_c00103{font-size:64.000000pt;}
.fs2_c00103{font-size:74.240000pt;}
.y0_c00103{bottom:0.000000pt;}
.y1_c00103{bottom:16.666667pt;}
.y3_c00103{bottom:32.373360pt;}
.y12_c00103{bottom:565.813333pt;}
.y11_c00103{bottom:599.413333pt;}
.y10_c00103{bottom:629.813333pt;}
.yf_c00103{bottom:660.213333pt;}
.ye_c00103{bottom:690.933333pt;}
.yd_c00103{bottom:721.333333pt;}
.yc_c00103{bottom:752.053333pt;}
.yb_c00103{bottom:782.453333pt;}
.ya_c00103{bottom:812.853333pt;}
.y9_c00103{bottom:843.573333pt;}
.y8_c00103{bottom:873.973333pt;}
.y7_c00103{bottom:904.373333pt;}
.y6_c00103{bottom:935.093333pt;}
.y5_c00103{bottom:965.493333pt;}
.y4_c00103{bottom:996.213333pt;}
.y2_c00103{bottom:1043.253333pt;}
.h2_c00103{height:57.375000pt;}
.h3_c00103{height:66.555000pt;}
.h1_c00103{height:1089.333333pt;}
.h0_c00103{height:1122.666667pt;}
.w1_c00103{width:760.000000pt;}
.w0_c00103{width:793.333333pt;}
.x0_c00103{left:0.000000pt;}
.x1_c00103{left:16.666667pt;}
.x2_c00103{left:97.279933pt;}
.x3_c00103{left:177.340533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc845accef0beaceb15afc88.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.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;}
}
.ws0_c00104{word-spacing:0.000000px;}
._1_c00104{width:843.983700px;}
._0_c00104{width:1146.683400px;}
.fc0_c00104{color:rgb(0,0,0);}
.fs0_c00104{font-size:72.000000px;}
.y0_c00104{bottom:0.000000px;}
.y1_c00104{bottom:18.750000px;}
.y3_c00104{bottom:37.860030px;}
.y2_c00104{bottom:58.380030px;}
.y19_c00104{bottom:364.380000px;}
.y18_c00104{bottom:398.580000px;}
.y17_c00104{bottom:432.780000px;}
.y16_c00104{bottom:467.340000px;}
.y15_c00104{bottom:501.540000px;}
.y14_c00104{bottom:535.740000px;}
.y13_c00104{bottom:570.300000px;}
.y12_c00104{bottom:604.500000px;}
.y11_c00104{bottom:639.060000px;}
.y10_c00104{bottom:673.260000px;}
.yf_c00104{bottom:707.460000px;}
.ye_c00104{bottom:742.020000px;}
.yd_c00104{bottom:776.220000px;}
.yc_c00104{bottom:810.420000px;}
.yb_c00104{bottom:844.980000px;}
.ya_c00104{bottom:879.180000px;}
.y9_c00104{bottom:913.740000px;}
.y8_c00104{bottom:955.140000px;}
.y7_c00104{bottom:996.540000px;}
.y6_c00104{bottom:1037.940000px;}
.y5_c00104{bottom:1079.340000px;}
.y4_c00104{bottom:1120.740000px;}
.h2_c00104{height:64.546875px;}
.h1_c00104{height:1225.500000px;}
.h0_c00104{height:1263.000000px;}
.w1_c00104{width:855.000000px;}
.w0_c00104{width:892.500000px;}
.x0_c00104{left:0.000000px;}
.x1_c00104{left:18.750000px;}
.x3_c00104{left:109.439925px;}
.x2_c00104{left:136.440000px;}
.x4_c00104{left:746.789700px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls0_c00104{letter-spacing:0.000000pt;}
.ws0_c00104{word-spacing:0.000000pt;}
._1_c00104{width:750.207733pt;}
._0_c00104{width:1019.274133pt;}
.fs0_c00104{font-size:64.000000pt;}
.y0_c00104{bottom:0.000000pt;}
.y1_c00104{bottom:16.666667pt;}
.y3_c00104{bottom:33.653360pt;}
.y2_c00104{bottom:51.893360pt;}
.y19_c00104{bottom:323.893333pt;}
.y18_c00104{bottom:354.293333pt;}
.y17_c00104{bottom:384.693333pt;}
.y16_c00104{bottom:415.413333pt;}
.y15_c00104{bottom:445.813333pt;}
.y14_c00104{bottom:476.213333pt;}
.y13_c00104{bottom:506.933333pt;}
.y12_c00104{bottom:537.333333pt;}
.y11_c00104{bottom:568.053333pt;}
.y10_c00104{bottom:598.453333pt;}
.yf_c00104{bottom:628.853333pt;}
.ye_c00104{bottom:659.573333pt;}
.yd_c00104{bottom:689.973333pt;}
.yc_c00104{bottom:720.373333pt;}
.yb_c00104{bottom:751.093333pt;}
.ya_c00104{bottom:781.493333pt;}
.y9_c00104{bottom:812.213333pt;}
.y8_c00104{bottom:849.013333pt;}
.y7_c00104{bottom:885.813333pt;}
.y6_c00104{bottom:922.613333pt;}
.y5_c00104{bottom:959.413333pt;}
.y4_c00104{bottom:996.213333pt;}
.h2_c00104{height:57.375000pt;}
.h1_c00104{height:1089.333333pt;}
.h0_c00104{height:1122.666667pt;}
.w1_c00104{width:760.000000pt;}
.w0_c00104{width:793.333333pt;}
.x0_c00104{left:0.000000pt;}
.x1_c00104{left:16.666667pt;}
.x3_c00104{left:97.279933pt;}
.x2_c00104{left:121.280000pt;}
.x4_c00104{left:663.813067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a8c7049f821b826c9f407c86.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00105;src:url('chunks/assets/font_04ebbe2382200dfc4da340da.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00105{vertical-align:0.000000px;}
.ls3_c00105{letter-spacing:-0.014400px;}
.ls2_c00105{letter-spacing:0.000000px;}
.ls0_c00105{letter-spacing:0.014400px;}
.ls1_c00105{letter-spacing:29.991000px;}
.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:-20.030400px;}
.ws1_c00105{word-spacing:0.000000px;}
._8_c00105{margin-left:-1.000800px;}
._9_c00105{width:1.382400px;}
._4_c00105{width:2.548800px;}
._d_c00105{width:4.586400px;}
._11_c00105{width:6.789600px;}
._c_c00105{width:7.912800px;}
._10_c00105{width:9.756000px;}
._12_c00105{width:11.080800px;}
._6_c00105{width:16.084800px;}
._b_c00105{width:18.295200px;}
._f_c00105{width:21.271200px;}
._7_c00105{width:22.385700px;}
._e_c00105{width:23.744700px;}
._3_c00105{width:27.008100px;}
._a_c00105{width:28.151100px;}
._5_c00105{width:29.931300px;}
._1_c00105{width:1061.484000px;}
._2_c00105{width:1146.684000px;}
._0_c00105{width:2079.683700px;}
.fc1_c00105{color:transparent;}
.fc0_c00105{color:rgb(0,0,0);}
.fs1_c00105{font-size:53.280000px;}
.fs0_c00105{font-size:72.000000px;}
.y0_c00105{bottom:0.000000px;}
.y5_c00105{bottom:3.960000px;}
.y1_c00105{bottom:18.750000px;}
.y3_c00105{bottom:36.420030px;}
.y4_c00105{bottom:47.250030px;}
.y1e_c00105{bottom:91.140030px;}
.y1d_c00105{bottom:132.540000px;}
.y1c_c00105{bottom:173.940000px;}
.y1b_c00105{bottom:215.340000px;}
.y1a_c00105{bottom:256.740000px;}
.y19_c00105{bottom:298.140000px;}
.y18_c00105{bottom:339.540000px;}
.y17_c00105{bottom:380.940000px;}
.y16_c00105{bottom:440.340000px;}
.y15_c00105{bottom:481.740000px;}
.y14_c00105{bottom:523.140000px;}
.y13_c00105{bottom:564.540000px;}
.y12_c00105{bottom:605.940000px;}
.y11_c00105{bottom:647.340000px;}
.y10_c00105{bottom:688.740000px;}
.yf_c00105{bottom:730.140000px;}
.ye_c00105{bottom:771.540000px;}
.yd_c00105{bottom:812.940000px;}
.yc_c00105{bottom:854.340000px;}
.yb_c00105{bottom:895.740000px;}
.ya_c00105{bottom:937.140000px;}
.y9_c00105{bottom:978.540000px;}
.y8_c00105{bottom:1037.940000px;}
.y7_c00105{bottom:1079.340000px;}
.y6_c00105{bottom:1120.740000px;}
.y2_c00105{bottom:1173.660000px;}
.h3_c00105{height:20.520000px;}
.h2_c00105{height:64.546875px;}
.h4_c00105{height:65.003906px;}
.h1_c00105{height:1225.500000px;}
.h0_c00105{height:1263.000000px;}
.w2_c00105{width:20.160000px;}
.w1_c00105{width:855.000000px;}
.w0_c00105{width:892.500000px;}
.x0_c00105{left:0.000000px;}
.x1_c00105{left:18.750000px;}
.x2_c00105{left:109.439925px;}
.x5_c00105{left:151.965150px;}
.x3_c00105{left:157.739850px;}
.x4_c00105{left:745.590000px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls3_c00105{letter-spacing:-0.012800pt;}
.ls2_c00105{letter-spacing:0.000000pt;}
.ls0_c00105{letter-spacing:0.012800pt;}
.ls1_c00105{letter-spacing:26.658667pt;}
.ws0_c00105{word-spacing:-17.804800pt;}
.ws1_c00105{word-spacing:0.000000pt;}
._8_c00105{margin-left:-0.889600pt;}
._9_c00105{width:1.228800pt;}
._4_c00105{width:2.265600pt;}
._d_c00105{width:4.076800pt;}
._11_c00105{width:6.035200pt;}
._c_c00105{width:7.033600pt;}
._10_c00105{width:8.672000pt;}
._12_c00105{width:9.849600pt;}
._6_c00105{width:14.297600pt;}
._b_c00105{width:16.262400pt;}
._f_c00105{width:18.907733pt;}
._7_c00105{width:19.898400pt;}
._e_c00105{width:21.106400pt;}
._3_c00105{width:24.007200pt;}
._a_c00105{width:25.023200pt;}
._5_c00105{width:26.605600pt;}
._1_c00105{width:943.541333pt;}
._2_c00105{width:1019.274667pt;}
._0_c00105{width:1848.607733pt;}
.fs1_c00105{font-size:47.360000pt;}
.fs0_c00105{font-size:64.000000pt;}
.y0_c00105{bottom:0.000000pt;}
.y5_c00105{bottom:3.520000pt;}
.y1_c00105{bottom:16.666667pt;}
.y3_c00105{bottom:32.373360pt;}
.y4_c00105{bottom:42.000027pt;}
.y1e_c00105{bottom:81.013360pt;}
.y1d_c00105{bottom:117.813333pt;}
.y1c_c00105{bottom:154.613333pt;}
.y1b_c00105{bottom:191.413333pt;}
.y1a_c00105{bottom:228.213333pt;}
.y19_c00105{bottom:265.013333pt;}
.y18_c00105{bottom:301.813333pt;}
.y17_c00105{bottom:338.613333pt;}
.y16_c00105{bottom:391.413333pt;}
.y15_c00105{bottom:428.213333pt;}
.y14_c00105{bottom:465.013333pt;}
.y13_c00105{bottom:501.813333pt;}
.y12_c00105{bottom:538.613333pt;}
.y11_c00105{bottom:575.413333pt;}
.y10_c00105{bottom:612.213333pt;}
.yf_c00105{bottom:649.013333pt;}
.ye_c00105{bottom:685.813333pt;}
.yd_c00105{bottom:722.613333pt;}
.yc_c00105{bottom:759.413333pt;}
.yb_c00105{bottom:796.213333pt;}
.ya_c00105{bottom:833.013333pt;}
.y9_c00105{bottom:869.813333pt;}
.y8_c00105{bottom:922.613333pt;}
.y7_c00105{bottom:959.413333pt;}
.y6_c00105{bottom:996.213333pt;}
.y2_c00105{bottom:1043.253333pt;}
.h3_c00105{height:18.240000pt;}
.h2_c00105{height:57.375000pt;}
.h4_c00105{height:57.781250pt;}
.h1_c00105{height:1089.333333pt;}
.h0_c00105{height:1122.666667pt;}
.w2_c00105{width:17.920000pt;}
.w1_c00105{width:760.000000pt;}
.w0_c00105{width:793.333333pt;}
.x0_c00105{left:0.000000pt;}
.x1_c00105{left:16.666667pt;}
.x2_c00105{left:97.279933pt;}
.x5_c00105{left:135.080133pt;}
.x3_c00105{left:140.213200pt;}
.x4_c00105{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7715f70e8c9b0b52ddf99e89.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.ls8_c00106{letter-spacing:0.000000px;}
.ls0_c00106{letter-spacing:0.014400px;}
.ls3_c00106{letter-spacing:0.191808px;}
.ls5_c00106{letter-spacing:0.239760px;}
.ls2_c00106{letter-spacing:0.240360px;}
.lsb_c00106{letter-spacing:0.362304px;}
.ls6_c00106{letter-spacing:0.410256px;}
.ls4_c00106{letter-spacing:0.431568px;}
.ls9_c00106{letter-spacing:0.479520px;}
.lsa_c00106{letter-spacing:0.628704px;}
.ls7_c00106{letter-spacing:2.126160px;}
.ls1_c00106{letter-spacing:16.959360px;}
.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:-20.030400px;}
.ws1_c00106{word-spacing:-20.016000px;}
.ws3_c00106{word-spacing:-15.222096px;}
.ws2_c00106{word-spacing:-15.051600px;}
.ws4_c00106{word-spacing:0.000000px;}
._f_c00106{margin-left:-1.158540px;}
._2_c00106{width:1.634400px;}
._6_c00106{width:2.801400px;}
._9_c00106{width:3.980400px;}
._e_c00106{width:5.162400px;}
._3_c00106{width:6.422100px;}
._8_c00106{width:7.747500px;}
._1_c00106{width:10.627200px;}
._d_c00106{width:12.636000px;}
._5_c00106{width:15.573600px;}
._b_c00106{width:17.013600px;}
._7_c00106{width:18.698400px;}
._4_c00106{width:21.945600px;}
._a_c00106{width:23.061600px;}
._c_c00106{width:29.966400px;}
._0_c00106{width:1146.683400px;}
.fc1_c00106{color:transparent;}
.fc0_c00106{color:rgb(0,0,0);}
.fs1_c00106{font-size:53.280000px;}
.fs0_c00106{font-size:72.000000px;}
.y0_c00106{bottom:0.000000px;}
.y4_c00106{bottom:4.320000px;}
.y1_c00106{bottom:18.750000px;}
.y2_c00106{bottom:37.860030px;}
.y3_c00106{bottom:52.290030px;}
.y20_c00106{bottom:108.060030px;}
.y1f_c00106{bottom:123.540030px;}
.y1e_c00106{bottom:139.020000px;}
.y1d_c00106{bottom:154.500000px;}
.y1c_c00106{bottom:170.340000px;}
.y1b_c00106{bottom:209.940000px;}
.y1a_c00106{bottom:251.340000px;}
.y19_c00106{bottom:292.740000px;}
.y18_c00106{bottom:334.140000px;}
.y17_c00106{bottom:375.540000px;}
.y16_c00106{bottom:416.940000px;}
.y15_c00106{bottom:458.340000px;}
.y14_c00106{bottom:499.740000px;}
.y13_c00106{bottom:541.140000px;}
.y12_c00106{bottom:582.540000px;}
.y11_c00106{bottom:623.940000px;}
.y10_c00106{bottom:665.340000px;}
.yf_c00106{bottom:706.740000px;}
.ye_c00106{bottom:748.140000px;}
.yd_c00106{bottom:789.540000px;}
.yc_c00106{bottom:830.940000px;}
.yb_c00106{bottom:872.340000px;}
.ya_c00106{bottom:913.740000px;}
.y9_c00106{bottom:955.140000px;}
.y8_c00106{bottom:996.540000px;}
.y7_c00106{bottom:1037.940000px;}
.y6_c00106{bottom:1079.340000px;}
.y5_c00106{bottom:1120.740000px;}
.h3_c00106{height:20.880000px;}
.h4_c00106{height:47.764688px;}
.h2_c00106{height:64.546875px;}
.h1_c00106{height:1225.500000px;}
.h0_c00106{height:1263.000000px;}
.w2_c00106{width:20.160000px;}
.w1_c00106{width:855.000000px;}
.w0_c00106{width:892.500000px;}
.x0_c00106{left:0.000000px;}
.x1_c00106{left:18.750000px;}
.x4_c00106{left:109.439925px;}
.x3_c00106{left:128.190000px;}
.x2_c00106{left:136.440000px;}
.x6_c00106{left:141.390000px;}
.x5_c00106{left:151.965150px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls8_c00106{letter-spacing:0.000000pt;}
.ls0_c00106{letter-spacing:0.012800pt;}
.ls3_c00106{letter-spacing:0.170496pt;}
.ls5_c00106{letter-spacing:0.213120pt;}
.ls2_c00106{letter-spacing:0.213653pt;}
.lsb_c00106{letter-spacing:0.322048pt;}
.ls6_c00106{letter-spacing:0.364672pt;}
.ls4_c00106{letter-spacing:0.383616pt;}
.ls9_c00106{letter-spacing:0.426240pt;}
.lsa_c00106{letter-spacing:0.558848pt;}
.ls7_c00106{letter-spacing:1.889920pt;}
.ls1_c00106{letter-spacing:15.074987pt;}
.ws0_c00106{word-spacing:-17.804800pt;}
.ws1_c00106{word-spacing:-17.792000pt;}
.ws3_c00106{word-spacing:-13.530752pt;}
.ws2_c00106{word-spacing:-13.379200pt;}
.ws4_c00106{word-spacing:0.000000pt;}
._f_c00106{margin-left:-1.029813pt;}
._2_c00106{width:1.452800pt;}
._6_c00106{width:2.490133pt;}
._9_c00106{width:3.538133pt;}
._e_c00106{width:4.588800pt;}
._3_c00106{width:5.708533pt;}
._8_c00106{width:6.886667pt;}
._1_c00106{width:9.446400pt;}
._d_c00106{width:11.232000pt;}
._5_c00106{width:13.843200pt;}
._b_c00106{width:15.123200pt;}
._7_c00106{width:16.620800pt;}
._4_c00106{width:19.507200pt;}
._a_c00106{width:20.499200pt;}
._c_c00106{width:26.636800pt;}
._0_c00106{width:1019.274133pt;}
.fs1_c00106{font-size:47.360000pt;}
.fs0_c00106{font-size:64.000000pt;}
.y0_c00106{bottom:0.000000pt;}
.y4_c00106{bottom:3.840000pt;}
.y1_c00106{bottom:16.666667pt;}
.y2_c00106{bottom:33.653360pt;}
.y3_c00106{bottom:46.480027pt;}
.y20_c00106{bottom:96.053360pt;}
.y1f_c00106{bottom:109.813360pt;}
.y1e_c00106{bottom:123.573333pt;}
.y1d_c00106{bottom:137.333333pt;}
.y1c_c00106{bottom:151.413333pt;}
.y1b_c00106{bottom:186.613333pt;}
.y1a_c00106{bottom:223.413333pt;}
.y19_c00106{bottom:260.213333pt;}
.y18_c00106{bottom:297.013333pt;}
.y17_c00106{bottom:333.813333pt;}
.y16_c00106{bottom:370.613333pt;}
.y15_c00106{bottom:407.413333pt;}
.y14_c00106{bottom:444.213333pt;}
.y13_c00106{bottom:481.013333pt;}
.y12_c00106{bottom:517.813333pt;}
.y11_c00106{bottom:554.613333pt;}
.y10_c00106{bottom:591.413333pt;}
.yf_c00106{bottom:628.213333pt;}
.ye_c00106{bottom:665.013333pt;}
.yd_c00106{bottom:701.813333pt;}
.yc_c00106{bottom:738.613333pt;}
.yb_c00106{bottom:775.413333pt;}
.ya_c00106{bottom:812.213333pt;}
.y9_c00106{bottom:849.013333pt;}
.y8_c00106{bottom:885.813333pt;}
.y7_c00106{bottom:922.613333pt;}
.y6_c00106{bottom:959.413333pt;}
.y5_c00106{bottom:996.213333pt;}
.h3_c00106{height:18.560000pt;}
.h4_c00106{height:42.457500pt;}
.h2_c00106{height:57.375000pt;}
.h1_c00106{height:1089.333333pt;}
.h0_c00106{height:1122.666667pt;}
.w2_c00106{width:17.920000pt;}
.w1_c00106{width:760.000000pt;}
.w0_c00106{width:793.333333pt;}
.x0_c00106{left:0.000000pt;}
.x1_c00106{left:16.666667pt;}
.x4_c00106{left:97.279933pt;}
.x3_c00106{left:113.946667pt;}
.x2_c00106{left:121.280000pt;}
.x6_c00106{left:125.680000pt;}
.x5_c00106{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc33926ee3d82ece2bd0d367.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00107;src:url('chunks/assets/font_b2caaae7a52753da7cc6744b.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00107{vertical-align:0.000000px;}
.ls4_c00107{letter-spacing:-0.014400px;}
.ls3_c00107{letter-spacing:0.000000px;}
.ls0_c00107{letter-spacing:0.014400px;}
.ls1_c00107{letter-spacing:0.036000px;}
.ls2_c00107{letter-spacing:20.163000px;}
.sc__c00107{text-shadow:none;}
.sc0_c00107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00107{-webkit-text-stroke:0px transparent;}
.sc0_c00107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00107{word-spacing:-20.030400px;}
.ws1_c00107{word-spacing:-20.016000px;}
.ws2_c00107{word-spacing:0.000000px;}
._d_c00107{margin-left:-1.022040px;}
._5_c00107{width:1.000800px;}
._e_c00107{width:2.332140px;}
._8_c00107{width:3.355200px;}
._3_c00107{width:4.816800px;}
._b_c00107{width:6.019200px;}
._11_c00107{width:8.820000px;}
._10_c00107{width:11.552700px;}
._9_c00107{width:12.902400px;}
._f_c00107{width:14.104800px;}
._c_c00107{width:17.064000px;}
._6_c00107{width:18.752100px;}
._4_c00107{width:22.017600px;}
._12_c00107{width:23.911200px;}
._7_c00107{width:25.048800px;}
._a_c00107{width:29.931300px;}
._1_c00107{width:1061.484000px;}
._2_c00107{width:1146.684000px;}
._0_c00107{width:2079.683700px;}
.fc1_c00107{color:transparent;}
.fc0_c00107{color:rgb(0,0,0);}
.fs1_c00107{font-size:53.280000px;}
.fs0_c00107{font-size:72.000000px;}
.y0_c00107{bottom:0.000000px;}
.y5_c00107{bottom:3.960000px;}
.y1_c00107{bottom:18.750000px;}
.y3_c00107{bottom:36.420030px;}
.y4_c00107{bottom:47.250030px;}
.y1e_c00107{bottom:109.140030px;}
.y1d_c00107{bottom:150.540000px;}
.y1c_c00107{bottom:191.940000px;}
.y1b_c00107{bottom:233.340000px;}
.y1a_c00107{bottom:274.740000px;}
.y19_c00107{bottom:316.140000px;}
.y18_c00107{bottom:357.540000px;}
.y17_c00107{bottom:398.940000px;}
.y16_c00107{bottom:440.340000px;}
.y15_c00107{bottom:481.740000px;}
.y14_c00107{bottom:523.140000px;}
.y13_c00107{bottom:564.540000px;}
.y12_c00107{bottom:605.940000px;}
.y11_c00107{bottom:665.340000px;}
.y10_c00107{bottom:706.740000px;}
.yf_c00107{bottom:748.140000px;}
.ye_c00107{bottom:789.540000px;}
.yd_c00107{bottom:830.940000px;}
.yc_c00107{bottom:872.340000px;}
.yb_c00107{bottom:913.740000px;}
.ya_c00107{bottom:955.140000px;}
.y9_c00107{bottom:996.540000px;}
.y8_c00107{bottom:1037.940000px;}
.y7_c00107{bottom:1079.340000px;}
.y6_c00107{bottom:1120.740000px;}
.y2_c00107{bottom:1173.660000px;}
.h3_c00107{height:20.520000px;}
.h2_c00107{height:64.546875px;}
.h4_c00107{height:65.003906px;}
.h1_c00107{height:1225.500000px;}
.h0_c00107{height:1263.000000px;}
.w2_c00107{width:20.160000px;}
.w1_c00107{width:855.000000px;}
.w0_c00107{width:892.500000px;}
.x0_c00107{left:0.000000px;}
.x1_c00107{left:18.750000px;}
.x2_c00107{left:109.439925px;}
.x5_c00107{left:151.965150px;}
.x3_c00107{left:157.739850px;}
.x4_c00107{left:745.590000px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls4_c00107{letter-spacing:-0.012800pt;}
.ls3_c00107{letter-spacing:0.000000pt;}
.ls0_c00107{letter-spacing:0.012800pt;}
.ls1_c00107{letter-spacing:0.032000pt;}
.ls2_c00107{letter-spacing:17.922667pt;}
.ws0_c00107{word-spacing:-17.804800pt;}
.ws1_c00107{word-spacing:-17.792000pt;}
.ws2_c00107{word-spacing:0.000000pt;}
._d_c00107{margin-left:-0.908480pt;}
._5_c00107{width:0.889600pt;}
._e_c00107{width:2.073013pt;}
._8_c00107{width:2.982400pt;}
._3_c00107{width:4.281600pt;}
._b_c00107{width:5.350400pt;}
._11_c00107{width:7.840000pt;}
._10_c00107{width:10.269067pt;}
._9_c00107{width:11.468800pt;}
._f_c00107{width:12.537600pt;}
._c_c00107{width:15.168000pt;}
._6_c00107{width:16.668533pt;}
._4_c00107{width:19.571200pt;}
._12_c00107{width:21.254400pt;}
._7_c00107{width:22.265600pt;}
._a_c00107{width:26.605600pt;}
._1_c00107{width:943.541333pt;}
._2_c00107{width:1019.274667pt;}
._0_c00107{width:1848.607733pt;}
.fs1_c00107{font-size:47.360000pt;}
.fs0_c00107{font-size:64.000000pt;}
.y0_c00107{bottom:0.000000pt;}
.y5_c00107{bottom:3.520000pt;}
.y1_c00107{bottom:16.666667pt;}
.y3_c00107{bottom:32.373360pt;}
.y4_c00107{bottom:42.000027pt;}
.y1e_c00107{bottom:97.013360pt;}
.y1d_c00107{bottom:133.813333pt;}
.y1c_c00107{bottom:170.613333pt;}
.y1b_c00107{bottom:207.413333pt;}
.y1a_c00107{bottom:244.213333pt;}
.y19_c00107{bottom:281.013333pt;}
.y18_c00107{bottom:317.813333pt;}
.y17_c00107{bottom:354.613333pt;}
.y16_c00107{bottom:391.413333pt;}
.y15_c00107{bottom:428.213333pt;}
.y14_c00107{bottom:465.013333pt;}
.y13_c00107{bottom:501.813333pt;}
.y12_c00107{bottom:538.613333pt;}
.y11_c00107{bottom:591.413333pt;}
.y10_c00107{bottom:628.213333pt;}
.yf_c00107{bottom:665.013333pt;}
.ye_c00107{bottom:701.813333pt;}
.yd_c00107{bottom:738.613333pt;}
.yc_c00107{bottom:775.413333pt;}
.yb_c00107{bottom:812.213333pt;}
.ya_c00107{bottom:849.013333pt;}
.y9_c00107{bottom:885.813333pt;}
.y8_c00107{bottom:922.613333pt;}
.y7_c00107{bottom:959.413333pt;}
.y6_c00107{bottom:996.213333pt;}
.y2_c00107{bottom:1043.253333pt;}
.h3_c00107{height:18.240000pt;}
.h2_c00107{height:57.375000pt;}
.h4_c00107{height:57.781250pt;}
.h1_c00107{height:1089.333333pt;}
.h0_c00107{height:1122.666667pt;}
.w2_c00107{width:17.920000pt;}
.w1_c00107{width:760.000000pt;}
.w0_c00107{width:793.333333pt;}
.x0_c00107{left:0.000000pt;}
.x1_c00107{left:16.666667pt;}
.x2_c00107{left:97.279933pt;}
.x5_c00107{left:135.080133pt;}
.x3_c00107{left:140.213200pt;}
.x4_c00107{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_8a5b44bf1c7aea88ee429e18.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00108;src:url('chunks/assets/font_9ae16584ee8a7853975648ad.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.111328;font-style: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;}
.ls3_c00108{letter-spacing:-0.014400px;}
.ls2_c00108{letter-spacing:0.000000px;}
.ls0_c00108{letter-spacing:0.014400px;}
.ls1_c00108{letter-spacing:0.036000px;}
.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:-20.052000px;}
.ws0_c00108{word-spacing:-20.030400px;}
.ws2_c00108{word-spacing:-20.016000px;}
.ws3_c00108{word-spacing:0.000000px;}
._5_c00108{width:1.886400px;}
._f_c00108{width:3.348000px;}
._10_c00108{width:4.392000px;}
._9_c00108{width:6.024900px;}
._6_c00108{width:7.048800px;}
._8_c00108{width:8.272800px;}
._e_c00108{width:9.424800px;}
._3_c00108{width:12.616500px;}
._2_c00108{width:13.701600px;}
._a_c00108{width:15.069600px;}
._c_c00108{width:16.884000px;}
._4_c00108{width:22.154400px;}
._1_c00108{width:25.531200px;}
._b_c00108{width:27.547200px;}
._d_c00108{width:29.133300px;}
._7_c00108{width:33.681600px;}
._0_c00108{width:1146.683400px;}
.fc1_c00108{color:transparent;}
.fc0_c00108{color:rgb(0,0,0);}
.fs0_c00108{font-size:72.000000px;}
.y0_c00108{bottom:0.000000px;}
.y4_c00108{bottom:4.320000px;}
.y1_c00108{bottom:18.750000px;}
.y2_c00108{bottom:37.860030px;}
.y3_c00108{bottom:52.290030px;}
.y1d_c00108{bottom:127.140030px;}
.y1c_c00108{bottom:168.540000px;}
.y1b_c00108{bottom:209.940000px;}
.y1a_c00108{bottom:251.340000px;}
.y19_c00108{bottom:292.740000px;}
.y18_c00108{bottom:334.140000px;}
.y17_c00108{bottom:375.540000px;}
.y16_c00108{bottom:416.940000px;}
.y15_c00108{bottom:458.340000px;}
.y14_c00108{bottom:499.740000px;}
.y13_c00108{bottom:541.140000px;}
.y12_c00108{bottom:582.540000px;}
.y11_c00108{bottom:623.940000px;}
.y10_c00108{bottom:665.340000px;}
.yf_c00108{bottom:706.740000px;}
.ye_c00108{bottom:748.140000px;}
.yd_c00108{bottom:789.540000px;}
.yc_c00108{bottom:830.940000px;}
.yb_c00108{bottom:872.340000px;}
.ya_c00108{bottom:913.740000px;}
.y9_c00108{bottom:955.140000px;}
.y8_c00108{bottom:996.540000px;}
.y7_c00108{bottom:1037.940000px;}
.y6_c00108{bottom:1079.340000px;}
.y5_c00108{bottom:1120.740000px;}
.h3_c00108{height:20.880000px;}
.h2_c00108{height:64.546875px;}
.h4_c00108{height:65.707031px;}
.h1_c00108{height:1225.500000px;}
.h0_c00108{height:1263.000000px;}
.w2_c00108{width:20.160000px;}
.w1_c00108{width:855.000000px;}
.w0_c00108{width:892.500000px;}
.x0_c00108{left:0.000000px;}
.x1_c00108{left:18.750000px;}
.x4_c00108{left:109.439925px;}
.x3_c00108{left:128.190000px;}
.x2_c00108{left:136.440000px;}
.x5_c00108{left:151.965150px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls3_c00108{letter-spacing:-0.012800pt;}
.ls2_c00108{letter-spacing:0.000000pt;}
.ls0_c00108{letter-spacing:0.012800pt;}
.ls1_c00108{letter-spacing:0.032000pt;}
.ws1_c00108{word-spacing:-17.824000pt;}
.ws0_c00108{word-spacing:-17.804800pt;}
.ws2_c00108{word-spacing:-17.792000pt;}
.ws3_c00108{word-spacing:0.000000pt;}
._5_c00108{width:1.676800pt;}
._f_c00108{width:2.976000pt;}
._10_c00108{width:3.904000pt;}
._9_c00108{width:5.355467pt;}
._6_c00108{width:6.265600pt;}
._8_c00108{width:7.353600pt;}
._e_c00108{width:8.377600pt;}
._3_c00108{width:11.214667pt;}
._2_c00108{width:12.179200pt;}
._a_c00108{width:13.395200pt;}
._c_c00108{width:15.008000pt;}
._4_c00108{width:19.692800pt;}
._1_c00108{width:22.694400pt;}
._b_c00108{width:24.486400pt;}
._d_c00108{width:25.896267pt;}
._7_c00108{width:29.939200pt;}
._0_c00108{width:1019.274133pt;}
.fs0_c00108{font-size:64.000000pt;}
.y0_c00108{bottom:0.000000pt;}
.y4_c00108{bottom:3.840000pt;}
.y1_c00108{bottom:16.666667pt;}
.y2_c00108{bottom:33.653360pt;}
.y3_c00108{bottom:46.480027pt;}
.y1d_c00108{bottom:113.013360pt;}
.y1c_c00108{bottom:149.813333pt;}
.y1b_c00108{bottom:186.613333pt;}
.y1a_c00108{bottom:223.413333pt;}
.y19_c00108{bottom:260.213333pt;}
.y18_c00108{bottom:297.013333pt;}
.y17_c00108{bottom:333.813333pt;}
.y16_c00108{bottom:370.613333pt;}
.y15_c00108{bottom:407.413333pt;}
.y14_c00108{bottom:444.213333pt;}
.y13_c00108{bottom:481.013333pt;}
.y12_c00108{bottom:517.813333pt;}
.y11_c00108{bottom:554.613333pt;}
.y10_c00108{bottom:591.413333pt;}
.yf_c00108{bottom:628.213333pt;}
.ye_c00108{bottom:665.013333pt;}
.yd_c00108{bottom:701.813333pt;}
.yc_c00108{bottom:738.613333pt;}
.yb_c00108{bottom:775.413333pt;}
.ya_c00108{bottom:812.213333pt;}
.y9_c00108{bottom:849.013333pt;}
.y8_c00108{bottom:885.813333pt;}
.y7_c00108{bottom:922.613333pt;}
.y6_c00108{bottom:959.413333pt;}
.y5_c00108{bottom:996.213333pt;}
.h3_c00108{height:18.560000pt;}
.h2_c00108{height:57.375000pt;}
.h4_c00108{height:58.406250pt;}
.h1_c00108{height:1089.333333pt;}
.h0_c00108{height:1122.666667pt;}
.w2_c00108{width:17.920000pt;}
.w1_c00108{width:760.000000pt;}
.w0_c00108{width:793.333333pt;}
.x0_c00108{left:0.000000pt;}
.x1_c00108{left:16.666667pt;}
.x4_c00108{left:97.279933pt;}
.x3_c00108{left:113.946667pt;}
.x2_c00108{left:121.280000pt;}
.x5_c00108{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccf87ccf57af85fd70d77eb4.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00109;src:url('chunks/assets/font_14c5dead8ebcd193a45d5a66.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.113281;font-style: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;}
.ls2_c00109{letter-spacing:-0.014400px;}
.ls1_c00109{letter-spacing:0.000000px;}
.ls0_c00109{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00109{word-spacing:-20.016000px;}
.ws2_c00109{word-spacing:0.000000px;}
._7_c00109{width:1.475100px;}
._5_c00109{width:2.865600px;}
._8_c00109{width:4.636800px;}
._9_c00109{width:5.751900px;}
._3_c00109{width:6.976800px;}
._6_c00109{width:8.100000px;}
._e_c00109{width:9.878400px;}
._a_c00109{width:11.541600px;}
._b_c00109{width:13.723200px;}
._c_c00109{width:14.904000px;}
._11_c00109{width:21.124800px;}
._d_c00109{width:24.134400px;}
._4_c00109{width:29.931300px;}
._12_c00109{width:31.751100px;}
._f_c00109{width:39.009600px;}
._10_c00109{width:50.989500px;}
._1_c00109{width:1061.484000px;}
._2_c00109{width:1146.684000px;}
._0_c00109{width:2079.683700px;}
.fc1_c00109{color:transparent;}
.fc0_c00109{color:rgb(0,0,0);}
.fs1_c00109{font-size:53.280000px;}
.fs0_c00109{font-size:72.000000px;}
.y0_c00109{bottom:0.000000px;}
.y5_c00109{bottom:3.960000px;}
.y1_c00109{bottom:18.750000px;}
.y3_c00109{bottom:36.420030px;}
.y4_c00109{bottom:47.250030px;}
.y1e_c00109{bottom:109.140030px;}
.y1d_c00109{bottom:150.540000px;}
.y1c_c00109{bottom:191.940000px;}
.y1b_c00109{bottom:233.340000px;}
.y1a_c00109{bottom:274.740000px;}
.y19_c00109{bottom:316.140000px;}
.y18_c00109{bottom:357.540000px;}
.y17_c00109{bottom:398.940000px;}
.y16_c00109{bottom:440.340000px;}
.y15_c00109{bottom:481.740000px;}
.y14_c00109{bottom:523.140000px;}
.y13_c00109{bottom:564.540000px;}
.y12_c00109{bottom:605.940000px;}
.y11_c00109{bottom:647.340000px;}
.y10_c00109{bottom:688.740000px;}
.yf_c00109{bottom:730.140000px;}
.ye_c00109{bottom:771.540000px;}
.yd_c00109{bottom:812.940000px;}
.yc_c00109{bottom:854.340000px;}
.yb_c00109{bottom:895.740000px;}
.ya_c00109{bottom:937.140000px;}
.y9_c00109{bottom:978.540000px;}
.y8_c00109{bottom:1019.940000px;}
.y7_c00109{bottom:1079.340000px;}
.y6_c00109{bottom:1120.740000px;}
.y2_c00109{bottom:1173.660000px;}
.h3_c00109{height:20.520000px;}
.h2_c00109{height:64.546875px;}
.h4_c00109{height:65.003906px;}
.h1_c00109{height:1225.500000px;}
.h0_c00109{height:1263.000000px;}
.w2_c00109{width:20.160000px;}
.w1_c00109{width:855.000000px;}
.w0_c00109{width:892.500000px;}
.x0_c00109{left:0.000000px;}
.x1_c00109{left:18.750000px;}
.x2_c00109{left:109.439925px;}
.x5_c00109{left:151.965150px;}
.x3_c00109{left:157.739850px;}
.x4_c00109{left:745.590000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls2_c00109{letter-spacing:-0.012800pt;}
.ls1_c00109{letter-spacing:0.000000pt;}
.ls0_c00109{letter-spacing:0.012800pt;}
.ws0_c00109{word-spacing:-17.804800pt;}
.ws1_c00109{word-spacing:-17.792000pt;}
.ws2_c00109{word-spacing:0.000000pt;}
._7_c00109{width:1.311200pt;}
._5_c00109{width:2.547200pt;}
._8_c00109{width:4.121600pt;}
._9_c00109{width:5.112800pt;}
._3_c00109{width:6.201600pt;}
._6_c00109{width:7.200000pt;}
._e_c00109{width:8.780800pt;}
._a_c00109{width:10.259200pt;}
._b_c00109{width:12.198400pt;}
._c_c00109{width:13.248000pt;}
._11_c00109{width:18.777600pt;}
._d_c00109{width:21.452800pt;}
._4_c00109{width:26.605600pt;}
._12_c00109{width:28.223200pt;}
._f_c00109{width:34.675200pt;}
._10_c00109{width:45.324000pt;}
._1_c00109{width:943.541333pt;}
._2_c00109{width:1019.274667pt;}
._0_c00109{width:1848.607733pt;}
.fs1_c00109{font-size:47.360000pt;}
.fs0_c00109{font-size:64.000000pt;}
.y0_c00109{bottom:0.000000pt;}
.y5_c00109{bottom:3.520000pt;}
.y1_c00109{bottom:16.666667pt;}
.y3_c00109{bottom:32.373360pt;}
.y4_c00109{bottom:42.000027pt;}
.y1e_c00109{bottom:97.013360pt;}
.y1d_c00109{bottom:133.813333pt;}
.y1c_c00109{bottom:170.613333pt;}
.y1b_c00109{bottom:207.413333pt;}
.y1a_c00109{bottom:244.213333pt;}
.y19_c00109{bottom:281.013333pt;}
.y18_c00109{bottom:317.813333pt;}
.y17_c00109{bottom:354.613333pt;}
.y16_c00109{bottom:391.413333pt;}
.y15_c00109{bottom:428.213333pt;}
.y14_c00109{bottom:465.013333pt;}
.y13_c00109{bottom:501.813333pt;}
.y12_c00109{bottom:538.613333pt;}
.y11_c00109{bottom:575.413333pt;}
.y10_c00109{bottom:612.213333pt;}
.yf_c00109{bottom:649.013333pt;}
.ye_c00109{bottom:685.813333pt;}
.yd_c00109{bottom:722.613333pt;}
.yc_c00109{bottom:759.413333pt;}
.yb_c00109{bottom:796.213333pt;}
.ya_c00109{bottom:833.013333pt;}
.y9_c00109{bottom:869.813333pt;}
.y8_c00109{bottom:906.613333pt;}
.y7_c00109{bottom:959.413333pt;}
.y6_c00109{bottom:996.213333pt;}
.y2_c00109{bottom:1043.253333pt;}
.h3_c00109{height:18.240000pt;}
.h2_c00109{height:57.375000pt;}
.h4_c00109{height:57.781250pt;}
.h1_c00109{height:1089.333333pt;}
.h0_c00109{height:1122.666667pt;}
.w2_c00109{width:17.920000pt;}
.w1_c00109{width:760.000000pt;}
.w0_c00109{width:793.333333pt;}
.x0_c00109{left:0.000000pt;}
.x1_c00109{left:16.666667pt;}
.x2_c00109{left:97.279933pt;}
.x5_c00109{left:135.080133pt;}
.x3_c00109{left:140.213200pt;}
.x4_c00109{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_422d789613b2dad5b7fd6cf9.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00110{vertical-align:0.000000px;}
.ls1_c00110{letter-spacing:0.000000px;}
.ls0_c00110{letter-spacing:0.014400px;}
.ls2_c00110{letter-spacing:0.036000px;}
.sc__c00110{text-shadow:none;}
.sc0_c00110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00110{-webkit-text-stroke:0px transparent;}
.sc0_c00110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00110{word-spacing:-20.030400px;}
.ws1_c00110{word-spacing:0.000000px;}
._9_c00110{width:1.000800px;}
._5_c00110{width:2.448000px;}
._e_c00110{width:3.542400px;}
._f_c00110{width:4.593600px;}
._10_c00110{width:8.612100px;}
._d_c00110{width:9.885600px;}
._3_c00110{width:11.059200px;}
._8_c00110{width:12.091200px;}
._6_c00110{width:13.572000px;}
._b_c00110{width:18.302400px;}
._1_c00110{width:21.247200px;}
._c_c00110{width:23.342400px;}
._2_c00110{width:26.892000px;}
._7_c00110{width:28.785600px;}
._4_c00110{width:30.096000px;}
._a_c00110{width:41.860800px;}
._0_c00110{width:1146.683400px;}
.fc1_c00110{color:transparent;}
.fc0_c00110{color:rgb(0,0,0);}
.fs0_c00110{font-size:72.000000px;}
.y0_c00110{bottom:0.000000px;}
.y4_c00110{bottom:4.320000px;}
.y1_c00110{bottom:18.750000px;}
.y2_c00110{bottom:37.860030px;}
.y3_c00110{bottom:52.290030px;}
.y1c_c00110{bottom:168.540000px;}
.y1b_c00110{bottom:209.940000px;}
.y1a_c00110{bottom:251.340000px;}
.y19_c00110{bottom:292.740000px;}
.y18_c00110{bottom:334.140000px;}
.y17_c00110{bottom:375.540000px;}
.y16_c00110{bottom:416.940000px;}
.y15_c00110{bottom:458.340000px;}
.y14_c00110{bottom:499.740000px;}
.y13_c00110{bottom:541.140000px;}
.y12_c00110{bottom:582.540000px;}
.y11_c00110{bottom:623.940000px;}
.y10_c00110{bottom:665.340000px;}
.yf_c00110{bottom:706.740000px;}
.ye_c00110{bottom:748.140000px;}
.yd_c00110{bottom:789.540000px;}
.yc_c00110{bottom:830.940000px;}
.yb_c00110{bottom:872.340000px;}
.ya_c00110{bottom:913.740000px;}
.y9_c00110{bottom:955.140000px;}
.y8_c00110{bottom:996.540000px;}
.y7_c00110{bottom:1037.940000px;}
.y6_c00110{bottom:1079.340000px;}
.y5_c00110{bottom:1120.740000px;}
.h3_c00110{height:20.880000px;}
.h2_c00110{height:64.546875px;}
.h1_c00110{height:1225.500000px;}
.h0_c00110{height:1263.000000px;}
.w2_c00110{width:20.160000px;}
.w1_c00110{width:855.000000px;}
.w0_c00110{width:892.500000px;}
.x0_c00110{left:0.000000px;}
.x1_c00110{left:18.750000px;}
.x4_c00110{left:109.439925px;}
.x3_c00110{left:128.190000px;}
.x2_c00110{left:136.440000px;}
.x5_c00110{left:151.965150px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls1_c00110{letter-spacing:0.000000pt;}
.ls0_c00110{letter-spacing:0.012800pt;}
.ls2_c00110{letter-spacing:0.032000pt;}
.ws0_c00110{word-spacing:-17.804800pt;}
.ws1_c00110{word-spacing:0.000000pt;}
._9_c00110{width:0.889600pt;}
._5_c00110{width:2.176000pt;}
._e_c00110{width:3.148800pt;}
._f_c00110{width:4.083200pt;}
._10_c00110{width:7.655200pt;}
._d_c00110{width:8.787200pt;}
._3_c00110{width:9.830400pt;}
._8_c00110{width:10.747733pt;}
._6_c00110{width:12.064000pt;}
._b_c00110{width:16.268800pt;}
._1_c00110{width:18.886400pt;}
._c_c00110{width:20.748800pt;}
._2_c00110{width:23.904000pt;}
._7_c00110{width:25.587200pt;}
._4_c00110{width:26.752000pt;}
._a_c00110{width:37.209600pt;}
._0_c00110{width:1019.274133pt;}
.fs0_c00110{font-size:64.000000pt;}
.y0_c00110{bottom:0.000000pt;}
.y4_c00110{bottom:3.840000pt;}
.y1_c00110{bottom:16.666667pt;}
.y2_c00110{bottom:33.653360pt;}
.y3_c00110{bottom:46.480027pt;}
.y1c_c00110{bottom:149.813333pt;}
.y1b_c00110{bottom:186.613333pt;}
.y1a_c00110{bottom:223.413333pt;}
.y19_c00110{bottom:260.213333pt;}
.y18_c00110{bottom:297.013333pt;}
.y17_c00110{bottom:333.813333pt;}
.y16_c00110{bottom:370.613333pt;}
.y15_c00110{bottom:407.413333pt;}
.y14_c00110{bottom:444.213333pt;}
.y13_c00110{bottom:481.013333pt;}
.y12_c00110{bottom:517.813333pt;}
.y11_c00110{bottom:554.613333pt;}
.y10_c00110{bottom:591.413333pt;}
.yf_c00110{bottom:628.213333pt;}
.ye_c00110{bottom:665.013333pt;}
.yd_c00110{bottom:701.813333pt;}
.yc_c00110{bottom:738.613333pt;}
.yb_c00110{bottom:775.413333pt;}
.ya_c00110{bottom:812.213333pt;}
.y9_c00110{bottom:849.013333pt;}
.y8_c00110{bottom:885.813333pt;}
.y7_c00110{bottom:922.613333pt;}
.y6_c00110{bottom:959.413333pt;}
.y5_c00110{bottom:996.213333pt;}
.h3_c00110{height:18.560000pt;}
.h2_c00110{height:57.375000pt;}
.h1_c00110{height:1089.333333pt;}
.h0_c00110{height:1122.666667pt;}
.w2_c00110{width:17.920000pt;}
.w1_c00110{width:760.000000pt;}
.w0_c00110{width:793.333333pt;}
.x0_c00110{left:0.000000pt;}
.x1_c00110{left:16.666667pt;}
.x4_c00110{left:97.279933pt;}
.x3_c00110{left:113.946667pt;}
.x2_c00110{left:121.280000pt;}
.x5_c00110{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f97b253fd9dc2c7bd2cecea.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.ls1_c00111{letter-spacing:0.000000px;}
.ls0_c00111{letter-spacing:0.014400px;}
.sc__c00111{text-shadow:none;}
.sc0_c00111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00111{-webkit-text-stroke:0px transparent;}
.sc0_c00111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00111{word-spacing:-20.030400px;}
.ws1_c00111{word-spacing:0.000000px;}
._b_c00111{margin-left:-1.012500px;}
._4_c00111{width:1.303200px;}
._3_c00111{width:2.584800px;}
._a_c00111{width:3.628800px;}
._11_c00111{width:4.723200px;}
._d_c00111{width:6.760800px;}
._7_c00111{width:8.064000px;}
._f_c00111{width:9.239700px;}
._10_c00111{width:10.603500px;}
._6_c00111{width:18.305100px;}
._8_c00111{width:21.603300px;}
._c_c00111{width:22.713900px;}
._e_c00111{width:26.193600px;}
._9_c00111{width:27.208800px;}
._5_c00111{width:41.292000px;}
._1_c00111{width:1061.484000px;}
._2_c00111{width:1146.684000px;}
._0_c00111{width:2079.683700px;}
.fc1_c00111{color:transparent;}
.fc0_c00111{color:rgb(0,0,0);}
.fs1_c00111{font-size:53.280000px;}
.fs0_c00111{font-size:72.000000px;}
.y0_c00111{bottom:0.000000px;}
.y5_c00111{bottom:3.960000px;}
.y1_c00111{bottom:18.750000px;}
.y3_c00111{bottom:36.420030px;}
.y4_c00111{bottom:47.250030px;}
.y1e_c00111{bottom:127.140030px;}
.y1d_c00111{bottom:168.540000px;}
.y1c_c00111{bottom:209.940000px;}
.y1b_c00111{bottom:251.340000px;}
.y1a_c00111{bottom:292.740000px;}
.y19_c00111{bottom:334.140000px;}
.y18_c00111{bottom:375.540000px;}
.y17_c00111{bottom:416.940000px;}
.y16_c00111{bottom:458.340000px;}
.y15_c00111{bottom:499.740000px;}
.y14_c00111{bottom:541.140000px;}
.y13_c00111{bottom:582.540000px;}
.y12_c00111{bottom:623.940000px;}
.y11_c00111{bottom:665.340000px;}
.y10_c00111{bottom:706.740000px;}
.yf_c00111{bottom:748.140000px;}
.ye_c00111{bottom:789.540000px;}
.yd_c00111{bottom:830.940000px;}
.yc_c00111{bottom:872.340000px;}
.yb_c00111{bottom:913.740000px;}
.ya_c00111{bottom:955.140000px;}
.y9_c00111{bottom:996.540000px;}
.y8_c00111{bottom:1037.940000px;}
.y7_c00111{bottom:1079.340000px;}
.y6_c00111{bottom:1120.740000px;}
.y2_c00111{bottom:1173.660000px;}
.h3_c00111{height:20.520000px;}
.h2_c00111{height:64.546875px;}
.h1_c00111{height:1225.500000px;}
.h0_c00111{height:1263.000000px;}
.w2_c00111{width:20.160000px;}
.w1_c00111{width:855.000000px;}
.w0_c00111{width:892.500000px;}
.x0_c00111{left:0.000000px;}
.x1_c00111{left:18.750000px;}
.x2_c00111{left:109.439925px;}
.x5_c00111{left:151.965150px;}
.x3_c00111{left:157.739850px;}
.x4_c00111{left:745.590000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls1_c00111{letter-spacing:0.000000pt;}
.ls0_c00111{letter-spacing:0.012800pt;}
.ws0_c00111{word-spacing:-17.804800pt;}
.ws1_c00111{word-spacing:0.000000pt;}
._b_c00111{margin-left:-0.900000pt;}
._4_c00111{width:1.158400pt;}
._3_c00111{width:2.297600pt;}
._a_c00111{width:3.225600pt;}
._11_c00111{width:4.198400pt;}
._d_c00111{width:6.009600pt;}
._7_c00111{width:7.168000pt;}
._f_c00111{width:8.213067pt;}
._10_c00111{width:9.425333pt;}
._6_c00111{width:16.271200pt;}
._8_c00111{width:19.202933pt;}
._c_c00111{width:20.190133pt;}
._e_c00111{width:23.283200pt;}
._9_c00111{width:24.185600pt;}
._5_c00111{width:36.704000pt;}
._1_c00111{width:943.541333pt;}
._2_c00111{width:1019.274667pt;}
._0_c00111{width:1848.607733pt;}
.fs1_c00111{font-size:47.360000pt;}
.fs0_c00111{font-size:64.000000pt;}
.y0_c00111{bottom:0.000000pt;}
.y5_c00111{bottom:3.520000pt;}
.y1_c00111{bottom:16.666667pt;}
.y3_c00111{bottom:32.373360pt;}
.y4_c00111{bottom:42.000027pt;}
.y1e_c00111{bottom:113.013360pt;}
.y1d_c00111{bottom:149.813333pt;}
.y1c_c00111{bottom:186.613333pt;}
.y1b_c00111{bottom:223.413333pt;}
.y1a_c00111{bottom:260.213333pt;}
.y19_c00111{bottom:297.013333pt;}
.y18_c00111{bottom:333.813333pt;}
.y17_c00111{bottom:370.613333pt;}
.y16_c00111{bottom:407.413333pt;}
.y15_c00111{bottom:444.213333pt;}
.y14_c00111{bottom:481.013333pt;}
.y13_c00111{bottom:517.813333pt;}
.y12_c00111{bottom:554.613333pt;}
.y11_c00111{bottom:591.413333pt;}
.y10_c00111{bottom:628.213333pt;}
.yf_c00111{bottom:665.013333pt;}
.ye_c00111{bottom:701.813333pt;}
.yd_c00111{bottom:738.613333pt;}
.yc_c00111{bottom:775.413333pt;}
.yb_c00111{bottom:812.213333pt;}
.ya_c00111{bottom:849.013333pt;}
.y9_c00111{bottom:885.813333pt;}
.y8_c00111{bottom:922.613333pt;}
.y7_c00111{bottom:959.413333pt;}
.y6_c00111{bottom:996.213333pt;}
.y2_c00111{bottom:1043.253333pt;}
.h3_c00111{height:18.240000pt;}
.h2_c00111{height:57.375000pt;}
.h1_c00111{height:1089.333333pt;}
.h0_c00111{height:1122.666667pt;}
.w2_c00111{width:17.920000pt;}
.w1_c00111{width:760.000000pt;}
.w0_c00111{width:793.333333pt;}
.x0_c00111{left:0.000000pt;}
.x1_c00111{left:16.666667pt;}
.x2_c00111{left:97.279933pt;}
.x5_c00111{left:135.080133pt;}
.x3_c00111{left:140.213200pt;}
.x4_c00111{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c490c03e7bce239b477e51cd.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00112;src:url('chunks/assets/font_cd4f10ce35108d282b3f7c55.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00112{vertical-align:0.000000px;}
.ls4_c00112{letter-spacing:-0.014400px;}
.ls3_c00112{letter-spacing:0.000000px;}
.ls2_c00112{letter-spacing:0.000600px;}
.ls0_c00112{letter-spacing:0.014400px;}
.ls1_c00112{letter-spacing:8.788200px;}
.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:-20.030400px;}
.ws1_c00112{word-spacing:-20.016000px;}
.ws2_c00112{word-spacing:0.000000px;}
._7_c00112{width:1.013100px;}
._4_c00112{width:2.556000px;}
._c_c00112{width:4.370400px;}
._5_c00112{width:6.184800px;}
._6_c00112{width:7.684500px;}
._1_c00112{width:8.810100px;}
._9_c00112{width:9.918000px;}
._e_c00112{width:12.124800px;}
._b_c00112{width:13.910400px;}
._8_c00112{width:19.000800px;}
._a_c00112{width:21.116100px;}
._d_c00112{width:22.495800px;}
._f_c00112{width:23.788200px;}
._3_c00112{width:27.093600px;}
._2_c00112{width:33.148800px;}
._0_c00112{width:1146.683400px;}
.fc1_c00112{color:transparent;}
.fc0_c00112{color:rgb(0,0,0);}
.fs0_c00112{font-size:72.000000px;}
.fs1_c00112{font-size:83.520000px;}
.y0_c00112{bottom:0.000000px;}
.y4_c00112{bottom:4.320000px;}
.y1_c00112{bottom:18.750000px;}
.y2_c00112{bottom:37.860030px;}
.y3_c00112{bottom:52.290030px;}
.y1d_c00112{bottom:127.140030px;}
.y1c_c00112{bottom:168.540000px;}
.y1b_c00112{bottom:209.940000px;}
.y1a_c00112{bottom:251.340000px;}
.y19_c00112{bottom:292.740000px;}
.y18_c00112{bottom:334.140000px;}
.y17_c00112{bottom:375.540000px;}
.y16_c00112{bottom:416.940000px;}
.y15_c00112{bottom:458.340000px;}
.y14_c00112{bottom:499.740000px;}
.y13_c00112{bottom:541.140000px;}
.y12_c00112{bottom:582.540000px;}
.y11_c00112{bottom:623.940000px;}
.y10_c00112{bottom:665.340000px;}
.yf_c00112{bottom:706.740000px;}
.ye_c00112{bottom:748.140000px;}
.yd_c00112{bottom:789.540000px;}
.yc_c00112{bottom:830.940000px;}
.yb_c00112{bottom:872.340000px;}
.ya_c00112{bottom:913.740000px;}
.y9_c00112{bottom:955.140000px;}
.y8_c00112{bottom:996.540000px;}
.y7_c00112{bottom:1037.940000px;}
.y6_c00112{bottom:1079.340000px;}
.y5_c00112{bottom:1120.740000px;}
.h3_c00112{height:20.880000px;}
.h2_c00112{height:64.546875px;}
.h4_c00112{height:74.670469px;}
.h1_c00112{height:1225.500000px;}
.h0_c00112{height:1263.000000px;}
.w2_c00112{width:20.160000px;}
.w1_c00112{width:855.000000px;}
.w0_c00112{width:892.500000px;}
.x0_c00112{left:0.000000px;}
.x1_c00112{left:18.750000px;}
.x4_c00112{left:109.439925px;}
.x3_c00112{left:128.190000px;}
.x2_c00112{left:136.440000px;}
.x5_c00112{left:151.965150px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls4_c00112{letter-spacing:-0.012800pt;}
.ls3_c00112{letter-spacing:0.000000pt;}
.ls2_c00112{letter-spacing:0.000533pt;}
.ls0_c00112{letter-spacing:0.012800pt;}
.ls1_c00112{letter-spacing:7.811733pt;}
.ws0_c00112{word-spacing:-17.804800pt;}
.ws1_c00112{word-spacing:-17.792000pt;}
.ws2_c00112{word-spacing:0.000000pt;}
._7_c00112{width:0.900533pt;}
._4_c00112{width:2.272000pt;}
._c_c00112{width:3.884800pt;}
._5_c00112{width:5.497600pt;}
._6_c00112{width:6.830667pt;}
._1_c00112{width:7.831200pt;}
._9_c00112{width:8.816000pt;}
._e_c00112{width:10.777600pt;}
._b_c00112{width:12.364800pt;}
._8_c00112{width:16.889600pt;}
._a_c00112{width:18.769867pt;}
._d_c00112{width:19.996267pt;}
._f_c00112{width:21.145067pt;}
._3_c00112{width:24.083200pt;}
._2_c00112{width:29.465600pt;}
._0_c00112{width:1019.274133pt;}
.fs0_c00112{font-size:64.000000pt;}
.fs1_c00112{font-size:74.240000pt;}
.y0_c00112{bottom:0.000000pt;}
.y4_c00112{bottom:3.840000pt;}
.y1_c00112{bottom:16.666667pt;}
.y2_c00112{bottom:33.653360pt;}
.y3_c00112{bottom:46.480027pt;}
.y1d_c00112{bottom:113.013360pt;}
.y1c_c00112{bottom:149.813333pt;}
.y1b_c00112{bottom:186.613333pt;}
.y1a_c00112{bottom:223.413333pt;}
.y19_c00112{bottom:260.213333pt;}
.y18_c00112{bottom:297.013333pt;}
.y17_c00112{bottom:333.813333pt;}
.y16_c00112{bottom:370.613333pt;}
.y15_c00112{bottom:407.413333pt;}
.y14_c00112{bottom:444.213333pt;}
.y13_c00112{bottom:481.013333pt;}
.y12_c00112{bottom:517.813333pt;}
.y11_c00112{bottom:554.613333pt;}
.y10_c00112{bottom:591.413333pt;}
.yf_c00112{bottom:628.213333pt;}
.ye_c00112{bottom:665.013333pt;}
.yd_c00112{bottom:701.813333pt;}
.yc_c00112{bottom:738.613333pt;}
.yb_c00112{bottom:775.413333pt;}
.ya_c00112{bottom:812.213333pt;}
.y9_c00112{bottom:849.013333pt;}
.y8_c00112{bottom:885.813333pt;}
.y7_c00112{bottom:922.613333pt;}
.y6_c00112{bottom:959.413333pt;}
.y5_c00112{bottom:996.213333pt;}
.h3_c00112{height:18.560000pt;}
.h2_c00112{height:57.375000pt;}
.h4_c00112{height:66.373750pt;}
.h1_c00112{height:1089.333333pt;}
.h0_c00112{height:1122.666667pt;}
.w2_c00112{width:17.920000pt;}
.w1_c00112{width:760.000000pt;}
.w0_c00112{width:793.333333pt;}
.x0_c00112{left:0.000000pt;}
.x1_c00112{left:16.666667pt;}
.x4_c00112{left:97.279933pt;}
.x3_c00112{left:113.946667pt;}
.x2_c00112{left:121.280000pt;}
.x5_c00112{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_be1be67b0169b511e43ee257.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00113;src:url('chunks/assets/font_52388869d714d64629c52ddd.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:1.104492;font-style: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;}
.ls2_c00113{letter-spacing:-0.014400px;}
.ls1_c00113{letter-spacing:0.000000px;}
.ls0_c00113{letter-spacing:0.014400px;}
.sc__c00113{text-shadow:none;}
.sc0_c00113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00113{-webkit-text-stroke:0px transparent;}
.sc0_c00113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00113{word-spacing:-20.030400px;}
.ws1_c00113{word-spacing:0.000000px;}
._10_c00113{width:1.159200px;}
._6_c00113{width:3.146400px;}
._14_c00113{width:4.543200px;}
._9_c00113{width:5.745600px;}
._7_c00113{width:7.508700px;}
._5_c00113{width:8.618400px;}
._e_c00113{width:10.101600px;}
._13_c00113{width:11.187900px;}
._b_c00113{width:12.333600px;}
._a_c00113{width:14.155200px;}
._11_c00113{width:15.170400px;}
._8_c00113{width:18.374400px;}
._12_c00113{width:21.657600px;}
._f_c00113{width:23.383200px;}
._4_c00113{width:24.598500px;}
._3_c00113{width:25.668000px;}
._d_c00113{width:27.345600px;}
._c_c00113{width:40.744800px;}
._1_c00113{width:1061.484000px;}
._2_c00113{width:1146.684000px;}
._0_c00113{width:2079.683700px;}
.fc1_c00113{color:transparent;}
.fc0_c00113{color:rgb(0,0,0);}
.fs1_c00113{font-size:53.280000px;}
.fs0_c00113{font-size:72.000000px;}
.y0_c00113{bottom:0.000000px;}
.y5_c00113{bottom:3.960000px;}
.y1_c00113{bottom:18.750000px;}
.y3_c00113{bottom:36.420030px;}
.y4_c00113{bottom:47.250030px;}
.y1e_c00113{bottom:127.140030px;}
.y1d_c00113{bottom:168.540000px;}
.y1c_c00113{bottom:209.940000px;}
.y1b_c00113{bottom:251.340000px;}
.y1a_c00113{bottom:292.740000px;}
.y19_c00113{bottom:334.140000px;}
.y18_c00113{bottom:375.540000px;}
.y17_c00113{bottom:416.940000px;}
.y16_c00113{bottom:458.340000px;}
.y15_c00113{bottom:499.740000px;}
.y14_c00113{bottom:541.140000px;}
.y13_c00113{bottom:582.540000px;}
.y12_c00113{bottom:623.940000px;}
.y11_c00113{bottom:665.340000px;}
.y10_c00113{bottom:706.740000px;}
.yf_c00113{bottom:748.140000px;}
.ye_c00113{bottom:789.540000px;}
.yd_c00113{bottom:830.940000px;}
.yc_c00113{bottom:872.340000px;}
.yb_c00113{bottom:913.740000px;}
.ya_c00113{bottom:955.140000px;}
.y9_c00113{bottom:996.540000px;}
.y8_c00113{bottom:1037.940000px;}
.y7_c00113{bottom:1079.340000px;}
.y6_c00113{bottom:1120.740000px;}
.y2_c00113{bottom:1173.660000px;}
.h3_c00113{height:20.520000px;}
.h2_c00113{height:64.546875px;}
.h1_c00113{height:1225.500000px;}
.h0_c00113{height:1263.000000px;}
.w2_c00113{width:20.160000px;}
.w1_c00113{width:855.000000px;}
.w0_c00113{width:892.500000px;}
.x0_c00113{left:0.000000px;}
.x1_c00113{left:18.750000px;}
.x2_c00113{left:109.439925px;}
.x5_c00113{left:151.965150px;}
.x3_c00113{left:157.739850px;}
.x4_c00113{left:745.590000px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls2_c00113{letter-spacing:-0.012800pt;}
.ls1_c00113{letter-spacing:0.000000pt;}
.ls0_c00113{letter-spacing:0.012800pt;}
.ws0_c00113{word-spacing:-17.804800pt;}
.ws1_c00113{word-spacing:0.000000pt;}
._10_c00113{width:1.030400pt;}
._6_c00113{width:2.796800pt;}
._14_c00113{width:4.038400pt;}
._9_c00113{width:5.107200pt;}
._7_c00113{width:6.674400pt;}
._5_c00113{width:7.660800pt;}
._e_c00113{width:8.979200pt;}
._13_c00113{width:9.944800pt;}
._b_c00113{width:10.963200pt;}
._a_c00113{width:12.582400pt;}
._11_c00113{width:13.484800pt;}
._8_c00113{width:16.332800pt;}
._12_c00113{width:19.251200pt;}
._f_c00113{width:20.785067pt;}
._4_c00113{width:21.865333pt;}
._3_c00113{width:22.816000pt;}
._d_c00113{width:24.307200pt;}
._c_c00113{width:36.217600pt;}
._1_c00113{width:943.541333pt;}
._2_c00113{width:1019.274667pt;}
._0_c00113{width:1848.607733pt;}
.fs1_c00113{font-size:47.360000pt;}
.fs0_c00113{font-size:64.000000pt;}
.y0_c00113{bottom:0.000000pt;}
.y5_c00113{bottom:3.520000pt;}
.y1_c00113{bottom:16.666667pt;}
.y3_c00113{bottom:32.373360pt;}
.y4_c00113{bottom:42.000027pt;}
.y1e_c00113{bottom:113.013360pt;}
.y1d_c00113{bottom:149.813333pt;}
.y1c_c00113{bottom:186.613333pt;}
.y1b_c00113{bottom:223.413333pt;}
.y1a_c00113{bottom:260.213333pt;}
.y19_c00113{bottom:297.013333pt;}
.y18_c00113{bottom:333.813333pt;}
.y17_c00113{bottom:370.613333pt;}
.y16_c00113{bottom:407.413333pt;}
.y15_c00113{bottom:444.213333pt;}
.y14_c00113{bottom:481.013333pt;}
.y13_c00113{bottom:517.813333pt;}
.y12_c00113{bottom:554.613333pt;}
.y11_c00113{bottom:591.413333pt;}
.y10_c00113{bottom:628.213333pt;}
.yf_c00113{bottom:665.013333pt;}
.ye_c00113{bottom:701.813333pt;}
.yd_c00113{bottom:738.613333pt;}
.yc_c00113{bottom:775.413333pt;}
.yb_c00113{bottom:812.213333pt;}
.ya_c00113{bottom:849.013333pt;}
.y9_c00113{bottom:885.813333pt;}
.y8_c00113{bottom:922.613333pt;}
.y7_c00113{bottom:959.413333pt;}
.y6_c00113{bottom:996.213333pt;}
.y2_c00113{bottom:1043.253333pt;}
.h3_c00113{height:18.240000pt;}
.h2_c00113{height:57.375000pt;}
.h1_c00113{height:1089.333333pt;}
.h0_c00113{height:1122.666667pt;}
.w2_c00113{width:17.920000pt;}
.w1_c00113{width:760.000000pt;}
.w0_c00113{width:793.333333pt;}
.x0_c00113{left:0.000000pt;}
.x1_c00113{left:16.666667pt;}
.x2_c00113{left:97.279933pt;}
.x5_c00113{left:135.080133pt;}
.x3_c00113{left:140.213200pt;}
.x4_c00113{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5f663cfcffb26c31e0337a52.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.ls4_c00114{letter-spacing:-0.014400px;}
.ls3_c00114{letter-spacing:0.000000px;}
.ls0_c00114{letter-spacing:0.014400px;}
.ls1_c00114{letter-spacing:0.036000px;}
.ls5_c00114{letter-spacing:0.239760px;}
.ls7_c00114{letter-spacing:0.410256px;}
.ls6_c00114{letter-spacing:0.527472px;}
.ls2_c00114{letter-spacing:16.959360px;}
.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;}
}
.ws1_c00114{word-spacing:-20.052000px;}
.ws0_c00114{word-spacing:-20.030400px;}
.ws2_c00114{word-spacing:-15.051600px;}
.ws3_c00114{word-spacing:0.000000px;}
._13_c00114{margin-left:-1.077300px;}
._7_c00114{width:1.217700px;}
._8_c00114{width:2.270700px;}
._2_c00114{width:3.384000px;}
._9_c00114{width:5.169600px;}
._10_c00114{width:6.645600px;}
._c_c00114{width:11.291700px;}
._5_c00114{width:12.556800px;}
._3_c00114{width:14.025600px;}
._12_c00114{width:16.250400px;}
._11_c00114{width:17.341500px;}
._6_c00114{width:18.777600px;}
._4_c00114{width:21.320700px;}
._e_c00114{width:24.580800px;}
._b_c00114{width:28.173600px;}
._a_c00114{width:31.147200px;}
._d_c00114{width:33.422400px;}
._1_c00114{width:37.749600px;}
._f_c00114{width:41.841600px;}
._0_c00114{width:1146.683400px;}
.fc1_c00114{color:transparent;}
.fc0_c00114{color:rgb(0,0,0);}
.fs1_c00114{font-size:53.280000px;}
.fs0_c00114{font-size:72.000000px;}
.y0_c00114{bottom:0.000000px;}
.y4_c00114{bottom:4.320000px;}
.y1_c00114{bottom:18.750000px;}
.y2_c00114{bottom:37.860030px;}
.y3_c00114{bottom:52.290030px;}
.y1e_c00114{bottom:113.100030px;}
.y1d_c00114{bottom:128.940015px;}
.y1c_c00114{bottom:168.540000px;}
.y1b_c00114{bottom:209.940000px;}
.y1a_c00114{bottom:251.340000px;}
.y19_c00114{bottom:292.740000px;}
.y18_c00114{bottom:334.140000px;}
.y17_c00114{bottom:375.540000px;}
.y16_c00114{bottom:416.940000px;}
.y15_c00114{bottom:458.340000px;}
.y14_c00114{bottom:499.740000px;}
.y13_c00114{bottom:541.140000px;}
.y12_c00114{bottom:582.540000px;}
.y11_c00114{bottom:623.940000px;}
.y10_c00114{bottom:665.340000px;}
.yf_c00114{bottom:706.740000px;}
.ye_c00114{bottom:748.140000px;}
.yd_c00114{bottom:789.540000px;}
.yc_c00114{bottom:830.940000px;}
.yb_c00114{bottom:872.340000px;}
.ya_c00114{bottom:913.740000px;}
.y9_c00114{bottom:955.140000px;}
.y8_c00114{bottom:996.540000px;}
.y7_c00114{bottom:1037.940000px;}
.y6_c00114{bottom:1079.340000px;}
.y5_c00114{bottom:1120.740000px;}
.h3_c00114{height:20.880000px;}
.h4_c00114{height:47.764688px;}
.h2_c00114{height:64.546875px;}
.h1_c00114{height:1225.500000px;}
.h0_c00114{height:1263.000000px;}
.w2_c00114{width:20.160000px;}
.w1_c00114{width:855.000000px;}
.w0_c00114{width:892.500000px;}
.x0_c00114{left:0.000000px;}
.x1_c00114{left:18.750000px;}
.x4_c00114{left:109.439925px;}
.x3_c00114{left:128.190000px;}
.x2_c00114{left:136.440000px;}
.x6_c00114{left:141.390000px;}
.x5_c00114{left:151.965150px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls4_c00114{letter-spacing:-0.012800pt;}
.ls3_c00114{letter-spacing:0.000000pt;}
.ls0_c00114{letter-spacing:0.012800pt;}
.ls1_c00114{letter-spacing:0.032000pt;}
.ls5_c00114{letter-spacing:0.213120pt;}
.ls7_c00114{letter-spacing:0.364672pt;}
.ls6_c00114{letter-spacing:0.468864pt;}
.ls2_c00114{letter-spacing:15.074987pt;}
.ws1_c00114{word-spacing:-17.824000pt;}
.ws0_c00114{word-spacing:-17.804800pt;}
.ws2_c00114{word-spacing:-13.379200pt;}
.ws3_c00114{word-spacing:0.000000pt;}
._13_c00114{margin-left:-0.957600pt;}
._7_c00114{width:1.082400pt;}
._8_c00114{width:2.018400pt;}
._2_c00114{width:3.008000pt;}
._9_c00114{width:4.595200pt;}
._10_c00114{width:5.907200pt;}
._c_c00114{width:10.037067pt;}
._5_c00114{width:11.161600pt;}
._3_c00114{width:12.467200pt;}
._12_c00114{width:14.444800pt;}
._11_c00114{width:15.414667pt;}
._6_c00114{width:16.691200pt;}
._4_c00114{width:18.951733pt;}
._e_c00114{width:21.849600pt;}
._b_c00114{width:25.043200pt;}
._a_c00114{width:27.686400pt;}
._d_c00114{width:29.708800pt;}
._1_c00114{width:33.555200pt;}
._f_c00114{width:37.192533pt;}
._0_c00114{width:1019.274133pt;}
.fs1_c00114{font-size:47.360000pt;}
.fs0_c00114{font-size:64.000000pt;}
.y0_c00114{bottom:0.000000pt;}
.y4_c00114{bottom:3.840000pt;}
.y1_c00114{bottom:16.666667pt;}
.y2_c00114{bottom:33.653360pt;}
.y3_c00114{bottom:46.480027pt;}
.y1e_c00114{bottom:100.533360pt;}
.y1d_c00114{bottom:114.613347pt;}
.y1c_c00114{bottom:149.813333pt;}
.y1b_c00114{bottom:186.613333pt;}
.y1a_c00114{bottom:223.413333pt;}
.y19_c00114{bottom:260.213333pt;}
.y18_c00114{bottom:297.013333pt;}
.y17_c00114{bottom:333.813333pt;}
.y16_c00114{bottom:370.613333pt;}
.y15_c00114{bottom:407.413333pt;}
.y14_c00114{bottom:444.213333pt;}
.y13_c00114{bottom:481.013333pt;}
.y12_c00114{bottom:517.813333pt;}
.y11_c00114{bottom:554.613333pt;}
.y10_c00114{bottom:591.413333pt;}
.yf_c00114{bottom:628.213333pt;}
.ye_c00114{bottom:665.013333pt;}
.yd_c00114{bottom:701.813333pt;}
.yc_c00114{bottom:738.613333pt;}
.yb_c00114{bottom:775.413333pt;}
.ya_c00114{bottom:812.213333pt;}
.y9_c00114{bottom:849.013333pt;}
.y8_c00114{bottom:885.813333pt;}
.y7_c00114{bottom:922.613333pt;}
.y6_c00114{bottom:959.413333pt;}
.y5_c00114{bottom:996.213333pt;}
.h3_c00114{height:18.560000pt;}
.h4_c00114{height:42.457500pt;}
.h2_c00114{height:57.375000pt;}
.h1_c00114{height:1089.333333pt;}
.h0_c00114{height:1122.666667pt;}
.w2_c00114{width:17.920000pt;}
.w1_c00114{width:760.000000pt;}
.w0_c00114{width:793.333333pt;}
.x0_c00114{left:0.000000pt;}
.x1_c00114{left:16.666667pt;}
.x4_c00114{left:97.279933pt;}
.x3_c00114{left:113.946667pt;}
.x2_c00114{left:121.280000pt;}
.x6_c00114{left:125.680000pt;}
.x5_c00114{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7ad40979b4281c698f5fefd3.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00115;src:url('chunks/assets/font_486e0abdb5fd02298d6217b4.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00115{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00115{vertical-align:0.000000px;}
.ls3_c00115{letter-spacing:-0.014400px;}
.ls2_c00115{letter-spacing:0.000000px;}
.ls1_c00115{letter-spacing:0.000600px;}
.ls0_c00115{letter-spacing:0.014400px;}
.ls4_c00115{letter-spacing:0.036000px;}
.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:-20.052000px;}
.ws0_c00115{word-spacing:-20.030400px;}
.ws2_c00115{word-spacing:0.000000px;}
._5_c00115{margin-left:-1.003200px;}
._8_c00115{width:1.006500px;}
._6_c00115{width:2.289600px;}
._3_c00115{width:3.387000px;}
._b_c00115{width:4.626900px;}
._10_c00115{width:6.381900px;}
._a_c00115{width:7.495200px;}
._7_c00115{width:9.504600px;}
._c_c00115{width:10.780500px;}
._d_c00115{width:11.887200px;}
._f_c00115{width:15.760800px;}
._e_c00115{width:17.064000px;}
._9_c00115{width:18.180000px;}
._4_c00115{width:30.132000px;}
._1_c00115{width:1061.484000px;}
._2_c00115{width:1146.684000px;}
._0_c00115{width:2079.683700px;}
.fc1_c00115{color:transparent;}
.fc0_c00115{color:rgb(0,0,0);}
.fs1_c00115{font-size:53.280000px;}
.fs0_c00115{font-size:72.000000px;}
.y0_c00115{bottom:0.000000px;}
.y5_c00115{bottom:3.960000px;}
.y1_c00115{bottom:18.750000px;}
.y3_c00115{bottom:36.420030px;}
.y4_c00115{bottom:47.250030px;}
.y1e_c00115{bottom:127.140030px;}
.y1d_c00115{bottom:168.540000px;}
.y1c_c00115{bottom:209.940000px;}
.y1b_c00115{bottom:251.340000px;}
.y1a_c00115{bottom:292.740000px;}
.y19_c00115{bottom:334.140000px;}
.y18_c00115{bottom:375.540000px;}
.y17_c00115{bottom:416.940000px;}
.y16_c00115{bottom:458.340000px;}
.y15_c00115{bottom:499.740000px;}
.y14_c00115{bottom:541.140000px;}
.y13_c00115{bottom:582.540000px;}
.y12_c00115{bottom:623.940000px;}
.y11_c00115{bottom:665.340000px;}
.y10_c00115{bottom:706.740000px;}
.yf_c00115{bottom:748.140000px;}
.ye_c00115{bottom:789.540000px;}
.yd_c00115{bottom:830.940000px;}
.yc_c00115{bottom:872.340000px;}
.yb_c00115{bottom:913.740000px;}
.ya_c00115{bottom:955.140000px;}
.y9_c00115{bottom:996.540000px;}
.y8_c00115{bottom:1037.940000px;}
.y7_c00115{bottom:1079.340000px;}
.y6_c00115{bottom:1120.740000px;}
.y2_c00115{bottom:1173.660000px;}
.h3_c00115{height:20.520000px;}
.h2_c00115{height:64.546875px;}
.h1_c00115{height:1225.500000px;}
.h0_c00115{height:1263.000000px;}
.w2_c00115{width:20.160000px;}
.w1_c00115{width:855.000000px;}
.w0_c00115{width:892.500000px;}
.x0_c00115{left:0.000000px;}
.x1_c00115{left:18.750000px;}
.x2_c00115{left:109.439925px;}
.x5_c00115{left:151.965150px;}
.x3_c00115{left:157.739850px;}
.x4_c00115{left:745.590000px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls3_c00115{letter-spacing:-0.012800pt;}
.ls2_c00115{letter-spacing:0.000000pt;}
.ls1_c00115{letter-spacing:0.000533pt;}
.ls0_c00115{letter-spacing:0.012800pt;}
.ls4_c00115{letter-spacing:0.032000pt;}
.ws1_c00115{word-spacing:-17.824000pt;}
.ws0_c00115{word-spacing:-17.804800pt;}
.ws2_c00115{word-spacing:0.000000pt;}
._5_c00115{margin-left:-0.891733pt;}
._8_c00115{width:0.894667pt;}
._6_c00115{width:2.035200pt;}
._3_c00115{width:3.010667pt;}
._b_c00115{width:4.112800pt;}
._10_c00115{width:5.672800pt;}
._a_c00115{width:6.662400pt;}
._7_c00115{width:8.448533pt;}
._c_c00115{width:9.582667pt;}
._d_c00115{width:10.566400pt;}
._f_c00115{width:14.009600pt;}
._e_c00115{width:15.168000pt;}
._9_c00115{width:16.160000pt;}
._4_c00115{width:26.784000pt;}
._1_c00115{width:943.541333pt;}
._2_c00115{width:1019.274667pt;}
._0_c00115{width:1848.607733pt;}
.fs1_c00115{font-size:47.360000pt;}
.fs0_c00115{font-size:64.000000pt;}
.y0_c00115{bottom:0.000000pt;}
.y5_c00115{bottom:3.520000pt;}
.y1_c00115{bottom:16.666667pt;}
.y3_c00115{bottom:32.373360pt;}
.y4_c00115{bottom:42.000027pt;}
.y1e_c00115{bottom:113.013360pt;}
.y1d_c00115{bottom:149.813333pt;}
.y1c_c00115{bottom:186.613333pt;}
.y1b_c00115{bottom:223.413333pt;}
.y1a_c00115{bottom:260.213333pt;}
.y19_c00115{bottom:297.013333pt;}
.y18_c00115{bottom:333.813333pt;}
.y17_c00115{bottom:370.613333pt;}
.y16_c00115{bottom:407.413333pt;}
.y15_c00115{bottom:444.213333pt;}
.y14_c00115{bottom:481.013333pt;}
.y13_c00115{bottom:517.813333pt;}
.y12_c00115{bottom:554.613333pt;}
.y11_c00115{bottom:591.413333pt;}
.y10_c00115{bottom:628.213333pt;}
.yf_c00115{bottom:665.013333pt;}
.ye_c00115{bottom:701.813333pt;}
.yd_c00115{bottom:738.613333pt;}
.yc_c00115{bottom:775.413333pt;}
.yb_c00115{bottom:812.213333pt;}
.ya_c00115{bottom:849.013333pt;}
.y9_c00115{bottom:885.813333pt;}
.y8_c00115{bottom:922.613333pt;}
.y7_c00115{bottom:959.413333pt;}
.y6_c00115{bottom:996.213333pt;}
.y2_c00115{bottom:1043.253333pt;}
.h3_c00115{height:18.240000pt;}
.h2_c00115{height:57.375000pt;}
.h1_c00115{height:1089.333333pt;}
.h0_c00115{height:1122.666667pt;}
.w2_c00115{width:17.920000pt;}
.w1_c00115{width:760.000000pt;}
.w0_c00115{width:793.333333pt;}
.x0_c00115{left:0.000000pt;}
.x1_c00115{left:16.666667pt;}
.x2_c00115{left:97.279933pt;}
.x5_c00115{left:135.080133pt;}
.x3_c00115{left:140.213200pt;}
.x4_c00115{left:662.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_72e34fe2b5f8222e02a79754.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00116;src:url('chunks/assets/font_898b1f4b9490bf030be76ce3.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00116;src:url('chunks/assets/font_9ae16584ee8a7853975648ad.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:1.111328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00116;src:url('chunks/assets/font_15a62fbe3904de12edc1d64d.woff2')format("woff");}.ff4_c00116{font-family:ff4_c00116;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00116{vertical-align:0.000000px;}
.ls2_c00116{letter-spacing:-0.014400px;}
.ls1_c00116{letter-spacing:0.000000px;}
.ls0_c00116{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00116{word-spacing:0.000000px;}
._d_c00116{margin-left:-1.001100px;}
._6_c00116{width:1.008000px;}
._2_c00116{width:2.037600px;}
._5_c00116{width:3.254400px;}
._8_c00116{width:4.312800px;}
._c_c00116{width:5.896800px;}
._b_c00116{width:7.308000px;}
._4_c00116{width:8.596800px;}
._7_c00116{width:10.094400px;}
._f_c00116{width:13.543200px;}
._e_c00116{width:15.127200px;}
._9_c00116{width:16.149600px;}
._a_c00116{width:17.179200px;}
._3_c00116{width:18.864000px;}
._1_c00116{width:29.931300px;}
._0_c00116{width:1146.683400px;}
.fc1_c00116{color:transparent;}
.fc0_c00116{color:rgb(0,0,0);}
.fs0_c00116{font-size:72.000000px;}
.y0_c00116{bottom:0.000000px;}
.y4_c00116{bottom:4.320000px;}
.y1_c00116{bottom:18.750000px;}
.y2_c00116{bottom:37.860030px;}
.y3_c00116{bottom:52.290030px;}
.y1d_c00116{bottom:127.140030px;}
.y1c_c00116{bottom:168.540000px;}
.y1b_c00116{bottom:209.940000px;}
.y1a_c00116{bottom:251.340000px;}
.y19_c00116{bottom:292.740000px;}
.y18_c00116{bottom:334.140000px;}
.y17_c00116{bottom:375.540000px;}
.y16_c00116{bottom:416.940000px;}
.y15_c00116{bottom:458.340000px;}
.y14_c00116{bottom:499.740000px;}
.y13_c00116{bottom:541.140000px;}
.y12_c00116{bottom:582.540000px;}
.y11_c00116{bottom:623.940000px;}
.y10_c00116{bottom:665.340000px;}
.yf_c00116{bottom:706.740000px;}
.ye_c00116{bottom:748.140000px;}
.yd_c00116{bottom:789.540000px;}
.yc_c00116{bottom:830.940000px;}
.yb_c00116{bottom:872.340000px;}
.ya_c00116{bottom:913.740000px;}
.y9_c00116{bottom:955.140000px;}
.y8_c00116{bottom:996.540000px;}
.y7_c00116{bottom:1037.940000px;}
.y6_c00116{bottom:1079.340000px;}
.y5_c00116{bottom:1120.740000px;}
.h3_c00116{height:20.880000px;}
.h2_c00116{height:64.546875px;}
.h4_c00116{height:65.003906px;}
.h5_c00116{height:65.707031px;}
.h1_c00116{height:1225.500000px;}
.h0_c00116{height:1263.000000px;}
.w2_c00116{width:30.240000px;}
.w1_c00116{width:855.000000px;}
.w0_c00116{width:892.500000px;}
.x0_c00116{left:0.000000px;}
.x1_c00116{left:18.750000px;}
.x4_c00116{left:109.439925px;}
.x3_c00116{left:128.190000px;}
.x2_c00116{left:136.440000px;}
.x5_c00116{left:151.965150px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls2_c00116{letter-spacing:-0.012800pt;}
.ls1_c00116{letter-spacing:0.000000pt;}
.ls0_c00116{letter-spacing:0.012800pt;}
.ws0_c00116{word-spacing:-17.804800pt;}
.ws1_c00116{word-spacing:0.000000pt;}
._d_c00116{margin-left:-0.889867pt;}
._6_c00116{width:0.896000pt;}
._2_c00116{width:1.811200pt;}
._5_c00116{width:2.892800pt;}
._8_c00116{width:3.833600pt;}
._c_c00116{width:5.241600pt;}
._b_c00116{width:6.496000pt;}
._4_c00116{width:7.641600pt;}
._7_c00116{width:8.972800pt;}
._f_c00116{width:12.038400pt;}
._e_c00116{width:13.446400pt;}
._9_c00116{width:14.355200pt;}
._a_c00116{width:15.270400pt;}
._3_c00116{width:16.768000pt;}
._1_c00116{width:26.605600pt;}
._0_c00116{width:1019.274133pt;}
.fs0_c00116{font-size:64.000000pt;}
.y0_c00116{bottom:0.000000pt;}
.y4_c00116{bottom:3.840000pt;}
.y1_c00116{bottom:16.666667pt;}
.y2_c00116{bottom:33.653360pt;}
.y3_c00116{bottom:46.480027pt;}
.y1d_c00116{bottom:113.013360pt;}
.y1c_c00116{bottom:149.813333pt;}
.y1b_c00116{bottom:186.613333pt;}
.y1a_c00116{bottom:223.413333pt;}
.y19_c00116{bottom:260.213333pt;}
.y18_c00116{bottom:297.013333pt;}
.y17_c00116{bottom:333.813333pt;}
.y16_c00116{bottom:370.613333pt;}
.y15_c00116{bottom:407.413333pt;}
.y14_c00116{bottom:444.213333pt;}
.y13_c00116{bottom:481.013333pt;}
.y12_c00116{bottom:517.813333pt;}
.y11_c00116{bottom:554.613333pt;}
.y10_c00116{bottom:591.413333pt;}
.yf_c00116{bottom:628.213333pt;}
.ye_c00116{bottom:665.013333pt;}
.yd_c00116{bottom:701.813333pt;}
.yc_c00116{bottom:738.613333pt;}
.yb_c00116{bottom:775.413333pt;}
.ya_c00116{bottom:812.213333pt;}
.y9_c00116{bottom:849.013333pt;}
.y8_c00116{bottom:885.813333pt;}
.y7_c00116{bottom:922.613333pt;}
.y6_c00116{bottom:959.413333pt;}
.y5_c00116{bottom:996.213333pt;}
.h3_c00116{height:18.560000pt;}
.h2_c00116{height:57.375000pt;}
.h4_c00116{height:57.781250pt;}
.h5_c00116{height:58.406250pt;}
.h1_c00116{height:1089.333333pt;}
.h0_c00116{height:1122.666667pt;}
.w2_c00116{width:26.880000pt;}
.w1_c00116{width:760.000000pt;}
.w0_c00116{width:793.333333pt;}
.x0_c00116{left:0.000000pt;}
.x1_c00116{left:16.666667pt;}
.x4_c00116{left:97.279933pt;}
.x3_c00116{left:113.946667pt;}
.x2_c00116{left:121.280000pt;}
.x5_c00116{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4d53ff2744ae22770604feed.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00117;src:url('chunks/assets/font_573d43b6edae1ffdbdf42cab.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls2_c00117{letter-spacing:-0.014400px;}
.ls1_c00117{letter-spacing:0.000000px;}
.ls0_c00117{letter-spacing:0.014400px;}
.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;}
}
.ws0_c00117{word-spacing:-20.030400px;}
.ws1_c00117{word-spacing:-20.001600px;}
.ws2_c00117{word-spacing:0.000000px;}
._d_c00117{margin-left:-1.000800px;}
._6_c00117{width:1.382400px;}
._7_c00117{width:3.160800px;}
._9_c00117{width:4.456800px;}
._10_c00117{width:5.940000px;}
._a_c00117{width:7.084800px;}
._3_c00117{width:8.280000px;}
._5_c00117{width:10.800000px;}
._8_c00117{width:11.872800px;}
._c_c00117{width:17.758080px;}
._b_c00117{width:18.871200px;}
._e_c00117{width:21.844800px;}
._f_c00117{width:31.896000px;}
._4_c00117{width:33.278400px;}
._1_c00117{width:1061.484000px;}
._2_c00117{width:1146.684000px;}
._0_c00117{width:2079.683700px;}
.fc1_c00117{color:transparent;}
.fc0_c00117{color:rgb(0,0,0);}
.fs1_c00117{font-size:53.280000px;}
.fs0_c00117{font-size:72.000000px;}
.y0_c00117{bottom:0.000000px;}
.y5_c00117{bottom:3.960000px;}
.y1_c00117{bottom:18.750000px;}
.y3_c00117{bottom:36.420030px;}
.y4_c00117{bottom:47.250030px;}
.y1e_c00117{bottom:109.140030px;}
.y1d_c00117{bottom:150.540000px;}
.y1c_c00117{bottom:191.940000px;}
.y1b_c00117{bottom:233.340000px;}
.y1a_c00117{bottom:274.740000px;}
.y19_c00117{bottom:316.140000px;}
.y18_c00117{bottom:357.540000px;}
.y17_c00117{bottom:416.940000px;}
.y16_c00117{bottom:458.340000px;}
.y15_c00117{bottom:499.740000px;}
.y14_c00117{bottom:541.140000px;}
.y13_c00117{bottom:582.540000px;}
.y12_c00117{bottom:623.940000px;}
.y11_c00117{bottom:665.340000px;}
.y10_c00117{bottom:706.740000px;}
.yf_c00117{bottom:748.140000px;}
.ye_c00117{bottom:789.540000px;}
.yd_c00117{bottom:830.940000px;}
.yc_c00117{bottom:872.340000px;}
.yb_c00117{bottom:913.740000px;}
.ya_c00117{bottom:955.140000px;}
.y9_c00117{bottom:996.540000px;}
.y8_c00117{bottom:1037.940000px;}
.y7_c00117{bottom:1079.340000px;}
.y6_c00117{bottom:1120.740000px;}
.y2_c00117{bottom:1173.660000px;}
.h3_c00117{height:20.520000px;}
.h2_c00117{height:64.546875px;}
.h4_c00117{height:65.003906px;}
.h1_c00117{height:1225.500000px;}
.h0_c00117{height:1263.000000px;}
.w2_c00117{width:30.240000px;}
.w1_c00117{width:855.000000px;}
.w0_c00117{width:892.500000px;}
.x0_c00117{left:0.000000px;}
.x1_c00117{left:18.750000px;}
.x2_c00117{left:109.439925px;}
.x5_c00117{left:151.965150px;}
.x3_c00117{left:157.739850px;}
.x4_c00117{left:735.510000px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls2_c00117{letter-spacing:-0.012800pt;}
.ls1_c00117{letter-spacing:0.000000pt;}
.ls0_c00117{letter-spacing:0.012800pt;}
.ws0_c00117{word-spacing:-17.804800pt;}
.ws1_c00117{word-spacing:-17.779200pt;}
.ws2_c00117{word-spacing:0.000000pt;}
._d_c00117{margin-left:-0.889600pt;}
._6_c00117{width:1.228800pt;}
._7_c00117{width:2.809600pt;}
._9_c00117{width:3.961600pt;}
._10_c00117{width:5.280000pt;}
._a_c00117{width:6.297600pt;}
._3_c00117{width:7.360000pt;}
._5_c00117{width:9.600000pt;}
._8_c00117{width:10.553600pt;}
._c_c00117{width:15.784960pt;}
._b_c00117{width:16.774400pt;}
._e_c00117{width:19.417600pt;}
._f_c00117{width:28.352000pt;}
._4_c00117{width:29.580800pt;}
._1_c00117{width:943.541333pt;}
._2_c00117{width:1019.274667pt;}
._0_c00117{width:1848.607733pt;}
.fs1_c00117{font-size:47.360000pt;}
.fs0_c00117{font-size:64.000000pt;}
.y0_c00117{bottom:0.000000pt;}
.y5_c00117{bottom:3.520000pt;}
.y1_c00117{bottom:16.666667pt;}
.y3_c00117{bottom:32.373360pt;}
.y4_c00117{bottom:42.000027pt;}
.y1e_c00117{bottom:97.013360pt;}
.y1d_c00117{bottom:133.813333pt;}
.y1c_c00117{bottom:170.613333pt;}
.y1b_c00117{bottom:207.413333pt;}
.y1a_c00117{bottom:244.213333pt;}
.y19_c00117{bottom:281.013333pt;}
.y18_c00117{bottom:317.813333pt;}
.y17_c00117{bottom:370.613333pt;}
.y16_c00117{bottom:407.413333pt;}
.y15_c00117{bottom:444.213333pt;}
.y14_c00117{bottom:481.013333pt;}
.y13_c00117{bottom:517.813333pt;}
.y12_c00117{bottom:554.613333pt;}
.y11_c00117{bottom:591.413333pt;}
.y10_c00117{bottom:628.213333pt;}
.yf_c00117{bottom:665.013333pt;}
.ye_c00117{bottom:701.813333pt;}
.yd_c00117{bottom:738.613333pt;}
.yc_c00117{bottom:775.413333pt;}
.yb_c00117{bottom:812.213333pt;}
.ya_c00117{bottom:849.013333pt;}
.y9_c00117{bottom:885.813333pt;}
.y8_c00117{bottom:922.613333pt;}
.y7_c00117{bottom:959.413333pt;}
.y6_c00117{bottom:996.213333pt;}
.y2_c00117{bottom:1043.253333pt;}
.h3_c00117{height:18.240000pt;}
.h2_c00117{height:57.375000pt;}
.h4_c00117{height:57.781250pt;}
.h1_c00117{height:1089.333333pt;}
.h0_c00117{height:1122.666667pt;}
.w2_c00117{width:26.880000pt;}
.w1_c00117{width:760.000000pt;}
.w0_c00117{width:793.333333pt;}
.x0_c00117{left:0.000000pt;}
.x1_c00117{left:16.666667pt;}
.x2_c00117{left:97.279933pt;}
.x5_c00117{left:135.080133pt;}
.x3_c00117{left:140.213200pt;}
.x4_c00117{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_641a329c6e74f64e5fe9c3ec.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c00118{letter-spacing:-0.014400px;}
.ls3_c00118{letter-spacing:0.000000px;}
.ls0_c00118{letter-spacing:0.014400px;}
.ls1_c00118{letter-spacing:0.036000px;}
.ls2_c00118{letter-spacing:3.975600px;}
.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;}
}
.ws0_c00118{word-spacing:-20.030400px;}
.ws1_c00118{word-spacing:-20.001600px;}
.ws2_c00118{word-spacing:0.000000px;}
._5_c00118{width:1.447200px;}
._6_c00118{width:3.257700px;}
._2_c00118{width:4.262400px;}
._c_c00118{width:7.200000px;}
._3_c00118{width:8.791200px;}
._7_c00118{width:10.807200px;}
._a_c00118{width:12.124800px;}
._8_c00118{width:13.752000px;}
._1_c00118{width:15.616800px;}
._d_c00118{width:18.151200px;}
._9_c00118{width:22.305600px;}
._b_c00118{width:23.623200px;}
._4_c00118{width:29.390400px;}
._f_c00118{width:33.474600px;}
._e_c00118{width:34.517700px;}
._0_c00118{width:1146.683400px;}
.fc1_c00118{color:transparent;}
.fc0_c00118{color:rgb(0,0,0);}
.fs0_c00118{font-size:72.000000px;}
.y0_c00118{bottom:0.000000px;}
.y4_c00118{bottom:4.320000px;}
.y1_c00118{bottom:18.750000px;}
.y2_c00118{bottom:37.860030px;}
.y3_c00118{bottom:52.290030px;}
.y1d_c00118{bottom:127.140030px;}
.y1c_c00118{bottom:168.540000px;}
.y1b_c00118{bottom:209.940000px;}
.y1a_c00118{bottom:251.340000px;}
.y19_c00118{bottom:292.740000px;}
.y18_c00118{bottom:334.140000px;}
.y17_c00118{bottom:375.540000px;}
.y16_c00118{bottom:416.940000px;}
.y15_c00118{bottom:458.340000px;}
.y14_c00118{bottom:499.740000px;}
.y13_c00118{bottom:541.140000px;}
.y12_c00118{bottom:582.540000px;}
.y11_c00118{bottom:623.940000px;}
.y10_c00118{bottom:665.340000px;}
.yf_c00118{bottom:706.740000px;}
.ye_c00118{bottom:748.140000px;}
.yd_c00118{bottom:789.540000px;}
.yc_c00118{bottom:830.940000px;}
.yb_c00118{bottom:872.340000px;}
.ya_c00118{bottom:913.740000px;}
.y9_c00118{bottom:955.140000px;}
.y8_c00118{bottom:996.540000px;}
.y7_c00118{bottom:1037.940000px;}
.y6_c00118{bottom:1079.340000px;}
.y5_c00118{bottom:1120.740000px;}
.h3_c00118{height:20.880000px;}
.h2_c00118{height:64.546875px;}
.h1_c00118{height:1225.500000px;}
.h0_c00118{height:1263.000000px;}
.w2_c00118{width:30.240000px;}
.w1_c00118{width:855.000000px;}
.w0_c00118{width:892.500000px;}
.x0_c00118{left:0.000000px;}
.x1_c00118{left:18.750000px;}
.x4_c00118{left:109.439925px;}
.x3_c00118{left:128.190000px;}
.x2_c00118{left:136.440000px;}
.x5_c00118{left:151.965150px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls4_c00118{letter-spacing:-0.012800pt;}
.ls3_c00118{letter-spacing:0.000000pt;}
.ls0_c00118{letter-spacing:0.012800pt;}
.ls1_c00118{letter-spacing:0.032000pt;}
.ls2_c00118{letter-spacing:3.533867pt;}
.ws0_c00118{word-spacing:-17.804800pt;}
.ws1_c00118{word-spacing:-17.779200pt;}
.ws2_c00118{word-spacing:0.000000pt;}
._5_c00118{width:1.286400pt;}
._6_c00118{width:2.895733pt;}
._2_c00118{width:3.788800pt;}
._c_c00118{width:6.400000pt;}
._3_c00118{width:7.814400pt;}
._7_c00118{width:9.606400pt;}
._a_c00118{width:10.777600pt;}
._8_c00118{width:12.224000pt;}
._1_c00118{width:13.881600pt;}
._d_c00118{width:16.134400pt;}
._9_c00118{width:19.827200pt;}
._b_c00118{width:20.998400pt;}
._4_c00118{width:26.124800pt;}
._f_c00118{width:29.755200pt;}
._e_c00118{width:30.682400pt;}
._0_c00118{width:1019.274133pt;}
.fs0_c00118{font-size:64.000000pt;}
.y0_c00118{bottom:0.000000pt;}
.y4_c00118{bottom:3.840000pt;}
.y1_c00118{bottom:16.666667pt;}
.y2_c00118{bottom:33.653360pt;}
.y3_c00118{bottom:46.480027pt;}
.y1d_c00118{bottom:113.013360pt;}
.y1c_c00118{bottom:149.813333pt;}
.y1b_c00118{bottom:186.613333pt;}
.y1a_c00118{bottom:223.413333pt;}
.y19_c00118{bottom:260.213333pt;}
.y18_c00118{bottom:297.013333pt;}
.y17_c00118{bottom:333.813333pt;}
.y16_c00118{bottom:370.613333pt;}
.y15_c00118{bottom:407.413333pt;}
.y14_c00118{bottom:444.213333pt;}
.y13_c00118{bottom:481.013333pt;}
.y12_c00118{bottom:517.813333pt;}
.y11_c00118{bottom:554.613333pt;}
.y10_c00118{bottom:591.413333pt;}
.yf_c00118{bottom:628.213333pt;}
.ye_c00118{bottom:665.013333pt;}
.yd_c00118{bottom:701.813333pt;}
.yc_c00118{bottom:738.613333pt;}
.yb_c00118{bottom:775.413333pt;}
.ya_c00118{bottom:812.213333pt;}
.y9_c00118{bottom:849.013333pt;}
.y8_c00118{bottom:885.813333pt;}
.y7_c00118{bottom:922.613333pt;}
.y6_c00118{bottom:959.413333pt;}
.y5_c00118{bottom:996.213333pt;}
.h3_c00118{height:18.560000pt;}
.h2_c00118{height:57.375000pt;}
.h1_c00118{height:1089.333333pt;}
.h0_c00118{height:1122.666667pt;}
.w2_c00118{width:26.880000pt;}
.w1_c00118{width:760.000000pt;}
.w0_c00118{width:793.333333pt;}
.x0_c00118{left:0.000000pt;}
.x1_c00118{left:16.666667pt;}
.x4_c00118{left:97.279933pt;}
.x3_c00118{left:113.946667pt;}
.x2_c00118{left:121.280000pt;}
.x5_c00118{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f88583dec6368d3eb7a6a798.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00119;src:url('chunks/assets/font_2f000e00e7165081b753575e.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.ls1_c00119{letter-spacing:0.000000px;}
.ls0_c00119{letter-spacing:0.014400px;}
.ls3_c00119{letter-spacing:0.239760px;}
.ls2_c00119{letter-spacing:0.431568px;}
.sc__c00119{text-shadow:none;}
.sc0_c00119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00119{-webkit-text-stroke:0px transparent;}
.sc0_c00119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00119{word-spacing:-20.030400px;}
.ws1_c00119{word-spacing:0.000000px;}
._b_c00119{margin-left:-1.118880px;}
._4_c00119{width:1.584000px;}
._5_c00119{width:3.916800px;}
._3_c00119{width:7.632000px;}
._7_c00119{width:12.621600px;}
._9_c00119{width:13.785900px;}
._8_c00119{width:14.788800px;}
._a_c00119{width:17.013600px;}
._6_c00119{width:23.983200px;}
._1_c00119{width:1061.484000px;}
._2_c00119{width:1146.684000px;}
._0_c00119{width:2079.683700px;}
.fc1_c00119{color:transparent;}
.fc0_c00119{color:rgb(0,0,0);}
.fs1_c00119{font-size:53.280000px;}
.fs0_c00119{font-size:72.000000px;}
.y0_c00119{bottom:0.000000px;}
.y5_c00119{bottom:3.960000px;}
.y1_c00119{bottom:18.750000px;}
.y3_c00119{bottom:36.420030px;}
.y4_c00119{bottom:47.250030px;}
.y11_c00119{bottom:171.420000px;}
.y10_c00119{bottom:190.860000px;}
.yf_c00119{bottom:203.820000px;}
.ye_c00119{bottom:789.540000px;}
.yd_c00119{bottom:830.940000px;}
.yc_c00119{bottom:872.340000px;}
.yb_c00119{bottom:913.740000px;}
.ya_c00119{bottom:955.140000px;}
.y9_c00119{bottom:996.540000px;}
.y8_c00119{bottom:1037.940000px;}
.y7_c00119{bottom:1079.340000px;}
.y6_c00119{bottom:1120.740000px;}
.y2_c00119{bottom:1173.660000px;}
.h3_c00119{height:20.520000px;}
.h4_c00119{height:47.764688px;}
.h2_c00119{height:64.546875px;}
.h1_c00119{height:1225.500000px;}
.h0_c00119{height:1263.000000px;}
.w2_c00119{width:30.240000px;}
.w1_c00119{width:855.000000px;}
.w0_c00119{width:892.500000px;}
.x0_c00119{left:0.000000px;}
.x1_c00119{left:18.750000px;}
.x2_c00119{left:109.439925px;}
.x7_c00119{left:151.965150px;}
.x3_c00119{left:157.739850px;}
.x6_c00119{left:205.512000px;}
.x4_c00119{left:735.510000px;}
.x5_c00119{left:751.440000px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls1_c00119{letter-spacing:0.000000pt;}
.ls0_c00119{letter-spacing:0.012800pt;}
.ls3_c00119{letter-spacing:0.213120pt;}
.ls2_c00119{letter-spacing:0.383616pt;}
.ws0_c00119{word-spacing:-17.804800pt;}
.ws1_c00119{word-spacing:0.000000pt;}
._b_c00119{margin-left:-0.994560pt;}
._4_c00119{width:1.408000pt;}
._5_c00119{width:3.481600pt;}
._3_c00119{width:6.784000pt;}
._7_c00119{width:11.219200pt;}
._9_c00119{width:12.254133pt;}
._8_c00119{width:13.145600pt;}
._a_c00119{width:15.123200pt;}
._6_c00119{width:21.318400pt;}
._1_c00119{width:943.541333pt;}
._2_c00119{width:1019.274667pt;}
._0_c00119{width:1848.607733pt;}
.fs1_c00119{font-size:47.360000pt;}
.fs0_c00119{font-size:64.000000pt;}
.y0_c00119{bottom:0.000000pt;}
.y5_c00119{bottom:3.520000pt;}
.y1_c00119{bottom:16.666667pt;}
.y3_c00119{bottom:32.373360pt;}
.y4_c00119{bottom:42.000027pt;}
.y11_c00119{bottom:152.373333pt;}
.y10_c00119{bottom:169.653333pt;}
.yf_c00119{bottom:181.173333pt;}
.ye_c00119{bottom:701.813333pt;}
.yd_c00119{bottom:738.613333pt;}
.yc_c00119{bottom:775.413333pt;}
.yb_c00119{bottom:812.213333pt;}
.ya_c00119{bottom:849.013333pt;}
.y9_c00119{bottom:885.813333pt;}
.y8_c00119{bottom:922.613333pt;}
.y7_c00119{bottom:959.413333pt;}
.y6_c00119{bottom:996.213333pt;}
.y2_c00119{bottom:1043.253333pt;}
.h3_c00119{height:18.240000pt;}
.h4_c00119{height:42.457500pt;}
.h2_c00119{height:57.375000pt;}
.h1_c00119{height:1089.333333pt;}
.h0_c00119{height:1122.666667pt;}
.w2_c00119{width:26.880000pt;}
.w1_c00119{width:760.000000pt;}
.w0_c00119{width:793.333333pt;}
.x0_c00119{left:0.000000pt;}
.x1_c00119{left:16.666667pt;}
.x2_c00119{left:97.279933pt;}
.x7_c00119{left:135.080133pt;}
.x3_c00119{left:140.213200pt;}
.x6_c00119{left:182.677333pt;}
.x4_c00119{left:653.786667pt;}
.x5_c00119{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0970e845e3b6596be674c955.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00120;src:url('chunks/assets/font_f20e5a3d2ed375a1c62c15f7.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.ls3_c00120{letter-spacing:-0.014400px;}
.ls2_c00120{letter-spacing:0.000000px;}
.ls1_c00120{letter-spacing:0.010980px;}
.ls0_c00120{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00120{word-spacing:0.000000px;}
._6_c00120{margin-left:-1.022400px;}
._11_c00120{width:1.011300px;}
._b_c00120{width:3.528000px;}
._3_c00120{width:4.536000px;}
._1_c00120{width:6.278400px;}
._e_c00120{width:7.336800px;}
._4_c00120{width:8.661600px;}
._f_c00120{width:9.961920px;}
._d_c00120{width:11.571900px;}
._a_c00120{width:13.403400px;}
._7_c00120{width:14.835000px;}
._2_c00120{width:15.955200px;}
._5_c00120{width:17.812800px;}
._c_c00120{width:18.833700px;}
._10_c00120{width:25.048800px;}
._9_c00120{width:34.495200px;}
._8_c00120{width:44.318700px;}
._0_c00120{width:1146.683400px;}
.fc1_c00120{color:transparent;}
.fc0_c00120{color:rgb(0,0,0);}
.fs0_c00120{font-size:72.000000px;}
.y0_c00120{bottom:0.000000px;}
.y4_c00120{bottom:4.320000px;}
.y1_c00120{bottom:18.750000px;}
.y2_c00120{bottom:37.860030px;}
.y3_c00120{bottom:52.290030px;}
.y1d_c00120{bottom:91.140030px;}
.y1c_c00120{bottom:132.540000px;}
.y1b_c00120{bottom:173.940000px;}
.y1a_c00120{bottom:233.340000px;}
.y19_c00120{bottom:274.740000px;}
.y18_c00120{bottom:316.140000px;}
.y17_c00120{bottom:357.540000px;}
.y16_c00120{bottom:398.940000px;}
.y15_c00120{bottom:458.340000px;}
.y14_c00120{bottom:499.740000px;}
.y13_c00120{bottom:541.140000px;}
.y12_c00120{bottom:582.540000px;}
.y11_c00120{bottom:623.940000px;}
.y10_c00120{bottom:665.340000px;}
.yf_c00120{bottom:706.740000px;}
.ye_c00120{bottom:748.140000px;}
.yd_c00120{bottom:789.540000px;}
.yc_c00120{bottom:830.940000px;}
.yb_c00120{bottom:872.340000px;}
.ya_c00120{bottom:913.740000px;}
.y9_c00120{bottom:955.140000px;}
.y8_c00120{bottom:996.540000px;}
.y7_c00120{bottom:1037.940000px;}
.y6_c00120{bottom:1079.340000px;}
.y5_c00120{bottom:1120.740000px;}
.h3_c00120{height:20.880000px;}
.h2_c00120{height:64.546875px;}
.h4_c00120{height:65.003906px;}
.h1_c00120{height:1225.500000px;}
.h0_c00120{height:1263.000000px;}
.w2_c00120{width:30.240000px;}
.w1_c00120{width:855.000000px;}
.w0_c00120{width:892.500000px;}
.x0_c00120{left:0.000000px;}
.x1_c00120{left:18.750000px;}
.x5_c00120{left:109.439925px;}
.x3_c00120{left:128.190000px;}
.x2_c00120{left:136.440000px;}
.x4_c00120{left:151.965150px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls3_c00120{letter-spacing:-0.012800pt;}
.ls2_c00120{letter-spacing:0.000000pt;}
.ls1_c00120{letter-spacing:0.009760pt;}
.ls0_c00120{letter-spacing:0.012800pt;}
.ws0_c00120{word-spacing:-17.804800pt;}
.ws1_c00120{word-spacing:0.000000pt;}
._6_c00120{margin-left:-0.908800pt;}
._11_c00120{width:0.898933pt;}
._b_c00120{width:3.136000pt;}
._3_c00120{width:4.032000pt;}
._1_c00120{width:5.580800pt;}
._e_c00120{width:6.521600pt;}
._4_c00120{width:7.699200pt;}
._f_c00120{width:8.855040pt;}
._d_c00120{width:10.286133pt;}
._a_c00120{width:11.914133pt;}
._7_c00120{width:13.186667pt;}
._2_c00120{width:14.182400pt;}
._5_c00120{width:15.833600pt;}
._c_c00120{width:16.741067pt;}
._10_c00120{width:22.265600pt;}
._9_c00120{width:30.662400pt;}
._8_c00120{width:39.394400pt;}
._0_c00120{width:1019.274133pt;}
.fs0_c00120{font-size:64.000000pt;}
.y0_c00120{bottom:0.000000pt;}
.y4_c00120{bottom:3.840000pt;}
.y1_c00120{bottom:16.666667pt;}
.y2_c00120{bottom:33.653360pt;}
.y3_c00120{bottom:46.480027pt;}
.y1d_c00120{bottom:81.013360pt;}
.y1c_c00120{bottom:117.813333pt;}
.y1b_c00120{bottom:154.613333pt;}
.y1a_c00120{bottom:207.413333pt;}
.y19_c00120{bottom:244.213333pt;}
.y18_c00120{bottom:281.013333pt;}
.y17_c00120{bottom:317.813333pt;}
.y16_c00120{bottom:354.613333pt;}
.y15_c00120{bottom:407.413333pt;}
.y14_c00120{bottom:444.213333pt;}
.y13_c00120{bottom:481.013333pt;}
.y12_c00120{bottom:517.813333pt;}
.y11_c00120{bottom:554.613333pt;}
.y10_c00120{bottom:591.413333pt;}
.yf_c00120{bottom:628.213333pt;}
.ye_c00120{bottom:665.013333pt;}
.yd_c00120{bottom:701.813333pt;}
.yc_c00120{bottom:738.613333pt;}
.yb_c00120{bottom:775.413333pt;}
.ya_c00120{bottom:812.213333pt;}
.y9_c00120{bottom:849.013333pt;}
.y8_c00120{bottom:885.813333pt;}
.y7_c00120{bottom:922.613333pt;}
.y6_c00120{bottom:959.413333pt;}
.y5_c00120{bottom:996.213333pt;}
.h3_c00120{height:18.560000pt;}
.h2_c00120{height:57.375000pt;}
.h4_c00120{height:57.781250pt;}
.h1_c00120{height:1089.333333pt;}
.h0_c00120{height:1122.666667pt;}
.w2_c00120{width:26.880000pt;}
.w1_c00120{width:760.000000pt;}
.w0_c00120{width:793.333333pt;}
.x0_c00120{left:0.000000pt;}
.x1_c00120{left:16.666667pt;}
.x5_c00120{left:97.279933pt;}
.x3_c00120{left:113.946667pt;}
.x2_c00120{left:121.280000pt;}
.x4_c00120{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a284f32f6656616f40fc1e58.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00121;src:url('chunks/assets/font_fe50907272dd08631d432492.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.ls4_c00121{letter-spacing:-0.014400px;}
.ls3_c00121{letter-spacing:0.000000px;}
.ls0_c00121{letter-spacing:0.014400px;}
.ls2_c00121{letter-spacing:0.036000px;}
.ls1_c00121{letter-spacing:20.337600px;}
.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:-20.030400px;}
.ws1_c00121{word-spacing:0.000000px;}
._a_c00121{margin-left:-1.009200px;}
._d_c00121{width:1.908180px;}
._9_c00121{width:3.848400px;}
._c_c00121{width:4.901100px;}
._8_c00121{width:7.226520px;}
._3_c00121{width:8.683200px;}
._6_c00121{width:10.058400px;}
._11_c00121{width:13.341600px;}
._4_c00121{width:14.803200px;}
._7_c00121{width:16.876800px;}
._5_c00121{width:18.704700px;}
._b_c00121{width:21.069900px;}
._13_c00121{width:22.158900px;}
._12_c00121{width:27.482400px;}
._f_c00121{width:30.146400px;}
._10_c00121{width:31.975200px;}
._e_c00121{width:53.532000px;}
._1_c00121{width:1061.484000px;}
._2_c00121{width:1146.684000px;}
._0_c00121{width:2079.683700px;}
.fc2_c00121{color:transparent;}
.fc1_c00121{color:rgb(9,9,9);}
.fc0_c00121{color:rgb(0,0,0);}
.fs1_c00121{font-size:53.280000px;}
.fs0_c00121{font-size:72.000000px;}
.y0_c00121{bottom:0.000000px;}
.y5_c00121{bottom:3.960000px;}
.y1_c00121{bottom:18.750000px;}
.y3_c00121{bottom:36.420030px;}
.y4_c00121{bottom:47.250030px;}
.y1e_c00121{bottom:118.140030px;}
.y1d_c00121{bottom:159.540000px;}
.y1c_c00121{bottom:200.940000px;}
.y1b_c00121{bottom:251.340000px;}
.y1a_c00121{bottom:292.740000px;}
.y19_c00121{bottom:334.140000px;}
.y18_c00121{bottom:375.540000px;}
.y17_c00121{bottom:416.940000px;}
.y16_c00121{bottom:458.340000px;}
.y15_c00121{bottom:499.740000px;}
.y14_c00121{bottom:541.140000px;}
.y13_c00121{bottom:582.540000px;}
.y12_c00121{bottom:623.940000px;}
.y11_c00121{bottom:665.340000px;}
.y10_c00121{bottom:706.740000px;}
.yf_c00121{bottom:748.140000px;}
.ye_c00121{bottom:789.540000px;}
.yd_c00121{bottom:830.940000px;}
.yc_c00121{bottom:872.340000px;}
.yb_c00121{bottom:913.740000px;}
.ya_c00121{bottom:955.140000px;}
.y9_c00121{bottom:996.540000px;}
.y8_c00121{bottom:1037.940000px;}
.y7_c00121{bottom:1079.340000px;}
.y6_c00121{bottom:1120.740000px;}
.y2_c00121{bottom:1173.660000px;}
.h3_c00121{height:20.520000px;}
.h4_c00121{height:64.371094px;}
.h2_c00121{height:64.546875px;}
.h1_c00121{height:1225.500000px;}
.h0_c00121{height:1263.000000px;}
.w2_c00121{width:30.240000px;}
.w1_c00121{width:855.000000px;}
.w0_c00121{width:892.500000px;}
.x0_c00121{left:0.000000px;}
.x1_c00121{left:18.750000px;}
.x2_c00121{left:109.439925px;}
.x5_c00121{left:151.965150px;}
.x3_c00121{left:157.739850px;}
.x4_c00121{left:735.510000px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls4_c00121{letter-spacing:-0.012800pt;}
.ls3_c00121{letter-spacing:0.000000pt;}
.ls0_c00121{letter-spacing:0.012800pt;}
.ls2_c00121{letter-spacing:0.032000pt;}
.ls1_c00121{letter-spacing:18.077867pt;}
.ws0_c00121{word-spacing:-17.804800pt;}
.ws1_c00121{word-spacing:0.000000pt;}
._a_c00121{margin-left:-0.897067pt;}
._d_c00121{width:1.696160pt;}
._9_c00121{width:3.420800pt;}
._c_c00121{width:4.356533pt;}
._8_c00121{width:6.423573pt;}
._3_c00121{width:7.718400pt;}
._6_c00121{width:8.940800pt;}
._11_c00121{width:11.859200pt;}
._4_c00121{width:13.158400pt;}
._7_c00121{width:15.001600pt;}
._5_c00121{width:16.626400pt;}
._b_c00121{width:18.728800pt;}
._13_c00121{width:19.696800pt;}
._12_c00121{width:24.428800pt;}
._f_c00121{width:26.796800pt;}
._10_c00121{width:28.422400pt;}
._e_c00121{width:47.584000pt;}
._1_c00121{width:943.541333pt;}
._2_c00121{width:1019.274667pt;}
._0_c00121{width:1848.607733pt;}
.fs1_c00121{font-size:47.360000pt;}
.fs0_c00121{font-size:64.000000pt;}
.y0_c00121{bottom:0.000000pt;}
.y5_c00121{bottom:3.520000pt;}
.y1_c00121{bottom:16.666667pt;}
.y3_c00121{bottom:32.373360pt;}
.y4_c00121{bottom:42.000027pt;}
.y1e_c00121{bottom:105.013360pt;}
.y1d_c00121{bottom:141.813333pt;}
.y1c_c00121{bottom:178.613333pt;}
.y1b_c00121{bottom:223.413333pt;}
.y1a_c00121{bottom:260.213333pt;}
.y19_c00121{bottom:297.013333pt;}
.y18_c00121{bottom:333.813333pt;}
.y17_c00121{bottom:370.613333pt;}
.y16_c00121{bottom:407.413333pt;}
.y15_c00121{bottom:444.213333pt;}
.y14_c00121{bottom:481.013333pt;}
.y13_c00121{bottom:517.813333pt;}
.y12_c00121{bottom:554.613333pt;}
.y11_c00121{bottom:591.413333pt;}
.y10_c00121{bottom:628.213333pt;}
.yf_c00121{bottom:665.013333pt;}
.ye_c00121{bottom:701.813333pt;}
.yd_c00121{bottom:738.613333pt;}
.yc_c00121{bottom:775.413333pt;}
.yb_c00121{bottom:812.213333pt;}
.ya_c00121{bottom:849.013333pt;}
.y9_c00121{bottom:885.813333pt;}
.y8_c00121{bottom:922.613333pt;}
.y7_c00121{bottom:959.413333pt;}
.y6_c00121{bottom:996.213333pt;}
.y2_c00121{bottom:1043.253333pt;}
.h3_c00121{height:18.240000pt;}
.h4_c00121{height:57.218750pt;}
.h2_c00121{height:57.375000pt;}
.h1_c00121{height:1089.333333pt;}
.h0_c00121{height:1122.666667pt;}
.w2_c00121{width:26.880000pt;}
.w1_c00121{width:760.000000pt;}
.w0_c00121{width:793.333333pt;}
.x0_c00121{left:0.000000pt;}
.x1_c00121{left:16.666667pt;}
.x2_c00121{left:97.279933pt;}
.x5_c00121{left:135.080133pt;}
.x3_c00121{left:140.213200pt;}
.x4_c00121{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4da82a8e5971e9958d3b250a.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00122;src:url('chunks/assets/font_d74cf1408cef30054fdb44af.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.104492;font-style: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;}
.ls1_c00122{letter-spacing:0.000000px;}
.ls0_c00122{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00122{word-spacing:0.000000px;}
._b_c00122{margin-left:-1.000800px;}
._6_c00122{width:1.065000px;}
._2_c00122{width:2.239200px;}
._4_c00122{width:3.290400px;}
._3_c00122{width:4.658400px;}
._5_c00122{width:5.860800px;}
._9_c00122{width:7.855200px;}
._a_c00122{width:9.216000px;}
._7_c00122{width:10.296000px;}
._8_c00122{width:11.743200px;}
._1_c00122{width:13.701600px;}
._c_c00122{width:15.307200px;}
._d_c00122{width:21.124800px;}
._e_c00122{width:27.892800px;}
._0_c00122{width:1146.683400px;}
.fc1_c00122{color:transparent;}
.fc0_c00122{color:rgb(0,0,0);}
.fs0_c00122{font-size:72.000000px;}
.y0_c00122{bottom:0.000000px;}
.y4_c00122{bottom:4.320000px;}
.y1_c00122{bottom:18.750000px;}
.y2_c00122{bottom:37.860030px;}
.y3_c00122{bottom:52.290030px;}
.y1d_c00122{bottom:127.140030px;}
.y1c_c00122{bottom:168.540000px;}
.y1b_c00122{bottom:209.940000px;}
.y1a_c00122{bottom:251.340000px;}
.y19_c00122{bottom:292.740000px;}
.y18_c00122{bottom:334.140000px;}
.y17_c00122{bottom:375.540000px;}
.y16_c00122{bottom:416.940000px;}
.y15_c00122{bottom:458.340000px;}
.y14_c00122{bottom:499.740000px;}
.y13_c00122{bottom:541.140000px;}
.y12_c00122{bottom:582.540000px;}
.y11_c00122{bottom:623.940000px;}
.y10_c00122{bottom:665.340000px;}
.yf_c00122{bottom:706.740000px;}
.ye_c00122{bottom:748.140000px;}
.yd_c00122{bottom:789.540000px;}
.yc_c00122{bottom:830.940000px;}
.yb_c00122{bottom:872.340000px;}
.ya_c00122{bottom:913.740000px;}
.y9_c00122{bottom:955.140000px;}
.y8_c00122{bottom:996.540000px;}
.y7_c00122{bottom:1037.940000px;}
.y6_c00122{bottom:1079.340000px;}
.y5_c00122{bottom:1120.740000px;}
.h3_c00122{height:20.880000px;}
.h4_c00122{height:64.371094px;}
.h2_c00122{height:64.546875px;}
.h1_c00122{height:1225.500000px;}
.h0_c00122{height:1263.000000px;}
.w2_c00122{width:30.240000px;}
.w1_c00122{width:855.000000px;}
.w0_c00122{width:892.500000px;}
.x0_c00122{left:0.000000px;}
.x1_c00122{left:18.750000px;}
.x3_c00122{left:128.190000px;}
.x2_c00122{left:136.440000px;}
.x4_c00122{left:151.965150px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls1_c00122{letter-spacing:0.000000pt;}
.ls0_c00122{letter-spacing:0.012800pt;}
.ws0_c00122{word-spacing:-17.804800pt;}
.ws1_c00122{word-spacing:0.000000pt;}
._b_c00122{margin-left:-0.889600pt;}
._6_c00122{width:0.946667pt;}
._2_c00122{width:1.990400pt;}
._4_c00122{width:2.924800pt;}
._3_c00122{width:4.140800pt;}
._5_c00122{width:5.209600pt;}
._9_c00122{width:6.982400pt;}
._a_c00122{width:8.192000pt;}
._7_c00122{width:9.152000pt;}
._8_c00122{width:10.438400pt;}
._1_c00122{width:12.179200pt;}
._c_c00122{width:13.606400pt;}
._d_c00122{width:18.777600pt;}
._e_c00122{width:24.793600pt;}
._0_c00122{width:1019.274133pt;}
.fs0_c00122{font-size:64.000000pt;}
.y0_c00122{bottom:0.000000pt;}
.y4_c00122{bottom:3.840000pt;}
.y1_c00122{bottom:16.666667pt;}
.y2_c00122{bottom:33.653360pt;}
.y3_c00122{bottom:46.480027pt;}
.y1d_c00122{bottom:113.013360pt;}
.y1c_c00122{bottom:149.813333pt;}
.y1b_c00122{bottom:186.613333pt;}
.y1a_c00122{bottom:223.413333pt;}
.y19_c00122{bottom:260.213333pt;}
.y18_c00122{bottom:297.013333pt;}
.y17_c00122{bottom:333.813333pt;}
.y16_c00122{bottom:370.613333pt;}
.y15_c00122{bottom:407.413333pt;}
.y14_c00122{bottom:444.213333pt;}
.y13_c00122{bottom:481.013333pt;}
.y12_c00122{bottom:517.813333pt;}
.y11_c00122{bottom:554.613333pt;}
.y10_c00122{bottom:591.413333pt;}
.yf_c00122{bottom:628.213333pt;}
.ye_c00122{bottom:665.013333pt;}
.yd_c00122{bottom:701.813333pt;}
.yc_c00122{bottom:738.613333pt;}
.yb_c00122{bottom:775.413333pt;}
.ya_c00122{bottom:812.213333pt;}
.y9_c00122{bottom:849.013333pt;}
.y8_c00122{bottom:885.813333pt;}
.y7_c00122{bottom:922.613333pt;}
.y6_c00122{bottom:959.413333pt;}
.y5_c00122{bottom:996.213333pt;}
.h3_c00122{height:18.560000pt;}
.h4_c00122{height:57.218750pt;}
.h2_c00122{height:57.375000pt;}
.h1_c00122{height:1089.333333pt;}
.h0_c00122{height:1122.666667pt;}
.w2_c00122{width:26.880000pt;}
.w1_c00122{width:760.000000pt;}
.w0_c00122{width:793.333333pt;}
.x0_c00122{left:0.000000pt;}
.x1_c00122{left:16.666667pt;}
.x3_c00122{left:113.946667pt;}
.x2_c00122{left:121.280000pt;}
.x4_c00122{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8059c774559f5a62d2a4a62d.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00123;src:url('chunks/assets/font_7e1d0eb13ab65f44f9a686af.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:1.104492;font-style: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;}
.ls1_c00123{letter-spacing:0.000000px;}
.ls0_c00123{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00123{word-spacing:0.000000px;}
._e_c00123{margin-left:-1.009200px;}
._6_c00123{width:1.749600px;}
._4_c00123{width:3.304800px;}
._9_c00123{width:4.384800px;}
._3_c00123{width:5.810400px;}
._a_c00123{width:7.279200px;}
._d_c00123{width:9.368400px;}
._5_c00123{width:12.268800px;}
._8_c00123{width:13.752000px;}
._b_c00123{width:16.480800px;}
._7_c00123{width:18.950400px;}
._10_c00123{width:23.436000px;}
._f_c00123{width:27.856800px;}
._c_c00123{width:28.893600px;}
._1_c00123{width:1061.484000px;}
._2_c00123{width:1146.684000px;}
._0_c00123{width:2079.683700px;}
.fc1_c00123{color:transparent;}
.fc0_c00123{color:rgb(0,0,0);}
.fs1_c00123{font-size:53.280000px;}
.fs0_c00123{font-size:72.000000px;}
.y0_c00123{bottom:0.000000px;}
.y5_c00123{bottom:3.960000px;}
.y1_c00123{bottom:18.750000px;}
.y3_c00123{bottom:36.420030px;}
.y4_c00123{bottom:47.250030px;}
.y1e_c00123{bottom:127.140030px;}
.y1d_c00123{bottom:168.540000px;}
.y1c_c00123{bottom:209.940000px;}
.y1b_c00123{bottom:251.340000px;}
.y1a_c00123{bottom:292.740000px;}
.y19_c00123{bottom:334.140000px;}
.y18_c00123{bottom:375.540000px;}
.y17_c00123{bottom:416.940000px;}
.y16_c00123{bottom:458.340000px;}
.y15_c00123{bottom:499.740000px;}
.y14_c00123{bottom:541.140000px;}
.y13_c00123{bottom:582.540000px;}
.y12_c00123{bottom:623.940000px;}
.y11_c00123{bottom:665.340000px;}
.y10_c00123{bottom:706.740000px;}
.yf_c00123{bottom:748.140000px;}
.ye_c00123{bottom:789.540000px;}
.yd_c00123{bottom:830.940000px;}
.yc_c00123{bottom:872.340000px;}
.yb_c00123{bottom:913.740000px;}
.ya_c00123{bottom:955.140000px;}
.y9_c00123{bottom:996.540000px;}
.y8_c00123{bottom:1037.940000px;}
.y7_c00123{bottom:1079.340000px;}
.y6_c00123{bottom:1120.740000px;}
.y2_c00123{bottom:1173.660000px;}
.h3_c00123{height:20.520000px;}
.h4_c00123{height:64.371094px;}
.h2_c00123{height:64.546875px;}
.h1_c00123{height:1225.500000px;}
.h0_c00123{height:1263.000000px;}
.w2_c00123{width:30.240000px;}
.w1_c00123{width:855.000000px;}
.w0_c00123{width:892.500000px;}
.x0_c00123{left:0.000000px;}
.x1_c00123{left:18.750000px;}
.x2_c00123{left:109.439925px;}
.x5_c00123{left:151.965150px;}
.x3_c00123{left:157.739850px;}
.x4_c00123{left:735.510000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls1_c00123{letter-spacing:0.000000pt;}
.ls0_c00123{letter-spacing:0.012800pt;}
.ws0_c00123{word-spacing:-17.804800pt;}
.ws1_c00123{word-spacing:0.000000pt;}
._e_c00123{margin-left:-0.897067pt;}
._6_c00123{width:1.555200pt;}
._4_c00123{width:2.937600pt;}
._9_c00123{width:3.897600pt;}
._3_c00123{width:5.164800pt;}
._a_c00123{width:6.470400pt;}
._d_c00123{width:8.327467pt;}
._5_c00123{width:10.905600pt;}
._8_c00123{width:12.224000pt;}
._b_c00123{width:14.649600pt;}
._7_c00123{width:16.844800pt;}
._10_c00123{width:20.832000pt;}
._f_c00123{width:24.761600pt;}
._c_c00123{width:25.683200pt;}
._1_c00123{width:943.541333pt;}
._2_c00123{width:1019.274667pt;}
._0_c00123{width:1848.607733pt;}
.fs1_c00123{font-size:47.360000pt;}
.fs0_c00123{font-size:64.000000pt;}
.y0_c00123{bottom:0.000000pt;}
.y5_c00123{bottom:3.520000pt;}
.y1_c00123{bottom:16.666667pt;}
.y3_c00123{bottom:32.373360pt;}
.y4_c00123{bottom:42.000027pt;}
.y1e_c00123{bottom:113.013360pt;}
.y1d_c00123{bottom:149.813333pt;}
.y1c_c00123{bottom:186.613333pt;}
.y1b_c00123{bottom:223.413333pt;}
.y1a_c00123{bottom:260.213333pt;}
.y19_c00123{bottom:297.013333pt;}
.y18_c00123{bottom:333.813333pt;}
.y17_c00123{bottom:370.613333pt;}
.y16_c00123{bottom:407.413333pt;}
.y15_c00123{bottom:444.213333pt;}
.y14_c00123{bottom:481.013333pt;}
.y13_c00123{bottom:517.813333pt;}
.y12_c00123{bottom:554.613333pt;}
.y11_c00123{bottom:591.413333pt;}
.y10_c00123{bottom:628.213333pt;}
.yf_c00123{bottom:665.013333pt;}
.ye_c00123{bottom:701.813333pt;}
.yd_c00123{bottom:738.613333pt;}
.yc_c00123{bottom:775.413333pt;}
.yb_c00123{bottom:812.213333pt;}
.ya_c00123{bottom:849.013333pt;}
.y9_c00123{bottom:885.813333pt;}
.y8_c00123{bottom:922.613333pt;}
.y7_c00123{bottom:959.413333pt;}
.y6_c00123{bottom:996.213333pt;}
.y2_c00123{bottom:1043.253333pt;}
.h3_c00123{height:18.240000pt;}
.h4_c00123{height:57.218750pt;}
.h2_c00123{height:57.375000pt;}
.h1_c00123{height:1089.333333pt;}
.h0_c00123{height:1122.666667pt;}
.w2_c00123{width:26.880000pt;}
.w1_c00123{width:760.000000pt;}
.w0_c00123{width:793.333333pt;}
.x0_c00123{left:0.000000pt;}
.x1_c00123{left:16.666667pt;}
.x2_c00123{left:97.279933pt;}
.x5_c00123{left:135.080133pt;}
.x3_c00123{left:140.213200pt;}
.x4_c00123{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_581942ed69a61dc159014676.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00124;src:url('chunks/assets/font_24e41b85279712a2955b47b7.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00124{vertical-align:0.000000px;}
.ls1_c00124{letter-spacing:0.000000px;}
.ls0_c00124{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00124{word-spacing:0.000000px;}
._3_c00124{margin-left:-1.005000px;}
._a_c00124{width:1.087200px;}
._8_c00124{width:3.182400px;}
._b_c00124{width:4.773600px;}
._c_c00124{width:5.922000px;}
._7_c00124{width:7.407000px;}
._6_c00124{width:8.532000px;}
._d_c00124{width:9.698400px;}
._2_c00124{width:10.699200px;}
._5_c00124{width:11.721600px;}
._1_c00124{width:12.866400px;}
._e_c00124{width:17.791200px;}
._4_c00124{width:30.621600px;}
._9_c00124{width:39.333600px;}
._0_c00124{width:1146.683400px;}
.fc1_c00124{color:transparent;}
.fc0_c00124{color:rgb(0,0,0);}
.fs0_c00124{font-size:72.000000px;}
.y0_c00124{bottom:0.000000px;}
.y4_c00124{bottom:4.320000px;}
.y1_c00124{bottom:18.750000px;}
.y2_c00124{bottom:37.860030px;}
.y3_c00124{bottom:52.290030px;}
.y1d_c00124{bottom:127.140030px;}
.y1c_c00124{bottom:168.540000px;}
.y1b_c00124{bottom:209.940000px;}
.y1a_c00124{bottom:251.340000px;}
.y19_c00124{bottom:292.740000px;}
.y18_c00124{bottom:334.140000px;}
.y17_c00124{bottom:375.540000px;}
.y16_c00124{bottom:416.940000px;}
.y15_c00124{bottom:458.340000px;}
.y14_c00124{bottom:499.740000px;}
.y13_c00124{bottom:541.140000px;}
.y12_c00124{bottom:582.540000px;}
.y11_c00124{bottom:623.940000px;}
.y10_c00124{bottom:665.340000px;}
.yf_c00124{bottom:706.740000px;}
.ye_c00124{bottom:748.140000px;}
.yd_c00124{bottom:789.540000px;}
.yc_c00124{bottom:830.940000px;}
.yb_c00124{bottom:872.340000px;}
.ya_c00124{bottom:913.740000px;}
.y9_c00124{bottom:955.140000px;}
.y8_c00124{bottom:996.540000px;}
.y7_c00124{bottom:1037.940000px;}
.y6_c00124{bottom:1079.340000px;}
.y5_c00124{bottom:1120.740000px;}
.h3_c00124{height:20.880000px;}
.h4_c00124{height:64.371094px;}
.h2_c00124{height:64.546875px;}
.h1_c00124{height:1225.500000px;}
.h0_c00124{height:1263.000000px;}
.w2_c00124{width:30.240000px;}
.w1_c00124{width:855.000000px;}
.w0_c00124{width:892.500000px;}
.x0_c00124{left:0.000000px;}
.x1_c00124{left:18.750000px;}
.x3_c00124{left:128.190000px;}
.x2_c00124{left:136.440000px;}
.x4_c00124{left:151.965150px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls1_c00124{letter-spacing:0.000000pt;}
.ls0_c00124{letter-spacing:0.012800pt;}
.ws0_c00124{word-spacing:-17.804800pt;}
.ws1_c00124{word-spacing:0.000000pt;}
._3_c00124{margin-left:-0.893333pt;}
._a_c00124{width:0.966400pt;}
._8_c00124{width:2.828800pt;}
._b_c00124{width:4.243200pt;}
._c_c00124{width:5.264000pt;}
._7_c00124{width:6.584000pt;}
._6_c00124{width:7.584000pt;}
._d_c00124{width:8.620800pt;}
._2_c00124{width:9.510400pt;}
._5_c00124{width:10.419200pt;}
._1_c00124{width:11.436800pt;}
._e_c00124{width:15.814400pt;}
._4_c00124{width:27.219200pt;}
._9_c00124{width:34.963200pt;}
._0_c00124{width:1019.274133pt;}
.fs0_c00124{font-size:64.000000pt;}
.y0_c00124{bottom:0.000000pt;}
.y4_c00124{bottom:3.840000pt;}
.y1_c00124{bottom:16.666667pt;}
.y2_c00124{bottom:33.653360pt;}
.y3_c00124{bottom:46.480027pt;}
.y1d_c00124{bottom:113.013360pt;}
.y1c_c00124{bottom:149.813333pt;}
.y1b_c00124{bottom:186.613333pt;}
.y1a_c00124{bottom:223.413333pt;}
.y19_c00124{bottom:260.213333pt;}
.y18_c00124{bottom:297.013333pt;}
.y17_c00124{bottom:333.813333pt;}
.y16_c00124{bottom:370.613333pt;}
.y15_c00124{bottom:407.413333pt;}
.y14_c00124{bottom:444.213333pt;}
.y13_c00124{bottom:481.013333pt;}
.y12_c00124{bottom:517.813333pt;}
.y11_c00124{bottom:554.613333pt;}
.y10_c00124{bottom:591.413333pt;}
.yf_c00124{bottom:628.213333pt;}
.ye_c00124{bottom:665.013333pt;}
.yd_c00124{bottom:701.813333pt;}
.yc_c00124{bottom:738.613333pt;}
.yb_c00124{bottom:775.413333pt;}
.ya_c00124{bottom:812.213333pt;}
.y9_c00124{bottom:849.013333pt;}
.y8_c00124{bottom:885.813333pt;}
.y7_c00124{bottom:922.613333pt;}
.y6_c00124{bottom:959.413333pt;}
.y5_c00124{bottom:996.213333pt;}
.h3_c00124{height:18.560000pt;}
.h4_c00124{height:57.218750pt;}
.h2_c00124{height:57.375000pt;}
.h1_c00124{height:1089.333333pt;}
.h0_c00124{height:1122.666667pt;}
.w2_c00124{width:26.880000pt;}
.w1_c00124{width:760.000000pt;}
.w0_c00124{width:793.333333pt;}
.x0_c00124{left:0.000000pt;}
.x1_c00124{left:16.666667pt;}
.x3_c00124{left:113.946667pt;}
.x2_c00124{left:121.280000pt;}
.x4_c00124{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_020a593cfa126afa53d9b10a.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00125;src:url('chunks/assets/font_76533c1dad4935a58a7600c1.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.104492;font-style: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:0.014400px;}
.ls2_c00125{letter-spacing:0.108000px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00125{word-spacing:-20.124000px;}
.ws0_c00125{word-spacing:-20.030400px;}
.ws2_c00125{word-spacing:0.000000px;}
._13_c00125{width:1.015200px;}
._16_c00125{width:2.484000px;}
._c_c00125{width:4.147200px;}
._11_c00125{width:5.414400px;}
._8_c00125{width:7.056000px;}
._e_c00125{width:8.236800px;}
._12_c00125{width:9.532800px;}
._f_c00125{width:10.800000px;}
._b_c00125{width:11.851200px;}
._15_c00125{width:13.802400px;}
._d_c00125{width:17.611200px;}
._3_c00125{width:23.316000px;}
._4_c00125{width:24.376800px;}
._14_c00125{width:28.692000px;}
._5_c00125{width:29.880000px;}
._10_c00125{width:34.632000px;}
._7_c00125{width:36.540000px;}
._9_c00125{width:40.766400px;}
._a_c00125{width:50.054400px;}
._6_c00125{width:65.037600px;}
._1_c00125{width:1061.484000px;}
._2_c00125{width:1146.684000px;}
._0_c00125{width:2079.683700px;}
.fc1_c00125{color:transparent;}
.fc0_c00125{color:rgb(0,0,0);}
.fs1_c00125{font-size:53.280000px;}
.fs0_c00125{font-size:72.000000px;}
.y0_c00125{bottom:0.000000px;}
.y5_c00125{bottom:3.960000px;}
.y1_c00125{bottom:18.750000px;}
.y3_c00125{bottom:36.420030px;}
.y4_c00125{bottom:47.250030px;}
.y1e_c00125{bottom:127.140030px;}
.y1d_c00125{bottom:168.540000px;}
.y1c_c00125{bottom:209.940000px;}
.y1b_c00125{bottom:251.340000px;}
.y1a_c00125{bottom:292.740000px;}
.y19_c00125{bottom:334.140000px;}
.y18_c00125{bottom:375.540000px;}
.y17_c00125{bottom:416.940000px;}
.y16_c00125{bottom:458.340000px;}
.y15_c00125{bottom:499.740000px;}
.y14_c00125{bottom:541.140000px;}
.y13_c00125{bottom:582.540000px;}
.y12_c00125{bottom:623.940000px;}
.y11_c00125{bottom:665.340000px;}
.y10_c00125{bottom:706.740000px;}
.yf_c00125{bottom:748.140000px;}
.ye_c00125{bottom:789.540000px;}
.yd_c00125{bottom:830.940000px;}
.yc_c00125{bottom:872.340000px;}
.yb_c00125{bottom:913.740000px;}
.ya_c00125{bottom:955.140000px;}
.y9_c00125{bottom:996.540000px;}
.y8_c00125{bottom:1037.940000px;}
.y7_c00125{bottom:1079.340000px;}
.y6_c00125{bottom:1120.740000px;}
.y2_c00125{bottom:1173.660000px;}
.h3_c00125{height:20.520000px;}
.h4_c00125{height:64.371094px;}
.h2_c00125{height:64.546875px;}
.h1_c00125{height:1225.500000px;}
.h0_c00125{height:1263.000000px;}
.w2_c00125{width:30.240000px;}
.w1_c00125{width:855.000000px;}
.w0_c00125{width:892.500000px;}
.x0_c00125{left:0.000000px;}
.x1_c00125{left:18.750000px;}
.x2_c00125{left:109.439925px;}
.x5_c00125{left:151.965150px;}
.x3_c00125{left:157.739850px;}
.x4_c00125{left:735.510000px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls1_c00125{letter-spacing:0.000000pt;}
.ls0_c00125{letter-spacing:0.012800pt;}
.ls2_c00125{letter-spacing:0.096000pt;}
.ws1_c00125{word-spacing:-17.888000pt;}
.ws0_c00125{word-spacing:-17.804800pt;}
.ws2_c00125{word-spacing:0.000000pt;}
._13_c00125{width:0.902400pt;}
._16_c00125{width:2.208000pt;}
._c_c00125{width:3.686400pt;}
._11_c00125{width:4.812800pt;}
._8_c00125{width:6.272000pt;}
._e_c00125{width:7.321600pt;}
._12_c00125{width:8.473600pt;}
._f_c00125{width:9.600000pt;}
._b_c00125{width:10.534400pt;}
._15_c00125{width:12.268800pt;}
._d_c00125{width:15.654400pt;}
._3_c00125{width:20.725333pt;}
._4_c00125{width:21.668267pt;}
._14_c00125{width:25.504000pt;}
._5_c00125{width:26.560000pt;}
._10_c00125{width:30.784000pt;}
._7_c00125{width:32.480000pt;}
._9_c00125{width:36.236800pt;}
._a_c00125{width:44.492800pt;}
._6_c00125{width:57.811200pt;}
._1_c00125{width:943.541333pt;}
._2_c00125{width:1019.274667pt;}
._0_c00125{width:1848.607733pt;}
.fs1_c00125{font-size:47.360000pt;}
.fs0_c00125{font-size:64.000000pt;}
.y0_c00125{bottom:0.000000pt;}
.y5_c00125{bottom:3.520000pt;}
.y1_c00125{bottom:16.666667pt;}
.y3_c00125{bottom:32.373360pt;}
.y4_c00125{bottom:42.000027pt;}
.y1e_c00125{bottom:113.013360pt;}
.y1d_c00125{bottom:149.813333pt;}
.y1c_c00125{bottom:186.613333pt;}
.y1b_c00125{bottom:223.413333pt;}
.y1a_c00125{bottom:260.213333pt;}
.y19_c00125{bottom:297.013333pt;}
.y18_c00125{bottom:333.813333pt;}
.y17_c00125{bottom:370.613333pt;}
.y16_c00125{bottom:407.413333pt;}
.y15_c00125{bottom:444.213333pt;}
.y14_c00125{bottom:481.013333pt;}
.y13_c00125{bottom:517.813333pt;}
.y12_c00125{bottom:554.613333pt;}
.y11_c00125{bottom:591.413333pt;}
.y10_c00125{bottom:628.213333pt;}
.yf_c00125{bottom:665.013333pt;}
.ye_c00125{bottom:701.813333pt;}
.yd_c00125{bottom:738.613333pt;}
.yc_c00125{bottom:775.413333pt;}
.yb_c00125{bottom:812.213333pt;}
.ya_c00125{bottom:849.013333pt;}
.y9_c00125{bottom:885.813333pt;}
.y8_c00125{bottom:922.613333pt;}
.y7_c00125{bottom:959.413333pt;}
.y6_c00125{bottom:996.213333pt;}
.y2_c00125{bottom:1043.253333pt;}
.h3_c00125{height:18.240000pt;}
.h4_c00125{height:57.218750pt;}
.h2_c00125{height:57.375000pt;}
.h1_c00125{height:1089.333333pt;}
.h0_c00125{height:1122.666667pt;}
.w2_c00125{width:26.880000pt;}
.w1_c00125{width:760.000000pt;}
.w0_c00125{width:793.333333pt;}
.x0_c00125{left:0.000000pt;}
.x1_c00125{left:16.666667pt;}
.x2_c00125{left:97.279933pt;}
.x5_c00125{left:135.080133pt;}
.x3_c00125{left:140.213200pt;}
.x4_c00125{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec345d949f81e15a1573b0f1.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00126;src:url('chunks/assets/font_b24a3bdba3b8a7d764a2014b.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.104492;font-style: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;}
.ls1_c00126{letter-spacing:0.000000px;}
.ls0_c00126{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00126{word-spacing:0.000000px;}
._b_c00126{margin-left:-1.000800px;}
._e_c00126{width:1.000800px;}
._12_c00126{width:2.232000px;}
._3_c00126{width:3.391200px;}
._c_c00126{width:5.011200px;}
._7_c00126{width:6.012000px;}
._4_c00126{width:7.048800px;}
._13_c00126{width:8.092800px;}
._10_c00126{width:10.209600px;}
._5_c00126{width:11.304000px;}
._2_c00126{width:12.477600px;}
._a_c00126{width:17.496000px;}
._d_c00126{width:18.504000px;}
._1_c00126{width:22.766400px;}
._6_c00126{width:26.892000px;}
._f_c00126{width:27.921600px;}
._11_c00126{width:35.884800px;}
._9_c00126{width:43.053600px;}
._8_c00126{width:44.114400px;}
._0_c00126{width:1146.683400px;}
.fc1_c00126{color:transparent;}
.fc0_c00126{color:rgb(0,0,0);}
.fs0_c00126{font-size:72.000000px;}
.y0_c00126{bottom:0.000000px;}
.y4_c00126{bottom:4.320000px;}
.y1_c00126{bottom:18.750000px;}
.y2_c00126{bottom:37.860030px;}
.y3_c00126{bottom:52.290030px;}
.y1c_c00126{bottom:168.540000px;}
.y1b_c00126{bottom:209.940000px;}
.y1a_c00126{bottom:251.340000px;}
.y19_c00126{bottom:292.740000px;}
.y18_c00126{bottom:334.140000px;}
.y17_c00126{bottom:375.540000px;}
.y16_c00126{bottom:416.940000px;}
.y15_c00126{bottom:458.340000px;}
.y14_c00126{bottom:499.740000px;}
.y13_c00126{bottom:541.140000px;}
.y12_c00126{bottom:582.540000px;}
.y11_c00126{bottom:623.940000px;}
.y10_c00126{bottom:665.340000px;}
.yf_c00126{bottom:706.740000px;}
.ye_c00126{bottom:748.140000px;}
.yd_c00126{bottom:789.540000px;}
.yc_c00126{bottom:830.940000px;}
.yb_c00126{bottom:872.340000px;}
.ya_c00126{bottom:913.740000px;}
.y9_c00126{bottom:955.140000px;}
.y8_c00126{bottom:996.540000px;}
.y7_c00126{bottom:1037.940000px;}
.y6_c00126{bottom:1079.340000px;}
.y5_c00126{bottom:1120.740000px;}
.h3_c00126{height:20.880000px;}
.h4_c00126{height:64.371094px;}
.h2_c00126{height:64.546875px;}
.h1_c00126{height:1225.500000px;}
.h0_c00126{height:1263.000000px;}
.w2_c00126{width:30.240000px;}
.w1_c00126{width:855.000000px;}
.w0_c00126{width:892.500000px;}
.x0_c00126{left:0.000000px;}
.x1_c00126{left:18.750000px;}
.x3_c00126{left:128.190000px;}
.x2_c00126{left:136.440000px;}
.x4_c00126{left:151.965150px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls1_c00126{letter-spacing:0.000000pt;}
.ls0_c00126{letter-spacing:0.012800pt;}
.ws0_c00126{word-spacing:-17.804800pt;}
.ws1_c00126{word-spacing:0.000000pt;}
._b_c00126{margin-left:-0.889600pt;}
._e_c00126{width:0.889600pt;}
._12_c00126{width:1.984000pt;}
._3_c00126{width:3.014400pt;}
._c_c00126{width:4.454400pt;}
._7_c00126{width:5.344000pt;}
._4_c00126{width:6.265600pt;}
._13_c00126{width:7.193600pt;}
._10_c00126{width:9.075200pt;}
._5_c00126{width:10.048000pt;}
._2_c00126{width:11.091200pt;}
._a_c00126{width:15.552000pt;}
._d_c00126{width:16.448000pt;}
._1_c00126{width:20.236800pt;}
._6_c00126{width:23.904000pt;}
._f_c00126{width:24.819200pt;}
._11_c00126{width:31.897600pt;}
._9_c00126{width:38.269867pt;}
._8_c00126{width:39.212800pt;}
._0_c00126{width:1019.274133pt;}
.fs0_c00126{font-size:64.000000pt;}
.y0_c00126{bottom:0.000000pt;}
.y4_c00126{bottom:3.840000pt;}
.y1_c00126{bottom:16.666667pt;}
.y2_c00126{bottom:33.653360pt;}
.y3_c00126{bottom:46.480027pt;}
.y1c_c00126{bottom:149.813333pt;}
.y1b_c00126{bottom:186.613333pt;}
.y1a_c00126{bottom:223.413333pt;}
.y19_c00126{bottom:260.213333pt;}
.y18_c00126{bottom:297.013333pt;}
.y17_c00126{bottom:333.813333pt;}
.y16_c00126{bottom:370.613333pt;}
.y15_c00126{bottom:407.413333pt;}
.y14_c00126{bottom:444.213333pt;}
.y13_c00126{bottom:481.013333pt;}
.y12_c00126{bottom:517.813333pt;}
.y11_c00126{bottom:554.613333pt;}
.y10_c00126{bottom:591.413333pt;}
.yf_c00126{bottom:628.213333pt;}
.ye_c00126{bottom:665.013333pt;}
.yd_c00126{bottom:701.813333pt;}
.yc_c00126{bottom:738.613333pt;}
.yb_c00126{bottom:775.413333pt;}
.ya_c00126{bottom:812.213333pt;}
.y9_c00126{bottom:849.013333pt;}
.y8_c00126{bottom:885.813333pt;}
.y7_c00126{bottom:922.613333pt;}
.y6_c00126{bottom:959.413333pt;}
.y5_c00126{bottom:996.213333pt;}
.h3_c00126{height:18.560000pt;}
.h4_c00126{height:57.218750pt;}
.h2_c00126{height:57.375000pt;}
.h1_c00126{height:1089.333333pt;}
.h0_c00126{height:1122.666667pt;}
.w2_c00126{width:26.880000pt;}
.w1_c00126{width:760.000000pt;}
.w0_c00126{width:793.333333pt;}
.x0_c00126{left:0.000000pt;}
.x1_c00126{left:16.666667pt;}
.x3_c00126{left:113.946667pt;}
.x2_c00126{left:121.280000pt;}
.x4_c00126{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cd85d9f8875d28bbb21e84de.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00127;src:url('chunks/assets/font_7af5cafa51273963d2930e56.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.104492;font-style: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;}
.ls1_c00127{letter-spacing:0.000000px;}
.ls0_c00127{letter-spacing:0.014400px;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00127{word-spacing:-20.030400px;}
.ws1_c00127{word-spacing:0.000000px;}
._5_c00127{width:1.339200px;}
._e_c00127{width:3.088800px;}
._d_c00127{width:4.176000px;}
._f_c00127{width:6.847200px;}
._12_c00127{width:9.504000px;}
._a_c00127{width:10.514400px;}
._11_c00127{width:12.801600px;}
._8_c00127{width:15.501600px;}
._b_c00127{width:21.542400px;}
._10_c00127{width:23.896800px;}
._3_c00127{width:25.027200px;}
._4_c00127{width:26.121600px;}
._7_c00127{width:27.619200px;}
._c_c00127{width:35.877600px;}
._13_c00127{width:42.278400px;}
._6_c00127{width:49.701600px;}
._9_c00127{width:60.523200px;}
._1_c00127{width:1061.484000px;}
._2_c00127{width:1146.684000px;}
._0_c00127{width:2079.683700px;}
.fc1_c00127{color:transparent;}
.fc0_c00127{color:rgb(0,0,0);}
.fs1_c00127{font-size:53.280000px;}
.fs0_c00127{font-size:72.000000px;}
.y0_c00127{bottom:0.000000px;}
.y5_c00127{bottom:3.960000px;}
.y1_c00127{bottom:18.750000px;}
.y3_c00127{bottom:36.420030px;}
.y4_c00127{bottom:47.250030px;}
.y1e_c00127{bottom:127.140030px;}
.y1d_c00127{bottom:168.540000px;}
.y1c_c00127{bottom:209.940000px;}
.y1b_c00127{bottom:251.340000px;}
.y1a_c00127{bottom:292.740000px;}
.y19_c00127{bottom:334.140000px;}
.y18_c00127{bottom:375.540000px;}
.y17_c00127{bottom:416.940000px;}
.y16_c00127{bottom:458.340000px;}
.y15_c00127{bottom:499.740000px;}
.y14_c00127{bottom:541.140000px;}
.y13_c00127{bottom:582.540000px;}
.y12_c00127{bottom:623.940000px;}
.y11_c00127{bottom:665.340000px;}
.y10_c00127{bottom:706.740000px;}
.yf_c00127{bottom:748.140000px;}
.ye_c00127{bottom:789.540000px;}
.yd_c00127{bottom:830.940000px;}
.yc_c00127{bottom:872.340000px;}
.yb_c00127{bottom:913.740000px;}
.ya_c00127{bottom:955.140000px;}
.y9_c00127{bottom:996.540000px;}
.y8_c00127{bottom:1037.940000px;}
.y7_c00127{bottom:1079.340000px;}
.y6_c00127{bottom:1120.740000px;}
.y2_c00127{bottom:1173.660000px;}
.h3_c00127{height:20.520000px;}
.h4_c00127{height:64.371094px;}
.h2_c00127{height:64.546875px;}
.h1_c00127{height:1225.500000px;}
.h0_c00127{height:1263.000000px;}
.w2_c00127{width:30.240000px;}
.w1_c00127{width:855.000000px;}
.w0_c00127{width:892.500000px;}
.x0_c00127{left:0.000000px;}
.x1_c00127{left:18.750000px;}
.x2_c00127{left:109.439925px;}
.x5_c00127{left:151.965150px;}
.x3_c00127{left:157.739850px;}
.x4_c00127{left:735.510000px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls1_c00127{letter-spacing:0.000000pt;}
.ls0_c00127{letter-spacing:0.012800pt;}
.ws0_c00127{word-spacing:-17.804800pt;}
.ws1_c00127{word-spacing:0.000000pt;}
._5_c00127{width:1.190400pt;}
._e_c00127{width:2.745600pt;}
._d_c00127{width:3.712000pt;}
._f_c00127{width:6.086400pt;}
._12_c00127{width:8.448000pt;}
._a_c00127{width:9.346133pt;}
._11_c00127{width:11.379200pt;}
._8_c00127{width:13.779200pt;}
._b_c00127{width:19.148800pt;}
._10_c00127{width:21.241600pt;}
._3_c00127{width:22.246400pt;}
._4_c00127{width:23.219200pt;}
._7_c00127{width:24.550400pt;}
._c_c00127{width:31.891200pt;}
._13_c00127{width:37.580800pt;}
._6_c00127{width:44.179200pt;}
._9_c00127{width:53.798400pt;}
._1_c00127{width:943.541333pt;}
._2_c00127{width:1019.274667pt;}
._0_c00127{width:1848.607733pt;}
.fs1_c00127{font-size:47.360000pt;}
.fs0_c00127{font-size:64.000000pt;}
.y0_c00127{bottom:0.000000pt;}
.y5_c00127{bottom:3.520000pt;}
.y1_c00127{bottom:16.666667pt;}
.y3_c00127{bottom:32.373360pt;}
.y4_c00127{bottom:42.000027pt;}
.y1e_c00127{bottom:113.013360pt;}
.y1d_c00127{bottom:149.813333pt;}
.y1c_c00127{bottom:186.613333pt;}
.y1b_c00127{bottom:223.413333pt;}
.y1a_c00127{bottom:260.213333pt;}
.y19_c00127{bottom:297.013333pt;}
.y18_c00127{bottom:333.813333pt;}
.y17_c00127{bottom:370.613333pt;}
.y16_c00127{bottom:407.413333pt;}
.y15_c00127{bottom:444.213333pt;}
.y14_c00127{bottom:481.013333pt;}
.y13_c00127{bottom:517.813333pt;}
.y12_c00127{bottom:554.613333pt;}
.y11_c00127{bottom:591.413333pt;}
.y10_c00127{bottom:628.213333pt;}
.yf_c00127{bottom:665.013333pt;}
.ye_c00127{bottom:701.813333pt;}
.yd_c00127{bottom:738.613333pt;}
.yc_c00127{bottom:775.413333pt;}
.yb_c00127{bottom:812.213333pt;}
.ya_c00127{bottom:849.013333pt;}
.y9_c00127{bottom:885.813333pt;}
.y8_c00127{bottom:922.613333pt;}
.y7_c00127{bottom:959.413333pt;}
.y6_c00127{bottom:996.213333pt;}
.y2_c00127{bottom:1043.253333pt;}
.h3_c00127{height:18.240000pt;}
.h4_c00127{height:57.218750pt;}
.h2_c00127{height:57.375000pt;}
.h1_c00127{height:1089.333333pt;}
.h0_c00127{height:1122.666667pt;}
.w2_c00127{width:26.880000pt;}
.w1_c00127{width:760.000000pt;}
.w0_c00127{width:793.333333pt;}
.x0_c00127{left:0.000000pt;}
.x1_c00127{left:16.666667pt;}
.x2_c00127{left:97.279933pt;}
.x5_c00127{left:135.080133pt;}
.x3_c00127{left:140.213200pt;}
.x4_c00127{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2ca2896fa5a57e2d82537491.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00128;src:url('chunks/assets/font_67955bee95c00f491c0f5145.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.104492;font-style: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;}
.ls1_c00128{letter-spacing:0.000000px;}
.ls0_c00128{letter-spacing:0.014400px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00128{word-spacing:-20.030400px;}
.ws1_c00128{word-spacing:0.000000px;}
._5_c00128{width:1.533600px;}
._2_c00128{width:2.606400px;}
._8_c00128{width:4.615200px;}
._3_c00128{width:5.716800px;}
._f_c00128{width:7.464000px;}
._1_c00128{width:10.332000px;}
._e_c00128{width:13.903200px;}
._12_c00128{width:15.235200px;}
._9_c00128{width:17.935200px;}
._b_c00128{width:22.860000px;}
._16_c00128{width:26.265600px;}
._4_c00128{width:27.396000px;}
._13_c00128{width:29.599200px;}
._11_c00128{width:32.061600px;}
._15_c00128{width:33.148800px;}
._a_c00128{width:34.228800px;}
._17_c00128{width:36.676800px;}
._10_c00128{width:38.851200px;}
._d_c00128{width:43.747200px;}
._c_c00128{width:44.798400px;}
._7_c00128{width:49.125600px;}
._6_c00128{width:50.184000px;}
._14_c00128{width:73.951200px;}
._0_c00128{width:1146.683400px;}
.fc1_c00128{color:transparent;}
.fc0_c00128{color:rgb(0,0,0);}
.fs0_c00128{font-size:72.000000px;}
.y0_c00128{bottom:0.000000px;}
.y4_c00128{bottom:4.320000px;}
.y1_c00128{bottom:18.750000px;}
.y2_c00128{bottom:37.860030px;}
.y3_c00128{bottom:52.290030px;}
.y1c_c00128{bottom:168.540000px;}
.y1b_c00128{bottom:209.940000px;}
.y1a_c00128{bottom:251.340000px;}
.y19_c00128{bottom:292.740000px;}
.y18_c00128{bottom:334.140000px;}
.y17_c00128{bottom:375.540000px;}
.y16_c00128{bottom:416.940000px;}
.y15_c00128{bottom:458.340000px;}
.y14_c00128{bottom:499.740000px;}
.y13_c00128{bottom:541.140000px;}
.y12_c00128{bottom:582.540000px;}
.y11_c00128{bottom:623.940000px;}
.y10_c00128{bottom:665.340000px;}
.yf_c00128{bottom:706.740000px;}
.ye_c00128{bottom:748.140000px;}
.yd_c00128{bottom:789.540000px;}
.yc_c00128{bottom:830.940000px;}
.yb_c00128{bottom:872.340000px;}
.ya_c00128{bottom:913.740000px;}
.y9_c00128{bottom:955.140000px;}
.y8_c00128{bottom:996.540000px;}
.y7_c00128{bottom:1037.940000px;}
.y6_c00128{bottom:1079.340000px;}
.y5_c00128{bottom:1120.740000px;}
.h3_c00128{height:20.880000px;}
.h4_c00128{height:64.371094px;}
.h2_c00128{height:64.546875px;}
.h1_c00128{height:1225.500000px;}
.h0_c00128{height:1263.000000px;}
.w2_c00128{width:30.240000px;}
.w1_c00128{width:855.000000px;}
.w0_c00128{width:892.500000px;}
.x0_c00128{left:0.000000px;}
.x1_c00128{left:18.750000px;}
.x3_c00128{left:128.190000px;}
.x2_c00128{left:136.440000px;}
.x4_c00128{left:151.965150px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls1_c00128{letter-spacing:0.000000pt;}
.ls0_c00128{letter-spacing:0.012800pt;}
.ws0_c00128{word-spacing:-17.804800pt;}
.ws1_c00128{word-spacing:0.000000pt;}
._5_c00128{width:1.363200pt;}
._2_c00128{width:2.316800pt;}
._8_c00128{width:4.102400pt;}
._3_c00128{width:5.081600pt;}
._f_c00128{width:6.634667pt;}
._1_c00128{width:9.184000pt;}
._e_c00128{width:12.358400pt;}
._12_c00128{width:13.542400pt;}
._9_c00128{width:15.942400pt;}
._b_c00128{width:20.320000pt;}
._16_c00128{width:23.347200pt;}
._4_c00128{width:24.352000pt;}
._13_c00128{width:26.310400pt;}
._11_c00128{width:28.499200pt;}
._15_c00128{width:29.465600pt;}
._a_c00128{width:30.425600pt;}
._17_c00128{width:32.601600pt;}
._10_c00128{width:34.534400pt;}
._d_c00128{width:38.886400pt;}
._c_c00128{width:39.820800pt;}
._7_c00128{width:43.667200pt;}
._6_c00128{width:44.608000pt;}
._14_c00128{width:65.734400pt;}
._0_c00128{width:1019.274133pt;}
.fs0_c00128{font-size:64.000000pt;}
.y0_c00128{bottom:0.000000pt;}
.y4_c00128{bottom:3.840000pt;}
.y1_c00128{bottom:16.666667pt;}
.y2_c00128{bottom:33.653360pt;}
.y3_c00128{bottom:46.480027pt;}
.y1c_c00128{bottom:149.813333pt;}
.y1b_c00128{bottom:186.613333pt;}
.y1a_c00128{bottom:223.413333pt;}
.y19_c00128{bottom:260.213333pt;}
.y18_c00128{bottom:297.013333pt;}
.y17_c00128{bottom:333.813333pt;}
.y16_c00128{bottom:370.613333pt;}
.y15_c00128{bottom:407.413333pt;}
.y14_c00128{bottom:444.213333pt;}
.y13_c00128{bottom:481.013333pt;}
.y12_c00128{bottom:517.813333pt;}
.y11_c00128{bottom:554.613333pt;}
.y10_c00128{bottom:591.413333pt;}
.yf_c00128{bottom:628.213333pt;}
.ye_c00128{bottom:665.013333pt;}
.yd_c00128{bottom:701.813333pt;}
.yc_c00128{bottom:738.613333pt;}
.yb_c00128{bottom:775.413333pt;}
.ya_c00128{bottom:812.213333pt;}
.y9_c00128{bottom:849.013333pt;}
.y8_c00128{bottom:885.813333pt;}
.y7_c00128{bottom:922.613333pt;}
.y6_c00128{bottom:959.413333pt;}
.y5_c00128{bottom:996.213333pt;}
.h3_c00128{height:18.560000pt;}
.h4_c00128{height:57.218750pt;}
.h2_c00128{height:57.375000pt;}
.h1_c00128{height:1089.333333pt;}
.h0_c00128{height:1122.666667pt;}
.w2_c00128{width:26.880000pt;}
.w1_c00128{width:760.000000pt;}
.w0_c00128{width:793.333333pt;}
.x0_c00128{left:0.000000pt;}
.x1_c00128{left:16.666667pt;}
.x3_c00128{left:113.946667pt;}
.x2_c00128{left:121.280000pt;}
.x4_c00128{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_961cc65621e7067e4f16f5fe.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00129;src:url('chunks/assets/font_49d318d08e5fddad66b19508.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.104492;font-style: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;}
.ls1_c00129{letter-spacing:0.000000px;}
.ls0_c00129{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00129{word-spacing:0.000000px;}
._3_c00129{width:1.065600px;}
._7_c00129{width:2.736000px;}
._b_c00129{width:4.507200px;}
._6_c00129{width:5.853600px;}
._5_c00129{width:7.531200px;}
._e_c00129{width:8.920800px;}
._a_c00129{width:13.672800px;}
._c_c00129{width:15.040800px;}
._d_c00129{width:17.532000px;}
._8_c00129{width:18.633600px;}
._4_c00129{width:45.957600px;}
._9_c00129{width:50.572800px;}
._1_c00129{width:1061.484000px;}
._2_c00129{width:1146.684000px;}
._0_c00129{width:2079.683700px;}
.fc1_c00129{color:transparent;}
.fc0_c00129{color:rgb(0,0,0);}
.fs1_c00129{font-size:53.280000px;}
.fs0_c00129{font-size:72.000000px;}
.y0_c00129{bottom:0.000000px;}
.y5_c00129{bottom:3.960000px;}
.y1_c00129{bottom:18.750000px;}
.y3_c00129{bottom:36.420030px;}
.y4_c00129{bottom:47.250030px;}
.y1e_c00129{bottom:127.140030px;}
.y1d_c00129{bottom:168.540000px;}
.y1c_c00129{bottom:209.940000px;}
.y1b_c00129{bottom:251.340000px;}
.y1a_c00129{bottom:292.740000px;}
.y19_c00129{bottom:334.140000px;}
.y18_c00129{bottom:375.540000px;}
.y17_c00129{bottom:416.940000px;}
.y16_c00129{bottom:458.340000px;}
.y15_c00129{bottom:499.740000px;}
.y14_c00129{bottom:541.140000px;}
.y13_c00129{bottom:582.540000px;}
.y12_c00129{bottom:623.940000px;}
.y11_c00129{bottom:665.340000px;}
.y10_c00129{bottom:706.740000px;}
.yf_c00129{bottom:748.140000px;}
.ye_c00129{bottom:789.540000px;}
.yd_c00129{bottom:830.940000px;}
.yc_c00129{bottom:872.340000px;}
.yb_c00129{bottom:913.740000px;}
.ya_c00129{bottom:955.140000px;}
.y9_c00129{bottom:996.540000px;}
.y8_c00129{bottom:1037.940000px;}
.y7_c00129{bottom:1079.340000px;}
.y6_c00129{bottom:1120.740000px;}
.y2_c00129{bottom:1173.660000px;}
.h3_c00129{height:20.520000px;}
.h4_c00129{height:64.371094px;}
.h2_c00129{height:64.546875px;}
.h1_c00129{height:1225.500000px;}
.h0_c00129{height:1263.000000px;}
.w2_c00129{width:30.240000px;}
.w1_c00129{width:855.000000px;}
.w0_c00129{width:892.500000px;}
.x0_c00129{left:0.000000px;}
.x1_c00129{left:18.750000px;}
.x2_c00129{left:109.439925px;}
.x5_c00129{left:151.965150px;}
.x3_c00129{left:157.739850px;}
.x4_c00129{left:735.510000px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls1_c00129{letter-spacing:0.000000pt;}
.ls0_c00129{letter-spacing:0.012800pt;}
.ws0_c00129{word-spacing:-17.804800pt;}
.ws1_c00129{word-spacing:0.000000pt;}
._3_c00129{width:0.947200pt;}
._7_c00129{width:2.432000pt;}
._b_c00129{width:4.006400pt;}
._6_c00129{width:5.203200pt;}
._5_c00129{width:6.694400pt;}
._e_c00129{width:7.929600pt;}
._a_c00129{width:12.153600pt;}
._c_c00129{width:13.369600pt;}
._d_c00129{width:15.584000pt;}
._8_c00129{width:16.563200pt;}
._4_c00129{width:40.851200pt;}
._9_c00129{width:44.953600pt;}
._1_c00129{width:943.541333pt;}
._2_c00129{width:1019.274667pt;}
._0_c00129{width:1848.607733pt;}
.fs1_c00129{font-size:47.360000pt;}
.fs0_c00129{font-size:64.000000pt;}
.y0_c00129{bottom:0.000000pt;}
.y5_c00129{bottom:3.520000pt;}
.y1_c00129{bottom:16.666667pt;}
.y3_c00129{bottom:32.373360pt;}
.y4_c00129{bottom:42.000027pt;}
.y1e_c00129{bottom:113.013360pt;}
.y1d_c00129{bottom:149.813333pt;}
.y1c_c00129{bottom:186.613333pt;}
.y1b_c00129{bottom:223.413333pt;}
.y1a_c00129{bottom:260.213333pt;}
.y19_c00129{bottom:297.013333pt;}
.y18_c00129{bottom:333.813333pt;}
.y17_c00129{bottom:370.613333pt;}
.y16_c00129{bottom:407.413333pt;}
.y15_c00129{bottom:444.213333pt;}
.y14_c00129{bottom:481.013333pt;}
.y13_c00129{bottom:517.813333pt;}
.y12_c00129{bottom:554.613333pt;}
.y11_c00129{bottom:591.413333pt;}
.y10_c00129{bottom:628.213333pt;}
.yf_c00129{bottom:665.013333pt;}
.ye_c00129{bottom:701.813333pt;}
.yd_c00129{bottom:738.613333pt;}
.yc_c00129{bottom:775.413333pt;}
.yb_c00129{bottom:812.213333pt;}
.ya_c00129{bottom:849.013333pt;}
.y9_c00129{bottom:885.813333pt;}
.y8_c00129{bottom:922.613333pt;}
.y7_c00129{bottom:959.413333pt;}
.y6_c00129{bottom:996.213333pt;}
.y2_c00129{bottom:1043.253333pt;}
.h3_c00129{height:18.240000pt;}
.h4_c00129{height:57.218750pt;}
.h2_c00129{height:57.375000pt;}
.h1_c00129{height:1089.333333pt;}
.h0_c00129{height:1122.666667pt;}
.w2_c00129{width:26.880000pt;}
.w1_c00129{width:760.000000pt;}
.w0_c00129{width:793.333333pt;}
.x0_c00129{left:0.000000pt;}
.x1_c00129{left:16.666667pt;}
.x2_c00129{left:97.279933pt;}
.x5_c00129{left:135.080133pt;}
.x3_c00129{left:140.213200pt;}
.x4_c00129{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1fb0e1afb0dcc6eec9d2e24f.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00130;src:url('chunks/assets/font_c47018c6ea57bf0a18dc5d7e.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.104492;font-style: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;}
.ls1_c00130{letter-spacing:0.000000px;}
.ls0_c00130{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00130{word-spacing:0.000000px;}
._4_c00130{width:1.202400px;}
._9_c00130{width:2.694600px;}
._b_c00130{width:4.687200px;}
._a_c00130{width:6.228000px;}
._5_c00130{width:7.884000px;}
._e_c00130{width:11.174400px;}
._3_c00130{width:12.333600px;}
._8_c00130{width:13.356000px;}
._1_c00130{width:15.084000px;}
._10_c00130{width:16.228800px;}
._f_c00130{width:23.378400px;}
._7_c00130{width:40.435200px;}
._d_c00130{width:41.695200px;}
._6_c00130{width:51.451200px;}
._2_c00130{width:52.452000px;}
._c_c00130{width:71.964000px;}
._0_c00130{width:1146.683400px;}
.fc1_c00130{color:transparent;}
.fc0_c00130{color:rgb(0,0,0);}
.fs0_c00130{font-size:72.000000px;}
.y0_c00130{bottom:0.000000px;}
.y4_c00130{bottom:4.320000px;}
.y1_c00130{bottom:18.750000px;}
.y2_c00130{bottom:37.860030px;}
.y3_c00130{bottom:52.290030px;}
.y1d_c00130{bottom:127.140030px;}
.y1c_c00130{bottom:168.540000px;}
.y1b_c00130{bottom:209.940000px;}
.y1a_c00130{bottom:251.340000px;}
.y19_c00130{bottom:292.740000px;}
.y18_c00130{bottom:334.140000px;}
.y17_c00130{bottom:375.540000px;}
.y16_c00130{bottom:416.940000px;}
.y15_c00130{bottom:458.340000px;}
.y14_c00130{bottom:499.740000px;}
.y13_c00130{bottom:541.140000px;}
.y12_c00130{bottom:582.540000px;}
.y11_c00130{bottom:623.940000px;}
.y10_c00130{bottom:665.340000px;}
.yf_c00130{bottom:706.740000px;}
.ye_c00130{bottom:748.140000px;}
.yd_c00130{bottom:789.540000px;}
.yc_c00130{bottom:830.940000px;}
.yb_c00130{bottom:872.340000px;}
.ya_c00130{bottom:913.740000px;}
.y9_c00130{bottom:955.140000px;}
.y8_c00130{bottom:996.540000px;}
.y7_c00130{bottom:1037.940000px;}
.y6_c00130{bottom:1079.340000px;}
.y5_c00130{bottom:1120.740000px;}
.h3_c00130{height:20.880000px;}
.h4_c00130{height:64.371094px;}
.h2_c00130{height:64.546875px;}
.h1_c00130{height:1225.500000px;}
.h0_c00130{height:1263.000000px;}
.w2_c00130{width:30.240000px;}
.w1_c00130{width:855.000000px;}
.w0_c00130{width:892.500000px;}
.x0_c00130{left:0.000000px;}
.x1_c00130{left:18.750000px;}
.x3_c00130{left:128.190000px;}
.x2_c00130{left:136.440000px;}
.x4_c00130{left:151.965150px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls1_c00130{letter-spacing:0.000000pt;}
.ls0_c00130{letter-spacing:0.012800pt;}
.ws0_c00130{word-spacing:-17.804800pt;}
.ws1_c00130{word-spacing:0.000000pt;}
._4_c00130{width:1.068800pt;}
._9_c00130{width:2.395200pt;}
._b_c00130{width:4.166400pt;}
._a_c00130{width:5.536000pt;}
._5_c00130{width:7.008000pt;}
._e_c00130{width:9.932800pt;}
._3_c00130{width:10.963200pt;}
._8_c00130{width:11.872000pt;}
._1_c00130{width:13.408000pt;}
._10_c00130{width:14.425600pt;}
._f_c00130{width:20.780800pt;}
._7_c00130{width:35.942400pt;}
._d_c00130{width:37.062400pt;}
._6_c00130{width:45.734400pt;}
._2_c00130{width:46.624000pt;}
._c_c00130{width:63.968000pt;}
._0_c00130{width:1019.274133pt;}
.fs0_c00130{font-size:64.000000pt;}
.y0_c00130{bottom:0.000000pt;}
.y4_c00130{bottom:3.840000pt;}
.y1_c00130{bottom:16.666667pt;}
.y2_c00130{bottom:33.653360pt;}
.y3_c00130{bottom:46.480027pt;}
.y1d_c00130{bottom:113.013360pt;}
.y1c_c00130{bottom:149.813333pt;}
.y1b_c00130{bottom:186.613333pt;}
.y1a_c00130{bottom:223.413333pt;}
.y19_c00130{bottom:260.213333pt;}
.y18_c00130{bottom:297.013333pt;}
.y17_c00130{bottom:333.813333pt;}
.y16_c00130{bottom:370.613333pt;}
.y15_c00130{bottom:407.413333pt;}
.y14_c00130{bottom:444.213333pt;}
.y13_c00130{bottom:481.013333pt;}
.y12_c00130{bottom:517.813333pt;}
.y11_c00130{bottom:554.613333pt;}
.y10_c00130{bottom:591.413333pt;}
.yf_c00130{bottom:628.213333pt;}
.ye_c00130{bottom:665.013333pt;}
.yd_c00130{bottom:701.813333pt;}
.yc_c00130{bottom:738.613333pt;}
.yb_c00130{bottom:775.413333pt;}
.ya_c00130{bottom:812.213333pt;}
.y9_c00130{bottom:849.013333pt;}
.y8_c00130{bottom:885.813333pt;}
.y7_c00130{bottom:922.613333pt;}
.y6_c00130{bottom:959.413333pt;}
.y5_c00130{bottom:996.213333pt;}
.h3_c00130{height:18.560000pt;}
.h4_c00130{height:57.218750pt;}
.h2_c00130{height:57.375000pt;}
.h1_c00130{height:1089.333333pt;}
.h0_c00130{height:1122.666667pt;}
.w2_c00130{width:26.880000pt;}
.w1_c00130{width:760.000000pt;}
.w0_c00130{width:793.333333pt;}
.x0_c00130{left:0.000000pt;}
.x1_c00130{left:16.666667pt;}
.x3_c00130{left:113.946667pt;}
.x2_c00130{left:121.280000pt;}
.x4_c00130{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3594c9823d4e1cc5c3b99e7b.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00131;src:url('chunks/assets/font_7b5adf39e45a697992be1174.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00131{vertical-align:0.000000px;}
.ls1_c00131{letter-spacing:0.000000px;}
.ls0_c00131{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00131{word-spacing:0.000000px;}
._5_c00131{width:1.216800px;}
._12_c00131{width:2.239200px;}
._9_c00131{width:3.492000px;}
._4_c00131{width:4.888800px;}
._f_c00131{width:7.509600px;}
._d_c00131{width:8.856000px;}
._a_c00131{width:11.412000px;}
._6_c00131{width:12.578400px;}
._11_c00131{width:13.701600px;}
._c_c00131{width:15.854400px;}
._7_c00131{width:21.067200px;}
._8_c00131{width:22.089600px;}
._e_c00131{width:24.004800px;}
._10_c00131{width:27.482400px;}
._3_c00131{width:37.670400px;}
._b_c00131{width:61.884000px;}
._1_c00131{width:1061.484000px;}
._2_c00131{width:1146.684000px;}
._0_c00131{width:2079.683700px;}
.fc1_c00131{color:transparent;}
.fc0_c00131{color:rgb(0,0,0);}
.fs1_c00131{font-size:53.280000px;}
.fs0_c00131{font-size:72.000000px;}
.y0_c00131{bottom:0.000000px;}
.y5_c00131{bottom:3.960000px;}
.y1_c00131{bottom:18.750000px;}
.y3_c00131{bottom:36.420030px;}
.y4_c00131{bottom:47.250030px;}
.y1e_c00131{bottom:127.140030px;}
.y1d_c00131{bottom:168.540000px;}
.y1c_c00131{bottom:209.940000px;}
.y1b_c00131{bottom:251.340000px;}
.y1a_c00131{bottom:292.740000px;}
.y19_c00131{bottom:334.140000px;}
.y18_c00131{bottom:375.540000px;}
.y17_c00131{bottom:416.940000px;}
.y16_c00131{bottom:458.340000px;}
.y15_c00131{bottom:499.740000px;}
.y14_c00131{bottom:541.140000px;}
.y13_c00131{bottom:582.540000px;}
.y12_c00131{bottom:623.940000px;}
.y11_c00131{bottom:665.340000px;}
.y10_c00131{bottom:706.740000px;}
.yf_c00131{bottom:748.140000px;}
.ye_c00131{bottom:789.540000px;}
.yd_c00131{bottom:830.940000px;}
.yc_c00131{bottom:872.340000px;}
.yb_c00131{bottom:913.740000px;}
.ya_c00131{bottom:955.140000px;}
.y9_c00131{bottom:996.540000px;}
.y8_c00131{bottom:1037.940000px;}
.y7_c00131{bottom:1079.340000px;}
.y6_c00131{bottom:1120.740000px;}
.y2_c00131{bottom:1173.660000px;}
.h3_c00131{height:20.520000px;}
.h4_c00131{height:64.371094px;}
.h2_c00131{height:64.546875px;}
.h1_c00131{height:1225.500000px;}
.h0_c00131{height:1263.000000px;}
.w2_c00131{width:30.240000px;}
.w1_c00131{width:855.000000px;}
.w0_c00131{width:892.500000px;}
.x0_c00131{left:0.000000px;}
.x1_c00131{left:18.750000px;}
.x2_c00131{left:109.439925px;}
.x5_c00131{left:151.965150px;}
.x3_c00131{left:157.739850px;}
.x4_c00131{left:735.510000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls1_c00131{letter-spacing:0.000000pt;}
.ls0_c00131{letter-spacing:0.012800pt;}
.ws0_c00131{word-spacing:-17.804800pt;}
.ws1_c00131{word-spacing:0.000000pt;}
._5_c00131{width:1.081600pt;}
._12_c00131{width:1.990400pt;}
._9_c00131{width:3.104000pt;}
._4_c00131{width:4.345600pt;}
._f_c00131{width:6.675200pt;}
._d_c00131{width:7.872000pt;}
._a_c00131{width:10.144000pt;}
._6_c00131{width:11.180800pt;}
._11_c00131{width:12.179200pt;}
._c_c00131{width:14.092800pt;}
._7_c00131{width:18.726400pt;}
._8_c00131{width:19.635200pt;}
._e_c00131{width:21.337600pt;}
._10_c00131{width:24.428800pt;}
._3_c00131{width:33.484800pt;}
._b_c00131{width:55.008000pt;}
._1_c00131{width:943.541333pt;}
._2_c00131{width:1019.274667pt;}
._0_c00131{width:1848.607733pt;}
.fs1_c00131{font-size:47.360000pt;}
.fs0_c00131{font-size:64.000000pt;}
.y0_c00131{bottom:0.000000pt;}
.y5_c00131{bottom:3.520000pt;}
.y1_c00131{bottom:16.666667pt;}
.y3_c00131{bottom:32.373360pt;}
.y4_c00131{bottom:42.000027pt;}
.y1e_c00131{bottom:113.013360pt;}
.y1d_c00131{bottom:149.813333pt;}
.y1c_c00131{bottom:186.613333pt;}
.y1b_c00131{bottom:223.413333pt;}
.y1a_c00131{bottom:260.213333pt;}
.y19_c00131{bottom:297.013333pt;}
.y18_c00131{bottom:333.813333pt;}
.y17_c00131{bottom:370.613333pt;}
.y16_c00131{bottom:407.413333pt;}
.y15_c00131{bottom:444.213333pt;}
.y14_c00131{bottom:481.013333pt;}
.y13_c00131{bottom:517.813333pt;}
.y12_c00131{bottom:554.613333pt;}
.y11_c00131{bottom:591.413333pt;}
.y10_c00131{bottom:628.213333pt;}
.yf_c00131{bottom:665.013333pt;}
.ye_c00131{bottom:701.813333pt;}
.yd_c00131{bottom:738.613333pt;}
.yc_c00131{bottom:775.413333pt;}
.yb_c00131{bottom:812.213333pt;}
.ya_c00131{bottom:849.013333pt;}
.y9_c00131{bottom:885.813333pt;}
.y8_c00131{bottom:922.613333pt;}
.y7_c00131{bottom:959.413333pt;}
.y6_c00131{bottom:996.213333pt;}
.y2_c00131{bottom:1043.253333pt;}
.h3_c00131{height:18.240000pt;}
.h4_c00131{height:57.218750pt;}
.h2_c00131{height:57.375000pt;}
.h1_c00131{height:1089.333333pt;}
.h0_c00131{height:1122.666667pt;}
.w2_c00131{width:26.880000pt;}
.w1_c00131{width:760.000000pt;}
.w0_c00131{width:793.333333pt;}
.x0_c00131{left:0.000000pt;}
.x1_c00131{left:16.666667pt;}
.x2_c00131{left:97.279933pt;}
.x5_c00131{left:135.080133pt;}
.x3_c00131{left:140.213200pt;}
.x4_c00131{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_92d4748bee79ad6f068077b0.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00132;src:url('chunks/assets/font_d22f2477dacbdd86df06e866.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00132{vertical-align:0.000000px;}
.ls1_c00132{letter-spacing:0.000000px;}
.ls0_c00132{letter-spacing:0.014400px;}
.sc__c00132{text-shadow:none;}
.sc0_c00132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00132{-webkit-text-stroke:0px transparent;}
.sc0_c00132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00132{word-spacing:-20.030400px;}
.ws1_c00132{word-spacing:0.000000px;}
._9_c00132{margin-left:-1.008000px;}
._5_c00132{width:1.012200px;}
._4_c00132{width:2.270400px;}
._2_c00132{width:3.290400px;}
._1_c00132{width:4.658400px;}
._3_c00132{width:5.860800px;}
._8_c00132{width:7.855200px;}
._a_c00132{width:9.237600px;}
._6_c00132{width:10.267200px;}
._c_c00132{width:11.268000px;}
._7_c00132{width:12.715200px;}
._b_c00132{width:15.307200px;}
._d_c00132{width:21.107400px;}
._e_c00132{width:27.892800px;}
._0_c00132{width:1146.683400px;}
.fc1_c00132{color:transparent;}
.fc0_c00132{color:rgb(0,0,0);}
.fs0_c00132{font-size:72.000000px;}
.y0_c00132{bottom:0.000000px;}
.y4_c00132{bottom:4.320000px;}
.y1_c00132{bottom:18.750000px;}
.y2_c00132{bottom:37.860030px;}
.y3_c00132{bottom:52.290030px;}
.y1d_c00132{bottom:127.140030px;}
.y1c_c00132{bottom:168.540000px;}
.y1b_c00132{bottom:209.940000px;}
.y1a_c00132{bottom:251.340000px;}
.y19_c00132{bottom:292.740000px;}
.y18_c00132{bottom:334.140000px;}
.y17_c00132{bottom:375.540000px;}
.y16_c00132{bottom:416.940000px;}
.y15_c00132{bottom:458.340000px;}
.y14_c00132{bottom:499.740000px;}
.y13_c00132{bottom:541.140000px;}
.y12_c00132{bottom:582.540000px;}
.y11_c00132{bottom:623.940000px;}
.y10_c00132{bottom:665.340000px;}
.yf_c00132{bottom:706.740000px;}
.ye_c00132{bottom:748.140000px;}
.yd_c00132{bottom:789.540000px;}
.yc_c00132{bottom:830.940000px;}
.yb_c00132{bottom:872.340000px;}
.ya_c00132{bottom:913.740000px;}
.y9_c00132{bottom:955.140000px;}
.y8_c00132{bottom:996.540000px;}
.y7_c00132{bottom:1037.940000px;}
.y6_c00132{bottom:1079.340000px;}
.y5_c00132{bottom:1120.740000px;}
.h3_c00132{height:20.880000px;}
.h4_c00132{height:64.371094px;}
.h2_c00132{height:64.546875px;}
.h1_c00132{height:1225.500000px;}
.h0_c00132{height:1263.000000px;}
.w2_c00132{width:30.240000px;}
.w1_c00132{width:855.000000px;}
.w0_c00132{width:892.500000px;}
.x0_c00132{left:0.000000px;}
.x1_c00132{left:18.750000px;}
.x3_c00132{left:128.190000px;}
.x2_c00132{left:136.440000px;}
.x4_c00132{left:151.965150px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls1_c00132{letter-spacing:0.000000pt;}
.ls0_c00132{letter-spacing:0.012800pt;}
.ws0_c00132{word-spacing:-17.804800pt;}
.ws1_c00132{word-spacing:0.000000pt;}
._9_c00132{margin-left:-0.896000pt;}
._5_c00132{width:0.899733pt;}
._4_c00132{width:2.018133pt;}
._2_c00132{width:2.924800pt;}
._1_c00132{width:4.140800pt;}
._3_c00132{width:5.209600pt;}
._8_c00132{width:6.982400pt;}
._a_c00132{width:8.211200pt;}
._6_c00132{width:9.126400pt;}
._c_c00132{width:10.016000pt;}
._7_c00132{width:11.302400pt;}
._b_c00132{width:13.606400pt;}
._d_c00132{width:18.762133pt;}
._e_c00132{width:24.793600pt;}
._0_c00132{width:1019.274133pt;}
.fs0_c00132{font-size:64.000000pt;}
.y0_c00132{bottom:0.000000pt;}
.y4_c00132{bottom:3.840000pt;}
.y1_c00132{bottom:16.666667pt;}
.y2_c00132{bottom:33.653360pt;}
.y3_c00132{bottom:46.480027pt;}
.y1d_c00132{bottom:113.013360pt;}
.y1c_c00132{bottom:149.813333pt;}
.y1b_c00132{bottom:186.613333pt;}
.y1a_c00132{bottom:223.413333pt;}
.y19_c00132{bottom:260.213333pt;}
.y18_c00132{bottom:297.013333pt;}
.y17_c00132{bottom:333.813333pt;}
.y16_c00132{bottom:370.613333pt;}
.y15_c00132{bottom:407.413333pt;}
.y14_c00132{bottom:444.213333pt;}
.y13_c00132{bottom:481.013333pt;}
.y12_c00132{bottom:517.813333pt;}
.y11_c00132{bottom:554.613333pt;}
.y10_c00132{bottom:591.413333pt;}
.yf_c00132{bottom:628.213333pt;}
.ye_c00132{bottom:665.013333pt;}
.yd_c00132{bottom:701.813333pt;}
.yc_c00132{bottom:738.613333pt;}
.yb_c00132{bottom:775.413333pt;}
.ya_c00132{bottom:812.213333pt;}
.y9_c00132{bottom:849.013333pt;}
.y8_c00132{bottom:885.813333pt;}
.y7_c00132{bottom:922.613333pt;}
.y6_c00132{bottom:959.413333pt;}
.y5_c00132{bottom:996.213333pt;}
.h3_c00132{height:18.560000pt;}
.h4_c00132{height:57.218750pt;}
.h2_c00132{height:57.375000pt;}
.h1_c00132{height:1089.333333pt;}
.h0_c00132{height:1122.666667pt;}
.w2_c00132{width:26.880000pt;}
.w1_c00132{width:760.000000pt;}
.w0_c00132{width:793.333333pt;}
.x0_c00132{left:0.000000pt;}
.x1_c00132{left:16.666667pt;}
.x3_c00132{left:113.946667pt;}
.x2_c00132{left:121.280000pt;}
.x4_c00132{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb344d08ac65b014edb19955.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00133;src:url('chunks/assets/font_c243264b50966f6d79834d40.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00133;src:url('chunks/assets/font_d326ef1103645483339e28b9.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:1.113281;font-style: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;}
.ls2_c00133{letter-spacing:-0.014400px;}
.ls1_c00133{letter-spacing:0.000000px;}
.ls0_c00133{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00133{word-spacing:0.000000px;}
._4_c00133{width:1.749600px;}
._9_c00133{width:2.944800px;}
._f_c00133{width:4.176000px;}
._b_c00133{width:6.550500px;}
._d_c00133{width:8.467200px;}
._8_c00133{width:10.756800px;}
._3_c00133{width:12.268800px;}
._6_c00133{width:14.184000px;}
._e_c00133{width:15.624000px;}
._a_c00133{width:17.488800px;}
._5_c00133{width:18.950400px;}
._7_c00133{width:27.172800px;}
._c_c00133{width:28.908000px;}
._1_c00133{width:1061.484000px;}
._2_c00133{width:1146.684000px;}
._0_c00133{width:2079.683700px;}
.fc1_c00133{color:transparent;}
.fc0_c00133{color:rgb(0,0,0);}
.fs1_c00133{font-size:53.280000px;}
.fs0_c00133{font-size:72.000000px;}
.y0_c00133{bottom:0.000000px;}
.y5_c00133{bottom:3.960000px;}
.y1_c00133{bottom:18.750000px;}
.y3_c00133{bottom:36.420030px;}
.y4_c00133{bottom:47.250030px;}
.y1d_c00133{bottom:150.540000px;}
.y1c_c00133{bottom:191.940000px;}
.y1b_c00133{bottom:233.340000px;}
.y1a_c00133{bottom:274.740000px;}
.y19_c00133{bottom:316.140000px;}
.y18_c00133{bottom:357.540000px;}
.y17_c00133{bottom:398.940000px;}
.y16_c00133{bottom:440.340000px;}
.y15_c00133{bottom:481.740000px;}
.y14_c00133{bottom:523.140000px;}
.y13_c00133{bottom:564.540000px;}
.y12_c00133{bottom:605.940000px;}
.y11_c00133{bottom:647.340000px;}
.y10_c00133{bottom:688.740000px;}
.yf_c00133{bottom:730.140000px;}
.ye_c00133{bottom:771.540000px;}
.yd_c00133{bottom:812.940000px;}
.yc_c00133{bottom:872.340000px;}
.yb_c00133{bottom:913.740000px;}
.ya_c00133{bottom:955.140000px;}
.y9_c00133{bottom:996.540000px;}
.y8_c00133{bottom:1037.940000px;}
.y7_c00133{bottom:1079.340000px;}
.y6_c00133{bottom:1120.740000px;}
.y2_c00133{bottom:1173.660000px;}
.h3_c00133{height:20.520000px;}
.h4_c00133{height:64.371094px;}
.h2_c00133{height:64.546875px;}
.h5_c00133{height:65.003906px;}
.h1_c00133{height:1225.500000px;}
.h0_c00133{height:1263.000000px;}
.w2_c00133{width:30.240000px;}
.w1_c00133{width:855.000000px;}
.w0_c00133{width:892.500000px;}
.x0_c00133{left:0.000000px;}
.x1_c00133{left:18.750000px;}
.x2_c00133{left:109.439925px;}
.x5_c00133{left:151.965150px;}
.x3_c00133{left:157.739850px;}
.x4_c00133{left:735.510000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls2_c00133{letter-spacing:-0.012800pt;}
.ls1_c00133{letter-spacing:0.000000pt;}
.ls0_c00133{letter-spacing:0.012800pt;}
.ws0_c00133{word-spacing:-17.804800pt;}
.ws1_c00133{word-spacing:0.000000pt;}
._4_c00133{width:1.555200pt;}
._9_c00133{width:2.617600pt;}
._f_c00133{width:3.712000pt;}
._b_c00133{width:5.822667pt;}
._d_c00133{width:7.526400pt;}
._8_c00133{width:9.561600pt;}
._3_c00133{width:10.905600pt;}
._6_c00133{width:12.608000pt;}
._e_c00133{width:13.888000pt;}
._a_c00133{width:15.545600pt;}
._5_c00133{width:16.844800pt;}
._7_c00133{width:24.153600pt;}
._c_c00133{width:25.696000pt;}
._1_c00133{width:943.541333pt;}
._2_c00133{width:1019.274667pt;}
._0_c00133{width:1848.607733pt;}
.fs1_c00133{font-size:47.360000pt;}
.fs0_c00133{font-size:64.000000pt;}
.y0_c00133{bottom:0.000000pt;}
.y5_c00133{bottom:3.520000pt;}
.y1_c00133{bottom:16.666667pt;}
.y3_c00133{bottom:32.373360pt;}
.y4_c00133{bottom:42.000027pt;}
.y1d_c00133{bottom:133.813333pt;}
.y1c_c00133{bottom:170.613333pt;}
.y1b_c00133{bottom:207.413333pt;}
.y1a_c00133{bottom:244.213333pt;}
.y19_c00133{bottom:281.013333pt;}
.y18_c00133{bottom:317.813333pt;}
.y17_c00133{bottom:354.613333pt;}
.y16_c00133{bottom:391.413333pt;}
.y15_c00133{bottom:428.213333pt;}
.y14_c00133{bottom:465.013333pt;}
.y13_c00133{bottom:501.813333pt;}
.y12_c00133{bottom:538.613333pt;}
.y11_c00133{bottom:575.413333pt;}
.y10_c00133{bottom:612.213333pt;}
.yf_c00133{bottom:649.013333pt;}
.ye_c00133{bottom:685.813333pt;}
.yd_c00133{bottom:722.613333pt;}
.yc_c00133{bottom:775.413333pt;}
.yb_c00133{bottom:812.213333pt;}
.ya_c00133{bottom:849.013333pt;}
.y9_c00133{bottom:885.813333pt;}
.y8_c00133{bottom:922.613333pt;}
.y7_c00133{bottom:959.413333pt;}
.y6_c00133{bottom:996.213333pt;}
.y2_c00133{bottom:1043.253333pt;}
.h3_c00133{height:18.240000pt;}
.h4_c00133{height:57.218750pt;}
.h2_c00133{height:57.375000pt;}
.h5_c00133{height:57.781250pt;}
.h1_c00133{height:1089.333333pt;}
.h0_c00133{height:1122.666667pt;}
.w2_c00133{width:26.880000pt;}
.w1_c00133{width:760.000000pt;}
.w0_c00133{width:793.333333pt;}
.x0_c00133{left:0.000000pt;}
.x1_c00133{left:16.666667pt;}
.x2_c00133{left:97.279933pt;}
.x5_c00133{left:135.080133pt;}
.x3_c00133{left:140.213200pt;}
.x4_c00133{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7feb2aeee16665aed21e538b.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00134;src:url('chunks/assets/font_b0c748b2808ecc2c3b888c9d.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00134;src:url('chunks/assets/font_8c393b6803718c12a6cd88d6.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls2_c00134{letter-spacing:-0.014400px;}
.ls1_c00134{letter-spacing:0.000000px;}
.ls0_c00134{letter-spacing:0.014400px;}
.sc__c00134{text-shadow:none;}
.sc0_c00134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00134{-webkit-text-stroke:0px transparent;}
.sc0_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00134{word-spacing:-20.030400px;}
.ws1_c00134{word-spacing:-20.016000px;}
.ws2_c00134{word-spacing:-0.072000px;}
.ws3_c00134{word-spacing:0.000000px;}
._8_c00134{width:2.235600px;}
._6_c00134{width:3.337200px;}
._7_c00134{width:4.622400px;}
._f_c00134{width:6.775200px;}
._b_c00134{width:9.674100px;}
._2_c00134{width:10.713600px;}
._10_c00134{width:12.096000px;}
._e_c00134{width:14.364000px;}
._11_c00134{width:15.703200px;}
._3_c00134{width:17.136000px;}
._1_c00134{width:18.888300px;}
._a_c00134{width:22.118400px;}
._c_c00134{width:23.356800px;}
._d_c00134{width:24.811200px;}
._5_c00134{width:26.143200px;}
._9_c00134{width:29.412000px;}
._4_c00134{width:34.149600px;}
._0_c00134{width:1146.683400px;}
.fc1_c00134{color:transparent;}
.fc0_c00134{color:rgb(0,0,0);}
.fs0_c00134{font-size:72.000000px;}
.y0_c00134{bottom:0.000000px;}
.y4_c00134{bottom:4.320000px;}
.y1_c00134{bottom:18.750000px;}
.y2_c00134{bottom:37.860030px;}
.y3_c00134{bottom:52.290030px;}
.y1d_c00134{bottom:127.140030px;}
.y1c_c00134{bottom:168.540000px;}
.y1b_c00134{bottom:209.940000px;}
.y1a_c00134{bottom:251.340000px;}
.y19_c00134{bottom:292.740000px;}
.y18_c00134{bottom:334.140000px;}
.y17_c00134{bottom:375.540000px;}
.y16_c00134{bottom:416.940000px;}
.y15_c00134{bottom:458.340000px;}
.y14_c00134{bottom:499.740000px;}
.y13_c00134{bottom:541.140000px;}
.y12_c00134{bottom:582.540000px;}
.y11_c00134{bottom:623.940000px;}
.y10_c00134{bottom:665.340000px;}
.yf_c00134{bottom:706.740000px;}
.ye_c00134{bottom:748.140000px;}
.yd_c00134{bottom:789.540000px;}
.yc_c00134{bottom:830.940000px;}
.yb_c00134{bottom:872.340000px;}
.ya_c00134{bottom:913.740000px;}
.y9_c00134{bottom:955.140000px;}
.y8_c00134{bottom:996.540000px;}
.y7_c00134{bottom:1037.940000px;}
.y6_c00134{bottom:1079.340000px;}
.y5_c00134{bottom:1120.740000px;}
.h3_c00134{height:20.880000px;}
.h4_c00134{height:64.371094px;}
.h2_c00134{height:64.546875px;}
.h1_c00134{height:1225.500000px;}
.h0_c00134{height:1263.000000px;}
.w2_c00134{width:30.240000px;}
.w1_c00134{width:855.000000px;}
.w0_c00134{width:892.500000px;}
.x0_c00134{left:0.000000px;}
.x1_c00134{left:18.750000px;}
.x4_c00134{left:109.439925px;}
.x3_c00134{left:128.190000px;}
.x2_c00134{left:136.440000px;}
.x5_c00134{left:151.965150px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls2_c00134{letter-spacing:-0.012800pt;}
.ls1_c00134{letter-spacing:0.000000pt;}
.ls0_c00134{letter-spacing:0.012800pt;}
.ws0_c00134{word-spacing:-17.804800pt;}
.ws1_c00134{word-spacing:-17.792000pt;}
.ws2_c00134{word-spacing:-0.064000pt;}
.ws3_c00134{word-spacing:0.000000pt;}
._8_c00134{width:1.987200pt;}
._6_c00134{width:2.966400pt;}
._7_c00134{width:4.108800pt;}
._f_c00134{width:6.022400pt;}
._b_c00134{width:8.599200pt;}
._2_c00134{width:9.523200pt;}
._10_c00134{width:10.752000pt;}
._e_c00134{width:12.768000pt;}
._11_c00134{width:13.958400pt;}
._3_c00134{width:15.232000pt;}
._1_c00134{width:16.789600pt;}
._a_c00134{width:19.660800pt;}
._c_c00134{width:20.761600pt;}
._d_c00134{width:22.054400pt;}
._5_c00134{width:23.238400pt;}
._9_c00134{width:26.144000pt;}
._4_c00134{width:30.355200pt;}
._0_c00134{width:1019.274133pt;}
.fs0_c00134{font-size:64.000000pt;}
.y0_c00134{bottom:0.000000pt;}
.y4_c00134{bottom:3.840000pt;}
.y1_c00134{bottom:16.666667pt;}
.y2_c00134{bottom:33.653360pt;}
.y3_c00134{bottom:46.480027pt;}
.y1d_c00134{bottom:113.013360pt;}
.y1c_c00134{bottom:149.813333pt;}
.y1b_c00134{bottom:186.613333pt;}
.y1a_c00134{bottom:223.413333pt;}
.y19_c00134{bottom:260.213333pt;}
.y18_c00134{bottom:297.013333pt;}
.y17_c00134{bottom:333.813333pt;}
.y16_c00134{bottom:370.613333pt;}
.y15_c00134{bottom:407.413333pt;}
.y14_c00134{bottom:444.213333pt;}
.y13_c00134{bottom:481.013333pt;}
.y12_c00134{bottom:517.813333pt;}
.y11_c00134{bottom:554.613333pt;}
.y10_c00134{bottom:591.413333pt;}
.yf_c00134{bottom:628.213333pt;}
.ye_c00134{bottom:665.013333pt;}
.yd_c00134{bottom:701.813333pt;}
.yc_c00134{bottom:738.613333pt;}
.yb_c00134{bottom:775.413333pt;}
.ya_c00134{bottom:812.213333pt;}
.y9_c00134{bottom:849.013333pt;}
.y8_c00134{bottom:885.813333pt;}
.y7_c00134{bottom:922.613333pt;}
.y6_c00134{bottom:959.413333pt;}
.y5_c00134{bottom:996.213333pt;}
.h3_c00134{height:18.560000pt;}
.h4_c00134{height:57.218750pt;}
.h2_c00134{height:57.375000pt;}
.h1_c00134{height:1089.333333pt;}
.h0_c00134{height:1122.666667pt;}
.w2_c00134{width:26.880000pt;}
.w1_c00134{width:760.000000pt;}
.w0_c00134{width:793.333333pt;}
.x0_c00134{left:0.000000pt;}
.x1_c00134{left:16.666667pt;}
.x4_c00134{left:97.279933pt;}
.x3_c00134{left:113.946667pt;}
.x2_c00134{left:121.280000pt;}
.x5_c00134{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6834dee4a6576f4e62de7f73.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00135;src:url('chunks/assets/font_39715d63878b2a1a5b071d49.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00135;src:url('chunks/assets/font_8c393b6803718c12a6cd88d6.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.ls3_c00135{letter-spacing:-0.021600px;}
.ls2_c00135{letter-spacing:-0.014400px;}
.ls1_c00135{letter-spacing:0.000000px;}
.ls0_c00135{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00135{word-spacing:-0.072000px;}
.ws2_c00135{word-spacing:0.000000px;}
._c_c00135{width:1.116000px;}
._10_c00135{width:2.116800px;}
._e_c00135{width:4.830900px;}
._11_c00135{width:7.279200px;}
._5_c00135{width:9.136800px;}
._6_c00135{width:10.677600px;}
._9_c00135{width:12.009600px;}
._b_c00135{width:13.081500px;}
._f_c00135{width:14.738400px;}
._d_c00135{width:15.796800px;}
._a_c00135{width:18.619200px;}
._4_c00135{width:24.854400px;}
._12_c00135{width:34.704000px;}
._3_c00135{width:38.452800px;}
._7_c00135{width:55.342800px;}
._8_c00135{width:192.383400px;}
._1_c00135{width:1061.484000px;}
._2_c00135{width:1146.684000px;}
._0_c00135{width:2079.683700px;}
.fc1_c00135{color:transparent;}
.fc0_c00135{color:rgb(0,0,0);}
.fs1_c00135{font-size:53.280000px;}
.fs0_c00135{font-size:72.000000px;}
.y0_c00135{bottom:0.000000px;}
.y5_c00135{bottom:3.960000px;}
.y1_c00135{bottom:18.750000px;}
.y3_c00135{bottom:36.420030px;}
.y4_c00135{bottom:47.250030px;}
.y1d_c00135{bottom:141.540000px;}
.y1c_c00135{bottom:200.940000px;}
.y1b_c00135{bottom:242.340000px;}
.y1a_c00135{bottom:283.740000px;}
.y19_c00135{bottom:325.140000px;}
.y18_c00135{bottom:366.540000px;}
.y17_c00135{bottom:407.940000px;}
.y16_c00135{bottom:449.340000px;}
.y15_c00135{bottom:490.740000px;}
.y14_c00135{bottom:532.140000px;}
.y13_c00135{bottom:573.540000px;}
.y12_c00135{bottom:614.940000px;}
.y11_c00135{bottom:656.340000px;}
.y10_c00135{bottom:697.740000px;}
.yf_c00135{bottom:739.140000px;}
.ye_c00135{bottom:780.540000px;}
.yd_c00135{bottom:821.940000px;}
.yc_c00135{bottom:863.340000px;}
.yb_c00135{bottom:904.740000px;}
.ya_c00135{bottom:955.140000px;}
.y9_c00135{bottom:996.540000px;}
.y8_c00135{bottom:1037.940000px;}
.y7_c00135{bottom:1079.340000px;}
.y6_c00135{bottom:1120.740000px;}
.y2_c00135{bottom:1173.660000px;}
.h3_c00135{height:20.520000px;}
.h4_c00135{height:64.371094px;}
.h2_c00135{height:64.546875px;}
.h1_c00135{height:1225.500000px;}
.h0_c00135{height:1263.000000px;}
.w2_c00135{width:30.240000px;}
.w1_c00135{width:855.000000px;}
.w0_c00135{width:892.500000px;}
.x0_c00135{left:0.000000px;}
.x1_c00135{left:18.750000px;}
.x2_c00135{left:109.439925px;}
.x5_c00135{left:151.965150px;}
.x3_c00135{left:157.739850px;}
.x4_c00135{left:735.510000px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls3_c00135{letter-spacing:-0.019200pt;}
.ls2_c00135{letter-spacing:-0.012800pt;}
.ls1_c00135{letter-spacing:0.000000pt;}
.ls0_c00135{letter-spacing:0.012800pt;}
.ws0_c00135{word-spacing:-17.804800pt;}
.ws1_c00135{word-spacing:-0.064000pt;}
.ws2_c00135{word-spacing:0.000000pt;}
._c_c00135{width:0.992000pt;}
._10_c00135{width:1.881600pt;}
._e_c00135{width:4.294133pt;}
._11_c00135{width:6.470400pt;}
._5_c00135{width:8.121600pt;}
._6_c00135{width:9.491200pt;}
._9_c00135{width:10.675200pt;}
._b_c00135{width:11.628000pt;}
._f_c00135{width:13.100800pt;}
._d_c00135{width:14.041600pt;}
._a_c00135{width:16.550400pt;}
._4_c00135{width:22.092800pt;}
._12_c00135{width:30.848000pt;}
._3_c00135{width:34.180267pt;}
._7_c00135{width:49.193600pt;}
._8_c00135{width:171.007467pt;}
._1_c00135{width:943.541333pt;}
._2_c00135{width:1019.274667pt;}
._0_c00135{width:1848.607733pt;}
.fs1_c00135{font-size:47.360000pt;}
.fs0_c00135{font-size:64.000000pt;}
.y0_c00135{bottom:0.000000pt;}
.y5_c00135{bottom:3.520000pt;}
.y1_c00135{bottom:16.666667pt;}
.y3_c00135{bottom:32.373360pt;}
.y4_c00135{bottom:42.000027pt;}
.y1d_c00135{bottom:125.813333pt;}
.y1c_c00135{bottom:178.613333pt;}
.y1b_c00135{bottom:215.413333pt;}
.y1a_c00135{bottom:252.213333pt;}
.y19_c00135{bottom:289.013333pt;}
.y18_c00135{bottom:325.813333pt;}
.y17_c00135{bottom:362.613333pt;}
.y16_c00135{bottom:399.413333pt;}
.y15_c00135{bottom:436.213333pt;}
.y14_c00135{bottom:473.013333pt;}
.y13_c00135{bottom:509.813333pt;}
.y12_c00135{bottom:546.613333pt;}
.y11_c00135{bottom:583.413333pt;}
.y10_c00135{bottom:620.213333pt;}
.yf_c00135{bottom:657.013333pt;}
.ye_c00135{bottom:693.813333pt;}
.yd_c00135{bottom:730.613333pt;}
.yc_c00135{bottom:767.413333pt;}
.yb_c00135{bottom:804.213333pt;}
.ya_c00135{bottom:849.013333pt;}
.y9_c00135{bottom:885.813333pt;}
.y8_c00135{bottom:922.613333pt;}
.y7_c00135{bottom:959.413333pt;}
.y6_c00135{bottom:996.213333pt;}
.y2_c00135{bottom:1043.253333pt;}
.h3_c00135{height:18.240000pt;}
.h4_c00135{height:57.218750pt;}
.h2_c00135{height:57.375000pt;}
.h1_c00135{height:1089.333333pt;}
.h0_c00135{height:1122.666667pt;}
.w2_c00135{width:26.880000pt;}
.w1_c00135{width:760.000000pt;}
.w0_c00135{width:793.333333pt;}
.x0_c00135{left:0.000000pt;}
.x1_c00135{left:16.666667pt;}
.x2_c00135{left:97.279933pt;}
.x5_c00135{left:135.080133pt;}
.x3_c00135{left:140.213200pt;}
.x4_c00135{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_69e5b8c5c8bacfe033b64787.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00136;src:url('chunks/assets/font_698c72f31d9d03c84374fc58.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00136{vertical-align:0.000000px;}
.ls3_c00136{letter-spacing:-0.014400px;}
.ls2_c00136{letter-spacing:0.000000px;}
.ls1_c00136{letter-spacing:0.010800px;}
.ls0_c00136{letter-spacing:0.014400px;}
.sc__c00136{text-shadow:none;}
.sc0_c00136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00136{-webkit-text-stroke:0px transparent;}
.sc0_c00136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00136{word-spacing:-20.030400px;}
.ws2_c00136{word-spacing:-20.016000px;}
.ws1_c00136{word-spacing:-20.001600px;}
.ws3_c00136{word-spacing:0.000000px;}
._5_c00136{width:1.533600px;}
._11_c00136{width:3.107100px;}
._9_c00136{width:4.406400px;}
._4_c00136{width:5.817000px;}
._8_c00136{width:7.518900px;}
._6_c00136{width:10.612800px;}
._b_c00136{width:11.707200px;}
._a_c00136{width:12.708000px;}
._f_c00136{width:15.425100px;}
._e_c00136{width:16.502400px;}
._d_c00136{width:21.235200px;}
._c_c00136{width:22.299900px;}
._10_c00136{width:24.948000px;}
._3_c00136{width:30.297600px;}
._1_c00136{width:31.420800px;}
._7_c00136{width:33.242400px;}
._2_c00136{width:35.899200px;}
._0_c00136{width:1146.683400px;}
.fc1_c00136{color:transparent;}
.fc0_c00136{color:rgb(0,0,0);}
.fs0_c00136{font-size:72.000000px;}
.y0_c00136{bottom:0.000000px;}
.y4_c00136{bottom:4.320000px;}
.y1_c00136{bottom:18.750000px;}
.y2_c00136{bottom:37.860030px;}
.y3_c00136{bottom:52.290030px;}
.y1c_c00136{bottom:168.540000px;}
.y1b_c00136{bottom:209.940000px;}
.y1a_c00136{bottom:251.340000px;}
.y19_c00136{bottom:292.740000px;}
.y18_c00136{bottom:334.140000px;}
.y17_c00136{bottom:375.540000px;}
.y16_c00136{bottom:416.940000px;}
.y15_c00136{bottom:458.340000px;}
.y14_c00136{bottom:499.740000px;}
.y13_c00136{bottom:541.140000px;}
.y12_c00136{bottom:582.540000px;}
.y11_c00136{bottom:623.940000px;}
.y10_c00136{bottom:665.340000px;}
.yf_c00136{bottom:706.740000px;}
.ye_c00136{bottom:748.140000px;}
.yd_c00136{bottom:789.540000px;}
.yc_c00136{bottom:830.940000px;}
.yb_c00136{bottom:872.340000px;}
.ya_c00136{bottom:913.740000px;}
.y9_c00136{bottom:955.140000px;}
.y8_c00136{bottom:996.540000px;}
.y7_c00136{bottom:1037.940000px;}
.y6_c00136{bottom:1079.340000px;}
.y5_c00136{bottom:1120.740000px;}
.h3_c00136{height:20.880000px;}
.h2_c00136{height:64.546875px;}
.h4_c00136{height:65.003906px;}
.h1_c00136{height:1225.500000px;}
.h0_c00136{height:1263.000000px;}
.w2_c00136{width:30.240000px;}
.w1_c00136{width:855.000000px;}
.w0_c00136{width:892.500000px;}
.x0_c00136{left:0.000000px;}
.x1_c00136{left:18.750000px;}
.x4_c00136{left:109.439925px;}
.x3_c00136{left:128.190000px;}
.x2_c00136{left:136.440000px;}
.x5_c00136{left:151.965150px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls3_c00136{letter-spacing:-0.012800pt;}
.ls2_c00136{letter-spacing:0.000000pt;}
.ls1_c00136{letter-spacing:0.009600pt;}
.ls0_c00136{letter-spacing:0.012800pt;}
.ws0_c00136{word-spacing:-17.804800pt;}
.ws2_c00136{word-spacing:-17.792000pt;}
.ws1_c00136{word-spacing:-17.779200pt;}
.ws3_c00136{word-spacing:0.000000pt;}
._5_c00136{width:1.363200pt;}
._11_c00136{width:2.761867pt;}
._9_c00136{width:3.916800pt;}
._4_c00136{width:5.170667pt;}
._8_c00136{width:6.683467pt;}
._6_c00136{width:9.433600pt;}
._b_c00136{width:10.406400pt;}
._a_c00136{width:11.296000pt;}
._f_c00136{width:13.711200pt;}
._e_c00136{width:14.668800pt;}
._d_c00136{width:18.875733pt;}
._c_c00136{width:19.822133pt;}
._10_c00136{width:22.176000pt;}
._3_c00136{width:26.931200pt;}
._1_c00136{width:27.929600pt;}
._7_c00136{width:29.548800pt;}
._2_c00136{width:31.910400pt;}
._0_c00136{width:1019.274133pt;}
.fs0_c00136{font-size:64.000000pt;}
.y0_c00136{bottom:0.000000pt;}
.y4_c00136{bottom:3.840000pt;}
.y1_c00136{bottom:16.666667pt;}
.y2_c00136{bottom:33.653360pt;}
.y3_c00136{bottom:46.480027pt;}
.y1c_c00136{bottom:149.813333pt;}
.y1b_c00136{bottom:186.613333pt;}
.y1a_c00136{bottom:223.413333pt;}
.y19_c00136{bottom:260.213333pt;}
.y18_c00136{bottom:297.013333pt;}
.y17_c00136{bottom:333.813333pt;}
.y16_c00136{bottom:370.613333pt;}
.y15_c00136{bottom:407.413333pt;}
.y14_c00136{bottom:444.213333pt;}
.y13_c00136{bottom:481.013333pt;}
.y12_c00136{bottom:517.813333pt;}
.y11_c00136{bottom:554.613333pt;}
.y10_c00136{bottom:591.413333pt;}
.yf_c00136{bottom:628.213333pt;}
.ye_c00136{bottom:665.013333pt;}
.yd_c00136{bottom:701.813333pt;}
.yc_c00136{bottom:738.613333pt;}
.yb_c00136{bottom:775.413333pt;}
.ya_c00136{bottom:812.213333pt;}
.y9_c00136{bottom:849.013333pt;}
.y8_c00136{bottom:885.813333pt;}
.y7_c00136{bottom:922.613333pt;}
.y6_c00136{bottom:959.413333pt;}
.y5_c00136{bottom:996.213333pt;}
.h3_c00136{height:18.560000pt;}
.h2_c00136{height:57.375000pt;}
.h4_c00136{height:57.781250pt;}
.h1_c00136{height:1089.333333pt;}
.h0_c00136{height:1122.666667pt;}
.w2_c00136{width:26.880000pt;}
.w1_c00136{width:760.000000pt;}
.w0_c00136{width:793.333333pt;}
.x0_c00136{left:0.000000pt;}
.x1_c00136{left:16.666667pt;}
.x4_c00136{left:97.279933pt;}
.x3_c00136{left:113.946667pt;}
.x2_c00136{left:121.280000pt;}
.x5_c00136{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9a4956cd22b6b949ff5f127a.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00137;src:url('chunks/assets/font_c4e559fe25dc6d96f2eaefe7.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.ls2_c00137{letter-spacing:-0.014400px;}
.ls1_c00137{letter-spacing:0.000000px;}
.ls0_c00137{letter-spacing:0.014400px;}
.ls3_c00137{letter-spacing:0.036000px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00137{word-spacing:-20.030400px;}
.ws1_c00137{word-spacing:-20.001600px;}
.ws2_c00137{word-spacing:0.000000px;}
._c_c00137{width:1.634400px;}
._3_c00137{width:2.736000px;}
._e_c00137{width:3.830400px;}
._6_c00137{width:5.515200px;}
._7_c00137{width:6.714720px;}
._4_c00137{width:8.251200px;}
._11_c00137{width:9.640800px;}
._b_c00137{width:14.229000px;}
._8_c00137{width:15.948000px;}
._a_c00137{width:17.575200px;}
._12_c00137{width:19.029600px;}
._10_c00137{width:21.075300px;}
._9_c00137{width:25.432500px;}
._f_c00137{width:32.745600px;}
._d_c00137{width:35.956800px;}
._5_c00137{width:42.616800px;}
._1_c00137{width:1061.484000px;}
._2_c00137{width:1146.684000px;}
._0_c00137{width:2079.683700px;}
.fc1_c00137{color:transparent;}
.fc0_c00137{color:rgb(0,0,0);}
.fs1_c00137{font-size:53.280000px;}
.fs0_c00137{font-size:72.000000px;}
.y0_c00137{bottom:0.000000px;}
.y5_c00137{bottom:3.960000px;}
.y1_c00137{bottom:18.750000px;}
.y3_c00137{bottom:36.420030px;}
.y4_c00137{bottom:47.250030px;}
.y1e_c00137{bottom:127.140030px;}
.y1d_c00137{bottom:168.540000px;}
.y1c_c00137{bottom:209.940000px;}
.y1b_c00137{bottom:251.340000px;}
.y1a_c00137{bottom:292.740000px;}
.y19_c00137{bottom:334.140000px;}
.y18_c00137{bottom:375.540000px;}
.y17_c00137{bottom:416.940000px;}
.y16_c00137{bottom:458.340000px;}
.y15_c00137{bottom:499.740000px;}
.y14_c00137{bottom:541.140000px;}
.y13_c00137{bottom:582.540000px;}
.y12_c00137{bottom:623.940000px;}
.y11_c00137{bottom:665.340000px;}
.y10_c00137{bottom:706.740000px;}
.yf_c00137{bottom:748.140000px;}
.ye_c00137{bottom:789.540000px;}
.yd_c00137{bottom:830.940000px;}
.yc_c00137{bottom:872.340000px;}
.yb_c00137{bottom:913.740000px;}
.ya_c00137{bottom:955.140000px;}
.y9_c00137{bottom:996.540000px;}
.y8_c00137{bottom:1037.940000px;}
.y7_c00137{bottom:1079.340000px;}
.y6_c00137{bottom:1120.740000px;}
.y2_c00137{bottom:1173.660000px;}
.h3_c00137{height:20.520000px;}
.h2_c00137{height:64.546875px;}
.h1_c00137{height:1225.500000px;}
.h0_c00137{height:1263.000000px;}
.w2_c00137{width:30.240000px;}
.w1_c00137{width:855.000000px;}
.w0_c00137{width:892.500000px;}
.x0_c00137{left:0.000000px;}
.x1_c00137{left:18.750000px;}
.x2_c00137{left:109.439925px;}
.x5_c00137{left:151.965150px;}
.x3_c00137{left:157.739850px;}
.x4_c00137{left:735.510000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls2_c00137{letter-spacing:-0.012800pt;}
.ls1_c00137{letter-spacing:0.000000pt;}
.ls0_c00137{letter-spacing:0.012800pt;}
.ls3_c00137{letter-spacing:0.032000pt;}
.ws0_c00137{word-spacing:-17.804800pt;}
.ws1_c00137{word-spacing:-17.779200pt;}
.ws2_c00137{word-spacing:0.000000pt;}
._c_c00137{width:1.452800pt;}
._3_c00137{width:2.432000pt;}
._e_c00137{width:3.404800pt;}
._6_c00137{width:4.902400pt;}
._7_c00137{width:5.968640pt;}
._4_c00137{width:7.334400pt;}
._11_c00137{width:8.569600pt;}
._b_c00137{width:12.648000pt;}
._8_c00137{width:14.176000pt;}
._a_c00137{width:15.622400pt;}
._12_c00137{width:16.915200pt;}
._10_c00137{width:18.733600pt;}
._9_c00137{width:22.606667pt;}
._f_c00137{width:29.107200pt;}
._d_c00137{width:31.961600pt;}
._5_c00137{width:37.881600pt;}
._1_c00137{width:943.541333pt;}
._2_c00137{width:1019.274667pt;}
._0_c00137{width:1848.607733pt;}
.fs1_c00137{font-size:47.360000pt;}
.fs0_c00137{font-size:64.000000pt;}
.y0_c00137{bottom:0.000000pt;}
.y5_c00137{bottom:3.520000pt;}
.y1_c00137{bottom:16.666667pt;}
.y3_c00137{bottom:32.373360pt;}
.y4_c00137{bottom:42.000027pt;}
.y1e_c00137{bottom:113.013360pt;}
.y1d_c00137{bottom:149.813333pt;}
.y1c_c00137{bottom:186.613333pt;}
.y1b_c00137{bottom:223.413333pt;}
.y1a_c00137{bottom:260.213333pt;}
.y19_c00137{bottom:297.013333pt;}
.y18_c00137{bottom:333.813333pt;}
.y17_c00137{bottom:370.613333pt;}
.y16_c00137{bottom:407.413333pt;}
.y15_c00137{bottom:444.213333pt;}
.y14_c00137{bottom:481.013333pt;}
.y13_c00137{bottom:517.813333pt;}
.y12_c00137{bottom:554.613333pt;}
.y11_c00137{bottom:591.413333pt;}
.y10_c00137{bottom:628.213333pt;}
.yf_c00137{bottom:665.013333pt;}
.ye_c00137{bottom:701.813333pt;}
.yd_c00137{bottom:738.613333pt;}
.yc_c00137{bottom:775.413333pt;}
.yb_c00137{bottom:812.213333pt;}
.ya_c00137{bottom:849.013333pt;}
.y9_c00137{bottom:885.813333pt;}
.y8_c00137{bottom:922.613333pt;}
.y7_c00137{bottom:959.413333pt;}
.y6_c00137{bottom:996.213333pt;}
.y2_c00137{bottom:1043.253333pt;}
.h3_c00137{height:18.240000pt;}
.h2_c00137{height:57.375000pt;}
.h1_c00137{height:1089.333333pt;}
.h0_c00137{height:1122.666667pt;}
.w2_c00137{width:26.880000pt;}
.w1_c00137{width:760.000000pt;}
.w0_c00137{width:793.333333pt;}
.x0_c00137{left:0.000000pt;}
.x1_c00137{left:16.666667pt;}
.x2_c00137{left:97.279933pt;}
.x5_c00137{left:135.080133pt;}
.x3_c00137{left:140.213200pt;}
.x4_c00137{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c7bbf8731e3cad5ad5c42398.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00138;src:url('chunks/assets/font_bfedf07573a1ad490bf51c5e.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.ls4_c00138{letter-spacing:-0.014400px;}
.ls3_c00138{letter-spacing:0.000000px;}
.ls1_c00138{letter-spacing:0.010980px;}
.ls0_c00138{letter-spacing:0.014400px;}
.ls2_c00138{letter-spacing:0.036000px;}
.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:-20.052000px;}
.ws0_c00138{word-spacing:-20.030400px;}
.ws2_c00138{word-spacing:0.000000px;}
._c_c00138{width:1.396800px;}
._3_c00138{width:2.916000px;}
._d_c00138{width:4.320000px;}
._a_c00138{width:5.421600px;}
._2_c00138{width:8.443920px;}
._1_c00138{width:9.540000px;}
._4_c00138{width:11.138400px;}
._e_c00138{width:12.507300px;}
._b_c00138{width:13.549500px;}
._7_c00138{width:14.669100px;}
._8_c00138{width:15.797700px;}
._f_c00138{width:17.408700px;}
._5_c00138{width:21.412800px;}
._9_c00138{width:22.543200px;}
._6_c00138{width:38.592000px;}
._0_c00138{width:1146.683400px;}
.fc1_c00138{color:transparent;}
.fc0_c00138{color:rgb(0,0,0);}
.fs0_c00138{font-size:72.000000px;}
.y0_c00138{bottom:0.000000px;}
.y4_c00138{bottom:4.320000px;}
.y1_c00138{bottom:18.750000px;}
.y2_c00138{bottom:37.860030px;}
.y3_c00138{bottom:52.290030px;}
.y1d_c00138{bottom:109.140030px;}
.y1c_c00138{bottom:150.540000px;}
.y1b_c00138{bottom:191.940000px;}
.y1a_c00138{bottom:233.340000px;}
.y19_c00138{bottom:274.740000px;}
.y18_c00138{bottom:316.140000px;}
.y17_c00138{bottom:357.540000px;}
.y16_c00138{bottom:398.940000px;}
.y15_c00138{bottom:440.340000px;}
.y14_c00138{bottom:481.740000px;}
.y13_c00138{bottom:523.140000px;}
.y12_c00138{bottom:564.540000px;}
.y11_c00138{bottom:605.940000px;}
.y10_c00138{bottom:665.340000px;}
.yf_c00138{bottom:706.740000px;}
.ye_c00138{bottom:748.140000px;}
.yd_c00138{bottom:789.540000px;}
.yc_c00138{bottom:830.940000px;}
.yb_c00138{bottom:872.340000px;}
.ya_c00138{bottom:913.740000px;}
.y9_c00138{bottom:955.140000px;}
.y8_c00138{bottom:996.540000px;}
.y7_c00138{bottom:1037.940000px;}
.y6_c00138{bottom:1079.340000px;}
.y5_c00138{bottom:1120.740000px;}
.h3_c00138{height:20.880000px;}
.h2_c00138{height:64.546875px;}
.h4_c00138{height:65.003906px;}
.h1_c00138{height:1225.500000px;}
.h0_c00138{height:1263.000000px;}
.w2_c00138{width:30.240000px;}
.w1_c00138{width:855.000000px;}
.w0_c00138{width:892.500000px;}
.x0_c00138{left:0.000000px;}
.x1_c00138{left:18.750000px;}
.x4_c00138{left:109.439925px;}
.x3_c00138{left:128.190000px;}
.x2_c00138{left:136.440000px;}
.x5_c00138{left:151.965150px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls4_c00138{letter-spacing:-0.012800pt;}
.ls3_c00138{letter-spacing:0.000000pt;}
.ls1_c00138{letter-spacing:0.009760pt;}
.ls0_c00138{letter-spacing:0.012800pt;}
.ls2_c00138{letter-spacing:0.032000pt;}
.ws1_c00138{word-spacing:-17.824000pt;}
.ws0_c00138{word-spacing:-17.804800pt;}
.ws2_c00138{word-spacing:0.000000pt;}
._c_c00138{width:1.241600pt;}
._3_c00138{width:2.592000pt;}
._d_c00138{width:3.840000pt;}
._a_c00138{width:4.819200pt;}
._2_c00138{width:7.505707pt;}
._1_c00138{width:8.480000pt;}
._4_c00138{width:9.900800pt;}
._e_c00138{width:11.117600pt;}
._b_c00138{width:12.044000pt;}
._7_c00138{width:13.039200pt;}
._8_c00138{width:14.042400pt;}
._f_c00138{width:15.474400pt;}
._5_c00138{width:19.033600pt;}
._9_c00138{width:20.038400pt;}
._6_c00138{width:34.304000pt;}
._0_c00138{width:1019.274133pt;}
.fs0_c00138{font-size:64.000000pt;}
.y0_c00138{bottom:0.000000pt;}
.y4_c00138{bottom:3.840000pt;}
.y1_c00138{bottom:16.666667pt;}
.y2_c00138{bottom:33.653360pt;}
.y3_c00138{bottom:46.480027pt;}
.y1d_c00138{bottom:97.013360pt;}
.y1c_c00138{bottom:133.813333pt;}
.y1b_c00138{bottom:170.613333pt;}
.y1a_c00138{bottom:207.413333pt;}
.y19_c00138{bottom:244.213333pt;}
.y18_c00138{bottom:281.013333pt;}
.y17_c00138{bottom:317.813333pt;}
.y16_c00138{bottom:354.613333pt;}
.y15_c00138{bottom:391.413333pt;}
.y14_c00138{bottom:428.213333pt;}
.y13_c00138{bottom:465.013333pt;}
.y12_c00138{bottom:501.813333pt;}
.y11_c00138{bottom:538.613333pt;}
.y10_c00138{bottom:591.413333pt;}
.yf_c00138{bottom:628.213333pt;}
.ye_c00138{bottom:665.013333pt;}
.yd_c00138{bottom:701.813333pt;}
.yc_c00138{bottom:738.613333pt;}
.yb_c00138{bottom:775.413333pt;}
.ya_c00138{bottom:812.213333pt;}
.y9_c00138{bottom:849.013333pt;}
.y8_c00138{bottom:885.813333pt;}
.y7_c00138{bottom:922.613333pt;}
.y6_c00138{bottom:959.413333pt;}
.y5_c00138{bottom:996.213333pt;}
.h3_c00138{height:18.560000pt;}
.h2_c00138{height:57.375000pt;}
.h4_c00138{height:57.781250pt;}
.h1_c00138{height:1089.333333pt;}
.h0_c00138{height:1122.666667pt;}
.w2_c00138{width:26.880000pt;}
.w1_c00138{width:760.000000pt;}
.w0_c00138{width:793.333333pt;}
.x0_c00138{left:0.000000pt;}
.x1_c00138{left:16.666667pt;}
.x4_c00138{left:97.279933pt;}
.x3_c00138{left:113.946667pt;}
.x2_c00138{left:121.280000pt;}
.x5_c00138{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c70588b73387f975837da1e8.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00139{letter-spacing:-0.410256px;}
.ls1_c00139{letter-spacing:0.000000px;}
.ls0_c00139{letter-spacing:0.014400px;}
.ls3_c00139{letter-spacing:0.463536px;}
.ls4_c00139{letter-spacing:0.719280px;}
.sc__c00139{text-shadow:none;}
.sc0_c00139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00139{-webkit-text-stroke:0px transparent;}
.sc0_c00139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00139{word-spacing:-20.030400px;}
.ws1_c00139{word-spacing:0.000000px;}
._a_c00139{margin-left:-1.512000px;}
._9_c00139{width:1.438560px;}
._3_c00139{width:4.320000px;}
._6_c00139{width:6.926400px;}
._7_c00139{width:8.884800px;}
._8_c00139{width:11.599200px;}
._5_c00139{width:22.449600px;}
._4_c00139{width:33.076800px;}
._b_c00139{width:34.233696px;}
._c_c00139{width:196.868160px;}
._d_c00139{width:198.308160px;}
._1_c00139{width:1061.484000px;}
._2_c00139{width:1146.684000px;}
._0_c00139{width:2079.683700px;}
.fc1_c00139{color:transparent;}
.fc0_c00139{color:rgb(0,0,0);}
.fs1_c00139{font-size:53.280000px;}
.fs0_c00139{font-size:72.000000px;}
.y21_c00139{bottom:-12.240000px;}
.y0_c00139{bottom:0.000000px;}
.y20_c00139{bottom:3.240000px;}
.y5_c00139{bottom:3.960000px;}
.y1_c00139{bottom:18.750000px;}
.y3_c00139{bottom:36.420030px;}
.y4_c00139{bottom:47.250030px;}
.y1e_c00139{bottom:96.900015px;}
.y1d_c00139{bottom:138.300000px;}
.y1c_c00139{bottom:179.700000px;}
.y1b_c00139{bottom:221.100000px;}
.y1f_c00139{bottom:262.185000px;}
.y1a_c00139{bottom:292.740000px;}
.y19_c00139{bottom:334.140000px;}
.y18_c00139{bottom:375.540000px;}
.y17_c00139{bottom:416.940000px;}
.y16_c00139{bottom:458.340000px;}
.y15_c00139{bottom:499.740000px;}
.y14_c00139{bottom:541.140000px;}
.y13_c00139{bottom:582.540000px;}
.y12_c00139{bottom:623.940000px;}
.y11_c00139{bottom:665.340000px;}
.y10_c00139{bottom:706.740000px;}
.yf_c00139{bottom:748.140000px;}
.ye_c00139{bottom:789.540000px;}
.yd_c00139{bottom:830.940000px;}
.yc_c00139{bottom:872.340000px;}
.yb_c00139{bottom:913.740000px;}
.ya_c00139{bottom:955.140000px;}
.y9_c00139{bottom:996.540000px;}
.y8_c00139{bottom:1037.940000px;}
.y7_c00139{bottom:1079.340000px;}
.y6_c00139{bottom:1120.740000px;}
.y2_c00139{bottom:1173.660000px;}
.h4_c00139{height:15.840000px;}
.h3_c00139{height:20.520000px;}
.h5_c00139{height:47.764688px;}
.h2_c00139{height:64.546875px;}
.h1_c00139{height:1225.500000px;}
.h0_c00139{height:1263.000000px;}
.w2_c00139{width:30.240000px;}
.w3_c00139{width:633.960000px;}
.w1_c00139{width:855.000000px;}
.w0_c00139{width:892.500000px;}
.x0_c00139{left:0.000000px;}
.x7_c00139{left:10.800000px;}
.x1_c00139{left:18.750000px;}
.x2_c00139{left:109.439925px;}
.x6_c00139{left:125.475000px;}
.x5_c00139{left:151.965150px;}
.x3_c00139{left:157.739850px;}
.x8_c00139{left:317.160000px;}
.x4_c00139{left:735.510000px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls2_c00139{letter-spacing:-0.364672pt;}
.ls1_c00139{letter-spacing:0.000000pt;}
.ls0_c00139{letter-spacing:0.012800pt;}
.ls3_c00139{letter-spacing:0.412032pt;}
.ls4_c00139{letter-spacing:0.639360pt;}
.ws0_c00139{word-spacing:-17.804800pt;}
.ws1_c00139{word-spacing:0.000000pt;}
._a_c00139{margin-left:-1.344000pt;}
._9_c00139{width:1.278720pt;}
._3_c00139{width:3.840000pt;}
._6_c00139{width:6.156800pt;}
._7_c00139{width:7.897600pt;}
._8_c00139{width:10.310400pt;}
._5_c00139{width:19.955200pt;}
._4_c00139{width:29.401600pt;}
._b_c00139{width:30.429952pt;}
._c_c00139{width:174.993920pt;}
._d_c00139{width:176.273920pt;}
._1_c00139{width:943.541333pt;}
._2_c00139{width:1019.274667pt;}
._0_c00139{width:1848.607733pt;}
.fs1_c00139{font-size:47.360000pt;}
.fs0_c00139{font-size:64.000000pt;}
.y21_c00139{bottom:-10.880000pt;}
.y0_c00139{bottom:0.000000pt;}
.y20_c00139{bottom:2.880000pt;}
.y5_c00139{bottom:3.520000pt;}
.y1_c00139{bottom:16.666667pt;}
.y3_c00139{bottom:32.373360pt;}
.y4_c00139{bottom:42.000027pt;}
.y1e_c00139{bottom:86.133347pt;}
.y1d_c00139{bottom:122.933333pt;}
.y1c_c00139{bottom:159.733333pt;}
.y1b_c00139{bottom:196.533333pt;}
.y1f_c00139{bottom:233.053333pt;}
.y1a_c00139{bottom:260.213333pt;}
.y19_c00139{bottom:297.013333pt;}
.y18_c00139{bottom:333.813333pt;}
.y17_c00139{bottom:370.613333pt;}
.y16_c00139{bottom:407.413333pt;}
.y15_c00139{bottom:444.213333pt;}
.y14_c00139{bottom:481.013333pt;}
.y13_c00139{bottom:517.813333pt;}
.y12_c00139{bottom:554.613333pt;}
.y11_c00139{bottom:591.413333pt;}
.y10_c00139{bottom:628.213333pt;}
.yf_c00139{bottom:665.013333pt;}
.ye_c00139{bottom:701.813333pt;}
.yd_c00139{bottom:738.613333pt;}
.yc_c00139{bottom:775.413333pt;}
.yb_c00139{bottom:812.213333pt;}
.ya_c00139{bottom:849.013333pt;}
.y9_c00139{bottom:885.813333pt;}
.y8_c00139{bottom:922.613333pt;}
.y7_c00139{bottom:959.413333pt;}
.y6_c00139{bottom:996.213333pt;}
.y2_c00139{bottom:1043.253333pt;}
.h4_c00139{height:14.080000pt;}
.h3_c00139{height:18.240000pt;}
.h5_c00139{height:42.457500pt;}
.h2_c00139{height:57.375000pt;}
.h1_c00139{height:1089.333333pt;}
.h0_c00139{height:1122.666667pt;}
.w2_c00139{width:26.880000pt;}
.w3_c00139{width:563.520000pt;}
.w1_c00139{width:760.000000pt;}
.w0_c00139{width:793.333333pt;}
.x0_c00139{left:0.000000pt;}
.x7_c00139{left:9.600000pt;}
.x1_c00139{left:16.666667pt;}
.x2_c00139{left:97.279933pt;}
.x6_c00139{left:111.533333pt;}
.x5_c00139{left:135.080133pt;}
.x3_c00139{left:140.213200pt;}
.x8_c00139{left:281.920000pt;}
.x4_c00139{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cb325c81e43202a0e747c17d.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00140{letter-spacing:-0.410256px;}
.ls1_c00140{letter-spacing:0.000000px;}
.ls0_c00140{letter-spacing:0.014400px;}
.ls3_c00140{letter-spacing:0.410256px;}
.ls4_c00140{letter-spacing:0.463536px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00140{word-spacing:-20.030400px;}
.ws1_c00140{word-spacing:0.000000px;}
._2_c00140{margin-left:-1.180512px;}
._1_c00140{width:1.438560px;}
._3_c00140{width:130.628160px;}
._4_c00140{width:196.868160px;}
._5_c00140{width:198.308160px;}
._0_c00140{width:1146.683400px;}
.fc1_c00140{color:transparent;}
.fc0_c00140{color:rgb(0,0,0);}
.fs1_c00140{font-size:53.280000px;}
.fs0_c00140{font-size:72.000000px;}
.y0_c00140{bottom:0.000000px;}
.y4_c00140{bottom:4.320000px;}
.y21_c00140{bottom:6.840000px;}
.y1_c00140{bottom:18.750000px;}
.y2_c00140{bottom:37.860030px;}
.y3_c00140{bottom:52.290030px;}
.y1f_c00140{bottom:100.140030px;}
.y1e_c00140{bottom:134.340000px;}
.y1d_c00140{bottom:168.540000px;}
.y1c_c00140{bottom:203.100000px;}
.y1b_c00140{bottom:237.300000px;}
.y1a_c00140{bottom:271.500000px;}
.y19_c00140{bottom:306.060000px;}
.y18_c00140{bottom:340.260000px;}
.y17_c00140{bottom:374.820000px;}
.y16_c00140{bottom:409.020000px;}
.y15_c00140{bottom:443.220000px;}
.y14_c00140{bottom:477.780000px;}
.y13_c00140{bottom:511.980000px;}
.y12_c00140{bottom:546.180000px;}
.y11_c00140{bottom:580.740000px;}
.y10_c00140{bottom:614.940000px;}
.yf_c00140{bottom:649.500000px;}
.y20_c00140{bottom:690.195000px;}
.ye_c00140{bottom:748.140000px;}
.yd_c00140{bottom:789.540000px;}
.yc_c00140{bottom:830.940000px;}
.yb_c00140{bottom:872.340000px;}
.ya_c00140{bottom:913.740000px;}
.y9_c00140{bottom:955.140000px;}
.y8_c00140{bottom:996.540000px;}
.y7_c00140{bottom:1037.940000px;}
.y6_c00140{bottom:1079.340000px;}
.y5_c00140{bottom:1120.740000px;}
.h4_c00140{height:19.080000px;}
.h3_c00140{height:20.880000px;}
.h5_c00140{height:47.764688px;}
.h2_c00140{height:64.546875px;}
.h1_c00140{height:1225.500000px;}
.h0_c00140{height:1263.000000px;}
.w2_c00140{width:30.240000px;}
.w3_c00140{width:636.120000px;}
.w1_c00140{width:855.000000px;}
.w0_c00140{width:892.500000px;}
.x0_c00140{left:0.000000px;}
.x1_c00140{left:18.750000px;}
.x6_c00140{left:63.720000px;}
.x5_c00140{left:109.439925px;}
.x3_c00140{left:128.190000px;}
.x2_c00140{left:136.440000px;}
.x4_c00140{left:151.965150px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls2_c00140{letter-spacing:-0.364672pt;}
.ls1_c00140{letter-spacing:0.000000pt;}
.ls0_c00140{letter-spacing:0.012800pt;}
.ls3_c00140{letter-spacing:0.364672pt;}
.ls4_c00140{letter-spacing:0.412032pt;}
.ws0_c00140{word-spacing:-17.804800pt;}
.ws1_c00140{word-spacing:0.000000pt;}
._2_c00140{margin-left:-1.049344pt;}
._1_c00140{width:1.278720pt;}
._3_c00140{width:116.113920pt;}
._4_c00140{width:174.993920pt;}
._5_c00140{width:176.273920pt;}
._0_c00140{width:1019.274133pt;}
.fs1_c00140{font-size:47.360000pt;}
.fs0_c00140{font-size:64.000000pt;}
.y0_c00140{bottom:0.000000pt;}
.y4_c00140{bottom:3.840000pt;}
.y21_c00140{bottom:6.080000pt;}
.y1_c00140{bottom:16.666667pt;}
.y2_c00140{bottom:33.653360pt;}
.y3_c00140{bottom:46.480027pt;}
.y1f_c00140{bottom:89.013360pt;}
.y1e_c00140{bottom:119.413333pt;}
.y1d_c00140{bottom:149.813333pt;}
.y1c_c00140{bottom:180.533333pt;}
.y1b_c00140{bottom:210.933333pt;}
.y1a_c00140{bottom:241.333333pt;}
.y19_c00140{bottom:272.053333pt;}
.y18_c00140{bottom:302.453333pt;}
.y17_c00140{bottom:333.173333pt;}
.y16_c00140{bottom:363.573333pt;}
.y15_c00140{bottom:393.973333pt;}
.y14_c00140{bottom:424.693333pt;}
.y13_c00140{bottom:455.093333pt;}
.y12_c00140{bottom:485.493333pt;}
.y11_c00140{bottom:516.213333pt;}
.y10_c00140{bottom:546.613333pt;}
.yf_c00140{bottom:577.333333pt;}
.y20_c00140{bottom:613.506667pt;}
.ye_c00140{bottom:665.013333pt;}
.yd_c00140{bottom:701.813333pt;}
.yc_c00140{bottom:738.613333pt;}
.yb_c00140{bottom:775.413333pt;}
.ya_c00140{bottom:812.213333pt;}
.y9_c00140{bottom:849.013333pt;}
.y8_c00140{bottom:885.813333pt;}
.y7_c00140{bottom:922.613333pt;}
.y6_c00140{bottom:959.413333pt;}
.y5_c00140{bottom:996.213333pt;}
.h4_c00140{height:16.960000pt;}
.h3_c00140{height:18.560000pt;}
.h5_c00140{height:42.457500pt;}
.h2_c00140{height:57.375000pt;}
.h1_c00140{height:1089.333333pt;}
.h0_c00140{height:1122.666667pt;}
.w2_c00140{width:26.880000pt;}
.w3_c00140{width:565.440000pt;}
.w1_c00140{width:760.000000pt;}
.w0_c00140{width:793.333333pt;}
.x0_c00140{left:0.000000pt;}
.x1_c00140{left:16.666667pt;}
.x6_c00140{left:56.640000pt;}
.x5_c00140{left:97.279933pt;}
.x3_c00140{left:113.946667pt;}
.x2_c00140{left:121.280000pt;}
.x4_c00140{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5e7aded95e2d9b33b4f93d89.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00141;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.113281;font-style: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;}
.ls1_c00141{letter-spacing:0.000000px;}
.ls0_c00141{letter-spacing:0.275616px;}
.ls2_c00141{letter-spacing:0.359136px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00141{word-spacing:0.000000px;}
._3_c00141{margin-left:-1.143288px;}
._4_c00141{width:843.983700px;}
._2_c00141{width:1146.684000px;}
._1_c00141{width:1254.683700px;}
._0_c00141{width:2079.683700px;}
.fc0_c00141{color:rgb(0,0,0);}
.fs1_c00141{font-size:53.280000px;}
.fs0_c00141{font-size:72.000000px;}
.fs2_c00141{font-size:83.520000px;}
.y0_c00141{bottom:0.000000px;}
.y1_c00141{bottom:18.750000px;}
.y3_c00141{bottom:36.420030px;}
.y16_c00141{bottom:468.420000px;}
.y15_c00141{bottom:509.820000px;}
.y14_c00141{bottom:551.220000px;}
.y13_c00141{bottom:592.620000px;}
.y12_c00141{bottom:634.020000px;}
.y11_c00141{bottom:671.100000px;}
.y10_c00141{bottom:708.540000px;}
.yf_c00141{bottom:742.740000px;}
.ye_c00141{bottom:777.300000px;}
.yd_c00141{bottom:811.500000px;}
.yc_c00141{bottom:846.060000px;}
.yb_c00141{bottom:880.260000px;}
.ya_c00141{bottom:914.460000px;}
.y9_c00141{bottom:949.020000px;}
.y8_c00141{bottom:983.220000px;}
.y7_c00141{bottom:1017.420000px;}
.y6_c00141{bottom:1051.980000px;}
.y5_c00141{bottom:1086.180000px;}
.y4_c00141{bottom:1120.740000px;}
.y2_c00141{bottom:1173.660000px;}
.h2_c00141{height:64.546875px;}
.h4_c00141{height:65.003906px;}
.h3_c00141{height:74.874375px;}
.h1_c00141{height:1225.500000px;}
.h0_c00141{height:1263.000000px;}
.w1_c00141{width:855.000000px;}
.w0_c00141{width:892.500000px;}
.x0_c00141{left:0.000000px;}
.x1_c00141{left:18.750000px;}
.x2_c00141{left:109.439925px;}
.x4_c00141{left:151.965150px;}
.x3_c00141{left:241.323450px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls1_c00141{letter-spacing:0.000000pt;}
.ls0_c00141{letter-spacing:0.244992pt;}
.ls2_c00141{letter-spacing:0.319232pt;}
.ws0_c00141{word-spacing:0.000000pt;}
._3_c00141{margin-left:-1.016256pt;}
._4_c00141{width:750.207733pt;}
._2_c00141{width:1019.274667pt;}
._1_c00141{width:1115.274400pt;}
._0_c00141{width:1848.607733pt;}
.fs1_c00141{font-size:47.360000pt;}
.fs0_c00141{font-size:64.000000pt;}
.fs2_c00141{font-size:74.240000pt;}
.y0_c00141{bottom:0.000000pt;}
.y1_c00141{bottom:16.666667pt;}
.y3_c00141{bottom:32.373360pt;}
.y16_c00141{bottom:416.373333pt;}
.y15_c00141{bottom:453.173333pt;}
.y14_c00141{bottom:489.973333pt;}
.y13_c00141{bottom:526.773333pt;}
.y12_c00141{bottom:563.573333pt;}
.y11_c00141{bottom:596.533333pt;}
.y10_c00141{bottom:629.813333pt;}
.yf_c00141{bottom:660.213333pt;}
.ye_c00141{bottom:690.933333pt;}
.yd_c00141{bottom:721.333333pt;}
.yc_c00141{bottom:752.053333pt;}
.yb_c00141{bottom:782.453333pt;}
.ya_c00141{bottom:812.853333pt;}
.y9_c00141{bottom:843.573333pt;}
.y8_c00141{bottom:873.973333pt;}
.y7_c00141{bottom:904.373333pt;}
.y6_c00141{bottom:935.093333pt;}
.y5_c00141{bottom:965.493333pt;}
.y4_c00141{bottom:996.213333pt;}
.y2_c00141{bottom:1043.253333pt;}
.h2_c00141{height:57.375000pt;}
.h4_c00141{height:57.781250pt;}
.h3_c00141{height:66.555000pt;}
.h1_c00141{height:1089.333333pt;}
.h0_c00141{height:1122.666667pt;}
.w1_c00141{width:760.000000pt;}
.w0_c00141{width:793.333333pt;}
.x0_c00141{left:0.000000pt;}
.x1_c00141{left:16.666667pt;}
.x2_c00141{left:97.279933pt;}
.x4_c00141{left:135.080133pt;}
.x3_c00141{left:214.509733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc845accef0beaceb15afc88.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00142;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.113281;font-style: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:0.000000px;}
._0_c00142{width:1146.683400px;}
.fc0_c00142{color:rgb(0,0,0);}
.fs0_c00142{font-size:72.000000px;}
.y0_c00142{bottom:0.000000px;}
.y1_c00142{bottom:18.750000px;}
.y3_c00142{bottom:37.860030px;}
.y2_c00142{bottom:58.380030px;}
.y4_c00142{bottom:1120.740000px;}
.h2_c00142{height:64.546875px;}
.h3_c00142{height:65.003906px;}
.h1_c00142{height:1225.500000px;}
.h0_c00142{height:1263.000000px;}
.w1_c00142{width:855.000000px;}
.w0_c00142{width:892.500000px;}
.x0_c00142{left:0.000000px;}
.x1_c00142{left:18.750000px;}
.x3_c00142{left:109.439925px;}
.x2_c00142{left:136.440000px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls0_c00142{letter-spacing:0.000000pt;}
.ws0_c00142{word-spacing:0.000000pt;}
._0_c00142{width:1019.274133pt;}
.fs0_c00142{font-size:64.000000pt;}
.y0_c00142{bottom:0.000000pt;}
.y1_c00142{bottom:16.666667pt;}
.y3_c00142{bottom:33.653360pt;}
.y2_c00142{bottom:51.893360pt;}
.y4_c00142{bottom:996.213333pt;}
.h2_c00142{height:57.375000pt;}
.h3_c00142{height:57.781250pt;}
.h1_c00142{height:1089.333333pt;}
.h0_c00142{height:1122.666667pt;}
.w1_c00142{width:760.000000pt;}
.w0_c00142{width:793.333333pt;}
.x0_c00142{left:0.000000pt;}
.x1_c00142{left:16.666667pt;}
.x3_c00142{left:97.279933pt;}
.x2_c00142{left:121.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2f23995982db74f27959aa5e.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00143;src:url('chunks/assets/font_c25516df77051931b16939a0.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00143;src:url('chunks/assets/font_c45407b5e30ba4f711971c81.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:1.104492;font-style: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;}
.ls2_c00143{letter-spacing:-0.014400px;}
.ls1_c00143{letter-spacing:0.000000px;}
.ls0_c00143{letter-spacing:0.014400px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00143{word-spacing:-20.030400px;}
.ws2_c00143{word-spacing:-20.016000px;}
.ws1_c00143{word-spacing:-20.001600px;}
.ws3_c00143{word-spacing:0.000000px;}
._9_c00143{width:1.008900px;}
._4_c00143{width:3.405600px;}
._7_c00143{width:4.924800px;}
._d_c00143{width:6.284700px;}
._b_c00143{width:10.116000px;}
._10_c00143{width:11.707200px;}
._c_c00143{width:13.082400px;}
._8_c00143{width:15.336000px;}
._e_c00143{width:18.669600px;}
._6_c00143{width:21.231720px;}
._a_c00143{width:22.406400px;}
._3_c00143{width:27.907500px;}
._5_c00143{width:28.987200px;}
._f_c00143{width:38.966400px;}
._1_c00143{width:1061.484000px;}
._2_c00143{width:1146.684000px;}
._0_c00143{width:2079.683700px;}
.fc1_c00143{color:transparent;}
.fc0_c00143{color:rgb(0,0,0);}
.fs1_c00143{font-size:53.280000px;}
.fs0_c00143{font-size:72.000000px;}
.y0_c00143{bottom:0.000000px;}
.y5_c00143{bottom:3.960000px;}
.y1_c00143{bottom:18.750000px;}
.y3_c00143{bottom:36.420030px;}
.y4_c00143{bottom:47.250030px;}
.y1e_c00143{bottom:109.140030px;}
.y1d_c00143{bottom:150.540000px;}
.y1c_c00143{bottom:191.940000px;}
.y1b_c00143{bottom:233.340000px;}
.y1a_c00143{bottom:274.740000px;}
.y19_c00143{bottom:316.140000px;}
.y18_c00143{bottom:357.540000px;}
.y17_c00143{bottom:398.940000px;}
.y16_c00143{bottom:440.340000px;}
.y15_c00143{bottom:481.740000px;}
.y14_c00143{bottom:523.140000px;}
.y13_c00143{bottom:564.540000px;}
.y12_c00143{bottom:605.940000px;}
.y11_c00143{bottom:647.340000px;}
.y10_c00143{bottom:688.740000px;}
.yf_c00143{bottom:730.140000px;}
.ye_c00143{bottom:789.540000px;}
.yd_c00143{bottom:830.940000px;}
.yc_c00143{bottom:872.340000px;}
.yb_c00143{bottom:913.740000px;}
.ya_c00143{bottom:955.140000px;}
.y9_c00143{bottom:996.540000px;}
.y8_c00143{bottom:1037.940000px;}
.y7_c00143{bottom:1079.340000px;}
.y6_c00143{bottom:1120.740000px;}
.y2_c00143{bottom:1174.020000px;}
.h3_c00143{height:20.520000px;}
.h2_c00143{height:64.546875px;}
.h4_c00143{height:65.003906px;}
.h1_c00143{height:1225.500000px;}
.h0_c00143{height:1263.000000px;}
.w2_c00143{width:30.240000px;}
.w1_c00143{width:855.000000px;}
.w0_c00143{width:892.500000px;}
.x0_c00143{left:0.000000px;}
.x1_c00143{left:18.750000px;}
.x2_c00143{left:109.439925px;}
.x5_c00143{left:151.965150px;}
.x3_c00143{left:157.739850px;}
.x4_c00143{left:735.510000px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls2_c00143{letter-spacing:-0.012800pt;}
.ls1_c00143{letter-spacing:0.000000pt;}
.ls0_c00143{letter-spacing:0.012800pt;}
.ws0_c00143{word-spacing:-17.804800pt;}
.ws2_c00143{word-spacing:-17.792000pt;}
.ws1_c00143{word-spacing:-17.779200pt;}
.ws3_c00143{word-spacing:0.000000pt;}
._9_c00143{width:0.896800pt;}
._4_c00143{width:3.027200pt;}
._7_c00143{width:4.377600pt;}
._d_c00143{width:5.586400pt;}
._b_c00143{width:8.992000pt;}
._10_c00143{width:10.406400pt;}
._c_c00143{width:11.628800pt;}
._8_c00143{width:13.632000pt;}
._e_c00143{width:16.595200pt;}
._6_c00143{width:18.872640pt;}
._a_c00143{width:19.916800pt;}
._3_c00143{width:24.806667pt;}
._5_c00143{width:25.766400pt;}
._f_c00143{width:34.636800pt;}
._1_c00143{width:943.541333pt;}
._2_c00143{width:1019.274667pt;}
._0_c00143{width:1848.607733pt;}
.fs1_c00143{font-size:47.360000pt;}
.fs0_c00143{font-size:64.000000pt;}
.y0_c00143{bottom:0.000000pt;}
.y5_c00143{bottom:3.520000pt;}
.y1_c00143{bottom:16.666667pt;}
.y3_c00143{bottom:32.373360pt;}
.y4_c00143{bottom:42.000027pt;}
.y1e_c00143{bottom:97.013360pt;}
.y1d_c00143{bottom:133.813333pt;}
.y1c_c00143{bottom:170.613333pt;}
.y1b_c00143{bottom:207.413333pt;}
.y1a_c00143{bottom:244.213333pt;}
.y19_c00143{bottom:281.013333pt;}
.y18_c00143{bottom:317.813333pt;}
.y17_c00143{bottom:354.613333pt;}
.y16_c00143{bottom:391.413333pt;}
.y15_c00143{bottom:428.213333pt;}
.y14_c00143{bottom:465.013333pt;}
.y13_c00143{bottom:501.813333pt;}
.y12_c00143{bottom:538.613333pt;}
.y11_c00143{bottom:575.413333pt;}
.y10_c00143{bottom:612.213333pt;}
.yf_c00143{bottom:649.013333pt;}
.ye_c00143{bottom:701.813333pt;}
.yd_c00143{bottom:738.613333pt;}
.yc_c00143{bottom:775.413333pt;}
.yb_c00143{bottom:812.213333pt;}
.ya_c00143{bottom:849.013333pt;}
.y9_c00143{bottom:885.813333pt;}
.y8_c00143{bottom:922.613333pt;}
.y7_c00143{bottom:959.413333pt;}
.y6_c00143{bottom:996.213333pt;}
.y2_c00143{bottom:1043.573333pt;}
.h3_c00143{height:18.240000pt;}
.h2_c00143{height:57.375000pt;}
.h4_c00143{height:57.781250pt;}
.h1_c00143{height:1089.333333pt;}
.h0_c00143{height:1122.666667pt;}
.w2_c00143{width:26.880000pt;}
.w1_c00143{width:760.000000pt;}
.w0_c00143{width:793.333333pt;}
.x0_c00143{left:0.000000pt;}
.x1_c00143{left:16.666667pt;}
.x2_c00143{left:97.279933pt;}
.x5_c00143{left:135.080133pt;}
.x3_c00143{left:140.213200pt;}
.x4_c00143{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_91f8b857b94ce4832f946e6b.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00144{letter-spacing:0.000000px;}
.ls1_c00144{letter-spacing:0.000600px;}
.ls0_c00144{letter-spacing:0.014400px;}
.ls3_c00144{letter-spacing:9.676800px;}
.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:-20.030400px;}
.ws1_c00144{word-spacing:0.000000px;}
._a_c00144{margin-left:-1.022400px;}
._1_c00144{width:1.346400px;}
._3_c00144{width:2.815200px;}
._4_c00144{width:4.953600px;}
._5_c00144{width:6.618540px;}
._2_c00144{width:9.259200px;}
._8_c00144{width:10.416000px;}
._c_c00144{width:11.716200px;}
._7_c00144{width:13.500000px;}
._d_c00144{width:16.056000px;}
._b_c00144{width:18.261000px;}
._6_c00144{width:21.168000px;}
._9_c00144{width:48.585600px;}
._0_c00144{width:1146.683400px;}
.fc1_c00144{color:transparent;}
.fc0_c00144{color:rgb(0,0,0);}
.fs0_c00144{font-size:72.000000px;}
.y0_c00144{bottom:0.000000px;}
.y4_c00144{bottom:3.960000px;}
.y1_c00144{bottom:18.750000px;}
.y2_c00144{bottom:37.860030px;}
.y3_c00144{bottom:52.290030px;}
.y1c_c00144{bottom:103.020030px;}
.y1b_c00144{bottom:144.780000px;}
.y1a_c00144{bottom:186.180000px;}
.y19_c00144{bottom:245.580000px;}
.y18_c00144{bottom:286.980000px;}
.y17_c00144{bottom:346.380000px;}
.y16_c00144{bottom:387.780000px;}
.y15_c00144{bottom:447.180000px;}
.y14_c00144{bottom:488.580000px;}
.y13_c00144{bottom:529.980000px;}
.y12_c00144{bottom:571.380000px;}
.y11_c00144{bottom:612.420000px;}
.y10_c00144{bottom:656.340000px;}
.yf_c00144{bottom:706.740000px;}
.ye_c00144{bottom:748.140000px;}
.yd_c00144{bottom:789.540000px;}
.yc_c00144{bottom:830.940000px;}
.yb_c00144{bottom:872.340000px;}
.ya_c00144{bottom:913.740000px;}
.y9_c00144{bottom:955.140000px;}
.y8_c00144{bottom:996.540000px;}
.y7_c00144{bottom:1037.940000px;}
.y6_c00144{bottom:1079.340000px;}
.y5_c00144{bottom:1120.740000px;}
.h3_c00144{height:20.520000px;}
.h2_c00144{height:64.546875px;}
.h1_c00144{height:1225.500000px;}
.h0_c00144{height:1263.000000px;}
.w2_c00144{width:30.240000px;}
.w1_c00144{width:855.000000px;}
.w0_c00144{width:892.500000px;}
.x0_c00144{left:0.000000px;}
.x1_c00144{left:18.750000px;}
.x4_c00144{left:109.439925px;}
.x3_c00144{left:128.190000px;}
.x2_c00144{left:136.440000px;}
.x5_c00144{left:151.965150px;}
.x6_c00144{left:173.265000px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls2_c00144{letter-spacing:0.000000pt;}
.ls1_c00144{letter-spacing:0.000533pt;}
.ls0_c00144{letter-spacing:0.012800pt;}
.ls3_c00144{letter-spacing:8.601600pt;}
.ws0_c00144{word-spacing:-17.804800pt;}
.ws1_c00144{word-spacing:0.000000pt;}
._a_c00144{margin-left:-0.908800pt;}
._1_c00144{width:1.196800pt;}
._3_c00144{width:2.502400pt;}
._4_c00144{width:4.403200pt;}
._5_c00144{width:5.883147pt;}
._2_c00144{width:8.230400pt;}
._8_c00144{width:9.258667pt;}
._c_c00144{width:10.414400pt;}
._7_c00144{width:12.000000pt;}
._d_c00144{width:14.272000pt;}
._b_c00144{width:16.232000pt;}
._6_c00144{width:18.816000pt;}
._9_c00144{width:43.187200pt;}
._0_c00144{width:1019.274133pt;}
.fs0_c00144{font-size:64.000000pt;}
.y0_c00144{bottom:0.000000pt;}
.y4_c00144{bottom:3.520000pt;}
.y1_c00144{bottom:16.666667pt;}
.y2_c00144{bottom:33.653360pt;}
.y3_c00144{bottom:46.480027pt;}
.y1c_c00144{bottom:91.573360pt;}
.y1b_c00144{bottom:128.693333pt;}
.y1a_c00144{bottom:165.493333pt;}
.y19_c00144{bottom:218.293333pt;}
.y18_c00144{bottom:255.093333pt;}
.y17_c00144{bottom:307.893333pt;}
.y16_c00144{bottom:344.693333pt;}
.y15_c00144{bottom:397.493333pt;}
.y14_c00144{bottom:434.293333pt;}
.y13_c00144{bottom:471.093333pt;}
.y12_c00144{bottom:507.893333pt;}
.y11_c00144{bottom:544.373333pt;}
.y10_c00144{bottom:583.413333pt;}
.yf_c00144{bottom:628.213333pt;}
.ye_c00144{bottom:665.013333pt;}
.yd_c00144{bottom:701.813333pt;}
.yc_c00144{bottom:738.613333pt;}
.yb_c00144{bottom:775.413333pt;}
.ya_c00144{bottom:812.213333pt;}
.y9_c00144{bottom:849.013333pt;}
.y8_c00144{bottom:885.813333pt;}
.y7_c00144{bottom:922.613333pt;}
.y6_c00144{bottom:959.413333pt;}
.y5_c00144{bottom:996.213333pt;}
.h3_c00144{height:18.240000pt;}
.h2_c00144{height:57.375000pt;}
.h1_c00144{height:1089.333333pt;}
.h0_c00144{height:1122.666667pt;}
.w2_c00144{width:26.880000pt;}
.w1_c00144{width:760.000000pt;}
.w0_c00144{width:793.333333pt;}
.x0_c00144{left:0.000000pt;}
.x1_c00144{left:16.666667pt;}
.x4_c00144{left:97.279933pt;}
.x3_c00144{left:113.946667pt;}
.x2_c00144{left:121.280000pt;}
.x5_c00144{left:135.080133pt;}
.x6_c00144{left:154.013333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0f2029e09155c37d4b4055c7.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00145{vertical-align:0.000000px;}
.ls4_c00145{letter-spacing:-0.014400px;}
.ls3_c00145{letter-spacing:0.000000px;}
.ls1_c00145{letter-spacing:0.000600px;}
.ls0_c00145{letter-spacing:0.014400px;}
.ls2_c00145{letter-spacing:3.823200px;}
.sc__c00145{text-shadow:none;}
.sc0_c00145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00145{-webkit-text-stroke:0px transparent;}
.sc0_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00145{word-spacing:-20.030400px;}
.ws1_c00145{word-spacing:-20.001600px;}
.ws2_c00145{word-spacing:0.000000px;}
._c_c00145{margin-left:-1.002600px;}
._10_c00145{width:1.188000px;}
._d_c00145{width:2.700000px;}
._4_c00145{width:3.774600px;}
._a_c00145{width:4.890600px;}
._b_c00145{width:5.906400px;}
._e_c00145{width:10.641600px;}
._5_c00145{width:15.156000px;}
._6_c00145{width:16.596000px;}
._9_c00145{width:18.000000px;}
._7_c00145{width:21.148200px;}
._12_c00145{width:26.654400px;}
._f_c00145{width:28.969200px;}
._8_c00145{width:30.045600px;}
._11_c00145{width:38.296800px;}
._3_c00145{width:65.183400px;}
._1_c00145{width:1061.484000px;}
._2_c00145{width:1146.684000px;}
._0_c00145{width:2079.683700px;}
.fc1_c00145{color:transparent;}
.fc0_c00145{color:rgb(0,0,0);}
.fs1_c00145{font-size:53.280000px;}
.fs0_c00145{font-size:72.000000px;}
.y0_c00145{bottom:0.000000px;}
.y5_c00145{bottom:3.960000px;}
.y1_c00145{bottom:18.750000px;}
.y3_c00145{bottom:36.420030px;}
.y4_c00145{bottom:47.250030px;}
.y1b_c00145{bottom:120.660030px;}
.y1a_c00145{bottom:180.060000px;}
.y19_c00145{bottom:241.620000px;}
.y18_c00145{bottom:283.380000px;}
.y17_c00145{bottom:342.780000px;}
.y16_c00145{bottom:384.180000px;}
.y15_c00145{bottom:425.580000px;}
.y14_c00145{bottom:484.980000px;}
.y13_c00145{bottom:526.380000px;}
.y12_c00145{bottom:585.780000px;}
.y11_c00145{bottom:627.180000px;}
.y10_c00145{bottom:668.580000px;}
.yf_c00145{bottom:709.980000px;}
.ye_c00145{bottom:751.380000px;}
.yd_c00145{bottom:810.780000px;}
.yc_c00145{bottom:852.180000px;}
.yb_c00145{bottom:893.580000px;}
.ya_c00145{bottom:952.980000px;}
.y9_c00145{bottom:994.380000px;}
.y8_c00145{bottom:1035.780000px;}
.y7_c00145{bottom:1077.180000px;}
.y6_c00145{bottom:1118.220000px;}
.y2_c00145{bottom:1174.020000px;}
.h3_c00145{height:20.520000px;}
.h2_c00145{height:64.546875px;}
.h1_c00145{height:1225.500000px;}
.h0_c00145{height:1263.000000px;}
.w2_c00145{width:30.240000px;}
.w1_c00145{width:855.000000px;}
.w0_c00145{width:892.500000px;}
.x0_c00145{left:0.000000px;}
.x1_c00145{left:18.750000px;}
.x2_c00145{left:109.439925px;}
.x5_c00145{left:151.965150px;}
.x3_c00145{left:157.739850px;}
.x6_c00145{left:173.265000px;}
.x4_c00145{left:735.510000px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls4_c00145{letter-spacing:-0.012800pt;}
.ls3_c00145{letter-spacing:0.000000pt;}
.ls1_c00145{letter-spacing:0.000533pt;}
.ls0_c00145{letter-spacing:0.012800pt;}
.ls2_c00145{letter-spacing:3.398400pt;}
.ws0_c00145{word-spacing:-17.804800pt;}
.ws1_c00145{word-spacing:-17.779200pt;}
.ws2_c00145{word-spacing:0.000000pt;}
._c_c00145{margin-left:-0.891200pt;}
._10_c00145{width:1.056000pt;}
._d_c00145{width:2.400000pt;}
._4_c00145{width:3.355200pt;}
._a_c00145{width:4.347200pt;}
._b_c00145{width:5.250133pt;}
._e_c00145{width:9.459200pt;}
._5_c00145{width:13.472000pt;}
._6_c00145{width:14.752000pt;}
._9_c00145{width:16.000000pt;}
._7_c00145{width:18.798400pt;}
._12_c00145{width:23.692800pt;}
._f_c00145{width:25.750400pt;}
._8_c00145{width:26.707200pt;}
._11_c00145{width:34.041600pt;}
._3_c00145{width:57.940800pt;}
._1_c00145{width:943.541333pt;}
._2_c00145{width:1019.274667pt;}
._0_c00145{width:1848.607733pt;}
.fs1_c00145{font-size:47.360000pt;}
.fs0_c00145{font-size:64.000000pt;}
.y0_c00145{bottom:0.000000pt;}
.y5_c00145{bottom:3.520000pt;}
.y1_c00145{bottom:16.666667pt;}
.y3_c00145{bottom:32.373360pt;}
.y4_c00145{bottom:42.000027pt;}
.y1b_c00145{bottom:107.253360pt;}
.y1a_c00145{bottom:160.053333pt;}
.y19_c00145{bottom:214.773333pt;}
.y18_c00145{bottom:251.893333pt;}
.y17_c00145{bottom:304.693333pt;}
.y16_c00145{bottom:341.493333pt;}
.y15_c00145{bottom:378.293333pt;}
.y14_c00145{bottom:431.093333pt;}
.y13_c00145{bottom:467.893333pt;}
.y12_c00145{bottom:520.693333pt;}
.y11_c00145{bottom:557.493333pt;}
.y10_c00145{bottom:594.293333pt;}
.yf_c00145{bottom:631.093333pt;}
.ye_c00145{bottom:667.893333pt;}
.yd_c00145{bottom:720.693333pt;}
.yc_c00145{bottom:757.493333pt;}
.yb_c00145{bottom:794.293333pt;}
.ya_c00145{bottom:847.093333pt;}
.y9_c00145{bottom:883.893333pt;}
.y8_c00145{bottom:920.693333pt;}
.y7_c00145{bottom:957.493333pt;}
.y6_c00145{bottom:993.973333pt;}
.y2_c00145{bottom:1043.573333pt;}
.h3_c00145{height:18.240000pt;}
.h2_c00145{height:57.375000pt;}
.h1_c00145{height:1089.333333pt;}
.h0_c00145{height:1122.666667pt;}
.w2_c00145{width:26.880000pt;}
.w1_c00145{width:760.000000pt;}
.w0_c00145{width:793.333333pt;}
.x0_c00145{left:0.000000pt;}
.x1_c00145{left:16.666667pt;}
.x2_c00145{left:97.279933pt;}
.x5_c00145{left:135.080133pt;}
.x3_c00145{left:140.213200pt;}
.x6_c00145{left:154.013333pt;}
.x4_c00145{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c2e7d811134a3d2711894bbc.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00146{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.ls2_c00146{letter-spacing:0.000000px;}
.ls0_c00146{letter-spacing:0.014400px;}
.ls1_c00146{letter-spacing:37.624200px;}
.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:-20.030400px;}
.ws1_c00146{word-spacing:0.000000px;}
._7_c00146{width:1.000800px;}
._4_c00146{width:2.539800px;}
._a_c00146{width:4.062600px;}
._e_c00146{width:8.006400px;}
._b_c00146{width:9.201600px;}
._5_c00146{width:10.497600px;}
._c_c00146{width:12.988800px;}
._1_c00146{width:21.148200px;}
._d_c00146{width:25.380000px;}
._2_c00146{width:28.980000px;}
._6_c00146{width:30.146400px;}
._8_c00146{width:37.555200px;}
._9_c00146{width:41.207400px;}
._3_c00146{width:45.403200px;}
._0_c00146{width:1146.683400px;}
.fc1_c00146{color:transparent;}
.fc0_c00146{color:rgb(0,0,0);}
.fs0_c00146{font-size:72.000000px;}
.y0_c00146{bottom:0.000000px;}
.y4_c00146{bottom:3.960000px;}
.y1_c00146{bottom:18.750000px;}
.y2_c00146{bottom:37.860030px;}
.y3_c00146{bottom:52.290030px;}
.y1a_c00146{bottom:140.820000px;}
.y19_c00146{bottom:182.580000px;}
.y18_c00146{bottom:223.980000px;}
.y17_c00146{bottom:283.380000px;}
.y16_c00146{bottom:324.780000px;}
.y15_c00146{bottom:366.180000px;}
.y14_c00146{bottom:425.580000px;}
.y13_c00146{bottom:466.980000px;}
.y12_c00146{bottom:508.380000px;}
.y11_c00146{bottom:567.780000px;}
.y10_c00146{bottom:609.180000px;}
.yf_c00146{bottom:650.580000px;}
.ye_c00146{bottom:709.980000px;}
.yd_c00146{bottom:751.380000px;}
.yc_c00146{bottom:810.780000px;}
.yb_c00146{bottom:852.180000px;}
.ya_c00146{bottom:893.580000px;}
.y9_c00146{bottom:952.980000px;}
.y8_c00146{bottom:994.380000px;}
.y7_c00146{bottom:1035.780000px;}
.y6_c00146{bottom:1077.180000px;}
.y5_c00146{bottom:1118.220000px;}
.h3_c00146{height:20.520000px;}
.h2_c00146{height:64.546875px;}
.h1_c00146{height:1225.500000px;}
.h0_c00146{height:1263.000000px;}
.w2_c00146{width:30.240000px;}
.w1_c00146{width:855.000000px;}
.w0_c00146{width:892.500000px;}
.x0_c00146{left:0.000000px;}
.x1_c00146{left:18.750000px;}
.x3_c00146{left:128.190000px;}
.x2_c00146{left:136.440000px;}
.x4_c00146{left:151.965150px;}
.x5_c00146{left:173.265000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls2_c00146{letter-spacing:0.000000pt;}
.ls0_c00146{letter-spacing:0.012800pt;}
.ls1_c00146{letter-spacing:33.443733pt;}
.ws0_c00146{word-spacing:-17.804800pt;}
.ws1_c00146{word-spacing:0.000000pt;}
._7_c00146{width:0.889600pt;}
._4_c00146{width:2.257600pt;}
._a_c00146{width:3.611200pt;}
._e_c00146{width:7.116800pt;}
._b_c00146{width:8.179200pt;}
._5_c00146{width:9.331200pt;}
._c_c00146{width:11.545600pt;}
._1_c00146{width:18.798400pt;}
._d_c00146{width:22.560000pt;}
._2_c00146{width:25.760000pt;}
._6_c00146{width:26.796800pt;}
._8_c00146{width:33.382400pt;}
._9_c00146{width:36.628800pt;}
._3_c00146{width:40.358400pt;}
._0_c00146{width:1019.274133pt;}
.fs0_c00146{font-size:64.000000pt;}
.y0_c00146{bottom:0.000000pt;}
.y4_c00146{bottom:3.520000pt;}
.y1_c00146{bottom:16.666667pt;}
.y2_c00146{bottom:33.653360pt;}
.y3_c00146{bottom:46.480027pt;}
.y1a_c00146{bottom:125.173333pt;}
.y19_c00146{bottom:162.293333pt;}
.y18_c00146{bottom:199.093333pt;}
.y17_c00146{bottom:251.893333pt;}
.y16_c00146{bottom:288.693333pt;}
.y15_c00146{bottom:325.493333pt;}
.y14_c00146{bottom:378.293333pt;}
.y13_c00146{bottom:415.093333pt;}
.y12_c00146{bottom:451.893333pt;}
.y11_c00146{bottom:504.693333pt;}
.y10_c00146{bottom:541.493333pt;}
.yf_c00146{bottom:578.293333pt;}
.ye_c00146{bottom:631.093333pt;}
.yd_c00146{bottom:667.893333pt;}
.yc_c00146{bottom:720.693333pt;}
.yb_c00146{bottom:757.493333pt;}
.ya_c00146{bottom:794.293333pt;}
.y9_c00146{bottom:847.093333pt;}
.y8_c00146{bottom:883.893333pt;}
.y7_c00146{bottom:920.693333pt;}
.y6_c00146{bottom:957.493333pt;}
.y5_c00146{bottom:993.973333pt;}
.h3_c00146{height:18.240000pt;}
.h2_c00146{height:57.375000pt;}
.h1_c00146{height:1089.333333pt;}
.h0_c00146{height:1122.666667pt;}
.w2_c00146{width:26.880000pt;}
.w1_c00146{width:760.000000pt;}
.w0_c00146{width:793.333333pt;}
.x0_c00146{left:0.000000pt;}
.x1_c00146{left:16.666667pt;}
.x3_c00146{left:113.946667pt;}
.x2_c00146{left:121.280000pt;}
.x4_c00146{left:135.080133pt;}
.x5_c00146{left:154.013333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5d095f58ce55863d67570ef.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00147;src:url('chunks/assets/font_e1811caab6c648b531b9058c.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.113281;font-style: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;}
.ls4_c00147{letter-spacing:-0.014400px;}
.ls3_c00147{letter-spacing:0.000000px;}
.ls0_c00147{letter-spacing:0.014400px;}
.ls1_c00147{letter-spacing:0.036000px;}
.ls2_c00147{letter-spacing:20.311200px;}
.sc__c00147{text-shadow:none;}
.sc0_c00147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00147{-webkit-text-stroke:0px transparent;}
.sc0_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00147{word-spacing:-20.052000px;}
.ws0_c00147{word-spacing:-20.030400px;}
.ws2_c00147{word-spacing:-20.001600px;}
.ws3_c00147{word-spacing:0.000000px;}
._c_c00147{width:1.025400px;}
._10_c00147{width:2.995200px;}
._9_c00147{width:5.493600px;}
._6_c00147{width:7.156800px;}
._5_c00147{width:8.287200px;}
._4_c00147{width:13.442400px;}
._7_c00147{width:15.220500px;}
._8_c00147{width:16.755000px;}
._d_c00147{width:18.734400px;}
._e_c00147{width:21.146700px;}
._b_c00147{width:22.572000px;}
._f_c00147{width:27.979200px;}
._3_c00147{width:29.931300px;}
._a_c00147{width:31.172400px;}
._1_c00147{width:1061.484000px;}
._2_c00147{width:1146.684000px;}
._0_c00147{width:2079.683700px;}
.fc1_c00147{color:transparent;}
.fc0_c00147{color:rgb(0,0,0);}
.fs1_c00147{font-size:53.280000px;}
.fs0_c00147{font-size:72.000000px;}
.y0_c00147{bottom:0.000000px;}
.y5_c00147{bottom:3.960000px;}
.y1_c00147{bottom:18.750000px;}
.y3_c00147{bottom:36.420030px;}
.y4_c00147{bottom:47.250030px;}
.y1e_c00147{bottom:109.140030px;}
.y1d_c00147{bottom:150.540000px;}
.y1c_c00147{bottom:191.940000px;}
.y1b_c00147{bottom:233.340000px;}
.y1a_c00147{bottom:274.740000px;}
.y19_c00147{bottom:334.140000px;}
.y18_c00147{bottom:375.540000px;}
.y17_c00147{bottom:416.940000px;}
.y16_c00147{bottom:458.340000px;}
.y15_c00147{bottom:499.740000px;}
.y14_c00147{bottom:541.140000px;}
.y13_c00147{bottom:582.540000px;}
.y12_c00147{bottom:623.940000px;}
.y11_c00147{bottom:665.340000px;}
.y10_c00147{bottom:706.740000px;}
.yf_c00147{bottom:748.140000px;}
.ye_c00147{bottom:789.540000px;}
.yd_c00147{bottom:830.940000px;}
.yc_c00147{bottom:872.340000px;}
.yb_c00147{bottom:913.740000px;}
.ya_c00147{bottom:955.140000px;}
.y9_c00147{bottom:996.540000px;}
.y8_c00147{bottom:1037.940000px;}
.y7_c00147{bottom:1079.340000px;}
.y6_c00147{bottom:1120.740000px;}
.y2_c00147{bottom:1174.020000px;}
.h3_c00147{height:20.520000px;}
.h2_c00147{height:64.546875px;}
.h4_c00147{height:65.003906px;}
.h1_c00147{height:1225.500000px;}
.h0_c00147{height:1263.000000px;}
.w2_c00147{width:30.240000px;}
.w1_c00147{width:855.000000px;}
.w0_c00147{width:892.500000px;}
.x0_c00147{left:0.000000px;}
.x1_c00147{left:18.750000px;}
.x2_c00147{left:109.439925px;}
.x5_c00147{left:151.965150px;}
.x3_c00147{left:157.739850px;}
.x4_c00147{left:735.510000px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls4_c00147{letter-spacing:-0.012800pt;}
.ls3_c00147{letter-spacing:0.000000pt;}
.ls0_c00147{letter-spacing:0.012800pt;}
.ls1_c00147{letter-spacing:0.032000pt;}
.ls2_c00147{letter-spacing:18.054400pt;}
.ws1_c00147{word-spacing:-17.824000pt;}
.ws0_c00147{word-spacing:-17.804800pt;}
.ws2_c00147{word-spacing:-17.779200pt;}
.ws3_c00147{word-spacing:0.000000pt;}
._c_c00147{width:0.911467pt;}
._10_c00147{width:2.662400pt;}
._9_c00147{width:4.883200pt;}
._6_c00147{width:6.361600pt;}
._5_c00147{width:7.366400pt;}
._4_c00147{width:11.948800pt;}
._7_c00147{width:13.529333pt;}
._8_c00147{width:14.893333pt;}
._d_c00147{width:16.652800pt;}
._e_c00147{width:18.797067pt;}
._b_c00147{width:20.064000pt;}
._f_c00147{width:24.870400pt;}
._3_c00147{width:26.605600pt;}
._a_c00147{width:27.708800pt;}
._1_c00147{width:943.541333pt;}
._2_c00147{width:1019.274667pt;}
._0_c00147{width:1848.607733pt;}
.fs1_c00147{font-size:47.360000pt;}
.fs0_c00147{font-size:64.000000pt;}
.y0_c00147{bottom:0.000000pt;}
.y5_c00147{bottom:3.520000pt;}
.y1_c00147{bottom:16.666667pt;}
.y3_c00147{bottom:32.373360pt;}
.y4_c00147{bottom:42.000027pt;}
.y1e_c00147{bottom:97.013360pt;}
.y1d_c00147{bottom:133.813333pt;}
.y1c_c00147{bottom:170.613333pt;}
.y1b_c00147{bottom:207.413333pt;}
.y1a_c00147{bottom:244.213333pt;}
.y19_c00147{bottom:297.013333pt;}
.y18_c00147{bottom:333.813333pt;}
.y17_c00147{bottom:370.613333pt;}
.y16_c00147{bottom:407.413333pt;}
.y15_c00147{bottom:444.213333pt;}
.y14_c00147{bottom:481.013333pt;}
.y13_c00147{bottom:517.813333pt;}
.y12_c00147{bottom:554.613333pt;}
.y11_c00147{bottom:591.413333pt;}
.y10_c00147{bottom:628.213333pt;}
.yf_c00147{bottom:665.013333pt;}
.ye_c00147{bottom:701.813333pt;}
.yd_c00147{bottom:738.613333pt;}
.yc_c00147{bottom:775.413333pt;}
.yb_c00147{bottom:812.213333pt;}
.ya_c00147{bottom:849.013333pt;}
.y9_c00147{bottom:885.813333pt;}
.y8_c00147{bottom:922.613333pt;}
.y7_c00147{bottom:959.413333pt;}
.y6_c00147{bottom:996.213333pt;}
.y2_c00147{bottom:1043.573333pt;}
.h3_c00147{height:18.240000pt;}
.h2_c00147{height:57.375000pt;}
.h4_c00147{height:57.781250pt;}
.h1_c00147{height:1089.333333pt;}
.h0_c00147{height:1122.666667pt;}
.w2_c00147{width:26.880000pt;}
.w1_c00147{width:760.000000pt;}
.w0_c00147{width:793.333333pt;}
.x0_c00147{left:0.000000pt;}
.x1_c00147{left:16.666667pt;}
.x2_c00147{left:97.279933pt;}
.x5_c00147{left:135.080133pt;}
.x3_c00147{left:140.213200pt;}
.x4_c00147{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_01d0935411d0060d2c1e07a6.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00148;src:url('chunks/assets/font_9a8f38d727f5910e36be6c7a.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.104492;font-style: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;}
.ls3_c00148{letter-spacing:0.000000px;}
.ls0_c00148{letter-spacing:0.014400px;}
.ls1_c00148{letter-spacing:0.410256px;}
.ls2_c00148{letter-spacing:0.479640px;}
.ls4_c00148{letter-spacing:0.527472px;}
.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:-20.030400px;}
.ws1_c00148{word-spacing:-15.222096px;}
.ws2_c00148{word-spacing:0.000000px;}
._7_c00148{margin-left:-1.065600px;}
._2_c00148{width:1.519200px;}
._6_c00148{width:3.376800px;}
._1_c00148{width:4.464000px;}
._4_c00148{width:8.935200px;}
._3_c00148{width:15.969600px;}
._5_c00148{width:32.659200px;}
._0_c00148{width:1146.683400px;}
.fc1_c00148{color:transparent;}
.fc0_c00148{color:rgb(0,0,0);}
.fs1_c00148{font-size:53.280000px;}
.fs0_c00148{font-size:72.000000px;}
.y0_c00148{bottom:0.000000px;}
.y4_c00148{bottom:3.960000px;}
.y1_c00148{bottom:18.750000px;}
.y2_c00148{bottom:37.860030px;}
.y3_c00148{bottom:52.290030px;}
.y1d_c00148{bottom:177.540000px;}
.y1c_c00148{bottom:193.380000px;}
.y1b_c00148{bottom:209.940000px;}
.y1a_c00148{bottom:251.340000px;}
.y19_c00148{bottom:292.740000px;}
.y18_c00148{bottom:334.140000px;}
.y17_c00148{bottom:375.540000px;}
.y16_c00148{bottom:416.940000px;}
.y15_c00148{bottom:458.340000px;}
.y14_c00148{bottom:499.740000px;}
.y13_c00148{bottom:541.140000px;}
.y12_c00148{bottom:582.540000px;}
.y11_c00148{bottom:623.940000px;}
.y10_c00148{bottom:665.340000px;}
.yf_c00148{bottom:706.740000px;}
.ye_c00148{bottom:748.140000px;}
.yd_c00148{bottom:789.540000px;}
.yc_c00148{bottom:830.940000px;}
.yb_c00148{bottom:872.340000px;}
.ya_c00148{bottom:913.740000px;}
.y9_c00148{bottom:955.140000px;}
.y8_c00148{bottom:996.540000px;}
.y7_c00148{bottom:1037.940000px;}
.y6_c00148{bottom:1079.340000px;}
.y5_c00148{bottom:1120.740000px;}
.h3_c00148{height:20.520000px;}
.h4_c00148{height:47.764688px;}
.h2_c00148{height:64.546875px;}
.h1_c00148{height:1225.500000px;}
.h0_c00148{height:1263.000000px;}
.w2_c00148{width:30.240000px;}
.w1_c00148{width:855.000000px;}
.w0_c00148{width:892.500000px;}
.x0_c00148{left:0.000000px;}
.x1_c00148{left:18.750000px;}
.x4_c00148{left:109.439925px;}
.x3_c00148{left:128.190000px;}
.x2_c00148{left:136.440000px;}
.x5_c00148{left:151.965150px;}
.x7_c00148{left:342.184200px;}
.x6_c00148{left:428.114850px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls3_c00148{letter-spacing:0.000000pt;}
.ls0_c00148{letter-spacing:0.012800pt;}
.ls1_c00148{letter-spacing:0.364672pt;}
.ls2_c00148{letter-spacing:0.426347pt;}
.ls4_c00148{letter-spacing:0.468864pt;}
.ws0_c00148{word-spacing:-17.804800pt;}
.ws1_c00148{word-spacing:-13.530752pt;}
.ws2_c00148{word-spacing:0.000000pt;}
._7_c00148{margin-left:-0.947200pt;}
._2_c00148{width:1.350400pt;}
._6_c00148{width:3.001600pt;}
._1_c00148{width:3.968000pt;}
._4_c00148{width:7.942400pt;}
._3_c00148{width:14.195200pt;}
._5_c00148{width:29.030400pt;}
._0_c00148{width:1019.274133pt;}
.fs1_c00148{font-size:47.360000pt;}
.fs0_c00148{font-size:64.000000pt;}
.y0_c00148{bottom:0.000000pt;}
.y4_c00148{bottom:3.520000pt;}
.y1_c00148{bottom:16.666667pt;}
.y2_c00148{bottom:33.653360pt;}
.y3_c00148{bottom:46.480027pt;}
.y1d_c00148{bottom:157.813333pt;}
.y1c_c00148{bottom:171.893333pt;}
.y1b_c00148{bottom:186.613333pt;}
.y1a_c00148{bottom:223.413333pt;}
.y19_c00148{bottom:260.213333pt;}
.y18_c00148{bottom:297.013333pt;}
.y17_c00148{bottom:333.813333pt;}
.y16_c00148{bottom:370.613333pt;}
.y15_c00148{bottom:407.413333pt;}
.y14_c00148{bottom:444.213333pt;}
.y13_c00148{bottom:481.013333pt;}
.y12_c00148{bottom:517.813333pt;}
.y11_c00148{bottom:554.613333pt;}
.y10_c00148{bottom:591.413333pt;}
.yf_c00148{bottom:628.213333pt;}
.ye_c00148{bottom:665.013333pt;}
.yd_c00148{bottom:701.813333pt;}
.yc_c00148{bottom:738.613333pt;}
.yb_c00148{bottom:775.413333pt;}
.ya_c00148{bottom:812.213333pt;}
.y9_c00148{bottom:849.013333pt;}
.y8_c00148{bottom:885.813333pt;}
.y7_c00148{bottom:922.613333pt;}
.y6_c00148{bottom:959.413333pt;}
.y5_c00148{bottom:996.213333pt;}
.h3_c00148{height:18.240000pt;}
.h4_c00148{height:42.457500pt;}
.h2_c00148{height:57.375000pt;}
.h1_c00148{height:1089.333333pt;}
.h0_c00148{height:1122.666667pt;}
.w2_c00148{width:26.880000pt;}
.w1_c00148{width:760.000000pt;}
.w0_c00148{width:793.333333pt;}
.x0_c00148{left:0.000000pt;}
.x1_c00148{left:16.666667pt;}
.x4_c00148{left:97.279933pt;}
.x3_c00148{left:113.946667pt;}
.x2_c00148{left:121.280000pt;}
.x5_c00148{left:135.080133pt;}
.x7_c00148{left:304.163733pt;}
.x6_c00148{left:380.546533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3001d2823babc66861f5846b.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c00149{letter-spacing:0.000000px;}
.ls0_c00149{letter-spacing:0.014400px;}
.ls1_c00149{letter-spacing:0.191160px;}
.ls2_c00149{letter-spacing:0.239760px;}
.ls3_c00149{letter-spacing:0.410256px;}
.ls5_c00149{letter-spacing:0.479520px;}
.sc__c00149{text-shadow:none;}
.sc0_c00149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00149{-webkit-text-stroke:0px transparent;}
.sc0_c00149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00149{word-spacing:-20.030400px;}
.ws1_c00149{word-spacing:-15.222096px;}
.ws2_c00149{word-spacing:0.000000px;}
._3_c00149{margin-left:-1.012320px;}
._1_c00149{width:1061.484000px;}
._2_c00149{width:1146.684000px;}
._0_c00149{width:2079.683700px;}
.fc1_c00149{color:transparent;}
.fc0_c00149{color:rgb(0,0,0);}
.fs1_c00149{font-size:53.280000px;}
.fs0_c00149{font-size:72.000000px;}
.y0_c00149{bottom:0.000000px;}
.y5_c00149{bottom:3.960000px;}
.y1_c00149{bottom:18.750000px;}
.y3_c00149{bottom:36.420030px;}
.y4_c00149{bottom:47.250030px;}
.ya_c00149{bottom:91.500030px;}
.y9_c00149{bottom:122.460015px;}
.y8_c00149{bottom:153.420000px;}
.y7_c00149{bottom:184.740000px;}
.y6_c00149{bottom:215.700000px;}
.y2_c00149{bottom:1174.020000px;}
.h3_c00149{height:20.520000px;}
.h4_c00149{height:47.764688px;}
.h2_c00149{height:64.546875px;}
.h1_c00149{height:1225.500000px;}
.h0_c00149{height:1263.000000px;}
.w2_c00149{width:30.240000px;}
.w1_c00149{width:855.000000px;}
.w0_c00149{width:892.500000px;}
.x0_c00149{left:0.000000px;}
.x1_c00149{left:18.750000px;}
.x2_c00149{left:109.439925px;}
.x3_c00149{left:157.739850px;}
.x5_c00149{left:303.918750px;}
.x6_c00149{left:428.114850px;}
.x4_c00149{left:735.510000px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls4_c00149{letter-spacing:0.000000pt;}
.ls0_c00149{letter-spacing:0.012800pt;}
.ls1_c00149{letter-spacing:0.169920pt;}
.ls2_c00149{letter-spacing:0.213120pt;}
.ls3_c00149{letter-spacing:0.364672pt;}
.ls5_c00149{letter-spacing:0.426240pt;}
.ws0_c00149{word-spacing:-17.804800pt;}
.ws1_c00149{word-spacing:-13.530752pt;}
.ws2_c00149{word-spacing:0.000000pt;}
._3_c00149{margin-left:-0.899840pt;}
._1_c00149{width:943.541333pt;}
._2_c00149{width:1019.274667pt;}
._0_c00149{width:1848.607733pt;}
.fs1_c00149{font-size:47.360000pt;}
.fs0_c00149{font-size:64.000000pt;}
.y0_c00149{bottom:0.000000pt;}
.y5_c00149{bottom:3.520000pt;}
.y1_c00149{bottom:16.666667pt;}
.y3_c00149{bottom:32.373360pt;}
.y4_c00149{bottom:42.000027pt;}
.ya_c00149{bottom:81.333360pt;}
.y9_c00149{bottom:108.853347pt;}
.y8_c00149{bottom:136.373333pt;}
.y7_c00149{bottom:164.213333pt;}
.y6_c00149{bottom:191.733333pt;}
.y2_c00149{bottom:1043.573333pt;}
.h3_c00149{height:18.240000pt;}
.h4_c00149{height:42.457500pt;}
.h2_c00149{height:57.375000pt;}
.h1_c00149{height:1089.333333pt;}
.h0_c00149{height:1122.666667pt;}
.w2_c00149{width:26.880000pt;}
.w1_c00149{width:760.000000pt;}
.w0_c00149{width:793.333333pt;}
.x0_c00149{left:0.000000pt;}
.x1_c00149{left:16.666667pt;}
.x2_c00149{left:97.279933pt;}
.x3_c00149{left:140.213200pt;}
.x5_c00149{left:270.150000pt;}
.x6_c00149{left:380.546533pt;}
.x4_c00149{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_21d6b2222a94a0de426b57a9.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.ls4_c00150{letter-spacing:0.000000px;}
.ls0_c00150{letter-spacing:0.014400px;}
.ls1_c00150{letter-spacing:0.191808px;}
.ls2_c00150{letter-spacing:0.240360px;}
.ls3_c00150{letter-spacing:0.410256px;}
.ls5_c00150{letter-spacing:0.479520px;}
.ls6_c00150{letter-spacing:0.548784px;}
.sc__c00150{text-shadow:none;}
.sc0_c00150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00150{-webkit-text-stroke:0px transparent;}
.sc0_c00150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00150{word-spacing:-20.030400px;}
.ws1_c00150{word-spacing:-15.360624px;}
.ws2_c00150{word-spacing:-15.222096px;}
.ws3_c00150{word-spacing:0.000000px;}
._1_c00150{margin-left:-1.012320px;}
._0_c00150{width:1146.683400px;}
.fc1_c00150{color:transparent;}
.fc0_c00150{color:rgb(0,0,0);}
.fs1_c00150{font-size:53.280000px;}
.fs0_c00150{font-size:72.000000px;}
.y0_c00150{bottom:0.000000px;}
.y4_c00150{bottom:3.960000px;}
.y1_c00150{bottom:18.750000px;}
.y2_c00150{bottom:37.860030px;}
.y3_c00150{bottom:52.290030px;}
.y8_c00150{bottom:108.420015px;}
.y7_c00150{bottom:123.900015px;}
.y6_c00150{bottom:139.740000px;}
.y5_c00150{bottom:1124.700000px;}
.h3_c00150{height:20.520000px;}
.h4_c00150{height:47.764688px;}
.h2_c00150{height:64.546875px;}
.h1_c00150{height:1225.500000px;}
.h0_c00150{height:1263.000000px;}
.w2_c00150{width:30.240000px;}
.w1_c00150{width:855.000000px;}
.w0_c00150{width:892.500000px;}
.x0_c00150{left:0.000000px;}
.x1_c00150{left:18.750000px;}
.x3_c00150{left:128.190000px;}
.x2_c00150{left:136.440000px;}
.x5_c00150{left:318.559200px;}
.x4_c00150{left:428.114850px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls4_c00150{letter-spacing:0.000000pt;}
.ls0_c00150{letter-spacing:0.012800pt;}
.ls1_c00150{letter-spacing:0.170496pt;}
.ls2_c00150{letter-spacing:0.213653pt;}
.ls3_c00150{letter-spacing:0.364672pt;}
.ls5_c00150{letter-spacing:0.426240pt;}
.ls6_c00150{letter-spacing:0.487808pt;}
.ws0_c00150{word-spacing:-17.804800pt;}
.ws1_c00150{word-spacing:-13.653888pt;}
.ws2_c00150{word-spacing:-13.530752pt;}
.ws3_c00150{word-spacing:0.000000pt;}
._1_c00150{margin-left:-0.899840pt;}
._0_c00150{width:1019.274133pt;}
.fs1_c00150{font-size:47.360000pt;}
.fs0_c00150{font-size:64.000000pt;}
.y0_c00150{bottom:0.000000pt;}
.y4_c00150{bottom:3.520000pt;}
.y1_c00150{bottom:16.666667pt;}
.y2_c00150{bottom:33.653360pt;}
.y3_c00150{bottom:46.480027pt;}
.y8_c00150{bottom:96.373347pt;}
.y7_c00150{bottom:110.133347pt;}
.y6_c00150{bottom:124.213333pt;}
.y5_c00150{bottom:999.733333pt;}
.h3_c00150{height:18.240000pt;}
.h4_c00150{height:42.457500pt;}
.h2_c00150{height:57.375000pt;}
.h1_c00150{height:1089.333333pt;}
.h0_c00150{height:1122.666667pt;}
.w2_c00150{width:26.880000pt;}
.w1_c00150{width:760.000000pt;}
.w0_c00150{width:793.333333pt;}
.x0_c00150{left:0.000000pt;}
.x1_c00150{left:16.666667pt;}
.x3_c00150{left:113.946667pt;}
.x2_c00150{left:121.280000pt;}
.x5_c00150{left:283.163733pt;}
.x4_c00150{left:380.546533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bf572ca5d0e0659acf492160.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00151;src:url('chunks/assets/font_caae3489a8892646aeb67204.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.ls3_c00151{letter-spacing:-0.014400px;}
.ls2_c00151{letter-spacing:0.000000px;}
.ls0_c00151{letter-spacing:0.014400px;}
.ls4_c00151{letter-spacing:0.043200px;}
.ls1_c00151{letter-spacing:29.991000px;}
.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;}
}
.ws0_c00151{word-spacing:-20.030400px;}
.ws1_c00151{word-spacing:0.000000px;}
._3_c00151{width:1.778400px;}
._b_c00151{width:3.463200px;}
._9_c00151{width:5.277600px;}
._d_c00151{width:6.422400px;}
._8_c00151{width:7.538400px;}
._4_c00151{width:8.762400px;}
._f_c00151{width:10.245600px;}
._5_c00151{width:12.333600px;}
._6_c00151{width:14.205600px;}
._c_c00151{width:15.307200px;}
._a_c00151{width:17.316000px;}
._7_c00151{width:18.964800px;}
._e_c00151{width:32.637600px;}
._10_c00151{width:36.345600px;}
._1_c00151{width:1061.484000px;}
._2_c00151{width:1146.684000px;}
._0_c00151{width:2079.683700px;}
.fc1_c00151{color:transparent;}
.fc0_c00151{color:rgb(0,0,0);}
.fs1_c00151{font-size:53.280000px;}
.fs0_c00151{font-size:72.000000px;}
.y0_c00151{bottom:0.000000px;}
.y5_c00151{bottom:3.960000px;}
.y1_c00151{bottom:18.750000px;}
.y3_c00151{bottom:36.420030px;}
.y4_c00151{bottom:47.250030px;}
.y1e_c00151{bottom:127.140030px;}
.y1d_c00151{bottom:168.540000px;}
.y1c_c00151{bottom:209.940000px;}
.y1b_c00151{bottom:251.340000px;}
.y1a_c00151{bottom:292.740000px;}
.y19_c00151{bottom:334.140000px;}
.y18_c00151{bottom:375.540000px;}
.y17_c00151{bottom:416.940000px;}
.y16_c00151{bottom:458.340000px;}
.y15_c00151{bottom:499.740000px;}
.y14_c00151{bottom:541.140000px;}
.y13_c00151{bottom:582.540000px;}
.y12_c00151{bottom:623.940000px;}
.y11_c00151{bottom:665.340000px;}
.y10_c00151{bottom:706.740000px;}
.yf_c00151{bottom:748.140000px;}
.ye_c00151{bottom:789.540000px;}
.yd_c00151{bottom:830.940000px;}
.yc_c00151{bottom:872.340000px;}
.yb_c00151{bottom:913.740000px;}
.ya_c00151{bottom:955.140000px;}
.y9_c00151{bottom:996.540000px;}
.y8_c00151{bottom:1037.940000px;}
.y7_c00151{bottom:1079.340000px;}
.y6_c00151{bottom:1120.740000px;}
.y2_c00151{bottom:1174.020000px;}
.h3_c00151{height:20.520000px;}
.h2_c00151{height:64.546875px;}
.h4_c00151{height:65.003906px;}
.h1_c00151{height:1225.500000px;}
.h0_c00151{height:1263.000000px;}
.w2_c00151{width:30.240000px;}
.w1_c00151{width:855.000000px;}
.w0_c00151{width:892.500000px;}
.x0_c00151{left:0.000000px;}
.x1_c00151{left:18.750000px;}
.x2_c00151{left:109.439925px;}
.x5_c00151{left:151.965150px;}
.x3_c00151{left:157.739850px;}
.x4_c00151{left:735.510000px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls3_c00151{letter-spacing:-0.012800pt;}
.ls2_c00151{letter-spacing:0.000000pt;}
.ls0_c00151{letter-spacing:0.012800pt;}
.ls4_c00151{letter-spacing:0.038400pt;}
.ls1_c00151{letter-spacing:26.658667pt;}
.ws0_c00151{word-spacing:-17.804800pt;}
.ws1_c00151{word-spacing:0.000000pt;}
._3_c00151{width:1.580800pt;}
._b_c00151{width:3.078400pt;}
._9_c00151{width:4.691200pt;}
._d_c00151{width:5.708800pt;}
._8_c00151{width:6.700800pt;}
._4_c00151{width:7.788800pt;}
._f_c00151{width:9.107200pt;}
._5_c00151{width:10.963200pt;}
._6_c00151{width:12.627200pt;}
._c_c00151{width:13.606400pt;}
._a_c00151{width:15.392000pt;}
._7_c00151{width:16.857600pt;}
._e_c00151{width:29.011200pt;}
._10_c00151{width:32.307200pt;}
._1_c00151{width:943.541333pt;}
._2_c00151{width:1019.274667pt;}
._0_c00151{width:1848.607733pt;}
.fs1_c00151{font-size:47.360000pt;}
.fs0_c00151{font-size:64.000000pt;}
.y0_c00151{bottom:0.000000pt;}
.y5_c00151{bottom:3.520000pt;}
.y1_c00151{bottom:16.666667pt;}
.y3_c00151{bottom:32.373360pt;}
.y4_c00151{bottom:42.000027pt;}
.y1e_c00151{bottom:113.013360pt;}
.y1d_c00151{bottom:149.813333pt;}
.y1c_c00151{bottom:186.613333pt;}
.y1b_c00151{bottom:223.413333pt;}
.y1a_c00151{bottom:260.213333pt;}
.y19_c00151{bottom:297.013333pt;}
.y18_c00151{bottom:333.813333pt;}
.y17_c00151{bottom:370.613333pt;}
.y16_c00151{bottom:407.413333pt;}
.y15_c00151{bottom:444.213333pt;}
.y14_c00151{bottom:481.013333pt;}
.y13_c00151{bottom:517.813333pt;}
.y12_c00151{bottom:554.613333pt;}
.y11_c00151{bottom:591.413333pt;}
.y10_c00151{bottom:628.213333pt;}
.yf_c00151{bottom:665.013333pt;}
.ye_c00151{bottom:701.813333pt;}
.yd_c00151{bottom:738.613333pt;}
.yc_c00151{bottom:775.413333pt;}
.yb_c00151{bottom:812.213333pt;}
.ya_c00151{bottom:849.013333pt;}
.y9_c00151{bottom:885.813333pt;}
.y8_c00151{bottom:922.613333pt;}
.y7_c00151{bottom:959.413333pt;}
.y6_c00151{bottom:996.213333pt;}
.y2_c00151{bottom:1043.573333pt;}
.h3_c00151{height:18.240000pt;}
.h2_c00151{height:57.375000pt;}
.h4_c00151{height:57.781250pt;}
.h1_c00151{height:1089.333333pt;}
.h0_c00151{height:1122.666667pt;}
.w2_c00151{width:26.880000pt;}
.w1_c00151{width:760.000000pt;}
.w0_c00151{width:793.333333pt;}
.x0_c00151{left:0.000000pt;}
.x1_c00151{left:16.666667pt;}
.x2_c00151{left:97.279933pt;}
.x5_c00151{left:135.080133pt;}
.x3_c00151{left:140.213200pt;}
.x4_c00151{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_194fc4934d787ceb35ef20b4.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.ls3_c00152{letter-spacing:0.000000px;}
.ls0_c00152{letter-spacing:0.014400px;}
.ls2_c00152{letter-spacing:0.191160px;}
.ls5_c00152{letter-spacing:0.191808px;}
.ls1_c00152{letter-spacing:0.410256px;}
.ls4_c00152{letter-spacing:0.527472px;}
.ls6_c00152{letter-spacing:0.628704px;}
.sc__c00152{text-shadow:none;}
.sc0_c00152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00152{-webkit-text-stroke:0px transparent;}
.sc0_c00152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00152{word-spacing:-20.030400px;}
.ws1_c00152{word-spacing:0.000000px;}
._4_c00152{margin-left:-1.118880px;}
._1_c00152{width:5.220000px;}
._3_c00152{width:6.883200px;}
._2_c00152{width:26.474400px;}
._0_c00152{width:1146.683400px;}
.fc1_c00152{color:transparent;}
.fc0_c00152{color:rgb(0,0,0);}
.fs1_c00152{font-size:53.280000px;}
.fs0_c00152{font-size:72.000000px;}
.y0_c00152{bottom:0.000000px;}
.y4_c00152{bottom:3.960000px;}
.y1_c00152{bottom:18.750000px;}
.y2_c00152{bottom:37.860030px;}
.y3_c00152{bottom:52.290030px;}
.yc_c00152{bottom:96.900015px;}
.yb_c00152{bottom:109.860015px;}
.ya_c00152{bottom:529.980000px;}
.y9_c00152{bottom:542.940000px;}
.y8_c00152{bottom:996.540000px;}
.y7_c00152{bottom:1037.940000px;}
.y6_c00152{bottom:1079.340000px;}
.y5_c00152{bottom:1120.740000px;}
.h3_c00152{height:20.520000px;}
.h4_c00152{height:47.764688px;}
.h2_c00152{height:64.546875px;}
.h1_c00152{height:1225.500000px;}
.h0_c00152{height:1263.000000px;}
.w2_c00152{width:30.240000px;}
.w1_c00152{width:855.000000px;}
.w0_c00152{width:892.500000px;}
.x0_c00152{left:0.000000px;}
.x1_c00152{left:18.750000px;}
.x4_c00152{left:109.439925px;}
.x3_c00152{left:128.190000px;}
.x2_c00152{left:136.440000px;}
.x7_c00152{left:195.114600px;}
.x6_c00152{left:215.746950px;}
.x5_c00152{left:751.440000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls3_c00152{letter-spacing:0.000000pt;}
.ls0_c00152{letter-spacing:0.012800pt;}
.ls2_c00152{letter-spacing:0.169920pt;}
.ls5_c00152{letter-spacing:0.170496pt;}
.ls1_c00152{letter-spacing:0.364672pt;}
.ls4_c00152{letter-spacing:0.468864pt;}
.ls6_c00152{letter-spacing:0.558848pt;}
.ws0_c00152{word-spacing:-17.804800pt;}
.ws1_c00152{word-spacing:0.000000pt;}
._4_c00152{margin-left:-0.994560pt;}
._1_c00152{width:4.640000pt;}
._3_c00152{width:6.118400pt;}
._2_c00152{width:23.532800pt;}
._0_c00152{width:1019.274133pt;}
.fs1_c00152{font-size:47.360000pt;}
.fs0_c00152{font-size:64.000000pt;}
.y0_c00152{bottom:0.000000pt;}
.y4_c00152{bottom:3.520000pt;}
.y1_c00152{bottom:16.666667pt;}
.y2_c00152{bottom:33.653360pt;}
.y3_c00152{bottom:46.480027pt;}
.yc_c00152{bottom:86.133347pt;}
.yb_c00152{bottom:97.653347pt;}
.ya_c00152{bottom:471.093333pt;}
.y9_c00152{bottom:482.613333pt;}
.y8_c00152{bottom:885.813333pt;}
.y7_c00152{bottom:922.613333pt;}
.y6_c00152{bottom:959.413333pt;}
.y5_c00152{bottom:996.213333pt;}
.h3_c00152{height:18.240000pt;}
.h4_c00152{height:42.457500pt;}
.h2_c00152{height:57.375000pt;}
.h1_c00152{height:1089.333333pt;}
.h0_c00152{height:1122.666667pt;}
.w2_c00152{width:26.880000pt;}
.w1_c00152{width:760.000000pt;}
.w0_c00152{width:793.333333pt;}
.x0_c00152{left:0.000000pt;}
.x1_c00152{left:16.666667pt;}
.x4_c00152{left:97.279933pt;}
.x3_c00152{left:113.946667pt;}
.x2_c00152{left:121.280000pt;}
.x7_c00152{left:173.435200pt;}
.x6_c00152{left:191.775067pt;}
.x5_c00152{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_21496d0bf2830ce1d363235c.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00153;src:url('chunks/assets/font_c2f8b92b11dd8d0e83852254.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.104492;font-style: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;}
.ls3_c00153{letter-spacing:-0.014400px;}
.ls2_c00153{letter-spacing:0.000000px;}
.ls0_c00153{letter-spacing:0.014400px;}
.ls1_c00153{letter-spacing:4.514400px;}
.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:-20.030400px;}
.ws1_c00153{word-spacing:-20.016000px;}
.ws2_c00153{word-spacing:0.000000px;}
._e_c00153{margin-left:-1.002300px;}
._c_c00153{width:1.153500px;}
._a_c00153{width:3.146400px;}
._9_c00153{width:4.485600px;}
._4_c00153{width:6.292800px;}
._5_c00153{width:8.287200px;}
._8_c00153{width:11.160000px;}
._6_c00153{width:12.700800px;}
._b_c00153{width:17.496000px;}
._f_c00153{width:18.521700px;}
._7_c00153{width:26.553600px;}
._3_c00153{width:27.727200px;}
._d_c00153{width:32.422500px;}
._1_c00153{width:1061.484000px;}
._2_c00153{width:1146.684000px;}
._0_c00153{width:2079.683700px;}
.fc1_c00153{color:transparent;}
.fc0_c00153{color:rgb(0,0,0);}
.fs1_c00153{font-size:53.280000px;}
.fs0_c00153{font-size:72.000000px;}
.y0_c00153{bottom:0.000000px;}
.y5_c00153{bottom:3.960000px;}
.y1_c00153{bottom:18.750000px;}
.y3_c00153{bottom:36.420030px;}
.y4_c00153{bottom:47.250030px;}
.y1e_c00153{bottom:127.140030px;}
.y1d_c00153{bottom:168.540000px;}
.y1c_c00153{bottom:209.940000px;}
.y1b_c00153{bottom:251.340000px;}
.y1a_c00153{bottom:292.740000px;}
.y19_c00153{bottom:334.140000px;}
.y18_c00153{bottom:375.540000px;}
.y17_c00153{bottom:416.940000px;}
.y16_c00153{bottom:458.340000px;}
.y15_c00153{bottom:499.740000px;}
.y14_c00153{bottom:541.140000px;}
.y13_c00153{bottom:582.540000px;}
.y12_c00153{bottom:623.940000px;}
.y11_c00153{bottom:665.340000px;}
.y10_c00153{bottom:706.740000px;}
.yf_c00153{bottom:748.140000px;}
.ye_c00153{bottom:789.540000px;}
.yd_c00153{bottom:830.940000px;}
.yc_c00153{bottom:872.340000px;}
.yb_c00153{bottom:913.740000px;}
.ya_c00153{bottom:955.140000px;}
.y9_c00153{bottom:996.540000px;}
.y8_c00153{bottom:1037.940000px;}
.y7_c00153{bottom:1079.340000px;}
.y6_c00153{bottom:1120.740000px;}
.y2_c00153{bottom:1174.020000px;}
.h3_c00153{height:20.520000px;}
.h2_c00153{height:64.546875px;}
.h1_c00153{height:1225.500000px;}
.h0_c00153{height:1263.000000px;}
.w2_c00153{width:30.240000px;}
.w1_c00153{width:855.000000px;}
.w0_c00153{width:892.500000px;}
.x0_c00153{left:0.000000px;}
.x1_c00153{left:18.750000px;}
.x2_c00153{left:109.439925px;}
.x5_c00153{left:151.965150px;}
.x3_c00153{left:157.739850px;}
.x4_c00153{left:735.510000px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls3_c00153{letter-spacing:-0.012800pt;}
.ls2_c00153{letter-spacing:0.000000pt;}
.ls0_c00153{letter-spacing:0.012800pt;}
.ls1_c00153{letter-spacing:4.012800pt;}
.ws0_c00153{word-spacing:-17.804800pt;}
.ws1_c00153{word-spacing:-17.792000pt;}
.ws2_c00153{word-spacing:0.000000pt;}
._e_c00153{margin-left:-0.890933pt;}
._c_c00153{width:1.025333pt;}
._a_c00153{width:2.796800pt;}
._9_c00153{width:3.987200pt;}
._4_c00153{width:5.593600pt;}
._5_c00153{width:7.366400pt;}
._8_c00153{width:9.920000pt;}
._6_c00153{width:11.289600pt;}
._b_c00153{width:15.552000pt;}
._f_c00153{width:16.463733pt;}
._7_c00153{width:23.603200pt;}
._3_c00153{width:24.646400pt;}
._d_c00153{width:28.820000pt;}
._1_c00153{width:943.541333pt;}
._2_c00153{width:1019.274667pt;}
._0_c00153{width:1848.607733pt;}
.fs1_c00153{font-size:47.360000pt;}
.fs0_c00153{font-size:64.000000pt;}
.y0_c00153{bottom:0.000000pt;}
.y5_c00153{bottom:3.520000pt;}
.y1_c00153{bottom:16.666667pt;}
.y3_c00153{bottom:32.373360pt;}
.y4_c00153{bottom:42.000027pt;}
.y1e_c00153{bottom:113.013360pt;}
.y1d_c00153{bottom:149.813333pt;}
.y1c_c00153{bottom:186.613333pt;}
.y1b_c00153{bottom:223.413333pt;}
.y1a_c00153{bottom:260.213333pt;}
.y19_c00153{bottom:297.013333pt;}
.y18_c00153{bottom:333.813333pt;}
.y17_c00153{bottom:370.613333pt;}
.y16_c00153{bottom:407.413333pt;}
.y15_c00153{bottom:444.213333pt;}
.y14_c00153{bottom:481.013333pt;}
.y13_c00153{bottom:517.813333pt;}
.y12_c00153{bottom:554.613333pt;}
.y11_c00153{bottom:591.413333pt;}
.y10_c00153{bottom:628.213333pt;}
.yf_c00153{bottom:665.013333pt;}
.ye_c00153{bottom:701.813333pt;}
.yd_c00153{bottom:738.613333pt;}
.yc_c00153{bottom:775.413333pt;}
.yb_c00153{bottom:812.213333pt;}
.ya_c00153{bottom:849.013333pt;}
.y9_c00153{bottom:885.813333pt;}
.y8_c00153{bottom:922.613333pt;}
.y7_c00153{bottom:959.413333pt;}
.y6_c00153{bottom:996.213333pt;}
.y2_c00153{bottom:1043.573333pt;}
.h3_c00153{height:18.240000pt;}
.h2_c00153{height:57.375000pt;}
.h1_c00153{height:1089.333333pt;}
.h0_c00153{height:1122.666667pt;}
.w2_c00153{width:26.880000pt;}
.w1_c00153{width:760.000000pt;}
.w0_c00153{width:793.333333pt;}
.x0_c00153{left:0.000000pt;}
.x1_c00153{left:16.666667pt;}
.x2_c00153{left:97.279933pt;}
.x5_c00153{left:135.080133pt;}
.x3_c00153{left:140.213200pt;}
.x4_c00153{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3e25e51fdeb837477b860854.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00154;src:url('chunks/assets/font_3e99986b28abdfcd2b28cb58.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.104492;font-style: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;}
.ls3_c00154{letter-spacing:0.000000px;}
.ls0_c00154{letter-spacing:0.014400px;}
.ls6_c00154{letter-spacing:0.170496px;}
.ls4_c00154{letter-spacing:0.239760px;}
.ls5_c00154{letter-spacing:0.362304px;}
.ls2_c00154{letter-spacing:0.420912px;}
.ls1_c00154{letter-spacing:16.959360px;}
.sc__c00154{text-shadow:none;}
.sc0_c00154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00154{-webkit-text-stroke:0px transparent;}
.sc0_c00154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00154{word-spacing:-20.030400px;}
.ws2_c00154{word-spacing:-15.174144px;}
.ws1_c00154{word-spacing:-15.051600px;}
.ws3_c00154{word-spacing:0.000000px;}
._7_c00154{margin-left:-1.051740px;}
._8_c00154{width:1.195440px;}
._1_c00154{width:5.968800px;}
._5_c00154{width:7.934400px;}
._4_c00154{width:9.554400px;}
._2_c00154{width:10.591200px;}
._3_c00154{width:11.736000px;}
._6_c00154{width:13.604940px;}
._0_c00154{width:1146.683400px;}
.fc1_c00154{color:transparent;}
.fc0_c00154{color:rgb(0,0,0);}
.fs1_c00154{font-size:53.280000px;}
.fs0_c00154{font-size:72.000000px;}
.y0_c00154{bottom:0.000000px;}
.y4_c00154{bottom:3.960000px;}
.y1_c00154{bottom:18.750000px;}
.y2_c00154{bottom:37.860030px;}
.y3_c00154{bottom:52.290030px;}
.y11_c00154{bottom:97.980015px;}
.y10_c00154{bottom:113.460015px;}
.yf_c00154{bottom:129.300030px;}
.ye_c00154{bottom:168.900000px;}
.yd_c00154{bottom:210.300000px;}
.yc_c00154{bottom:251.700000px;}
.yb_c00154{bottom:293.100000px;}
.ya_c00154{bottom:334.500000px;}
.y9_c00154{bottom:375.900000px;}
.y8_c00154{bottom:417.300000px;}
.y7_c00154{bottom:458.700000px;}
.y6_c00154{bottom:500.100000px;}
.y5_c00154{bottom:537.180000px;}
.h3_c00154{height:20.520000px;}
.h4_c00154{height:47.764688px;}
.h2_c00154{height:64.546875px;}
.h1_c00154{height:1225.500000px;}
.h0_c00154{height:1263.000000px;}
.w2_c00154{width:30.240000px;}
.w1_c00154{width:855.000000px;}
.w0_c00154{width:892.500000px;}
.x0_c00154{left:0.000000px;}
.x1_c00154{left:18.750000px;}
.x6_c00154{left:109.439925px;}
.x3_c00154{left:128.190000px;}
.x2_c00154{left:136.440000px;}
.x7_c00154{left:141.390000px;}
.x5_c00154{left:151.965150px;}
.x4_c00154{left:751.440000px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls3_c00154{letter-spacing:0.000000pt;}
.ls0_c00154{letter-spacing:0.012800pt;}
.ls6_c00154{letter-spacing:0.151552pt;}
.ls4_c00154{letter-spacing:0.213120pt;}
.ls5_c00154{letter-spacing:0.322048pt;}
.ls2_c00154{letter-spacing:0.374144pt;}
.ls1_c00154{letter-spacing:15.074987pt;}
.ws0_c00154{word-spacing:-17.804800pt;}
.ws2_c00154{word-spacing:-13.488128pt;}
.ws1_c00154{word-spacing:-13.379200pt;}
.ws3_c00154{word-spacing:0.000000pt;}
._7_c00154{margin-left:-0.934880pt;}
._8_c00154{width:1.062613pt;}
._1_c00154{width:5.305600pt;}
._5_c00154{width:7.052800pt;}
._4_c00154{width:8.492800pt;}
._2_c00154{width:9.414400pt;}
._3_c00154{width:10.432000pt;}
._6_c00154{width:12.093280pt;}
._0_c00154{width:1019.274133pt;}
.fs1_c00154{font-size:47.360000pt;}
.fs0_c00154{font-size:64.000000pt;}
.y0_c00154{bottom:0.000000pt;}
.y4_c00154{bottom:3.520000pt;}
.y1_c00154{bottom:16.666667pt;}
.y2_c00154{bottom:33.653360pt;}
.y3_c00154{bottom:46.480027pt;}
.y11_c00154{bottom:87.093347pt;}
.y10_c00154{bottom:100.853347pt;}
.yf_c00154{bottom:114.933360pt;}
.ye_c00154{bottom:150.133333pt;}
.yd_c00154{bottom:186.933333pt;}
.yc_c00154{bottom:223.733333pt;}
.yb_c00154{bottom:260.533333pt;}
.ya_c00154{bottom:297.333333pt;}
.y9_c00154{bottom:334.133333pt;}
.y8_c00154{bottom:370.933333pt;}
.y7_c00154{bottom:407.733333pt;}
.y6_c00154{bottom:444.533333pt;}
.y5_c00154{bottom:477.493333pt;}
.h3_c00154{height:18.240000pt;}
.h4_c00154{height:42.457500pt;}
.h2_c00154{height:57.375000pt;}
.h1_c00154{height:1089.333333pt;}
.h0_c00154{height:1122.666667pt;}
.w2_c00154{width:26.880000pt;}
.w1_c00154{width:760.000000pt;}
.w0_c00154{width:793.333333pt;}
.x0_c00154{left:0.000000pt;}
.x1_c00154{left:16.666667pt;}
.x6_c00154{left:97.279933pt;}
.x3_c00154{left:113.946667pt;}
.x2_c00154{left:121.280000pt;}
.x7_c00154{left:125.680000pt;}
.x5_c00154{left:135.080133pt;}
.x4_c00154{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2409d6e7544d73c7bc790f99.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00155;src:url('chunks/assets/font_c82b6074d8f419eb83a3a217.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.104492;font-style: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;}
.ls2_c00155{letter-spacing:0.000000px;}
.ls0_c00155{letter-spacing:0.014400px;}
.ls3_c00155{letter-spacing:0.239760px;}
.ls4_c00155{letter-spacing:0.479520px;}
.ls1_c00155{letter-spacing:16.959360px;}
.sc__c00155{text-shadow:none;}
.sc0_c00155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00155{-webkit-text-stroke:0px transparent;}
.sc0_c00155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00155{word-spacing:-20.030400px;}
.ws1_c00155{word-spacing:-15.051600px;}
.ws2_c00155{word-spacing:0.000000px;}
._d_c00155{margin-left:-1.260180px;}
._5_c00155{width:1.346400px;}
._8_c00155{width:3.224100px;}
._9_c00155{width:8.229600px;}
._6_c00155{width:15.632100px;}
._4_c00155{width:17.589600px;}
._3_c00155{width:18.907200px;}
._7_c00155{width:25.178400px;}
._b_c00155{width:28.411200px;}
._a_c00155{width:33.955200px;}
._c_c00155{width:200.787000px;}
._1_c00155{width:1061.484000px;}
._2_c00155{width:1146.684000px;}
._0_c00155{width:2079.683700px;}
.fc1_c00155{color:transparent;}
.fc0_c00155{color:rgb(0,0,0);}
.fs1_c00155{font-size:53.280000px;}
.fs0_c00155{font-size:72.000000px;}
.y0_c00155{bottom:0.000000px;}
.y5_c00155{bottom:3.960000px;}
.y1_c00155{bottom:18.750000px;}
.y3_c00155{bottom:36.420030px;}
.y4_c00155{bottom:47.250030px;}
.y28_c00155{bottom:110.580030px;}
.y27_c00155{bottom:147.660000px;}
.y26_c00155{bottom:168.900000px;}
.y25_c00155{bottom:189.780000px;}
.y24_c00155{bottom:210.300000px;}
.y23_c00155{bottom:231.180000px;}
.y22_c00155{bottom:251.700000px;}
.y21_c00155{bottom:272.580000px;}
.y20_c00155{bottom:293.100000px;}
.y1f_c00155{bottom:313.980000px;}
.y1e_c00155{bottom:334.500000px;}
.y1d_c00155{bottom:355.380000px;}
.y1c_c00155{bottom:375.900000px;}
.y1b_c00155{bottom:396.780000px;}
.y1a_c00155{bottom:417.300000px;}
.y19_c00155{bottom:438.180000px;}
.y18_c00155{bottom:458.700000px;}
.y17_c00155{bottom:479.580000px;}
.y16_c00155{bottom:500.100000px;}
.y15_c00155{bottom:520.980000px;}
.y14_c00155{bottom:541.500000px;}
.y13_c00155{bottom:562.380000px;}
.y12_c00155{bottom:623.940000px;}
.y11_c00155{bottom:665.340000px;}
.y10_c00155{bottom:706.740000px;}
.yf_c00155{bottom:748.140000px;}
.ye_c00155{bottom:789.540000px;}
.yd_c00155{bottom:830.940000px;}
.yc_c00155{bottom:872.340000px;}
.yb_c00155{bottom:913.740000px;}
.ya_c00155{bottom:955.140000px;}
.y9_c00155{bottom:996.540000px;}
.y8_c00155{bottom:1037.940000px;}
.y7_c00155{bottom:1079.340000px;}
.y6_c00155{bottom:1120.740000px;}
.y2_c00155{bottom:1174.020000px;}
.h3_c00155{height:20.520000px;}
.h5_c00155{height:47.764688px;}
.h4_c00155{height:64.371094px;}
.h2_c00155{height:64.546875px;}
.h1_c00155{height:1225.500000px;}
.h0_c00155{height:1263.000000px;}
.w2_c00155{width:30.240000px;}
.w1_c00155{width:855.000000px;}
.w0_c00155{width:892.500000px;}
.x0_c00155{left:0.000000px;}
.x1_c00155{left:18.750000px;}
.x2_c00155{left:109.439925px;}
.x5_c00155{left:151.965150px;}
.x3_c00155{left:157.739850px;}
.x6_c00155{left:322.064850px;}
.x4_c00155{left:735.510000px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls2_c00155{letter-spacing:0.000000pt;}
.ls0_c00155{letter-spacing:0.012800pt;}
.ls3_c00155{letter-spacing:0.213120pt;}
.ls4_c00155{letter-spacing:0.426240pt;}
.ls1_c00155{letter-spacing:15.074987pt;}
.ws0_c00155{word-spacing:-17.804800pt;}
.ws1_c00155{word-spacing:-13.379200pt;}
.ws2_c00155{word-spacing:0.000000pt;}
._d_c00155{margin-left:-1.120160pt;}
._5_c00155{width:1.196800pt;}
._8_c00155{width:2.865867pt;}
._9_c00155{width:7.315200pt;}
._6_c00155{width:13.895200pt;}
._4_c00155{width:15.635200pt;}
._3_c00155{width:16.806400pt;}
._7_c00155{width:22.380800pt;}
._b_c00155{width:25.254400pt;}
._a_c00155{width:30.182400pt;}
._c_c00155{width:178.477333pt;}
._1_c00155{width:943.541333pt;}
._2_c00155{width:1019.274667pt;}
._0_c00155{width:1848.607733pt;}
.fs1_c00155{font-size:47.360000pt;}
.fs0_c00155{font-size:64.000000pt;}
.y0_c00155{bottom:0.000000pt;}
.y5_c00155{bottom:3.520000pt;}
.y1_c00155{bottom:16.666667pt;}
.y3_c00155{bottom:32.373360pt;}
.y4_c00155{bottom:42.000027pt;}
.y28_c00155{bottom:98.293360pt;}
.y27_c00155{bottom:131.253333pt;}
.y26_c00155{bottom:150.133333pt;}
.y25_c00155{bottom:168.693333pt;}
.y24_c00155{bottom:186.933333pt;}
.y23_c00155{bottom:205.493333pt;}
.y22_c00155{bottom:223.733333pt;}
.y21_c00155{bottom:242.293333pt;}
.y20_c00155{bottom:260.533333pt;}
.y1f_c00155{bottom:279.093333pt;}
.y1e_c00155{bottom:297.333333pt;}
.y1d_c00155{bottom:315.893333pt;}
.y1c_c00155{bottom:334.133333pt;}
.y1b_c00155{bottom:352.693333pt;}
.y1a_c00155{bottom:370.933333pt;}
.y19_c00155{bottom:389.493333pt;}
.y18_c00155{bottom:407.733333pt;}
.y17_c00155{bottom:426.293333pt;}
.y16_c00155{bottom:444.533333pt;}
.y15_c00155{bottom:463.093333pt;}
.y14_c00155{bottom:481.333333pt;}
.y13_c00155{bottom:499.893333pt;}
.y12_c00155{bottom:554.613333pt;}
.y11_c00155{bottom:591.413333pt;}
.y10_c00155{bottom:628.213333pt;}
.yf_c00155{bottom:665.013333pt;}
.ye_c00155{bottom:701.813333pt;}
.yd_c00155{bottom:738.613333pt;}
.yc_c00155{bottom:775.413333pt;}
.yb_c00155{bottom:812.213333pt;}
.ya_c00155{bottom:849.013333pt;}
.y9_c00155{bottom:885.813333pt;}
.y8_c00155{bottom:922.613333pt;}
.y7_c00155{bottom:959.413333pt;}
.y6_c00155{bottom:996.213333pt;}
.y2_c00155{bottom:1043.573333pt;}
.h3_c00155{height:18.240000pt;}
.h5_c00155{height:42.457500pt;}
.h4_c00155{height:57.218750pt;}
.h2_c00155{height:57.375000pt;}
.h1_c00155{height:1089.333333pt;}
.h0_c00155{height:1122.666667pt;}
.w2_c00155{width:26.880000pt;}
.w1_c00155{width:760.000000pt;}
.w0_c00155{width:793.333333pt;}
.x0_c00155{left:0.000000pt;}
.x1_c00155{left:16.666667pt;}
.x2_c00155{left:97.279933pt;}
.x5_c00155{left:135.080133pt;}
.x3_c00155{left:140.213200pt;}
.x6_c00155{left:286.279867pt;}
.x4_c00155{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f4cace090364e46ff6f64df2.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00156;src:url('chunks/assets/font_f6408a5f0f57cb2aeb7b84b1.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.104492;font-style: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;}
.ls1_c00156{letter-spacing:0.000000px;}
.ls0_c00156{letter-spacing:0.014400px;}
.ls2_c00156{letter-spacing:0.108000px;}
.sc__c00156{text-shadow:none;}
.sc0_c00156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00156{-webkit-text-stroke:0px transparent;}
.sc0_c00156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00156{word-spacing:-20.030400px;}
.ws1_c00156{word-spacing:0.000000px;}
._0_c00156{width:1146.683400px;}
.fc1_c00156{color:transparent;}
.fc0_c00156{color:rgb(0,0,0);}
.fs0_c00156{font-size:72.000000px;}
.y0_c00156{bottom:0.000000px;}
.y4_c00156{bottom:3.960000px;}
.y1_c00156{bottom:18.750000px;}
.y2_c00156{bottom:37.860030px;}
.y3_c00156{bottom:52.290030px;}
.y35_c00156{bottom:101.940015px;}
.y34_c00156{bottom:143.340000px;}
.y33_c00156{bottom:166.380000px;}
.y32_c00156{bottom:186.900000px;}
.y31_c00156{bottom:207.780000px;}
.y30_c00156{bottom:228.300000px;}
.y2f_c00156{bottom:249.180000px;}
.y2e_c00156{bottom:269.700000px;}
.y2d_c00156{bottom:290.580000px;}
.y2c_c00156{bottom:311.100000px;}
.y2b_c00156{bottom:331.980000px;}
.y2a_c00156{bottom:352.500000px;}
.y29_c00156{bottom:373.380000px;}
.y28_c00156{bottom:393.900000px;}
.y27_c00156{bottom:414.780000px;}
.y26_c00156{bottom:435.300000px;}
.y25_c00156{bottom:456.180000px;}
.y24_c00156{bottom:476.700000px;}
.y23_c00156{bottom:497.580000px;}
.y22_c00156{bottom:518.100000px;}
.y21_c00156{bottom:538.980000px;}
.y20_c00156{bottom:559.500000px;}
.y1f_c00156{bottom:580.380000px;}
.y1e_c00156{bottom:600.900000px;}
.y1d_c00156{bottom:621.780000px;}
.y1c_c00156{bottom:642.300000px;}
.y1b_c00156{bottom:663.180000px;}
.y1a_c00156{bottom:683.700000px;}
.y19_c00156{bottom:704.580000px;}
.y18_c00156{bottom:725.100000px;}
.y17_c00156{bottom:745.980000px;}
.y16_c00156{bottom:766.500000px;}
.y15_c00156{bottom:787.380000px;}
.y14_c00156{bottom:807.900000px;}
.y13_c00156{bottom:828.780000px;}
.y12_c00156{bottom:849.300000px;}
.y11_c00156{bottom:870.180000px;}
.y10_c00156{bottom:890.700000px;}
.yf_c00156{bottom:911.580000px;}
.ye_c00156{bottom:932.100000px;}
.yd_c00156{bottom:952.980000px;}
.yc_c00156{bottom:973.500000px;}
.yb_c00156{bottom:994.380000px;}
.ya_c00156{bottom:1014.900000px;}
.y9_c00156{bottom:1035.780000px;}
.y8_c00156{bottom:1056.300000px;}
.y7_c00156{bottom:1077.180000px;}
.y6_c00156{bottom:1097.700000px;}
.y5_c00156{bottom:1118.580000px;}
.h3_c00156{height:20.520000px;}
.h4_c00156{height:64.371094px;}
.h2_c00156{height:64.546875px;}
.h1_c00156{height:1225.500000px;}
.h0_c00156{height:1263.000000px;}
.w2_c00156{width:30.240000px;}
.w1_c00156{width:855.000000px;}
.w0_c00156{width:892.500000px;}
.x0_c00156{left:0.000000px;}
.x1_c00156{left:18.750000px;}
.x3_c00156{left:128.190000px;}
.x2_c00156{left:136.440000px;}
.x5_c00156{left:151.965150px;}
.x4_c00156{left:322.064850px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls1_c00156{letter-spacing:0.000000pt;}
.ls0_c00156{letter-spacing:0.012800pt;}
.ls2_c00156{letter-spacing:0.096000pt;}
.ws0_c00156{word-spacing:-17.804800pt;}
.ws1_c00156{word-spacing:0.000000pt;}
._0_c00156{width:1019.274133pt;}
.fs0_c00156{font-size:64.000000pt;}
.y0_c00156{bottom:0.000000pt;}
.y4_c00156{bottom:3.520000pt;}
.y1_c00156{bottom:16.666667pt;}
.y2_c00156{bottom:33.653360pt;}
.y3_c00156{bottom:46.480027pt;}
.y35_c00156{bottom:90.613347pt;}
.y34_c00156{bottom:127.413333pt;}
.y33_c00156{bottom:147.893333pt;}
.y32_c00156{bottom:166.133333pt;}
.y31_c00156{bottom:184.693333pt;}
.y30_c00156{bottom:202.933333pt;}
.y2f_c00156{bottom:221.493333pt;}
.y2e_c00156{bottom:239.733333pt;}
.y2d_c00156{bottom:258.293333pt;}
.y2c_c00156{bottom:276.533333pt;}
.y2b_c00156{bottom:295.093333pt;}
.y2a_c00156{bottom:313.333333pt;}
.y29_c00156{bottom:331.893333pt;}
.y28_c00156{bottom:350.133333pt;}
.y27_c00156{bottom:368.693333pt;}
.y26_c00156{bottom:386.933333pt;}
.y25_c00156{bottom:405.493333pt;}
.y24_c00156{bottom:423.733333pt;}
.y23_c00156{bottom:442.293333pt;}
.y22_c00156{bottom:460.533333pt;}
.y21_c00156{bottom:479.093333pt;}
.y20_c00156{bottom:497.333333pt;}
.y1f_c00156{bottom:515.893333pt;}
.y1e_c00156{bottom:534.133333pt;}
.y1d_c00156{bottom:552.693333pt;}
.y1c_c00156{bottom:570.933333pt;}
.y1b_c00156{bottom:589.493333pt;}
.y1a_c00156{bottom:607.733333pt;}
.y19_c00156{bottom:626.293333pt;}
.y18_c00156{bottom:644.533333pt;}
.y17_c00156{bottom:663.093333pt;}
.y16_c00156{bottom:681.333333pt;}
.y15_c00156{bottom:699.893333pt;}
.y14_c00156{bottom:718.133333pt;}
.y13_c00156{bottom:736.693333pt;}
.y12_c00156{bottom:754.933333pt;}
.y11_c00156{bottom:773.493333pt;}
.y10_c00156{bottom:791.733333pt;}
.yf_c00156{bottom:810.293333pt;}
.ye_c00156{bottom:828.533333pt;}
.yd_c00156{bottom:847.093333pt;}
.yc_c00156{bottom:865.333333pt;}
.yb_c00156{bottom:883.893333pt;}
.ya_c00156{bottom:902.133333pt;}
.y9_c00156{bottom:920.693333pt;}
.y8_c00156{bottom:938.933333pt;}
.y7_c00156{bottom:957.493333pt;}
.y6_c00156{bottom:975.733333pt;}
.y5_c00156{bottom:994.293333pt;}
.h3_c00156{height:18.240000pt;}
.h4_c00156{height:57.218750pt;}
.h2_c00156{height:57.375000pt;}
.h1_c00156{height:1089.333333pt;}
.h0_c00156{height:1122.666667pt;}
.w2_c00156{width:26.880000pt;}
.w1_c00156{width:760.000000pt;}
.w0_c00156{width:793.333333pt;}
.x0_c00156{left:0.000000pt;}
.x1_c00156{left:16.666667pt;}
.x3_c00156{left:113.946667pt;}
.x2_c00156{left:121.280000pt;}
.x5_c00156{left:135.080133pt;}
.x4_c00156{left:286.279867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_04f92e6f82e5aa5697c92348.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00157;src:url('chunks/assets/font_6b4c91af36350ee9ad328a11.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.104492;font-style: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;}
.ls3_c00157{letter-spacing:0.000000px;}
.ls0_c00157{letter-spacing:0.014400px;}
.ls7_c00157{letter-spacing:0.170496px;}
.ls5_c00157{letter-spacing:0.191808px;}
.ls6_c00157{letter-spacing:0.239760px;}
.ls2_c00157{letter-spacing:0.410256px;}
.ls1_c00157{letter-spacing:0.479640px;}
.ls4_c00157{letter-spacing:0.548784px;}
.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:-20.030400px;}
.ws1_c00157{word-spacing:-20.016000px;}
.ws2_c00157{word-spacing:0.000000px;}
._4_c00157{margin-left:-1.065600px;}
._5_c00157{width:1.385280px;}
._6_c00157{width:8.631360px;}
._3_c00157{width:18.381600px;}
._1_c00157{width:1061.484000px;}
._2_c00157{width:1146.684000px;}
._0_c00157{width:2079.683700px;}
.fc1_c00157{color:transparent;}
.fc0_c00157{color:rgb(0,0,0);}
.fs1_c00157{font-size:53.280000px;}
.fs0_c00157{font-size:72.000000px;}
.y0_c00157{bottom:0.000000px;}
.y5_c00157{bottom:3.960000px;}
.y1_c00157{bottom:18.750000px;}
.y3_c00157{bottom:36.420030px;}
.y4_c00157{bottom:47.250030px;}
.y2e_c00157{bottom:178.620000px;}
.y2d_c00157{bottom:219.660000px;}
.y2c_c00157{bottom:240.180000px;}
.y2b_c00157{bottom:261.060000px;}
.y2a_c00157{bottom:281.580000px;}
.y29_c00157{bottom:302.460000px;}
.y28_c00157{bottom:322.980000px;}
.y27_c00157{bottom:343.860000px;}
.y26_c00157{bottom:364.380000px;}
.y25_c00157{bottom:385.260000px;}
.y24_c00157{bottom:405.780000px;}
.y23_c00157{bottom:426.660000px;}
.y22_c00157{bottom:449.700000px;}
.y21_c00157{bottom:470.220000px;}
.y20_c00157{bottom:493.260000px;}
.y1f_c00157{bottom:512.700000px;}
.y1e_c00157{bottom:528.180000px;}
.y1d_c00157{bottom:543.660000px;}
.y1c_c00157{bottom:560.580000px;}
.y1b_c00157{bottom:581.100000px;}
.y1a_c00157{bottom:601.980000px;}
.y19_c00157{bottom:622.500000px;}
.y18_c00157{bottom:643.380000px;}
.y17_c00157{bottom:663.900000px;}
.y16_c00157{bottom:684.780000px;}
.y15_c00157{bottom:705.300000px;}
.y14_c00157{bottom:766.860000px;}
.y13_c00157{bottom:808.260000px;}
.y12_c00157{bottom:847.140000px;}
.y11_c00157{bottom:870.180000px;}
.y10_c00157{bottom:890.700000px;}
.yf_c00157{bottom:911.580000px;}
.ye_c00157{bottom:932.100000px;}
.yd_c00157{bottom:952.980000px;}
.yc_c00157{bottom:973.500000px;}
.yb_c00157{bottom:994.380000px;}
.ya_c00157{bottom:1014.900000px;}
.y9_c00157{bottom:1035.780000px;}
.y8_c00157{bottom:1056.300000px;}
.y7_c00157{bottom:1077.180000px;}
.y6_c00157{bottom:1120.740000px;}
.y2_c00157{bottom:1174.020000px;}
.h3_c00157{height:20.520000px;}
.h5_c00157{height:47.764688px;}
.h4_c00157{height:64.371094px;}
.h2_c00157{height:64.546875px;}
.h1_c00157{height:1225.500000px;}
.h0_c00157{height:1263.000000px;}
.w2_c00157{width:30.240000px;}
.w1_c00157{width:855.000000px;}
.w0_c00157{width:892.500000px;}
.x0_c00157{left:0.000000px;}
.x1_c00157{left:18.750000px;}
.x2_c00157{left:109.439925px;}
.x5_c00157{left:151.965150px;}
.x3_c00157{left:157.739850px;}
.x6_c00157{left:322.064850px;}
.x7_c00157{left:428.114850px;}
.x4_c00157{left:735.510000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls3_c00157{letter-spacing:0.000000pt;}
.ls0_c00157{letter-spacing:0.012800pt;}
.ls7_c00157{letter-spacing:0.151552pt;}
.ls5_c00157{letter-spacing:0.170496pt;}
.ls6_c00157{letter-spacing:0.213120pt;}
.ls2_c00157{letter-spacing:0.364672pt;}
.ls1_c00157{letter-spacing:0.426347pt;}
.ls4_c00157{letter-spacing:0.487808pt;}
.ws0_c00157{word-spacing:-17.804800pt;}
.ws1_c00157{word-spacing:-17.792000pt;}
.ws2_c00157{word-spacing:0.000000pt;}
._4_c00157{margin-left:-0.947200pt;}
._5_c00157{width:1.231360pt;}
._6_c00157{width:7.672320pt;}
._3_c00157{width:16.339200pt;}
._1_c00157{width:943.541333pt;}
._2_c00157{width:1019.274667pt;}
._0_c00157{width:1848.607733pt;}
.fs1_c00157{font-size:47.360000pt;}
.fs0_c00157{font-size:64.000000pt;}
.y0_c00157{bottom:0.000000pt;}
.y5_c00157{bottom:3.520000pt;}
.y1_c00157{bottom:16.666667pt;}
.y3_c00157{bottom:32.373360pt;}
.y4_c00157{bottom:42.000027pt;}
.y2e_c00157{bottom:158.773333pt;}
.y2d_c00157{bottom:195.253333pt;}
.y2c_c00157{bottom:213.493333pt;}
.y2b_c00157{bottom:232.053333pt;}
.y2a_c00157{bottom:250.293333pt;}
.y29_c00157{bottom:268.853333pt;}
.y28_c00157{bottom:287.093333pt;}
.y27_c00157{bottom:305.653333pt;}
.y26_c00157{bottom:323.893333pt;}
.y25_c00157{bottom:342.453333pt;}
.y24_c00157{bottom:360.693333pt;}
.y23_c00157{bottom:379.253333pt;}
.y22_c00157{bottom:399.733333pt;}
.y21_c00157{bottom:417.973333pt;}
.y20_c00157{bottom:438.453333pt;}
.y1f_c00157{bottom:455.733333pt;}
.y1e_c00157{bottom:469.493333pt;}
.y1d_c00157{bottom:483.253333pt;}
.y1c_c00157{bottom:498.293333pt;}
.y1b_c00157{bottom:516.533333pt;}
.y1a_c00157{bottom:535.093333pt;}
.y19_c00157{bottom:553.333333pt;}
.y18_c00157{bottom:571.893333pt;}
.y17_c00157{bottom:590.133333pt;}
.y16_c00157{bottom:608.693333pt;}
.y15_c00157{bottom:626.933333pt;}
.y14_c00157{bottom:681.653333pt;}
.y13_c00157{bottom:718.453333pt;}
.y12_c00157{bottom:753.013333pt;}
.y11_c00157{bottom:773.493333pt;}
.y10_c00157{bottom:791.733333pt;}
.yf_c00157{bottom:810.293333pt;}
.ye_c00157{bottom:828.533333pt;}
.yd_c00157{bottom:847.093333pt;}
.yc_c00157{bottom:865.333333pt;}
.yb_c00157{bottom:883.893333pt;}
.ya_c00157{bottom:902.133333pt;}
.y9_c00157{bottom:920.693333pt;}
.y8_c00157{bottom:938.933333pt;}
.y7_c00157{bottom:957.493333pt;}
.y6_c00157{bottom:996.213333pt;}
.y2_c00157{bottom:1043.573333pt;}
.h3_c00157{height:18.240000pt;}
.h5_c00157{height:42.457500pt;}
.h4_c00157{height:57.218750pt;}
.h2_c00157{height:57.375000pt;}
.h1_c00157{height:1089.333333pt;}
.h0_c00157{height:1122.666667pt;}
.w2_c00157{width:26.880000pt;}
.w1_c00157{width:760.000000pt;}
.w0_c00157{width:793.333333pt;}
.x0_c00157{left:0.000000pt;}
.x1_c00157{left:16.666667pt;}
.x2_c00157{left:97.279933pt;}
.x5_c00157{left:135.080133pt;}
.x3_c00157{left:140.213200pt;}
.x6_c00157{left:286.279867pt;}
.x7_c00157{left:380.546533pt;}
.x4_c00157{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_dfa3ea9d443f0c0add437a95.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00158;src:url('chunks/assets/font_fd5126f2a8fec6a20aac3851.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.113281;font-style: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;}
.ls2_c00158{letter-spacing:0.000000px;}
.ls0_c00158{letter-spacing:0.014400px;}
.ls1_c00158{letter-spacing:0.420912px;}
.ls3_c00158{letter-spacing:0.479520px;}
.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:-20.030400px;}
.ws1_c00158{word-spacing:0.000000px;}
._4_c00158{margin-left:-1.012320px;}
._2_c00158{width:1.012320px;}
._1_c00158{width:2.077920px;}
._3_c00158{width:3.196800px;}
._8_c00158{width:5.356800px;}
._a_c00158{width:7.617600px;}
._b_c00158{width:10.065600px;}
._7_c00158{width:14.364000px;}
._9_c00158{width:22.910400px;}
._6_c00158{width:24.213600px;}
._5_c00158{width:29.931300px;}
._0_c00158{width:1146.683400px;}
.fc1_c00158{color:transparent;}
.fc0_c00158{color:rgb(0,0,0);}
.fs1_c00158{font-size:53.280000px;}
.fs0_c00158{font-size:72.000000px;}
.y0_c00158{bottom:0.000000px;}
.y4_c00158{bottom:3.960000px;}
.y1_c00158{bottom:18.750000px;}
.y2_c00158{bottom:37.860030px;}
.y3_c00158{bottom:52.290030px;}
.y10_c00158{bottom:110.220030px;}
.yf_c00158{bottom:151.620000px;}
.ye_c00158{bottom:193.020000px;}
.yd_c00158{bottom:234.420000px;}
.yc_c00158{bottom:275.820000px;}
.yb_c00158{bottom:317.220000px;}
.ya_c00158{bottom:358.620000px;}
.y9_c00158{bottom:400.020000px;}
.y8_c00158{bottom:420.540000px;}
.y7_c00158{bottom:457.980000px;}
.y6_c00158{bottom:473.460000px;}
.y5_c00158{bottom:486.420000px;}
.h3_c00158{height:20.520000px;}
.h4_c00158{height:47.764688px;}
.h2_c00158{height:64.546875px;}
.h5_c00158{height:65.003906px;}
.h1_c00158{height:1225.500000px;}
.h0_c00158{height:1263.000000px;}
.w2_c00158{width:30.240000px;}
.w1_c00158{width:855.000000px;}
.w0_c00158{width:892.500000px;}
.x0_c00158{left:0.000000px;}
.x1_c00158{left:18.750000px;}
.x5_c00158{left:109.439925px;}
.x3_c00158{left:128.190000px;}
.x2_c00158{left:136.440000px;}
.x7_c00158{left:151.965150px;}
.x6_c00158{left:428.114850px;}
.x4_c00158{left:751.440000px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls2_c00158{letter-spacing:0.000000pt;}
.ls0_c00158{letter-spacing:0.012800pt;}
.ls1_c00158{letter-spacing:0.374144pt;}
.ls3_c00158{letter-spacing:0.426240pt;}
.ws0_c00158{word-spacing:-17.804800pt;}
.ws1_c00158{word-spacing:0.000000pt;}
._4_c00158{margin-left:-0.899840pt;}
._2_c00158{width:0.899840pt;}
._1_c00158{width:1.847040pt;}
._3_c00158{width:2.841600pt;}
._8_c00158{width:4.761600pt;}
._a_c00158{width:6.771200pt;}
._b_c00158{width:8.947200pt;}
._7_c00158{width:12.768000pt;}
._9_c00158{width:20.364800pt;}
._6_c00158{width:21.523200pt;}
._5_c00158{width:26.605600pt;}
._0_c00158{width:1019.274133pt;}
.fs1_c00158{font-size:47.360000pt;}
.fs0_c00158{font-size:64.000000pt;}
.y0_c00158{bottom:0.000000pt;}
.y4_c00158{bottom:3.520000pt;}
.y1_c00158{bottom:16.666667pt;}
.y2_c00158{bottom:33.653360pt;}
.y3_c00158{bottom:46.480027pt;}
.y10_c00158{bottom:97.973360pt;}
.yf_c00158{bottom:134.773333pt;}
.ye_c00158{bottom:171.573333pt;}
.yd_c00158{bottom:208.373333pt;}
.yc_c00158{bottom:245.173333pt;}
.yb_c00158{bottom:281.973333pt;}
.ya_c00158{bottom:318.773333pt;}
.y9_c00158{bottom:355.573333pt;}
.y8_c00158{bottom:373.813333pt;}
.y7_c00158{bottom:407.093333pt;}
.y6_c00158{bottom:420.853333pt;}
.y5_c00158{bottom:432.373333pt;}
.h3_c00158{height:18.240000pt;}
.h4_c00158{height:42.457500pt;}
.h2_c00158{height:57.375000pt;}
.h5_c00158{height:57.781250pt;}
.h1_c00158{height:1089.333333pt;}
.h0_c00158{height:1122.666667pt;}
.w2_c00158{width:26.880000pt;}
.w1_c00158{width:760.000000pt;}
.w0_c00158{width:793.333333pt;}
.x0_c00158{left:0.000000pt;}
.x1_c00158{left:16.666667pt;}
.x5_c00158{left:97.279933pt;}
.x3_c00158{left:113.946667pt;}
.x2_c00158{left:121.280000pt;}
.x7_c00158{left:135.080133pt;}
.x6_c00158{left:380.546533pt;}
.x4_c00158{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_962072b25f9cb66c89206dbf.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c00159{letter-spacing:-0.014400px;}
.ls3_c00159{letter-spacing:0.000000px;}
.ls1_c00159{letter-spacing:0.010980px;}
.ls0_c00159{letter-spacing:0.014400px;}
.ls2_c00159{letter-spacing:0.036000px;}
.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:-20.052000px;}
.ws0_c00159{word-spacing:-20.030400px;}
.ws2_c00159{word-spacing:0.000000px;}
._4_c00159{margin-left:-1.002900px;}
._3_c00159{width:1.144800px;}
._8_c00159{width:3.073740px;}
._10_c00159{width:4.212660px;}
._a_c00159{width:6.174900px;}
._11_c00159{width:8.719200px;}
._e_c00159{width:10.454400px;}
._f_c00159{width:11.930400px;}
._7_c00159{width:15.919200px;}
._6_c00159{width:21.578400px;}
._9_c00159{width:27.986400px;}
._5_c00159{width:29.721600px;}
._c_c00159{width:33.768000px;}
._b_c00159{width:36.367200px;}
._d_c00159{width:38.714400px;}
._1_c00159{width:1061.484000px;}
._2_c00159{width:1146.684000px;}
._0_c00159{width:2079.683700px;}
.fc1_c00159{color:transparent;}
.fc0_c00159{color:rgb(0,0,0);}
.fs1_c00159{font-size:53.280000px;}
.fs0_c00159{font-size:72.000000px;}
.y0_c00159{bottom:0.000000px;}
.y5_c00159{bottom:3.960000px;}
.y1_c00159{bottom:18.750000px;}
.y3_c00159{bottom:36.420030px;}
.y4_c00159{bottom:47.250030px;}
.y1e_c00159{bottom:127.140030px;}
.y1d_c00159{bottom:168.540000px;}
.y1c_c00159{bottom:209.940000px;}
.y1b_c00159{bottom:251.340000px;}
.y1a_c00159{bottom:292.740000px;}
.y19_c00159{bottom:334.140000px;}
.y18_c00159{bottom:375.540000px;}
.y17_c00159{bottom:416.940000px;}
.y16_c00159{bottom:458.340000px;}
.y15_c00159{bottom:499.740000px;}
.y14_c00159{bottom:541.140000px;}
.y13_c00159{bottom:582.540000px;}
.y12_c00159{bottom:623.940000px;}
.y11_c00159{bottom:665.340000px;}
.y10_c00159{bottom:706.740000px;}
.yf_c00159{bottom:748.140000px;}
.ye_c00159{bottom:789.540000px;}
.yd_c00159{bottom:830.940000px;}
.yc_c00159{bottom:872.340000px;}
.yb_c00159{bottom:913.740000px;}
.ya_c00159{bottom:955.140000px;}
.y9_c00159{bottom:996.540000px;}
.y8_c00159{bottom:1037.940000px;}
.y7_c00159{bottom:1079.340000px;}
.y6_c00159{bottom:1120.740000px;}
.y2_c00159{bottom:1174.020000px;}
.h3_c00159{height:20.520000px;}
.h2_c00159{height:64.546875px;}
.h1_c00159{height:1225.500000px;}
.h0_c00159{height:1263.000000px;}
.w2_c00159{width:30.240000px;}
.w1_c00159{width:855.000000px;}
.w0_c00159{width:892.500000px;}
.x0_c00159{left:0.000000px;}
.x1_c00159{left:18.750000px;}
.x2_c00159{left:109.439925px;}
.x5_c00159{left:151.965150px;}
.x3_c00159{left:157.739850px;}
.x4_c00159{left:735.510000px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls4_c00159{letter-spacing:-0.012800pt;}
.ls3_c00159{letter-spacing:0.000000pt;}
.ls1_c00159{letter-spacing:0.009760pt;}
.ls0_c00159{letter-spacing:0.012800pt;}
.ls2_c00159{letter-spacing:0.032000pt;}
.ws1_c00159{word-spacing:-17.824000pt;}
.ws0_c00159{word-spacing:-17.804800pt;}
.ws2_c00159{word-spacing:0.000000pt;}
._4_c00159{margin-left:-0.891467pt;}
._3_c00159{width:1.017600pt;}
._8_c00159{width:2.732213pt;}
._10_c00159{width:3.744587pt;}
._a_c00159{width:5.488800pt;}
._11_c00159{width:7.750400pt;}
._e_c00159{width:9.292800pt;}
._f_c00159{width:10.604800pt;}
._7_c00159{width:14.150400pt;}
._6_c00159{width:19.180800pt;}
._9_c00159{width:24.876800pt;}
._5_c00159{width:26.419200pt;}
._c_c00159{width:30.016000pt;}
._b_c00159{width:32.326400pt;}
._d_c00159{width:34.412800pt;}
._1_c00159{width:943.541333pt;}
._2_c00159{width:1019.274667pt;}
._0_c00159{width:1848.607733pt;}
.fs1_c00159{font-size:47.360000pt;}
.fs0_c00159{font-size:64.000000pt;}
.y0_c00159{bottom:0.000000pt;}
.y5_c00159{bottom:3.520000pt;}
.y1_c00159{bottom:16.666667pt;}
.y3_c00159{bottom:32.373360pt;}
.y4_c00159{bottom:42.000027pt;}
.y1e_c00159{bottom:113.013360pt;}
.y1d_c00159{bottom:149.813333pt;}
.y1c_c00159{bottom:186.613333pt;}
.y1b_c00159{bottom:223.413333pt;}
.y1a_c00159{bottom:260.213333pt;}
.y19_c00159{bottom:297.013333pt;}
.y18_c00159{bottom:333.813333pt;}
.y17_c00159{bottom:370.613333pt;}
.y16_c00159{bottom:407.413333pt;}
.y15_c00159{bottom:444.213333pt;}
.y14_c00159{bottom:481.013333pt;}
.y13_c00159{bottom:517.813333pt;}
.y12_c00159{bottom:554.613333pt;}
.y11_c00159{bottom:591.413333pt;}
.y10_c00159{bottom:628.213333pt;}
.yf_c00159{bottom:665.013333pt;}
.ye_c00159{bottom:701.813333pt;}
.yd_c00159{bottom:738.613333pt;}
.yc_c00159{bottom:775.413333pt;}
.yb_c00159{bottom:812.213333pt;}
.ya_c00159{bottom:849.013333pt;}
.y9_c00159{bottom:885.813333pt;}
.y8_c00159{bottom:922.613333pt;}
.y7_c00159{bottom:959.413333pt;}
.y6_c00159{bottom:996.213333pt;}
.y2_c00159{bottom:1043.573333pt;}
.h3_c00159{height:18.240000pt;}
.h2_c00159{height:57.375000pt;}
.h1_c00159{height:1089.333333pt;}
.h0_c00159{height:1122.666667pt;}
.w2_c00159{width:26.880000pt;}
.w1_c00159{width:760.000000pt;}
.w0_c00159{width:793.333333pt;}
.x0_c00159{left:0.000000pt;}
.x1_c00159{left:16.666667pt;}
.x2_c00159{left:97.279933pt;}
.x5_c00159{left:135.080133pt;}
.x3_c00159{left:140.213200pt;}
.x4_c00159{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4c9b5108666b70f028521f66.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00160;src:url('chunks/assets/font_c14dd525967264ce8e399980.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00160;src:url('chunks/assets/font_33313c17cc782a1e2b34e0d0.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:1.104492;font-style: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;}
.ls2_c00160{letter-spacing:-0.014400px;}
.ls1_c00160{letter-spacing:0.000000px;}
.ls0_c00160{letter-spacing:0.014400px;}
.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;}
}
.ws0_c00160{word-spacing:-20.030400px;}
.ws1_c00160{word-spacing:-20.001600px;}
.ws2_c00160{word-spacing:0.000000px;}
._c_c00160{width:1.025700px;}
._1_c00160{width:2.453100px;}
._3_c00160{width:3.916800px;}
._2_c00160{width:5.349600px;}
._7_c00160{width:7.560000px;}
._d_c00160{width:9.079200px;}
._6_c00160{width:11.196000px;}
._a_c00160{width:12.492000px;}
._9_c00160{width:13.924800px;}
._8_c00160{width:14.954400px;}
._e_c00160{width:17.294400px;}
._4_c00160{width:21.960000px;}
._b_c00160{width:29.931300px;}
._5_c00160{width:32.716800px;}
._0_c00160{width:1146.683400px;}
.fc1_c00160{color:transparent;}
.fc0_c00160{color:rgb(0,0,0);}
.fs0_c00160{font-size:72.000000px;}
.y0_c00160{bottom:0.000000px;}
.y4_c00160{bottom:3.960000px;}
.y1_c00160{bottom:18.750000px;}
.y2_c00160{bottom:37.860030px;}
.y3_c00160{bottom:52.290030px;}
.y1c_c00160{bottom:150.540000px;}
.y1b_c00160{bottom:191.940000px;}
.y1a_c00160{bottom:233.340000px;}
.y19_c00160{bottom:274.740000px;}
.y18_c00160{bottom:316.140000px;}
.y17_c00160{bottom:357.540000px;}
.y16_c00160{bottom:398.940000px;}
.y15_c00160{bottom:440.340000px;}
.y14_c00160{bottom:481.740000px;}
.y13_c00160{bottom:523.140000px;}
.y12_c00160{bottom:582.540000px;}
.y11_c00160{bottom:623.940000px;}
.y10_c00160{bottom:665.340000px;}
.yf_c00160{bottom:706.740000px;}
.ye_c00160{bottom:748.140000px;}
.yd_c00160{bottom:789.540000px;}
.yc_c00160{bottom:830.940000px;}
.yb_c00160{bottom:872.340000px;}
.ya_c00160{bottom:913.740000px;}
.y9_c00160{bottom:955.140000px;}
.y8_c00160{bottom:996.540000px;}
.y7_c00160{bottom:1037.940000px;}
.y6_c00160{bottom:1079.340000px;}
.y5_c00160{bottom:1120.740000px;}
.h3_c00160{height:20.520000px;}
.h2_c00160{height:64.546875px;}
.h4_c00160{height:65.003906px;}
.h1_c00160{height:1225.500000px;}
.h0_c00160{height:1263.000000px;}
.w2_c00160{width:30.240000px;}
.w1_c00160{width:855.000000px;}
.w0_c00160{width:892.500000px;}
.x0_c00160{left:0.000000px;}
.x1_c00160{left:18.750000px;}
.x4_c00160{left:109.439925px;}
.x3_c00160{left:128.190000px;}
.x2_c00160{left:136.440000px;}
.x5_c00160{left:151.965150px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls2_c00160{letter-spacing:-0.012800pt;}
.ls1_c00160{letter-spacing:0.000000pt;}
.ls0_c00160{letter-spacing:0.012800pt;}
.ws0_c00160{word-spacing:-17.804800pt;}
.ws1_c00160{word-spacing:-17.779200pt;}
.ws2_c00160{word-spacing:0.000000pt;}
._c_c00160{width:0.911733pt;}
._1_c00160{width:2.180533pt;}
._3_c00160{width:3.481600pt;}
._2_c00160{width:4.755200pt;}
._7_c00160{width:6.720000pt;}
._d_c00160{width:8.070400pt;}
._6_c00160{width:9.952000pt;}
._a_c00160{width:11.104000pt;}
._9_c00160{width:12.377600pt;}
._8_c00160{width:13.292800pt;}
._e_c00160{width:15.372800pt;}
._4_c00160{width:19.520000pt;}
._b_c00160{width:26.605600pt;}
._5_c00160{width:29.081600pt;}
._0_c00160{width:1019.274133pt;}
.fs0_c00160{font-size:64.000000pt;}
.y0_c00160{bottom:0.000000pt;}
.y4_c00160{bottom:3.520000pt;}
.y1_c00160{bottom:16.666667pt;}
.y2_c00160{bottom:33.653360pt;}
.y3_c00160{bottom:46.480027pt;}
.y1c_c00160{bottom:133.813333pt;}
.y1b_c00160{bottom:170.613333pt;}
.y1a_c00160{bottom:207.413333pt;}
.y19_c00160{bottom:244.213333pt;}
.y18_c00160{bottom:281.013333pt;}
.y17_c00160{bottom:317.813333pt;}
.y16_c00160{bottom:354.613333pt;}
.y15_c00160{bottom:391.413333pt;}
.y14_c00160{bottom:428.213333pt;}
.y13_c00160{bottom:465.013333pt;}
.y12_c00160{bottom:517.813333pt;}
.y11_c00160{bottom:554.613333pt;}
.y10_c00160{bottom:591.413333pt;}
.yf_c00160{bottom:628.213333pt;}
.ye_c00160{bottom:665.013333pt;}
.yd_c00160{bottom:701.813333pt;}
.yc_c00160{bottom:738.613333pt;}
.yb_c00160{bottom:775.413333pt;}
.ya_c00160{bottom:812.213333pt;}
.y9_c00160{bottom:849.013333pt;}
.y8_c00160{bottom:885.813333pt;}
.y7_c00160{bottom:922.613333pt;}
.y6_c00160{bottom:959.413333pt;}
.y5_c00160{bottom:996.213333pt;}
.h3_c00160{height:18.240000pt;}
.h2_c00160{height:57.375000pt;}
.h4_c00160{height:57.781250pt;}
.h1_c00160{height:1089.333333pt;}
.h0_c00160{height:1122.666667pt;}
.w2_c00160{width:26.880000pt;}
.w1_c00160{width:760.000000pt;}
.w0_c00160{width:793.333333pt;}
.x0_c00160{left:0.000000pt;}
.x1_c00160{left:16.666667pt;}
.x4_c00160{left:97.279933pt;}
.x3_c00160{left:113.946667pt;}
.x2_c00160{left:121.280000pt;}
.x5_c00160{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ab393c29ebbcce77ffa5c7ec.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls5_c00161{letter-spacing:0.000000px;}
.ls0_c00161{letter-spacing:0.014400px;}
.ls6_c00161{letter-spacing:0.191808px;}
.ls7_c00161{letter-spacing:0.239760px;}
.ls4_c00161{letter-spacing:0.240360px;}
.ls9_c00161{letter-spacing:0.362304px;}
.ls8_c00161{letter-spacing:0.410256px;}
.ls1_c00161{letter-spacing:0.420912px;}
.ls3_c00161{letter-spacing:0.426240px;}
.lsa_c00161{letter-spacing:0.506160px;}
.ls2_c00161{letter-spacing:16.959360px;}
.sc__c00161{text-shadow:none;}
.sc0_c00161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00161{-webkit-text-stroke:0px transparent;}
.sc0_c00161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00161{word-spacing:-20.030400px;}
.ws2_c00161{word-spacing:-15.051600px;}
.ws1_c00161{word-spacing:-14.811840px;}
.ws3_c00161{word-spacing:0.000000px;}
._c_c00161{margin-left:-1.012320px;}
._4_c00161{width:1.447200px;}
._7_c00161{width:2.577600px;}
._3_c00161{width:4.320000px;}
._6_c00161{width:6.127200px;}
._8_c00161{width:7.934400px;}
._9_c00161{width:9.568800px;}
._a_c00161{width:24.854400px;}
._b_c00161{width:26.647200px;}
._5_c00161{width:41.536800px;}
._1_c00161{width:1061.484000px;}
._2_c00161{width:1146.684000px;}
._0_c00161{width:2079.683700px;}
.fc1_c00161{color:transparent;}
.fc0_c00161{color:rgb(0,0,0);}
.fs1_c00161{font-size:53.280000px;}
.fs0_c00161{font-size:72.000000px;}
.y0_c00161{bottom:0.000000px;}
.y5_c00161{bottom:3.960000px;}
.y1_c00161{bottom:18.750000px;}
.y3_c00161{bottom:36.420030px;}
.y4_c00161{bottom:47.250030px;}
.y16_c00161{bottom:93.660030px;}
.y15_c00161{bottom:109.140030px;}
.y14_c00161{bottom:142.620000px;}
.y13_c00161{bottom:155.220000px;}
.y12_c00161{bottom:623.940000px;}
.y11_c00161{bottom:665.340000px;}
.y10_c00161{bottom:706.740000px;}
.yf_c00161{bottom:748.140000px;}
.ye_c00161{bottom:789.540000px;}
.yd_c00161{bottom:830.940000px;}
.yc_c00161{bottom:872.340000px;}
.yb_c00161{bottom:913.740000px;}
.ya_c00161{bottom:955.140000px;}
.y9_c00161{bottom:996.540000px;}
.y8_c00161{bottom:1037.940000px;}
.y7_c00161{bottom:1079.340000px;}
.y6_c00161{bottom:1120.740000px;}
.y2_c00161{bottom:1174.020000px;}
.h3_c00161{height:20.520000px;}
.h4_c00161{height:47.764688px;}
.h2_c00161{height:64.546875px;}
.h1_c00161{height:1225.500000px;}
.h0_c00161{height:1263.000000px;}
.w2_c00161{width:30.240000px;}
.w1_c00161{width:855.000000px;}
.w0_c00161{width:892.500000px;}
.x0_c00161{left:0.000000px;}
.x1_c00161{left:18.750000px;}
.x2_c00161{left:109.439925px;}
.x8_c00161{left:141.390000px;}
.x5_c00161{left:151.965150px;}
.x3_c00161{left:157.739850px;}
.x7_c00161{left:218.360550px;}
.x4_c00161{left:735.510000px;}
.x6_c00161{left:751.440000px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls5_c00161{letter-spacing:0.000000pt;}
.ls0_c00161{letter-spacing:0.012800pt;}
.ls6_c00161{letter-spacing:0.170496pt;}
.ls7_c00161{letter-spacing:0.213120pt;}
.ls4_c00161{letter-spacing:0.213653pt;}
.ls9_c00161{letter-spacing:0.322048pt;}
.ls8_c00161{letter-spacing:0.364672pt;}
.ls1_c00161{letter-spacing:0.374144pt;}
.ls3_c00161{letter-spacing:0.378880pt;}
.lsa_c00161{letter-spacing:0.449920pt;}
.ls2_c00161{letter-spacing:15.074987pt;}
.ws0_c00161{word-spacing:-17.804800pt;}
.ws2_c00161{word-spacing:-13.379200pt;}
.ws1_c00161{word-spacing:-13.166080pt;}
.ws3_c00161{word-spacing:0.000000pt;}
._c_c00161{margin-left:-0.899840pt;}
._4_c00161{width:1.286400pt;}
._7_c00161{width:2.291200pt;}
._3_c00161{width:3.840000pt;}
._6_c00161{width:5.446400pt;}
._8_c00161{width:7.052800pt;}
._9_c00161{width:8.505600pt;}
._a_c00161{width:22.092800pt;}
._b_c00161{width:23.686400pt;}
._5_c00161{width:36.921600pt;}
._1_c00161{width:943.541333pt;}
._2_c00161{width:1019.274667pt;}
._0_c00161{width:1848.607733pt;}
.fs1_c00161{font-size:47.360000pt;}
.fs0_c00161{font-size:64.000000pt;}
.y0_c00161{bottom:0.000000pt;}
.y5_c00161{bottom:3.520000pt;}
.y1_c00161{bottom:16.666667pt;}
.y3_c00161{bottom:32.373360pt;}
.y4_c00161{bottom:42.000027pt;}
.y16_c00161{bottom:83.253360pt;}
.y15_c00161{bottom:97.013360pt;}
.y14_c00161{bottom:126.773333pt;}
.y13_c00161{bottom:137.973333pt;}
.y12_c00161{bottom:554.613333pt;}
.y11_c00161{bottom:591.413333pt;}
.y10_c00161{bottom:628.213333pt;}
.yf_c00161{bottom:665.013333pt;}
.ye_c00161{bottom:701.813333pt;}
.yd_c00161{bottom:738.613333pt;}
.yc_c00161{bottom:775.413333pt;}
.yb_c00161{bottom:812.213333pt;}
.ya_c00161{bottom:849.013333pt;}
.y9_c00161{bottom:885.813333pt;}
.y8_c00161{bottom:922.613333pt;}
.y7_c00161{bottom:959.413333pt;}
.y6_c00161{bottom:996.213333pt;}
.y2_c00161{bottom:1043.573333pt;}
.h3_c00161{height:18.240000pt;}
.h4_c00161{height:42.457500pt;}
.h2_c00161{height:57.375000pt;}
.h1_c00161{height:1089.333333pt;}
.h0_c00161{height:1122.666667pt;}
.w2_c00161{width:26.880000pt;}
.w1_c00161{width:760.000000pt;}
.w0_c00161{width:793.333333pt;}
.x0_c00161{left:0.000000pt;}
.x1_c00161{left:16.666667pt;}
.x2_c00161{left:97.279933pt;}
.x8_c00161{left:125.680000pt;}
.x5_c00161{left:135.080133pt;}
.x3_c00161{left:140.213200pt;}
.x7_c00161{left:194.098267pt;}
.x4_c00161{left:653.786667pt;}
.x6_c00161{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9bc33683529b72148d8cf791.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00162{vertical-align:0.000000px;}
.ls4_c00162{letter-spacing:0.000000px;}
.ls0_c00162{letter-spacing:0.014400px;}
.ls2_c00162{letter-spacing:0.190560px;}
.ls6_c00162{letter-spacing:0.191808px;}
.ls5_c00162{letter-spacing:0.362304px;}
.ls1_c00162{letter-spacing:0.410256px;}
.ls3_c00162{letter-spacing:0.420912px;}
.sc__c00162{text-shadow:none;}
.sc0_c00162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00162{-webkit-text-stroke:0px transparent;}
.sc0_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00162{word-spacing:-20.030400px;}
.ws1_c00162{word-spacing:0.000000px;}
._1_c00162{margin-left:-1.094856px;}
._2_c00162{width:1.011456px;}
._0_c00162{width:1146.683400px;}
.fc1_c00162{color:transparent;}
.fc0_c00162{color:rgb(0,0,0);}
.fs1_c00162{font-size:53.280000px;}
.fs0_c00162{font-size:72.000000px;}
.y0_c00162{bottom:0.000000px;}
.y4_c00162{bottom:3.960000px;}
.y1_c00162{bottom:18.750000px;}
.y2_c00162{bottom:37.860030px;}
.y3_c00162{bottom:52.290030px;}
.y6_c00162{bottom:103.740030px;}
.y5_c00162{bottom:152.700000px;}
.h3_c00162{height:20.520000px;}
.h4_c00162{height:47.764688px;}
.h2_c00162{height:64.546875px;}
.h1_c00162{height:1225.500000px;}
.h0_c00162{height:1263.000000px;}
.w2_c00162{width:30.240000px;}
.w1_c00162{width:855.000000px;}
.w0_c00162{width:892.500000px;}
.x0_c00162{left:0.000000px;}
.x1_c00162{left:18.750000px;}
.x3_c00162{left:128.190000px;}
.x2_c00162{left:136.440000px;}
.x4_c00162{left:198.084150px;}
.x5_c00162{left:428.114850px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls4_c00162{letter-spacing:0.000000pt;}
.ls0_c00162{letter-spacing:0.012800pt;}
.ls2_c00162{letter-spacing:0.169387pt;}
.ls6_c00162{letter-spacing:0.170496pt;}
.ls5_c00162{letter-spacing:0.322048pt;}
.ls1_c00162{letter-spacing:0.364672pt;}
.ls3_c00162{letter-spacing:0.374144pt;}
.ws0_c00162{word-spacing:-17.804800pt;}
.ws1_c00162{word-spacing:0.000000pt;}
._1_c00162{margin-left:-0.973205pt;}
._2_c00162{width:0.899072pt;}
._0_c00162{width:1019.274133pt;}
.fs1_c00162{font-size:47.360000pt;}
.fs0_c00162{font-size:64.000000pt;}
.y0_c00162{bottom:0.000000pt;}
.y4_c00162{bottom:3.520000pt;}
.y1_c00162{bottom:16.666667pt;}
.y2_c00162{bottom:33.653360pt;}
.y3_c00162{bottom:46.480027pt;}
.y6_c00162{bottom:92.213360pt;}
.y5_c00162{bottom:135.733333pt;}
.h3_c00162{height:18.240000pt;}
.h4_c00162{height:42.457500pt;}
.h2_c00162{height:57.375000pt;}
.h1_c00162{height:1089.333333pt;}
.h0_c00162{height:1122.666667pt;}
.w2_c00162{width:26.880000pt;}
.w1_c00162{width:760.000000pt;}
.w0_c00162{width:793.333333pt;}
.x0_c00162{left:0.000000pt;}
.x1_c00162{left:16.666667pt;}
.x3_c00162{left:113.946667pt;}
.x2_c00162{left:121.280000pt;}
.x4_c00162{left:176.074800pt;}
.x5_c00162{left:380.546533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_84e54baf0ae2eb7e0c0d2825.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00163;src:url('chunks/assets/font_707fe7df014e3d17f2f17748.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.113281;font-style: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;}
.ls6_c00163{letter-spacing:-0.014400px;}
.ls2_c00163{letter-spacing:0.000000px;}
.ls0_c00163{letter-spacing:0.014400px;}
.ls1_c00163{letter-spacing:0.191160px;}
.ls4_c00163{letter-spacing:0.191808px;}
.ls3_c00163{letter-spacing:0.527472px;}
.ls5_c00163{letter-spacing:0.628704px;}
.sc__c00163{text-shadow:none;}
.sc0_c00163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00163{-webkit-text-stroke:0px transparent;}
.sc0_c00163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00163{word-spacing:-20.030400px;}
.ws2_c00163{word-spacing:-20.016000px;}
.ws3_c00163{word-spacing:-20.001600px;}
.ws1_c00163{word-spacing:-15.440544px;}
.ws4_c00163{word-spacing:0.000000px;}
._3_c00163{margin-left:-1.065600px;}
._4_c00163{width:1.094760px;}
._8_c00163{width:2.209680px;}
._6_c00163{width:6.314400px;}
._b_c00163{width:11.973600px;}
._a_c00163{width:13.953600px;}
._5_c00163{width:15.753900px;}
._9_c00163{width:24.602400px;}
._7_c00163{width:32.479200px;}
._1_c00163{width:1061.484000px;}
._2_c00163{width:1146.684000px;}
._0_c00163{width:2079.683700px;}
.fc1_c00163{color:transparent;}
.fc0_c00163{color:rgb(0,0,0);}
.fs1_c00163{font-size:53.280000px;}
.fs0_c00163{font-size:72.000000px;}
.y0_c00163{bottom:0.000000px;}
.y5_c00163{bottom:3.960000px;}
.y1_c00163{bottom:18.750000px;}
.y3_c00163{bottom:36.420030px;}
.y4_c00163{bottom:47.250030px;}
.y14_c00163{bottom:133.260000px;}
.y13_c00163{bottom:174.660000px;}
.y12_c00163{bottom:216.060000px;}
.y11_c00163{bottom:257.460000px;}
.y10_c00163{bottom:298.860000px;}
.yf_c00163{bottom:340.260000px;}
.ye_c00163{bottom:399.660000px;}
.yd_c00163{bottom:441.060000px;}
.yc_c00163{bottom:482.460000px;}
.yb_c00163{bottom:523.860000px;}
.ya_c00163{bottom:565.260000px;}
.y9_c00163{bottom:606.660000px;}
.y8_c00163{bottom:626.100000px;}
.y7_c00163{bottom:659.580000px;}
.y6_c00163{bottom:672.540000px;}
.y2_c00163{bottom:1174.020000px;}
.h3_c00163{height:20.520000px;}
.h4_c00163{height:47.764688px;}
.h2_c00163{height:64.546875px;}
.h5_c00163{height:65.003906px;}
.h1_c00163{height:1225.500000px;}
.h0_c00163{height:1263.000000px;}
.w2_c00163{width:30.240000px;}
.w1_c00163{width:855.000000px;}
.w0_c00163{width:892.500000px;}
.x0_c00163{left:0.000000px;}
.x1_c00163{left:18.750000px;}
.x2_c00163{left:109.439925px;}
.x8_c00163{left:151.965150px;}
.x3_c00163{left:157.739850px;}
.x6_c00163{left:174.858000px;}
.x7_c00163{left:428.114850px;}
.x4_c00163{left:735.510000px;}
.x5_c00163{left:754.440000px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls6_c00163{letter-spacing:-0.012800pt;}
.ls2_c00163{letter-spacing:0.000000pt;}
.ls0_c00163{letter-spacing:0.012800pt;}
.ls1_c00163{letter-spacing:0.169920pt;}
.ls4_c00163{letter-spacing:0.170496pt;}
.ls3_c00163{letter-spacing:0.468864pt;}
.ls5_c00163{letter-spacing:0.558848pt;}
.ws0_c00163{word-spacing:-17.804800pt;}
.ws2_c00163{word-spacing:-17.792000pt;}
.ws3_c00163{word-spacing:-17.779200pt;}
.ws1_c00163{word-spacing:-13.724928pt;}
.ws4_c00163{word-spacing:0.000000pt;}
._3_c00163{margin-left:-0.947200pt;}
._4_c00163{width:0.973120pt;}
._8_c00163{width:1.964160pt;}
._6_c00163{width:5.612800pt;}
._b_c00163{width:10.643200pt;}
._a_c00163{width:12.403200pt;}
._5_c00163{width:14.003467pt;}
._9_c00163{width:21.868800pt;}
._7_c00163{width:28.870400pt;}
._1_c00163{width:943.541333pt;}
._2_c00163{width:1019.274667pt;}
._0_c00163{width:1848.607733pt;}
.fs1_c00163{font-size:47.360000pt;}
.fs0_c00163{font-size:64.000000pt;}
.y0_c00163{bottom:0.000000pt;}
.y5_c00163{bottom:3.520000pt;}
.y1_c00163{bottom:16.666667pt;}
.y3_c00163{bottom:32.373360pt;}
.y4_c00163{bottom:42.000027pt;}
.y14_c00163{bottom:118.453333pt;}
.y13_c00163{bottom:155.253333pt;}
.y12_c00163{bottom:192.053333pt;}
.y11_c00163{bottom:228.853333pt;}
.y10_c00163{bottom:265.653333pt;}
.yf_c00163{bottom:302.453333pt;}
.ye_c00163{bottom:355.253333pt;}
.yd_c00163{bottom:392.053333pt;}
.yc_c00163{bottom:428.853333pt;}
.yb_c00163{bottom:465.653333pt;}
.ya_c00163{bottom:502.453333pt;}
.y9_c00163{bottom:539.253333pt;}
.y8_c00163{bottom:556.533333pt;}
.y7_c00163{bottom:586.293333pt;}
.y6_c00163{bottom:597.813333pt;}
.y2_c00163{bottom:1043.573333pt;}
.h3_c00163{height:18.240000pt;}
.h4_c00163{height:42.457500pt;}
.h2_c00163{height:57.375000pt;}
.h5_c00163{height:57.781250pt;}
.h1_c00163{height:1089.333333pt;}
.h0_c00163{height:1122.666667pt;}
.w2_c00163{width:26.880000pt;}
.w1_c00163{width:760.000000pt;}
.w0_c00163{width:793.333333pt;}
.x0_c00163{left:0.000000pt;}
.x1_c00163{left:16.666667pt;}
.x2_c00163{left:97.279933pt;}
.x8_c00163{left:135.080133pt;}
.x3_c00163{left:140.213200pt;}
.x6_c00163{left:155.429333pt;}
.x7_c00163{left:380.546533pt;}
.x4_c00163{left:653.786667pt;}
.x5_c00163{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f77b4a7cf09db74b23fbc242.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00164;src:url('chunks/assets/font_dba5f35d6b4a6d33401b533f.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00164;src:url('chunks/assets/font_9140144ad3956f2c599a39c8.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00164;src:url('chunks/assets/font_9ae16584ee8a7853975648ad.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:1.111328;font-style: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;}
.ls5_c00164{letter-spacing:-0.014400px;}
.ls4_c00164{letter-spacing:0.000000px;}
.ls3_c00164{letter-spacing:0.002400px;}
.ls2_c00164{letter-spacing:0.010980px;}
.ls0_c00164{letter-spacing:0.014400px;}
.ls1_c00164{letter-spacing:19.579800px;}
.sc__c00164{text-shadow:none;}
.sc0_c00164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00164{-webkit-text-stroke:0px transparent;}
.sc0_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00164{word-spacing:-20.030400px;}
.ws1_c00164{word-spacing:-20.016000px;}
.ws2_c00164{word-spacing:0.000000px;}
._4_c00164{width:1.784700px;}
._7_c00164{width:3.197700px;}
._a_c00164{width:4.406400px;}
._b_c00164{width:5.580000px;}
._c_c00164{width:7.401600px;}
._1_c00164{width:9.705600px;}
._9_c00164{width:10.807200px;}
._8_c00164{width:14.616000px;}
._6_c00164{width:16.624800px;}
._3_c00164{width:19.008000px;}
._d_c00164{width:21.520800px;}
._5_c00164{width:24.789600px;}
._2_c00164{width:38.462400px;}
._0_c00164{width:1146.683400px;}
.fc1_c00164{color:transparent;}
.fc0_c00164{color:rgb(0,0,0);}
.fs0_c00164{font-size:72.000000px;}
.y0_c00164{bottom:0.000000px;}
.y4_c00164{bottom:3.960000px;}
.y1_c00164{bottom:18.750000px;}
.y2_c00164{bottom:37.860030px;}
.y3_c00164{bottom:52.290030px;}
.y1c_c00164{bottom:145.500000px;}
.y1b_c00164{bottom:186.900000px;}
.y1a_c00164{bottom:228.300000px;}
.y19_c00164{bottom:269.700000px;}
.y18_c00164{bottom:311.100000px;}
.y17_c00164{bottom:352.500000px;}
.y16_c00164{bottom:393.900000px;}
.y15_c00164{bottom:435.300000px;}
.y14_c00164{bottom:476.700000px;}
.y13_c00164{bottom:518.100000px;}
.y12_c00164{bottom:559.500000px;}
.y11_c00164{bottom:603.780000px;}
.y10_c00164{bottom:665.340000px;}
.yf_c00164{bottom:706.740000px;}
.ye_c00164{bottom:748.140000px;}
.yd_c00164{bottom:789.540000px;}
.yc_c00164{bottom:830.940000px;}
.yb_c00164{bottom:872.340000px;}
.ya_c00164{bottom:913.740000px;}
.y9_c00164{bottom:955.140000px;}
.y8_c00164{bottom:996.540000px;}
.y7_c00164{bottom:1037.940000px;}
.y6_c00164{bottom:1079.340000px;}
.y5_c00164{bottom:1120.740000px;}
.h3_c00164{height:20.520000px;}
.h2_c00164{height:64.546875px;}
.h4_c00164{height:65.003906px;}
.h5_c00164{height:65.707031px;}
.h1_c00164{height:1225.500000px;}
.h0_c00164{height:1263.000000px;}
.w2_c00164{width:30.240000px;}
.w1_c00164{width:855.000000px;}
.w0_c00164{width:892.500000px;}
.x0_c00164{left:0.000000px;}
.x1_c00164{left:18.750000px;}
.x4_c00164{left:109.439925px;}
.x3_c00164{left:128.190000px;}
.x2_c00164{left:136.440000px;}
.x5_c00164{left:151.965150px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls5_c00164{letter-spacing:-0.012800pt;}
.ls4_c00164{letter-spacing:0.000000pt;}
.ls3_c00164{letter-spacing:0.002133pt;}
.ls2_c00164{letter-spacing:0.009760pt;}
.ls0_c00164{letter-spacing:0.012800pt;}
.ls1_c00164{letter-spacing:17.404267pt;}
.ws0_c00164{word-spacing:-17.804800pt;}
.ws1_c00164{word-spacing:-17.792000pt;}
.ws2_c00164{word-spacing:0.000000pt;}
._4_c00164{width:1.586400pt;}
._7_c00164{width:2.842400pt;}
._a_c00164{width:3.916800pt;}
._b_c00164{width:4.960000pt;}
._c_c00164{width:6.579200pt;}
._1_c00164{width:8.627200pt;}
._9_c00164{width:9.606400pt;}
._8_c00164{width:12.992000pt;}
._6_c00164{width:14.777600pt;}
._3_c00164{width:16.896000pt;}
._d_c00164{width:19.129600pt;}
._5_c00164{width:22.035200pt;}
._2_c00164{width:34.188800pt;}
._0_c00164{width:1019.274133pt;}
.fs0_c00164{font-size:64.000000pt;}
.y0_c00164{bottom:0.000000pt;}
.y4_c00164{bottom:3.520000pt;}
.y1_c00164{bottom:16.666667pt;}
.y2_c00164{bottom:33.653360pt;}
.y3_c00164{bottom:46.480027pt;}
.y1c_c00164{bottom:129.333333pt;}
.y1b_c00164{bottom:166.133333pt;}
.y1a_c00164{bottom:202.933333pt;}
.y19_c00164{bottom:239.733333pt;}
.y18_c00164{bottom:276.533333pt;}
.y17_c00164{bottom:313.333333pt;}
.y16_c00164{bottom:350.133333pt;}
.y15_c00164{bottom:386.933333pt;}
.y14_c00164{bottom:423.733333pt;}
.y13_c00164{bottom:460.533333pt;}
.y12_c00164{bottom:497.333333pt;}
.y11_c00164{bottom:536.693333pt;}
.y10_c00164{bottom:591.413333pt;}
.yf_c00164{bottom:628.213333pt;}
.ye_c00164{bottom:665.013333pt;}
.yd_c00164{bottom:701.813333pt;}
.yc_c00164{bottom:738.613333pt;}
.yb_c00164{bottom:775.413333pt;}
.ya_c00164{bottom:812.213333pt;}
.y9_c00164{bottom:849.013333pt;}
.y8_c00164{bottom:885.813333pt;}
.y7_c00164{bottom:922.613333pt;}
.y6_c00164{bottom:959.413333pt;}
.y5_c00164{bottom:996.213333pt;}
.h3_c00164{height:18.240000pt;}
.h2_c00164{height:57.375000pt;}
.h4_c00164{height:57.781250pt;}
.h5_c00164{height:58.406250pt;}
.h1_c00164{height:1089.333333pt;}
.h0_c00164{height:1122.666667pt;}
.w2_c00164{width:26.880000pt;}
.w1_c00164{width:760.000000pt;}
.w0_c00164{width:793.333333pt;}
.x0_c00164{left:0.000000pt;}
.x1_c00164{left:16.666667pt;}
.x4_c00164{left:97.279933pt;}
.x3_c00164{left:113.946667pt;}
.x2_c00164{left:121.280000pt;}
.x5_c00164{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_925adcdb72e598ec7c10541a.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00165;src:url('chunks/assets/font_ea293855089baed48aa42149.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.104492;font-style: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;}
.ls3_c00165{letter-spacing:0.000000px;}
.ls0_c00165{letter-spacing:0.014400px;}
.ls2_c00165{letter-spacing:0.191160px;}
.ls5_c00165{letter-spacing:0.410256px;}
.ls4_c00165{letter-spacing:0.479520px;}
.ls1_c00165{letter-spacing:9.384600px;}
.sc__c00165{text-shadow:none;}
.sc0_c00165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00165{-webkit-text-stroke:0px transparent;}
.sc0_c00165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00165{word-spacing:-20.030400px;}
.ws1_c00165{word-spacing:-15.291360px;}
.ws2_c00165{word-spacing:0.000000px;}
._4_c00165{margin-left:-1.118880px;}
._3_c00165{width:9.367200px;}
._1_c00165{width:1061.484000px;}
._2_c00165{width:1146.684000px;}
._0_c00165{width:2079.683700px;}
.fc1_c00165{color:transparent;}
.fc0_c00165{color:rgb(0,0,0);}
.fs1_c00165{font-size:53.280000px;}
.fs0_c00165{font-size:72.000000px;}
.y0_c00165{bottom:0.000000px;}
.y5_c00165{bottom:3.960000px;}
.y1_c00165{bottom:18.750000px;}
.y3_c00165{bottom:36.420030px;}
.y4_c00165{bottom:47.250030px;}
.ye_c00165{bottom:100.860015px;}
.yd_c00165{bottom:131.820000px;}
.yc_c00165{bottom:163.140000px;}
.yb_c00165{bottom:575.340000px;}
.ya_c00165{bottom:628.260000px;}
.y9_c00165{bottom:641.220000px;}
.y8_c00165{bottom:1019.940000px;}
.y7_c00165{bottom:1079.340000px;}
.y6_c00165{bottom:1120.740000px;}
.y2_c00165{bottom:1174.020000px;}
.h3_c00165{height:20.520000px;}
.h4_c00165{height:47.764688px;}
.h2_c00165{height:64.546875px;}
.h1_c00165{height:1225.500000px;}
.h0_c00165{height:1263.000000px;}
.w2_c00165{width:30.240000px;}
.w1_c00165{width:855.000000px;}
.w0_c00165{width:892.500000px;}
.x0_c00165{left:0.000000px;}
.x1_c00165{left:18.750000px;}
.x2_c00165{left:109.439925px;}
.x5_c00165{left:151.965150px;}
.x3_c00165{left:157.739850px;}
.x8_c00165{left:361.699200px;}
.x7_c00165{left:400.353450px;}
.x9_c00165{left:428.114850px;}
.x4_c00165{left:735.510000px;}
.x6_c00165{left:751.440000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls3_c00165{letter-spacing:0.000000pt;}
.ls0_c00165{letter-spacing:0.012800pt;}
.ls2_c00165{letter-spacing:0.169920pt;}
.ls5_c00165{letter-spacing:0.364672pt;}
.ls4_c00165{letter-spacing:0.426240pt;}
.ls1_c00165{letter-spacing:8.341867pt;}
.ws0_c00165{word-spacing:-17.804800pt;}
.ws1_c00165{word-spacing:-13.592320pt;}
.ws2_c00165{word-spacing:0.000000pt;}
._4_c00165{margin-left:-0.994560pt;}
._3_c00165{width:8.326400pt;}
._1_c00165{width:943.541333pt;}
._2_c00165{width:1019.274667pt;}
._0_c00165{width:1848.607733pt;}
.fs1_c00165{font-size:47.360000pt;}
.fs0_c00165{font-size:64.000000pt;}
.y0_c00165{bottom:0.000000pt;}
.y5_c00165{bottom:3.520000pt;}
.y1_c00165{bottom:16.666667pt;}
.y3_c00165{bottom:32.373360pt;}
.y4_c00165{bottom:42.000027pt;}
.ye_c00165{bottom:89.653347pt;}
.yd_c00165{bottom:117.173333pt;}
.yc_c00165{bottom:145.013333pt;}
.yb_c00165{bottom:511.413333pt;}
.ya_c00165{bottom:558.453333pt;}
.y9_c00165{bottom:569.973333pt;}
.y8_c00165{bottom:906.613333pt;}
.y7_c00165{bottom:959.413333pt;}
.y6_c00165{bottom:996.213333pt;}
.y2_c00165{bottom:1043.573333pt;}
.h3_c00165{height:18.240000pt;}
.h4_c00165{height:42.457500pt;}
.h2_c00165{height:57.375000pt;}
.h1_c00165{height:1089.333333pt;}
.h0_c00165{height:1122.666667pt;}
.w2_c00165{width:26.880000pt;}
.w1_c00165{width:760.000000pt;}
.w0_c00165{width:793.333333pt;}
.x0_c00165{left:0.000000pt;}
.x1_c00165{left:16.666667pt;}
.x2_c00165{left:97.279933pt;}
.x5_c00165{left:135.080133pt;}
.x3_c00165{left:140.213200pt;}
.x8_c00165{left:321.510400pt;}
.x7_c00165{left:355.869733pt;}
.x9_c00165{left:380.546533pt;}
.x4_c00165{left:653.786667pt;}
.x6_c00165{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_75c34f92102183582f2e61aa.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00166;src:url('chunks/assets/font_ae7bbaefa11ff4e4de18688e.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00166;src:url('chunks/assets/font_ea293855089baed48aa42149.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:1.104492;font-style: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;}
.ls3_c00166{letter-spacing:-0.014400px;}
.ls2_c00166{letter-spacing:0.000000px;}
.ls1_c00166{letter-spacing:0.010980px;}
.ls0_c00166{letter-spacing:0.014400px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00166{word-spacing:-20.030400px;}
.ws1_c00166{word-spacing:-20.026980px;}
.ws3_c00166{word-spacing:-20.016000px;}
.ws2_c00166{word-spacing:-20.001600px;}
.ws4_c00166{word-spacing:0.000000px;}
._5_c00166{width:1.473300px;}
._4_c00166{width:3.362400px;}
._2_c00166{width:4.406400px;}
._3_c00166{width:5.580000px;}
._1_c00166{width:10.807200px;}
._8_c00166{width:18.976200px;}
._7_c00166{width:21.369600px;}
._6_c00166{width:26.013600px;}
._9_c00166{width:40.424700px;}
._0_c00166{width:1146.683400px;}
.fc1_c00166{color:transparent;}
.fc0_c00166{color:rgb(0,0,0);}
.fs1_c00166{font-size:53.280000px;}
.fs0_c00166{font-size:72.000000px;}
.y0_c00166{bottom:0.000000px;}
.y4_c00166{bottom:3.960000px;}
.y1_c00166{bottom:18.750000px;}
.y2_c00166{bottom:37.860030px;}
.y3_c00166{bottom:52.290030px;}
.y19_c00166{bottom:221.100000px;}
.y18_c00166{bottom:262.500000px;}
.y17_c00166{bottom:303.900000px;}
.y16_c00166{bottom:345.300000px;}
.y15_c00166{bottom:386.700000px;}
.y14_c00166{bottom:428.100000px;}
.y13_c00166{bottom:472.380000px;}
.y12_c00166{bottom:533.940000px;}
.y11_c00166{bottom:593.340000px;}
.y10_c00166{bottom:652.740000px;}
.yf_c00166{bottom:694.140000px;}
.ye_c00166{bottom:753.540000px;}
.yd_c00166{bottom:794.940000px;}
.yc_c00166{bottom:836.340000px;}
.yb_c00166{bottom:877.740000px;}
.ya_c00166{bottom:919.140000px;}
.y9_c00166{bottom:960.540000px;}
.y8_c00166{bottom:1001.940000px;}
.y7_c00166{bottom:1043.340000px;}
.y6_c00166{bottom:1087.620000px;}
.y5_c00166{bottom:1124.700000px;}
.h3_c00166{height:20.520000px;}
.h4_c00166{height:47.764688px;}
.h2_c00166{height:64.546875px;}
.h5_c00166{height:65.003906px;}
.h1_c00166{height:1225.500000px;}
.h0_c00166{height:1263.000000px;}
.w2_c00166{width:30.240000px;}
.w1_c00166{width:855.000000px;}
.w0_c00166{width:892.500000px;}
.x0_c00166{left:0.000000px;}
.x1_c00166{left:18.750000px;}
.x5_c00166{left:109.439925px;}
.x3_c00166{left:128.190000px;}
.x2_c00166{left:136.440000px;}
.x6_c00166{left:151.965150px;}
.x4_c00166{left:428.114850px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls3_c00166{letter-spacing:-0.012800pt;}
.ls2_c00166{letter-spacing:0.000000pt;}
.ls1_c00166{letter-spacing:0.009760pt;}
.ls0_c00166{letter-spacing:0.012800pt;}
.ws0_c00166{word-spacing:-17.804800pt;}
.ws1_c00166{word-spacing:-17.801760pt;}
.ws3_c00166{word-spacing:-17.792000pt;}
.ws2_c00166{word-spacing:-17.779200pt;}
.ws4_c00166{word-spacing:0.000000pt;}
._5_c00166{width:1.309600pt;}
._4_c00166{width:2.988800pt;}
._2_c00166{width:3.916800pt;}
._3_c00166{width:4.960000pt;}
._1_c00166{width:9.606400pt;}
._8_c00166{width:16.867733pt;}
._7_c00166{width:18.995200pt;}
._6_c00166{width:23.123200pt;}
._9_c00166{width:35.933067pt;}
._0_c00166{width:1019.274133pt;}
.fs1_c00166{font-size:47.360000pt;}
.fs0_c00166{font-size:64.000000pt;}
.y0_c00166{bottom:0.000000pt;}
.y4_c00166{bottom:3.520000pt;}
.y1_c00166{bottom:16.666667pt;}
.y2_c00166{bottom:33.653360pt;}
.y3_c00166{bottom:46.480027pt;}
.y19_c00166{bottom:196.533333pt;}
.y18_c00166{bottom:233.333333pt;}
.y17_c00166{bottom:270.133333pt;}
.y16_c00166{bottom:306.933333pt;}
.y15_c00166{bottom:343.733333pt;}
.y14_c00166{bottom:380.533333pt;}
.y13_c00166{bottom:419.893333pt;}
.y12_c00166{bottom:474.613333pt;}
.y11_c00166{bottom:527.413333pt;}
.y10_c00166{bottom:580.213333pt;}
.yf_c00166{bottom:617.013333pt;}
.ye_c00166{bottom:669.813333pt;}
.yd_c00166{bottom:706.613333pt;}
.yc_c00166{bottom:743.413333pt;}
.yb_c00166{bottom:780.213333pt;}
.ya_c00166{bottom:817.013333pt;}
.y9_c00166{bottom:853.813333pt;}
.y8_c00166{bottom:890.613333pt;}
.y7_c00166{bottom:927.413333pt;}
.y6_c00166{bottom:966.773333pt;}
.y5_c00166{bottom:999.733333pt;}
.h3_c00166{height:18.240000pt;}
.h4_c00166{height:42.457500pt;}
.h2_c00166{height:57.375000pt;}
.h5_c00166{height:57.781250pt;}
.h1_c00166{height:1089.333333pt;}
.h0_c00166{height:1122.666667pt;}
.w2_c00166{width:26.880000pt;}
.w1_c00166{width:760.000000pt;}
.w0_c00166{width:793.333333pt;}
.x0_c00166{left:0.000000pt;}
.x1_c00166{left:16.666667pt;}
.x5_c00166{left:97.279933pt;}
.x3_c00166{left:113.946667pt;}
.x2_c00166{left:121.280000pt;}
.x6_c00166{left:135.080133pt;}
.x4_c00166{left:380.546533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eefb3740e7350b9d4b1c5367.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00167;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00167;src:url('chunks/assets/font_0aa9ce7b0c834a25e5f47702.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:1.104492;font-style: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;}
.ls3_c00167{letter-spacing:0.000000px;}
.ls0_c00167{letter-spacing:0.014400px;}
.ls5_c00167{letter-spacing:0.036000px;}
.ls1_c00167{letter-spacing:0.191160px;}
.ls2_c00167{letter-spacing:0.191808px;}
.ls4_c00167{letter-spacing:0.479520px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00167{word-spacing:-20.030400px;}
.ws1_c00167{word-spacing:0.000000px;}
._7_c00167{margin-left:-1.065600px;}
._6_c00167{width:4.334400px;}
._5_c00167{width:5.891100px;}
._3_c00167{width:8.539200px;}
._4_c00167{width:14.724000px;}
._1_c00167{width:1061.484000px;}
._2_c00167{width:1146.684000px;}
._0_c00167{width:2079.683700px;}
.fc2_c00167{color:transparent;}
.fc1_c00167{color:rgb(51,51,51);}
.fc0_c00167{color:rgb(0,0,0);}
.fs1_c00167{font-size:53.280000px;}
.fs2_c00167{font-size:67.680000px;}
.fs0_c00167{font-size:72.000000px;}
.y0_c00167{bottom:0.000000px;}
.y5_c00167{bottom:3.960000px;}
.y1_c00167{bottom:18.750000px;}
.y3_c00167{bottom:36.420030px;}
.y4_c00167{bottom:47.250030px;}
.yf_c00167{bottom:101.220030px;}
.ye_c00167{bottom:113.820030px;}
.yd_c00167{bottom:507.660000px;}
.yc_c00167{bottom:549.060000px;}
.yb_c00167{bottom:590.460000px;}
.ya_c00167{bottom:631.860000px;}
.y9_c00167{bottom:673.260000px;}
.y8_c00167{bottom:714.660000px;}
.y7_c00167{bottom:767.580000px;}
.y6_c00167{bottom:780.540000px;}
.y2_c00167{bottom:1174.020000px;}
.h3_c00167{height:20.520000px;}
.h5_c00167{height:47.764688px;}
.h2_c00167{height:64.546875px;}
.h4_c00167{height:65.003906px;}
.h1_c00167{height:1225.500000px;}
.h0_c00167{height:1263.000000px;}
.w2_c00167{width:30.240000px;}
.w1_c00167{width:855.000000px;}
.w0_c00167{width:892.500000px;}
.x0_c00167{left:0.000000px;}
.x1_c00167{left:18.750000px;}
.x2_c00167{left:109.439925px;}
.x7_c00167{left:151.965150px;}
.x3_c00167{left:157.739850px;}
.x6_c00167{left:374.836650px;}
.x8_c00167{left:403.728450px;}
.x4_c00167{left:735.510000px;}
.x5_c00167{left:751.440000px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls3_c00167{letter-spacing:0.000000pt;}
.ls0_c00167{letter-spacing:0.012800pt;}
.ls5_c00167{letter-spacing:0.032000pt;}
.ls1_c00167{letter-spacing:0.169920pt;}
.ls2_c00167{letter-spacing:0.170496pt;}
.ls4_c00167{letter-spacing:0.426240pt;}
.ws0_c00167{word-spacing:-17.804800pt;}
.ws1_c00167{word-spacing:0.000000pt;}
._7_c00167{margin-left:-0.947200pt;}
._6_c00167{width:3.852800pt;}
._5_c00167{width:5.236533pt;}
._3_c00167{width:7.590400pt;}
._4_c00167{width:13.088000pt;}
._1_c00167{width:943.541333pt;}
._2_c00167{width:1019.274667pt;}
._0_c00167{width:1848.607733pt;}
.fs1_c00167{font-size:47.360000pt;}
.fs2_c00167{font-size:60.160000pt;}
.fs0_c00167{font-size:64.000000pt;}
.y0_c00167{bottom:0.000000pt;}
.y5_c00167{bottom:3.520000pt;}
.y1_c00167{bottom:16.666667pt;}
.y3_c00167{bottom:32.373360pt;}
.y4_c00167{bottom:42.000027pt;}
.yf_c00167{bottom:89.973360pt;}
.ye_c00167{bottom:101.173360pt;}
.yd_c00167{bottom:451.253333pt;}
.yc_c00167{bottom:488.053333pt;}
.yb_c00167{bottom:524.853333pt;}
.ya_c00167{bottom:561.653333pt;}
.y9_c00167{bottom:598.453333pt;}
.y8_c00167{bottom:635.253333pt;}
.y7_c00167{bottom:682.293333pt;}
.y6_c00167{bottom:693.813333pt;}
.y2_c00167{bottom:1043.573333pt;}
.h3_c00167{height:18.240000pt;}
.h5_c00167{height:42.457500pt;}
.h2_c00167{height:57.375000pt;}
.h4_c00167{height:57.781250pt;}
.h1_c00167{height:1089.333333pt;}
.h0_c00167{height:1122.666667pt;}
.w2_c00167{width:26.880000pt;}
.w1_c00167{width:760.000000pt;}
.w0_c00167{width:793.333333pt;}
.x0_c00167{left:0.000000pt;}
.x1_c00167{left:16.666667pt;}
.x2_c00167{left:97.279933pt;}
.x7_c00167{left:135.080133pt;}
.x3_c00167{left:140.213200pt;}
.x6_c00167{left:333.188133pt;}
.x8_c00167{left:358.869733pt;}
.x4_c00167{left:653.786667pt;}
.x5_c00167{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_73f122e058425a242cdea4c6.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00168;src:url('chunks/assets/font_84a8930db6a49962a489234d.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00168;src:url('chunks/assets/font_2534853e60038dd245a76364.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:1.104492;font-style: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;}
.ls5_c00168{letter-spacing:-0.014400px;}
.ls4_c00168{letter-spacing:0.000000px;}
.ls1_c00168{letter-spacing:0.010980px;}
.ls0_c00168{letter-spacing:0.014400px;}
.ls8_c00168{letter-spacing:0.358704px;}
.ls6_c00168{letter-spacing:0.628704px;}
.ls3_c00168{letter-spacing:0.744480px;}
.ls9_c00168{letter-spacing:0.879840px;}
.ls7_c00168{letter-spacing:0.967824px;}
.ls2_c00168{letter-spacing:1.132200px;}
.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:-20.030400px;}
.ws1_c00168{word-spacing:-20.026980px;}
.ws2_c00168{word-spacing:-15.440544px;}
.ws3_c00168{word-spacing:0.000000px;}
._3_c00168{margin-left:-1.006260px;}
._6_c00168{width:1.107060px;}
._4_c00168{width:2.188800px;}
._7_c00168{width:3.225600px;}
._8_c00168{width:7.329600px;}
._1_c00168{width:8.445600px;}
._2_c00168{width:10.384740px;}
._9_c00168{width:11.911680px;}
._5_c00168{width:14.839200px;}
._0_c00168{width:1146.683400px;}
.fc2_c00168{color:transparent;}
.fc1_c00168{color:rgb(51,51,51);}
.fc0_c00168{color:rgb(0,0,0);}
.fs1_c00168{font-size:53.280000px;}
.fs2_c00168{font-size:67.680000px;}
.fs0_c00168{font-size:72.000000px;}
.y0_c00168{bottom:0.000000px;}
.y4_c00168{bottom:3.960000px;}
.y1_c00168{bottom:18.750000px;}
.y2_c00168{bottom:37.860030px;}
.y3_c00168{bottom:52.290030px;}
.y16_c00168{bottom:96.540030px;}
.y15_c00168{bottom:136.500000px;}
.y14_c00168{bottom:176.100000px;}
.y13_c00168{bottom:219.660000px;}
.y12_c00168{bottom:266.100000px;}
.y11_c00168{bottom:278.700000px;}
.y10_c00168{bottom:660.300000px;}
.yf_c00168{bottom:701.700000px;}
.ye_c00168{bottom:743.100000px;}
.yd_c00168{bottom:784.500000px;}
.yc_c00168{bottom:825.900000px;}
.yb_c00168{bottom:867.300000px;}
.ya_c00168{bottom:908.700000px;}
.y9_c00168{bottom:950.100000px;}
.y8_c00168{bottom:991.500000px;}
.y7_c00168{bottom:1032.900000px;}
.y6_c00168{bottom:1074.300000px;}
.y5_c00168{bottom:1118.580000px;}
.h3_c00168{height:20.520000px;}
.h5_c00168{height:47.764688px;}
.h6_c00168{height:60.674063px;}
.h2_c00168{height:64.546875px;}
.h4_c00168{height:65.003906px;}
.h1_c00168{height:1225.500000px;}
.h0_c00168{height:1263.000000px;}
.w2_c00168{width:30.240000px;}
.w1_c00168{width:855.000000px;}
.w0_c00168{width:892.500000px;}
.x0_c00168{left:0.000000px;}
.x1_c00168{left:18.750000px;}
.x4_c00168{left:109.439925px;}
.x3_c00168{left:128.190000px;}
.x2_c00168{left:136.440000px;}
.x5_c00168{left:151.965150px;}
.x7_c00168{left:400.350150px;}
.x6_c00168{left:751.440000px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls5_c00168{letter-spacing:-0.012800pt;}
.ls4_c00168{letter-spacing:0.000000pt;}
.ls1_c00168{letter-spacing:0.009760pt;}
.ls0_c00168{letter-spacing:0.012800pt;}
.ls8_c00168{letter-spacing:0.318848pt;}
.ls6_c00168{letter-spacing:0.558848pt;}
.ls3_c00168{letter-spacing:0.661760pt;}
.ls9_c00168{letter-spacing:0.782080pt;}
.ls7_c00168{letter-spacing:0.860288pt;}
.ls2_c00168{letter-spacing:1.006400pt;}
.ws0_c00168{word-spacing:-17.804800pt;}
.ws1_c00168{word-spacing:-17.801760pt;}
.ws2_c00168{word-spacing:-13.724928pt;}
.ws3_c00168{word-spacing:0.000000pt;}
._3_c00168{margin-left:-0.894453pt;}
._6_c00168{width:0.984053pt;}
._4_c00168{width:1.945600pt;}
._7_c00168{width:2.867200pt;}
._8_c00168{width:6.515200pt;}
._1_c00168{width:7.507200pt;}
._2_c00168{width:9.230880pt;}
._9_c00168{width:10.588160pt;}
._5_c00168{width:13.190400pt;}
._0_c00168{width:1019.274133pt;}
.fs1_c00168{font-size:47.360000pt;}
.fs2_c00168{font-size:60.160000pt;}
.fs0_c00168{font-size:64.000000pt;}
.y0_c00168{bottom:0.000000pt;}
.y4_c00168{bottom:3.520000pt;}
.y1_c00168{bottom:16.666667pt;}
.y2_c00168{bottom:33.653360pt;}
.y3_c00168{bottom:46.480027pt;}
.y16_c00168{bottom:85.813360pt;}
.y15_c00168{bottom:121.333333pt;}
.y14_c00168{bottom:156.533333pt;}
.y13_c00168{bottom:195.253333pt;}
.y12_c00168{bottom:236.533333pt;}
.y11_c00168{bottom:247.733333pt;}
.y10_c00168{bottom:586.933333pt;}
.yf_c00168{bottom:623.733333pt;}
.ye_c00168{bottom:660.533333pt;}
.yd_c00168{bottom:697.333333pt;}
.yc_c00168{bottom:734.133333pt;}
.yb_c00168{bottom:770.933333pt;}
.ya_c00168{bottom:807.733333pt;}
.y9_c00168{bottom:844.533333pt;}
.y8_c00168{bottom:881.333333pt;}
.y7_c00168{bottom:918.133333pt;}
.y6_c00168{bottom:954.933333pt;}
.y5_c00168{bottom:994.293333pt;}
.h3_c00168{height:18.240000pt;}
.h5_c00168{height:42.457500pt;}
.h6_c00168{height:53.932500pt;}
.h2_c00168{height:57.375000pt;}
.h4_c00168{height:57.781250pt;}
.h1_c00168{height:1089.333333pt;}
.h0_c00168{height:1122.666667pt;}
.w2_c00168{width:26.880000pt;}
.w1_c00168{width:760.000000pt;}
.w0_c00168{width:793.333333pt;}
.x0_c00168{left:0.000000pt;}
.x1_c00168{left:16.666667pt;}
.x4_c00168{left:97.279933pt;}
.x3_c00168{left:113.946667pt;}
.x2_c00168{left:121.280000pt;}
.x5_c00168{left:135.080133pt;}
.x7_c00168{left:355.866800pt;}
.x6_c00168{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_671fde04903ae578db3b1432.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00169;src:url('chunks/assets/font_75766c259e306d0095eb3567.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00169;src:url('chunks/assets/font_2f12482b93332b430b4e1695.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:1.113281;font-style: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;}
.lsd_c00169{letter-spacing:-0.014400px;}
.ls5_c00169{letter-spacing:0.000000px;}
.ls4_c00169{letter-spacing:0.010980px;}
.ls0_c00169{letter-spacing:0.014400px;}
.lsc_c00169{letter-spacing:0.239760px;}
.lsa_c00169{letter-spacing:0.358704px;}
.lse_c00169{letter-spacing:0.410256px;}
.ls6_c00169{letter-spacing:0.439920px;}
.lsb_c00169{letter-spacing:0.527472px;}
.ls7_c00169{letter-spacing:0.663264px;}
.ls3_c00169{letter-spacing:0.744480px;}
.ls9_c00169{letter-spacing:0.879840px;}
.ls8_c00169{letter-spacing:0.967824px;}
.ls2_c00169{letter-spacing:29.008560px;}
.ls1_c00169{letter-spacing:29.009160px;}
.sc__c00169{text-shadow:none;}
.sc0_c00169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00169{-webkit-text-stroke:0px transparent;}
.sc0_c00169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00169{word-spacing:-20.030400px;}
.ws4_c00169{word-spacing:-20.026980px;}
.ws1_c00169{word-spacing:-19.559520px;}
.ws2_c00169{word-spacing:-19.254960px;}
.ws3_c00169{word-spacing:-15.051600px;}
.ws5_c00169{word-spacing:0.000000px;}
._5_c00169{margin-left:-1.331100px;}
._3_c00169{width:1.218240px;}
._6_c00169{width:3.248640px;}
._4_c00169{width:24.229440px;}
._7_c00169{width:27.545760px;}
._8_c00169{width:29.525700px;}
._9_c00169{width:38.700000px;}
._1_c00169{width:1061.484000px;}
._2_c00169{width:1146.684000px;}
._0_c00169{width:2079.683700px;}
.fc2_c00169{color:transparent;}
.fc1_c00169{color:rgb(51,51,51);}
.fc0_c00169{color:rgb(0,0,0);}
.fs1_c00169{font-size:53.280000px;}
.fs2_c00169{font-size:67.680000px;}
.fs0_c00169{font-size:72.000000px;}
.y0_c00169{bottom:0.000000px;}
.y5_c00169{bottom:3.960000px;}
.y1_c00169{bottom:18.750000px;}
.y3_c00169{bottom:36.420030px;}
.y4_c00169{bottom:47.250030px;}
.y11_c00169{bottom:115.260030px;}
.y10_c00169{bottom:127.860015px;}
.yf_c00169{bottom:467.700000px;}
.ye_c00169{bottom:509.100000px;}
.yd_c00169{bottom:553.020000px;}
.yc_c00169{bottom:599.100000px;}
.yb_c00169{bottom:612.060000px;}
.ya_c00169{bottom:962.340000px;}
.y9_c00169{bottom:1001.940000px;}
.y8_c00169{bottom:1041.540000px;}
.y7_c00169{bottom:1081.500000px;}
.y6_c00169{bottom:1121.100000px;}
.y2_c00169{bottom:1174.020000px;}
.h3_c00169{height:20.520000px;}
.h6_c00169{height:47.764688px;}
.h4_c00169{height:60.674063px;}
.h2_c00169{height:64.546875px;}
.h5_c00169{height:65.003906px;}
.h1_c00169{height:1225.500000px;}
.h0_c00169{height:1263.000000px;}
.w2_c00169{width:30.240000px;}
.w1_c00169{width:855.000000px;}
.w0_c00169{width:892.500000px;}
.x0_c00169{left:0.000000px;}
.x1_c00169{left:18.750000px;}
.x2_c00169{left:109.439925px;}
.x5_c00169{left:151.965150px;}
.x3_c00169{left:157.739850px;}
.x9_c00169{left:368.828250px;}
.x7_c00169{left:369.962100px;}
.x6_c00169{left:728.114850px;}
.x4_c00169{left:735.510000px;}
.x8_c00169{left:751.440000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.lsd_c00169{letter-spacing:-0.012800pt;}
.ls5_c00169{letter-spacing:0.000000pt;}
.ls4_c00169{letter-spacing:0.009760pt;}
.ls0_c00169{letter-spacing:0.012800pt;}
.lsc_c00169{letter-spacing:0.213120pt;}
.lsa_c00169{letter-spacing:0.318848pt;}
.lse_c00169{letter-spacing:0.364672pt;}
.ls6_c00169{letter-spacing:0.391040pt;}
.lsb_c00169{letter-spacing:0.468864pt;}
.ls7_c00169{letter-spacing:0.589568pt;}
.ls3_c00169{letter-spacing:0.661760pt;}
.ls9_c00169{letter-spacing:0.782080pt;}
.ls8_c00169{letter-spacing:0.860288pt;}
.ls2_c00169{letter-spacing:25.785387pt;}
.ls1_c00169{letter-spacing:25.785920pt;}
.ws0_c00169{word-spacing:-17.804800pt;}
.ws4_c00169{word-spacing:-17.801760pt;}
.ws1_c00169{word-spacing:-17.386240pt;}
.ws2_c00169{word-spacing:-17.115520pt;}
.ws3_c00169{word-spacing:-13.379200pt;}
.ws5_c00169{word-spacing:0.000000pt;}
._5_c00169{margin-left:-1.183200pt;}
._3_c00169{width:1.082880pt;}
._6_c00169{width:2.887680pt;}
._4_c00169{width:21.537280pt;}
._7_c00169{width:24.485120pt;}
._8_c00169{width:26.245067pt;}
._9_c00169{width:34.400000pt;}
._1_c00169{width:943.541333pt;}
._2_c00169{width:1019.274667pt;}
._0_c00169{width:1848.607733pt;}
.fs1_c00169{font-size:47.360000pt;}
.fs2_c00169{font-size:60.160000pt;}
.fs0_c00169{font-size:64.000000pt;}
.y0_c00169{bottom:0.000000pt;}
.y5_c00169{bottom:3.520000pt;}
.y1_c00169{bottom:16.666667pt;}
.y3_c00169{bottom:32.373360pt;}
.y4_c00169{bottom:42.000027pt;}
.y11_c00169{bottom:102.453360pt;}
.y10_c00169{bottom:113.653347pt;}
.yf_c00169{bottom:415.733333pt;}
.ye_c00169{bottom:452.533333pt;}
.yd_c00169{bottom:491.573333pt;}
.yc_c00169{bottom:532.533333pt;}
.yb_c00169{bottom:544.053333pt;}
.ya_c00169{bottom:855.413333pt;}
.y9_c00169{bottom:890.613333pt;}
.y8_c00169{bottom:925.813333pt;}
.y7_c00169{bottom:961.333333pt;}
.y6_c00169{bottom:996.533333pt;}
.y2_c00169{bottom:1043.573333pt;}
.h3_c00169{height:18.240000pt;}
.h6_c00169{height:42.457500pt;}
.h4_c00169{height:53.932500pt;}
.h2_c00169{height:57.375000pt;}
.h5_c00169{height:57.781250pt;}
.h1_c00169{height:1089.333333pt;}
.h0_c00169{height:1122.666667pt;}
.w2_c00169{width:26.880000pt;}
.w1_c00169{width:760.000000pt;}
.w0_c00169{width:793.333333pt;}
.x0_c00169{left:0.000000pt;}
.x1_c00169{left:16.666667pt;}
.x2_c00169{left:97.279933pt;}
.x5_c00169{left:135.080133pt;}
.x3_c00169{left:140.213200pt;}
.x9_c00169{left:327.847333pt;}
.x7_c00169{left:328.855200pt;}
.x6_c00169{left:647.213200pt;}
.x4_c00169{left:653.786667pt;}
.x8_c00169{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_83407176c13e69ea3b17bb2e.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00170;src:url('chunks/assets/font_808da2a86ee2003a133d613e.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.113281;font-style: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;}
.ls4_c00170{letter-spacing:-0.014400px;}
.ls2_c00170{letter-spacing:0.000000px;}
.ls1_c00170{letter-spacing:0.010980px;}
.ls0_c00170{letter-spacing:0.014400px;}
.ls3_c00170{letter-spacing:0.036000px;}
.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:-20.030400px;}
.ws1_c00170{word-spacing:-20.026980px;}
.ws2_c00170{word-spacing:0.000000px;}
._6_c00170{width:1.548000px;}
._b_c00170{width:3.369600px;}
._3_c00170{width:4.831200px;}
._4_c00170{width:6.127200px;}
._9_c00170{width:7.581600px;}
._a_c00170{width:9.049500px;}
._7_c00170{width:11.476800px;}
._1_c00170{width:12.484800px;}
._8_c00170{width:13.680000px;}
._2_c00170{width:15.955200px;}
._5_c00170{width:17.114400px;}
._c_c00170{width:26.697600px;}
._0_c00170{width:1146.683400px;}
.fc1_c00170{color:transparent;}
.fc0_c00170{color:rgb(0,0,0);}
.fs0_c00170{font-size:72.000000px;}
.y0_c00170{bottom:0.000000px;}
.y4_c00170{bottom:3.960000px;}
.y1_c00170{bottom:18.750000px;}
.y2_c00170{bottom:37.860030px;}
.y3_c00170{bottom:52.290030px;}
.y1a_c00170{bottom:210.300000px;}
.y19_c00170{bottom:251.700000px;}
.y18_c00170{bottom:293.100000px;}
.y17_c00170{bottom:334.500000px;}
.y16_c00170{bottom:375.900000px;}
.y15_c00170{bottom:417.300000px;}
.y14_c00170{bottom:458.700000px;}
.y13_c00170{bottom:500.100000px;}
.y12_c00170{bottom:541.500000px;}
.y11_c00170{bottom:582.900000px;}
.y10_c00170{bottom:624.300000px;}
.yf_c00170{bottom:668.580000px;}
.ye_c00170{bottom:730.140000px;}
.yd_c00170{bottom:789.540000px;}
.yc_c00170{bottom:830.940000px;}
.yb_c00170{bottom:872.340000px;}
.ya_c00170{bottom:913.740000px;}
.y9_c00170{bottom:955.140000px;}
.y8_c00170{bottom:996.540000px;}
.y7_c00170{bottom:1037.940000px;}
.y6_c00170{bottom:1079.340000px;}
.y5_c00170{bottom:1120.740000px;}
.h3_c00170{height:20.520000px;}
.h2_c00170{height:64.546875px;}
.h4_c00170{height:65.003906px;}
.h1_c00170{height:1225.500000px;}
.h0_c00170{height:1263.000000px;}
.w2_c00170{width:30.240000px;}
.w1_c00170{width:855.000000px;}
.w0_c00170{width:892.500000px;}
.x0_c00170{left:0.000000px;}
.x1_c00170{left:18.750000px;}
.x5_c00170{left:109.439925px;}
.x3_c00170{left:128.190000px;}
.x2_c00170{left:136.440000px;}
.x4_c00170{left:151.965150px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls4_c00170{letter-spacing:-0.012800pt;}
.ls2_c00170{letter-spacing:0.000000pt;}
.ls1_c00170{letter-spacing:0.009760pt;}
.ls0_c00170{letter-spacing:0.012800pt;}
.ls3_c00170{letter-spacing:0.032000pt;}
.ws0_c00170{word-spacing:-17.804800pt;}
.ws1_c00170{word-spacing:-17.801760pt;}
.ws2_c00170{word-spacing:0.000000pt;}
._6_c00170{width:1.376000pt;}
._b_c00170{width:2.995200pt;}
._3_c00170{width:4.294400pt;}
._4_c00170{width:5.446400pt;}
._9_c00170{width:6.739200pt;}
._a_c00170{width:8.044000pt;}
._7_c00170{width:10.201600pt;}
._1_c00170{width:11.097600pt;}
._8_c00170{width:12.160000pt;}
._2_c00170{width:14.182400pt;}
._5_c00170{width:15.212800pt;}
._c_c00170{width:23.731200pt;}
._0_c00170{width:1019.274133pt;}
.fs0_c00170{font-size:64.000000pt;}
.y0_c00170{bottom:0.000000pt;}
.y4_c00170{bottom:3.520000pt;}
.y1_c00170{bottom:16.666667pt;}
.y2_c00170{bottom:33.653360pt;}
.y3_c00170{bottom:46.480027pt;}
.y1a_c00170{bottom:186.933333pt;}
.y19_c00170{bottom:223.733333pt;}
.y18_c00170{bottom:260.533333pt;}
.y17_c00170{bottom:297.333333pt;}
.y16_c00170{bottom:334.133333pt;}
.y15_c00170{bottom:370.933333pt;}
.y14_c00170{bottom:407.733333pt;}
.y13_c00170{bottom:444.533333pt;}
.y12_c00170{bottom:481.333333pt;}
.y11_c00170{bottom:518.133333pt;}
.y10_c00170{bottom:554.933333pt;}
.yf_c00170{bottom:594.293333pt;}
.ye_c00170{bottom:649.013333pt;}
.yd_c00170{bottom:701.813333pt;}
.yc_c00170{bottom:738.613333pt;}
.yb_c00170{bottom:775.413333pt;}
.ya_c00170{bottom:812.213333pt;}
.y9_c00170{bottom:849.013333pt;}
.y8_c00170{bottom:885.813333pt;}
.y7_c00170{bottom:922.613333pt;}
.y6_c00170{bottom:959.413333pt;}
.y5_c00170{bottom:996.213333pt;}
.h3_c00170{height:18.240000pt;}
.h2_c00170{height:57.375000pt;}
.h4_c00170{height:57.781250pt;}
.h1_c00170{height:1089.333333pt;}
.h0_c00170{height:1122.666667pt;}
.w2_c00170{width:26.880000pt;}
.w1_c00170{width:760.000000pt;}
.w0_c00170{width:793.333333pt;}
.x0_c00170{left:0.000000pt;}
.x1_c00170{left:16.666667pt;}
.x5_c00170{left:97.279933pt;}
.x3_c00170{left:113.946667pt;}
.x2_c00170{left:121.280000pt;}
.x4_c00170{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0d284b5b9e6c12a78eb0f125.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.106934;font-style:normal;font-weight:normal;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_dc2ff3ef326a9d0aee95354b.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00171;src:url('chunks/assets/font_75766c259e306d0095eb3567.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:1.104492;font-style: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;}
.ls5_c00171{letter-spacing:-0.014400px;}
.ls3_c00171{letter-spacing:0.000000px;}
.ls1_c00171{letter-spacing:0.010980px;}
.ls0_c00171{letter-spacing:0.014400px;}
.ls6_c00171{letter-spacing:0.036000px;}
.ls2_c00171{letter-spacing:0.426240px;}
.ls4_c00171{letter-spacing:0.548784px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00171{word-spacing:-20.052000px;}
.ws0_c00171{word-spacing:-20.030400px;}
.ws1_c00171{word-spacing:-20.026980px;}
.ws3_c00171{word-spacing:0.000000px;}
._3_c00171{margin-left:-1.332000px;}
._8_c00171{width:4.291200px;}
._6_c00171{width:6.537600px;}
._5_c00171{width:7.840800px;}
._7_c00171{width:11.937600px;}
._4_c00171{width:24.651000px;}
._1_c00171{width:1061.484000px;}
._2_c00171{width:1146.684000px;}
._0_c00171{width:2079.683700px;}
.fc2_c00171{color:transparent;}
.fc1_c00171{color:rgb(51,51,51);}
.fc0_c00171{color:rgb(0,0,0);}
.fs1_c00171{font-size:53.280000px;}
.fs0_c00171{font-size:72.000000px;}
.y0_c00171{bottom:0.000000px;}
.y5_c00171{bottom:3.960000px;}
.y1_c00171{bottom:18.750000px;}
.y3_c00171{bottom:36.420030px;}
.y4_c00171{bottom:47.250030px;}
.y11_c00171{bottom:97.620030px;}
.y10_c00171{bottom:110.220030px;}
.yf_c00171{bottom:473.820000px;}
.ye_c00171{bottom:515.220000px;}
.yd_c00171{bottom:556.620000px;}
.yc_c00171{bottom:598.020000px;}
.yb_c00171{bottom:639.420000px;}
.ya_c00171{bottom:680.820000px;}
.y9_c00171{bottom:722.220000px;}
.y8_c00171{bottom:766.500000px;}
.y7_c00171{bottom:821.580000px;}
.y6_c00171{bottom:834.540000px;}
.y2_c00171{bottom:1174.020000px;}
.h3_c00171{height:20.520000px;}
.h4_c00171{height:47.764688px;}
.h2_c00171{height:64.546875px;}
.h5_c00171{height:65.003906px;}
.h1_c00171{height:1225.500000px;}
.h0_c00171{height:1263.000000px;}
.w2_c00171{width:30.240000px;}
.w1_c00171{width:855.000000px;}
.w0_c00171{width:892.500000px;}
.x0_c00171{left:0.000000px;}
.x1_c00171{left:18.750000px;}
.x2_c00171{left:109.439925px;}
.x7_c00171{left:151.965150px;}
.x3_c00171{left:157.739850px;}
.x8_c00171{left:351.188550px;}
.x6_c00171{left:382.717200px;}
.x4_c00171{left:735.510000px;}
.x5_c00171{left:751.440000px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls5_c00171{letter-spacing:-0.012800pt;}
.ls3_c00171{letter-spacing:0.000000pt;}
.ls1_c00171{letter-spacing:0.009760pt;}
.ls0_c00171{letter-spacing:0.012800pt;}
.ls6_c00171{letter-spacing:0.032000pt;}
.ls2_c00171{letter-spacing:0.378880pt;}
.ls4_c00171{letter-spacing:0.487808pt;}
.ws2_c00171{word-spacing:-17.824000pt;}
.ws0_c00171{word-spacing:-17.804800pt;}
.ws1_c00171{word-spacing:-17.801760pt;}
.ws3_c00171{word-spacing:0.000000pt;}
._3_c00171{margin-left:-1.184000pt;}
._8_c00171{width:3.814400pt;}
._6_c00171{width:5.811200pt;}
._5_c00171{width:6.969600pt;}
._7_c00171{width:10.611200pt;}
._4_c00171{width:21.912000pt;}
._1_c00171{width:943.541333pt;}
._2_c00171{width:1019.274667pt;}
._0_c00171{width:1848.607733pt;}
.fs1_c00171{font-size:47.360000pt;}
.fs0_c00171{font-size:64.000000pt;}
.y0_c00171{bottom:0.000000pt;}
.y5_c00171{bottom:3.520000pt;}
.y1_c00171{bottom:16.666667pt;}
.y3_c00171{bottom:32.373360pt;}
.y4_c00171{bottom:42.000027pt;}
.y11_c00171{bottom:86.773360pt;}
.y10_c00171{bottom:97.973360pt;}
.yf_c00171{bottom:421.173333pt;}
.ye_c00171{bottom:457.973333pt;}
.yd_c00171{bottom:494.773333pt;}
.yc_c00171{bottom:531.573333pt;}
.yb_c00171{bottom:568.373333pt;}
.ya_c00171{bottom:605.173333pt;}
.y9_c00171{bottom:641.973333pt;}
.y8_c00171{bottom:681.333333pt;}
.y7_c00171{bottom:730.293333pt;}
.y6_c00171{bottom:741.813333pt;}
.y2_c00171{bottom:1043.573333pt;}
.h3_c00171{height:18.240000pt;}
.h4_c00171{height:42.457500pt;}
.h2_c00171{height:57.375000pt;}
.h5_c00171{height:57.781250pt;}
.h1_c00171{height:1089.333333pt;}
.h0_c00171{height:1122.666667pt;}
.w2_c00171{width:26.880000pt;}
.w1_c00171{width:760.000000pt;}
.w0_c00171{width:793.333333pt;}
.x0_c00171{left:0.000000pt;}
.x1_c00171{left:16.666667pt;}
.x2_c00171{left:97.279933pt;}
.x7_c00171{left:135.080133pt;}
.x3_c00171{left:140.213200pt;}
.x8_c00171{left:312.167600pt;}
.x6_c00171{left:340.193067pt;}
.x4_c00171{left:653.786667pt;}
.x5_c00171{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10de01ba4defa581a8f0ab5e.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00172;src:url('chunks/assets/font_3835ddd9bb945eb0ef2764d4.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.113281;font-style: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;}
.ls3_c00172{letter-spacing:-0.014400px;}
.ls2_c00172{letter-spacing:0.000000px;}
.ls1_c00172{letter-spacing:0.010980px;}
.ls0_c00172{letter-spacing:0.014400px;}
.ls4_c00172{letter-spacing:0.548784px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00172{word-spacing:-20.030400px;}
.ws1_c00172{word-spacing:-20.026980px;}
.ws2_c00172{word-spacing:-15.360624px;}
.ws3_c00172{word-spacing:0.000000px;}
._9_c00172{width:7.128000px;}
._1_c00172{width:8.128800px;}
._5_c00172{width:10.080000px;}
._8_c00172{width:11.246400px;}
._4_c00172{width:12.513600px;}
._6_c00172{width:16.869600px;}
._3_c00172{width:21.276000px;}
._a_c00172{width:31.363200px;}
._2_c00172{width:38.052000px;}
._c_c00172{width:40.413600px;}
._b_c00172{width:63.316800px;}
._7_c00172{width:81.216000px;}
._0_c00172{width:1146.683400px;}
.fc2_c00172{color:transparent;}
.fc1_c00172{color:rgb(51,51,51);}
.fc0_c00172{color:rgb(0,0,0);}
.fs1_c00172{font-size:53.280000px;}
.fs0_c00172{font-size:72.000000px;}
.y0_c00172{bottom:0.000000px;}
.y4_c00172{bottom:3.960000px;}
.y1_c00172{bottom:18.750000px;}
.y2_c00172{bottom:37.860030px;}
.y3_c00172{bottom:52.290030px;}
.y17_c00172{bottom:92.220030px;}
.y16_c00172{bottom:133.620000px;}
.y15_c00172{bottom:175.020000px;}
.y14_c00172{bottom:216.420000px;}
.y13_c00172{bottom:257.820000px;}
.y12_c00172{bottom:299.220000px;}
.y11_c00172{bottom:340.620000px;}
.y10_c00172{bottom:393.900000px;}
.yf_c00172{bottom:406.500000px;}
.ye_c00172{bottom:743.100000px;}
.yd_c00172{bottom:784.500000px;}
.yc_c00172{bottom:825.900000px;}
.yb_c00172{bottom:867.300000px;}
.ya_c00172{bottom:908.700000px;}
.y9_c00172{bottom:950.100000px;}
.y8_c00172{bottom:991.500000px;}
.y7_c00172{bottom:1032.900000px;}
.y6_c00172{bottom:1074.300000px;}
.y5_c00172{bottom:1118.580000px;}
.h3_c00172{height:20.520000px;}
.h5_c00172{height:47.764688px;}
.h2_c00172{height:64.546875px;}
.h4_c00172{height:65.003906px;}
.h1_c00172{height:1225.500000px;}
.h0_c00172{height:1263.000000px;}
.w2_c00172{width:30.240000px;}
.w1_c00172{width:855.000000px;}
.w0_c00172{width:892.500000px;}
.x0_c00172{left:0.000000px;}
.x1_c00172{left:18.750000px;}
.x4_c00172{left:109.439925px;}
.x3_c00172{left:128.190000px;}
.x2_c00172{left:136.440000px;}
.x5_c00172{left:151.965150px;}
.x7_c00172{left:410.106150px;}
.x6_c00172{left:751.440000px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls3_c00172{letter-spacing:-0.012800pt;}
.ls2_c00172{letter-spacing:0.000000pt;}
.ls1_c00172{letter-spacing:0.009760pt;}
.ls0_c00172{letter-spacing:0.012800pt;}
.ls4_c00172{letter-spacing:0.487808pt;}
.ws0_c00172{word-spacing:-17.804800pt;}
.ws1_c00172{word-spacing:-17.801760pt;}
.ws2_c00172{word-spacing:-13.653888pt;}
.ws3_c00172{word-spacing:0.000000pt;}
._9_c00172{width:6.336000pt;}
._1_c00172{width:7.225600pt;}
._5_c00172{width:8.960000pt;}
._8_c00172{width:9.996800pt;}
._4_c00172{width:11.123200pt;}
._6_c00172{width:14.995200pt;}
._3_c00172{width:18.912000pt;}
._a_c00172{width:27.878400pt;}
._2_c00172{width:33.824000pt;}
._c_c00172{width:35.923200pt;}
._b_c00172{width:56.281600pt;}
._7_c00172{width:72.192000pt;}
._0_c00172{width:1019.274133pt;}
.fs1_c00172{font-size:47.360000pt;}
.fs0_c00172{font-size:64.000000pt;}
.y0_c00172{bottom:0.000000pt;}
.y4_c00172{bottom:3.520000pt;}
.y1_c00172{bottom:16.666667pt;}
.y2_c00172{bottom:33.653360pt;}
.y3_c00172{bottom:46.480027pt;}
.y17_c00172{bottom:81.973360pt;}
.y16_c00172{bottom:118.773333pt;}
.y15_c00172{bottom:155.573333pt;}
.y14_c00172{bottom:192.373333pt;}
.y13_c00172{bottom:229.173333pt;}
.y12_c00172{bottom:265.973333pt;}
.y11_c00172{bottom:302.773333pt;}
.y10_c00172{bottom:350.133333pt;}
.yf_c00172{bottom:361.333333pt;}
.ye_c00172{bottom:660.533333pt;}
.yd_c00172{bottom:697.333333pt;}
.yc_c00172{bottom:734.133333pt;}
.yb_c00172{bottom:770.933333pt;}
.ya_c00172{bottom:807.733333pt;}
.y9_c00172{bottom:844.533333pt;}
.y8_c00172{bottom:881.333333pt;}
.y7_c00172{bottom:918.133333pt;}
.y6_c00172{bottom:954.933333pt;}
.y5_c00172{bottom:994.293333pt;}
.h3_c00172{height:18.240000pt;}
.h5_c00172{height:42.457500pt;}
.h2_c00172{height:57.375000pt;}
.h4_c00172{height:57.781250pt;}
.h1_c00172{height:1089.333333pt;}
.h0_c00172{height:1122.666667pt;}
.w2_c00172{width:26.880000pt;}
.w1_c00172{width:760.000000pt;}
.w0_c00172{width:793.333333pt;}
.x0_c00172{left:0.000000pt;}
.x1_c00172{left:16.666667pt;}
.x4_c00172{left:97.279933pt;}
.x3_c00172{left:113.946667pt;}
.x2_c00172{left:121.280000pt;}
.x5_c00172{left:135.080133pt;}
.x7_c00172{left:364.538800pt;}
.x6_c00172{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_768fc2808ffefeb349ec2db1.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00173;src:url('chunks/assets/font_5bf8832080a4bea876216b32.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00173;src:url('chunks/assets/font_34bc466e2621bdac1bd90c58.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;line-height:1.113281;font-style: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;}
.ls2_c00173{letter-spacing:-0.014400px;}
.ls1_c00173{letter-spacing:0.000000px;}
.ls0_c00173{letter-spacing:0.014400px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00173{word-spacing:-20.030400px;}
.ws1_c00173{word-spacing:-20.016000px;}
.ws2_c00173{word-spacing:0.000000px;}
._a_c00173{width:1.029600px;}
._b_c00173{width:2.181600px;}
._8_c00173{width:4.627500px;}
._5_c00173{width:5.904000px;}
._6_c00173{width:7.365600px;}
._d_c00173{width:8.532000px;}
._e_c00173{width:10.336500px;}
._c_c00173{width:11.527200px;}
._4_c00173{width:16.264800px;}
._9_c00173{width:17.409600px;}
._3_c00173{width:18.561600px;}
._7_c00173{width:23.680800px;}
._1_c00173{width:1061.484000px;}
._2_c00173{width:1146.684000px;}
._0_c00173{width:2079.683700px;}
.fc1_c00173{color:transparent;}
.fc0_c00173{color:rgb(0,0,0);}
.fs1_c00173{font-size:53.280000px;}
.fs0_c00173{font-size:72.000000px;}
.y0_c00173{bottom:0.000000px;}
.y5_c00173{bottom:3.960000px;}
.y1_c00173{bottom:18.750000px;}
.y3_c00173{bottom:36.420030px;}
.y4_c00173{bottom:47.250030px;}
.y1c_c00173{bottom:168.900000px;}
.y1b_c00173{bottom:210.300000px;}
.y1a_c00173{bottom:251.700000px;}
.y19_c00173{bottom:293.100000px;}
.y18_c00173{bottom:334.500000px;}
.y17_c00173{bottom:375.900000px;}
.y16_c00173{bottom:417.300000px;}
.y15_c00173{bottom:458.700000px;}
.y14_c00173{bottom:500.100000px;}
.y13_c00173{bottom:541.500000px;}
.y12_c00173{bottom:582.900000px;}
.y11_c00173{bottom:627.180000px;}
.y10_c00173{bottom:688.740000px;}
.yf_c00173{bottom:730.140000px;}
.ye_c00173{bottom:771.540000px;}
.yd_c00173{bottom:812.940000px;}
.yc_c00173{bottom:854.340000px;}
.yb_c00173{bottom:913.740000px;}
.ya_c00173{bottom:955.140000px;}
.y9_c00173{bottom:996.540000px;}
.y8_c00173{bottom:1037.940000px;}
.y7_c00173{bottom:1079.340000px;}
.y6_c00173{bottom:1120.740000px;}
.y2_c00173{bottom:1174.020000px;}
.h3_c00173{height:20.520000px;}
.h2_c00173{height:64.546875px;}
.h4_c00173{height:65.003906px;}
.h1_c00173{height:1225.500000px;}
.h0_c00173{height:1263.000000px;}
.w2_c00173{width:30.240000px;}
.w1_c00173{width:855.000000px;}
.w0_c00173{width:892.500000px;}
.x0_c00173{left:0.000000px;}
.x1_c00173{left:18.750000px;}
.x2_c00173{left:109.439925px;}
.x5_c00173{left:151.965150px;}
.x3_c00173{left:157.739850px;}
.x4_c00173{left:735.510000px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls2_c00173{letter-spacing:-0.012800pt;}
.ls1_c00173{letter-spacing:0.000000pt;}
.ls0_c00173{letter-spacing:0.012800pt;}
.ws0_c00173{word-spacing:-17.804800pt;}
.ws1_c00173{word-spacing:-17.792000pt;}
.ws2_c00173{word-spacing:0.000000pt;}
._a_c00173{width:0.915200pt;}
._b_c00173{width:1.939200pt;}
._8_c00173{width:4.113333pt;}
._5_c00173{width:5.248000pt;}
._6_c00173{width:6.547200pt;}
._d_c00173{width:7.584000pt;}
._e_c00173{width:9.188000pt;}
._c_c00173{width:10.246400pt;}
._4_c00173{width:14.457600pt;}
._9_c00173{width:15.475200pt;}
._3_c00173{width:16.499200pt;}
._7_c00173{width:21.049600pt;}
._1_c00173{width:943.541333pt;}
._2_c00173{width:1019.274667pt;}
._0_c00173{width:1848.607733pt;}
.fs1_c00173{font-size:47.360000pt;}
.fs0_c00173{font-size:64.000000pt;}
.y0_c00173{bottom:0.000000pt;}
.y5_c00173{bottom:3.520000pt;}
.y1_c00173{bottom:16.666667pt;}
.y3_c00173{bottom:32.373360pt;}
.y4_c00173{bottom:42.000027pt;}
.y1c_c00173{bottom:150.133333pt;}
.y1b_c00173{bottom:186.933333pt;}
.y1a_c00173{bottom:223.733333pt;}
.y19_c00173{bottom:260.533333pt;}
.y18_c00173{bottom:297.333333pt;}
.y17_c00173{bottom:334.133333pt;}
.y16_c00173{bottom:370.933333pt;}
.y15_c00173{bottom:407.733333pt;}
.y14_c00173{bottom:444.533333pt;}
.y13_c00173{bottom:481.333333pt;}
.y12_c00173{bottom:518.133333pt;}
.y11_c00173{bottom:557.493333pt;}
.y10_c00173{bottom:612.213333pt;}
.yf_c00173{bottom:649.013333pt;}
.ye_c00173{bottom:685.813333pt;}
.yd_c00173{bottom:722.613333pt;}
.yc_c00173{bottom:759.413333pt;}
.yb_c00173{bottom:812.213333pt;}
.ya_c00173{bottom:849.013333pt;}
.y9_c00173{bottom:885.813333pt;}
.y8_c00173{bottom:922.613333pt;}
.y7_c00173{bottom:959.413333pt;}
.y6_c00173{bottom:996.213333pt;}
.y2_c00173{bottom:1043.573333pt;}
.h3_c00173{height:18.240000pt;}
.h2_c00173{height:57.375000pt;}
.h4_c00173{height:57.781250pt;}
.h1_c00173{height:1089.333333pt;}
.h0_c00173{height:1122.666667pt;}
.w2_c00173{width:26.880000pt;}
.w1_c00173{width:760.000000pt;}
.w0_c00173{width:793.333333pt;}
.x0_c00173{left:0.000000pt;}
.x1_c00173{left:16.666667pt;}
.x2_c00173{left:97.279933pt;}
.x5_c00173{left:135.080133pt;}
.x3_c00173{left:140.213200pt;}
.x4_c00173{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_56ec54588c668c5132312739.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00174;src:url('chunks/assets/font_a94c1c9c82fab577eb7fbf49.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.111328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00174;src:url('chunks/assets/font_a9e0da1b2591b1f007811028.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:1.104492;font-style: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;}
.v1_c00174{vertical-align:33.120000px;}
.ls3_c00174{letter-spacing:-0.014400px;}
.ls2_c00174{letter-spacing:0.000000px;}
.ls0_c00174{letter-spacing:0.014400px;}
.ls1_c00174{letter-spacing:0.274680px;}
.ls4_c00174{letter-spacing:0.479520px;}
.sc__c00174{text-shadow:none;}
.sc0_c00174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00174{-webkit-text-stroke:0px transparent;}
.sc0_c00174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00174{word-spacing:-20.030400px;}
.ws1_c00174{word-spacing:-0.072000px;}
.ws2_c00174{word-spacing:0.000000px;}
._a_c00174{margin-left:-1.225440px;}
._8_c00174{width:1.130400px;}
._2_c00174{width:2.368800px;}
._7_c00174{width:3.599700px;}
._4_c00174{width:4.996800px;}
._1_c00174{width:7.495200px;}
._3_c00174{width:9.691200px;}
._6_c00174{width:14.709600px;}
._9_c00174{width:23.292000px;}
._5_c00174{width:24.962400px;}
._0_c00174{width:1146.683400px;}
.fc1_c00174{color:transparent;}
.fc0_c00174{color:rgb(0,0,0);}
.fs1_c00174{font-size:47.520000px;}
.fs2_c00174{font-size:53.280000px;}
.fs0_c00174{font-size:72.000000px;}
.y0_c00174{bottom:0.000000px;}
.y4_c00174{bottom:3.960000px;}
.y1_c00174{bottom:18.750000px;}
.y2_c00174{bottom:37.860030px;}
.y3_c00174{bottom:52.290030px;}
.y16_c00174{bottom:91.500030px;}
.y15_c00174{bottom:140.460000px;}
.y14_c00174{bottom:189.420000px;}
.y13_c00174{bottom:238.380000px;}
.y12_c00174{bottom:251.340000px;}
.y11_c00174{bottom:623.940000px;}
.y10_c00174{bottom:665.340000px;}
.yf_c00174{bottom:706.740000px;}
.ye_c00174{bottom:748.140000px;}
.yd_c00174{bottom:789.540000px;}
.yc_c00174{bottom:830.940000px;}
.yb_c00174{bottom:872.340000px;}
.ya_c00174{bottom:913.740000px;}
.y9_c00174{bottom:955.140000px;}
.y8_c00174{bottom:996.540000px;}
.y7_c00174{bottom:1037.940000px;}
.y6_c00174{bottom:1079.340000px;}
.y5_c00174{bottom:1120.740000px;}
.h3_c00174{height:20.520000px;}
.h6_c00174{height:47.764688px;}
.h2_c00174{height:64.546875px;}
.h5_c00174{height:65.707031px;}
.h4_c00174{height:75.720938px;}
.h1_c00174{height:1225.500000px;}
.h0_c00174{height:1263.000000px;}
.w2_c00174{width:30.240000px;}
.w1_c00174{width:855.000000px;}
.w0_c00174{width:892.500000px;}
.x0_c00174{left:0.000000px;}
.x1_c00174{left:18.750000px;}
.x5_c00174{left:109.439925px;}
.x3_c00174{left:128.190000px;}
.x2_c00174{left:136.440000px;}
.x4_c00174{left:151.965150px;}
.x7_c00174{left:313.292400px;}
.x8_c00174{left:428.114850px;}
.x6_c00174{left:751.440000px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.v1_c00174{vertical-align:29.440000pt;}
.ls3_c00174{letter-spacing:-0.012800pt;}
.ls2_c00174{letter-spacing:0.000000pt;}
.ls0_c00174{letter-spacing:0.012800pt;}
.ls1_c00174{letter-spacing:0.244160pt;}
.ls4_c00174{letter-spacing:0.426240pt;}
.ws0_c00174{word-spacing:-17.804800pt;}
.ws1_c00174{word-spacing:-0.064000pt;}
.ws2_c00174{word-spacing:0.000000pt;}
._a_c00174{margin-left:-1.089280pt;}
._8_c00174{width:1.004800pt;}
._2_c00174{width:2.105600pt;}
._7_c00174{width:3.199733pt;}
._4_c00174{width:4.441600pt;}
._1_c00174{width:6.662400pt;}
._3_c00174{width:8.614400pt;}
._6_c00174{width:13.075200pt;}
._9_c00174{width:20.704000pt;}
._5_c00174{width:22.188800pt;}
._0_c00174{width:1019.274133pt;}
.fs1_c00174{font-size:42.240000pt;}
.fs2_c00174{font-size:47.360000pt;}
.fs0_c00174{font-size:64.000000pt;}
.y0_c00174{bottom:0.000000pt;}
.y4_c00174{bottom:3.520000pt;}
.y1_c00174{bottom:16.666667pt;}
.y2_c00174{bottom:33.653360pt;}
.y3_c00174{bottom:46.480027pt;}
.y16_c00174{bottom:81.333360pt;}
.y15_c00174{bottom:124.853333pt;}
.y14_c00174{bottom:168.373333pt;}
.y13_c00174{bottom:211.893333pt;}
.y12_c00174{bottom:223.413333pt;}
.y11_c00174{bottom:554.613333pt;}
.y10_c00174{bottom:591.413333pt;}
.yf_c00174{bottom:628.213333pt;}
.ye_c00174{bottom:665.013333pt;}
.yd_c00174{bottom:701.813333pt;}
.yc_c00174{bottom:738.613333pt;}
.yb_c00174{bottom:775.413333pt;}
.ya_c00174{bottom:812.213333pt;}
.y9_c00174{bottom:849.013333pt;}
.y8_c00174{bottom:885.813333pt;}
.y7_c00174{bottom:922.613333pt;}
.y6_c00174{bottom:959.413333pt;}
.y5_c00174{bottom:996.213333pt;}
.h3_c00174{height:18.240000pt;}
.h6_c00174{height:42.457500pt;}
.h2_c00174{height:57.375000pt;}
.h5_c00174{height:58.406250pt;}
.h4_c00174{height:67.307500pt;}
.h1_c00174{height:1089.333333pt;}
.h0_c00174{height:1122.666667pt;}
.w2_c00174{width:26.880000pt;}
.w1_c00174{width:760.000000pt;}
.w0_c00174{width:793.333333pt;}
.x0_c00174{left:0.000000pt;}
.x1_c00174{left:16.666667pt;}
.x5_c00174{left:97.279933pt;}
.x3_c00174{left:113.946667pt;}
.x2_c00174{left:121.280000pt;}
.x4_c00174{left:135.080133pt;}
.x7_c00174{left:278.482133pt;}
.x8_c00174{left:380.546533pt;}
.x6_c00174{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f70968879098754256a23f27.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00175;src:url('chunks/assets/font_1415a727f9770f0ce2a9c68c.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00175;src:url('chunks/assets/font_2534853e60038dd245a76364.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:1.104492;font-style: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;}
.ls2_c00175{letter-spacing:-0.014400px;}
.ls1_c00175{letter-spacing:0.000000px;}
.ls0_c00175{letter-spacing:0.014400px;}
.ls4_c00175{letter-spacing:0.170496px;}
.ls5_c00175{letter-spacing:0.388944px;}
.ls3_c00175{letter-spacing:0.479520px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00175{word-spacing:-20.030400px;}
.ws1_c00175{word-spacing:-20.001600px;}
.ws2_c00175{word-spacing:0.000000px;}
._6_c00175{margin-left:-1.001700px;}
._a_c00175{width:1.087200px;}
._9_c00175{width:9.612000px;}
._5_c00175{width:14.630400px;}
._4_c00175{width:15.897600px;}
._7_c00175{width:21.139200px;}
._3_c00175{width:22.356000px;}
._b_c00175{width:28.288440px;}
._8_c00175{width:29.301720px;}
._1_c00175{width:1061.484000px;}
._2_c00175{width:1146.684000px;}
._0_c00175{width:2079.683700px;}
.fc1_c00175{color:transparent;}
.fc0_c00175{color:rgb(0,0,0);}
.fs1_c00175{font-size:53.280000px;}
.fs0_c00175{font-size:72.000000px;}
.y0_c00175{bottom:0.000000px;}
.y5_c00175{bottom:3.960000px;}
.y1_c00175{bottom:18.750000px;}
.y3_c00175{bottom:36.420030px;}
.y4_c00175{bottom:47.250030px;}
.y13_c00175{bottom:123.900015px;}
.y12_c00175{bottom:172.860000px;}
.y11_c00175{bottom:660.300000px;}
.y10_c00175{bottom:701.700000px;}
.yf_c00175{bottom:743.100000px;}
.ye_c00175{bottom:784.500000px;}
.yd_c00175{bottom:825.900000px;}
.yc_c00175{bottom:867.300000px;}
.yb_c00175{bottom:908.700000px;}
.ya_c00175{bottom:950.100000px;}
.y9_c00175{bottom:991.500000px;}
.y8_c00175{bottom:1032.900000px;}
.y7_c00175{bottom:1074.300000px;}
.y6_c00175{bottom:1118.580000px;}
.y2_c00175{bottom:1174.020000px;}
.h3_c00175{height:20.520000px;}
.h5_c00175{height:47.764688px;}
.h2_c00175{height:64.546875px;}
.h4_c00175{height:65.003906px;}
.h1_c00175{height:1225.500000px;}
.h0_c00175{height:1263.000000px;}
.w2_c00175{width:30.240000px;}
.w1_c00175{width:855.000000px;}
.w0_c00175{width:892.500000px;}
.x0_c00175{left:0.000000px;}
.x1_c00175{left:18.750000px;}
.x2_c00175{left:109.439925px;}
.x5_c00175{left:151.965150px;}
.x3_c00175{left:157.739850px;}
.x6_c00175{left:213.486000px;}
.x7_c00175{left:428.114850px;}
.x4_c00175{left:735.510000px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls2_c00175{letter-spacing:-0.012800pt;}
.ls1_c00175{letter-spacing:0.000000pt;}
.ls0_c00175{letter-spacing:0.012800pt;}
.ls4_c00175{letter-spacing:0.151552pt;}
.ls5_c00175{letter-spacing:0.345728pt;}
.ls3_c00175{letter-spacing:0.426240pt;}
.ws0_c00175{word-spacing:-17.804800pt;}
.ws1_c00175{word-spacing:-17.779200pt;}
.ws2_c00175{word-spacing:0.000000pt;}
._6_c00175{margin-left:-0.890400pt;}
._a_c00175{width:0.966400pt;}
._9_c00175{width:8.544000pt;}
._5_c00175{width:13.004800pt;}
._4_c00175{width:14.131200pt;}
._7_c00175{width:18.790400pt;}
._3_c00175{width:19.872000pt;}
._b_c00175{width:25.145280pt;}
._8_c00175{width:26.045973pt;}
._1_c00175{width:943.541333pt;}
._2_c00175{width:1019.274667pt;}
._0_c00175{width:1848.607733pt;}
.fs1_c00175{font-size:47.360000pt;}
.fs0_c00175{font-size:64.000000pt;}
.y0_c00175{bottom:0.000000pt;}
.y5_c00175{bottom:3.520000pt;}
.y1_c00175{bottom:16.666667pt;}
.y3_c00175{bottom:32.373360pt;}
.y4_c00175{bottom:42.000027pt;}
.y13_c00175{bottom:110.133347pt;}
.y12_c00175{bottom:153.653333pt;}
.y11_c00175{bottom:586.933333pt;}
.y10_c00175{bottom:623.733333pt;}
.yf_c00175{bottom:660.533333pt;}
.ye_c00175{bottom:697.333333pt;}
.yd_c00175{bottom:734.133333pt;}
.yc_c00175{bottom:770.933333pt;}
.yb_c00175{bottom:807.733333pt;}
.ya_c00175{bottom:844.533333pt;}
.y9_c00175{bottom:881.333333pt;}
.y8_c00175{bottom:918.133333pt;}
.y7_c00175{bottom:954.933333pt;}
.y6_c00175{bottom:994.293333pt;}
.y2_c00175{bottom:1043.573333pt;}
.h3_c00175{height:18.240000pt;}
.h5_c00175{height:42.457500pt;}
.h2_c00175{height:57.375000pt;}
.h4_c00175{height:57.781250pt;}
.h1_c00175{height:1089.333333pt;}
.h0_c00175{height:1122.666667pt;}
.w2_c00175{width:26.880000pt;}
.w1_c00175{width:760.000000pt;}
.w0_c00175{width:793.333333pt;}
.x0_c00175{left:0.000000pt;}
.x1_c00175{left:16.666667pt;}
.x2_c00175{left:97.279933pt;}
.x5_c00175{left:135.080133pt;}
.x3_c00175{left:140.213200pt;}
.x6_c00175{left:189.765333pt;}
.x7_c00175{left:380.546533pt;}
.x4_c00175{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a4bca58be26f6001179aa935.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.ls1_c00176{letter-spacing:0.000000px;}
.ls0_c00176{letter-spacing:0.014400px;}
.ls2_c00176{letter-spacing:0.479520px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00176{word-spacing:-20.030400px;}
.ws1_c00176{word-spacing:0.000000px;}
._1_c00176{margin-left:-1.172160px;}
._0_c00176{width:1146.683400px;}
.fc1_c00176{color:transparent;}
.fc0_c00176{color:rgb(0,0,0);}
.fs1_c00176{font-size:53.280000px;}
.fs0_c00176{font-size:72.000000px;}
.y0_c00176{bottom:0.000000px;}
.y4_c00176{bottom:3.960000px;}
.y1_c00176{bottom:18.750000px;}
.y2_c00176{bottom:37.860030px;}
.y3_c00176{bottom:52.290030px;}
.y9_c00176{bottom:117.420015px;}
.y8_c00176{bottom:150.900000px;}
.y7_c00176{bottom:166.740000px;}
.y6_c00176{bottom:179.340000px;}
.y5_c00176{bottom:1124.700000px;}
.h3_c00176{height:20.520000px;}
.h4_c00176{height:47.764688px;}
.h2_c00176{height:64.546875px;}
.h1_c00176{height:1225.500000px;}
.h0_c00176{height:1263.000000px;}
.w2_c00176{width:30.240000px;}
.w1_c00176{width:855.000000px;}
.w0_c00176{width:892.500000px;}
.x0_c00176{left:0.000000px;}
.x1_c00176{left:18.750000px;}
.x3_c00176{left:128.190000px;}
.x2_c00176{left:136.440000px;}
.x6_c00176{left:219.131850px;}
.x4_c00176{left:428.114850px;}
.x5_c00176{left:751.440000px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls1_c00176{letter-spacing:0.000000pt;}
.ls0_c00176{letter-spacing:0.012800pt;}
.ls2_c00176{letter-spacing:0.426240pt;}
.ws0_c00176{word-spacing:-17.804800pt;}
.ws1_c00176{word-spacing:0.000000pt;}
._1_c00176{margin-left:-1.041920pt;}
._0_c00176{width:1019.274133pt;}
.fs1_c00176{font-size:47.360000pt;}
.fs0_c00176{font-size:64.000000pt;}
.y0_c00176{bottom:0.000000pt;}
.y4_c00176{bottom:3.520000pt;}
.y1_c00176{bottom:16.666667pt;}
.y2_c00176{bottom:33.653360pt;}
.y3_c00176{bottom:46.480027pt;}
.y9_c00176{bottom:104.373347pt;}
.y8_c00176{bottom:134.133333pt;}
.y7_c00176{bottom:148.213333pt;}
.y6_c00176{bottom:159.413333pt;}
.y5_c00176{bottom:999.733333pt;}
.h3_c00176{height:18.240000pt;}
.h4_c00176{height:42.457500pt;}
.h2_c00176{height:57.375000pt;}
.h1_c00176{height:1089.333333pt;}
.h0_c00176{height:1122.666667pt;}
.w2_c00176{width:26.880000pt;}
.w1_c00176{width:760.000000pt;}
.w0_c00176{width:793.333333pt;}
.x0_c00176{left:0.000000pt;}
.x1_c00176{left:16.666667pt;}
.x3_c00176{left:113.946667pt;}
.x2_c00176{left:121.280000pt;}
.x6_c00176{left:194.783867pt;}
.x4_c00176{left:380.546533pt;}
.x5_c00176{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_411355b8fb16381fff03640a.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00177;src:url('chunks/assets/font_a006f7509f8746ae44f7711f.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00177;src:url('chunks/assets/font_ce3e8da43eeff58d8f35d0a4.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:1.104492;font-style: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;}
.ls3_c00177{letter-spacing:-0.014400px;}
.ls2_c00177{letter-spacing:0.000000px;}
.ls0_c00177{letter-spacing:0.014400px;}
.ls1_c00177{letter-spacing:0.191160px;}
.ls5_c00177{letter-spacing:0.191808px;}
.ls4_c00177{letter-spacing:0.527472px;}
.sc__c00177{text-shadow:none;}
.sc0_c00177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00177{-webkit-text-stroke:0px transparent;}
.sc0_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00177{word-spacing:-20.030400px;}
.ws1_c00177{word-spacing:-15.339312px;}
.ws2_c00177{word-spacing:0.000000px;}
._b_c00177{margin-left:-1.008000px;}
._6_c00177{width:1.039500px;}
._3_c00177{width:3.353400px;}
._5_c00177{width:4.465800px;}
._9_c00177{width:8.395200px;}
._8_c00177{width:10.735200px;}
._a_c00177{width:19.015200px;}
._d_c00177{width:21.539100px;}
._7_c00177{width:23.198400px;}
._4_c00177{width:36.979200px;}
._c_c00177{width:39.480300px;}
._1_c00177{width:1061.484000px;}
._2_c00177{width:1146.684000px;}
._0_c00177{width:2079.683700px;}
.fc1_c00177{color:transparent;}
.fc0_c00177{color:rgb(0,0,0);}
.fs1_c00177{font-size:53.280000px;}
.fs0_c00177{font-size:72.000000px;}
.y0_c00177{bottom:0.000000px;}
.y5_c00177{bottom:3.960000px;}
.y1_c00177{bottom:18.750000px;}
.y3_c00177{bottom:36.420030px;}
.y4_c00177{bottom:47.250030px;}
.y13_c00177{bottom:142.980000px;}
.y12_c00177{bottom:155.580000px;}
.y11_c00177{bottom:660.300000px;}
.y10_c00177{bottom:701.700000px;}
.yf_c00177{bottom:743.100000px;}
.ye_c00177{bottom:784.500000px;}
.yd_c00177{bottom:825.900000px;}
.yc_c00177{bottom:867.300000px;}
.yb_c00177{bottom:908.700000px;}
.ya_c00177{bottom:950.100000px;}
.y9_c00177{bottom:991.500000px;}
.y8_c00177{bottom:1032.900000px;}
.y7_c00177{bottom:1074.300000px;}
.y6_c00177{bottom:1118.580000px;}
.y2_c00177{bottom:1174.020000px;}
.h3_c00177{height:20.520000px;}
.h5_c00177{height:47.764688px;}
.h2_c00177{height:64.546875px;}
.h4_c00177{height:65.003906px;}
.h1_c00177{height:1225.500000px;}
.h0_c00177{height:1263.000000px;}
.w2_c00177{width:30.240000px;}
.w1_c00177{width:855.000000px;}
.w0_c00177{width:892.500000px;}
.x0_c00177{left:0.000000px;}
.x1_c00177{left:18.750000px;}
.x2_c00177{left:109.439925px;}
.x5_c00177{left:151.965150px;}
.x3_c00177{left:157.739850px;}
.x7_c00177{left:295.300050px;}
.x4_c00177{left:735.510000px;}
.x6_c00177{left:754.440000px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls3_c00177{letter-spacing:-0.012800pt;}
.ls2_c00177{letter-spacing:0.000000pt;}
.ls0_c00177{letter-spacing:0.012800pt;}
.ls1_c00177{letter-spacing:0.169920pt;}
.ls5_c00177{letter-spacing:0.170496pt;}
.ls4_c00177{letter-spacing:0.468864pt;}
.ws0_c00177{word-spacing:-17.804800pt;}
.ws1_c00177{word-spacing:-13.634944pt;}
.ws2_c00177{word-spacing:0.000000pt;}
._b_c00177{margin-left:-0.896000pt;}
._6_c00177{width:0.924000pt;}
._3_c00177{width:2.980800pt;}
._5_c00177{width:3.969600pt;}
._9_c00177{width:7.462400pt;}
._8_c00177{width:9.542400pt;}
._a_c00177{width:16.902400pt;}
._d_c00177{width:19.145867pt;}
._7_c00177{width:20.620800pt;}
._4_c00177{width:32.870400pt;}
._c_c00177{width:35.093600pt;}
._1_c00177{width:943.541333pt;}
._2_c00177{width:1019.274667pt;}
._0_c00177{width:1848.607733pt;}
.fs1_c00177{font-size:47.360000pt;}
.fs0_c00177{font-size:64.000000pt;}
.y0_c00177{bottom:0.000000pt;}
.y5_c00177{bottom:3.520000pt;}
.y1_c00177{bottom:16.666667pt;}
.y3_c00177{bottom:32.373360pt;}
.y4_c00177{bottom:42.000027pt;}
.y13_c00177{bottom:127.093333pt;}
.y12_c00177{bottom:138.293333pt;}
.y11_c00177{bottom:586.933333pt;}
.y10_c00177{bottom:623.733333pt;}
.yf_c00177{bottom:660.533333pt;}
.ye_c00177{bottom:697.333333pt;}
.yd_c00177{bottom:734.133333pt;}
.yc_c00177{bottom:770.933333pt;}
.yb_c00177{bottom:807.733333pt;}
.ya_c00177{bottom:844.533333pt;}
.y9_c00177{bottom:881.333333pt;}
.y8_c00177{bottom:918.133333pt;}
.y7_c00177{bottom:954.933333pt;}
.y6_c00177{bottom:994.293333pt;}
.y2_c00177{bottom:1043.573333pt;}
.h3_c00177{height:18.240000pt;}
.h5_c00177{height:42.457500pt;}
.h2_c00177{height:57.375000pt;}
.h4_c00177{height:57.781250pt;}
.h1_c00177{height:1089.333333pt;}
.h0_c00177{height:1122.666667pt;}
.w2_c00177{width:26.880000pt;}
.w1_c00177{width:760.000000pt;}
.w0_c00177{width:793.333333pt;}
.x0_c00177{left:0.000000pt;}
.x1_c00177{left:16.666667pt;}
.x2_c00177{left:97.279933pt;}
.x5_c00177{left:135.080133pt;}
.x3_c00177{left:140.213200pt;}
.x7_c00177{left:262.488933pt;}
.x4_c00177{left:653.786667pt;}
.x6_c00177{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_10fea5bc53924223c07d9d37.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00178;src:url('chunks/assets/font_0cfcc043816ff72d0e476b0b.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00178;src:url('chunks/assets/font_7f6e485532f0bfd986d9fbbe.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:1.104492;font-style: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;}
.ls4_c00178{letter-spacing:-0.014400px;}
.ls3_c00178{letter-spacing:0.000000px;}
.ls1_c00178{letter-spacing:0.010980px;}
.ls0_c00178{letter-spacing:0.014400px;}
.ls5_c00178{letter-spacing:0.170496px;}
.ls2_c00178{letter-spacing:3.781800px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00178{word-spacing:-20.030400px;}
.ws1_c00178{word-spacing:-20.026980px;}
.ws2_c00178{word-spacing:-20.016000px;}
.ws3_c00178{word-spacing:0.000000px;}
._c_c00178{width:1.004700px;}
._5_c00178{width:3.002400px;}
._8_c00178{width:4.514400px;}
._1_c00178{width:5.968800px;}
._4_c00178{width:7.941600px;}
._3_c00178{width:9.482400px;}
._9_c00178{width:10.639500px;}
._7_c00178{width:11.903700px;}
._b_c00178{width:12.933600px;}
._6_c00178{width:13.939200px;}
._a_c00178{width:17.942400px;}
._2_c00178{width:42.120000px;}
._0_c00178{width:1146.683400px;}
.fc2_c00178{color:transparent;}
.fc1_c00178{color:rgb(0,0,255);}
.fc0_c00178{color:rgb(0,0,0);}
.fs1_c00178{font-size:53.280000px;}
.fs0_c00178{font-size:72.000000px;}
.y0_c00178{bottom:0.000000px;}
.y4_c00178{bottom:3.960000px;}
.y1_c00178{bottom:18.750000px;}
.y2_c00178{bottom:37.860030px;}
.y3_c00178{bottom:52.290030px;}
.y1d_c00178{bottom:93.300030px;}
.y1c_c00178{bottom:106.260030px;}
.y1b_c00178{bottom:209.940000px;}
.y1a_c00178{bottom:251.340000px;}
.y19_c00178{bottom:292.740000px;}
.y18_c00178{bottom:334.140000px;}
.y17_c00178{bottom:375.540000px;}
.y16_c00178{bottom:416.940000px;}
.y15_c00178{bottom:458.340000px;}
.y14_c00178{bottom:499.740000px;}
.y13_c00178{bottom:541.140000px;}
.y12_c00178{bottom:582.540000px;}
.y11_c00178{bottom:623.940000px;}
.y10_c00178{bottom:665.340000px;}
.yf_c00178{bottom:706.740000px;}
.ye_c00178{bottom:748.140000px;}
.yd_c00178{bottom:789.540000px;}
.yc_c00178{bottom:830.940000px;}
.yb_c00178{bottom:872.340000px;}
.ya_c00178{bottom:913.740000px;}
.y9_c00178{bottom:955.140000px;}
.y8_c00178{bottom:996.540000px;}
.y7_c00178{bottom:1037.940000px;}
.y6_c00178{bottom:1079.340000px;}
.y5_c00178{bottom:1120.740000px;}
.h3_c00178{height:20.520000px;}
.h5_c00178{height:47.764688px;}
.h2_c00178{height:64.546875px;}
.h4_c00178{height:65.003906px;}
.h1_c00178{height:1225.500000px;}
.h0_c00178{height:1263.000000px;}
.w2_c00178{width:30.240000px;}
.w1_c00178{width:855.000000px;}
.w0_c00178{width:892.500000px;}
.x0_c00178{left:0.000000px;}
.x1_c00178{left:18.750000px;}
.x4_c00178{left:109.439925px;}
.x3_c00178{left:128.190000px;}
.x2_c00178{left:136.440000px;}
.x5_c00178{left:151.965150px;}
.x6_c00178{left:155.706600px;}
.x8_c00178{left:660.804600px;}
.x7_c00178{left:746.789700px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls4_c00178{letter-spacing:-0.012800pt;}
.ls3_c00178{letter-spacing:0.000000pt;}
.ls1_c00178{letter-spacing:0.009760pt;}
.ls0_c00178{letter-spacing:0.012800pt;}
.ls5_c00178{letter-spacing:0.151552pt;}
.ls2_c00178{letter-spacing:3.361600pt;}
.ws0_c00178{word-spacing:-17.804800pt;}
.ws1_c00178{word-spacing:-17.801760pt;}
.ws2_c00178{word-spacing:-17.792000pt;}
.ws3_c00178{word-spacing:0.000000pt;}
._c_c00178{width:0.893067pt;}
._5_c00178{width:2.668800pt;}
._8_c00178{width:4.012800pt;}
._1_c00178{width:5.305600pt;}
._4_c00178{width:7.059200pt;}
._3_c00178{width:8.428800pt;}
._9_c00178{width:9.457333pt;}
._7_c00178{width:10.581067pt;}
._b_c00178{width:11.496533pt;}
._6_c00178{width:12.390400pt;}
._a_c00178{width:15.948800pt;}
._2_c00178{width:37.440000pt;}
._0_c00178{width:1019.274133pt;}
.fs1_c00178{font-size:47.360000pt;}
.fs0_c00178{font-size:64.000000pt;}
.y0_c00178{bottom:0.000000pt;}
.y4_c00178{bottom:3.520000pt;}
.y1_c00178{bottom:16.666667pt;}
.y2_c00178{bottom:33.653360pt;}
.y3_c00178{bottom:46.480027pt;}
.y1d_c00178{bottom:82.933360pt;}
.y1c_c00178{bottom:94.453360pt;}
.y1b_c00178{bottom:186.613333pt;}
.y1a_c00178{bottom:223.413333pt;}
.y19_c00178{bottom:260.213333pt;}
.y18_c00178{bottom:297.013333pt;}
.y17_c00178{bottom:333.813333pt;}
.y16_c00178{bottom:370.613333pt;}
.y15_c00178{bottom:407.413333pt;}
.y14_c00178{bottom:444.213333pt;}
.y13_c00178{bottom:481.013333pt;}
.y12_c00178{bottom:517.813333pt;}
.y11_c00178{bottom:554.613333pt;}
.y10_c00178{bottom:591.413333pt;}
.yf_c00178{bottom:628.213333pt;}
.ye_c00178{bottom:665.013333pt;}
.yd_c00178{bottom:701.813333pt;}
.yc_c00178{bottom:738.613333pt;}
.yb_c00178{bottom:775.413333pt;}
.ya_c00178{bottom:812.213333pt;}
.y9_c00178{bottom:849.013333pt;}
.y8_c00178{bottom:885.813333pt;}
.y7_c00178{bottom:922.613333pt;}
.y6_c00178{bottom:959.413333pt;}
.y5_c00178{bottom:996.213333pt;}
.h3_c00178{height:18.240000pt;}
.h5_c00178{height:42.457500pt;}
.h2_c00178{height:57.375000pt;}
.h4_c00178{height:57.781250pt;}
.h1_c00178{height:1089.333333pt;}
.h0_c00178{height:1122.666667pt;}
.w2_c00178{width:26.880000pt;}
.w1_c00178{width:760.000000pt;}
.w0_c00178{width:793.333333pt;}
.x0_c00178{left:0.000000pt;}
.x1_c00178{left:16.666667pt;}
.x4_c00178{left:97.279933pt;}
.x3_c00178{left:113.946667pt;}
.x2_c00178{left:121.280000pt;}
.x5_c00178{left:135.080133pt;}
.x6_c00178{left:138.405867pt;}
.x8_c00178{left:587.381867pt;}
.x7_c00178{left:663.813067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5cd85d48a9a15e82abf7f279.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c00179{letter-spacing:0.000000px;}
.ls0_c00179{letter-spacing:0.014400px;}
.ls3_c00179{letter-spacing:0.191160px;}
.ls2_c00179{letter-spacing:0.399600px;}
.ls1_c00179{letter-spacing:0.431568px;}
.ls6_c00179{letter-spacing:0.527472px;}
.ls5_c00179{letter-spacing:0.628704px;}
.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:-20.030400px;}
.ws1_c00179{word-spacing:-15.211440px;}
.ws2_c00179{word-spacing:0.000000px;}
._3_c00179{margin-left:-1.076592px;}
._1_c00179{width:1061.484000px;}
._2_c00179{width:1146.684000px;}
._0_c00179{width:2079.683700px;}
.fc1_c00179{color:transparent;}
.fc0_c00179{color:rgb(0,0,0);}
.fs1_c00179{font-size:53.280000px;}
.fs0_c00179{font-size:72.000000px;}
.y0_c00179{bottom:0.000000px;}
.y5_c00179{bottom:3.960000px;}
.y1_c00179{bottom:18.750000px;}
.y3_c00179{bottom:36.420030px;}
.y4_c00179{bottom:47.250030px;}
.y6_c00179{bottom:107.700030px;}
.y2_c00179{bottom:1174.020000px;}
.h3_c00179{height:20.520000px;}
.h4_c00179{height:47.764688px;}
.h2_c00179{height:64.546875px;}
.h1_c00179{height:1225.500000px;}
.h0_c00179{height:1263.000000px;}
.w2_c00179{width:30.240000px;}
.w1_c00179{width:855.000000px;}
.w0_c00179{width:892.500000px;}
.x0_c00179{left:0.000000px;}
.x1_c00179{left:18.750000px;}
.x2_c00179{left:109.439925px;}
.x3_c00179{left:157.739850px;}
.x5_c00179{left:272.413350px;}
.x4_c00179{left:735.510000px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls4_c00179{letter-spacing:0.000000pt;}
.ls0_c00179{letter-spacing:0.012800pt;}
.ls3_c00179{letter-spacing:0.169920pt;}
.ls2_c00179{letter-spacing:0.355200pt;}
.ls1_c00179{letter-spacing:0.383616pt;}
.ls6_c00179{letter-spacing:0.468864pt;}
.ls5_c00179{letter-spacing:0.558848pt;}
.ws0_c00179{word-spacing:-17.804800pt;}
.ws1_c00179{word-spacing:-13.521280pt;}
.ws2_c00179{word-spacing:0.000000pt;}
._3_c00179{margin-left:-0.956971pt;}
._1_c00179{width:943.541333pt;}
._2_c00179{width:1019.274667pt;}
._0_c00179{width:1848.607733pt;}
.fs1_c00179{font-size:47.360000pt;}
.fs0_c00179{font-size:64.000000pt;}
.y0_c00179{bottom:0.000000pt;}
.y5_c00179{bottom:3.520000pt;}
.y1_c00179{bottom:16.666667pt;}
.y3_c00179{bottom:32.373360pt;}
.y4_c00179{bottom:42.000027pt;}
.y6_c00179{bottom:95.733360pt;}
.y2_c00179{bottom:1043.573333pt;}
.h3_c00179{height:18.240000pt;}
.h4_c00179{height:42.457500pt;}
.h2_c00179{height:57.375000pt;}
.h1_c00179{height:1089.333333pt;}
.h0_c00179{height:1122.666667pt;}
.w2_c00179{width:26.880000pt;}
.w1_c00179{width:760.000000pt;}
.w0_c00179{width:793.333333pt;}
.x0_c00179{left:0.000000pt;}
.x1_c00179{left:16.666667pt;}
.x2_c00179{left:97.279933pt;}
.x3_c00179{left:140.213200pt;}
.x5_c00179{left:242.145200pt;}
.x4_c00179{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_cefa6390fa422deaad1d5ff1.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00180;src:url('chunks/assets/font_9ae16584ee8a7853975648ad.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.111328;font-style: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;}
.ls15_c00180{letter-spacing:0.000000px;}
.ls0_c00180{letter-spacing:0.014400px;}
.ls17_c00180{letter-spacing:0.191808px;}
.ls13_c00180{letter-spacing:0.239760px;}
.ls7_c00180{letter-spacing:0.240360px;}
.ls19_c00180{letter-spacing:0.362304px;}
.lsf_c00180{letter-spacing:0.388944px;}
.lsb_c00180{letter-spacing:0.401760px;}
.ls4_c00180{letter-spacing:0.404928px;}
.ls12_c00180{letter-spacing:0.408720px;}
.ls5_c00180{letter-spacing:0.410256px;}
.ls6_c00180{letter-spacing:0.415584px;}
.lsc_c00180{letter-spacing:0.420912px;}
.ls2_c00180{letter-spacing:0.426240px;}
.ls8_c00180{letter-spacing:0.430920px;}
.ls10_c00180{letter-spacing:0.436896px;}
.ls16_c00180{letter-spacing:0.479520px;}
.ls18_c00180{letter-spacing:0.527472px;}
.ls9_c00180{letter-spacing:0.618048px;}
.ls11_c00180{letter-spacing:0.626760px;}
.ls1a_c00180{letter-spacing:0.628704px;}
.lsa_c00180{letter-spacing:0.644016px;}
.lsd_c00180{letter-spacing:3.383160px;}
.ls14_c00180{letter-spacing:11.061960px;}
.ls1_c00180{letter-spacing:16.959360px;}
.ls3_c00180{letter-spacing:22.235760px;}
.lse_c00180{letter-spacing:45.006360px;}
.sc__c00180{text-shadow:none;}
.sc0_c00180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00180{-webkit-text-stroke:0px transparent;}
.sc0_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00180{word-spacing:-20.030400px;}
.ws4_c00180{word-spacing:-15.440544px;}
.ws5_c00180{word-spacing:-15.429888px;}
.ws6_c00180{word-spacing:-15.339312px;}
.ws2_c00180{word-spacing:-15.222096px;}
.ws3_c00180{word-spacing:-15.174144px;}
.ws1_c00180{word-spacing:-15.051600px;}
.ws7_c00180{word-spacing:-15.003648px;}
.ws8_c00180{word-spacing:0.000000px;}
._6_c00180{margin-left:-1.206900px;}
._4_c00180{width:1.930500px;}
._12_c00180{width:3.849228px;}
._13_c00180{width:5.112816px;}
._18_c00180{width:6.287040px;}
._2_c00180{width:7.437600px;}
._3_c00180{width:8.546400px;}
._16_c00180{width:9.750240px;}
._19_c00180{width:11.188800px;}
._15_c00180{width:12.680640px;}
._1_c00180{width:14.443200px;}
._a_c00180{width:16.481520px;}
._5_c00180{width:18.122400px;}
._f_c00180{width:19.614840px;}
._e_c00180{width:20.619360px;}
._7_c00180{width:21.701160px;}
._b_c00180{width:24.687180px;}
._c_c00180{width:25.768980px;}
._d_c00180{width:26.875704px;}
._17_c00180{width:27.883452px;}
._14_c00180{width:29.197440px;}
._8_c00180{width:32.412780px;}
._9_c00180{width:33.427860px;}
._11_c00180{width:44.411148px;}
._10_c00180{width:46.124016px;}
._1b_c00180{width:49.334940px;}
._1a_c00180{width:50.349600px;}
._0_c00180{width:1146.683400px;}
.fc1_c00180{color:transparent;}
.fc0_c00180{color:rgb(0,0,0);}
.fs1_c00180{font-size:53.280000px;}
.fs0_c00180{font-size:72.000000px;}
.y0_c00180{bottom:0.000000px;}
.y4_c00180{bottom:3.960000px;}
.y1_c00180{bottom:18.750000px;}
.y2_c00180{bottom:37.860030px;}
.y3_c00180{bottom:52.290030px;}
.y3d_c00180{bottom:97.980015px;}
.y3c_c00180{bottom:113.460015px;}
.y3b_c00180{bottom:128.940015px;}
.y3a_c00180{bottom:144.420000px;}
.y39_c00180{bottom:159.900000px;}
.y38_c00180{bottom:175.380000px;}
.y37_c00180{bottom:190.860000px;}
.y36_c00180{bottom:206.340000px;}
.y35_c00180{bottom:222.180000px;}
.y34_c00180{bottom:237.660000px;}
.y33_c00180{bottom:253.140000px;}
.y32_c00180{bottom:268.620000px;}
.y31_c00180{bottom:284.100000px;}
.y30_c00180{bottom:299.580000px;}
.y2f_c00180{bottom:315.060000px;}
.y2e_c00180{bottom:330.540000px;}
.y2d_c00180{bottom:346.020000px;}
.y2c_c00180{bottom:361.860000px;}
.y2b_c00180{bottom:377.340000px;}
.y2a_c00180{bottom:392.820000px;}
.y29_c00180{bottom:408.300000px;}
.y28_c00180{bottom:423.780000px;}
.y27_c00180{bottom:439.260000px;}
.y26_c00180{bottom:454.740000px;}
.y25_c00180{bottom:470.220000px;}
.y24_c00180{bottom:486.060000px;}
.y23_c00180{bottom:501.540000px;}
.y22_c00180{bottom:517.020000px;}
.y21_c00180{bottom:532.500000px;}
.y20_c00180{bottom:547.980000px;}
.y1f_c00180{bottom:563.460000px;}
.y1e_c00180{bottom:578.940000px;}
.y1d_c00180{bottom:594.420000px;}
.y1c_c00180{bottom:610.260000px;}
.y1b_c00180{bottom:625.740000px;}
.y1a_c00180{bottom:641.220000px;}
.y19_c00180{bottom:656.700000px;}
.y18_c00180{bottom:672.180000px;}
.y17_c00180{bottom:687.660000px;}
.y16_c00180{bottom:703.140000px;}
.y15_c00180{bottom:718.620000px;}
.y14_c00180{bottom:734.460000px;}
.y13_c00180{bottom:749.940000px;}
.y12_c00180{bottom:765.420000px;}
.y11_c00180{bottom:780.900000px;}
.y10_c00180{bottom:796.380000px;}
.yf_c00180{bottom:811.860000px;}
.ye_c00180{bottom:827.340000px;}
.yd_c00180{bottom:842.820000px;}
.yc_c00180{bottom:858.300000px;}
.yb_c00180{bottom:874.140000px;}
.ya_c00180{bottom:913.740000px;}
.y9_c00180{bottom:955.140000px;}
.y8_c00180{bottom:996.540000px;}
.y7_c00180{bottom:1037.940000px;}
.y6_c00180{bottom:1079.340000px;}
.y5_c00180{bottom:1120.740000px;}
.h3_c00180{height:20.520000px;}
.h4_c00180{height:47.764688px;}
.h5_c00180{height:48.623203px;}
.h2_c00180{height:64.546875px;}
.h1_c00180{height:1225.500000px;}
.h0_c00180{height:1263.000000px;}
.w2_c00180{width:30.240000px;}
.w1_c00180{width:855.000000px;}
.w0_c00180{width:892.500000px;}
.x0_c00180{left:0.000000px;}
.x1_c00180{left:18.750000px;}
.x5_c00180{left:109.439925px;}
.x3_c00180{left:128.190000px;}
.x2_c00180{left:136.440000px;}
.x6_c00180{left:141.390000px;}
.x4_c00180{left:151.965150px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls15_c00180{letter-spacing:0.000000pt;}
.ls0_c00180{letter-spacing:0.012800pt;}
.ls17_c00180{letter-spacing:0.170496pt;}
.ls13_c00180{letter-spacing:0.213120pt;}
.ls7_c00180{letter-spacing:0.213653pt;}
.ls19_c00180{letter-spacing:0.322048pt;}
.lsf_c00180{letter-spacing:0.345728pt;}
.lsb_c00180{letter-spacing:0.357120pt;}
.ls4_c00180{letter-spacing:0.359936pt;}
.ls12_c00180{letter-spacing:0.363307pt;}
.ls5_c00180{letter-spacing:0.364672pt;}
.ls6_c00180{letter-spacing:0.369408pt;}
.lsc_c00180{letter-spacing:0.374144pt;}
.ls2_c00180{letter-spacing:0.378880pt;}
.ls8_c00180{letter-spacing:0.383040pt;}
.ls10_c00180{letter-spacing:0.388352pt;}
.ls16_c00180{letter-spacing:0.426240pt;}
.ls18_c00180{letter-spacing:0.468864pt;}
.ls9_c00180{letter-spacing:0.549376pt;}
.ls11_c00180{letter-spacing:0.557120pt;}
.ls1a_c00180{letter-spacing:0.558848pt;}
.lsa_c00180{letter-spacing:0.572459pt;}
.lsd_c00180{letter-spacing:3.007253pt;}
.ls14_c00180{letter-spacing:9.832853pt;}
.ls1_c00180{letter-spacing:15.074987pt;}
.ls3_c00180{letter-spacing:19.765120pt;}
.lse_c00180{letter-spacing:40.005653pt;}
.ws0_c00180{word-spacing:-17.804800pt;}
.ws4_c00180{word-spacing:-13.724928pt;}
.ws5_c00180{word-spacing:-13.715456pt;}
.ws6_c00180{word-spacing:-13.634944pt;}
.ws2_c00180{word-spacing:-13.530752pt;}
.ws3_c00180{word-spacing:-13.488128pt;}
.ws1_c00180{word-spacing:-13.379200pt;}
.ws7_c00180{word-spacing:-13.336576pt;}
.ws8_c00180{word-spacing:0.000000pt;}
._6_c00180{margin-left:-1.072800pt;}
._4_c00180{width:1.716000pt;}
._12_c00180{width:3.421536pt;}
._13_c00180{width:4.544725pt;}
._18_c00180{width:5.588480pt;}
._2_c00180{width:6.611200pt;}
._3_c00180{width:7.596800pt;}
._16_c00180{width:8.666880pt;}
._19_c00180{width:9.945600pt;}
._15_c00180{width:11.271680pt;}
._1_c00180{width:12.838400pt;}
._a_c00180{width:14.650240pt;}
._5_c00180{width:16.108800pt;}
._f_c00180{width:17.435413pt;}
._e_c00180{width:18.328320pt;}
._7_c00180{width:19.289920pt;}
._b_c00180{width:21.944160pt;}
._c_c00180{width:22.905760pt;}
._d_c00180{width:23.889515pt;}
._17_c00180{width:24.785291pt;}
._14_c00180{width:25.953280pt;}
._8_c00180{width:28.811360pt;}
._9_c00180{width:29.713653pt;}
._11_c00180{width:39.476576pt;}
._10_c00180{width:40.999125pt;}
._1b_c00180{width:43.853280pt;}
._1a_c00180{width:44.755200pt;}
._0_c00180{width:1019.274133pt;}
.fs1_c00180{font-size:47.360000pt;}
.fs0_c00180{font-size:64.000000pt;}
.y0_c00180{bottom:0.000000pt;}
.y4_c00180{bottom:3.520000pt;}
.y1_c00180{bottom:16.666667pt;}
.y2_c00180{bottom:33.653360pt;}
.y3_c00180{bottom:46.480027pt;}
.y3d_c00180{bottom:87.093347pt;}
.y3c_c00180{bottom:100.853347pt;}
.y3b_c00180{bottom:114.613347pt;}
.y3a_c00180{bottom:128.373333pt;}
.y39_c00180{bottom:142.133333pt;}
.y38_c00180{bottom:155.893333pt;}
.y37_c00180{bottom:169.653333pt;}
.y36_c00180{bottom:183.413333pt;}
.y35_c00180{bottom:197.493333pt;}
.y34_c00180{bottom:211.253333pt;}
.y33_c00180{bottom:225.013333pt;}
.y32_c00180{bottom:238.773333pt;}
.y31_c00180{bottom:252.533333pt;}
.y30_c00180{bottom:266.293333pt;}
.y2f_c00180{bottom:280.053333pt;}
.y2e_c00180{bottom:293.813333pt;}
.y2d_c00180{bottom:307.573333pt;}
.y2c_c00180{bottom:321.653333pt;}
.y2b_c00180{bottom:335.413333pt;}
.y2a_c00180{bottom:349.173333pt;}
.y29_c00180{bottom:362.933333pt;}
.y28_c00180{bottom:376.693333pt;}
.y27_c00180{bottom:390.453333pt;}
.y26_c00180{bottom:404.213333pt;}
.y25_c00180{bottom:417.973333pt;}
.y24_c00180{bottom:432.053333pt;}
.y23_c00180{bottom:445.813333pt;}
.y22_c00180{bottom:459.573333pt;}
.y21_c00180{bottom:473.333333pt;}
.y20_c00180{bottom:487.093333pt;}
.y1f_c00180{bottom:500.853333pt;}
.y1e_c00180{bottom:514.613333pt;}
.y1d_c00180{bottom:528.373333pt;}
.y1c_c00180{bottom:542.453333pt;}
.y1b_c00180{bottom:556.213333pt;}
.y1a_c00180{bottom:569.973333pt;}
.y19_c00180{bottom:583.733333pt;}
.y18_c00180{bottom:597.493333pt;}
.y17_c00180{bottom:611.253333pt;}
.y16_c00180{bottom:625.013333pt;}
.y15_c00180{bottom:638.773333pt;}
.y14_c00180{bottom:652.853333pt;}
.y13_c00180{bottom:666.613333pt;}
.y12_c00180{bottom:680.373333pt;}
.y11_c00180{bottom:694.133333pt;}
.y10_c00180{bottom:707.893333pt;}
.yf_c00180{bottom:721.653333pt;}
.ye_c00180{bottom:735.413333pt;}
.yd_c00180{bottom:749.173333pt;}
.yc_c00180{bottom:762.933333pt;}
.yb_c00180{bottom:777.013333pt;}
.ya_c00180{bottom:812.213333pt;}
.y9_c00180{bottom:849.013333pt;}
.y8_c00180{bottom:885.813333pt;}
.y7_c00180{bottom:922.613333pt;}
.y6_c00180{bottom:959.413333pt;}
.y5_c00180{bottom:996.213333pt;}
.h3_c00180{height:18.240000pt;}
.h4_c00180{height:42.457500pt;}
.h5_c00180{height:43.220625pt;}
.h2_c00180{height:57.375000pt;}
.h1_c00180{height:1089.333333pt;}
.h0_c00180{height:1122.666667pt;}
.w2_c00180{width:26.880000pt;}
.w1_c00180{width:760.000000pt;}
.w0_c00180{width:793.333333pt;}
.x0_c00180{left:0.000000pt;}
.x1_c00180{left:16.666667pt;}
.x5_c00180{left:97.279933pt;}
.x3_c00180{left:113.946667pt;}
.x2_c00180{left:121.280000pt;}
.x6_c00180{left:125.680000pt;}
.x4_c00180{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e26129ad0b864065896c0a47.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00181;src:url('chunks/assets/font_25681fedcec1149c122f65fa.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00181;src:url('chunks/assets/font_8fc09381d4dd1f4c2cc2e0bb.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:1.104492;font-style: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;}
.ls4_c00181{letter-spacing:-0.014400px;}
.ls3_c00181{letter-spacing:0.000000px;}
.ls1_c00181{letter-spacing:0.010800px;}
.ls0_c00181{letter-spacing:0.014400px;}
.ls5_c00181{letter-spacing:0.527472px;}
.ls2_c00181{letter-spacing:2.965800px;}
.sc__c00181{text-shadow:none;}
.sc0_c00181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00181{-webkit-text-stroke:0px transparent;}
.sc0_c00181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00181{word-spacing:-20.030400px;}
.ws1_c00181{word-spacing:-20.016000px;}
.ws2_c00181{word-spacing:0.000000px;}
._8_c00181{margin-left:-1.000800px;}
._5_c00181{width:1.908000px;}
._6_c00181{width:3.780000px;}
._9_c00181{width:6.249600px;}
._3_c00181{width:18.640800px;}
._7_c00181{width:24.854400px;}
._4_c00181{width:26.136000px;}
._a_c00181{width:34.228800px;}
._1_c00181{width:1061.484000px;}
._2_c00181{width:1146.684000px;}
._0_c00181{width:2079.683700px;}
.fc1_c00181{color:transparent;}
.fc0_c00181{color:rgb(0,0,0);}
.fs1_c00181{font-size:53.280000px;}
.fs0_c00181{font-size:72.000000px;}
.y0_c00181{bottom:0.000000px;}
.y5_c00181{bottom:3.960000px;}
.y1_c00181{bottom:18.750000px;}
.y3_c00181{bottom:36.420030px;}
.y4_c00181{bottom:47.250030px;}
.y18_c00181{bottom:94.020030px;}
.y17_c00181{bottom:106.620030px;}
.y16_c00181{bottom:458.340000px;}
.y15_c00181{bottom:499.740000px;}
.y14_c00181{bottom:541.140000px;}
.y13_c00181{bottom:582.540000px;}
.y12_c00181{bottom:623.940000px;}
.y11_c00181{bottom:665.340000px;}
.y10_c00181{bottom:706.740000px;}
.yf_c00181{bottom:748.140000px;}
.ye_c00181{bottom:789.540000px;}
.yd_c00181{bottom:830.940000px;}
.yc_c00181{bottom:872.340000px;}
.yb_c00181{bottom:913.740000px;}
.ya_c00181{bottom:955.140000px;}
.y9_c00181{bottom:996.540000px;}
.y8_c00181{bottom:1037.940000px;}
.y7_c00181{bottom:1079.340000px;}
.y6_c00181{bottom:1120.740000px;}
.y2_c00181{bottom:1174.020000px;}
.h3_c00181{height:20.520000px;}
.h5_c00181{height:47.764688px;}
.h2_c00181{height:64.546875px;}
.h4_c00181{height:65.003906px;}
.h1_c00181{height:1225.500000px;}
.h0_c00181{height:1263.000000px;}
.w2_c00181{width:30.240000px;}
.w1_c00181{width:855.000000px;}
.w0_c00181{width:892.500000px;}
.x0_c00181{left:0.000000px;}
.x1_c00181{left:18.750000px;}
.x2_c00181{left:109.439925px;}
.x5_c00181{left:151.965150px;}
.x3_c00181{left:157.739850px;}
.x7_c00181{left:306.166650px;}
.x4_c00181{left:735.510000px;}
.x6_c00181{left:754.440000px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls4_c00181{letter-spacing:-0.012800pt;}
.ls3_c00181{letter-spacing:0.000000pt;}
.ls1_c00181{letter-spacing:0.009600pt;}
.ls0_c00181{letter-spacing:0.012800pt;}
.ls5_c00181{letter-spacing:0.468864pt;}
.ls2_c00181{letter-spacing:2.636267pt;}
.ws0_c00181{word-spacing:-17.804800pt;}
.ws1_c00181{word-spacing:-17.792000pt;}
.ws2_c00181{word-spacing:0.000000pt;}
._8_c00181{margin-left:-0.889600pt;}
._5_c00181{width:1.696000pt;}
._6_c00181{width:3.360000pt;}
._9_c00181{width:5.555200pt;}
._3_c00181{width:16.569600pt;}
._7_c00181{width:22.092800pt;}
._4_c00181{width:23.232000pt;}
._a_c00181{width:30.425600pt;}
._1_c00181{width:943.541333pt;}
._2_c00181{width:1019.274667pt;}
._0_c00181{width:1848.607733pt;}
.fs1_c00181{font-size:47.360000pt;}
.fs0_c00181{font-size:64.000000pt;}
.y0_c00181{bottom:0.000000pt;}
.y5_c00181{bottom:3.520000pt;}
.y1_c00181{bottom:16.666667pt;}
.y3_c00181{bottom:32.373360pt;}
.y4_c00181{bottom:42.000027pt;}
.y18_c00181{bottom:83.573360pt;}
.y17_c00181{bottom:94.773360pt;}
.y16_c00181{bottom:407.413333pt;}
.y15_c00181{bottom:444.213333pt;}
.y14_c00181{bottom:481.013333pt;}
.y13_c00181{bottom:517.813333pt;}
.y12_c00181{bottom:554.613333pt;}
.y11_c00181{bottom:591.413333pt;}
.y10_c00181{bottom:628.213333pt;}
.yf_c00181{bottom:665.013333pt;}
.ye_c00181{bottom:701.813333pt;}
.yd_c00181{bottom:738.613333pt;}
.yc_c00181{bottom:775.413333pt;}
.yb_c00181{bottom:812.213333pt;}
.ya_c00181{bottom:849.013333pt;}
.y9_c00181{bottom:885.813333pt;}
.y8_c00181{bottom:922.613333pt;}
.y7_c00181{bottom:959.413333pt;}
.y6_c00181{bottom:996.213333pt;}
.y2_c00181{bottom:1043.573333pt;}
.h3_c00181{height:18.240000pt;}
.h5_c00181{height:42.457500pt;}
.h2_c00181{height:57.375000pt;}
.h4_c00181{height:57.781250pt;}
.h1_c00181{height:1089.333333pt;}
.h0_c00181{height:1122.666667pt;}
.w2_c00181{width:26.880000pt;}
.w1_c00181{width:760.000000pt;}
.w0_c00181{width:793.333333pt;}
.x0_c00181{left:0.000000pt;}
.x1_c00181{left:16.666667pt;}
.x2_c00181{left:97.279933pt;}
.x5_c00181{left:135.080133pt;}
.x3_c00181{left:140.213200pt;}
.x7_c00181{left:272.148133pt;}
.x4_c00181{left:653.786667pt;}
.x6_c00181{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_27a2e74b6f399406fb054a0e.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00182{letter-spacing:0.000000px;}
.ls0_c00182{letter-spacing:0.014400px;}
.ls2_c00182{letter-spacing:0.527472px;}
.sc__c00182{text-shadow:none;}
.sc0_c00182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00182{-webkit-text-stroke:0px transparent;}
.sc0_c00182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00182{word-spacing:-20.030400px;}
.ws1_c00182{word-spacing:0.000000px;}
._1_c00182{margin-left:-1.012320px;}
._0_c00182{width:1146.683400px;}
.fc1_c00182{color:transparent;}
.fc0_c00182{color:rgb(0,0,0);}
.fs1_c00182{font-size:53.280000px;}
.fs0_c00182{font-size:72.000000px;}
.y0_c00182{bottom:0.000000px;}
.y4_c00182{bottom:3.960000px;}
.y1_c00182{bottom:18.750000px;}
.y2_c00182{bottom:37.860030px;}
.y3_c00182{bottom:52.290030px;}
.yb_c00182{bottom:115.260030px;}
.ya_c00182{bottom:128.220030px;}
.y9_c00182{bottom:575.340000px;}
.y8_c00182{bottom:606.660000px;}
.y7_c00182{bottom:637.620000px;}
.y6_c00182{bottom:650.580000px;}
.y5_c00182{bottom:1124.700000px;}
.h3_c00182{height:20.520000px;}
.h4_c00182{height:47.764688px;}
.h2_c00182{height:64.546875px;}
.h1_c00182{height:1225.500000px;}
.h0_c00182{height:1263.000000px;}
.w2_c00182{width:30.240000px;}
.w1_c00182{width:855.000000px;}
.w0_c00182{width:892.500000px;}
.x0_c00182{left:0.000000px;}
.x1_c00182{left:18.750000px;}
.x3_c00182{left:128.190000px;}
.x2_c00182{left:136.440000px;}
.x8_c00182{left:311.044500px;}
.x6_c00182{left:312.184950px;}
.x4_c00182{left:428.114850px;}
.x5_c00182{left:751.440000px;}
.x7_c00182{left:754.440000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls1_c00182{letter-spacing:0.000000pt;}
.ls0_c00182{letter-spacing:0.012800pt;}
.ls2_c00182{letter-spacing:0.468864pt;}
.ws0_c00182{word-spacing:-17.804800pt;}
.ws1_c00182{word-spacing:0.000000pt;}
._1_c00182{margin-left:-0.899840pt;}
._0_c00182{width:1019.274133pt;}
.fs1_c00182{font-size:47.360000pt;}
.fs0_c00182{font-size:64.000000pt;}
.y0_c00182{bottom:0.000000pt;}
.y4_c00182{bottom:3.520000pt;}
.y1_c00182{bottom:16.666667pt;}
.y2_c00182{bottom:33.653360pt;}
.y3_c00182{bottom:46.480027pt;}
.yb_c00182{bottom:102.453360pt;}
.ya_c00182{bottom:113.973360pt;}
.y9_c00182{bottom:511.413333pt;}
.y8_c00182{bottom:539.253333pt;}
.y7_c00182{bottom:566.773333pt;}
.y6_c00182{bottom:578.293333pt;}
.y5_c00182{bottom:999.733333pt;}
.h3_c00182{height:18.240000pt;}
.h4_c00182{height:42.457500pt;}
.h2_c00182{height:57.375000pt;}
.h1_c00182{height:1089.333333pt;}
.h0_c00182{height:1122.666667pt;}
.w2_c00182{width:26.880000pt;}
.w1_c00182{width:760.000000pt;}
.w0_c00182{width:793.333333pt;}
.x0_c00182{left:0.000000pt;}
.x1_c00182{left:16.666667pt;}
.x3_c00182{left:113.946667pt;}
.x2_c00182{left:121.280000pt;}
.x8_c00182{left:276.484000pt;}
.x6_c00182{left:277.497733pt;}
.x4_c00182{left:380.546533pt;}
.x5_c00182{left:667.946667pt;}
.x7_c00182{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f5df2596dad30c9d2530e180.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:0.014400px;}
.ls3_c00183{letter-spacing:0.410256px;}
.ls2_c00183{letter-spacing:0.527472px;}
.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:-20.030400px;}
.ws1_c00183{word-spacing:0.000000px;}
._3_c00183{margin-left:-1.012320px;}
._1_c00183{width:1061.484000px;}
._2_c00183{width:1146.684000px;}
._0_c00183{width:2079.683700px;}
.fc1_c00183{color:transparent;}
.fc0_c00183{color:rgb(0,0,0);}
.fs1_c00183{font-size:53.280000px;}
.fs0_c00183{font-size:72.000000px;}
.y0_c00183{bottom:0.000000px;}
.y5_c00183{bottom:3.960000px;}
.y1_c00183{bottom:18.750000px;}
.y3_c00183{bottom:36.420030px;}
.y4_c00183{bottom:47.250030px;}
.ye_c00183{bottom:110.220030px;}
.yd_c00183{bottom:141.540000px;}
.yc_c00183{bottom:154.140000px;}
.yb_c00183{bottom:583.260000px;}
.ya_c00183{bottom:614.580000px;}
.y9_c00183{bottom:645.540000px;}
.y8_c00183{bottom:658.140000px;}
.y7_c00183{bottom:1093.740000px;}
.y6_c00183{bottom:1124.700000px;}
.y2_c00183{bottom:1174.020000px;}
.h3_c00183{height:20.520000px;}
.h4_c00183{height:47.764688px;}
.h2_c00183{height:64.546875px;}
.h1_c00183{height:1225.500000px;}
.h0_c00183{height:1263.000000px;}
.w2_c00183{width:30.240000px;}
.w1_c00183{width:855.000000px;}
.w0_c00183{width:892.500000px;}
.x0_c00183{left:0.000000px;}
.x1_c00183{left:18.750000px;}
.x2_c00183{left:109.439925px;}
.x3_c00183{left:157.739850px;}
.x9_c00183{left:301.671000px;}
.x7_c00183{left:309.172500px;}
.x5_c00183{left:428.114850px;}
.x4_c00183{left:735.510000px;}
.x6_c00183{left:751.440000px;}
.x8_c00183{left:754.440000px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls1_c00183{letter-spacing:0.000000pt;}
.ls0_c00183{letter-spacing:0.012800pt;}
.ls3_c00183{letter-spacing:0.364672pt;}
.ls2_c00183{letter-spacing:0.468864pt;}
.ws0_c00183{word-spacing:-17.804800pt;}
.ws1_c00183{word-spacing:0.000000pt;}
._3_c00183{margin-left:-0.899840pt;}
._1_c00183{width:943.541333pt;}
._2_c00183{width:1019.274667pt;}
._0_c00183{width:1848.607733pt;}
.fs1_c00183{font-size:47.360000pt;}
.fs0_c00183{font-size:64.000000pt;}
.y0_c00183{bottom:0.000000pt;}
.y5_c00183{bottom:3.520000pt;}
.y1_c00183{bottom:16.666667pt;}
.y3_c00183{bottom:32.373360pt;}
.y4_c00183{bottom:42.000027pt;}
.ye_c00183{bottom:97.973360pt;}
.yd_c00183{bottom:125.813333pt;}
.yc_c00183{bottom:137.013333pt;}
.yb_c00183{bottom:518.453333pt;}
.ya_c00183{bottom:546.293333pt;}
.y9_c00183{bottom:573.813333pt;}
.y8_c00183{bottom:585.013333pt;}
.y7_c00183{bottom:972.213333pt;}
.y6_c00183{bottom:999.733333pt;}
.y2_c00183{bottom:1043.573333pt;}
.h3_c00183{height:18.240000pt;}
.h4_c00183{height:42.457500pt;}
.h2_c00183{height:57.375000pt;}
.h1_c00183{height:1089.333333pt;}
.h0_c00183{height:1122.666667pt;}
.w2_c00183{width:26.880000pt;}
.w1_c00183{width:760.000000pt;}
.w0_c00183{width:793.333333pt;}
.x0_c00183{left:0.000000pt;}
.x1_c00183{left:16.666667pt;}
.x2_c00183{left:97.279933pt;}
.x3_c00183{left:140.213200pt;}
.x9_c00183{left:268.152000pt;}
.x7_c00183{left:274.820000pt;}
.x5_c00183{left:380.546533pt;}
.x4_c00183{left:653.786667pt;}
.x6_c00183{left:667.946667pt;}
.x8_c00183{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_079e49848c241dfe666fb9a2.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00184;src:url('chunks/assets/font_9e33acad5202442e582427d0.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.104492;font-style: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;}
.ls1_c00184{letter-spacing:0.000000px;}
.ls0_c00184{letter-spacing:0.014400px;}
.ls4_c00184{letter-spacing:0.191808px;}
.ls2_c00184{letter-spacing:0.628704px;}
.ls3_c00184{letter-spacing:0.836496px;}
.sc__c00184{text-shadow:none;}
.sc0_c00184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00184{-webkit-text-stroke:0px transparent;}
.sc0_c00184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00184{word-spacing:-20.030400px;}
.ws1_c00184{word-spacing:-15.648336px;}
.ws2_c00184{word-spacing:0.000000px;}
._1_c00184{margin-left:-1.172160px;}
._2_c00184{width:1.031016px;}
._0_c00184{width:1146.683400px;}
.fc1_c00184{color:transparent;}
.fc0_c00184{color:rgb(0,0,0);}
.fs1_c00184{font-size:53.280000px;}
.fs0_c00184{font-size:72.000000px;}
.y0_c00184{bottom:0.000000px;}
.y4_c00184{bottom:3.960000px;}
.y1_c00184{bottom:18.750000px;}
.y2_c00184{bottom:37.860030px;}
.y3_c00184{bottom:52.290030px;}
.yd_c00184{bottom:104.460015px;}
.yc_c00184{bottom:135.420000px;}
.yb_c00184{bottom:166.380000px;}
.ya_c00184{bottom:179.340000px;}
.y9_c00184{bottom:608.460000px;}
.y8_c00184{bottom:639.420000px;}
.y7_c00184{bottom:670.740000px;}
.y6_c00184{bottom:683.340000px;}
.y5_c00184{bottom:1124.700000px;}
.h3_c00184{height:20.520000px;}
.h5_c00184{height:47.634609px;}
.h4_c00184{height:47.764688px;}
.h2_c00184{height:64.546875px;}
.h1_c00184{height:1225.500000px;}
.h0_c00184{height:1263.000000px;}
.w2_c00184{width:30.240000px;}
.w1_c00184{width:855.000000px;}
.w0_c00184{width:892.500000px;}
.x0_c00184{left:0.000000px;}
.x1_c00184{left:18.750000px;}
.x3_c00184{left:128.190000px;}
.x2_c00184{left:136.440000px;}
.x6_c00184{left:266.767500px;}
.x7_c00184{left:274.229400px;}
.x4_c00184{left:428.114850px;}
.x5_c00184{left:754.440000px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls1_c00184{letter-spacing:0.000000pt;}
.ls0_c00184{letter-spacing:0.012800pt;}
.ls4_c00184{letter-spacing:0.170496pt;}
.ls2_c00184{letter-spacing:0.558848pt;}
.ls3_c00184{letter-spacing:0.743552pt;}
.ws0_c00184{word-spacing:-17.804800pt;}
.ws1_c00184{word-spacing:-13.909632pt;}
.ws2_c00184{word-spacing:0.000000pt;}
._1_c00184{margin-left:-1.041920pt;}
._2_c00184{width:0.916459pt;}
._0_c00184{width:1019.274133pt;}
.fs1_c00184{font-size:47.360000pt;}
.fs0_c00184{font-size:64.000000pt;}
.y0_c00184{bottom:0.000000pt;}
.y4_c00184{bottom:3.520000pt;}
.y1_c00184{bottom:16.666667pt;}
.y2_c00184{bottom:33.653360pt;}
.y3_c00184{bottom:46.480027pt;}
.yd_c00184{bottom:92.853347pt;}
.yc_c00184{bottom:120.373333pt;}
.yb_c00184{bottom:147.893333pt;}
.ya_c00184{bottom:159.413333pt;}
.y9_c00184{bottom:540.853333pt;}
.y8_c00184{bottom:568.373333pt;}
.y7_c00184{bottom:596.213333pt;}
.y6_c00184{bottom:607.413333pt;}
.y5_c00184{bottom:999.733333pt;}
.h3_c00184{height:18.240000pt;}
.h5_c00184{height:42.341875pt;}
.h4_c00184{height:42.457500pt;}
.h2_c00184{height:57.375000pt;}
.h1_c00184{height:1089.333333pt;}
.h0_c00184{height:1122.666667pt;}
.w2_c00184{width:26.880000pt;}
.w1_c00184{width:760.000000pt;}
.w0_c00184{width:793.333333pt;}
.x0_c00184{left:0.000000pt;}
.x1_c00184{left:16.666667pt;}
.x3_c00184{left:113.946667pt;}
.x2_c00184{left:121.280000pt;}
.x6_c00184{left:237.126667pt;}
.x7_c00184{left:243.759467pt;}
.x4_c00184{left:380.546533pt;}
.x5_c00184{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_96c360df0b78dace6011bd74.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls1_c00185{letter-spacing:0.000000px;}
.ls0_c00185{letter-spacing:0.014400px;}
.ls4_c00185{letter-spacing:0.362304px;}
.ls3_c00185{letter-spacing:0.431568px;}
.ls2_c00185{letter-spacing:0.479520px;}
.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:-20.030400px;}
.ws1_c00185{word-spacing:0.000000px;}
._3_c00185{margin-left:-1.225440px;}
._1_c00185{width:1061.484000px;}
._2_c00185{width:1146.684000px;}
._0_c00185{width:2079.683700px;}
.fc1_c00185{color:transparent;}
.fc0_c00185{color:rgb(0,0,0);}
.fs1_c00185{font-size:53.280000px;}
.fs0_c00185{font-size:72.000000px;}
.y0_c00185{bottom:0.000000px;}
.y5_c00185{bottom:3.960000px;}
.y1_c00185{bottom:18.750000px;}
.y3_c00185{bottom:36.420030px;}
.y4_c00185{bottom:47.250030px;}
.yc_c00185{bottom:145.500000px;}
.yb_c00185{bottom:158.100000px;}
.ya_c00185{bottom:614.580000px;}
.y9_c00185{bottom:645.540000px;}
.y8_c00185{bottom:676.500000px;}
.y7_c00185{bottom:689.460000px;}
.y6_c00185{bottom:1124.700000px;}
.y2_c00185{bottom:1174.020000px;}
.h3_c00185{height:20.520000px;}
.h4_c00185{height:47.764688px;}
.h2_c00185{height:64.546875px;}
.h1_c00185{height:1225.500000px;}
.h0_c00185{height:1263.000000px;}
.w2_c00185{width:30.240000px;}
.w1_c00185{width:855.000000px;}
.w0_c00185{width:892.500000px;}
.x0_c00185{left:0.000000px;}
.x1_c00185{left:18.750000px;}
.x2_c00185{left:109.439925px;}
.x9_c00185{left:129.460320px;}
.x3_c00185{left:157.739850px;}
.x7_c00185{left:306.539100px;}
.x5_c00185{left:428.114850px;}
.x4_c00185{left:735.510000px;}
.x8_c00185{left:751.440000px;}
.x6_c00185{left:754.440000px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls1_c00185{letter-spacing:0.000000pt;}
.ls0_c00185{letter-spacing:0.012800pt;}
.ls4_c00185{letter-spacing:0.322048pt;}
.ls3_c00185{letter-spacing:0.383616pt;}
.ls2_c00185{letter-spacing:0.426240pt;}
.ws0_c00185{word-spacing:-17.804800pt;}
.ws1_c00185{word-spacing:0.000000pt;}
._3_c00185{margin-left:-1.089280pt;}
._1_c00185{width:943.541333pt;}
._2_c00185{width:1019.274667pt;}
._0_c00185{width:1848.607733pt;}
.fs1_c00185{font-size:47.360000pt;}
.fs0_c00185{font-size:64.000000pt;}
.y0_c00185{bottom:0.000000pt;}
.y5_c00185{bottom:3.520000pt;}
.y1_c00185{bottom:16.666667pt;}
.y3_c00185{bottom:32.373360pt;}
.y4_c00185{bottom:42.000027pt;}
.yc_c00185{bottom:129.333333pt;}
.yb_c00185{bottom:140.533333pt;}
.ya_c00185{bottom:546.293333pt;}
.y9_c00185{bottom:573.813333pt;}
.y8_c00185{bottom:601.333333pt;}
.y7_c00185{bottom:612.853333pt;}
.y6_c00185{bottom:999.733333pt;}
.y2_c00185{bottom:1043.573333pt;}
.h3_c00185{height:18.240000pt;}
.h4_c00185{height:42.457500pt;}
.h2_c00185{height:57.375000pt;}
.h1_c00185{height:1089.333333pt;}
.h0_c00185{height:1122.666667pt;}
.w2_c00185{width:26.880000pt;}
.w1_c00185{width:760.000000pt;}
.w0_c00185{width:793.333333pt;}
.x0_c00185{left:0.000000pt;}
.x1_c00185{left:16.666667pt;}
.x2_c00185{left:97.279933pt;}
.x9_c00185{left:115.075840pt;}
.x3_c00185{left:140.213200pt;}
.x7_c00185{left:272.479200pt;}
.x5_c00185{left:380.546533pt;}
.x4_c00185{left:653.786667pt;}
.x8_c00185{left:667.946667pt;}
.x6_c00185{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e8fdf6896a2c06ccdc351839.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.ls1_c00186{letter-spacing:0.000000px;}
.ls0_c00186{letter-spacing:0.014400px;}
.ls2_c00186{letter-spacing:0.479520px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00186{word-spacing:-20.030400px;}
.ws1_c00186{word-spacing:0.000000px;}
._1_c00186{margin-left:-1.172160px;}
._0_c00186{width:1146.683400px;}
.fc1_c00186{color:transparent;}
.fc0_c00186{color:rgb(0,0,0);}
.fs1_c00186{font-size:53.280000px;}
.fs0_c00186{font-size:72.000000px;}
.y0_c00186{bottom:0.000000px;}
.y4_c00186{bottom:3.960000px;}
.y1_c00186{bottom:18.750000px;}
.y2_c00186{bottom:37.860030px;}
.y3_c00186{bottom:52.290030px;}
.ya_c00186{bottom:99.420015px;}
.y9_c00186{bottom:112.380015px;}
.y8_c00186{bottom:433.500000px;}
.y7_c00186{bottom:446.460000px;}
.y6_c00186{bottom:803.580000px;}
.y5_c00186{bottom:816.540000px;}
.h3_c00186{height:20.520000px;}
.h4_c00186{height:47.764688px;}
.h2_c00186{height:64.546875px;}
.h1_c00186{height:1225.500000px;}
.h0_c00186{height:1263.000000px;}
.w2_c00186{width:30.240000px;}
.w1_c00186{width:855.000000px;}
.w0_c00186{width:892.500000px;}
.x0_c00186{left:0.000000px;}
.x1_c00186{left:18.750000px;}
.x3_c00186{left:128.190000px;}
.x2_c00186{left:136.440000px;}
.x5_c00186{left:195.477150px;}
.x6_c00186{left:268.649400px;}
.x7_c00186{left:270.524700px;}
.x4_c00186{left:754.440000px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls1_c00186{letter-spacing:0.000000pt;}
.ls0_c00186{letter-spacing:0.012800pt;}
.ls2_c00186{letter-spacing:0.426240pt;}
.ws0_c00186{word-spacing:-17.804800pt;}
.ws1_c00186{word-spacing:0.000000pt;}
._1_c00186{margin-left:-1.041920pt;}
._0_c00186{width:1019.274133pt;}
.fs1_c00186{font-size:47.360000pt;}
.fs0_c00186{font-size:64.000000pt;}
.y0_c00186{bottom:0.000000pt;}
.y4_c00186{bottom:3.520000pt;}
.y1_c00186{bottom:16.666667pt;}
.y2_c00186{bottom:33.653360pt;}
.y3_c00186{bottom:46.480027pt;}
.ya_c00186{bottom:88.373347pt;}
.y9_c00186{bottom:99.893347pt;}
.y8_c00186{bottom:385.333333pt;}
.y7_c00186{bottom:396.853333pt;}
.y6_c00186{bottom:714.293333pt;}
.y5_c00186{bottom:725.813333pt;}
.h3_c00186{height:18.240000pt;}
.h4_c00186{height:42.457500pt;}
.h2_c00186{height:57.375000pt;}
.h1_c00186{height:1089.333333pt;}
.h0_c00186{height:1122.666667pt;}
.w2_c00186{width:26.880000pt;}
.w1_c00186{width:760.000000pt;}
.w0_c00186{width:793.333333pt;}
.x0_c00186{left:0.000000pt;}
.x1_c00186{left:16.666667pt;}
.x3_c00186{left:113.946667pt;}
.x2_c00186{left:121.280000pt;}
.x5_c00186{left:173.757467pt;}
.x6_c00186{left:238.799467pt;}
.x7_c00186{left:240.466400pt;}
.x4_c00186{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1c5b4a8139ba6125e61f37a6.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00187{letter-spacing:0.000000px;}
.ls0_c00187{letter-spacing:0.014400px;}
.ls1_c00187{letter-spacing:0.191160px;}
.ls2_c00187{letter-spacing:0.240360px;}
.ls5_c00187{letter-spacing:0.410256px;}
.ls4_c00187{letter-spacing:0.479520px;}
.ls6_c00187{letter-spacing:0.527472px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00187{word-spacing:-20.030400px;}
.ws1_c00187{word-spacing:0.000000px;}
._3_c00187{margin-left:-1.225440px;}
._1_c00187{width:1061.484000px;}
._2_c00187{width:1146.684000px;}
._0_c00187{width:2079.683700px;}
.fc1_c00187{color:transparent;}
.fc0_c00187{color:rgb(0,0,0);}
.fs1_c00187{font-size:53.280000px;}
.fs0_c00187{font-size:72.000000px;}
.y0_c00187{bottom:0.000000px;}
.y5_c00187{bottom:3.960000px;}
.y1_c00187{bottom:18.750000px;}
.y3_c00187{bottom:36.420030px;}
.y4_c00187{bottom:47.250030px;}
.yb_c00187{bottom:113.100030px;}
.ya_c00187{bottom:125.700030px;}
.y9_c00187{bottom:713.580000px;}
.y8_c00187{bottom:744.540000px;}
.y7_c00187{bottom:1093.740000px;}
.y6_c00187{bottom:1124.700000px;}
.y2_c00187{bottom:1174.020000px;}
.h3_c00187{height:20.520000px;}
.h4_c00187{height:47.764688px;}
.h2_c00187{height:64.546875px;}
.h1_c00187{height:1225.500000px;}
.h0_c00187{height:1263.000000px;}
.w2_c00187{width:30.240000px;}
.w1_c00187{width:855.000000px;}
.w0_c00187{width:892.500000px;}
.x0_c00187{left:0.000000px;}
.x1_c00187{left:18.750000px;}
.x2_c00187{left:109.439925px;}
.x3_c00187{left:157.739850px;}
.x6_c00187{left:281.032050px;}
.x8_c00187{left:300.547050px;}
.x5_c00187{left:428.114850px;}
.x4_c00187{left:735.510000px;}
.x7_c00187{left:751.440000px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls3_c00187{letter-spacing:0.000000pt;}
.ls0_c00187{letter-spacing:0.012800pt;}
.ls1_c00187{letter-spacing:0.169920pt;}
.ls2_c00187{letter-spacing:0.213653pt;}
.ls5_c00187{letter-spacing:0.364672pt;}
.ls4_c00187{letter-spacing:0.426240pt;}
.ls6_c00187{letter-spacing:0.468864pt;}
.ws0_c00187{word-spacing:-17.804800pt;}
.ws1_c00187{word-spacing:0.000000pt;}
._3_c00187{margin-left:-1.089280pt;}
._1_c00187{width:943.541333pt;}
._2_c00187{width:1019.274667pt;}
._0_c00187{width:1848.607733pt;}
.fs1_c00187{font-size:47.360000pt;}
.fs0_c00187{font-size:64.000000pt;}
.y0_c00187{bottom:0.000000pt;}
.y5_c00187{bottom:3.520000pt;}
.y1_c00187{bottom:16.666667pt;}
.y3_c00187{bottom:32.373360pt;}
.y4_c00187{bottom:42.000027pt;}
.yb_c00187{bottom:100.533360pt;}
.ya_c00187{bottom:111.733360pt;}
.y9_c00187{bottom:634.293333pt;}
.y8_c00187{bottom:661.813333pt;}
.y7_c00187{bottom:972.213333pt;}
.y6_c00187{bottom:999.733333pt;}
.y2_c00187{bottom:1043.573333pt;}
.h3_c00187{height:18.240000pt;}
.h4_c00187{height:42.457500pt;}
.h2_c00187{height:57.375000pt;}
.h1_c00187{height:1089.333333pt;}
.h0_c00187{height:1122.666667pt;}
.w2_c00187{width:26.880000pt;}
.w1_c00187{width:760.000000pt;}
.w0_c00187{width:793.333333pt;}
.x0_c00187{left:0.000000pt;}
.x1_c00187{left:16.666667pt;}
.x2_c00187{left:97.279933pt;}
.x3_c00187{left:140.213200pt;}
.x6_c00187{left:249.806267pt;}
.x8_c00187{left:267.152933pt;}
.x5_c00187{left:380.546533pt;}
.x4_c00187{left:653.786667pt;}
.x7_c00187{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3736c121365a7e569970a96b.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.ls2_c00188{letter-spacing:0.000000px;}
.ls0_c00188{letter-spacing:0.014400px;}
.ls1_c00188{letter-spacing:0.191160px;}
.ls4_c00188{letter-spacing:0.479520px;}
.ls3_c00188{letter-spacing:0.527472px;}
.sc__c00188{text-shadow:none;}
.sc0_c00188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00188{-webkit-text-stroke:0px transparent;}
.sc0_c00188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00188{word-spacing:-20.030400px;}
.ws1_c00188{word-spacing:0.000000px;}
._1_c00188{margin-left:-1.012320px;}
._0_c00188{width:1146.683400px;}
.fc1_c00188{color:transparent;}
.fc0_c00188{color:rgb(0,0,0);}
.fs1_c00188{font-size:53.280000px;}
.fs0_c00188{font-size:72.000000px;}
.y0_c00188{bottom:0.000000px;}
.y4_c00188{bottom:3.960000px;}
.y1_c00188{bottom:18.750000px;}
.y2_c00188{bottom:37.860030px;}
.y3_c00188{bottom:52.290030px;}
.y8_c00188{bottom:105.540030px;}
.y7_c00188{bottom:118.140030px;}
.y6_c00188{bottom:769.740000px;}
.y5_c00188{bottom:800.700000px;}
.h3_c00188{height:20.520000px;}
.h4_c00188{height:47.764688px;}
.h2_c00188{height:64.546875px;}
.h1_c00188{height:1225.500000px;}
.h0_c00188{height:1263.000000px;}
.w2_c00188{width:30.240000px;}
.w1_c00188{width:855.000000px;}
.w0_c00188{width:892.500000px;}
.x0_c00188{left:0.000000px;}
.x1_c00188{left:18.750000px;}
.x3_c00188{left:128.190000px;}
.x2_c00188{left:136.440000px;}
.x4_c00188{left:276.160800px;}
.x7_c00188{left:312.923250px;}
.x5_c00188{left:428.114850px;}
.x6_c00188{left:751.440000px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls2_c00188{letter-spacing:0.000000pt;}
.ls0_c00188{letter-spacing:0.012800pt;}
.ls1_c00188{letter-spacing:0.169920pt;}
.ls4_c00188{letter-spacing:0.426240pt;}
.ls3_c00188{letter-spacing:0.468864pt;}
.ws0_c00188{word-spacing:-17.804800pt;}
.ws1_c00188{word-spacing:0.000000pt;}
._1_c00188{margin-left:-0.899840pt;}
._0_c00188{width:1019.274133pt;}
.fs1_c00188{font-size:47.360000pt;}
.fs0_c00188{font-size:64.000000pt;}
.y0_c00188{bottom:0.000000pt;}
.y4_c00188{bottom:3.520000pt;}
.y1_c00188{bottom:16.666667pt;}
.y2_c00188{bottom:33.653360pt;}
.y3_c00188{bottom:46.480027pt;}
.y8_c00188{bottom:93.813360pt;}
.y7_c00188{bottom:105.013360pt;}
.y6_c00188{bottom:684.213333pt;}
.y5_c00188{bottom:711.733333pt;}
.h3_c00188{height:18.240000pt;}
.h4_c00188{height:42.457500pt;}
.h2_c00188{height:57.375000pt;}
.h1_c00188{height:1089.333333pt;}
.h0_c00188{height:1122.666667pt;}
.w2_c00188{width:26.880000pt;}
.w1_c00188{width:760.000000pt;}
.w0_c00188{width:793.333333pt;}
.x0_c00188{left:0.000000pt;}
.x1_c00188{left:16.666667pt;}
.x3_c00188{left:113.946667pt;}
.x2_c00188{left:121.280000pt;}
.x4_c00188{left:245.476267pt;}
.x7_c00188{left:278.154000pt;}
.x5_c00188{left:380.546533pt;}
.x6_c00188{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bee535fe63b0bf349185d544.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00189;src:url('chunks/assets/font_fa5102a9475c2156129db4bb.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00189;src:url('chunks/assets/font_3cef68432845204c17adba06.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:1.104492;font-style: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;}
.v1_c00189{vertical-align:33.120000px;}
.ls6_c00189{letter-spacing:-0.014400px;}
.ls5_c00189{letter-spacing:0.000000px;}
.ls3_c00189{letter-spacing:0.000600px;}
.ls1_c00189{letter-spacing:0.010980px;}
.ls0_c00189{letter-spacing:0.014400px;}
.ls2_c00189{letter-spacing:0.112800px;}
.ls4_c00189{letter-spacing:0.274080px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00189{word-spacing:-20.030400px;}
.ws1_c00189{word-spacing:-20.016000px;}
.ws2_c00189{word-spacing:0.000000px;}
._f_c00189{width:1.530300px;}
._c_c00189{width:2.635200px;}
._4_c00189{width:3.657600px;}
._3_c00189{width:5.047200px;}
._a_c00189{width:6.501600px;}
._7_c00189{width:7.927200px;}
._9_c00189{width:9.741600px;}
._b_c00189{width:11.210400px;}
._d_c00189{width:13.645080px;}
._5_c00189{width:15.363720px;}
._8_c00189{width:16.632000px;}
._6_c00189{width:21.432600px;}
._e_c00189{width:30.283200px;}
._1_c00189{width:1061.484000px;}
._2_c00189{width:1146.684000px;}
._0_c00189{width:2079.683700px;}
.fc1_c00189{color:transparent;}
.fc0_c00189{color:rgb(0,0,0);}
.fs2_c00189{font-size:47.520000px;}
.fs1_c00189{font-size:53.280000px;}
.fs0_c00189{font-size:72.000000px;}
.y0_c00189{bottom:0.000000px;}
.y5_c00189{bottom:3.960000px;}
.y1_c00189{bottom:18.750000px;}
.y3_c00189{bottom:36.420030px;}
.y4_c00189{bottom:47.250030px;}
.y1d_c00189{bottom:145.140000px;}
.y1c_c00189{bottom:204.540000px;}
.y1b_c00189{bottom:245.940000px;}
.y1a_c00189{bottom:287.340000px;}
.y19_c00189{bottom:328.740000px;}
.y18_c00189{bottom:370.140000px;}
.y17_c00189{bottom:411.540000px;}
.y16_c00189{bottom:452.940000px;}
.y15_c00189{bottom:494.340000px;}
.y14_c00189{bottom:535.740000px;}
.y13_c00189{bottom:577.140000px;}
.y12_c00189{bottom:618.540000px;}
.y11_c00189{bottom:659.940000px;}
.y10_c00189{bottom:701.340000px;}
.yf_c00189{bottom:742.740000px;}
.ye_c00189{bottom:784.140000px;}
.yd_c00189{bottom:825.540000px;}
.yc_c00189{bottom:866.940000px;}
.yb_c00189{bottom:910.860000px;}
.ya_c00189{bottom:934.980000px;}
.y9_c00189{bottom:996.540000px;}
.y8_c00189{bottom:1037.940000px;}
.y7_c00189{bottom:1079.340000px;}
.y6_c00189{bottom:1120.740000px;}
.y2_c00189{bottom:1174.020000px;}
.h3_c00189{height:20.520000px;}
.h2_c00189{height:64.546875px;}
.h4_c00189{height:65.003906px;}
.h5_c00189{height:75.604922px;}
.h1_c00189{height:1225.500000px;}
.h0_c00189{height:1263.000000px;}
.w2_c00189{width:30.240000px;}
.w1_c00189{width:855.000000px;}
.w0_c00189{width:892.500000px;}
.x0_c00189{left:0.000000px;}
.x1_c00189{left:18.750000px;}
.x2_c00189{left:109.439925px;}
.x5_c00189{left:151.965150px;}
.x3_c00189{left:157.739850px;}
.x4_c00189{left:735.510000px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.v1_c00189{vertical-align:29.440000pt;}
.ls6_c00189{letter-spacing:-0.012800pt;}
.ls5_c00189{letter-spacing:0.000000pt;}
.ls3_c00189{letter-spacing:0.000533pt;}
.ls1_c00189{letter-spacing:0.009760pt;}
.ls0_c00189{letter-spacing:0.012800pt;}
.ls2_c00189{letter-spacing:0.100267pt;}
.ls4_c00189{letter-spacing:0.243627pt;}
.ws0_c00189{word-spacing:-17.804800pt;}
.ws1_c00189{word-spacing:-17.792000pt;}
.ws2_c00189{word-spacing:0.000000pt;}
._f_c00189{width:1.360267pt;}
._c_c00189{width:2.342400pt;}
._4_c00189{width:3.251200pt;}
._3_c00189{width:4.486400pt;}
._a_c00189{width:5.779200pt;}
._7_c00189{width:7.046400pt;}
._9_c00189{width:8.659200pt;}
._b_c00189{width:9.964800pt;}
._d_c00189{width:12.128960pt;}
._5_c00189{width:13.656640pt;}
._8_c00189{width:14.784000pt;}
._6_c00189{width:19.051200pt;}
._e_c00189{width:26.918400pt;}
._1_c00189{width:943.541333pt;}
._2_c00189{width:1019.274667pt;}
._0_c00189{width:1848.607733pt;}
.fs2_c00189{font-size:42.240000pt;}
.fs1_c00189{font-size:47.360000pt;}
.fs0_c00189{font-size:64.000000pt;}
.y0_c00189{bottom:0.000000pt;}
.y5_c00189{bottom:3.520000pt;}
.y1_c00189{bottom:16.666667pt;}
.y3_c00189{bottom:32.373360pt;}
.y4_c00189{bottom:42.000027pt;}
.y1d_c00189{bottom:129.013333pt;}
.y1c_c00189{bottom:181.813333pt;}
.y1b_c00189{bottom:218.613333pt;}
.y1a_c00189{bottom:255.413333pt;}
.y19_c00189{bottom:292.213333pt;}
.y18_c00189{bottom:329.013333pt;}
.y17_c00189{bottom:365.813333pt;}
.y16_c00189{bottom:402.613333pt;}
.y15_c00189{bottom:439.413333pt;}
.y14_c00189{bottom:476.213333pt;}
.y13_c00189{bottom:513.013333pt;}
.y12_c00189{bottom:549.813333pt;}
.y11_c00189{bottom:586.613333pt;}
.y10_c00189{bottom:623.413333pt;}
.yf_c00189{bottom:660.213333pt;}
.ye_c00189{bottom:697.013333pt;}
.yd_c00189{bottom:733.813333pt;}
.yc_c00189{bottom:770.613333pt;}
.yb_c00189{bottom:809.653333pt;}
.ya_c00189{bottom:831.093333pt;}
.y9_c00189{bottom:885.813333pt;}
.y8_c00189{bottom:922.613333pt;}
.y7_c00189{bottom:959.413333pt;}
.y6_c00189{bottom:996.213333pt;}
.y2_c00189{bottom:1043.573333pt;}
.h3_c00189{height:18.240000pt;}
.h2_c00189{height:57.375000pt;}
.h4_c00189{height:57.781250pt;}
.h5_c00189{height:67.204375pt;}
.h1_c00189{height:1089.333333pt;}
.h0_c00189{height:1122.666667pt;}
.w2_c00189{width:26.880000pt;}
.w1_c00189{width:760.000000pt;}
.w0_c00189{width:793.333333pt;}
.x0_c00189{left:0.000000pt;}
.x1_c00189{left:16.666667pt;}
.x2_c00189{left:97.279933pt;}
.x5_c00189{left:135.080133pt;}
.x3_c00189{left:140.213200pt;}
.x4_c00189{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f69fe5985c46738f69ad230d.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00190;src:url('chunks/assets/font_0f5b354310a57c497bf1d719.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00190;src:url('chunks/assets/font_2534853e60038dd245a76364.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:1.104492;font-style: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;}
.ls7_c00190{letter-spacing:-0.014400px;}
.ls5_c00190{letter-spacing:0.000000px;}
.ls0_c00190{letter-spacing:0.014400px;}
.lsc_c00190{letter-spacing:0.170496px;}
.ls8_c00190{letter-spacing:0.239760px;}
.ls6_c00190{letter-spacing:0.362304px;}
.ls9_c00190{letter-spacing:0.410256px;}
.ls1_c00190{letter-spacing:0.431568px;}
.lsa_c00190{letter-spacing:0.548784px;}
.lsb_c00190{letter-spacing:0.628704px;}
.ls4_c00190{letter-spacing:13.947360px;}
.ls3_c00190{letter-spacing:13.949160px;}
.ls2_c00190{letter-spacing:16.959360px;}
.sc__c00190{text-shadow:none;}
.sc0_c00190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00190{-webkit-text-stroke:0px transparent;}
.sc0_c00190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00190{word-spacing:-20.030400px;}
.ws2_c00190{word-spacing:-15.360624px;}
.ws1_c00190{word-spacing:-15.051600px;}
.ws3_c00190{word-spacing:0.000000px;}
._5_c00190{margin-left:-1.225440px;}
._7_c00190{width:1.407900px;}
._6_c00190{width:2.520000px;}
._2_c00190{width:4.528800px;}
._9_c00190{width:5.579100px;}
._a_c00190{width:7.286400px;}
._3_c00190{width:8.611200px;}
._4_c00190{width:10.519200px;}
._c_c00190{width:12.399876px;}
._b_c00190{width:13.711500px;}
._1_c00190{width:21.801600px;}
._8_c00190{width:27.568800px;}
._0_c00190{width:1146.683400px;}
.fc1_c00190{color:transparent;}
.fc0_c00190{color:rgb(0,0,0);}
.fs1_c00190{font-size:53.280000px;}
.fs0_c00190{font-size:72.000000px;}
.y0_c00190{bottom:0.000000px;}
.y4_c00190{bottom:3.960000px;}
.y1_c00190{bottom:18.750000px;}
.y2_c00190{bottom:37.860030px;}
.y3_c00190{bottom:52.290030px;}
.y16_c00190{bottom:114.540030px;}
.y15_c00190{bottom:130.020030px;}
.y14_c00190{bottom:169.620000px;}
.y13_c00190{bottom:211.020000px;}
.y12_c00190{bottom:252.420000px;}
.y11_c00190{bottom:293.820000px;}
.y10_c00190{bottom:335.220000px;}
.yf_c00190{bottom:376.620000px;}
.ye_c00190{bottom:418.020000px;}
.yd_c00190{bottom:462.300000px;}
.yc_c00190{bottom:517.380000px;}
.yb_c00190{bottom:529.980000px;}
.ya_c00190{bottom:908.700000px;}
.y9_c00190{bottom:950.100000px;}
.y8_c00190{bottom:991.500000px;}
.y7_c00190{bottom:1032.900000px;}
.y6_c00190{bottom:1074.300000px;}
.y5_c00190{bottom:1118.580000px;}
.h3_c00190{height:20.520000px;}
.h5_c00190{height:47.764688px;}
.h2_c00190{height:64.546875px;}
.h4_c00190{height:65.003906px;}
.h1_c00190{height:1225.500000px;}
.h0_c00190{height:1263.000000px;}
.w2_c00190{width:30.240000px;}
.w1_c00190{width:855.000000px;}
.w0_c00190{width:892.500000px;}
.x0_c00190{left:0.000000px;}
.x1_c00190{left:18.750000px;}
.x4_c00190{left:109.439925px;}
.x3_c00190{left:128.190000px;}
.x2_c00190{left:136.440000px;}
.x8_c00190{left:141.390000px;}
.x5_c00190{left:151.965150px;}
.x7_c00190{left:240.881400px;}
.x6_c00190{left:754.440000px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls7_c00190{letter-spacing:-0.012800pt;}
.ls5_c00190{letter-spacing:0.000000pt;}
.ls0_c00190{letter-spacing:0.012800pt;}
.lsc_c00190{letter-spacing:0.151552pt;}
.ls8_c00190{letter-spacing:0.213120pt;}
.ls6_c00190{letter-spacing:0.322048pt;}
.ls9_c00190{letter-spacing:0.364672pt;}
.ls1_c00190{letter-spacing:0.383616pt;}
.lsa_c00190{letter-spacing:0.487808pt;}
.lsb_c00190{letter-spacing:0.558848pt;}
.ls4_c00190{letter-spacing:12.397653pt;}
.ls3_c00190{letter-spacing:12.399253pt;}
.ls2_c00190{letter-spacing:15.074987pt;}
.ws0_c00190{word-spacing:-17.804800pt;}
.ws2_c00190{word-spacing:-13.653888pt;}
.ws1_c00190{word-spacing:-13.379200pt;}
.ws3_c00190{word-spacing:0.000000pt;}
._5_c00190{margin-left:-1.089280pt;}
._7_c00190{width:1.251467pt;}
._6_c00190{width:2.240000pt;}
._2_c00190{width:4.025600pt;}
._9_c00190{width:4.959200pt;}
._a_c00190{width:6.476800pt;}
._3_c00190{width:7.654400pt;}
._4_c00190{width:9.350400pt;}
._c_c00190{width:11.022112pt;}
._b_c00190{width:12.188000pt;}
._1_c00190{width:19.379200pt;}
._8_c00190{width:24.505600pt;}
._0_c00190{width:1019.274133pt;}
.fs1_c00190{font-size:47.360000pt;}
.fs0_c00190{font-size:64.000000pt;}
.y0_c00190{bottom:0.000000pt;}
.y4_c00190{bottom:3.520000pt;}
.y1_c00190{bottom:16.666667pt;}
.y2_c00190{bottom:33.653360pt;}
.y3_c00190{bottom:46.480027pt;}
.y16_c00190{bottom:101.813360pt;}
.y15_c00190{bottom:115.573360pt;}
.y14_c00190{bottom:150.773333pt;}
.y13_c00190{bottom:187.573333pt;}
.y12_c00190{bottom:224.373333pt;}
.y11_c00190{bottom:261.173333pt;}
.y10_c00190{bottom:297.973333pt;}
.yf_c00190{bottom:334.773333pt;}
.ye_c00190{bottom:371.573333pt;}
.yd_c00190{bottom:410.933333pt;}
.yc_c00190{bottom:459.893333pt;}
.yb_c00190{bottom:471.093333pt;}
.ya_c00190{bottom:807.733333pt;}
.y9_c00190{bottom:844.533333pt;}
.y8_c00190{bottom:881.333333pt;}
.y7_c00190{bottom:918.133333pt;}
.y6_c00190{bottom:954.933333pt;}
.y5_c00190{bottom:994.293333pt;}
.h3_c00190{height:18.240000pt;}
.h5_c00190{height:42.457500pt;}
.h2_c00190{height:57.375000pt;}
.h4_c00190{height:57.781250pt;}
.h1_c00190{height:1089.333333pt;}
.h0_c00190{height:1122.666667pt;}
.w2_c00190{width:26.880000pt;}
.w1_c00190{width:760.000000pt;}
.w0_c00190{width:793.333333pt;}
.x0_c00190{left:0.000000pt;}
.x1_c00190{left:16.666667pt;}
.x4_c00190{left:97.279933pt;}
.x3_c00190{left:113.946667pt;}
.x2_c00190{left:121.280000pt;}
.x8_c00190{left:125.680000pt;}
.x5_c00190{left:135.080133pt;}
.x7_c00190{left:214.116800pt;}
.x6_c00190{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a2722ed5c7b7b2c08d045c05.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00191;src:url('chunks/assets/font_a7dd354f4c3dc623aff7bee4.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00191;src:url('chunks/assets/font_4bae55ff3df46570957fcd92.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:1.104492;font-style: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);}
.v2_c00191{vertical-align:-27.360000px;}
.v0_c00191{vertical-align:0.000000px;}
.v1_c00191{vertical-align:27.360000px;}
.ls7_c00191{letter-spacing:-0.014400px;}
.ls4_c00191{letter-spacing:0.000000px;}
.ls1_c00191{letter-spacing:0.005400px;}
.ls0_c00191{letter-spacing:0.014400px;}
.ls2_c00191{letter-spacing:0.191160px;}
.ls6_c00191{letter-spacing:0.420912px;}
.ls5_c00191{letter-spacing:0.479520px;}
.ls3_c00191{letter-spacing:30.906000px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00191{word-spacing:-20.030400px;}
.ws1_c00191{word-spacing:0.000000px;}
._3_c00191{margin-left:-1.012320px;}
._b_c00191{width:1.029600px;}
._d_c00191{width:2.743200px;}
._e_c00191{width:4.564800px;}
._5_c00191{width:9.352800px;}
._a_c00191{width:10.353600px;}
._7_c00191{width:11.476800px;}
._4_c00191{width:12.614400px;}
._6_c00191{width:14.731200px;}
._10_c00191{width:18.417600px;}
._c_c00191{width:24.184800px;}
._f_c00191{width:30.895200px;}
._8_c00191{width:40.737600px;}
._9_c00191{width:42.740700px;}
._1_c00191{width:1061.484000px;}
._2_c00191{width:1146.684000px;}
._0_c00191{width:2079.683700px;}
.fc1_c00191{color:transparent;}
.fc0_c00191{color:rgb(0,0,0);}
.fs2_c00191{font-size:36.000000px;}
.fs1_c00191{font-size:53.280000px;}
.fs0_c00191{font-size:72.000000px;}
.y0_c00191{bottom:0.000000px;}
.y5_c00191{bottom:3.960000px;}
.y1_c00191{bottom:18.750000px;}
.y3_c00191{bottom:36.420030px;}
.y4_c00191{bottom:47.250030px;}
.y18_c00191{bottom:110.220030px;}
.y17_c00191{bottom:151.620000px;}
.y16_c00191{bottom:193.020000px;}
.y15_c00191{bottom:234.420000px;}
.y14_c00191{bottom:275.820000px;}
.y13_c00191{bottom:317.220000px;}
.y12_c00191{bottom:358.620000px;}
.y11_c00191{bottom:400.020000px;}
.y10_c00191{bottom:441.420000px;}
.yf_c00191{bottom:482.820000px;}
.ye_c00191{bottom:524.220000px;}
.yd_c00191{bottom:565.620000px;}
.yc_c00191{bottom:607.020000px;}
.yb_c00191{bottom:648.420000px;}
.ya_c00191{bottom:689.820000px;}
.y9_c00191{bottom:734.100000px;}
.y8_c00191{bottom:789.180000px;}
.y7_c00191{bottom:802.140000px;}
.y6_c00191{bottom:1120.740000px;}
.y2_c00191{bottom:1174.020000px;}
.h3_c00191{height:20.520000px;}
.h4_c00191{height:59.633438px;}
.h2_c00191{height:64.546875px;}
.h5_c00191{height:65.003906px;}
.h1_c00191{height:1225.500000px;}
.h0_c00191{height:1263.000000px;}
.w2_c00191{width:30.240000px;}
.w1_c00191{width:855.000000px;}
.w0_c00191{width:892.500000px;}
.x0_c00191{left:0.000000px;}
.x1_c00191{left:18.750000px;}
.x2_c00191{left:109.439925px;}
.x5_c00191{left:151.965150px;}
.x3_c00191{left:157.739850px;}
.x7_c00191{left:230.615850px;}
.x4_c00191{left:735.510000px;}
.x6_c00191{left:754.440000px;}
@media print{
.v2_c00191{vertical-align:-24.320000pt;}
.v0_c00191{vertical-align:0.000000pt;}
.v1_c00191{vertical-align:24.320000pt;}
.ls7_c00191{letter-spacing:-0.012800pt;}
.ls4_c00191{letter-spacing:0.000000pt;}
.ls1_c00191{letter-spacing:0.004800pt;}
.ls0_c00191{letter-spacing:0.012800pt;}
.ls2_c00191{letter-spacing:0.169920pt;}
.ls6_c00191{letter-spacing:0.374144pt;}
.ls5_c00191{letter-spacing:0.426240pt;}
.ls3_c00191{letter-spacing:27.472000pt;}
.ws0_c00191{word-spacing:-17.804800pt;}
.ws1_c00191{word-spacing:0.000000pt;}
._3_c00191{margin-left:-0.899840pt;}
._b_c00191{width:0.915200pt;}
._d_c00191{width:2.438400pt;}
._e_c00191{width:4.057600pt;}
._5_c00191{width:8.313600pt;}
._a_c00191{width:9.203200pt;}
._7_c00191{width:10.201600pt;}
._4_c00191{width:11.212800pt;}
._6_c00191{width:13.094400pt;}
._10_c00191{width:16.371200pt;}
._c_c00191{width:21.497600pt;}
._f_c00191{width:27.462400pt;}
._8_c00191{width:36.211200pt;}
._9_c00191{width:37.991733pt;}
._1_c00191{width:943.541333pt;}
._2_c00191{width:1019.274667pt;}
._0_c00191{width:1848.607733pt;}
.fs2_c00191{font-size:32.000000pt;}
.fs1_c00191{font-size:47.360000pt;}
.fs0_c00191{font-size:64.000000pt;}
.y0_c00191{bottom:0.000000pt;}
.y5_c00191{bottom:3.520000pt;}
.y1_c00191{bottom:16.666667pt;}
.y3_c00191{bottom:32.373360pt;}
.y4_c00191{bottom:42.000027pt;}
.y18_c00191{bottom:97.973360pt;}
.y17_c00191{bottom:134.773333pt;}
.y16_c00191{bottom:171.573333pt;}
.y15_c00191{bottom:208.373333pt;}
.y14_c00191{bottom:245.173333pt;}
.y13_c00191{bottom:281.973333pt;}
.y12_c00191{bottom:318.773333pt;}
.y11_c00191{bottom:355.573333pt;}
.y10_c00191{bottom:392.373333pt;}
.yf_c00191{bottom:429.173333pt;}
.ye_c00191{bottom:465.973333pt;}
.yd_c00191{bottom:502.773333pt;}
.yc_c00191{bottom:539.573333pt;}
.yb_c00191{bottom:576.373333pt;}
.ya_c00191{bottom:613.173333pt;}
.y9_c00191{bottom:652.533333pt;}
.y8_c00191{bottom:701.493333pt;}
.y7_c00191{bottom:713.013333pt;}
.y6_c00191{bottom:996.213333pt;}
.y2_c00191{bottom:1043.573333pt;}
.h3_c00191{height:18.240000pt;}
.h4_c00191{height:53.007500pt;}
.h2_c00191{height:57.375000pt;}
.h5_c00191{height:57.781250pt;}
.h1_c00191{height:1089.333333pt;}
.h0_c00191{height:1122.666667pt;}
.w2_c00191{width:26.880000pt;}
.w1_c00191{width:760.000000pt;}
.w0_c00191{width:793.333333pt;}
.x0_c00191{left:0.000000pt;}
.x1_c00191{left:16.666667pt;}
.x2_c00191{left:97.279933pt;}
.x5_c00191{left:135.080133pt;}
.x3_c00191{left:140.213200pt;}
.x7_c00191{left:204.991867pt;}
.x4_c00191{left:653.786667pt;}
.x6_c00191{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f522458af0f6a230b7e96d9c.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00192;src:url('chunks/assets/font_edc0eaba97f92f1d255671d4.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.104492;font-style: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;}
.ls5_c00192{letter-spacing:-0.014400px;}
.ls4_c00192{letter-spacing:0.000000px;}
.ls0_c00192{letter-spacing:0.014400px;}
.ls9_c00192{letter-spacing:0.170496px;}
.ls1_c00192{letter-spacing:0.191160px;}
.lsa_c00192{letter-spacing:0.191808px;}
.ls3_c00192{letter-spacing:0.239760px;}
.ls7_c00192{letter-spacing:0.410256px;}
.ls6_c00192{letter-spacing:0.479520px;}
.ls8_c00192{letter-spacing:0.628704px;}
.ls2_c00192{letter-spacing:16.959360px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00192{word-spacing:-20.030400px;}
.ws1_c00192{word-spacing:-20.001600px;}
.ws2_c00192{word-spacing:-15.051600px;}
.ws3_c00192{word-spacing:0.000000px;}
._3_c00192{margin-left:-1.012320px;}
._4_c00192{width:1.170492px;}
._1_c00192{width:3.276000px;}
._2_c00192{width:6.444300px;}
._5_c00192{width:7.701996px;}
._6_c00192{width:8.846148px;}
._0_c00192{width:1146.683400px;}
.fc1_c00192{color:transparent;}
.fc0_c00192{color:rgb(0,0,0);}
.fs1_c00192{font-size:53.280000px;}
.fs0_c00192{font-size:72.000000px;}
.y0_c00192{bottom:0.000000px;}
.y4_c00192{bottom:3.960000px;}
.y1_c00192{bottom:18.750000px;}
.y2_c00192{bottom:37.860030px;}
.y3_c00192{bottom:52.290030px;}
.y11_c00192{bottom:96.180030px;}
.y10_c00192{bottom:111.660030px;}
.yf_c00192{bottom:127.140030px;}
.ye_c00192{bottom:142.620000px;}
.yd_c00192{bottom:175.740000px;}
.yc_c00192{bottom:207.060000px;}
.yb_c00192{bottom:219.660000px;}
.ya_c00192{bottom:636.900000px;}
.y9_c00192{bottom:667.860000px;}
.y8_c00192{bottom:996.540000px;}
.y7_c00192{bottom:1037.940000px;}
.y6_c00192{bottom:1079.340000px;}
.y5_c00192{bottom:1120.740000px;}
.h3_c00192{height:20.520000px;}
.h4_c00192{height:47.764688px;}
.h2_c00192{height:64.546875px;}
.h1_c00192{height:1225.500000px;}
.h0_c00192{height:1263.000000px;}
.w2_c00192{width:30.240000px;}
.w1_c00192{width:855.000000px;}
.w0_c00192{width:892.500000px;}
.x0_c00192{left:0.000000px;}
.x1_c00192{left:18.750000px;}
.x4_c00192{left:109.439925px;}
.x3_c00192{left:128.190000px;}
.x2_c00192{left:136.440000px;}
.xb_c00192{left:141.390000px;}
.x5_c00192{left:151.965150px;}
.x6_c00192{left:192.464700px;}
.x9_c00192{left:322.824900px;}
.x7_c00192{left:428.114850px;}
.xa_c00192{left:438.764550px;}
.x8_c00192{left:754.440000px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls5_c00192{letter-spacing:-0.012800pt;}
.ls4_c00192{letter-spacing:0.000000pt;}
.ls0_c00192{letter-spacing:0.012800pt;}
.ls9_c00192{letter-spacing:0.151552pt;}
.ls1_c00192{letter-spacing:0.169920pt;}
.lsa_c00192{letter-spacing:0.170496pt;}
.ls3_c00192{letter-spacing:0.213120pt;}
.ls7_c00192{letter-spacing:0.364672pt;}
.ls6_c00192{letter-spacing:0.426240pt;}
.ls8_c00192{letter-spacing:0.558848pt;}
.ls2_c00192{letter-spacing:15.074987pt;}
.ws0_c00192{word-spacing:-17.804800pt;}
.ws1_c00192{word-spacing:-17.779200pt;}
.ws2_c00192{word-spacing:-13.379200pt;}
.ws3_c00192{word-spacing:0.000000pt;}
._3_c00192{margin-left:-0.899840pt;}
._4_c00192{width:1.040437pt;}
._1_c00192{width:2.912000pt;}
._2_c00192{width:5.728267pt;}
._5_c00192{width:6.846219pt;}
._6_c00192{width:7.863243pt;}
._0_c00192{width:1019.274133pt;}
.fs1_c00192{font-size:47.360000pt;}
.fs0_c00192{font-size:64.000000pt;}
.y0_c00192{bottom:0.000000pt;}
.y4_c00192{bottom:3.520000pt;}
.y1_c00192{bottom:16.666667pt;}
.y2_c00192{bottom:33.653360pt;}
.y3_c00192{bottom:46.480027pt;}
.y11_c00192{bottom:85.493360pt;}
.y10_c00192{bottom:99.253360pt;}
.yf_c00192{bottom:113.013360pt;}
.ye_c00192{bottom:126.773333pt;}
.yd_c00192{bottom:156.213333pt;}
.yc_c00192{bottom:184.053333pt;}
.yb_c00192{bottom:195.253333pt;}
.ya_c00192{bottom:566.133333pt;}
.y9_c00192{bottom:593.653333pt;}
.y8_c00192{bottom:885.813333pt;}
.y7_c00192{bottom:922.613333pt;}
.y6_c00192{bottom:959.413333pt;}
.y5_c00192{bottom:996.213333pt;}
.h3_c00192{height:18.240000pt;}
.h4_c00192{height:42.457500pt;}
.h2_c00192{height:57.375000pt;}
.h1_c00192{height:1089.333333pt;}
.h0_c00192{height:1122.666667pt;}
.w2_c00192{width:26.880000pt;}
.w1_c00192{width:760.000000pt;}
.w0_c00192{width:793.333333pt;}
.x0_c00192{left:0.000000pt;}
.x1_c00192{left:16.666667pt;}
.x4_c00192{left:97.279933pt;}
.x3_c00192{left:113.946667pt;}
.x2_c00192{left:121.280000pt;}
.xb_c00192{left:125.680000pt;}
.x5_c00192{left:135.080133pt;}
.x6_c00192{left:171.079733pt;}
.x9_c00192{left:286.955467pt;}
.x7_c00192{left:380.546533pt;}
.xa_c00192{left:390.012933pt;}
.x8_c00192{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b98951daac1019496f44251b.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.ls2_c00193{letter-spacing:0.000000px;}
.ls0_c00193{letter-spacing:0.014400px;}
.ls1_c00193{letter-spacing:0.191160px;}
.ls3_c00193{letter-spacing:0.527472px;}
.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:-20.030400px;}
.ws1_c00193{word-spacing:0.000000px;}
._3_c00193{margin-left:-1.278720px;}
._1_c00193{width:1061.484000px;}
._2_c00193{width:1146.684000px;}
._0_c00193{width:2079.683700px;}
.fc1_c00193{color:transparent;}
.fc0_c00193{color:rgb(0,0,0);}
.fs1_c00193{font-size:53.280000px;}
.fs0_c00193{font-size:72.000000px;}
.y0_c00193{bottom:0.000000px;}
.y5_c00193{bottom:3.960000px;}
.y1_c00193{bottom:18.750000px;}
.y3_c00193{bottom:36.420030px;}
.y4_c00193{bottom:47.250030px;}
.ya_c00193{bottom:96.540030px;}
.y9_c00193{bottom:109.140030px;}
.y8_c00193{bottom:442.500000px;}
.y7_c00193{bottom:455.460000px;}
.y6_c00193{bottom:791.700000px;}
.y2_c00193{bottom:1174.020000px;}
.h3_c00193{height:20.520000px;}
.h4_c00193{height:47.764688px;}
.h2_c00193{height:64.546875px;}
.h1_c00193{height:1225.500000px;}
.h0_c00193{height:1263.000000px;}
.w2_c00193{width:30.240000px;}
.w1_c00193{width:855.000000px;}
.w0_c00193{width:892.500000px;}
.x0_c00193{left:0.000000px;}
.x1_c00193{left:18.750000px;}
.x2_c00193{left:109.439925px;}
.x3_c00193{left:157.739850px;}
.x5_c00193{left:225.130350px;}
.x7_c00193{left:343.334400px;}
.x4_c00193{left:735.510000px;}
.x6_c00193{left:751.440000px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls2_c00193{letter-spacing:0.000000pt;}
.ls0_c00193{letter-spacing:0.012800pt;}
.ls1_c00193{letter-spacing:0.169920pt;}
.ls3_c00193{letter-spacing:0.468864pt;}
.ws0_c00193{word-spacing:-17.804800pt;}
.ws1_c00193{word-spacing:0.000000pt;}
._3_c00193{margin-left:-1.136640pt;}
._1_c00193{width:943.541333pt;}
._2_c00193{width:1019.274667pt;}
._0_c00193{width:1848.607733pt;}
.fs1_c00193{font-size:47.360000pt;}
.fs0_c00193{font-size:64.000000pt;}
.y0_c00193{bottom:0.000000pt;}
.y5_c00193{bottom:3.520000pt;}
.y1_c00193{bottom:16.666667pt;}
.y3_c00193{bottom:32.373360pt;}
.y4_c00193{bottom:42.000027pt;}
.ya_c00193{bottom:85.813360pt;}
.y9_c00193{bottom:97.013360pt;}
.y8_c00193{bottom:393.333333pt;}
.y7_c00193{bottom:404.853333pt;}
.y6_c00193{bottom:703.733333pt;}
.y2_c00193{bottom:1043.573333pt;}
.h3_c00193{height:18.240000pt;}
.h4_c00193{height:42.457500pt;}
.h2_c00193{height:57.375000pt;}
.h1_c00193{height:1089.333333pt;}
.h0_c00193{height:1122.666667pt;}
.w2_c00193{width:26.880000pt;}
.w1_c00193{width:760.000000pt;}
.w0_c00193{width:793.333333pt;}
.x0_c00193{left:0.000000pt;}
.x1_c00193{left:16.666667pt;}
.x2_c00193{left:97.279933pt;}
.x3_c00193{left:140.213200pt;}
.x5_c00193{left:200.115867pt;}
.x7_c00193{left:305.186133pt;}
.x4_c00193{left:653.786667pt;}
.x6_c00193{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6ce6ba2dc916133d16494e1.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:0.014400px;}
.ls4_c00194{letter-spacing:0.191808px;}
.ls3_c00194{letter-spacing:0.431568px;}
.ls2_c00194{letter-spacing:0.527472px;}
.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:-20.030400px;}
.ws1_c00194{word-spacing:0.000000px;}
._1_c00194{margin-left:-1.278720px;}
._0_c00194{width:1146.683400px;}
.fc1_c00194{color:transparent;}
.fc0_c00194{color:rgb(0,0,0);}
.fs1_c00194{font-size:53.280000px;}
.fs0_c00194{font-size:72.000000px;}
.y0_c00194{bottom:0.000000px;}
.y4_c00194{bottom:3.960000px;}
.y1_c00194{bottom:18.750000px;}
.y2_c00194{bottom:37.860030px;}
.y3_c00194{bottom:52.290030px;}
.ya_c00194{bottom:104.460015px;}
.y9_c00194{bottom:117.060030px;}
.y8_c00194{bottom:597.660000px;}
.y7_c00194{bottom:628.620000px;}
.y6_c00194{bottom:659.580000px;}
.y5_c00194{bottom:672.540000px;}
.h3_c00194{height:20.520000px;}
.h4_c00194{height:47.764688px;}
.h2_c00194{height:64.546875px;}
.h1_c00194{height:1225.500000px;}
.h0_c00194{height:1263.000000px;}
.w2_c00194{width:30.240000px;}
.w1_c00194{width:855.000000px;}
.w0_c00194{width:892.500000px;}
.x0_c00194{left:0.000000px;}
.x1_c00194{left:18.750000px;}
.x3_c00194{left:128.190000px;}
.x2_c00194{left:136.440000px;}
.x7_c00194{left:306.199500px;}
.x5_c00194{left:343.334400px;}
.x6_c00194{left:428.114850px;}
.x4_c00194{left:751.440000px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls1_c00194{letter-spacing:0.000000pt;}
.ls0_c00194{letter-spacing:0.012800pt;}
.ls4_c00194{letter-spacing:0.170496pt;}
.ls3_c00194{letter-spacing:0.383616pt;}
.ls2_c00194{letter-spacing:0.468864pt;}
.ws0_c00194{word-spacing:-17.804800pt;}
.ws1_c00194{word-spacing:0.000000pt;}
._1_c00194{margin-left:-1.136640pt;}
._0_c00194{width:1019.274133pt;}
.fs1_c00194{font-size:47.360000pt;}
.fs0_c00194{font-size:64.000000pt;}
.y0_c00194{bottom:0.000000pt;}
.y4_c00194{bottom:3.520000pt;}
.y1_c00194{bottom:16.666667pt;}
.y2_c00194{bottom:33.653360pt;}
.y3_c00194{bottom:46.480027pt;}
.ya_c00194{bottom:92.853347pt;}
.y9_c00194{bottom:104.053360pt;}
.y8_c00194{bottom:531.253333pt;}
.y7_c00194{bottom:558.773333pt;}
.y6_c00194{bottom:586.293333pt;}
.y5_c00194{bottom:597.813333pt;}
.h3_c00194{height:18.240000pt;}
.h4_c00194{height:42.457500pt;}
.h2_c00194{height:57.375000pt;}
.h1_c00194{height:1089.333333pt;}
.h0_c00194{height:1122.666667pt;}
.w2_c00194{width:26.880000pt;}
.w1_c00194{width:760.000000pt;}
.w0_c00194{width:793.333333pt;}
.x0_c00194{left:0.000000pt;}
.x1_c00194{left:16.666667pt;}
.x3_c00194{left:113.946667pt;}
.x2_c00194{left:121.280000pt;}
.x7_c00194{left:272.177333pt;}
.x5_c00194{left:305.186133pt;}
.x6_c00194{left:380.546533pt;}
.x4_c00194{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_97dcfffde0c8a0fc45ba64f3.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00195{letter-spacing:0.000000px;}
.ls0_c00195{letter-spacing:0.014400px;}
.ls1_c00195{letter-spacing:0.239760px;}
.ls4_c00195{letter-spacing:0.410256px;}
.ls3_c00195{letter-spacing:0.431568px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00195{word-spacing:-20.030400px;}
.ws1_c00195{word-spacing:0.000000px;}
._3_c00195{margin-left:-1.118880px;}
._1_c00195{width:1061.484000px;}
._2_c00195{width:1146.684000px;}
._0_c00195{width:2079.683700px;}
.fc1_c00195{color:transparent;}
.fc0_c00195{color:rgb(0,0,0);}
.fs1_c00195{font-size:53.280000px;}
.fs0_c00195{font-size:72.000000px;}
.y0_c00195{bottom:0.000000px;}
.y5_c00195{bottom:3.960000px;}
.y1_c00195{bottom:18.750000px;}
.y3_c00195{bottom:36.420030px;}
.y4_c00195{bottom:47.250030px;}
.yc_c00195{bottom:94.380015px;}
.yb_c00195{bottom:125.340015px;}
.ya_c00195{bottom:138.300000px;}
.y9_c00195{bottom:600.540000px;}
.y8_c00195{bottom:613.140000px;}
.y7_c00195{bottom:1093.740000px;}
.y6_c00195{bottom:1124.700000px;}
.y2_c00195{bottom:1174.020000px;}
.h3_c00195{height:20.520000px;}
.h4_c00195{height:47.764688px;}
.h2_c00195{height:64.546875px;}
.h1_c00195{height:1225.500000px;}
.h0_c00195{height:1263.000000px;}
.w2_c00195{width:30.240000px;}
.w1_c00195{width:855.000000px;}
.w0_c00195{width:892.500000px;}
.x0_c00195{left:0.000000px;}
.x1_c00195{left:18.750000px;}
.x2_c00195{left:109.439925px;}
.x3_c00195{left:157.739850px;}
.x7_c00195{left:291.941550px;}
.x8_c00195{left:303.196950px;}
.x5_c00195{left:428.114850px;}
.x4_c00195{left:735.510000px;}
.x6_c00195{left:751.440000px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls2_c00195{letter-spacing:0.000000pt;}
.ls0_c00195{letter-spacing:0.012800pt;}
.ls1_c00195{letter-spacing:0.213120pt;}
.ls4_c00195{letter-spacing:0.364672pt;}
.ls3_c00195{letter-spacing:0.383616pt;}
.ws0_c00195{word-spacing:-17.804800pt;}
.ws1_c00195{word-spacing:0.000000pt;}
._3_c00195{margin-left:-0.994560pt;}
._1_c00195{width:943.541333pt;}
._2_c00195{width:1019.274667pt;}
._0_c00195{width:1848.607733pt;}
.fs1_c00195{font-size:47.360000pt;}
.fs0_c00195{font-size:64.000000pt;}
.y0_c00195{bottom:0.000000pt;}
.y5_c00195{bottom:3.520000pt;}
.y1_c00195{bottom:16.666667pt;}
.y3_c00195{bottom:32.373360pt;}
.y4_c00195{bottom:42.000027pt;}
.yc_c00195{bottom:83.893347pt;}
.yb_c00195{bottom:111.413347pt;}
.ya_c00195{bottom:122.933333pt;}
.y9_c00195{bottom:533.813333pt;}
.y8_c00195{bottom:545.013333pt;}
.y7_c00195{bottom:972.213333pt;}
.y6_c00195{bottom:999.733333pt;}
.y2_c00195{bottom:1043.573333pt;}
.h3_c00195{height:18.240000pt;}
.h4_c00195{height:42.457500pt;}
.h2_c00195{height:57.375000pt;}
.h1_c00195{height:1089.333333pt;}
.h0_c00195{height:1122.666667pt;}
.w2_c00195{width:26.880000pt;}
.w1_c00195{width:760.000000pt;}
.w0_c00195{width:793.333333pt;}
.x0_c00195{left:0.000000pt;}
.x1_c00195{left:16.666667pt;}
.x2_c00195{left:97.279933pt;}
.x3_c00195{left:140.213200pt;}
.x7_c00195{left:259.503600pt;}
.x8_c00195{left:269.508400pt;}
.x5_c00195{left:380.546533pt;}
.x4_c00195{left:653.786667pt;}
.x6_c00195{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66f90a44df8d61d007d14454.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00196;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.113281;font-style: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;}
.ls1_c00196{letter-spacing:0.000000px;}
.ls0_c00196{letter-spacing:0.014400px;}
.ls2_c00196{letter-spacing:0.527472px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00196{word-spacing:-20.030400px;}
.ws1_c00196{word-spacing:0.000000px;}
._1_c00196{margin-left:-1.278720px;}
._0_c00196{width:1146.683400px;}
.fc1_c00196{color:transparent;}
.fc0_c00196{color:rgb(0,0,0);}
.fs1_c00196{font-size:53.280000px;}
.fs0_c00196{font-size:72.000000px;}
.y0_c00196{bottom:0.000000px;}
.y4_c00196{bottom:3.960000px;}
.y1_c00196{bottom:18.750000px;}
.y2_c00196{bottom:37.860030px;}
.y3_c00196{bottom:52.290030px;}
.y9_c00196{bottom:100.500030px;}
.y8_c00196{bottom:153.420000px;}
.y7_c00196{bottom:166.020000px;}
.y6_c00196{bottom:1093.740000px;}
.y5_c00196{bottom:1124.700000px;}
.h3_c00196{height:20.520000px;}
.h4_c00196{height:47.764688px;}
.h2_c00196{height:64.546875px;}
.h5_c00196{height:65.003906px;}
.h1_c00196{height:1225.500000px;}
.h0_c00196{height:1263.000000px;}
.w2_c00196{width:30.240000px;}
.w1_c00196{width:855.000000px;}
.w0_c00196{width:892.500000px;}
.x0_c00196{left:0.000000px;}
.x1_c00196{left:18.750000px;}
.x7_c00196{left:109.439925px;}
.x3_c00196{left:128.190000px;}
.x2_c00196{left:136.440000px;}
.x6_c00196{left:228.894300px;}
.x4_c00196{left:428.114850px;}
.x5_c00196{left:751.440000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls1_c00196{letter-spacing:0.000000pt;}
.ls0_c00196{letter-spacing:0.012800pt;}
.ls2_c00196{letter-spacing:0.468864pt;}
.ws0_c00196{word-spacing:-17.804800pt;}
.ws1_c00196{word-spacing:0.000000pt;}
._1_c00196{margin-left:-1.136640pt;}
._0_c00196{width:1019.274133pt;}
.fs1_c00196{font-size:47.360000pt;}
.fs0_c00196{font-size:64.000000pt;}
.y0_c00196{bottom:0.000000pt;}
.y4_c00196{bottom:3.520000pt;}
.y1_c00196{bottom:16.666667pt;}
.y2_c00196{bottom:33.653360pt;}
.y3_c00196{bottom:46.480027pt;}
.y9_c00196{bottom:89.333360pt;}
.y8_c00196{bottom:136.373333pt;}
.y7_c00196{bottom:147.573333pt;}
.y6_c00196{bottom:972.213333pt;}
.y5_c00196{bottom:999.733333pt;}
.h3_c00196{height:18.240000pt;}
.h4_c00196{height:42.457500pt;}
.h2_c00196{height:57.375000pt;}
.h5_c00196{height:57.781250pt;}
.h1_c00196{height:1089.333333pt;}
.h0_c00196{height:1122.666667pt;}
.w2_c00196{width:26.880000pt;}
.w1_c00196{width:760.000000pt;}
.w0_c00196{width:793.333333pt;}
.x0_c00196{left:0.000000pt;}
.x1_c00196{left:16.666667pt;}
.x7_c00196{left:97.279933pt;}
.x3_c00196{left:113.946667pt;}
.x2_c00196{left:121.280000pt;}
.x6_c00196{left:203.461600pt;}
.x4_c00196{left:380.546533pt;}
.x5_c00196{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_763a4b2e599ed02072dd200f.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00197;src:url('chunks/assets/font_f68aa068a572bc4099c35c62.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.113281;font-style: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;}
.ls2_c00197{letter-spacing:-0.014400px;}
.ls1_c00197{letter-spacing:0.000000px;}
.ls0_c00197{letter-spacing:0.014400px;}
.sc__c00197{text-shadow:none;}
.sc0_c00197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00197{-webkit-text-stroke:0px transparent;}
.sc0_c00197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00197{word-spacing:-20.030400px;}
.ws1_c00197{word-spacing:-20.016000px;}
.ws2_c00197{word-spacing:0.000000px;}
._9_c00197{width:1.051200px;}
._5_c00197{width:6.624300px;}
._b_c00197{width:8.330400px;}
._7_c00197{width:12.610500px;}
._3_c00197{width:24.202800px;}
._a_c00197{width:28.144800px;}
._8_c00197{width:30.304800px;}
._4_c00197{width:33.206400px;}
._6_c00197{width:41.379900px;}
._c_c00197{width:843.983700px;}
._1_c00197{width:1061.484000px;}
._2_c00197{width:1146.684000px;}
._0_c00197{width:2079.683700px;}
.fc1_c00197{color:transparent;}
.fc0_c00197{color:rgb(0,0,0);}
.fs1_c00197{font-size:53.280000px;}
.fs0_c00197{font-size:72.000000px;}
.y0_c00197{bottom:0.000000px;}
.y5_c00197{bottom:3.960000px;}
.y1_c00197{bottom:18.750000px;}
.y3_c00197{bottom:36.420030px;}
.y4_c00197{bottom:47.250030px;}
.y1a_c00197{bottom:292.740000px;}
.y19_c00197{bottom:334.140000px;}
.y18_c00197{bottom:375.540000px;}
.y17_c00197{bottom:416.940000px;}
.y16_c00197{bottom:458.340000px;}
.y15_c00197{bottom:499.740000px;}
.y14_c00197{bottom:541.140000px;}
.y13_c00197{bottom:582.540000px;}
.y12_c00197{bottom:623.940000px;}
.y11_c00197{bottom:665.340000px;}
.y10_c00197{bottom:706.740000px;}
.yf_c00197{bottom:748.140000px;}
.ye_c00197{bottom:789.540000px;}
.yd_c00197{bottom:830.940000px;}
.yc_c00197{bottom:872.340000px;}
.yb_c00197{bottom:913.740000px;}
.ya_c00197{bottom:955.140000px;}
.y9_c00197{bottom:996.540000px;}
.y8_c00197{bottom:1037.940000px;}
.y7_c00197{bottom:1079.340000px;}
.y6_c00197{bottom:1120.740000px;}
.y2_c00197{bottom:1174.020000px;}
.h3_c00197{height:20.520000px;}
.h2_c00197{height:64.546875px;}
.h4_c00197{height:65.003906px;}
.h1_c00197{height:1225.500000px;}
.h0_c00197{height:1263.000000px;}
.w2_c00197{width:30.240000px;}
.w1_c00197{width:855.000000px;}
.w0_c00197{width:892.500000px;}
.x0_c00197{left:0.000000px;}
.x1_c00197{left:18.750000px;}
.x2_c00197{left:109.439925px;}
.x5_c00197{left:151.965150px;}
.x3_c00197{left:157.739850px;}
.x4_c00197{left:735.510000px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls2_c00197{letter-spacing:-0.012800pt;}
.ls1_c00197{letter-spacing:0.000000pt;}
.ls0_c00197{letter-spacing:0.012800pt;}
.ws0_c00197{word-spacing:-17.804800pt;}
.ws1_c00197{word-spacing:-17.792000pt;}
.ws2_c00197{word-spacing:0.000000pt;}
._9_c00197{width:0.934400pt;}
._5_c00197{width:5.888267pt;}
._b_c00197{width:7.404800pt;}
._7_c00197{width:11.209333pt;}
._3_c00197{width:21.513600pt;}
._a_c00197{width:25.017600pt;}
._8_c00197{width:26.937600pt;}
._4_c00197{width:29.516800pt;}
._6_c00197{width:36.782133pt;}
._c_c00197{width:750.207733pt;}
._1_c00197{width:943.541333pt;}
._2_c00197{width:1019.274667pt;}
._0_c00197{width:1848.607733pt;}
.fs1_c00197{font-size:47.360000pt;}
.fs0_c00197{font-size:64.000000pt;}
.y0_c00197{bottom:0.000000pt;}
.y5_c00197{bottom:3.520000pt;}
.y1_c00197{bottom:16.666667pt;}
.y3_c00197{bottom:32.373360pt;}
.y4_c00197{bottom:42.000027pt;}
.y1a_c00197{bottom:260.213333pt;}
.y19_c00197{bottom:297.013333pt;}
.y18_c00197{bottom:333.813333pt;}
.y17_c00197{bottom:370.613333pt;}
.y16_c00197{bottom:407.413333pt;}
.y15_c00197{bottom:444.213333pt;}
.y14_c00197{bottom:481.013333pt;}
.y13_c00197{bottom:517.813333pt;}
.y12_c00197{bottom:554.613333pt;}
.y11_c00197{bottom:591.413333pt;}
.y10_c00197{bottom:628.213333pt;}
.yf_c00197{bottom:665.013333pt;}
.ye_c00197{bottom:701.813333pt;}
.yd_c00197{bottom:738.613333pt;}
.yc_c00197{bottom:775.413333pt;}
.yb_c00197{bottom:812.213333pt;}
.ya_c00197{bottom:849.013333pt;}
.y9_c00197{bottom:885.813333pt;}
.y8_c00197{bottom:922.613333pt;}
.y7_c00197{bottom:959.413333pt;}
.y6_c00197{bottom:996.213333pt;}
.y2_c00197{bottom:1043.573333pt;}
.h3_c00197{height:18.240000pt;}
.h2_c00197{height:57.375000pt;}
.h4_c00197{height:57.781250pt;}
.h1_c00197{height:1089.333333pt;}
.h0_c00197{height:1122.666667pt;}
.w2_c00197{width:26.880000pt;}
.w1_c00197{width:760.000000pt;}
.w0_c00197{width:793.333333pt;}
.x0_c00197{left:0.000000pt;}
.x1_c00197{left:16.666667pt;}
.x2_c00197{left:97.279933pt;}
.x5_c00197{left:135.080133pt;}
.x3_c00197{left:140.213200pt;}
.x4_c00197{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ea8c35643eda21e7e5a9e867.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:0.014400px;}
.sc__c00198{text-shadow:none;}
.sc0_c00198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00198{-webkit-text-stroke:0px transparent;}
.sc0_c00198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00198{word-spacing:-20.030400px;}
.ws1_c00198{word-spacing:0.000000px;}
._0_c00198{width:1146.683400px;}
.fc1_c00198{color:transparent;}
.fc0_c00198{color:rgb(0,0,0);}
.fs0_c00198{font-size:72.000000px;}
.y0_c00198{bottom:0.000000px;}
.y4_c00198{bottom:3.960000px;}
.y1_c00198{bottom:18.750000px;}
.y2_c00198{bottom:37.860030px;}
.y3_c00198{bottom:52.290030px;}
.y9_c00198{bottom:71.639970px;}
.y8_c00198{bottom:109.079970px;}
.y6_c00198{bottom:146.250030px;}
.y7_c00198{bottom:995.039970px;}
.y5_c00198{bottom:1158.570000px;}
.h4_c00198{height:20.519985px;}
.h3_c00198{height:20.520000px;}
.h2_c00198{height:64.546875px;}
.h5_c00198{height:1011.600000px;}
.h1_c00198{height:1225.500000px;}
.h0_c00198{height:1263.000000px;}
.w2_c00198{width:30.240000px;}
.w3_c00198{width:637.200000px;}
.w1_c00198{width:855.000000px;}
.w0_c00198{width:892.500000px;}
.x0_c00198{left:0.000000px;}
.x5_c00198{left:7.919835px;}
.x1_c00198{left:18.750000px;}
.x3_c00198{left:128.190000px;}
.x4_c00198{left:131.790000px;}
.x2_c00198{left:136.440000px;}
.x6_c00198{left:625.994550px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls1_c00198{letter-spacing:0.000000pt;}
.ls0_c00198{letter-spacing:0.012800pt;}
.ws0_c00198{word-spacing:-17.804800pt;}
.ws1_c00198{word-spacing:0.000000pt;}
._0_c00198{width:1019.274133pt;}
.fs0_c00198{font-size:64.000000pt;}
.y0_c00198{bottom:0.000000pt;}
.y4_c00198{bottom:3.520000pt;}
.y1_c00198{bottom:16.666667pt;}
.y2_c00198{bottom:33.653360pt;}
.y3_c00198{bottom:46.480027pt;}
.y9_c00198{bottom:63.679973pt;}
.y8_c00198{bottom:96.959973pt;}
.y6_c00198{bottom:130.000027pt;}
.y7_c00198{bottom:884.479973pt;}
.y5_c00198{bottom:1029.840000pt;}
.h4_c00198{height:18.239987pt;}
.h3_c00198{height:18.240000pt;}
.h2_c00198{height:57.375000pt;}
.h5_c00198{height:899.200000pt;}
.h1_c00198{height:1089.333333pt;}
.h0_c00198{height:1122.666667pt;}
.w2_c00198{width:26.880000pt;}
.w3_c00198{width:566.400000pt;}
.w1_c00198{width:760.000000pt;}
.w0_c00198{width:793.333333pt;}
.x0_c00198{left:0.000000pt;}
.x5_c00198{left:7.039853pt;}
.x1_c00198{left:16.666667pt;}
.x3_c00198{left:113.946667pt;}
.x4_c00198{left:117.146667pt;}
.x2_c00198{left:121.280000pt;}
.x6_c00198{left:556.439600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a5ee44eb3330a42e692eaa32.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00199{letter-spacing:0.000000px;}
.ls0_c00199{letter-spacing:0.014400px;}
.sc__c00199{text-shadow:none;}
.sc0_c00199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00199{-webkit-text-stroke:0px transparent;}
.sc0_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00199{word-spacing:-20.030400px;}
.ws1_c00199{word-spacing:0.000000px;}
._1_c00199{width:1061.484000px;}
._2_c00199{width:1146.684000px;}
._0_c00199{width:2079.683700px;}
.fc1_c00199{color:transparent;}
.fc0_c00199{color:rgb(0,0,0);}
.fs1_c00199{font-size:53.280000px;}
.fs0_c00199{font-size:72.000000px;}
.y0_c00199{bottom:0.000000px;}
.y5_c00199{bottom:3.960000px;}
.y1_c00199{bottom:18.750000px;}
.y3_c00199{bottom:36.420030px;}
.y9_c00199{bottom:38.159985px;}
.y4_c00199{bottom:47.250030px;}
.y7_c00199{bottom:124.650015px;}
.y8_c00199{bottom:992.879985px;}
.y6_c00199{bottom:1134.810000px;}
.y2_c00199{bottom:1174.020000px;}
.h4_c00199{height:20.519985px;}
.h3_c00199{height:20.520000px;}
.h2_c00199{height:64.546875px;}
.h5_c00199{height:1009.440000px;}
.h1_c00199{height:1225.500000px;}
.h0_c00199{height:1263.000000px;}
.w2_c00199{width:30.240000px;}
.w3_c00199{width:637.200000px;}
.w1_c00199{width:855.000000px;}
.w0_c00199{width:892.500000px;}
.x0_c00199{left:0.000000px;}
.x6_c00199{left:7.919835px;}
.x1_c00199{left:18.750000px;}
.x2_c00199{left:109.439925px;}
.x5_c00199{left:131.790000px;}
.x3_c00199{left:157.739850px;}
.x7_c00199{left:601.919850px;}
.x4_c00199{left:735.510000px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls1_c00199{letter-spacing:0.000000pt;}
.ls0_c00199{letter-spacing:0.012800pt;}
.ws0_c00199{word-spacing:-17.804800pt;}
.ws1_c00199{word-spacing:0.000000pt;}
._1_c00199{width:943.541333pt;}
._2_c00199{width:1019.274667pt;}
._0_c00199{width:1848.607733pt;}
.fs1_c00199{font-size:47.360000pt;}
.fs0_c00199{font-size:64.000000pt;}
.y0_c00199{bottom:0.000000pt;}
.y5_c00199{bottom:3.520000pt;}
.y1_c00199{bottom:16.666667pt;}
.y3_c00199{bottom:32.373360pt;}
.y9_c00199{bottom:33.919987pt;}
.y4_c00199{bottom:42.000027pt;}
.y7_c00199{bottom:110.800013pt;}
.y8_c00199{bottom:882.559987pt;}
.y6_c00199{bottom:1008.720000pt;}
.y2_c00199{bottom:1043.573333pt;}
.h4_c00199{height:18.239987pt;}
.h3_c00199{height:18.240000pt;}
.h2_c00199{height:57.375000pt;}
.h5_c00199{height:897.280000pt;}
.h1_c00199{height:1089.333333pt;}
.h0_c00199{height:1122.666667pt;}
.w2_c00199{width:26.880000pt;}
.w3_c00199{width:566.400000pt;}
.w1_c00199{width:760.000000pt;}
.w0_c00199{width:793.333333pt;}
.x0_c00199{left:0.000000pt;}
.x6_c00199{left:7.039853pt;}
.x1_c00199{left:16.666667pt;}
.x2_c00199{left:97.279933pt;}
.x5_c00199{left:117.146667pt;}
.x3_c00199{left:140.213200pt;}
.x7_c00199{left:535.039867pt;}
.x4_c00199{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_350d86602127e28dbd579f62.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00200{letter-spacing:0.000000px;}
.ls0_c00200{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00200{word-spacing:0.000000px;}
._0_c00200{width:1146.683400px;}
.fc1_c00200{color:transparent;}
.fc0_c00200{color:rgb(0,0,0);}
.fs0_c00200{font-size:72.000000px;}
.y0_c00200{bottom:0.000000px;}
.y4_c00200{bottom:3.960000px;}
.y8_c00200{bottom:17.280000px;}
.y1_c00200{bottom:18.750000px;}
.y2_c00200{bottom:37.860030px;}
.y3_c00200{bottom:52.290030px;}
.y6_c00200{bottom:106.290030px;}
.y7_c00200{bottom:1011.239970px;}
.y5_c00200{bottom:1134.810000px;}
.h4_c00200{height:20.519985px;}
.h3_c00200{height:20.520000px;}
.h2_c00200{height:64.546875px;}
.h5_c00200{height:1027.800150px;}
.h1_c00200{height:1225.500000px;}
.h0_c00200{height:1263.000000px;}
.w2_c00200{width:30.240000px;}
.w3_c00200{width:637.200000px;}
.w1_c00200{width:855.000000px;}
.w0_c00200{width:892.500000px;}
.x0_c00200{left:0.000000px;}
.x5_c00200{left:7.919835px;}
.x1_c00200{left:18.750000px;}
.x3_c00200{left:128.190000px;}
.x4_c00200{left:131.790000px;}
.x2_c00200{left:136.440000px;}
.x6_c00200{left:584.819550px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls1_c00200{letter-spacing:0.000000pt;}
.ls0_c00200{letter-spacing:0.012800pt;}
.ws0_c00200{word-spacing:-17.804800pt;}
.ws1_c00200{word-spacing:0.000000pt;}
._0_c00200{width:1019.274133pt;}
.fs0_c00200{font-size:64.000000pt;}
.y0_c00200{bottom:0.000000pt;}
.y4_c00200{bottom:3.520000pt;}
.y8_c00200{bottom:15.360000pt;}
.y1_c00200{bottom:16.666667pt;}
.y2_c00200{bottom:33.653360pt;}
.y3_c00200{bottom:46.480027pt;}
.y6_c00200{bottom:94.480027pt;}
.y7_c00200{bottom:898.879973pt;}
.y5_c00200{bottom:1008.720000pt;}
.h4_c00200{height:18.239987pt;}
.h3_c00200{height:18.240000pt;}
.h2_c00200{height:57.375000pt;}
.h5_c00200{height:913.600133pt;}
.h1_c00200{height:1089.333333pt;}
.h0_c00200{height:1122.666667pt;}
.w2_c00200{width:26.880000pt;}
.w3_c00200{width:566.400000pt;}
.w1_c00200{width:760.000000pt;}
.w0_c00200{width:793.333333pt;}
.x0_c00200{left:0.000000pt;}
.x5_c00200{left:7.039853pt;}
.x1_c00200{left:16.666667pt;}
.x3_c00200{left:113.946667pt;}
.x4_c00200{left:117.146667pt;}
.x2_c00200{left:121.280000pt;}
.x6_c00200{left:519.839600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5b611e9c5943013289b6182.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00201{vertical-align:0.000000px;}
.ls1_c00201{letter-spacing:0.000000px;}
.ls0_c00201{letter-spacing:0.014400px;}
.sc__c00201{text-shadow:none;}
.sc0_c00201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00201{-webkit-text-stroke:0px transparent;}
.sc0_c00201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00201{word-spacing:-20.030400px;}
.ws1_c00201{word-spacing:0.000000px;}
._1_c00201{width:1061.484000px;}
._2_c00201{width:1146.684000px;}
._0_c00201{width:2079.683700px;}
.fc1_c00201{color:transparent;}
.fc0_c00201{color:rgb(0,0,0);}
.fs1_c00201{font-size:53.280000px;}
.fs0_c00201{font-size:72.000000px;}
.y0_c00201{bottom:0.000000px;}
.y5_c00201{bottom:3.960000px;}
.y9_c00201{bottom:6.480000px;}
.y1_c00201{bottom:18.750000px;}
.y3_c00201{bottom:36.420030px;}
.y8_c00201{bottom:43.919970px;}
.y4_c00201{bottom:47.250030px;}
.y7_c00201{bottom:106.290030px;}
.y6_c00201{bottom:1134.810000px;}
.y2_c00201{bottom:1174.020000px;}
.h4_c00201{height:20.519985px;}
.h3_c00201{height:20.520000px;}
.h2_c00201{height:64.546875px;}
.h5_c00201{height:1027.800150px;}
.h1_c00201{height:1225.500000px;}
.h0_c00201{height:1263.000000px;}
.w2_c00201{width:30.240000px;}
.w3_c00201{width:637.200000px;}
.w1_c00201{width:855.000000px;}
.w0_c00201{width:892.500000px;}
.x0_c00201{left:0.000000px;}
.x6_c00201{left:7.919835px;}
.x1_c00201{left:18.750000px;}
.x2_c00201{left:109.439925px;}
.x5_c00201{left:131.790000px;}
.x3_c00201{left:157.739850px;}
.x7_c00201{left:629.819550px;}
.x4_c00201{left:735.510000px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls1_c00201{letter-spacing:0.000000pt;}
.ls0_c00201{letter-spacing:0.012800pt;}
.ws0_c00201{word-spacing:-17.804800pt;}
.ws1_c00201{word-spacing:0.000000pt;}
._1_c00201{width:943.541333pt;}
._2_c00201{width:1019.274667pt;}
._0_c00201{width:1848.607733pt;}
.fs1_c00201{font-size:47.360000pt;}
.fs0_c00201{font-size:64.000000pt;}
.y0_c00201{bottom:0.000000pt;}
.y5_c00201{bottom:3.520000pt;}
.y9_c00201{bottom:5.760000pt;}
.y1_c00201{bottom:16.666667pt;}
.y3_c00201{bottom:32.373360pt;}
.y8_c00201{bottom:39.039973pt;}
.y4_c00201{bottom:42.000027pt;}
.y7_c00201{bottom:94.480027pt;}
.y6_c00201{bottom:1008.720000pt;}
.y2_c00201{bottom:1043.573333pt;}
.h4_c00201{height:18.239987pt;}
.h3_c00201{height:18.240000pt;}
.h2_c00201{height:57.375000pt;}
.h5_c00201{height:913.600133pt;}
.h1_c00201{height:1089.333333pt;}
.h0_c00201{height:1122.666667pt;}
.w2_c00201{width:26.880000pt;}
.w3_c00201{width:566.400000pt;}
.w1_c00201{width:760.000000pt;}
.w0_c00201{width:793.333333pt;}
.x0_c00201{left:0.000000pt;}
.x6_c00201{left:7.039853pt;}
.x1_c00201{left:16.666667pt;}
.x2_c00201{left:97.279933pt;}
.x5_c00201{left:117.146667pt;}
.x3_c00201{left:140.213200pt;}
.x7_c00201{left:559.839600pt;}
.x4_c00201{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_350d86602127e28dbd579f62.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00202{letter-spacing:-0.014400px;}
.ls1_c00202{letter-spacing:0.000000px;}
.ls0_c00202{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00202{word-spacing:0.000000px;}
._0_c00202{width:1146.683400px;}
.fc1_c00202{color:transparent;}
.fc0_c00202{color:rgb(0,0,0);}
.fs0_c00202{font-size:72.000000px;}
.yc_c00202{bottom:-150.840000px;}
.yb_c00202{bottom:-109.440001px;}
.ya_c00202{bottom:-68.040000px;}
.y6_c00202{bottom:-37.440000px;}
.y9_c00202{bottom:-26.640015px;}
.y0_c00202{bottom:0.000000px;}
.y4_c00202{bottom:3.960000px;}
.y8_c00202{bottom:10.799985px;}
.y1_c00202{bottom:18.750000px;}
.y2_c00202{bottom:37.860030px;}
.y3_c00202{bottom:52.290030px;}
.y7_c00202{bottom:124.290030px;}
.y5_c00202{bottom:1134.810000px;}
.h4_c00202{height:20.519985px;}
.h3_c00202{height:20.520000px;}
.h2_c00202{height:64.546875px;}
.h5_c00202{height:1009.800150px;}
.h1_c00202{height:1225.500000px;}
.h0_c00202{height:1263.000000px;}
.w2_c00202{width:30.240000px;}
.w3_c00202{width:637.200000px;}
.w1_c00202{width:855.000000px;}
.w0_c00202{width:892.500000px;}
.x0_c00202{left:0.000000px;}
.x5_c00202{left:7.919835px;}
.x1_c00202{left:18.750000px;}
.x3_c00202{left:128.190000px;}
.x4_c00202{left:131.790000px;}
.x2_c00202{left:136.440000px;}
.x6_c00202{left:628.919850px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls2_c00202{letter-spacing:-0.012800pt;}
.ls1_c00202{letter-spacing:0.000000pt;}
.ls0_c00202{letter-spacing:0.012800pt;}
.ws0_c00202{word-spacing:-17.804800pt;}
.ws1_c00202{word-spacing:0.000000pt;}
._0_c00202{width:1019.274133pt;}
.fs0_c00202{font-size:64.000000pt;}
.yc_c00202{bottom:-134.080000pt;}
.yb_c00202{bottom:-97.280001pt;}
.ya_c00202{bottom:-60.480000pt;}
.y6_c00202{bottom:-33.280000pt;}
.y9_c00202{bottom:-23.680013pt;}
.y0_c00202{bottom:0.000000pt;}
.y4_c00202{bottom:3.520000pt;}
.y8_c00202{bottom:9.599987pt;}
.y1_c00202{bottom:16.666667pt;}
.y2_c00202{bottom:33.653360pt;}
.y3_c00202{bottom:46.480027pt;}
.y7_c00202{bottom:110.480027pt;}
.y5_c00202{bottom:1008.720000pt;}
.h4_c00202{height:18.239987pt;}
.h3_c00202{height:18.240000pt;}
.h2_c00202{height:57.375000pt;}
.h5_c00202{height:897.600133pt;}
.h1_c00202{height:1089.333333pt;}
.h0_c00202{height:1122.666667pt;}
.w2_c00202{width:26.880000pt;}
.w3_c00202{width:566.400000pt;}
.w1_c00202{width:760.000000pt;}
.w0_c00202{width:793.333333pt;}
.x0_c00202{left:0.000000pt;}
.x5_c00202{left:7.039853pt;}
.x1_c00202{left:16.666667pt;}
.x3_c00202{left:113.946667pt;}
.x4_c00202{left:117.146667pt;}
.x2_c00202{left:121.280000pt;}
.x6_c00202{left:559.039867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_34573da8c5e2472ab3323c45.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.ls1_c00203{letter-spacing:0.000000px;}
.ls0_c00203{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00203{word-spacing:0.000000px;}
._1_c00203{width:1061.484000px;}
._2_c00203{width:1146.684000px;}
._0_c00203{width:2079.683700px;}
.fc1_c00203{color:transparent;}
.fc0_c00203{color:rgb(0,0,0);}
.fs1_c00203{font-size:53.280000px;}
.fs0_c00203{font-size:72.000000px;}
.y15_c00203{bottom:-119.880003px;}
.y14_c00203{bottom:-78.480000px;}
.y13_c00203{bottom:-37.080000px;}
.y0_c00203{bottom:0.000000px;}
.y5_c00203{bottom:3.960000px;}
.y12_c00203{bottom:4.319985px;}
.y1_c00203{bottom:18.750000px;}
.y3_c00203{bottom:36.420030px;}
.y11_c00203{bottom:45.719970px;}
.y4_c00203{bottom:47.250030px;}
.y10_c00203{bottom:87.119970px;}
.y7_c00203{bottom:124.290030px;}
.yf_c00203{bottom:128.519970px;}
.ye_c00203{bottom:169.919970px;}
.yd_c00203{bottom:211.319970px;}
.yc_c00203{bottom:252.719970px;}
.yb_c00203{bottom:294.119970px;}
.ya_c00203{bottom:335.519970px;}
.y9_c00203{bottom:376.919970px;}
.y8_c00203{bottom:414.359970px;}
.y6_c00203{bottom:1134.810000px;}
.y2_c00203{bottom:1174.020000px;}
.h4_c00203{height:20.519985px;}
.h3_c00203{height:20.520000px;}
.h2_c00203{height:64.546875px;}
.h5_c00203{height:1009.800150px;}
.h1_c00203{height:1225.500000px;}
.h0_c00203{height:1263.000000px;}
.w2_c00203{width:30.240000px;}
.w3_c00203{width:637.200000px;}
.w1_c00203{width:855.000000px;}
.w0_c00203{width:892.500000px;}
.x0_c00203{left:0.000000px;}
.x6_c00203{left:7.919835px;}
.x1_c00203{left:18.750000px;}
.x2_c00203{left:109.439925px;}
.x5_c00203{left:131.790000px;}
.x3_c00203{left:157.739850px;}
.x7_c00203{left:603.269700px;}
.x4_c00203{left:735.510000px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls1_c00203{letter-spacing:0.000000pt;}
.ls0_c00203{letter-spacing:0.012800pt;}
.ws0_c00203{word-spacing:-17.804800pt;}
.ws1_c00203{word-spacing:0.000000pt;}
._1_c00203{width:943.541333pt;}
._2_c00203{width:1019.274667pt;}
._0_c00203{width:1848.607733pt;}
.fs1_c00203{font-size:47.360000pt;}
.fs0_c00203{font-size:64.000000pt;}
.y15_c00203{bottom:-106.560003pt;}
.y14_c00203{bottom:-69.760000pt;}
.y13_c00203{bottom:-32.960000pt;}
.y0_c00203{bottom:0.000000pt;}
.y5_c00203{bottom:3.520000pt;}
.y12_c00203{bottom:3.839987pt;}
.y1_c00203{bottom:16.666667pt;}
.y3_c00203{bottom:32.373360pt;}
.y11_c00203{bottom:40.639973pt;}
.y4_c00203{bottom:42.000027pt;}
.y10_c00203{bottom:77.439973pt;}
.y7_c00203{bottom:110.480027pt;}
.yf_c00203{bottom:114.239973pt;}
.ye_c00203{bottom:151.039973pt;}
.yd_c00203{bottom:187.839973pt;}
.yc_c00203{bottom:224.639973pt;}
.yb_c00203{bottom:261.439973pt;}
.ya_c00203{bottom:298.239973pt;}
.y9_c00203{bottom:335.039973pt;}
.y8_c00203{bottom:368.319973pt;}
.y6_c00203{bottom:1008.720000pt;}
.y2_c00203{bottom:1043.573333pt;}
.h4_c00203{height:18.239987pt;}
.h3_c00203{height:18.240000pt;}
.h2_c00203{height:57.375000pt;}
.h5_c00203{height:897.600133pt;}
.h1_c00203{height:1089.333333pt;}
.h0_c00203{height:1122.666667pt;}
.w2_c00203{width:26.880000pt;}
.w3_c00203{width:566.400000pt;}
.w1_c00203{width:760.000000pt;}
.w0_c00203{width:793.333333pt;}
.x0_c00203{left:0.000000pt;}
.x6_c00203{left:7.039853pt;}
.x1_c00203{left:16.666667pt;}
.x2_c00203{left:97.279933pt;}
.x5_c00203{left:117.146667pt;}
.x3_c00203{left:140.213200pt;}
.x7_c00203{left:536.239733pt;}
.x4_c00203{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_350d86602127e28dbd579f62.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.ls2_c00204{letter-spacing:-0.014400px;}
.ls1_c00204{letter-spacing:0.000000px;}
.ls0_c00204{letter-spacing:0.014400px;}
.sc__c00204{text-shadow:none;}
.sc0_c00204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00204{-webkit-text-stroke:0px transparent;}
.sc0_c00204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00204{word-spacing:-20.030400px;}
.ws1_c00204{word-spacing:0.000000px;}
._0_c00204{width:1146.683400px;}
.fc1_c00204{color:transparent;}
.fc0_c00204{color:rgb(0,0,0);}
.fs0_c00204{font-size:72.000000px;}
.y6_c00204{bottom:-37.440000px;}
.y0_c00204{bottom:0.000000px;}
.y4_c00204{bottom:3.960000px;}
.y1_c00204{bottom:18.750000px;}
.y2_c00204{bottom:37.860030px;}
.y3_c00204{bottom:52.290030px;}
.y7_c00204{bottom:113.490030px;}
.ya_c00204{bottom:284.759970px;}
.y9_c00204{bottom:321.839970px;}
.y8_c00204{bottom:1004.039970px;}
.y5_c00204{bottom:1134.810000px;}
.h4_c00204{height:20.519985px;}
.h3_c00204{height:20.520000px;}
.h2_c00204{height:64.546875px;}
.h5_c00204{height:1020.600000px;}
.h1_c00204{height:1225.500000px;}
.h0_c00204{height:1263.000000px;}
.w2_c00204{width:30.240000px;}
.w3_c00204{width:637.200000px;}
.w1_c00204{width:855.000000px;}
.w0_c00204{width:892.500000px;}
.x0_c00204{left:0.000000px;}
.x5_c00204{left:7.919835px;}
.x1_c00204{left:18.750000px;}
.x3_c00204{left:128.190000px;}
.x4_c00204{left:131.790000px;}
.x2_c00204{left:136.440000px;}
.x6_c00204{left:617.594700px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls2_c00204{letter-spacing:-0.012800pt;}
.ls1_c00204{letter-spacing:0.000000pt;}
.ls0_c00204{letter-spacing:0.012800pt;}
.ws0_c00204{word-spacing:-17.804800pt;}
.ws1_c00204{word-spacing:0.000000pt;}
._0_c00204{width:1019.274133pt;}
.fs0_c00204{font-size:64.000000pt;}
.y6_c00204{bottom:-33.280000pt;}
.y0_c00204{bottom:0.000000pt;}
.y4_c00204{bottom:3.520000pt;}
.y1_c00204{bottom:16.666667pt;}
.y2_c00204{bottom:33.653360pt;}
.y3_c00204{bottom:46.480027pt;}
.y7_c00204{bottom:100.880027pt;}
.ya_c00204{bottom:253.119973pt;}
.y9_c00204{bottom:286.079973pt;}
.y8_c00204{bottom:892.479973pt;}
.y5_c00204{bottom:1008.720000pt;}
.h4_c00204{height:18.239987pt;}
.h3_c00204{height:18.240000pt;}
.h2_c00204{height:57.375000pt;}
.h5_c00204{height:907.200000pt;}
.h1_c00204{height:1089.333333pt;}
.h0_c00204{height:1122.666667pt;}
.w2_c00204{width:26.880000pt;}
.w3_c00204{width:566.400000pt;}
.w1_c00204{width:760.000000pt;}
.w0_c00204{width:793.333333pt;}
.x0_c00204{left:0.000000pt;}
.x5_c00204{left:7.039853pt;}
.x1_c00204{left:16.666667pt;}
.x3_c00204{left:113.946667pt;}
.x4_c00204{left:117.146667pt;}
.x2_c00204{left:121.280000pt;}
.x6_c00204{left:548.973067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ae08281f782368555e91fff.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls1_c00205{letter-spacing:0.000000px;}
.ls0_c00205{letter-spacing:0.014400px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00205{word-spacing:-20.030400px;}
.ws1_c00205{word-spacing:0.000000px;}
._1_c00205{width:1061.484000px;}
._2_c00205{width:1146.684000px;}
._0_c00205{width:2079.683700px;}
.fc1_c00205{color:transparent;}
.fc0_c00205{color:rgb(0,0,0);}
.fs1_c00205{font-size:53.280000px;}
.fs0_c00205{font-size:72.000000px;}
.yc_c00205{bottom:-132.480001px;}
.yb_c00205{bottom:-91.080000px;}
.ya_c00205{bottom:-49.680000px;}
.y9_c00205{bottom:-8.280015px;}
.y0_c00205{bottom:0.000000px;}
.y5_c00205{bottom:3.960000px;}
.y1_c00205{bottom:18.750000px;}
.y8_c00205{bottom:29.159970px;}
.y3_c00205{bottom:36.420030px;}
.y4_c00205{bottom:47.250030px;}
.y7_c00205{bottom:123.930030px;}
.y6_c00205{bottom:1134.810000px;}
.y2_c00205{bottom:1174.020000px;}
.h4_c00205{height:20.519985px;}
.h3_c00205{height:20.520000px;}
.h2_c00205{height:64.546875px;}
.h5_c00205{height:1010.160000px;}
.h1_c00205{height:1225.500000px;}
.h0_c00205{height:1263.000000px;}
.w2_c00205{width:30.240000px;}
.w3_c00205{width:637.200000px;}
.w1_c00205{width:855.000000px;}
.w0_c00205{width:892.500000px;}
.x0_c00205{left:0.000000px;}
.x6_c00205{left:7.919835px;}
.x1_c00205{left:18.750000px;}
.x2_c00205{left:109.439925px;}
.x5_c00205{left:131.790000px;}
.x3_c00205{left:157.739850px;}
.x7_c00205{left:634.919850px;}
.x4_c00205{left:735.510000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls1_c00205{letter-spacing:0.000000pt;}
.ls0_c00205{letter-spacing:0.012800pt;}
.ws0_c00205{word-spacing:-17.804800pt;}
.ws1_c00205{word-spacing:0.000000pt;}
._1_c00205{width:943.541333pt;}
._2_c00205{width:1019.274667pt;}
._0_c00205{width:1848.607733pt;}
.fs1_c00205{font-size:47.360000pt;}
.fs0_c00205{font-size:64.000000pt;}
.yc_c00205{bottom:-117.760001pt;}
.yb_c00205{bottom:-80.960000pt;}
.ya_c00205{bottom:-44.160000pt;}
.y9_c00205{bottom:-7.360013pt;}
.y0_c00205{bottom:0.000000pt;}
.y5_c00205{bottom:3.520000pt;}
.y1_c00205{bottom:16.666667pt;}
.y8_c00205{bottom:25.919973pt;}
.y3_c00205{bottom:32.373360pt;}
.y4_c00205{bottom:42.000027pt;}
.y7_c00205{bottom:110.160027pt;}
.y6_c00205{bottom:1008.720000pt;}
.y2_c00205{bottom:1043.573333pt;}
.h4_c00205{height:18.239987pt;}
.h3_c00205{height:18.240000pt;}
.h2_c00205{height:57.375000pt;}
.h5_c00205{height:897.920000pt;}
.h1_c00205{height:1089.333333pt;}
.h0_c00205{height:1122.666667pt;}
.w2_c00205{width:26.880000pt;}
.w3_c00205{width:566.400000pt;}
.w1_c00205{width:760.000000pt;}
.w0_c00205{width:793.333333pt;}
.x0_c00205{left:0.000000pt;}
.x6_c00205{left:7.039853pt;}
.x1_c00205{left:16.666667pt;}
.x2_c00205{left:97.279933pt;}
.x5_c00205{left:117.146667pt;}
.x3_c00205{left:140.213200pt;}
.x7_c00205{left:564.373200pt;}
.x4_c00205{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_804e12b819e4bd299972a0fe.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.ls1_c00206{letter-spacing:0.000000px;}
.ls0_c00206{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00206{word-spacing:0.000000px;}
._0_c00206{width:1146.683400px;}
.fc1_c00206{color:transparent;}
.fc0_c00206{color:rgb(0,0,0);}
.fs0_c00206{font-size:72.000000px;}
.yc_c00206{bottom:-147.600000px;}
.yb_c00206{bottom:-106.200000px;}
.ya_c00206{bottom:-64.800000px;}
.y9_c00206{bottom:-23.400000px;}
.y0_c00206{bottom:0.000000px;}
.y4_c00206{bottom:3.960000px;}
.y6_c00206{bottom:4.320000px;}
.y8_c00206{bottom:13.679985px;}
.y1_c00206{bottom:18.750000px;}
.y2_c00206{bottom:37.860030px;}
.y3_c00206{bottom:52.290030px;}
.y7_c00206{bottom:123.930030px;}
.y5_c00206{bottom:1134.450000px;}
.h3_c00206{height:20.520000px;}
.h4_c00206{height:20.879970px;}
.h2_c00206{height:64.546875px;}
.h5_c00206{height:1009.800000px;}
.h1_c00206{height:1225.500000px;}
.h0_c00206{height:1263.000000px;}
.w2_c00206{width:30.240000px;}
.w3_c00206{width:637.200000px;}
.w1_c00206{width:855.000000px;}
.w0_c00206{width:892.500000px;}
.x0_c00206{left:0.000000px;}
.x5_c00206{left:7.919835px;}
.x1_c00206{left:18.750000px;}
.x3_c00206{left:128.190000px;}
.x4_c00206{left:131.790000px;}
.x2_c00206{left:136.440000px;}
.x6_c00206{left:611.594700px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls1_c00206{letter-spacing:0.000000pt;}
.ls0_c00206{letter-spacing:0.012800pt;}
.ws0_c00206{word-spacing:-17.804800pt;}
.ws1_c00206{word-spacing:0.000000pt;}
._0_c00206{width:1019.274133pt;}
.fs0_c00206{font-size:64.000000pt;}
.yc_c00206{bottom:-131.200000pt;}
.yb_c00206{bottom:-94.400000pt;}
.ya_c00206{bottom:-57.600000pt;}
.y9_c00206{bottom:-20.800000pt;}
.y0_c00206{bottom:0.000000pt;}
.y4_c00206{bottom:3.520000pt;}
.y6_c00206{bottom:3.840000pt;}
.y8_c00206{bottom:12.159987pt;}
.y1_c00206{bottom:16.666667pt;}
.y2_c00206{bottom:33.653360pt;}
.y3_c00206{bottom:46.480027pt;}
.y7_c00206{bottom:110.160027pt;}
.y5_c00206{bottom:1008.400000pt;}
.h3_c00206{height:18.240000pt;}
.h4_c00206{height:18.559973pt;}
.h2_c00206{height:57.375000pt;}
.h5_c00206{height:897.600000pt;}
.h1_c00206{height:1089.333333pt;}
.h0_c00206{height:1122.666667pt;}
.w2_c00206{width:26.880000pt;}
.w3_c00206{width:566.400000pt;}
.w1_c00206{width:760.000000pt;}
.w0_c00206{width:793.333333pt;}
.x0_c00206{left:0.000000pt;}
.x5_c00206{left:7.039853pt;}
.x1_c00206{left:16.666667pt;}
.x3_c00206{left:113.946667pt;}
.x4_c00206{left:117.146667pt;}
.x2_c00206{left:121.280000pt;}
.x6_c00206{left:543.639733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2634fefb71ee89783829aa43.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls1_c00207{letter-spacing:0.000000px;}
.ls0_c00207{letter-spacing:0.014400px;}
.sc__c00207{text-shadow:none;}
.sc0_c00207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00207{-webkit-text-stroke:0px transparent;}
.sc0_c00207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00207{word-spacing:-20.030400px;}
.ws1_c00207{word-spacing:0.000000px;}
._1_c00207{width:1061.484000px;}
._2_c00207{width:1146.684000px;}
._0_c00207{width:2079.683700px;}
.fc1_c00207{color:transparent;}
.fc0_c00207{color:rgb(0,0,0);}
.fs1_c00207{font-size:53.280000px;}
.fs0_c00207{font-size:72.000000px;}
.yc_c00207{bottom:-130.680002px;}
.yb_c00207{bottom:-89.280000px;}
.ya_c00207{bottom:-47.880000px;}
.y9_c00207{bottom:-6.480000px;}
.y0_c00207{bottom:0.000000px;}
.y5_c00207{bottom:3.960000px;}
.y1_c00207{bottom:18.750000px;}
.y8_c00207{bottom:30.959970px;}
.y3_c00207{bottom:36.420030px;}
.y4_c00207{bottom:47.250030px;}
.y7_c00207{bottom:124.290030px;}
.y6_c00207{bottom:1134.810000px;}
.y2_c00207{bottom:1174.020000px;}
.h4_c00207{height:20.519985px;}
.h3_c00207{height:20.520000px;}
.h2_c00207{height:64.546875px;}
.h5_c00207{height:1009.800150px;}
.h1_c00207{height:1225.500000px;}
.h0_c00207{height:1263.000000px;}
.w2_c00207{width:30.240000px;}
.w3_c00207{width:637.200000px;}
.w1_c00207{width:855.000000px;}
.w0_c00207{width:892.500000px;}
.x0_c00207{left:0.000000px;}
.x6_c00207{left:7.919835px;}
.x1_c00207{left:18.750000px;}
.x2_c00207{left:109.439925px;}
.x5_c00207{left:131.790000px;}
.x3_c00207{left:157.739850px;}
.x7_c00207{left:628.919850px;}
.x4_c00207{left:735.510000px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls1_c00207{letter-spacing:0.000000pt;}
.ls0_c00207{letter-spacing:0.012800pt;}
.ws0_c00207{word-spacing:-17.804800pt;}
.ws1_c00207{word-spacing:0.000000pt;}
._1_c00207{width:943.541333pt;}
._2_c00207{width:1019.274667pt;}
._0_c00207{width:1848.607733pt;}
.fs1_c00207{font-size:47.360000pt;}
.fs0_c00207{font-size:64.000000pt;}
.yc_c00207{bottom:-116.160001pt;}
.yb_c00207{bottom:-79.360000pt;}
.ya_c00207{bottom:-42.560000pt;}
.y9_c00207{bottom:-5.760000pt;}
.y0_c00207{bottom:0.000000pt;}
.y5_c00207{bottom:3.520000pt;}
.y1_c00207{bottom:16.666667pt;}
.y8_c00207{bottom:27.519973pt;}
.y3_c00207{bottom:32.373360pt;}
.y4_c00207{bottom:42.000027pt;}
.y7_c00207{bottom:110.480027pt;}
.y6_c00207{bottom:1008.720000pt;}
.y2_c00207{bottom:1043.573333pt;}
.h4_c00207{height:18.239987pt;}
.h3_c00207{height:18.240000pt;}
.h2_c00207{height:57.375000pt;}
.h5_c00207{height:897.600133pt;}
.h1_c00207{height:1089.333333pt;}
.h0_c00207{height:1122.666667pt;}
.w2_c00207{width:26.880000pt;}
.w3_c00207{width:566.400000pt;}
.w1_c00207{width:760.000000pt;}
.w0_c00207{width:793.333333pt;}
.x0_c00207{left:0.000000pt;}
.x6_c00207{left:7.039853pt;}
.x1_c00207{left:16.666667pt;}
.x2_c00207{left:97.279933pt;}
.x5_c00207{left:117.146667pt;}
.x3_c00207{left:140.213200pt;}
.x7_c00207{left:559.039867pt;}
.x4_c00207{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_2d5e0b74ceb6cb554f829cef.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00208{letter-spacing:0.000000px;}
.ls0_c00208{letter-spacing:0.014400px;}
.sc__c00208{text-shadow:none;}
.sc0_c00208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00208{-webkit-text-stroke:0px transparent;}
.sc0_c00208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00208{word-spacing:-20.030400px;}
.ws1_c00208{word-spacing:0.000000px;}
._0_c00208{width:1146.683400px;}
.fc1_c00208{color:transparent;}
.fc0_c00208{color:rgb(0,0,0);}
.fs0_c00208{font-size:72.000000px;}
.y0_c00208{bottom:0.000000px;}
.y4_c00208{bottom:3.960000px;}
.y7_c00208{bottom:18.719985px;}
.y1_c00208{bottom:18.750000px;}
.y2_c00208{bottom:37.860030px;}
.y3_c00208{bottom:52.290030px;}
.y6_c00208{bottom:113.490030px;}
.y5_c00208{bottom:1134.810000px;}
.h4_c00208{height:20.519985px;}
.h3_c00208{height:20.520000px;}
.h2_c00208{height:64.546875px;}
.h5_c00208{height:1020.600000px;}
.h1_c00208{height:1225.500000px;}
.h0_c00208{height:1263.000000px;}
.w2_c00208{width:30.240000px;}
.w3_c00208{width:637.200000px;}
.w1_c00208{width:855.000000px;}
.w0_c00208{width:892.500000px;}
.x0_c00208{left:0.000000px;}
.x5_c00208{left:7.919835px;}
.x1_c00208{left:18.750000px;}
.x3_c00208{left:128.190000px;}
.x4_c00208{left:131.790000px;}
.x2_c00208{left:136.440000px;}
.x6_c00208{left:628.919850px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls1_c00208{letter-spacing:0.000000pt;}
.ls0_c00208{letter-spacing:0.012800pt;}
.ws0_c00208{word-spacing:-17.804800pt;}
.ws1_c00208{word-spacing:0.000000pt;}
._0_c00208{width:1019.274133pt;}
.fs0_c00208{font-size:64.000000pt;}
.y0_c00208{bottom:0.000000pt;}
.y4_c00208{bottom:3.520000pt;}
.y7_c00208{bottom:16.639987pt;}
.y1_c00208{bottom:16.666667pt;}
.y2_c00208{bottom:33.653360pt;}
.y3_c00208{bottom:46.480027pt;}
.y6_c00208{bottom:100.880027pt;}
.y5_c00208{bottom:1008.720000pt;}
.h4_c00208{height:18.239987pt;}
.h3_c00208{height:18.240000pt;}
.h2_c00208{height:57.375000pt;}
.h5_c00208{height:907.200000pt;}
.h1_c00208{height:1089.333333pt;}
.h0_c00208{height:1122.666667pt;}
.w2_c00208{width:26.880000pt;}
.w3_c00208{width:566.400000pt;}
.w1_c00208{width:760.000000pt;}
.w0_c00208{width:793.333333pt;}
.x0_c00208{left:0.000000pt;}
.x5_c00208{left:7.039853pt;}
.x1_c00208{left:16.666667pt;}
.x3_c00208{left:113.946667pt;}
.x4_c00208{left:117.146667pt;}
.x2_c00208{left:121.280000pt;}
.x6_c00208{left:559.039867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_705cccc7f8435acb3db47b4b.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.ls1_c00209{letter-spacing:0.000000px;}
.ls0_c00209{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00209{word-spacing:0.000000px;}
._1_c00209{width:1061.484000px;}
._2_c00209{width:1146.684000px;}
._0_c00209{width:2079.683700px;}
.fc1_c00209{color:transparent;}
.fc0_c00209{color:rgb(0,0,0);}
.fs1_c00209{font-size:53.280000px;}
.fs0_c00209{font-size:72.000000px;}
.y0_c00209{bottom:0.000000px;}
.y8_c00209{bottom:3.239985px;}
.y5_c00209{bottom:3.960000px;}
.y1_c00209{bottom:18.750000px;}
.y3_c00209{bottom:36.420030px;}
.y4_c00209{bottom:47.250030px;}
.y7_c00209{bottom:113.490030px;}
.y6_c00209{bottom:1134.810000px;}
.y2_c00209{bottom:1174.020000px;}
.h4_c00209{height:20.519985px;}
.h3_c00209{height:20.520000px;}
.h2_c00209{height:64.546875px;}
.h5_c00209{height:1020.600000px;}
.h1_c00209{height:1225.500000px;}
.h0_c00209{height:1263.000000px;}
.w2_c00209{width:30.240000px;}
.w3_c00209{width:637.200000px;}
.w1_c00209{width:855.000000px;}
.w0_c00209{width:892.500000px;}
.x0_c00209{left:0.000000px;}
.x6_c00209{left:7.919835px;}
.x1_c00209{left:18.750000px;}
.x2_c00209{left:109.439925px;}
.x5_c00209{left:131.790000px;}
.x3_c00209{left:157.739850px;}
.x7_c00209{left:620.819550px;}
.x4_c00209{left:735.510000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls1_c00209{letter-spacing:0.000000pt;}
.ls0_c00209{letter-spacing:0.012800pt;}
.ws0_c00209{word-spacing:-17.804800pt;}
.ws1_c00209{word-spacing:0.000000pt;}
._1_c00209{width:943.541333pt;}
._2_c00209{width:1019.274667pt;}
._0_c00209{width:1848.607733pt;}
.fs1_c00209{font-size:47.360000pt;}
.fs0_c00209{font-size:64.000000pt;}
.y0_c00209{bottom:0.000000pt;}
.y8_c00209{bottom:2.879987pt;}
.y5_c00209{bottom:3.520000pt;}
.y1_c00209{bottom:16.666667pt;}
.y3_c00209{bottom:32.373360pt;}
.y4_c00209{bottom:42.000027pt;}
.y7_c00209{bottom:100.880027pt;}
.y6_c00209{bottom:1008.720000pt;}
.y2_c00209{bottom:1043.573333pt;}
.h4_c00209{height:18.239987pt;}
.h3_c00209{height:18.240000pt;}
.h2_c00209{height:57.375000pt;}
.h5_c00209{height:907.200000pt;}
.h1_c00209{height:1089.333333pt;}
.h0_c00209{height:1122.666667pt;}
.w2_c00209{width:26.880000pt;}
.w3_c00209{width:566.400000pt;}
.w1_c00209{width:760.000000pt;}
.w0_c00209{width:793.333333pt;}
.x0_c00209{left:0.000000pt;}
.x6_c00209{left:7.039853pt;}
.x1_c00209{left:16.666667pt;}
.x2_c00209{left:97.279933pt;}
.x5_c00209{left:117.146667pt;}
.x3_c00209{left:140.213200pt;}
.x7_c00209{left:551.839600pt;}
.x4_c00209{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e1cadb5667f65244c510a70b.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:0.014400px;}
.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:-20.030400px;}
.ws1_c00210{word-spacing:0.000000px;}
._0_c00210{width:1146.683400px;}
.fc1_c00210{color:transparent;}
.fc0_c00210{color:rgb(0,0,0);}
.fs0_c00210{font-size:72.000000px;}
.y0_c00210{bottom:0.000000px;}
.y4_c00210{bottom:3.960000px;}
.y7_c00210{bottom:16.560000px;}
.y1_c00210{bottom:18.750000px;}
.y2_c00210{bottom:37.860030px;}
.y3_c00210{bottom:52.290030px;}
.y6_c00210{bottom:106.290030px;}
.y5_c00210{bottom:1134.810000px;}
.h4_c00210{height:20.519985px;}
.h3_c00210{height:20.520000px;}
.h2_c00210{height:64.546875px;}
.h5_c00210{height:1027.800150px;}
.h1_c00210{height:1225.500000px;}
.h0_c00210{height:1263.000000px;}
.w2_c00210{width:30.240000px;}
.w3_c00210{width:637.200000px;}
.w1_c00210{width:855.000000px;}
.w0_c00210{width:892.500000px;}
.x0_c00210{left:0.000000px;}
.x5_c00210{left:7.919835px;}
.x1_c00210{left:18.750000px;}
.x3_c00210{left:128.190000px;}
.x4_c00210{left:131.790000px;}
.x2_c00210{left:136.440000px;}
.x6_c00210{left:634.919850px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls1_c00210{letter-spacing:0.000000pt;}
.ls0_c00210{letter-spacing:0.012800pt;}
.ws0_c00210{word-spacing:-17.804800pt;}
.ws1_c00210{word-spacing:0.000000pt;}
._0_c00210{width:1019.274133pt;}
.fs0_c00210{font-size:64.000000pt;}
.y0_c00210{bottom:0.000000pt;}
.y4_c00210{bottom:3.520000pt;}
.y7_c00210{bottom:14.720000pt;}
.y1_c00210{bottom:16.666667pt;}
.y2_c00210{bottom:33.653360pt;}
.y3_c00210{bottom:46.480027pt;}
.y6_c00210{bottom:94.480027pt;}
.y5_c00210{bottom:1008.720000pt;}
.h4_c00210{height:18.239987pt;}
.h3_c00210{height:18.240000pt;}
.h2_c00210{height:57.375000pt;}
.h5_c00210{height:913.600133pt;}
.h1_c00210{height:1089.333333pt;}
.h0_c00210{height:1122.666667pt;}
.w2_c00210{width:26.880000pt;}
.w3_c00210{width:566.400000pt;}
.w1_c00210{width:760.000000pt;}
.w0_c00210{width:793.333333pt;}
.x0_c00210{left:0.000000pt;}
.x5_c00210{left:7.039853pt;}
.x1_c00210{left:16.666667pt;}
.x3_c00210{left:113.946667pt;}
.x4_c00210{left:117.146667pt;}
.x2_c00210{left:121.280000pt;}
.x6_c00210{left:564.373200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4bb1e1d8272799762ce36b17.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00211{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.ls2_c00211{letter-spacing:-0.014400px;}
.ls1_c00211{letter-spacing:0.000000px;}
.ls0_c00211{letter-spacing:0.014400px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00211{word-spacing:-20.030400px;}
.ws1_c00211{word-spacing:0.000000px;}
._1_c00211{width:1061.484000px;}
._2_c00211{width:1146.684000px;}
._0_c00211{width:2079.683700px;}
.fc1_c00211{color:transparent;}
.fc0_c00211{color:rgb(0,0,0);}
.fs1_c00211{font-size:53.280000px;}
.fs0_c00211{font-size:72.000000px;}
.y0_c00211{bottom:0.000000px;}
.y5_c00211{bottom:3.960000px;}
.y1_c00211{bottom:18.750000px;}
.y3_c00211{bottom:36.420030px;}
.y4_c00211{bottom:47.250030px;}
.y7_c00211{bottom:113.490030px;}
.y8_c00211{bottom:257.759970px;}
.y6_c00211{bottom:1134.810000px;}
.y2_c00211{bottom:1174.020000px;}
.h4_c00211{height:20.519985px;}
.h3_c00211{height:20.520000px;}
.h2_c00211{height:64.546875px;}
.h5_c00211{height:1020.600000px;}
.h1_c00211{height:1225.500000px;}
.h0_c00211{height:1263.000000px;}
.w2_c00211{width:30.240000px;}
.w3_c00211{width:637.200000px;}
.w1_c00211{width:855.000000px;}
.w0_c00211{width:892.500000px;}
.x0_c00211{left:0.000000px;}
.x6_c00211{left:7.919835px;}
.x1_c00211{left:18.750000px;}
.x2_c00211{left:109.439925px;}
.x5_c00211{left:131.790000px;}
.x3_c00211{left:157.739850px;}
.x7_c00211{left:629.519700px;}
.x4_c00211{left:735.510000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls2_c00211{letter-spacing:-0.012800pt;}
.ls1_c00211{letter-spacing:0.000000pt;}
.ls0_c00211{letter-spacing:0.012800pt;}
.ws0_c00211{word-spacing:-17.804800pt;}
.ws1_c00211{word-spacing:0.000000pt;}
._1_c00211{width:943.541333pt;}
._2_c00211{width:1019.274667pt;}
._0_c00211{width:1848.607733pt;}
.fs1_c00211{font-size:47.360000pt;}
.fs0_c00211{font-size:64.000000pt;}
.y0_c00211{bottom:0.000000pt;}
.y5_c00211{bottom:3.520000pt;}
.y1_c00211{bottom:16.666667pt;}
.y3_c00211{bottom:32.373360pt;}
.y4_c00211{bottom:42.000027pt;}
.y7_c00211{bottom:100.880027pt;}
.y8_c00211{bottom:229.119973pt;}
.y6_c00211{bottom:1008.720000pt;}
.y2_c00211{bottom:1043.573333pt;}
.h4_c00211{height:18.239987pt;}
.h3_c00211{height:18.240000pt;}
.h2_c00211{height:57.375000pt;}
.h5_c00211{height:907.200000pt;}
.h1_c00211{height:1089.333333pt;}
.h0_c00211{height:1122.666667pt;}
.w2_c00211{width:26.880000pt;}
.w3_c00211{width:566.400000pt;}
.w1_c00211{width:760.000000pt;}
.w0_c00211{width:793.333333pt;}
.x0_c00211{left:0.000000pt;}
.x6_c00211{left:7.039853pt;}
.x1_c00211{left:16.666667pt;}
.x2_c00211{left:97.279933pt;}
.x5_c00211{left:117.146667pt;}
.x3_c00211{left:140.213200pt;}
.x7_c00211{left:559.573067pt;}
.x4_c00211{left:653.786667pt;}
}





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

.ir_c00212:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00212{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00212;src:url('chunks/assets/font_4514d650a743d3b45ded619f.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00212{vertical-align:0.000000px;}
.ls1_c00212{letter-spacing:0.000000px;}
.ls0_c00212{letter-spacing:0.014400px;}
.sc__c00212{text-shadow:none;}
.sc0_c00212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00212{-webkit-text-stroke:0px transparent;}
.sc0_c00212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00212{word-spacing:-20.030400px;}
.ws1_c00212{word-spacing:0.000000px;}
._0_c00212{width:1146.683400px;}
.fc1_c00212{color:transparent;}
.fc0_c00212{color:rgb(0,0,0);}
.fs0_c00212{font-size:72.000000px;}
.y0_c00212{bottom:0.000000px;}
.y4_c00212{bottom:3.960000px;}
.y7_c00212{bottom:11.520000px;}
.y1_c00212{bottom:18.750000px;}
.y2_c00212{bottom:37.860030px;}
.y3_c00212{bottom:52.290030px;}
.y6_c00212{bottom:113.490030px;}
.y5_c00212{bottom:1134.810000px;}
.h4_c00212{height:20.519985px;}
.h3_c00212{height:20.520000px;}
.h2_c00212{height:64.546875px;}
.h5_c00212{height:1020.600000px;}
.h1_c00212{height:1225.500000px;}
.h0_c00212{height:1263.000000px;}
.w2_c00212{width:30.240000px;}
.w3_c00212{width:637.200000px;}
.w1_c00212{width:855.000000px;}
.w0_c00212{width:892.500000px;}
.x0_c00212{left:0.000000px;}
.x5_c00212{left:7.919835px;}
.x1_c00212{left:18.750000px;}
.x3_c00212{left:128.190000px;}
.x4_c00212{left:131.790000px;}
.x2_c00212{left:136.440000px;}
.x6_c00212{left:625.919850px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls1_c00212{letter-spacing:0.000000pt;}
.ls0_c00212{letter-spacing:0.012800pt;}
.ws0_c00212{word-spacing:-17.804800pt;}
.ws1_c00212{word-spacing:0.000000pt;}
._0_c00212{width:1019.274133pt;}
.fs0_c00212{font-size:64.000000pt;}
.y0_c00212{bottom:0.000000pt;}
.y4_c00212{bottom:3.520000pt;}
.y7_c00212{bottom:10.240000pt;}
.y1_c00212{bottom:16.666667pt;}
.y2_c00212{bottom:33.653360pt;}
.y3_c00212{bottom:46.480027pt;}
.y6_c00212{bottom:100.880027pt;}
.y5_c00212{bottom:1008.720000pt;}
.h4_c00212{height:18.239987pt;}
.h3_c00212{height:18.240000pt;}
.h2_c00212{height:57.375000pt;}
.h5_c00212{height:907.200000pt;}
.h1_c00212{height:1089.333333pt;}
.h0_c00212{height:1122.666667pt;}
.w2_c00212{width:26.880000pt;}
.w3_c00212{width:566.400000pt;}
.w1_c00212{width:760.000000pt;}
.w0_c00212{width:793.333333pt;}
.x0_c00212{left:0.000000pt;}
.x5_c00212{left:7.039853pt;}
.x1_c00212{left:16.666667pt;}
.x3_c00212{left:113.946667pt;}
.x4_c00212{left:117.146667pt;}
.x2_c00212{left:121.280000pt;}
.x6_c00212{left:556.373200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66322a6d454205b933328fb8.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:0.014400px;}
.sc__c00213{text-shadow:none;}
.sc0_c00213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00213{-webkit-text-stroke:0px transparent;}
.sc0_c00213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00213{word-spacing:-20.030400px;}
.ws1_c00213{word-spacing:0.000000px;}
._1_c00213{width:1061.484000px;}
._2_c00213{width:1146.684000px;}
._0_c00213{width:2079.683700px;}
.fc1_c00213{color:transparent;}
.fc0_c00213{color:rgb(0,0,0);}
.fs1_c00213{font-size:53.280000px;}
.fs0_c00213{font-size:72.000000px;}
.y0_c00213{bottom:0.000000px;}
.y5_c00213{bottom:3.960000px;}
.y8_c00213{bottom:5.760000px;}
.y1_c00213{bottom:18.750000px;}
.y3_c00213{bottom:36.420030px;}
.y4_c00213{bottom:47.250030px;}
.y7_c00213{bottom:113.490030px;}
.y6_c00213{bottom:1134.810000px;}
.y2_c00213{bottom:1174.020000px;}
.h4_c00213{height:20.519985px;}
.h3_c00213{height:20.520000px;}
.h2_c00213{height:64.546875px;}
.h5_c00213{height:1020.600000px;}
.h1_c00213{height:1225.500000px;}
.h0_c00213{height:1263.000000px;}
.w2_c00213{width:30.240000px;}
.w3_c00213{width:637.200000px;}
.w1_c00213{width:855.000000px;}
.w0_c00213{width:892.500000px;}
.x0_c00213{left:0.000000px;}
.x6_c00213{left:7.919835px;}
.x1_c00213{left:18.750000px;}
.x2_c00213{left:109.439925px;}
.x5_c00213{left:131.790000px;}
.x3_c00213{left:157.739850px;}
.x7_c00213{left:631.919850px;}
.x4_c00213{left:735.510000px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls1_c00213{letter-spacing:0.000000pt;}
.ls0_c00213{letter-spacing:0.012800pt;}
.ws0_c00213{word-spacing:-17.804800pt;}
.ws1_c00213{word-spacing:0.000000pt;}
._1_c00213{width:943.541333pt;}
._2_c00213{width:1019.274667pt;}
._0_c00213{width:1848.607733pt;}
.fs1_c00213{font-size:47.360000pt;}
.fs0_c00213{font-size:64.000000pt;}
.y0_c00213{bottom:0.000000pt;}
.y5_c00213{bottom:3.520000pt;}
.y8_c00213{bottom:5.120000pt;}
.y1_c00213{bottom:16.666667pt;}
.y3_c00213{bottom:32.373360pt;}
.y4_c00213{bottom:42.000027pt;}
.y7_c00213{bottom:100.880027pt;}
.y6_c00213{bottom:1008.720000pt;}
.y2_c00213{bottom:1043.573333pt;}
.h4_c00213{height:18.239987pt;}
.h3_c00213{height:18.240000pt;}
.h2_c00213{height:57.375000pt;}
.h5_c00213{height:907.200000pt;}
.h1_c00213{height:1089.333333pt;}
.h0_c00213{height:1122.666667pt;}
.w2_c00213{width:26.880000pt;}
.w3_c00213{width:566.400000pt;}
.w1_c00213{width:760.000000pt;}
.w0_c00213{width:793.333333pt;}
.x0_c00213{left:0.000000pt;}
.x6_c00213{left:7.039853pt;}
.x1_c00213{left:16.666667pt;}
.x2_c00213{left:97.279933pt;}
.x5_c00213{left:117.146667pt;}
.x3_c00213{left:140.213200pt;}
.x7_c00213{left:561.706533pt;}
.x4_c00213{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_21e2982cb47076995afbf7a3.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls1_c00214{letter-spacing:0.000000px;}
.ls0_c00214{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00214{word-spacing:0.000000px;}
._0_c00214{width:1146.683400px;}
.fc1_c00214{color:transparent;}
.fc0_c00214{color:rgb(0,0,0);}
.fs0_c00214{font-size:72.000000px;}
.y0_c00214{bottom:0.000000px;}
.y4_c00214{bottom:3.960000px;}
.y6_c00214{bottom:4.320000px;}
.y1_c00214{bottom:18.750000px;}
.y2_c00214{bottom:37.860030px;}
.y3_c00214{bottom:52.290030px;}
.y7_c00214{bottom:114.930030px;}
.y8_c00214{bottom:289.799970px;}
.y5_c00214{bottom:1134.450000px;}
.h3_c00214{height:20.520000px;}
.h4_c00214{height:20.879970px;}
.h2_c00214{height:64.546875px;}
.h5_c00214{height:1018.800000px;}
.h1_c00214{height:1225.500000px;}
.h0_c00214{height:1263.000000px;}
.w2_c00214{width:30.240000px;}
.w3_c00214{width:637.200000px;}
.w1_c00214{width:855.000000px;}
.w0_c00214{width:892.500000px;}
.x0_c00214{left:0.000000px;}
.x5_c00214{left:7.919835px;}
.x1_c00214{left:18.750000px;}
.x3_c00214{left:128.190000px;}
.x4_c00214{left:131.790000px;}
.x2_c00214{left:136.440000px;}
.x6_c00214{left:635.219700px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls1_c00214{letter-spacing:0.000000pt;}
.ls0_c00214{letter-spacing:0.012800pt;}
.ws0_c00214{word-spacing:-17.804800pt;}
.ws1_c00214{word-spacing:0.000000pt;}
._0_c00214{width:1019.274133pt;}
.fs0_c00214{font-size:64.000000pt;}
.y0_c00214{bottom:0.000000pt;}
.y4_c00214{bottom:3.520000pt;}
.y6_c00214{bottom:3.840000pt;}
.y1_c00214{bottom:16.666667pt;}
.y2_c00214{bottom:33.653360pt;}
.y3_c00214{bottom:46.480027pt;}
.y7_c00214{bottom:102.160027pt;}
.y8_c00214{bottom:257.599973pt;}
.y5_c00214{bottom:1008.400000pt;}
.h3_c00214{height:18.240000pt;}
.h4_c00214{height:18.559973pt;}
.h2_c00214{height:57.375000pt;}
.h5_c00214{height:905.600000pt;}
.h1_c00214{height:1089.333333pt;}
.h0_c00214{height:1122.666667pt;}
.w2_c00214{width:26.880000pt;}
.w3_c00214{width:566.400000pt;}
.w1_c00214{width:760.000000pt;}
.w0_c00214{width:793.333333pt;}
.x0_c00214{left:0.000000pt;}
.x5_c00214{left:7.039853pt;}
.x1_c00214{left:16.666667pt;}
.x3_c00214{left:113.946667pt;}
.x4_c00214{left:117.146667pt;}
.x2_c00214{left:121.280000pt;}
.x6_c00214{left:564.639733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7945be7de9fb82286a77cf27.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.ls1_c00215{letter-spacing:0.000000px;}
.ls0_c00215{letter-spacing:0.014400px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00215{word-spacing:-20.030400px;}
.ws1_c00215{word-spacing:0.000000px;}
._1_c00215{width:1061.484000px;}
._2_c00215{width:1146.684000px;}
._0_c00215{width:2079.683700px;}
.fc1_c00215{color:transparent;}
.fc0_c00215{color:rgb(0,0,0);}
.fs1_c00215{font-size:53.280000px;}
.fs0_c00215{font-size:72.000000px;}
.yb_c00215{bottom:-97.560002px;}
.ya_c00215{bottom:-56.160000px;}
.y9_c00215{bottom:-14.760015px;}
.y0_c00215{bottom:0.000000px;}
.y5_c00215{bottom:3.960000px;}
.y1_c00215{bottom:18.750000px;}
.y8_c00215{bottom:22.679985px;}
.y3_c00215{bottom:36.420030px;}
.y4_c00215{bottom:47.250030px;}
.y7_c00215{bottom:112.410030px;}
.y6_c00215{bottom:1134.810000px;}
.y2_c00215{bottom:1174.020000px;}
.h4_c00215{height:20.519985px;}
.h3_c00215{height:20.520000px;}
.h2_c00215{height:64.546875px;}
.h5_c00215{height:1021.680000px;}
.h1_c00215{height:1225.500000px;}
.h0_c00215{height:1263.000000px;}
.w2_c00215{width:30.240000px;}
.w3_c00215{width:637.200000px;}
.w1_c00215{width:855.000000px;}
.w0_c00215{width:892.500000px;}
.x0_c00215{left:0.000000px;}
.x6_c00215{left:7.919835px;}
.x1_c00215{left:18.750000px;}
.x2_c00215{left:109.439925px;}
.x5_c00215{left:131.790000px;}
.x3_c00215{left:157.739850px;}
.x7_c00215{left:633.194550px;}
.x4_c00215{left:735.510000px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls1_c00215{letter-spacing:0.000000pt;}
.ls0_c00215{letter-spacing:0.012800pt;}
.ws0_c00215{word-spacing:-17.804800pt;}
.ws1_c00215{word-spacing:0.000000pt;}
._1_c00215{width:943.541333pt;}
._2_c00215{width:1019.274667pt;}
._0_c00215{width:1848.607733pt;}
.fs1_c00215{font-size:47.360000pt;}
.fs0_c00215{font-size:64.000000pt;}
.yb_c00215{bottom:-86.720001pt;}
.ya_c00215{bottom:-49.920000pt;}
.y9_c00215{bottom:-13.120013pt;}
.y0_c00215{bottom:0.000000pt;}
.y5_c00215{bottom:3.520000pt;}
.y1_c00215{bottom:16.666667pt;}
.y8_c00215{bottom:20.159987pt;}
.y3_c00215{bottom:32.373360pt;}
.y4_c00215{bottom:42.000027pt;}
.y7_c00215{bottom:99.920027pt;}
.y6_c00215{bottom:1008.720000pt;}
.y2_c00215{bottom:1043.573333pt;}
.h4_c00215{height:18.239987pt;}
.h3_c00215{height:18.240000pt;}
.h2_c00215{height:57.375000pt;}
.h5_c00215{height:908.160000pt;}
.h1_c00215{height:1089.333333pt;}
.h0_c00215{height:1122.666667pt;}
.w2_c00215{width:26.880000pt;}
.w3_c00215{width:566.400000pt;}
.w1_c00215{width:760.000000pt;}
.w0_c00215{width:793.333333pt;}
.x0_c00215{left:0.000000pt;}
.x6_c00215{left:7.039853pt;}
.x1_c00215{left:16.666667pt;}
.x2_c00215{left:97.279933pt;}
.x5_c00215{left:117.146667pt;}
.x3_c00215{left:140.213200pt;}
.x7_c00215{left:562.839600pt;}
.x4_c00215{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ee417fa7957caf3d03d7ffc1.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00216{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00216{vertical-align:0.000000px;}
.ls2_c00216{letter-spacing:-0.014400px;}
.ls1_c00216{letter-spacing:0.000000px;}
.ls0_c00216{letter-spacing:0.014400px;}
.sc__c00216{text-shadow:none;}
.sc0_c00216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00216{-webkit-text-stroke:0px transparent;}
.sc0_c00216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00216{word-spacing:-20.030400px;}
.ws1_c00216{word-spacing:0.000000px;}
._0_c00216{width:1146.683400px;}
.fc1_c00216{color:transparent;}
.fc0_c00216{color:rgb(0,0,0);}
.fs0_c00216{font-size:72.000000px;}
.y0_c00216{bottom:0.000000px;}
.y4_c00216{bottom:3.960000px;}
.y1_c00216{bottom:18.750000px;}
.y2_c00216{bottom:37.860030px;}
.y3_c00216{bottom:52.290030px;}
.y6_c00216{bottom:114.210015px;}
.y7_c00216{bottom:184.679985px;}
.y5_c00216{bottom:1134.810000px;}
.h4_c00216{height:20.519985px;}
.h3_c00216{height:20.520000px;}
.h2_c00216{height:64.546875px;}
.h5_c00216{height:1019.880000px;}
.h1_c00216{height:1225.500000px;}
.h0_c00216{height:1263.000000px;}
.w2_c00216{width:30.240000px;}
.w3_c00216{width:637.200000px;}
.w1_c00216{width:855.000000px;}
.w0_c00216{width:892.500000px;}
.x0_c00216{left:0.000000px;}
.x5_c00216{left:7.919835px;}
.x1_c00216{left:18.750000px;}
.x3_c00216{left:128.190000px;}
.x4_c00216{left:131.790000px;}
.x2_c00216{left:136.440000px;}
.x6_c00216{left:625.919850px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls2_c00216{letter-spacing:-0.012800pt;}
.ls1_c00216{letter-spacing:0.000000pt;}
.ls0_c00216{letter-spacing:0.012800pt;}
.ws0_c00216{word-spacing:-17.804800pt;}
.ws1_c00216{word-spacing:0.000000pt;}
._0_c00216{width:1019.274133pt;}
.fs0_c00216{font-size:64.000000pt;}
.y0_c00216{bottom:0.000000pt;}
.y4_c00216{bottom:3.520000pt;}
.y1_c00216{bottom:16.666667pt;}
.y2_c00216{bottom:33.653360pt;}
.y3_c00216{bottom:46.480027pt;}
.y6_c00216{bottom:101.520013pt;}
.y7_c00216{bottom:164.159987pt;}
.y5_c00216{bottom:1008.720000pt;}
.h4_c00216{height:18.239987pt;}
.h3_c00216{height:18.240000pt;}
.h2_c00216{height:57.375000pt;}
.h5_c00216{height:906.560000pt;}
.h1_c00216{height:1089.333333pt;}
.h0_c00216{height:1122.666667pt;}
.w2_c00216{width:26.880000pt;}
.w3_c00216{width:566.400000pt;}
.w1_c00216{width:760.000000pt;}
.w0_c00216{width:793.333333pt;}
.x0_c00216{left:0.000000pt;}
.x5_c00216{left:7.039853pt;}
.x1_c00216{left:16.666667pt;}
.x3_c00216{left:113.946667pt;}
.x4_c00216{left:117.146667pt;}
.x2_c00216{left:121.280000pt;}
.x6_c00216{left:556.373200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ee417fa7957caf3d03d7ffc1.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00217{vertical-align:0.000000px;}
.ls1_c00217{letter-spacing:0.000000px;}
.ls0_c00217{letter-spacing:0.014400px;}
.sc__c00217{text-shadow:none;}
.sc0_c00217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00217{-webkit-text-stroke:0px transparent;}
.sc0_c00217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00217{word-spacing:-20.030400px;}
.ws1_c00217{word-spacing:0.000000px;}
._1_c00217{width:1061.484000px;}
._2_c00217{width:1146.684000px;}
._0_c00217{width:2079.683700px;}
.fc1_c00217{color:transparent;}
.fc0_c00217{color:rgb(0,0,0);}
.fs1_c00217{font-size:53.280000px;}
.fs0_c00217{font-size:72.000000px;}
.y0_c00217{bottom:0.000000px;}
.y5_c00217{bottom:3.960000px;}
.y1_c00217{bottom:18.750000px;}
.y3_c00217{bottom:36.420030px;}
.y4_c00217{bottom:47.250030px;}
.y7_c00217{bottom:113.490030px;}
.y8_c00217{bottom:117.359970px;}
.y6_c00217{bottom:1134.810000px;}
.y2_c00217{bottom:1174.020000px;}
.h4_c00217{height:20.519985px;}
.h3_c00217{height:20.520000px;}
.h2_c00217{height:64.546875px;}
.h5_c00217{height:1020.600000px;}
.h1_c00217{height:1225.500000px;}
.h0_c00217{height:1263.000000px;}
.w2_c00217{width:30.240000px;}
.w3_c00217{width:637.200000px;}
.w1_c00217{width:855.000000px;}
.w0_c00217{width:892.500000px;}
.x0_c00217{left:0.000000px;}
.x6_c00217{left:7.919835px;}
.x1_c00217{left:18.750000px;}
.x2_c00217{left:109.439925px;}
.x5_c00217{left:131.790000px;}
.x3_c00217{left:157.739850px;}
.x7_c00217{left:627.194550px;}
.x4_c00217{left:735.510000px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls1_c00217{letter-spacing:0.000000pt;}
.ls0_c00217{letter-spacing:0.012800pt;}
.ws0_c00217{word-spacing:-17.804800pt;}
.ws1_c00217{word-spacing:0.000000pt;}
._1_c00217{width:943.541333pt;}
._2_c00217{width:1019.274667pt;}
._0_c00217{width:1848.607733pt;}
.fs1_c00217{font-size:47.360000pt;}
.fs0_c00217{font-size:64.000000pt;}
.y0_c00217{bottom:0.000000pt;}
.y5_c00217{bottom:3.520000pt;}
.y1_c00217{bottom:16.666667pt;}
.y3_c00217{bottom:32.373360pt;}
.y4_c00217{bottom:42.000027pt;}
.y7_c00217{bottom:100.880027pt;}
.y8_c00217{bottom:104.319973pt;}
.y6_c00217{bottom:1008.720000pt;}
.y2_c00217{bottom:1043.573333pt;}
.h4_c00217{height:18.239987pt;}
.h3_c00217{height:18.240000pt;}
.h2_c00217{height:57.375000pt;}
.h5_c00217{height:907.200000pt;}
.h1_c00217{height:1089.333333pt;}
.h0_c00217{height:1122.666667pt;}
.w2_c00217{width:26.880000pt;}
.w3_c00217{width:566.400000pt;}
.w1_c00217{width:760.000000pt;}
.w0_c00217{width:793.333333pt;}
.x0_c00217{left:0.000000pt;}
.x6_c00217{left:7.039853pt;}
.x1_c00217{left:16.666667pt;}
.x2_c00217{left:97.279933pt;}
.x5_c00217{left:117.146667pt;}
.x3_c00217{left:140.213200pt;}
.x7_c00217{left:557.506267pt;}
.x4_c00217{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ee417fa7957caf3d03d7ffc1.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00218{letter-spacing:0.000000px;}
.ls0_c00218{letter-spacing:0.014400px;}
.sc__c00218{text-shadow:none;}
.sc0_c00218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00218{-webkit-text-stroke:0px transparent;}
.sc0_c00218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00218{word-spacing:-20.030400px;}
.ws1_c00218{word-spacing:0.000000px;}
._0_c00218{width:1146.683400px;}
.fc1_c00218{color:transparent;}
.fc0_c00218{color:rgb(0,0,0);}
.fs0_c00218{font-size:72.000000px;}
.y0_c00218{bottom:0.000000px;}
.y4_c00218{bottom:3.960000px;}
.y1_c00218{bottom:18.750000px;}
.y2_c00218{bottom:37.860030px;}
.y3_c00218{bottom:52.290030px;}
.y6_c00218{bottom:113.490030px;}
.y7_c00218{bottom:161.999970px;}
.y5_c00218{bottom:1134.810000px;}
.h4_c00218{height:20.519985px;}
.h3_c00218{height:20.520000px;}
.h2_c00218{height:64.546875px;}
.h5_c00218{height:1020.600000px;}
.h1_c00218{height:1225.500000px;}
.h0_c00218{height:1263.000000px;}
.w2_c00218{width:30.240000px;}
.w3_c00218{width:637.200000px;}
.w1_c00218{width:855.000000px;}
.w0_c00218{width:892.500000px;}
.x0_c00218{left:0.000000px;}
.x5_c00218{left:7.919835px;}
.x1_c00218{left:18.750000px;}
.x3_c00218{left:128.190000px;}
.x4_c00218{left:131.790000px;}
.x2_c00218{left:136.440000px;}
.x6_c00218{left:629.519700px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls1_c00218{letter-spacing:0.000000pt;}
.ls0_c00218{letter-spacing:0.012800pt;}
.ws0_c00218{word-spacing:-17.804800pt;}
.ws1_c00218{word-spacing:0.000000pt;}
._0_c00218{width:1019.274133pt;}
.fs0_c00218{font-size:64.000000pt;}
.y0_c00218{bottom:0.000000pt;}
.y4_c00218{bottom:3.520000pt;}
.y1_c00218{bottom:16.666667pt;}
.y2_c00218{bottom:33.653360pt;}
.y3_c00218{bottom:46.480027pt;}
.y6_c00218{bottom:100.880027pt;}
.y7_c00218{bottom:143.999973pt;}
.y5_c00218{bottom:1008.720000pt;}
.h4_c00218{height:18.239987pt;}
.h3_c00218{height:18.240000pt;}
.h2_c00218{height:57.375000pt;}
.h5_c00218{height:907.200000pt;}
.h1_c00218{height:1089.333333pt;}
.h0_c00218{height:1122.666667pt;}
.w2_c00218{width:26.880000pt;}
.w3_c00218{width:566.400000pt;}
.w1_c00218{width:760.000000pt;}
.w0_c00218{width:793.333333pt;}
.x0_c00218{left:0.000000pt;}
.x5_c00218{left:7.039853pt;}
.x1_c00218{left:16.666667pt;}
.x3_c00218{left:113.946667pt;}
.x4_c00218{left:117.146667pt;}
.x2_c00218{left:121.280000pt;}
.x6_c00218{left:559.573067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ee417fa7957caf3d03d7ffc1.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00219{letter-spacing:0.000000px;}
.ls0_c00219{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00219{word-spacing:0.000000px;}
._1_c00219{width:1061.484000px;}
._2_c00219{width:1146.684000px;}
._0_c00219{width:2079.683700px;}
.fc1_c00219{color:transparent;}
.fc0_c00219{color:rgb(0,0,0);}
.fs1_c00219{font-size:53.280000px;}
.fs0_c00219{font-size:72.000000px;}
.y0_c00219{bottom:0.000000px;}
.y5_c00219{bottom:3.960000px;}
.y1_c00219{bottom:18.750000px;}
.y8_c00219{bottom:21.599985px;}
.y3_c00219{bottom:36.420030px;}
.y4_c00219{bottom:47.250030px;}
.y7_c00219{bottom:113.490030px;}
.y6_c00219{bottom:1134.810000px;}
.y2_c00219{bottom:1174.020000px;}
.h4_c00219{height:20.519985px;}
.h3_c00219{height:20.520000px;}
.h2_c00219{height:64.546875px;}
.h5_c00219{height:1020.600000px;}
.h1_c00219{height:1225.500000px;}
.h0_c00219{height:1263.000000px;}
.w2_c00219{width:30.240000px;}
.w3_c00219{width:637.200000px;}
.w1_c00219{width:855.000000px;}
.w0_c00219{width:892.500000px;}
.x0_c00219{left:0.000000px;}
.x6_c00219{left:7.919835px;}
.x1_c00219{left:18.750000px;}
.x2_c00219{left:109.439925px;}
.x5_c00219{left:131.790000px;}
.x3_c00219{left:157.739850px;}
.x7_c00219{left:625.919850px;}
.x4_c00219{left:735.510000px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls1_c00219{letter-spacing:0.000000pt;}
.ls0_c00219{letter-spacing:0.012800pt;}
.ws0_c00219{word-spacing:-17.804800pt;}
.ws1_c00219{word-spacing:0.000000pt;}
._1_c00219{width:943.541333pt;}
._2_c00219{width:1019.274667pt;}
._0_c00219{width:1848.607733pt;}
.fs1_c00219{font-size:47.360000pt;}
.fs0_c00219{font-size:64.000000pt;}
.y0_c00219{bottom:0.000000pt;}
.y5_c00219{bottom:3.520000pt;}
.y1_c00219{bottom:16.666667pt;}
.y8_c00219{bottom:19.199987pt;}
.y3_c00219{bottom:32.373360pt;}
.y4_c00219{bottom:42.000027pt;}
.y7_c00219{bottom:100.880027pt;}
.y6_c00219{bottom:1008.720000pt;}
.y2_c00219{bottom:1043.573333pt;}
.h4_c00219{height:18.239987pt;}
.h3_c00219{height:18.240000pt;}
.h2_c00219{height:57.375000pt;}
.h5_c00219{height:907.200000pt;}
.h1_c00219{height:1089.333333pt;}
.h0_c00219{height:1122.666667pt;}
.w2_c00219{width:26.880000pt;}
.w3_c00219{width:566.400000pt;}
.w1_c00219{width:760.000000pt;}
.w0_c00219{width:793.333333pt;}
.x0_c00219{left:0.000000pt;}
.x6_c00219{left:7.039853pt;}
.x1_c00219{left:16.666667pt;}
.x2_c00219{left:97.279933pt;}
.x5_c00219{left:117.146667pt;}
.x3_c00219{left:140.213200pt;}
.x7_c00219{left:556.373200pt;}
.x4_c00219{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5393faf8335dea6fcc8ffbda.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.ls1_c00220{letter-spacing:0.000000px;}
.ls0_c00220{letter-spacing:0.014400px;}
.sc__c00220{text-shadow:none;}
.sc0_c00220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00220{-webkit-text-stroke:0px transparent;}
.sc0_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00220{word-spacing:-20.030400px;}
.ws1_c00220{word-spacing:0.000000px;}
._0_c00220{width:1146.683400px;}
.fc1_c00220{color:transparent;}
.fc0_c00220{color:rgb(0,0,0);}
.fs0_c00220{font-size:72.000000px;}
.y0_c00220{bottom:0.000000px;}
.y4_c00220{bottom:3.960000px;}
.y7_c00220{bottom:12.600000px;}
.y1_c00220{bottom:18.750000px;}
.y2_c00220{bottom:37.860030px;}
.y3_c00220{bottom:52.290030px;}
.y6_c00220{bottom:113.490030px;}
.y5_c00220{bottom:1134.810000px;}
.h4_c00220{height:20.519985px;}
.h3_c00220{height:20.520000px;}
.h2_c00220{height:64.546875px;}
.h5_c00220{height:1020.600000px;}
.h1_c00220{height:1225.500000px;}
.h0_c00220{height:1263.000000px;}
.w2_c00220{width:30.240000px;}
.w3_c00220{width:637.200000px;}
.w1_c00220{width:855.000000px;}
.w0_c00220{width:892.500000px;}
.x0_c00220{left:0.000000px;}
.x5_c00220{left:7.919835px;}
.x1_c00220{left:18.750000px;}
.x3_c00220{left:128.190000px;}
.x4_c00220{left:131.790000px;}
.x2_c00220{left:136.440000px;}
.x6_c00220{left:631.919850px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls1_c00220{letter-spacing:0.000000pt;}
.ls0_c00220{letter-spacing:0.012800pt;}
.ws0_c00220{word-spacing:-17.804800pt;}
.ws1_c00220{word-spacing:0.000000pt;}
._0_c00220{width:1019.274133pt;}
.fs0_c00220{font-size:64.000000pt;}
.y0_c00220{bottom:0.000000pt;}
.y4_c00220{bottom:3.520000pt;}
.y7_c00220{bottom:11.200000pt;}
.y1_c00220{bottom:16.666667pt;}
.y2_c00220{bottom:33.653360pt;}
.y3_c00220{bottom:46.480027pt;}
.y6_c00220{bottom:100.880027pt;}
.y5_c00220{bottom:1008.720000pt;}
.h4_c00220{height:18.239987pt;}
.h3_c00220{height:18.240000pt;}
.h2_c00220{height:57.375000pt;}
.h5_c00220{height:907.200000pt;}
.h1_c00220{height:1089.333333pt;}
.h0_c00220{height:1122.666667pt;}
.w2_c00220{width:26.880000pt;}
.w3_c00220{width:566.400000pt;}
.w1_c00220{width:760.000000pt;}
.w0_c00220{width:793.333333pt;}
.x0_c00220{left:0.000000pt;}
.x5_c00220{left:7.039853pt;}
.x1_c00220{left:16.666667pt;}
.x3_c00220{left:113.946667pt;}
.x4_c00220{left:117.146667pt;}
.x2_c00220{left:121.280000pt;}
.x6_c00220{left:561.706533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_53295d2f2d608720897d2148.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00221;src:url('chunks/assets/font_1bb03f8536bd8d335a288558.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00221{vertical-align:0.000000px;}
.ls2_c00221{letter-spacing:-0.014400px;}
.ls1_c00221{letter-spacing:0.000000px;}
.ls0_c00221{letter-spacing:0.014400px;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00221{word-spacing:-20.030400px;}
.ws1_c00221{word-spacing:-20.016000px;}
.ws2_c00221{word-spacing:0.000000px;}
._8_c00221{margin-left:-1.010700px;}
._d_c00221{width:1.252260px;}
._e_c00221{width:2.320920px;}
._5_c00221{width:3.499200px;}
._c_c00221{width:4.824000px;}
._4_c00221{width:6.069600px;}
._b_c00221{width:8.193600px;}
._f_c00221{width:9.806400px;}
._a_c00221{width:11.689500px;}
._10_c00221{width:14.774400px;}
._9_c00221{width:17.748000px;}
._7_c00221{width:18.881100px;}
._6_c00221{width:23.911200px;}
._3_c00221{width:30.564000px;}
._1_c00221{width:1061.484000px;}
._2_c00221{width:1146.684000px;}
._0_c00221{width:2079.683700px;}
.fc2_c00221{color:transparent;}
.fc1_c00221{color:rgb(3,36,57);}
.fc0_c00221{color:rgb(0,0,0);}
.fs1_c00221{font-size:53.280000px;}
.fs0_c00221{font-size:72.000000px;}
.y0_c00221{bottom:0.000000px;}
.y5_c00221{bottom:3.960000px;}
.y1_c00221{bottom:18.750000px;}
.y3_c00221{bottom:36.420030px;}
.y4_c00221{bottom:47.250030px;}
.y1e_c00221{bottom:104.820030px;}
.y1d_c00221{bottom:146.220000px;}
.y1c_c00221{bottom:187.620000px;}
.y1b_c00221{bottom:228.660000px;}
.y1a_c00221{bottom:270.060000px;}
.y19_c00221{bottom:311.460000px;}
.y18_c00221{bottom:352.860000px;}
.y17_c00221{bottom:394.260000px;}
.y16_c00221{bottom:435.660000px;}
.y15_c00221{bottom:477.060000px;}
.y14_c00221{bottom:520.620000px;}
.y13_c00221{bottom:562.380000px;}
.y12_c00221{bottom:603.780000px;}
.y11_c00221{bottom:645.180000px;}
.y10_c00221{bottom:686.580000px;}
.yf_c00221{bottom:727.620000px;}
.ye_c00221{bottom:789.540000px;}
.yd_c00221{bottom:830.940000px;}
.yc_c00221{bottom:872.340000px;}
.yb_c00221{bottom:913.740000px;}
.ya_c00221{bottom:955.140000px;}
.y9_c00221{bottom:996.540000px;}
.y8_c00221{bottom:1037.940000px;}
.y7_c00221{bottom:1079.340000px;}
.y6_c00221{bottom:1120.740000px;}
.y2_c00221{bottom:1174.020000px;}
.h3_c00221{height:20.520000px;}
.h2_c00221{height:64.546875px;}
.h4_c00221{height:65.003906px;}
.h1_c00221{height:1225.500000px;}
.h0_c00221{height:1263.000000px;}
.w2_c00221{width:30.240000px;}
.w1_c00221{width:855.000000px;}
.w0_c00221{width:892.500000px;}
.x0_c00221{left:0.000000px;}
.x1_c00221{left:18.750000px;}
.x2_c00221{left:109.439925px;}
.x5_c00221{left:151.965150px;}
.x3_c00221{left:157.739850px;}
.x4_c00221{left:735.510000px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls2_c00221{letter-spacing:-0.012800pt;}
.ls1_c00221{letter-spacing:0.000000pt;}
.ls0_c00221{letter-spacing:0.012800pt;}
.ws0_c00221{word-spacing:-17.804800pt;}
.ws1_c00221{word-spacing:-17.792000pt;}
.ws2_c00221{word-spacing:0.000000pt;}
._8_c00221{margin-left:-0.898400pt;}
._d_c00221{width:1.113120pt;}
._e_c00221{width:2.063040pt;}
._5_c00221{width:3.110400pt;}
._c_c00221{width:4.288000pt;}
._4_c00221{width:5.395200pt;}
._b_c00221{width:7.283200pt;}
._f_c00221{width:8.716800pt;}
._a_c00221{width:10.390667pt;}
._10_c00221{width:13.132800pt;}
._9_c00221{width:15.776000pt;}
._7_c00221{width:16.783200pt;}
._6_c00221{width:21.254400pt;}
._3_c00221{width:27.168000pt;}
._1_c00221{width:943.541333pt;}
._2_c00221{width:1019.274667pt;}
._0_c00221{width:1848.607733pt;}
.fs1_c00221{font-size:47.360000pt;}
.fs0_c00221{font-size:64.000000pt;}
.y0_c00221{bottom:0.000000pt;}
.y5_c00221{bottom:3.520000pt;}
.y1_c00221{bottom:16.666667pt;}
.y3_c00221{bottom:32.373360pt;}
.y4_c00221{bottom:42.000027pt;}
.y1e_c00221{bottom:93.173360pt;}
.y1d_c00221{bottom:129.973333pt;}
.y1c_c00221{bottom:166.773333pt;}
.y1b_c00221{bottom:203.253333pt;}
.y1a_c00221{bottom:240.053333pt;}
.y19_c00221{bottom:276.853333pt;}
.y18_c00221{bottom:313.653333pt;}
.y17_c00221{bottom:350.453333pt;}
.y16_c00221{bottom:387.253333pt;}
.y15_c00221{bottom:424.053333pt;}
.y14_c00221{bottom:462.773333pt;}
.y13_c00221{bottom:499.893333pt;}
.y12_c00221{bottom:536.693333pt;}
.y11_c00221{bottom:573.493333pt;}
.y10_c00221{bottom:610.293333pt;}
.yf_c00221{bottom:646.773333pt;}
.ye_c00221{bottom:701.813333pt;}
.yd_c00221{bottom:738.613333pt;}
.yc_c00221{bottom:775.413333pt;}
.yb_c00221{bottom:812.213333pt;}
.ya_c00221{bottom:849.013333pt;}
.y9_c00221{bottom:885.813333pt;}
.y8_c00221{bottom:922.613333pt;}
.y7_c00221{bottom:959.413333pt;}
.y6_c00221{bottom:996.213333pt;}
.y2_c00221{bottom:1043.573333pt;}
.h3_c00221{height:18.240000pt;}
.h2_c00221{height:57.375000pt;}
.h4_c00221{height:57.781250pt;}
.h1_c00221{height:1089.333333pt;}
.h0_c00221{height:1122.666667pt;}
.w2_c00221{width:26.880000pt;}
.w1_c00221{width:760.000000pt;}
.w0_c00221{width:793.333333pt;}
.x0_c00221{left:0.000000pt;}
.x1_c00221{left:16.666667pt;}
.x2_c00221{left:97.279933pt;}
.x5_c00221{left:135.080133pt;}
.x3_c00221{left:140.213200pt;}
.x4_c00221{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c9e4aaef468804da9bd3e2ba.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00222{vertical-align:0.000000px;}
.ls4_c00222{letter-spacing:-0.014400px;}
.ls3_c00222{letter-spacing:0.000000px;}
.ls0_c00222{letter-spacing:0.014400px;}
.ls7_c00222{letter-spacing:0.170496px;}
.ls5_c00222{letter-spacing:0.239760px;}
.ls8_c00222{letter-spacing:0.410256px;}
.ls6_c00222{letter-spacing:0.479520px;}
.ls2_c00222{letter-spacing:3.992160px;}
.ls1_c00222{letter-spacing:16.959360px;}
.sc__c00222{text-shadow:none;}
.sc0_c00222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00222{-webkit-text-stroke:0px transparent;}
.sc0_c00222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00222{word-spacing:-20.030400px;}
.ws1_c00222{word-spacing:-20.001600px;}
.ws2_c00222{word-spacing:-15.051600px;}
.ws3_c00222{word-spacing:0.000000px;}
._11_c00222{margin-left:-1.000800px;}
._d_c00222{width:1.044000px;}
._b_c00222{width:2.088000px;}
._4_c00222{width:3.124800px;}
._5_c00222{width:4.701600px;}
._a_c00222{width:5.702400px;}
._3_c00222{width:6.933600px;}
._1_c00222{width:8.899200px;}
._c_c00222{width:9.996900px;}
._7_c00222{width:13.758600px;}
._6_c00222{width:14.766000px;}
._9_c00222{width:16.199100px;}
._10_c00222{width:18.957600px;}
._f_c00222{width:24.341700px;}
._2_c00222{width:28.324800px;}
._e_c00222{width:30.722400px;}
._8_c00222{width:31.946400px;}
._0_c00222{width:1146.683400px;}
.fc2_c00222{color:transparent;}
.fc1_c00222{color:rgb(3,36,57);}
.fc0_c00222{color:rgb(0,0,0);}
.fs1_c00222{font-size:53.280000px;}
.fs0_c00222{font-size:72.000000px;}
.y0_c00222{bottom:0.000000px;}
.y4_c00222{bottom:3.960000px;}
.y1_c00222{bottom:18.750000px;}
.y2_c00222{bottom:37.860030px;}
.y3_c00222{bottom:52.290030px;}
.y1f_c00222{bottom:97.980015px;}
.y1e_c00222{bottom:113.460015px;}
.y1d_c00222{bottom:128.940015px;}
.y1c_c00222{bottom:168.540000px;}
.y1b_c00222{bottom:209.940000px;}
.y1a_c00222{bottom:251.340000px;}
.y19_c00222{bottom:292.740000px;}
.y18_c00222{bottom:334.140000px;}
.y17_c00222{bottom:375.540000px;}
.y16_c00222{bottom:416.940000px;}
.y15_c00222{bottom:458.340000px;}
.y14_c00222{bottom:499.740000px;}
.y13_c00222{bottom:541.140000px;}
.y12_c00222{bottom:582.540000px;}
.y11_c00222{bottom:623.940000px;}
.y10_c00222{bottom:665.340000px;}
.yf_c00222{bottom:706.740000px;}
.ye_c00222{bottom:748.140000px;}
.yd_c00222{bottom:789.540000px;}
.yc_c00222{bottom:830.940000px;}
.yb_c00222{bottom:872.340000px;}
.ya_c00222{bottom:913.740000px;}
.y9_c00222{bottom:955.140000px;}
.y8_c00222{bottom:996.540000px;}
.y7_c00222{bottom:1037.940000px;}
.y6_c00222{bottom:1079.340000px;}
.y5_c00222{bottom:1120.740000px;}
.h3_c00222{height:20.520000px;}
.h4_c00222{height:47.764688px;}
.h2_c00222{height:64.546875px;}
.h1_c00222{height:1225.500000px;}
.h0_c00222{height:1263.000000px;}
.w2_c00222{width:30.240000px;}
.w1_c00222{width:855.000000px;}
.w0_c00222{width:892.500000px;}
.x0_c00222{left:0.000000px;}
.x1_c00222{left:18.750000px;}
.x4_c00222{left:109.439925px;}
.x3_c00222{left:128.190000px;}
.x2_c00222{left:136.440000px;}
.x6_c00222{left:141.390000px;}
.x5_c00222{left:151.965150px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls4_c00222{letter-spacing:-0.012800pt;}
.ls3_c00222{letter-spacing:0.000000pt;}
.ls0_c00222{letter-spacing:0.012800pt;}
.ls7_c00222{letter-spacing:0.151552pt;}
.ls5_c00222{letter-spacing:0.213120pt;}
.ls8_c00222{letter-spacing:0.364672pt;}
.ls6_c00222{letter-spacing:0.426240pt;}
.ls2_c00222{letter-spacing:3.548587pt;}
.ls1_c00222{letter-spacing:15.074987pt;}
.ws0_c00222{word-spacing:-17.804800pt;}
.ws1_c00222{word-spacing:-17.779200pt;}
.ws2_c00222{word-spacing:-13.379200pt;}
.ws3_c00222{word-spacing:0.000000pt;}
._11_c00222{margin-left:-0.889600pt;}
._d_c00222{width:0.928000pt;}
._b_c00222{width:1.856000pt;}
._4_c00222{width:2.777600pt;}
._5_c00222{width:4.179200pt;}
._a_c00222{width:5.068800pt;}
._3_c00222{width:6.163200pt;}
._1_c00222{width:7.910400pt;}
._c_c00222{width:8.886133pt;}
._7_c00222{width:12.229867pt;}
._6_c00222{width:13.125333pt;}
._9_c00222{width:14.399200pt;}
._10_c00222{width:16.851200pt;}
._f_c00222{width:21.637067pt;}
._2_c00222{width:25.177600pt;}
._e_c00222{width:27.308800pt;}
._8_c00222{width:28.396800pt;}
._0_c00222{width:1019.274133pt;}
.fs1_c00222{font-size:47.360000pt;}
.fs0_c00222{font-size:64.000000pt;}
.y0_c00222{bottom:0.000000pt;}
.y4_c00222{bottom:3.520000pt;}
.y1_c00222{bottom:16.666667pt;}
.y2_c00222{bottom:33.653360pt;}
.y3_c00222{bottom:46.480027pt;}
.y1f_c00222{bottom:87.093347pt;}
.y1e_c00222{bottom:100.853347pt;}
.y1d_c00222{bottom:114.613347pt;}
.y1c_c00222{bottom:149.813333pt;}
.y1b_c00222{bottom:186.613333pt;}
.y1a_c00222{bottom:223.413333pt;}
.y19_c00222{bottom:260.213333pt;}
.y18_c00222{bottom:297.013333pt;}
.y17_c00222{bottom:333.813333pt;}
.y16_c00222{bottom:370.613333pt;}
.y15_c00222{bottom:407.413333pt;}
.y14_c00222{bottom:444.213333pt;}
.y13_c00222{bottom:481.013333pt;}
.y12_c00222{bottom:517.813333pt;}
.y11_c00222{bottom:554.613333pt;}
.y10_c00222{bottom:591.413333pt;}
.yf_c00222{bottom:628.213333pt;}
.ye_c00222{bottom:665.013333pt;}
.yd_c00222{bottom:701.813333pt;}
.yc_c00222{bottom:738.613333pt;}
.yb_c00222{bottom:775.413333pt;}
.ya_c00222{bottom:812.213333pt;}
.y9_c00222{bottom:849.013333pt;}
.y8_c00222{bottom:885.813333pt;}
.y7_c00222{bottom:922.613333pt;}
.y6_c00222{bottom:959.413333pt;}
.y5_c00222{bottom:996.213333pt;}
.h3_c00222{height:18.240000pt;}
.h4_c00222{height:42.457500pt;}
.h2_c00222{height:57.375000pt;}
.h1_c00222{height:1089.333333pt;}
.h0_c00222{height:1122.666667pt;}
.w2_c00222{width:26.880000pt;}
.w1_c00222{width:760.000000pt;}
.w0_c00222{width:793.333333pt;}
.x0_c00222{left:0.000000pt;}
.x1_c00222{left:16.666667pt;}
.x4_c00222{left:97.279933pt;}
.x3_c00222{left:113.946667pt;}
.x2_c00222{left:121.280000pt;}
.x6_c00222{left:125.680000pt;}
.x5_c00222{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d8387f919fd1c3976ca1d22.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00223{letter-spacing:-0.014400px;}
.ls1_c00223{letter-spacing:0.000000px;}
.ls0_c00223{letter-spacing:0.014400px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00223{word-spacing:-20.030400px;}
.ws1_c00223{word-spacing:0.000000px;}
._6_c00223{width:1.332000px;}
._c_c00223{width:3.088800px;}
._8_c00223{width:4.212000px;}
._a_c00223{width:5.637600px;}
._11_c00223{width:7.927200px;}
._9_c00223{width:9.388800px;}
._3_c00223{width:10.944000px;}
._b_c00223{width:12.902400px;}
._10_c00223{width:14.400000px;}
._7_c00223{width:15.652800px;}
._12_c00223{width:21.556800px;}
._d_c00223{width:22.651200px;}
._f_c00223{width:29.030400px;}
._5_c00223{width:32.996100px;}
._4_c00223{width:34.099200px;}
._e_c00223{width:37.965600px;}
._1_c00223{width:1061.484000px;}
._2_c00223{width:1146.684000px;}
._0_c00223{width:2079.683700px;}
.fc2_c00223{color:transparent;}
.fc1_c00223{color:rgb(3,36,57);}
.fc0_c00223{color:rgb(0,0,0);}
.fs1_c00223{font-size:53.280000px;}
.fs0_c00223{font-size:72.000000px;}
.y0_c00223{bottom:0.000000px;}
.y5_c00223{bottom:3.960000px;}
.y1_c00223{bottom:18.750000px;}
.y3_c00223{bottom:36.420030px;}
.y4_c00223{bottom:47.250030px;}
.y1e_c00223{bottom:127.140030px;}
.y1d_c00223{bottom:168.540000px;}
.y1c_c00223{bottom:209.940000px;}
.y1b_c00223{bottom:251.340000px;}
.y1a_c00223{bottom:292.740000px;}
.y19_c00223{bottom:334.140000px;}
.y18_c00223{bottom:375.540000px;}
.y17_c00223{bottom:416.940000px;}
.y16_c00223{bottom:458.340000px;}
.y15_c00223{bottom:499.740000px;}
.y14_c00223{bottom:541.140000px;}
.y13_c00223{bottom:582.540000px;}
.y12_c00223{bottom:623.940000px;}
.y11_c00223{bottom:665.340000px;}
.y10_c00223{bottom:706.740000px;}
.yf_c00223{bottom:748.140000px;}
.ye_c00223{bottom:789.540000px;}
.yd_c00223{bottom:830.940000px;}
.yc_c00223{bottom:872.340000px;}
.yb_c00223{bottom:913.740000px;}
.ya_c00223{bottom:955.140000px;}
.y9_c00223{bottom:996.540000px;}
.y8_c00223{bottom:1037.940000px;}
.y7_c00223{bottom:1079.340000px;}
.y6_c00223{bottom:1120.740000px;}
.y2_c00223{bottom:1174.020000px;}
.h3_c00223{height:20.520000px;}
.h2_c00223{height:64.546875px;}
.h1_c00223{height:1225.500000px;}
.h0_c00223{height:1263.000000px;}
.w2_c00223{width:30.240000px;}
.w1_c00223{width:855.000000px;}
.w0_c00223{width:892.500000px;}
.x0_c00223{left:0.000000px;}
.x1_c00223{left:18.750000px;}
.x2_c00223{left:109.439925px;}
.x5_c00223{left:151.965150px;}
.x3_c00223{left:157.739850px;}
.x4_c00223{left:735.510000px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls2_c00223{letter-spacing:-0.012800pt;}
.ls1_c00223{letter-spacing:0.000000pt;}
.ls0_c00223{letter-spacing:0.012800pt;}
.ws0_c00223{word-spacing:-17.804800pt;}
.ws1_c00223{word-spacing:0.000000pt;}
._6_c00223{width:1.184000pt;}
._c_c00223{width:2.745600pt;}
._8_c00223{width:3.744000pt;}
._a_c00223{width:5.011200pt;}
._11_c00223{width:7.046400pt;}
._9_c00223{width:8.345600pt;}
._3_c00223{width:9.728000pt;}
._b_c00223{width:11.468800pt;}
._10_c00223{width:12.800000pt;}
._7_c00223{width:13.913600pt;}
._12_c00223{width:19.161600pt;}
._d_c00223{width:20.134400pt;}
._f_c00223{width:25.804800pt;}
._5_c00223{width:29.329867pt;}
._4_c00223{width:30.310400pt;}
._e_c00223{width:33.747200pt;}
._1_c00223{width:943.541333pt;}
._2_c00223{width:1019.274667pt;}
._0_c00223{width:1848.607733pt;}
.fs1_c00223{font-size:47.360000pt;}
.fs0_c00223{font-size:64.000000pt;}
.y0_c00223{bottom:0.000000pt;}
.y5_c00223{bottom:3.520000pt;}
.y1_c00223{bottom:16.666667pt;}
.y3_c00223{bottom:32.373360pt;}
.y4_c00223{bottom:42.000027pt;}
.y1e_c00223{bottom:113.013360pt;}
.y1d_c00223{bottom:149.813333pt;}
.y1c_c00223{bottom:186.613333pt;}
.y1b_c00223{bottom:223.413333pt;}
.y1a_c00223{bottom:260.213333pt;}
.y19_c00223{bottom:297.013333pt;}
.y18_c00223{bottom:333.813333pt;}
.y17_c00223{bottom:370.613333pt;}
.y16_c00223{bottom:407.413333pt;}
.y15_c00223{bottom:444.213333pt;}
.y14_c00223{bottom:481.013333pt;}
.y13_c00223{bottom:517.813333pt;}
.y12_c00223{bottom:554.613333pt;}
.y11_c00223{bottom:591.413333pt;}
.y10_c00223{bottom:628.213333pt;}
.yf_c00223{bottom:665.013333pt;}
.ye_c00223{bottom:701.813333pt;}
.yd_c00223{bottom:738.613333pt;}
.yc_c00223{bottom:775.413333pt;}
.yb_c00223{bottom:812.213333pt;}
.ya_c00223{bottom:849.013333pt;}
.y9_c00223{bottom:885.813333pt;}
.y8_c00223{bottom:922.613333pt;}
.y7_c00223{bottom:959.413333pt;}
.y6_c00223{bottom:996.213333pt;}
.y2_c00223{bottom:1043.573333pt;}
.h3_c00223{height:18.240000pt;}
.h2_c00223{height:57.375000pt;}
.h1_c00223{height:1089.333333pt;}
.h0_c00223{height:1122.666667pt;}
.w2_c00223{width:26.880000pt;}
.w1_c00223{width:760.000000pt;}
.w0_c00223{width:793.333333pt;}
.x0_c00223{left:0.000000pt;}
.x1_c00223{left:16.666667pt;}
.x2_c00223{left:97.279933pt;}
.x5_c00223{left:135.080133pt;}
.x3_c00223{left:140.213200pt;}
.x4_c00223{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_b2b2c5233d9cb184934b52c1.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00224;src:url('chunks/assets/font_c72bfc6ee897cb9edf4580d5.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00224;src:url('chunks/assets/font_21975345962b0a6cbbe77c4c.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:1.104492;font-style: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);}
.v1_c00224{vertical-align:-8.640000px;}
.v0_c00224{vertical-align:0.000000px;}
.lsa_c00224{letter-spacing:-0.064800px;}
.lsb_c00224{letter-spacing:-0.050400px;}
.lsc_c00224{letter-spacing:-0.043200px;}
.ls9_c00224{letter-spacing:-0.014400px;}
.ls8_c00224{letter-spacing:0.000000px;}
.ls1_c00224{letter-spacing:0.010800px;}
.ls4_c00224{letter-spacing:0.012000px;}
.ls0_c00224{letter-spacing:0.014400px;}
.ls2_c00224{letter-spacing:0.036000px;}
.lsf_c00224{letter-spacing:0.170496px;}
.ls7_c00224{letter-spacing:0.191160px;}
.lsd_c00224{letter-spacing:0.239760px;}
.ls10_c00224{letter-spacing:0.410256px;}
.ls5_c00224{letter-spacing:0.470640px;}
.lse_c00224{letter-spacing:0.479520px;}
.ls3_c00224{letter-spacing:1.016400px;}
.ls6_c00224{letter-spacing:16.959360px;}
.sc__c00224{text-shadow:none;}
.sc0_c00224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00224{-webkit-text-stroke:0px transparent;}
.sc0_c00224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00224{word-spacing:-20.052000px;}
.ws0_c00224{word-spacing:-20.030400px;}
.ws2_c00224{word-spacing:-20.016000px;}
.ws3_c00224{word-spacing:-15.051600px;}
.ws4_c00224{word-spacing:-14.982336px;}
.ws5_c00224{word-spacing:0.000000px;}
._b_c00224{margin-left:-1.313460px;}
._7_c00224{width:1.756800px;}
._c_c00224{width:3.150720px;}
._2_c00224{width:4.312800px;}
._1_c00224{width:6.285600px;}
._a_c00224{width:7.509600px;}
._6_c00224{width:8.560800px;}
._5_c00224{width:9.712800px;}
._8_c00224{width:11.023200px;}
._4_c00224{width:12.312000px;}
._3_c00224{width:13.507200px;}
._9_c00224{width:18.697500px;}
._0_c00224{width:1146.683400px;}
.fc2_c00224{color:transparent;}
.fc1_c00224{color:rgb(3,36,57);}
.fc0_c00224{color:rgb(0,0,0);}
.fs1_c00224{font-size:47.520000px;}
.fs2_c00224{font-size:53.280000px;}
.fs0_c00224{font-size:72.000000px;}
.y0_c00224{bottom:0.000000px;}
.y4_c00224{bottom:3.960000px;}
.y1_c00224{bottom:18.750000px;}
.y2_c00224{bottom:37.860030px;}
.y3_c00224{bottom:52.290030px;}
.y1e_c00224{bottom:94.740030px;}
.y1d_c00224{bottom:114.180030px;}
.y1c_c00224{bottom:130.020030px;}
.y1b_c00224{bottom:169.620000px;}
.y1a_c00224{bottom:210.660000px;}
.y19_c00224{bottom:252.060000px;}
.y18_c00224{bottom:293.460000px;}
.y17_c00224{bottom:334.860000px;}
.y16_c00224{bottom:376.260000px;}
.y15_c00224{bottom:417.660000px;}
.y14_c00224{bottom:459.060000px;}
.y13_c00224{bottom:500.460000px;}
.y12_c00224{bottom:541.860000px;}
.y11_c00224{bottom:603.420000px;}
.y10_c00224{bottom:645.180000px;}
.yf_c00224{bottom:686.580000px;}
.ye_c00224{bottom:727.980000px;}
.yd_c00224{bottom:769.020000px;}
.yc_c00224{bottom:830.940000px;}
.yb_c00224{bottom:872.340000px;}
.ya_c00224{bottom:913.740000px;}
.y9_c00224{bottom:955.140000px;}
.y8_c00224{bottom:996.540000px;}
.y7_c00224{bottom:1037.940000px;}
.y6_c00224{bottom:1079.340000px;}
.y5_c00224{bottom:1120.740000px;}
.h3_c00224{height:20.520000px;}
.h5_c00224{height:47.764688px;}
.h2_c00224{height:64.546875px;}
.h4_c00224{height:65.003906px;}
.h1_c00224{height:1225.500000px;}
.h0_c00224{height:1263.000000px;}
.w2_c00224{width:30.240000px;}
.w1_c00224{width:855.000000px;}
.w0_c00224{width:892.500000px;}
.x0_c00224{left:0.000000px;}
.x1_c00224{left:18.750000px;}
.x4_c00224{left:109.439925px;}
.x3_c00224{left:128.190000px;}
.x2_c00224{left:136.440000px;}
.x6_c00224{left:141.390000px;}
.x5_c00224{left:151.965150px;}
@media print{
.v1_c00224{vertical-align:-7.680000pt;}
.v0_c00224{vertical-align:0.000000pt;}
.lsa_c00224{letter-spacing:-0.057600pt;}
.lsb_c00224{letter-spacing:-0.044800pt;}
.lsc_c00224{letter-spacing:-0.038400pt;}
.ls9_c00224{letter-spacing:-0.012800pt;}
.ls8_c00224{letter-spacing:0.000000pt;}
.ls1_c00224{letter-spacing:0.009600pt;}
.ls4_c00224{letter-spacing:0.010667pt;}
.ls0_c00224{letter-spacing:0.012800pt;}
.ls2_c00224{letter-spacing:0.032000pt;}
.lsf_c00224{letter-spacing:0.151552pt;}
.ls7_c00224{letter-spacing:0.169920pt;}
.lsd_c00224{letter-spacing:0.213120pt;}
.ls10_c00224{letter-spacing:0.364672pt;}
.ls5_c00224{letter-spacing:0.418347pt;}
.lse_c00224{letter-spacing:0.426240pt;}
.ls3_c00224{letter-spacing:0.903467pt;}
.ls6_c00224{letter-spacing:15.074987pt;}
.ws1_c00224{word-spacing:-17.824000pt;}
.ws0_c00224{word-spacing:-17.804800pt;}
.ws2_c00224{word-spacing:-17.792000pt;}
.ws3_c00224{word-spacing:-13.379200pt;}
.ws4_c00224{word-spacing:-13.317632pt;}
.ws5_c00224{word-spacing:0.000000pt;}
._b_c00224{margin-left:-1.167520pt;}
._7_c00224{width:1.561600pt;}
._c_c00224{width:2.800640pt;}
._2_c00224{width:3.833600pt;}
._1_c00224{width:5.587200pt;}
._a_c00224{width:6.675200pt;}
._6_c00224{width:7.609600pt;}
._5_c00224{width:8.633600pt;}
._8_c00224{width:9.798400pt;}
._4_c00224{width:10.944000pt;}
._3_c00224{width:12.006400pt;}
._9_c00224{width:16.620000pt;}
._0_c00224{width:1019.274133pt;}
.fs1_c00224{font-size:42.240000pt;}
.fs2_c00224{font-size:47.360000pt;}
.fs0_c00224{font-size:64.000000pt;}
.y0_c00224{bottom:0.000000pt;}
.y4_c00224{bottom:3.520000pt;}
.y1_c00224{bottom:16.666667pt;}
.y2_c00224{bottom:33.653360pt;}
.y3_c00224{bottom:46.480027pt;}
.y1e_c00224{bottom:84.213360pt;}
.y1d_c00224{bottom:101.493360pt;}
.y1c_c00224{bottom:115.573360pt;}
.y1b_c00224{bottom:150.773333pt;}
.y1a_c00224{bottom:187.253333pt;}
.y19_c00224{bottom:224.053333pt;}
.y18_c00224{bottom:260.853333pt;}
.y17_c00224{bottom:297.653333pt;}
.y16_c00224{bottom:334.453333pt;}
.y15_c00224{bottom:371.253333pt;}
.y14_c00224{bottom:408.053333pt;}
.y13_c00224{bottom:444.853333pt;}
.y12_c00224{bottom:481.653333pt;}
.y11_c00224{bottom:536.373333pt;}
.y10_c00224{bottom:573.493333pt;}
.yf_c00224{bottom:610.293333pt;}
.ye_c00224{bottom:647.093333pt;}
.yd_c00224{bottom:683.573333pt;}
.yc_c00224{bottom:738.613333pt;}
.yb_c00224{bottom:775.413333pt;}
.ya_c00224{bottom:812.213333pt;}
.y9_c00224{bottom:849.013333pt;}
.y8_c00224{bottom:885.813333pt;}
.y7_c00224{bottom:922.613333pt;}
.y6_c00224{bottom:959.413333pt;}
.y5_c00224{bottom:996.213333pt;}
.h3_c00224{height:18.240000pt;}
.h5_c00224{height:42.457500pt;}
.h2_c00224{height:57.375000pt;}
.h4_c00224{height:57.781250pt;}
.h1_c00224{height:1089.333333pt;}
.h0_c00224{height:1122.666667pt;}
.w2_c00224{width:26.880000pt;}
.w1_c00224{width:760.000000pt;}
.w0_c00224{width:793.333333pt;}
.x0_c00224{left:0.000000pt;}
.x1_c00224{left:16.666667pt;}
.x4_c00224{left:97.279933pt;}
.x3_c00224{left:113.946667pt;}
.x2_c00224{left:121.280000pt;}
.x6_c00224{left:125.680000pt;}
.x5_c00224{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_12637e9b977c7317cf5f3cf5.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00225;src:url('chunks/assets/font_f7a8de7eae1d2208581c217e.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00225;src:url('chunks/assets/font_4a519e9a53fbb72b1fc37690.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00225{vertical-align:-8.640000px;}
.v0_c00225{vertical-align:0.000000px;}
.lse_c00225{letter-spacing:-0.014400px;}
.lsb_c00225{letter-spacing:0.000000px;}
.ls4_c00225{letter-spacing:0.006900px;}
.ls5_c00225{letter-spacing:0.010800px;}
.ls3_c00225{letter-spacing:0.011400px;}
.ls1_c00225{letter-spacing:0.012000px;}
.ls0_c00225{letter-spacing:0.014400px;}
.lsf_c00225{letter-spacing:0.036000px;}
.ls8_c00225{letter-spacing:0.274080px;}
.ls7_c00225{letter-spacing:0.274380px;}
.ls9_c00225{letter-spacing:0.274680px;}
.ls2_c00225{letter-spacing:0.470640px;}
.lsd_c00225{letter-spacing:0.479520px;}
.lsc_c00225{letter-spacing:1.159200px;}
.lsa_c00225{letter-spacing:6.509400px;}
.ls6_c00225{letter-spacing:6.985800px;}
.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:-20.030400px;}
.ws2_c00225{word-spacing:-20.016000px;}
.ws1_c00225{word-spacing:-0.072000px;}
.ws3_c00225{word-spacing:0.000000px;}
._5_c00225{margin-left:-1.012320px;}
._3_c00225{width:1.177380px;}
._6_c00225{width:2.250660px;}
._c_c00225{width:4.759200px;}
._4_c00225{width:6.228000px;}
._b_c00225{width:7.809900px;}
._a_c00225{width:9.295200px;}
._8_c00225{width:11.099760px;}
._d_c00225{width:13.320000px;}
._7_c00225{width:14.889600px;}
._9_c00225{width:17.287200px;}
._e_c00225{width:25.092000px;}
._1_c00225{width:1061.484000px;}
._2_c00225{width:1146.684000px;}
._0_c00225{width:2079.683700px;}
.fc2_c00225{color:transparent;}
.fc1_c00225{color:rgb(3,36,57);}
.fc0_c00225{color:rgb(0,0,0);}
.fs2_c00225{font-size:47.520000px;}
.fs1_c00225{font-size:53.280000px;}
.fs0_c00225{font-size:72.000000px;}
.y0_c00225{bottom:0.000000px;}
.y5_c00225{bottom:3.960000px;}
.y1_c00225{bottom:18.750000px;}
.y3_c00225{bottom:36.420030px;}
.y4_c00225{bottom:47.250030px;}
.y15_c00225{bottom:95.460015px;}
.y14_c00225{bottom:136.860000px;}
.y13_c00225{bottom:178.260000px;}
.y12_c00225{bottom:219.660000px;}
.y11_c00225{bottom:261.060000px;}
.y10_c00225{bottom:302.460000px;}
.yf_c00225{bottom:343.860000px;}
.ye_c00225{bottom:385.260000px;}
.yd_c00225{bottom:426.660000px;}
.yc_c00225{bottom:468.060000px;}
.yb_c00225{bottom:509.460000px;}
.ya_c00225{bottom:562.380000px;}
.y9_c00225{bottom:575.340000px;}
.y8_c00225{bottom:1037.940000px;}
.y7_c00225{bottom:1079.340000px;}
.y6_c00225{bottom:1120.740000px;}
.y2_c00225{bottom:1174.020000px;}
.h3_c00225{height:20.520000px;}
.h4_c00225{height:47.764688px;}
.h2_c00225{height:64.546875px;}
.h1_c00225{height:1225.500000px;}
.h0_c00225{height:1263.000000px;}
.w2_c00225{width:30.240000px;}
.w1_c00225{width:855.000000px;}
.w0_c00225{width:892.500000px;}
.x0_c00225{left:0.000000px;}
.x1_c00225{left:18.750000px;}
.x2_c00225{left:109.439925px;}
.x7_c00225{left:151.965150px;}
.x3_c00225{left:157.739850px;}
.x6_c00225{left:288.533550px;}
.x4_c00225{left:735.510000px;}
.x5_c00225{left:751.440000px;}
@media print{
.v1_c00225{vertical-align:-7.680000pt;}
.v0_c00225{vertical-align:0.000000pt;}
.lse_c00225{letter-spacing:-0.012800pt;}
.lsb_c00225{letter-spacing:0.000000pt;}
.ls4_c00225{letter-spacing:0.006133pt;}
.ls5_c00225{letter-spacing:0.009600pt;}
.ls3_c00225{letter-spacing:0.010133pt;}
.ls1_c00225{letter-spacing:0.010667pt;}
.ls0_c00225{letter-spacing:0.012800pt;}
.lsf_c00225{letter-spacing:0.032000pt;}
.ls8_c00225{letter-spacing:0.243627pt;}
.ls7_c00225{letter-spacing:0.243893pt;}
.ls9_c00225{letter-spacing:0.244160pt;}
.ls2_c00225{letter-spacing:0.418347pt;}
.lsd_c00225{letter-spacing:0.426240pt;}
.lsc_c00225{letter-spacing:1.030400pt;}
.lsa_c00225{letter-spacing:5.786133pt;}
.ls6_c00225{letter-spacing:6.209600pt;}
.ws0_c00225{word-spacing:-17.804800pt;}
.ws2_c00225{word-spacing:-17.792000pt;}
.ws1_c00225{word-spacing:-0.064000pt;}
.ws3_c00225{word-spacing:0.000000pt;}
._5_c00225{margin-left:-0.899840pt;}
._3_c00225{width:1.046560pt;}
._6_c00225{width:2.000587pt;}
._c_c00225{width:4.230400pt;}
._4_c00225{width:5.536000pt;}
._b_c00225{width:6.942133pt;}
._a_c00225{width:8.262400pt;}
._8_c00225{width:9.866453pt;}
._d_c00225{width:11.840000pt;}
._7_c00225{width:13.235200pt;}
._9_c00225{width:15.366400pt;}
._e_c00225{width:22.304000pt;}
._1_c00225{width:943.541333pt;}
._2_c00225{width:1019.274667pt;}
._0_c00225{width:1848.607733pt;}
.fs2_c00225{font-size:42.240000pt;}
.fs1_c00225{font-size:47.360000pt;}
.fs0_c00225{font-size:64.000000pt;}
.y0_c00225{bottom:0.000000pt;}
.y5_c00225{bottom:3.520000pt;}
.y1_c00225{bottom:16.666667pt;}
.y3_c00225{bottom:32.373360pt;}
.y4_c00225{bottom:42.000027pt;}
.y15_c00225{bottom:84.853347pt;}
.y14_c00225{bottom:121.653333pt;}
.y13_c00225{bottom:158.453333pt;}
.y12_c00225{bottom:195.253333pt;}
.y11_c00225{bottom:232.053333pt;}
.y10_c00225{bottom:268.853333pt;}
.yf_c00225{bottom:305.653333pt;}
.ye_c00225{bottom:342.453333pt;}
.yd_c00225{bottom:379.253333pt;}
.yc_c00225{bottom:416.053333pt;}
.yb_c00225{bottom:452.853333pt;}
.ya_c00225{bottom:499.893333pt;}
.y9_c00225{bottom:511.413333pt;}
.y8_c00225{bottom:922.613333pt;}
.y7_c00225{bottom:959.413333pt;}
.y6_c00225{bottom:996.213333pt;}
.y2_c00225{bottom:1043.573333pt;}
.h3_c00225{height:18.240000pt;}
.h4_c00225{height:42.457500pt;}
.h2_c00225{height:57.375000pt;}
.h1_c00225{height:1089.333333pt;}
.h0_c00225{height:1122.666667pt;}
.w2_c00225{width:26.880000pt;}
.w1_c00225{width:760.000000pt;}
.w0_c00225{width:793.333333pt;}
.x0_c00225{left:0.000000pt;}
.x1_c00225{left:16.666667pt;}
.x2_c00225{left:97.279933pt;}
.x7_c00225{left:135.080133pt;}
.x3_c00225{left:140.213200pt;}
.x6_c00225{left:256.474267pt;}
.x4_c00225{left:653.786667pt;}
.x5_c00225{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc511c1ebfe8bbad31c4b802.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00226;src:url('chunks/assets/font_20dc571e1c5a27c4ef3365c0.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00226;src:url('chunks/assets/font_4a519e9a53fbb72b1fc37690.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00226{vertical-align:-8.640000px;}
.v0_c00226{vertical-align:0.000000px;}
.ls12_c00226{letter-spacing:-0.072000px;}
.ls11_c00226{letter-spacing:-0.057600px;}
.lsf_c00226{letter-spacing:-0.050400px;}
.ls14_c00226{letter-spacing:-0.043200px;}
.ls13_c00226{letter-spacing:-0.036000px;}
.ls15_c00226{letter-spacing:-0.021600px;}
.lse_c00226{letter-spacing:-0.014400px;}
.lsd_c00226{letter-spacing:0.000000px;}
.ls0_c00226{letter-spacing:0.014400px;}
.ls5_c00226{letter-spacing:0.131160px;}
.ls1a_c00226{letter-spacing:0.170496px;}
.ls6_c00226{letter-spacing:0.214080px;}
.ls17_c00226{letter-spacing:0.239760px;}
.lsa_c00226{letter-spacing:0.274080px;}
.ls10_c00226{letter-spacing:0.298368px;}
.ls7_c00226{letter-spacing:0.300000px;}
.ls2_c00226{letter-spacing:0.360000px;}
.ls16_c00226{letter-spacing:0.362304px;}
.ls18_c00226{letter-spacing:0.527472px;}
.ls19_c00226{letter-spacing:0.628704px;}
.ls8_c00226{letter-spacing:1.246200px;}
.ls9_c00226{letter-spacing:1.248000px;}
.ls4_c00226{letter-spacing:1.508400px;}
.lsc_c00226{letter-spacing:10.635360px;}
.lsb_c00226{letter-spacing:16.959360px;}
.ls3_c00226{letter-spacing:22.039200px;}
.ls1_c00226{letter-spacing:22.039800px;}
.sc__c00226{text-shadow:none;}
.sc0_c00226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00226{-webkit-text-stroke:0px transparent;}
.sc0_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00226{word-spacing:-20.030400px;}
.ws2_c00226{word-spacing:-20.016000px;}
.ws5_c00226{word-spacing:-19.972800px;}
.ws3_c00226{word-spacing:-19.965600px;}
.ws4_c00226{word-spacing:-19.958400px;}
.ws6_c00226{word-spacing:-15.051600px;}
.ws1_c00226{word-spacing:-0.072000px;}
.ws7_c00226{word-spacing:0.000000px;}
._f_c00226{margin-left:-1.043604px;}
._8_c00226{width:1.584000px;}
._c_c00226{width:2.623500px;}
._6_c00226{width:4.183200px;}
._2_c00226{width:5.270400px;}
._7_c00226{width:6.926400px;}
._e_c00226{width:9.508752px;}
._a_c00226{width:10.965600px;}
._9_c00226{width:12.117600px;}
._d_c00226{width:13.622100px;}
._1_c00226{width:14.695200px;}
._b_c00226{width:16.293600px;}
._4_c00226{width:18.864000px;}
._3_c00226{width:21.261600px;}
._5_c00226{width:22.471200px;}
._0_c00226{width:1146.683400px;}
.fc2_c00226{color:transparent;}
.fc1_c00226{color:rgb(3,36,57);}
.fc0_c00226{color:rgb(0,0,0);}
.fs2_c00226{font-size:47.520000px;}
.fs1_c00226{font-size:53.280000px;}
.fs0_c00226{font-size:72.000000px;}
.y0_c00226{bottom:0.000000px;}
.y4_c00226{bottom:3.960000px;}
.y1_c00226{bottom:18.750000px;}
.y2_c00226{bottom:37.860030px;}
.y3_c00226{bottom:52.290030px;}
.y1f_c00226{bottom:97.980015px;}
.y1e_c00226{bottom:113.460015px;}
.y1d_c00226{bottom:128.940015px;}
.y1c_c00226{bottom:168.540000px;}
.y1b_c00226{bottom:209.940000px;}
.y1a_c00226{bottom:251.340000px;}
.y19_c00226{bottom:292.740000px;}
.y18_c00226{bottom:334.140000px;}
.y17_c00226{bottom:375.540000px;}
.y16_c00226{bottom:416.940000px;}
.y15_c00226{bottom:458.340000px;}
.y14_c00226{bottom:499.740000px;}
.y13_c00226{bottom:541.140000px;}
.y12_c00226{bottom:582.540000px;}
.y11_c00226{bottom:623.940000px;}
.y10_c00226{bottom:665.340000px;}
.yf_c00226{bottom:706.740000px;}
.ye_c00226{bottom:748.140000px;}
.yd_c00226{bottom:789.540000px;}
.yc_c00226{bottom:830.940000px;}
.yb_c00226{bottom:872.340000px;}
.ya_c00226{bottom:913.740000px;}
.y9_c00226{bottom:955.140000px;}
.y8_c00226{bottom:996.540000px;}
.y7_c00226{bottom:1037.940000px;}
.y6_c00226{bottom:1079.340000px;}
.y5_c00226{bottom:1120.740000px;}
.h3_c00226{height:20.520000px;}
.h4_c00226{height:47.764688px;}
.h2_c00226{height:64.546875px;}
.h1_c00226{height:1225.500000px;}
.h0_c00226{height:1263.000000px;}
.w2_c00226{width:30.240000px;}
.w1_c00226{width:855.000000px;}
.w0_c00226{width:892.500000px;}
.x0_c00226{left:0.000000px;}
.x1_c00226{left:18.750000px;}
.x4_c00226{left:109.439925px;}
.x3_c00226{left:128.190000px;}
.x2_c00226{left:136.440000px;}
.x6_c00226{left:141.390000px;}
.x5_c00226{left:151.965150px;}
@media print{
.v1_c00226{vertical-align:-7.680000pt;}
.v0_c00226{vertical-align:0.000000pt;}
.ls12_c00226{letter-spacing:-0.064000pt;}
.ls11_c00226{letter-spacing:-0.051200pt;}
.lsf_c00226{letter-spacing:-0.044800pt;}
.ls14_c00226{letter-spacing:-0.038400pt;}
.ls13_c00226{letter-spacing:-0.032000pt;}
.ls15_c00226{letter-spacing:-0.019200pt;}
.lse_c00226{letter-spacing:-0.012800pt;}
.lsd_c00226{letter-spacing:0.000000pt;}
.ls0_c00226{letter-spacing:0.012800pt;}
.ls5_c00226{letter-spacing:0.116587pt;}
.ls1a_c00226{letter-spacing:0.151552pt;}
.ls6_c00226{letter-spacing:0.190293pt;}
.ls17_c00226{letter-spacing:0.213120pt;}
.lsa_c00226{letter-spacing:0.243627pt;}
.ls10_c00226{letter-spacing:0.265216pt;}
.ls7_c00226{letter-spacing:0.266667pt;}
.ls2_c00226{letter-spacing:0.320000pt;}
.ls16_c00226{letter-spacing:0.322048pt;}
.ls18_c00226{letter-spacing:0.468864pt;}
.ls19_c00226{letter-spacing:0.558848pt;}
.ls8_c00226{letter-spacing:1.107733pt;}
.ls9_c00226{letter-spacing:1.109333pt;}
.ls4_c00226{letter-spacing:1.340800pt;}
.lsc_c00226{letter-spacing:9.453653pt;}
.lsb_c00226{letter-spacing:15.074987pt;}
.ls3_c00226{letter-spacing:19.590400pt;}
.ls1_c00226{letter-spacing:19.590933pt;}
.ws0_c00226{word-spacing:-17.804800pt;}
.ws2_c00226{word-spacing:-17.792000pt;}
.ws5_c00226{word-spacing:-17.753600pt;}
.ws3_c00226{word-spacing:-17.747200pt;}
.ws4_c00226{word-spacing:-17.740800pt;}
.ws6_c00226{word-spacing:-13.379200pt;}
.ws1_c00226{word-spacing:-0.064000pt;}
.ws7_c00226{word-spacing:0.000000pt;}
._f_c00226{margin-left:-0.927648pt;}
._8_c00226{width:1.408000pt;}
._c_c00226{width:2.332000pt;}
._6_c00226{width:3.718400pt;}
._2_c00226{width:4.684800pt;}
._7_c00226{width:6.156800pt;}
._e_c00226{width:8.452224pt;}
._a_c00226{width:9.747200pt;}
._9_c00226{width:10.771200pt;}
._d_c00226{width:12.108533pt;}
._1_c00226{width:13.062400pt;}
._b_c00226{width:14.483200pt;}
._4_c00226{width:16.768000pt;}
._3_c00226{width:18.899200pt;}
._5_c00226{width:19.974400pt;}
._0_c00226{width:1019.274133pt;}
.fs2_c00226{font-size:42.240000pt;}
.fs1_c00226{font-size:47.360000pt;}
.fs0_c00226{font-size:64.000000pt;}
.y0_c00226{bottom:0.000000pt;}
.y4_c00226{bottom:3.520000pt;}
.y1_c00226{bottom:16.666667pt;}
.y2_c00226{bottom:33.653360pt;}
.y3_c00226{bottom:46.480027pt;}
.y1f_c00226{bottom:87.093347pt;}
.y1e_c00226{bottom:100.853347pt;}
.y1d_c00226{bottom:114.613347pt;}
.y1c_c00226{bottom:149.813333pt;}
.y1b_c00226{bottom:186.613333pt;}
.y1a_c00226{bottom:223.413333pt;}
.y19_c00226{bottom:260.213333pt;}
.y18_c00226{bottom:297.013333pt;}
.y17_c00226{bottom:333.813333pt;}
.y16_c00226{bottom:370.613333pt;}
.y15_c00226{bottom:407.413333pt;}
.y14_c00226{bottom:444.213333pt;}
.y13_c00226{bottom:481.013333pt;}
.y12_c00226{bottom:517.813333pt;}
.y11_c00226{bottom:554.613333pt;}
.y10_c00226{bottom:591.413333pt;}
.yf_c00226{bottom:628.213333pt;}
.ye_c00226{bottom:665.013333pt;}
.yd_c00226{bottom:701.813333pt;}
.yc_c00226{bottom:738.613333pt;}
.yb_c00226{bottom:775.413333pt;}
.ya_c00226{bottom:812.213333pt;}
.y9_c00226{bottom:849.013333pt;}
.y8_c00226{bottom:885.813333pt;}
.y7_c00226{bottom:922.613333pt;}
.y6_c00226{bottom:959.413333pt;}
.y5_c00226{bottom:996.213333pt;}
.h3_c00226{height:18.240000pt;}
.h4_c00226{height:42.457500pt;}
.h2_c00226{height:57.375000pt;}
.h1_c00226{height:1089.333333pt;}
.h0_c00226{height:1122.666667pt;}
.w2_c00226{width:26.880000pt;}
.w1_c00226{width:760.000000pt;}
.w0_c00226{width:793.333333pt;}
.x0_c00226{left:0.000000pt;}
.x1_c00226{left:16.666667pt;}
.x4_c00226{left:97.279933pt;}
.x3_c00226{left:113.946667pt;}
.x2_c00226{left:121.280000pt;}
.x6_c00226{left:125.680000pt;}
.x5_c00226{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05a69e35d2270eaa99db9f51.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00227;src:url('chunks/assets/font_f7dc2e1a613ca8bac7772963.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00227;src:url('chunks/assets/font_d785490d1f8465f61f32f0af.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;line-height:1.113281;font-style: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);}
.v1_c00227{vertical-align:-8.640000px;}
.v0_c00227{vertical-align:0.000000px;}
.ls6_c00227{letter-spacing:-0.014400px;}
.ls5_c00227{letter-spacing:0.000000px;}
.ls2_c00227{letter-spacing:0.000600px;}
.ls0_c00227{letter-spacing:0.014400px;}
.ls8_c00227{letter-spacing:0.239760px;}
.ls1_c00227{letter-spacing:0.274080px;}
.ls7_c00227{letter-spacing:0.362304px;}
.ls3_c00227{letter-spacing:0.404928px;}
.ls4_c00227{letter-spacing:0.408120px;}
.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:-20.030400px;}
.ws2_c00227{word-spacing:-20.016000px;}
.ws1_c00227{word-spacing:-20.001600px;}
.ws3_c00227{word-spacing:0.000000px;}
._a_c00227{margin-left:-1.065600px;}
._3_c00227{width:1.078200px;}
._4_c00227{width:2.952000px;}
._7_c00227{width:4.384800px;}
._c_c00227{width:10.576800px;}
._6_c00227{width:14.493600px;}
._9_c00227{width:19.209852px;}
._5_c00227{width:22.363200px;}
._8_c00227{width:23.421600px;}
._b_c00227{width:26.776800px;}
._1_c00227{width:1061.484000px;}
._2_c00227{width:1146.684000px;}
._0_c00227{width:2079.683700px;}
.fc2_c00227{color:transparent;}
.fc1_c00227{color:rgb(3,36,57);}
.fc0_c00227{color:rgb(0,0,0);}
.fs2_c00227{font-size:47.520000px;}
.fs1_c00227{font-size:53.280000px;}
.fs0_c00227{font-size:72.000000px;}
.y0_c00227{bottom:0.000000px;}
.y5_c00227{bottom:3.960000px;}
.y1_c00227{bottom:18.750000px;}
.y3_c00227{bottom:36.420030px;}
.y4_c00227{bottom:47.250030px;}
.y18_c00227{bottom:100.140030px;}
.y17_c00227{bottom:141.540000px;}
.y16_c00227{bottom:182.940000px;}
.y15_c00227{bottom:224.340000px;}
.y14_c00227{bottom:265.740000px;}
.y13_c00227{bottom:307.140000px;}
.y12_c00227{bottom:360.420000px;}
.y11_c00227{bottom:373.020000px;}
.y10_c00227{bottom:706.740000px;}
.yf_c00227{bottom:748.140000px;}
.ye_c00227{bottom:789.540000px;}
.yd_c00227{bottom:830.940000px;}
.yc_c00227{bottom:872.340000px;}
.yb_c00227{bottom:913.740000px;}
.ya_c00227{bottom:955.140000px;}
.y9_c00227{bottom:996.540000px;}
.y8_c00227{bottom:1037.940000px;}
.y7_c00227{bottom:1079.340000px;}
.y6_c00227{bottom:1120.740000px;}
.y2_c00227{bottom:1174.020000px;}
.h3_c00227{height:20.520000px;}
.h4_c00227{height:47.764688px;}
.h2_c00227{height:64.546875px;}
.h5_c00227{height:65.003906px;}
.h1_c00227{height:1225.500000px;}
.h0_c00227{height:1263.000000px;}
.w2_c00227{width:30.240000px;}
.w1_c00227{width:855.000000px;}
.w0_c00227{width:892.500000px;}
.x0_c00227{left:0.000000px;}
.x1_c00227{left:18.750000px;}
.x2_c00227{left:109.439925px;}
.x5_c00227{left:151.965150px;}
.x3_c00227{left:157.739850px;}
.x8_c00227{left:173.265000px;}
.x7_c00227{left:290.398950px;}
.x4_c00227{left:735.510000px;}
.x6_c00227{left:751.440000px;}
@media print{
.v1_c00227{vertical-align:-7.680000pt;}
.v0_c00227{vertical-align:0.000000pt;}
.ls6_c00227{letter-spacing:-0.012800pt;}
.ls5_c00227{letter-spacing:0.000000pt;}
.ls2_c00227{letter-spacing:0.000533pt;}
.ls0_c00227{letter-spacing:0.012800pt;}
.ls8_c00227{letter-spacing:0.213120pt;}
.ls1_c00227{letter-spacing:0.243627pt;}
.ls7_c00227{letter-spacing:0.322048pt;}
.ls3_c00227{letter-spacing:0.359936pt;}
.ls4_c00227{letter-spacing:0.362773pt;}
.ws0_c00227{word-spacing:-17.804800pt;}
.ws2_c00227{word-spacing:-17.792000pt;}
.ws1_c00227{word-spacing:-17.779200pt;}
.ws3_c00227{word-spacing:0.000000pt;}
._a_c00227{margin-left:-0.947200pt;}
._3_c00227{width:0.958400pt;}
._4_c00227{width:2.624000pt;}
._7_c00227{width:3.897600pt;}
._c_c00227{width:9.401600pt;}
._6_c00227{width:12.883200pt;}
._9_c00227{width:17.075424pt;}
._5_c00227{width:19.878400pt;}
._8_c00227{width:20.819200pt;}
._b_c00227{width:23.801600pt;}
._1_c00227{width:943.541333pt;}
._2_c00227{width:1019.274667pt;}
._0_c00227{width:1848.607733pt;}
.fs2_c00227{font-size:42.240000pt;}
.fs1_c00227{font-size:47.360000pt;}
.fs0_c00227{font-size:64.000000pt;}
.y0_c00227{bottom:0.000000pt;}
.y5_c00227{bottom:3.520000pt;}
.y1_c00227{bottom:16.666667pt;}
.y3_c00227{bottom:32.373360pt;}
.y4_c00227{bottom:42.000027pt;}
.y18_c00227{bottom:89.013360pt;}
.y17_c00227{bottom:125.813333pt;}
.y16_c00227{bottom:162.613333pt;}
.y15_c00227{bottom:199.413333pt;}
.y14_c00227{bottom:236.213333pt;}
.y13_c00227{bottom:273.013333pt;}
.y12_c00227{bottom:320.373333pt;}
.y11_c00227{bottom:331.573333pt;}
.y10_c00227{bottom:628.213333pt;}
.yf_c00227{bottom:665.013333pt;}
.ye_c00227{bottom:701.813333pt;}
.yd_c00227{bottom:738.613333pt;}
.yc_c00227{bottom:775.413333pt;}
.yb_c00227{bottom:812.213333pt;}
.ya_c00227{bottom:849.013333pt;}
.y9_c00227{bottom:885.813333pt;}
.y8_c00227{bottom:922.613333pt;}
.y7_c00227{bottom:959.413333pt;}
.y6_c00227{bottom:996.213333pt;}
.y2_c00227{bottom:1043.573333pt;}
.h3_c00227{height:18.240000pt;}
.h4_c00227{height:42.457500pt;}
.h2_c00227{height:57.375000pt;}
.h5_c00227{height:57.781250pt;}
.h1_c00227{height:1089.333333pt;}
.h0_c00227{height:1122.666667pt;}
.w2_c00227{width:26.880000pt;}
.w1_c00227{width:760.000000pt;}
.w0_c00227{width:793.333333pt;}
.x0_c00227{left:0.000000pt;}
.x1_c00227{left:16.666667pt;}
.x2_c00227{left:97.279933pt;}
.x5_c00227{left:135.080133pt;}
.x3_c00227{left:140.213200pt;}
.x8_c00227{left:154.013333pt;}
.x7_c00227{left:258.132400pt;}
.x4_c00227{left:653.786667pt;}
.x6_c00227{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_36eff89270f29d2a90e3f8ac.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00228;src:url('chunks/assets/font_f27a530b09d29f90f2d72329.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00228;src:url('chunks/assets/font_0c26a461ba683132b6357db6.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00228;src:url('chunks/assets/font_a94c1c9c82fab577eb7fbf49.woff2')format("woff");}.ff4_c00228{font-family:ff4_c00228;line-height:1.111328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00228;src:url('chunks/assets/font_2818109dc18626dedfd8eaff.woff2')format("woff");}.ff5_c00228{font-family:ff5_c00228;line-height:0.953125;font-style: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);}
.v2_c00228{vertical-align:-8.640000px;}
.v0_c00228{vertical-align:0.000000px;}
.v3_c00228{vertical-align:30.240000px;}
.v1_c00228{vertical-align:33.120000px;}
.ls6_c00228{letter-spacing:0.000000px;}
.ls0_c00228{letter-spacing:0.014400px;}
.ls3_c00228{letter-spacing:0.035400px;}
.ls7_c00228{letter-spacing:0.036000px;}
.ls5_c00228{letter-spacing:0.120000px;}
.ls1_c00228{letter-spacing:0.274080px;}
.ls4_c00228{letter-spacing:0.274200px;}
.ls2_c00228{letter-spacing:0.274680px;}
.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;}
}
.ws3_c00228{word-spacing:-36.000000px;}
.ws0_c00228{word-spacing:-20.030400px;}
.ws1_c00228{word-spacing:-20.016000px;}
.ws2_c00228{word-spacing:-0.072000px;}
.ws4_c00228{word-spacing:0.000000px;}
._b_c00228{margin-left:-1.008000px;}
._5_c00228{width:1.051200px;}
._4_c00228{width:2.118600px;}
._13_c00228{width:3.412800px;}
._9_c00228{width:4.687200px;}
._2_c00228{width:7.048800px;}
._f_c00228{width:9.569700px;}
._3_c00228{width:11.019300px;}
._d_c00228{width:13.255200px;}
._10_c00228{width:15.040800px;}
._a_c00228{width:18.489600px;}
._8_c00228{width:21.312000px;}
._11_c00228{width:22.600800px;}
._e_c00228{width:24.156000px;}
._c_c00228{width:25.372800px;}
._12_c00228{width:26.985600px;}
._6_c00228{width:33.976800px;}
._1_c00228{width:39.916800px;}
._7_c00228{width:44.337600px;}
._0_c00228{width:1146.683400px;}
.fc1_c00228{color:transparent;}
.fc0_c00228{color:rgb(0,0,0);}
.fs2_c00228{font-size:41.760000px;}
.fs1_c00228{font-size:47.520000px;}
.fs0_c00228{font-size:72.000000px;}
.y0_c00228{bottom:0.000000px;}
.y4_c00228{bottom:3.960000px;}
.y1_c00228{bottom:18.750000px;}
.y2_c00228{bottom:37.860030px;}
.y3_c00228{bottom:52.290030px;}
.y1c_c00228{bottom:133.260000px;}
.y1b_c00228{bottom:174.660000px;}
.y1a_c00228{bottom:216.060000px;}
.y19_c00228{bottom:257.460000px;}
.y18_c00228{bottom:298.860000px;}
.y17_c00228{bottom:340.260000px;}
.y16_c00228{bottom:381.660000px;}
.y15_c00228{bottom:423.060000px;}
.y14_c00228{bottom:464.460000px;}
.y13_c00228{bottom:510.180000px;}
.y12_c00228{bottom:552.660000px;}
.y11_c00228{bottom:594.060000px;}
.y10_c00228{bottom:635.460000px;}
.yf_c00228{bottom:676.860000px;}
.ye_c00228{bottom:718.260000px;}
.yd_c00228{bottom:759.660000px;}
.yc_c00228{bottom:810.420000px;}
.yb_c00228{bottom:852.180000px;}
.ya_c00228{bottom:893.580000px;}
.y9_c00228{bottom:934.620000px;}
.y8_c00228{bottom:996.540000px;}
.y7_c00228{bottom:1037.940000px;}
.y6_c00228{bottom:1079.340000px;}
.y5_c00228{bottom:1120.740000px;}
.h3_c00228{height:20.520000px;}
.h2_c00228{height:64.546875px;}
.h4_c00228{height:65.003906px;}
.h6_c00228{height:65.707031px;}
.h5_c00228{height:75.604922px;}
.h1_c00228{height:1225.500000px;}
.h0_c00228{height:1263.000000px;}
.w2_c00228{width:30.240000px;}
.w1_c00228{width:855.000000px;}
.w0_c00228{width:892.500000px;}
.x0_c00228{left:0.000000px;}
.x1_c00228{left:18.750000px;}
.x4_c00228{left:109.439925px;}
.x3_c00228{left:128.190000px;}
.x2_c00228{left:136.440000px;}
.x5_c00228{left:151.965150px;}
@media print{
.v2_c00228{vertical-align:-7.680000pt;}
.v0_c00228{vertical-align:0.000000pt;}
.v3_c00228{vertical-align:26.880000pt;}
.v1_c00228{vertical-align:29.440000pt;}
.ls6_c00228{letter-spacing:0.000000pt;}
.ls0_c00228{letter-spacing:0.012800pt;}
.ls3_c00228{letter-spacing:0.031467pt;}
.ls7_c00228{letter-spacing:0.032000pt;}
.ls5_c00228{letter-spacing:0.106667pt;}
.ls1_c00228{letter-spacing:0.243627pt;}
.ls4_c00228{letter-spacing:0.243733pt;}
.ls2_c00228{letter-spacing:0.244160pt;}
.ws3_c00228{word-spacing:-32.000000pt;}
.ws0_c00228{word-spacing:-17.804800pt;}
.ws1_c00228{word-spacing:-17.792000pt;}
.ws2_c00228{word-spacing:-0.064000pt;}
.ws4_c00228{word-spacing:0.000000pt;}
._b_c00228{margin-left:-0.896000pt;}
._5_c00228{width:0.934400pt;}
._4_c00228{width:1.883200pt;}
._13_c00228{width:3.033600pt;}
._9_c00228{width:4.166400pt;}
._2_c00228{width:6.265600pt;}
._f_c00228{width:8.506400pt;}
._3_c00228{width:9.794933pt;}
._d_c00228{width:11.782400pt;}
._10_c00228{width:13.369600pt;}
._a_c00228{width:16.435200pt;}
._8_c00228{width:18.944000pt;}
._11_c00228{width:20.089600pt;}
._e_c00228{width:21.472000pt;}
._c_c00228{width:22.553600pt;}
._12_c00228{width:23.987200pt;}
._6_c00228{width:30.201600pt;}
._1_c00228{width:35.481600pt;}
._7_c00228{width:39.411200pt;}
._0_c00228{width:1019.274133pt;}
.fs2_c00228{font-size:37.120000pt;}
.fs1_c00228{font-size:42.240000pt;}
.fs0_c00228{font-size:64.000000pt;}
.y0_c00228{bottom:0.000000pt;}
.y4_c00228{bottom:3.520000pt;}
.y1_c00228{bottom:16.666667pt;}
.y2_c00228{bottom:33.653360pt;}
.y3_c00228{bottom:46.480027pt;}
.y1c_c00228{bottom:118.453333pt;}
.y1b_c00228{bottom:155.253333pt;}
.y1a_c00228{bottom:192.053333pt;}
.y19_c00228{bottom:228.853333pt;}
.y18_c00228{bottom:265.653333pt;}
.y17_c00228{bottom:302.453333pt;}
.y16_c00228{bottom:339.253333pt;}
.y15_c00228{bottom:376.053333pt;}
.y14_c00228{bottom:412.853333pt;}
.y13_c00228{bottom:453.493333pt;}
.y12_c00228{bottom:491.253333pt;}
.y11_c00228{bottom:528.053333pt;}
.y10_c00228{bottom:564.853333pt;}
.yf_c00228{bottom:601.653333pt;}
.ye_c00228{bottom:638.453333pt;}
.yd_c00228{bottom:675.253333pt;}
.yc_c00228{bottom:720.373333pt;}
.yb_c00228{bottom:757.493333pt;}
.ya_c00228{bottom:794.293333pt;}
.y9_c00228{bottom:830.773333pt;}
.y8_c00228{bottom:885.813333pt;}
.y7_c00228{bottom:922.613333pt;}
.y6_c00228{bottom:959.413333pt;}
.y5_c00228{bottom:996.213333pt;}
.h3_c00228{height:18.240000pt;}
.h2_c00228{height:57.375000pt;}
.h4_c00228{height:57.781250pt;}
.h6_c00228{height:58.406250pt;}
.h5_c00228{height:67.204375pt;}
.h1_c00228{height:1089.333333pt;}
.h0_c00228{height:1122.666667pt;}
.w2_c00228{width:26.880000pt;}
.w1_c00228{width:760.000000pt;}
.w0_c00228{width:793.333333pt;}
.x0_c00228{left:0.000000pt;}
.x1_c00228{left:16.666667pt;}
.x4_c00228{left:97.279933pt;}
.x3_c00228{left:113.946667pt;}
.x2_c00228{left:121.280000pt;}
.x5_c00228{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_112f02490aa6e9d550b0e997.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00229;src:url('chunks/assets/font_01e016ee153bf3e1687f5a85.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00229;src:url('chunks/assets/font_9b7c2aec2357ae42880ebcdb.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:0.953125;font-style: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;}
.v1_c00229{vertical-align:33.120000px;}
.ls10_c00229{letter-spacing:-0.014400px;}
.lsf_c00229{letter-spacing:0.000000px;}
.ls2_c00229{letter-spacing:0.000600px;}
.ls0_c00229{letter-spacing:0.014400px;}
.ls3_c00229{letter-spacing:0.036000px;}
.ls8_c00229{letter-spacing:0.175824px;}
.ls7_c00229{letter-spacing:0.191160px;}
.lsd_c00229{letter-spacing:0.239760px;}
.lsa_c00229{letter-spacing:0.240360px;}
.ls1_c00229{letter-spacing:0.274080px;}
.ls11_c00229{letter-spacing:0.362304px;}
.ls6_c00229{letter-spacing:0.388944px;}
.ls9_c00229{letter-spacing:0.399600px;}
.ls5_c00229{letter-spacing:0.410256px;}
.lsb_c00229{letter-spacing:0.426240px;}
.ls14_c00229{letter-spacing:0.479520px;}
.ls13_c00229{letter-spacing:0.527472px;}
.ls12_c00229{letter-spacing:0.628704px;}
.lse_c00229{letter-spacing:4.199160px;}
.lsc_c00229{letter-spacing:7.958760px;}
.ls4_c00229{letter-spacing:16.959360px;}
.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;}
}
.ws2_c00229{word-spacing:-36.000000px;}
.ws3_c00229{word-spacing:-20.052000px;}
.ws0_c00229{word-spacing:-20.030400px;}
.ws1_c00229{word-spacing:-20.016000px;}
.ws5_c00229{word-spacing:-15.440544px;}
.ws7_c00229{word-spacing:-15.291360px;}
.ws6_c00229{word-spacing:-15.222096px;}
.ws4_c00229{word-spacing:-15.051600px;}
.ws8_c00229{word-spacing:0.000000px;}
._f_c00229{margin-left:-1.126248px;}
._a_c00229{width:1.649100px;}
._3_c00229{width:3.247200px;}
._4_c00229{width:4.669500px;}
._9_c00229{width:6.035100px;}
._8_c00229{width:7.920000px;}
._5_c00229{width:9.014400px;}
._6_c00229{width:10.188000px;}
._7_c00229{width:12.566100px;}
._e_c00229{width:13.785252px;}
._10_c00229{width:17.297580px;}
._d_c00229{width:23.126400px;}
._c_c00229{width:24.804000px;}
._11_c00229{width:28.451520px;}
._b_c00229{width:33.948000px;}
._1_c00229{width:1061.484000px;}
._2_c00229{width:1146.684000px;}
._0_c00229{width:2079.683700px;}
.fc1_c00229{color:transparent;}
.fc0_c00229{color:rgb(0,0,0);}
.fs2_c00229{font-size:47.520000px;}
.fs1_c00229{font-size:53.280000px;}
.fs0_c00229{font-size:72.000000px;}
.y0_c00229{bottom:0.000000px;}
.y5_c00229{bottom:3.960000px;}
.y1_c00229{bottom:18.750000px;}
.y3_c00229{bottom:36.420030px;}
.y4_c00229{bottom:47.250030px;}
.y26_c00229{bottom:106.980015px;}
.y25_c00229{bottom:122.460015px;}
.y24_c00229{bottom:137.940000px;}
.y23_c00229{bottom:153.780000px;}
.y22_c00229{bottom:169.260000px;}
.y21_c00229{bottom:184.740000px;}
.y20_c00229{bottom:200.220000px;}
.y1f_c00229{bottom:215.700000px;}
.y1e_c00229{bottom:231.180000px;}
.y1d_c00229{bottom:246.660000px;}
.y1c_c00229{bottom:262.140000px;}
.y1b_c00229{bottom:277.980000px;}
.y1a_c00229{bottom:293.460000px;}
.y19_c00229{bottom:308.940000px;}
.y18_c00229{bottom:352.860000px;}
.y17_c00229{bottom:399.660000px;}
.y16_c00229{bottom:446.460000px;}
.y15_c00229{bottom:493.260000px;}
.y14_c00229{bottom:535.740000px;}
.y13_c00229{bottom:577.140000px;}
.y12_c00229{bottom:618.540000px;}
.y11_c00229{bottom:659.940000px;}
.y10_c00229{bottom:701.340000px;}
.yf_c00229{bottom:742.740000px;}
.ye_c00229{bottom:784.140000px;}
.yd_c00229{bottom:829.860000px;}
.yc_c00229{bottom:872.340000px;}
.yb_c00229{bottom:913.740000px;}
.ya_c00229{bottom:955.140000px;}
.y9_c00229{bottom:996.540000px;}
.y8_c00229{bottom:1037.940000px;}
.y7_c00229{bottom:1079.340000px;}
.y6_c00229{bottom:1120.740000px;}
.y2_c00229{bottom:1174.020000px;}
.h3_c00229{height:20.520000px;}
.h6_c00229{height:47.764688px;}
.h5_c00229{height:59.343750px;}
.h2_c00229{height:64.546875px;}
.h4_c00229{height:75.720937px;}
.h1_c00229{height:1225.500000px;}
.h0_c00229{height:1263.000000px;}
.w2_c00229{width:30.240000px;}
.w1_c00229{width:855.000000px;}
.w0_c00229{width:892.500000px;}
.x0_c00229{left:0.000000px;}
.x1_c00229{left:18.750000px;}
.x2_c00229{left:109.439925px;}
.x6_c00229{left:141.390000px;}
.x5_c00229{left:151.965150px;}
.x3_c00229{left:157.739850px;}
.x4_c00229{left:735.510000px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.v1_c00229{vertical-align:29.440000pt;}
.ls10_c00229{letter-spacing:-0.012800pt;}
.lsf_c00229{letter-spacing:0.000000pt;}
.ls2_c00229{letter-spacing:0.000533pt;}
.ls0_c00229{letter-spacing:0.012800pt;}
.ls3_c00229{letter-spacing:0.032000pt;}
.ls8_c00229{letter-spacing:0.156288pt;}
.ls7_c00229{letter-spacing:0.169920pt;}
.lsd_c00229{letter-spacing:0.213120pt;}
.lsa_c00229{letter-spacing:0.213653pt;}
.ls1_c00229{letter-spacing:0.243627pt;}
.ls11_c00229{letter-spacing:0.322048pt;}
.ls6_c00229{letter-spacing:0.345728pt;}
.ls9_c00229{letter-spacing:0.355200pt;}
.ls5_c00229{letter-spacing:0.364672pt;}
.lsb_c00229{letter-spacing:0.378880pt;}
.ls14_c00229{letter-spacing:0.426240pt;}
.ls13_c00229{letter-spacing:0.468864pt;}
.ls12_c00229{letter-spacing:0.558848pt;}
.lse_c00229{letter-spacing:3.732587pt;}
.lsc_c00229{letter-spacing:7.074453pt;}
.ls4_c00229{letter-spacing:15.074987pt;}
.ws2_c00229{word-spacing:-32.000000pt;}
.ws3_c00229{word-spacing:-17.824000pt;}
.ws0_c00229{word-spacing:-17.804800pt;}
.ws1_c00229{word-spacing:-17.792000pt;}
.ws5_c00229{word-spacing:-13.724928pt;}
.ws7_c00229{word-spacing:-13.592320pt;}
.ws6_c00229{word-spacing:-13.530752pt;}
.ws4_c00229{word-spacing:-13.379200pt;}
.ws8_c00229{word-spacing:0.000000pt;}
._f_c00229{margin-left:-1.001109pt;}
._a_c00229{width:1.465867pt;}
._3_c00229{width:2.886400pt;}
._4_c00229{width:4.150667pt;}
._9_c00229{width:5.364533pt;}
._8_c00229{width:7.040000pt;}
._5_c00229{width:8.012800pt;}
._6_c00229{width:9.056000pt;}
._7_c00229{width:11.169867pt;}
._e_c00229{width:12.253557pt;}
._10_c00229{width:15.375627pt;}
._d_c00229{width:20.556800pt;}
._c_c00229{width:22.048000pt;}
._11_c00229{width:25.290240pt;}
._b_c00229{width:30.176000pt;}
._1_c00229{width:943.541333pt;}
._2_c00229{width:1019.274667pt;}
._0_c00229{width:1848.607733pt;}
.fs2_c00229{font-size:42.240000pt;}
.fs1_c00229{font-size:47.360000pt;}
.fs0_c00229{font-size:64.000000pt;}
.y0_c00229{bottom:0.000000pt;}
.y5_c00229{bottom:3.520000pt;}
.y1_c00229{bottom:16.666667pt;}
.y3_c00229{bottom:32.373360pt;}
.y4_c00229{bottom:42.000027pt;}
.y26_c00229{bottom:95.093347pt;}
.y25_c00229{bottom:108.853347pt;}
.y24_c00229{bottom:122.613333pt;}
.y23_c00229{bottom:136.693333pt;}
.y22_c00229{bottom:150.453333pt;}
.y21_c00229{bottom:164.213333pt;}
.y20_c00229{bottom:177.973333pt;}
.y1f_c00229{bottom:191.733333pt;}
.y1e_c00229{bottom:205.493333pt;}
.y1d_c00229{bottom:219.253333pt;}
.y1c_c00229{bottom:233.013333pt;}
.y1b_c00229{bottom:247.093333pt;}
.y1a_c00229{bottom:260.853333pt;}
.y19_c00229{bottom:274.613333pt;}
.y18_c00229{bottom:313.653333pt;}
.y17_c00229{bottom:355.253333pt;}
.y16_c00229{bottom:396.853333pt;}
.y15_c00229{bottom:438.453333pt;}
.y14_c00229{bottom:476.213333pt;}
.y13_c00229{bottom:513.013333pt;}
.y12_c00229{bottom:549.813333pt;}
.y11_c00229{bottom:586.613333pt;}
.y10_c00229{bottom:623.413333pt;}
.yf_c00229{bottom:660.213333pt;}
.ye_c00229{bottom:697.013333pt;}
.yd_c00229{bottom:737.653333pt;}
.yc_c00229{bottom:775.413333pt;}
.yb_c00229{bottom:812.213333pt;}
.ya_c00229{bottom:849.013333pt;}
.y9_c00229{bottom:885.813333pt;}
.y8_c00229{bottom:922.613333pt;}
.y7_c00229{bottom:959.413333pt;}
.y6_c00229{bottom:996.213333pt;}
.y2_c00229{bottom:1043.573333pt;}
.h3_c00229{height:18.240000pt;}
.h6_c00229{height:42.457500pt;}
.h5_c00229{height:52.750000pt;}
.h2_c00229{height:57.375000pt;}
.h4_c00229{height:67.307500pt;}
.h1_c00229{height:1089.333333pt;}
.h0_c00229{height:1122.666667pt;}
.w2_c00229{width:26.880000pt;}
.w1_c00229{width:760.000000pt;}
.w0_c00229{width:793.333333pt;}
.x0_c00229{left:0.000000pt;}
.x1_c00229{left:16.666667pt;}
.x2_c00229{left:97.279933pt;}
.x6_c00229{left:125.680000pt;}
.x5_c00229{left:135.080133pt;}
.x3_c00229{left:140.213200pt;}
.x4_c00229{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c22d65da10dacd50e4d64600.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00230;src:url('chunks/assets/font_9dc23e4b507363711dd7a8d9.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:0.953125;font-style: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;}
.v1_c00230{vertical-align:27.360000px;}
.lsa_c00230{letter-spacing:0.000000px;}
.ls3_c00230{letter-spacing:0.005400px;}
.ls0_c00230{letter-spacing:0.014400px;}
.ls10_c00230{letter-spacing:0.170496px;}
.ls7_c00230{letter-spacing:0.191160px;}
.lse_c00230{letter-spacing:0.239760px;}
.ls5_c00230{letter-spacing:0.240360px;}
.lsd_c00230{letter-spacing:0.362304px;}
.ls2_c00230{letter-spacing:0.386400px;}
.lsc_c00230{letter-spacing:0.388944px;}
.ls1_c00230{letter-spacing:0.408120px;}
.ls6_c00230{letter-spacing:0.410256px;}
.ls4_c00230{letter-spacing:0.420912px;}
.lsf_c00230{letter-spacing:0.431568px;}
.ls9_c00230{letter-spacing:0.479640px;}
.lsb_c00230{letter-spacing:0.527472px;}
.ls8_c00230{letter-spacing:16.959360px;}
.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:-20.030400px;}
.ws1_c00230{word-spacing:-15.232752px;}
.ws2_c00230{word-spacing:-15.222096px;}
.ws3_c00230{word-spacing:-15.051600px;}
.ws4_c00230{word-spacing:0.000000px;}
._1_c00230{margin-left:-1.383120px;}
._3_c00230{width:1.137600px;}
._4_c00230{width:2.141100px;}
._8_c00230{width:3.189600px;}
._9_c00230{width:4.227660px;}
._6_c00230{width:6.436800px;}
._7_c00230{width:7.610760px;}
._5_c00230{width:8.776800px;}
._2_c00230{width:22.356000px;}
._0_c00230{width:1146.683400px;}
.fc1_c00230{color:transparent;}
.fc0_c00230{color:rgb(0,0,0);}
.fs2_c00230{font-size:36.000000px;}
.fs1_c00230{font-size:53.280000px;}
.fs3_c00230{font-size:59.040000px;}
.fs0_c00230{font-size:72.000000px;}
.y0_c00230{bottom:0.000000px;}
.y4_c00230{bottom:3.960000px;}
.y1_c00230{bottom:18.750000px;}
.y2_c00230{bottom:37.860030px;}
.y3_c00230{bottom:52.290030px;}
.y14_c00230{bottom:104.100030px;}
.y13_c00230{bottom:120.660030px;}
.y12_c00230{bottom:136.140000px;}
.y11_c00230{bottom:193.740000px;}
.y10_c00230{bottom:235.140000px;}
.yf_c00230{bottom:276.540000px;}
.ye_c00230{bottom:317.940000px;}
.yd_c00230{bottom:359.340000px;}
.yc_c00230{bottom:400.740000px;}
.yb_c00230{bottom:442.140000px;}
.ya_c00230{bottom:483.540000px;}
.y9_c00230{bottom:524.940000px;}
.y8_c00230{bottom:577.860000px;}
.y7_c00230{bottom:590.820000px;}
.y6_c00230{bottom:1072.860000px;}
.y5_c00230{bottom:1119.660000px;}
.h3_c00230{height:20.520000px;}
.h5_c00230{height:47.764688px;}
.h6_c00230{height:52.928438px;}
.h4_c00230{height:59.343750px;}
.h2_c00230{height:64.546875px;}
.h1_c00230{height:1225.500000px;}
.h0_c00230{height:1263.000000px;}
.w2_c00230{width:30.240000px;}
.w1_c00230{width:855.000000px;}
.w0_c00230{width:892.500000px;}
.x0_c00230{left:0.000000px;}
.x1_c00230{left:18.750000px;}
.x4_c00230{left:109.439925px;}
.x3_c00230{left:128.190000px;}
.x2_c00230{left:136.440000px;}
.x8_c00230{left:141.390000px;}
.x6_c00230{left:147.693300px;}
.x7_c00230{left:151.965150px;}
.x5_c00230{left:751.440000px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.v1_c00230{vertical-align:24.320000pt;}
.lsa_c00230{letter-spacing:0.000000pt;}
.ls3_c00230{letter-spacing:0.004800pt;}
.ls0_c00230{letter-spacing:0.012800pt;}
.ls10_c00230{letter-spacing:0.151552pt;}
.ls7_c00230{letter-spacing:0.169920pt;}
.lse_c00230{letter-spacing:0.213120pt;}
.ls5_c00230{letter-spacing:0.213653pt;}
.lsd_c00230{letter-spacing:0.322048pt;}
.ls2_c00230{letter-spacing:0.343467pt;}
.lsc_c00230{letter-spacing:0.345728pt;}
.ls1_c00230{letter-spacing:0.362773pt;}
.ls6_c00230{letter-spacing:0.364672pt;}
.ls4_c00230{letter-spacing:0.374144pt;}
.lsf_c00230{letter-spacing:0.383616pt;}
.ls9_c00230{letter-spacing:0.426347pt;}
.lsb_c00230{letter-spacing:0.468864pt;}
.ls8_c00230{letter-spacing:15.074987pt;}
.ws0_c00230{word-spacing:-17.804800pt;}
.ws1_c00230{word-spacing:-13.540224pt;}
.ws2_c00230{word-spacing:-13.530752pt;}
.ws3_c00230{word-spacing:-13.379200pt;}
.ws4_c00230{word-spacing:0.000000pt;}
._1_c00230{margin-left:-1.229440pt;}
._3_c00230{width:1.011200pt;}
._4_c00230{width:1.903200pt;}
._8_c00230{width:2.835200pt;}
._9_c00230{width:3.757920pt;}
._6_c00230{width:5.721600pt;}
._7_c00230{width:6.765120pt;}
._5_c00230{width:7.801600pt;}
._2_c00230{width:19.872000pt;}
._0_c00230{width:1019.274133pt;}
.fs2_c00230{font-size:32.000000pt;}
.fs1_c00230{font-size:47.360000pt;}
.fs3_c00230{font-size:52.480000pt;}
.fs0_c00230{font-size:64.000000pt;}
.y0_c00230{bottom:0.000000pt;}
.y4_c00230{bottom:3.520000pt;}
.y1_c00230{bottom:16.666667pt;}
.y2_c00230{bottom:33.653360pt;}
.y3_c00230{bottom:46.480027pt;}
.y14_c00230{bottom:92.533360pt;}
.y13_c00230{bottom:107.253360pt;}
.y12_c00230{bottom:121.013333pt;}
.y11_c00230{bottom:172.213333pt;}
.y10_c00230{bottom:209.013333pt;}
.yf_c00230{bottom:245.813333pt;}
.ye_c00230{bottom:282.613333pt;}
.yd_c00230{bottom:319.413333pt;}
.yc_c00230{bottom:356.213333pt;}
.yb_c00230{bottom:393.013333pt;}
.ya_c00230{bottom:429.813333pt;}
.y9_c00230{bottom:466.613333pt;}
.y8_c00230{bottom:513.653333pt;}
.y7_c00230{bottom:525.173333pt;}
.y6_c00230{bottom:953.653333pt;}
.y5_c00230{bottom:995.253333pt;}
.h3_c00230{height:18.240000pt;}
.h5_c00230{height:42.457500pt;}
.h6_c00230{height:47.047500pt;}
.h4_c00230{height:52.750000pt;}
.h2_c00230{height:57.375000pt;}
.h1_c00230{height:1089.333333pt;}
.h0_c00230{height:1122.666667pt;}
.w2_c00230{width:26.880000pt;}
.w1_c00230{width:760.000000pt;}
.w0_c00230{width:793.333333pt;}
.x0_c00230{left:0.000000pt;}
.x1_c00230{left:16.666667pt;}
.x4_c00230{left:97.279933pt;}
.x3_c00230{left:113.946667pt;}
.x2_c00230{left:121.280000pt;}
.x8_c00230{left:125.680000pt;}
.x6_c00230{left:131.282933pt;}
.x7_c00230{left:135.080133pt;}
.x5_c00230{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f4babe75a8d64d146f9f876.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00231;src:url('chunks/assets/font_dd0c66b9fcb1ad42fed8dfc3.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00231;src:url('chunks/assets/font_ce3e8da43eeff58d8f35d0a4.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:1.104492;font-style: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;}
.ls4_c00231{letter-spacing:-0.014400px;}
.ls3_c00231{letter-spacing:0.000000px;}
.ls1_c00231{letter-spacing:0.010980px;}
.ls0_c00231{letter-spacing:0.014400px;}
.ls6_c00231{letter-spacing:0.410256px;}
.ls2_c00231{letter-spacing:0.415584px;}
.ls5_c00231{letter-spacing:0.527472px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00231{word-spacing:-20.030400px;}
.ws1_c00231{word-spacing:-20.016000px;}
.ws2_c00231{word-spacing:-15.339312px;}
.ws3_c00231{word-spacing:0.000000px;}
._c_c00231{margin-left:-1.012320px;}
._9_c00231{width:1.013400px;}
._a_c00231{width:3.441600px;}
._7_c00231{width:15.883200px;}
._6_c00231{width:18.900000px;}
._3_c00231{width:21.091800px;}
._4_c00231{width:25.300800px;}
._b_c00231{width:26.978400px;}
._8_c00231{width:29.404800px;}
._5_c00231{width:39.967200px;}
._1_c00231{width:1061.484000px;}
._2_c00231{width:1146.684000px;}
._0_c00231{width:2079.683700px;}
.fc1_c00231{color:transparent;}
.fc0_c00231{color:rgb(0,0,0);}
.fs1_c00231{font-size:53.280000px;}
.fs0_c00231{font-size:72.000000px;}
.y0_c00231{bottom:0.000000px;}
.y5_c00231{bottom:3.960000px;}
.y1_c00231{bottom:18.750000px;}
.y3_c00231{bottom:36.420030px;}
.y4_c00231{bottom:47.250030px;}
.y17_c00231{bottom:133.620000px;}
.y16_c00231{bottom:146.220000px;}
.y15_c00231{bottom:477.060000px;}
.y14_c00231{bottom:518.460000px;}
.y13_c00231{bottom:559.860000px;}
.y12_c00231{bottom:601.260000px;}
.y11_c00231{bottom:642.660000px;}
.y10_c00231{bottom:684.060000px;}
.yf_c00231{bottom:725.460000px;}
.ye_c00231{bottom:766.860000px;}
.yd_c00231{bottom:808.260000px;}
.yc_c00231{bottom:849.660000px;}
.yb_c00231{bottom:891.060000px;}
.ya_c00231{bottom:952.620000px;}
.y9_c00231{bottom:994.380000px;}
.y8_c00231{bottom:1035.780000px;}
.y7_c00231{bottom:1077.180000px;}
.y6_c00231{bottom:1118.220000px;}
.y2_c00231{bottom:1174.020000px;}
.h3_c00231{height:20.520000px;}
.h5_c00231{height:47.764688px;}
.h2_c00231{height:64.546875px;}
.h4_c00231{height:65.003906px;}
.h1_c00231{height:1225.500000px;}
.h0_c00231{height:1263.000000px;}
.w2_c00231{width:30.240000px;}
.w1_c00231{width:855.000000px;}
.w0_c00231{width:892.500000px;}
.x0_c00231{left:0.000000px;}
.x1_c00231{left:18.750000px;}
.x2_c00231{left:109.439925px;}
.x5_c00231{left:151.965150px;}
.x3_c00231{left:157.739850px;}
.x7_c00231{left:275.775150px;}
.x4_c00231{left:735.510000px;}
.x6_c00231{left:754.440000px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls4_c00231{letter-spacing:-0.012800pt;}
.ls3_c00231{letter-spacing:0.000000pt;}
.ls1_c00231{letter-spacing:0.009760pt;}
.ls0_c00231{letter-spacing:0.012800pt;}
.ls6_c00231{letter-spacing:0.364672pt;}
.ls2_c00231{letter-spacing:0.369408pt;}
.ls5_c00231{letter-spacing:0.468864pt;}
.ws0_c00231{word-spacing:-17.804800pt;}
.ws1_c00231{word-spacing:-17.792000pt;}
.ws2_c00231{word-spacing:-13.634944pt;}
.ws3_c00231{word-spacing:0.000000pt;}
._c_c00231{margin-left:-0.899840pt;}
._9_c00231{width:0.900800pt;}
._a_c00231{width:3.059200pt;}
._7_c00231{width:14.118400pt;}
._6_c00231{width:16.800000pt;}
._3_c00231{width:18.748267pt;}
._4_c00231{width:22.489600pt;}
._b_c00231{width:23.980800pt;}
._8_c00231{width:26.137600pt;}
._5_c00231{width:35.526400pt;}
._1_c00231{width:943.541333pt;}
._2_c00231{width:1019.274667pt;}
._0_c00231{width:1848.607733pt;}
.fs1_c00231{font-size:47.360000pt;}
.fs0_c00231{font-size:64.000000pt;}
.y0_c00231{bottom:0.000000pt;}
.y5_c00231{bottom:3.520000pt;}
.y1_c00231{bottom:16.666667pt;}
.y3_c00231{bottom:32.373360pt;}
.y4_c00231{bottom:42.000027pt;}
.y17_c00231{bottom:118.773333pt;}
.y16_c00231{bottom:129.973333pt;}
.y15_c00231{bottom:424.053333pt;}
.y14_c00231{bottom:460.853333pt;}
.y13_c00231{bottom:497.653333pt;}
.y12_c00231{bottom:534.453333pt;}
.y11_c00231{bottom:571.253333pt;}
.y10_c00231{bottom:608.053333pt;}
.yf_c00231{bottom:644.853333pt;}
.ye_c00231{bottom:681.653333pt;}
.yd_c00231{bottom:718.453333pt;}
.yc_c00231{bottom:755.253333pt;}
.yb_c00231{bottom:792.053333pt;}
.ya_c00231{bottom:846.773333pt;}
.y9_c00231{bottom:883.893333pt;}
.y8_c00231{bottom:920.693333pt;}
.y7_c00231{bottom:957.493333pt;}
.y6_c00231{bottom:993.973333pt;}
.y2_c00231{bottom:1043.573333pt;}
.h3_c00231{height:18.240000pt;}
.h5_c00231{height:42.457500pt;}
.h2_c00231{height:57.375000pt;}
.h4_c00231{height:57.781250pt;}
.h1_c00231{height:1089.333333pt;}
.h0_c00231{height:1122.666667pt;}
.w2_c00231{width:26.880000pt;}
.w1_c00231{width:760.000000pt;}
.w0_c00231{width:793.333333pt;}
.x0_c00231{left:0.000000pt;}
.x1_c00231{left:16.666667pt;}
.x2_c00231{left:97.279933pt;}
.x5_c00231{left:135.080133pt;}
.x3_c00231{left:140.213200pt;}
.x7_c00231{left:245.133467pt;}
.x4_c00231{left:653.786667pt;}
.x6_c00231{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c8e0fab69f85f23da40fc8fc.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00232;src:url('chunks/assets/font_70cc3265c6ed8d6f1deca7be.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.104492;font-style: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;}
.ls2_c00232{letter-spacing:0.000000px;}
.ls0_c00232{letter-spacing:0.014400px;}
.ls4_c00232{letter-spacing:0.170496px;}
.ls1_c00232{letter-spacing:0.191160px;}
.ls5_c00232{letter-spacing:0.239760px;}
.ls3_c00232{letter-spacing:0.527472px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00232{word-spacing:-20.030400px;}
.ws2_c00232{word-spacing:-20.016000px;}
.ws1_c00232{word-spacing:-15.051600px;}
.ws3_c00232{word-spacing:0.000000px;}
._5_c00232{margin-left:-1.012320px;}
._6_c00232{width:1.163616px;}
._8_c00232{width:2.498400px;}
._1_c00232{width:5.745600px;}
._4_c00232{width:6.811200px;}
._7_c00232{width:8.726400px;}
._a_c00232{width:10.137600px;}
._2_c00232{width:13.514400px;}
._9_c00232{width:15.451200px;}
._e_c00232{width:18.619200px;}
._3_c00232{width:21.276000px;}
._b_c00232{width:29.224800px;}
._d_c00232{width:31.968000px;}
._c_c00232{width:53.078400px;}
._0_c00232{width:1146.683400px;}
.fc1_c00232{color:transparent;}
.fc0_c00232{color:rgb(0,0,0);}
.fs1_c00232{font-size:53.280000px;}
.fs0_c00232{font-size:72.000000px;}
.y0_c00232{bottom:0.000000px;}
.y4_c00232{bottom:3.960000px;}
.y1_c00232{bottom:18.750000px;}
.y2_c00232{bottom:37.860030px;}
.y3_c00232{bottom:52.290030px;}
.y14_c00232{bottom:107.340030px;}
.y13_c00232{bottom:148.740000px;}
.y12_c00232{bottom:190.140000px;}
.y11_c00232{bottom:231.540000px;}
.y10_c00232{bottom:272.940000px;}
.yf_c00232{bottom:314.340000px;}
.ye_c00232{bottom:355.740000px;}
.yd_c00232{bottom:397.140000px;}
.yc_c00232{bottom:438.540000px;}
.yb_c00232{bottom:491.820000px;}
.ya_c00232{bottom:504.420000px;}
.y9_c00232{bottom:955.140000px;}
.y8_c00232{bottom:996.540000px;}
.y7_c00232{bottom:1037.940000px;}
.y6_c00232{bottom:1079.340000px;}
.y5_c00232{bottom:1120.740000px;}
.h3_c00232{height:20.520000px;}
.h4_c00232{height:47.764688px;}
.h2_c00232{height:64.546875px;}
.h1_c00232{height:1225.500000px;}
.h0_c00232{height:1263.000000px;}
.w2_c00232{width:30.240000px;}
.w1_c00232{width:855.000000px;}
.w0_c00232{width:892.500000px;}
.x0_c00232{left:0.000000px;}
.x1_c00232{left:18.750000px;}
.x5_c00232{left:109.439925px;}
.x3_c00232{left:128.190000px;}
.x2_c00232{left:136.440000px;}
.x4_c00232{left:151.965150px;}
.x7_c00232{left:187.982250px;}
.x6_c00232{left:754.440000px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls2_c00232{letter-spacing:0.000000pt;}
.ls0_c00232{letter-spacing:0.012800pt;}
.ls4_c00232{letter-spacing:0.151552pt;}
.ls1_c00232{letter-spacing:0.169920pt;}
.ls5_c00232{letter-spacing:0.213120pt;}
.ls3_c00232{letter-spacing:0.468864pt;}
.ws0_c00232{word-spacing:-17.804800pt;}
.ws2_c00232{word-spacing:-17.792000pt;}
.ws1_c00232{word-spacing:-13.379200pt;}
.ws3_c00232{word-spacing:0.000000pt;}
._5_c00232{margin-left:-0.899840pt;}
._6_c00232{width:1.034325pt;}
._8_c00232{width:2.220800pt;}
._1_c00232{width:5.107200pt;}
._4_c00232{width:6.054400pt;}
._7_c00232{width:7.756800pt;}
._a_c00232{width:9.011200pt;}
._2_c00232{width:12.012800pt;}
._9_c00232{width:13.734400pt;}
._e_c00232{width:16.550400pt;}
._3_c00232{width:18.912000pt;}
._b_c00232{width:25.977600pt;}
._d_c00232{width:28.416000pt;}
._c_c00232{width:47.180800pt;}
._0_c00232{width:1019.274133pt;}
.fs1_c00232{font-size:47.360000pt;}
.fs0_c00232{font-size:64.000000pt;}
.y0_c00232{bottom:0.000000pt;}
.y4_c00232{bottom:3.520000pt;}
.y1_c00232{bottom:16.666667pt;}
.y2_c00232{bottom:33.653360pt;}
.y3_c00232{bottom:46.480027pt;}
.y14_c00232{bottom:95.413360pt;}
.y13_c00232{bottom:132.213333pt;}
.y12_c00232{bottom:169.013333pt;}
.y11_c00232{bottom:205.813333pt;}
.y10_c00232{bottom:242.613333pt;}
.yf_c00232{bottom:279.413333pt;}
.ye_c00232{bottom:316.213333pt;}
.yd_c00232{bottom:353.013333pt;}
.yc_c00232{bottom:389.813333pt;}
.yb_c00232{bottom:437.173333pt;}
.ya_c00232{bottom:448.373333pt;}
.y9_c00232{bottom:849.013333pt;}
.y8_c00232{bottom:885.813333pt;}
.y7_c00232{bottom:922.613333pt;}
.y6_c00232{bottom:959.413333pt;}
.y5_c00232{bottom:996.213333pt;}
.h3_c00232{height:18.240000pt;}
.h4_c00232{height:42.457500pt;}
.h2_c00232{height:57.375000pt;}
.h1_c00232{height:1089.333333pt;}
.h0_c00232{height:1122.666667pt;}
.w2_c00232{width:26.880000pt;}
.w1_c00232{width:760.000000pt;}
.w0_c00232{width:793.333333pt;}
.x0_c00232{left:0.000000pt;}
.x1_c00232{left:16.666667pt;}
.x5_c00232{left:97.279933pt;}
.x3_c00232{left:113.946667pt;}
.x2_c00232{left:121.280000pt;}
.x4_c00232{left:135.080133pt;}
.x7_c00232{left:167.095333pt;}
.x6_c00232{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d8a1358bb4929eb27ecdaccb.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00233;src:url('chunks/assets/font_1ddd10a7984f42a8ee79004d.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.104492;font-style: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;}
.ls4_c00233{letter-spacing:0.000000px;}
.ls0_c00233{letter-spacing:0.014400px;}
.ls7_c00233{letter-spacing:0.170496px;}
.ls1_c00233{letter-spacing:0.191160px;}
.lsa_c00233{letter-spacing:0.191808px;}
.ls8_c00233{letter-spacing:0.239760px;}
.ls3_c00233{letter-spacing:0.410256px;}
.ls9_c00233{letter-spacing:0.479520px;}
.ls5_c00233{letter-spacing:0.527472px;}
.ls6_c00233{letter-spacing:0.628704px;}
.ls2_c00233{letter-spacing:16.959360px;}
.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;}
}
.ws0_c00233{word-spacing:-20.030400px;}
.ws1_c00233{word-spacing:-15.051600px;}
.ws2_c00233{word-spacing:0.000000px;}
._9_c00233{margin-left:-1.012320px;}
._a_c00233{width:1.155408px;}
._c_c00233{width:2.216328px;}
._b_c00233{width:3.285372px;}
._8_c00233{width:4.838400px;}
._4_c00233{width:8.654400px;}
._5_c00233{width:9.835200px;}
._3_c00233{width:11.160000px;}
._7_c00233{width:12.664800px;}
._6_c00233{width:14.335200px;}
._1_c00233{width:1061.484000px;}
._2_c00233{width:1146.684000px;}
._0_c00233{width:2079.683700px;}
.fc1_c00233{color:transparent;}
.fc0_c00233{color:rgb(0,0,0);}
.fs1_c00233{font-size:53.280000px;}
.fs0_c00233{font-size:72.000000px;}
.y0_c00233{bottom:0.000000px;}
.y5_c00233{bottom:3.960000px;}
.y1_c00233{bottom:18.750000px;}
.y3_c00233{bottom:36.420030px;}
.y4_c00233{bottom:47.250030px;}
.y18_c00233{bottom:114.540030px;}
.y17_c00233{bottom:130.020030px;}
.y16_c00233{bottom:145.860000px;}
.y15_c00233{bottom:161.340000px;}
.y14_c00233{bottom:194.460000px;}
.y13_c00233{bottom:225.420000px;}
.y12_c00233{bottom:256.740000px;}
.y11_c00233{bottom:287.700000px;}
.y10_c00233{bottom:300.300000px;}
.yf_c00233{bottom:748.140000px;}
.ye_c00233{bottom:789.540000px;}
.yd_c00233{bottom:830.940000px;}
.yc_c00233{bottom:872.340000px;}
.yb_c00233{bottom:913.740000px;}
.ya_c00233{bottom:955.140000px;}
.y9_c00233{bottom:996.540000px;}
.y8_c00233{bottom:1037.940000px;}
.y7_c00233{bottom:1079.340000px;}
.y6_c00233{bottom:1120.740000px;}
.y2_c00233{bottom:1174.020000px;}
.h3_c00233{height:20.520000px;}
.h4_c00233{height:47.764688px;}
.h2_c00233{height:64.546875px;}
.h1_c00233{height:1225.500000px;}
.h0_c00233{height:1263.000000px;}
.w2_c00233{width:30.240000px;}
.w1_c00233{width:855.000000px;}
.w0_c00233{width:892.500000px;}
.x0_c00233{left:0.000000px;}
.x1_c00233{left:18.750000px;}
.x2_c00233{left:109.439925px;}
.x9_c00233{left:141.390000px;}
.x5_c00233{left:151.965150px;}
.x3_c00233{left:157.739850px;}
.x7_c00233{left:201.871200px;}
.x8_c00233{left:428.114850px;}
.x4_c00233{left:735.510000px;}
.x6_c00233{left:751.440000px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls4_c00233{letter-spacing:0.000000pt;}
.ls0_c00233{letter-spacing:0.012800pt;}
.ls7_c00233{letter-spacing:0.151552pt;}
.ls1_c00233{letter-spacing:0.169920pt;}
.lsa_c00233{letter-spacing:0.170496pt;}
.ls8_c00233{letter-spacing:0.213120pt;}
.ls3_c00233{letter-spacing:0.364672pt;}
.ls9_c00233{letter-spacing:0.426240pt;}
.ls5_c00233{letter-spacing:0.468864pt;}
.ls6_c00233{letter-spacing:0.558848pt;}
.ls2_c00233{letter-spacing:15.074987pt;}
.ws0_c00233{word-spacing:-17.804800pt;}
.ws1_c00233{word-spacing:-13.379200pt;}
.ws2_c00233{word-spacing:0.000000pt;}
._9_c00233{margin-left:-0.899840pt;}
._a_c00233{width:1.027029pt;}
._c_c00233{width:1.970069pt;}
._b_c00233{width:2.920331pt;}
._8_c00233{width:4.300800pt;}
._4_c00233{width:7.692800pt;}
._5_c00233{width:8.742400pt;}
._3_c00233{width:9.920000pt;}
._7_c00233{width:11.257600pt;}
._6_c00233{width:12.742400pt;}
._1_c00233{width:943.541333pt;}
._2_c00233{width:1019.274667pt;}
._0_c00233{width:1848.607733pt;}
.fs1_c00233{font-size:47.360000pt;}
.fs0_c00233{font-size:64.000000pt;}
.y0_c00233{bottom:0.000000pt;}
.y5_c00233{bottom:3.520000pt;}
.y1_c00233{bottom:16.666667pt;}
.y3_c00233{bottom:32.373360pt;}
.y4_c00233{bottom:42.000027pt;}
.y18_c00233{bottom:101.813360pt;}
.y17_c00233{bottom:115.573360pt;}
.y16_c00233{bottom:129.653333pt;}
.y15_c00233{bottom:143.413333pt;}
.y14_c00233{bottom:172.853333pt;}
.y13_c00233{bottom:200.373333pt;}
.y12_c00233{bottom:228.213333pt;}
.y11_c00233{bottom:255.733333pt;}
.y10_c00233{bottom:266.933333pt;}
.yf_c00233{bottom:665.013333pt;}
.ye_c00233{bottom:701.813333pt;}
.yd_c00233{bottom:738.613333pt;}
.yc_c00233{bottom:775.413333pt;}
.yb_c00233{bottom:812.213333pt;}
.ya_c00233{bottom:849.013333pt;}
.y9_c00233{bottom:885.813333pt;}
.y8_c00233{bottom:922.613333pt;}
.y7_c00233{bottom:959.413333pt;}
.y6_c00233{bottom:996.213333pt;}
.y2_c00233{bottom:1043.573333pt;}
.h3_c00233{height:18.240000pt;}
.h4_c00233{height:42.457500pt;}
.h2_c00233{height:57.375000pt;}
.h1_c00233{height:1089.333333pt;}
.h0_c00233{height:1122.666667pt;}
.w2_c00233{width:26.880000pt;}
.w1_c00233{width:760.000000pt;}
.w0_c00233{width:793.333333pt;}
.x0_c00233{left:0.000000pt;}
.x1_c00233{left:16.666667pt;}
.x2_c00233{left:97.279933pt;}
.x9_c00233{left:125.680000pt;}
.x5_c00233{left:135.080133pt;}
.x3_c00233{left:140.213200pt;}
.x7_c00233{left:179.441067pt;}
.x8_c00233{left:380.546533pt;}
.x4_c00233{left:653.786667pt;}
.x6_c00233{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9d040ff9538e7faffca2173f.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00234{letter-spacing:0.000000px;}
.ls0_c00234{letter-spacing:0.014400px;}
.ls6_c00234{letter-spacing:0.170496px;}
.ls1_c00234{letter-spacing:0.191160px;}
.ls7_c00234{letter-spacing:0.239760px;}
.ls5_c00234{letter-spacing:0.410256px;}
.ls2_c00234{letter-spacing:0.420912px;}
.ls4_c00234{letter-spacing:0.527472px;}
.sc__c00234{text-shadow:none;}
.sc0_c00234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00234{-webkit-text-stroke:0px transparent;}
.sc0_c00234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00234{word-spacing:-20.030400px;}
.ws1_c00234{word-spacing:-15.339312px;}
.ws2_c00234{word-spacing:0.000000px;}
._1_c00234{margin-left:-1.012320px;}
._2_c00234{width:1.240104px;}
._0_c00234{width:1146.683400px;}
.fc1_c00234{color:transparent;}
.fc0_c00234{color:rgb(0,0,0);}
.fs1_c00234{font-size:53.280000px;}
.fs0_c00234{font-size:72.000000px;}
.y0_c00234{bottom:0.000000px;}
.y4_c00234{bottom:3.960000px;}
.y1_c00234{bottom:18.750000px;}
.y2_c00234{bottom:37.860030px;}
.y3_c00234{bottom:52.290030px;}
.yb_c00234{bottom:142.980000px;}
.ya_c00234{bottom:155.940000px;}
.y9_c00234{bottom:596.580000px;}
.y8_c00234{bottom:645.540000px;}
.y7_c00234{bottom:658.140000px;}
.y6_c00234{bottom:1093.740000px;}
.y5_c00234{bottom:1124.700000px;}
.h3_c00234{height:20.520000px;}
.h4_c00234{height:47.764688px;}
.h2_c00234{height:64.546875px;}
.h1_c00234{height:1225.500000px;}
.h0_c00234{height:1263.000000px;}
.w2_c00234{width:30.240000px;}
.w1_c00234{width:855.000000px;}
.w0_c00234{width:892.500000px;}
.x0_c00234{left:0.000000px;}
.x1_c00234{left:18.750000px;}
.x3_c00234{left:128.190000px;}
.x2_c00234{left:136.440000px;}
.x6_c00234{left:193.239300px;}
.x7_c00234{left:296.776650px;}
.x4_c00234{left:428.114850px;}
.x5_c00234{left:751.440000px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls3_c00234{letter-spacing:0.000000pt;}
.ls0_c00234{letter-spacing:0.012800pt;}
.ls6_c00234{letter-spacing:0.151552pt;}
.ls1_c00234{letter-spacing:0.169920pt;}
.ls7_c00234{letter-spacing:0.213120pt;}
.ls5_c00234{letter-spacing:0.364672pt;}
.ls2_c00234{letter-spacing:0.374144pt;}
.ls4_c00234{letter-spacing:0.468864pt;}
.ws0_c00234{word-spacing:-17.804800pt;}
.ws1_c00234{word-spacing:-13.634944pt;}
.ws2_c00234{word-spacing:0.000000pt;}
._1_c00234{margin-left:-0.899840pt;}
._2_c00234{width:1.102315pt;}
._0_c00234{width:1019.274133pt;}
.fs1_c00234{font-size:47.360000pt;}
.fs0_c00234{font-size:64.000000pt;}
.y0_c00234{bottom:0.000000pt;}
.y4_c00234{bottom:3.520000pt;}
.y1_c00234{bottom:16.666667pt;}
.y2_c00234{bottom:33.653360pt;}
.y3_c00234{bottom:46.480027pt;}
.yb_c00234{bottom:127.093333pt;}
.ya_c00234{bottom:138.613333pt;}
.y9_c00234{bottom:530.293333pt;}
.y8_c00234{bottom:573.813333pt;}
.y7_c00234{bottom:585.013333pt;}
.y6_c00234{bottom:972.213333pt;}
.y5_c00234{bottom:999.733333pt;}
.h3_c00234{height:18.240000pt;}
.h4_c00234{height:42.457500pt;}
.h2_c00234{height:57.375000pt;}
.h1_c00234{height:1089.333333pt;}
.h0_c00234{height:1122.666667pt;}
.w2_c00234{width:26.880000pt;}
.w1_c00234{width:760.000000pt;}
.w0_c00234{width:793.333333pt;}
.x0_c00234{left:0.000000pt;}
.x1_c00234{left:16.666667pt;}
.x3_c00234{left:113.946667pt;}
.x2_c00234{left:121.280000pt;}
.x6_c00234{left:171.768267pt;}
.x7_c00234{left:263.801467pt;}
.x4_c00234{left:380.546533pt;}
.x5_c00234{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0cf598b14b09da6da784a6a1.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.ls1_c00235{letter-spacing:0.000000px;}
.ls0_c00235{letter-spacing:0.014400px;}
.ls2_c00235{letter-spacing:0.479520px;}
.ls4_c00235{letter-spacing:0.527472px;}
.ls3_c00235{letter-spacing:0.628704px;}
.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:-20.030400px;}
.ws1_c00235{word-spacing:0.000000px;}
._3_c00235{margin-left:-1.012320px;}
._1_c00235{width:1061.484000px;}
._2_c00235{width:1146.684000px;}
._0_c00235{width:2079.683700px;}
.fc1_c00235{color:transparent;}
.fc0_c00235{color:rgb(0,0,0);}
.fs1_c00235{font-size:53.280000px;}
.fs0_c00235{font-size:72.000000px;}
.y0_c00235{bottom:0.000000px;}
.y5_c00235{bottom:3.960000px;}
.y1_c00235{bottom:18.750000px;}
.y3_c00235{bottom:36.420030px;}
.y4_c00235{bottom:47.250030px;}
.yb_c00235{bottom:93.660030px;}
.ya_c00235{bottom:106.260030px;}
.y9_c00235{bottom:448.620000px;}
.y8_c00235{bottom:461.220000px;}
.y7_c00235{bottom:848.580000px;}
.y6_c00235{bottom:861.540000px;}
.y2_c00235{bottom:1174.020000px;}
.h3_c00235{height:20.520000px;}
.h4_c00235{height:47.764688px;}
.h2_c00235{height:64.546875px;}
.h1_c00235{height:1225.500000px;}
.h0_c00235{height:1263.000000px;}
.w2_c00235{width:30.240000px;}
.w1_c00235{width:855.000000px;}
.w0_c00235{width:892.500000px;}
.x0_c00235{left:0.000000px;}
.x1_c00235{left:18.750000px;}
.x2_c00235{left:109.439925px;}
.x3_c00235{left:157.739850px;}
.x8_c00235{left:272.024400px;}
.x7_c00235{left:314.412900px;}
.x6_c00235{left:317.036550px;}
.x4_c00235{left:735.510000px;}
.x5_c00235{left:751.440000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls1_c00235{letter-spacing:0.000000pt;}
.ls0_c00235{letter-spacing:0.012800pt;}
.ls2_c00235{letter-spacing:0.426240pt;}
.ls4_c00235{letter-spacing:0.468864pt;}
.ls3_c00235{letter-spacing:0.558848pt;}
.ws0_c00235{word-spacing:-17.804800pt;}
.ws1_c00235{word-spacing:0.000000pt;}
._3_c00235{margin-left:-0.899840pt;}
._1_c00235{width:943.541333pt;}
._2_c00235{width:1019.274667pt;}
._0_c00235{width:1848.607733pt;}
.fs1_c00235{font-size:47.360000pt;}
.fs0_c00235{font-size:64.000000pt;}
.y0_c00235{bottom:0.000000pt;}
.y5_c00235{bottom:3.520000pt;}
.y1_c00235{bottom:16.666667pt;}
.y3_c00235{bottom:32.373360pt;}
.y4_c00235{bottom:42.000027pt;}
.yb_c00235{bottom:83.253360pt;}
.ya_c00235{bottom:94.453360pt;}
.y9_c00235{bottom:398.773333pt;}
.y8_c00235{bottom:409.973333pt;}
.y7_c00235{bottom:754.293333pt;}
.y6_c00235{bottom:765.813333pt;}
.y2_c00235{bottom:1043.573333pt;}
.h3_c00235{height:18.240000pt;}
.h4_c00235{height:42.457500pt;}
.h2_c00235{height:57.375000pt;}
.h1_c00235{height:1089.333333pt;}
.h0_c00235{height:1122.666667pt;}
.w2_c00235{width:26.880000pt;}
.w1_c00235{width:760.000000pt;}
.w0_c00235{width:793.333333pt;}
.x0_c00235{left:0.000000pt;}
.x1_c00235{left:16.666667pt;}
.x2_c00235{left:97.279933pt;}
.x3_c00235{left:140.213200pt;}
.x8_c00235{left:241.799467pt;}
.x7_c00235{left:279.478133pt;}
.x6_c00235{left:281.810267pt;}
.x4_c00235{left:653.786667pt;}
.x5_c00235{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c84e25ff07c64dee49490b47.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00236{vertical-align:0.000000px;}
.ls3_c00236{letter-spacing:0.000000px;}
.ls0_c00236{letter-spacing:0.014400px;}
.ls1_c00236{letter-spacing:0.410256px;}
.ls2_c00236{letter-spacing:0.426240px;}
.ls4_c00236{letter-spacing:0.479520px;}
.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:-20.030400px;}
.ws1_c00236{word-spacing:-15.291360px;}
.ws2_c00236{word-spacing:0.000000px;}
._1_c00236{margin-left:-1.136280px;}
._3_c00236{width:1.303200px;}
._2_c00236{width:3.405600px;}
._0_c00236{width:1146.683400px;}
.fc1_c00236{color:transparent;}
.fc0_c00236{color:rgb(0,0,0);}
.fs1_c00236{font-size:53.280000px;}
.fs0_c00236{font-size:72.000000px;}
.y0_c00236{bottom:0.000000px;}
.y4_c00236{bottom:3.960000px;}
.y1_c00236{bottom:18.750000px;}
.y2_c00236{bottom:37.860030px;}
.y3_c00236{bottom:52.290030px;}
.yc_c00236{bottom:116.700030px;}
.yb_c00236{bottom:158.100000px;}
.ya_c00236{bottom:199.500000px;}
.y9_c00236{bottom:252.420000px;}
.y8_c00236{bottom:265.020000px;}
.y7_c00236{bottom:652.740000px;}
.y6_c00236{bottom:683.700000px;}
.y5_c00236{bottom:696.300000px;}
.h3_c00236{height:20.520000px;}
.h4_c00236{height:47.764688px;}
.h2_c00236{height:64.546875px;}
.h1_c00236{height:1225.500000px;}
.h0_c00236{height:1263.000000px;}
.w2_c00236{width:30.240000px;}
.w1_c00236{width:855.000000px;}
.w0_c00236{width:892.500000px;}
.x0_c00236{left:0.000000px;}
.x1_c00236{left:18.750000px;}
.x9_c00236{left:109.439925px;}
.x3_c00236{left:128.190000px;}
.x2_c00236{left:136.440000px;}
.x8_c00236{left:151.965150px;}
.x5_c00236{left:272.386950px;}
.x7_c00236{left:302.768550px;}
.x6_c00236{left:428.114850px;}
.x4_c00236{left:754.440000px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls3_c00236{letter-spacing:0.000000pt;}
.ls0_c00236{letter-spacing:0.012800pt;}
.ls1_c00236{letter-spacing:0.364672pt;}
.ls2_c00236{letter-spacing:0.378880pt;}
.ls4_c00236{letter-spacing:0.426240pt;}
.ws0_c00236{word-spacing:-17.804800pt;}
.ws1_c00236{word-spacing:-13.592320pt;}
.ws2_c00236{word-spacing:0.000000pt;}
._1_c00236{margin-left:-1.010027pt;}
._3_c00236{width:1.158400pt;}
._2_c00236{width:3.027200pt;}
._0_c00236{width:1019.274133pt;}
.fs1_c00236{font-size:47.360000pt;}
.fs0_c00236{font-size:64.000000pt;}
.y0_c00236{bottom:0.000000pt;}
.y4_c00236{bottom:3.520000pt;}
.y1_c00236{bottom:16.666667pt;}
.y2_c00236{bottom:33.653360pt;}
.y3_c00236{bottom:46.480027pt;}
.yc_c00236{bottom:103.733360pt;}
.yb_c00236{bottom:140.533333pt;}
.ya_c00236{bottom:177.333333pt;}
.y9_c00236{bottom:224.373333pt;}
.y8_c00236{bottom:235.573333pt;}
.y7_c00236{bottom:580.213333pt;}
.y6_c00236{bottom:607.733333pt;}
.y5_c00236{bottom:618.933333pt;}
.h3_c00236{height:18.240000pt;}
.h4_c00236{height:42.457500pt;}
.h2_c00236{height:57.375000pt;}
.h1_c00236{height:1089.333333pt;}
.h0_c00236{height:1122.666667pt;}
.w2_c00236{width:26.880000pt;}
.w1_c00236{width:760.000000pt;}
.w0_c00236{width:793.333333pt;}
.x0_c00236{left:0.000000pt;}
.x1_c00236{left:16.666667pt;}
.x9_c00236{left:97.279933pt;}
.x3_c00236{left:113.946667pt;}
.x2_c00236{left:121.280000pt;}
.x8_c00236{left:135.080133pt;}
.x5_c00236{left:242.121733pt;}
.x7_c00236{left:269.127600pt;}
.x6_c00236{left:380.546533pt;}
.x4_c00236{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_320cee3559254fbe6ceba844.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00237;src:url('chunks/assets/font_5b6f86bf05181644a2f790a8.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.104492;font-style: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;}
.ls8_c00237{letter-spacing:0.000000px;}
.ls0_c00237{letter-spacing:0.014400px;}
.lsd_c00237{letter-spacing:0.170496px;}
.ls2_c00237{letter-spacing:0.191160px;}
.lse_c00237{letter-spacing:0.191808px;}
.lsa_c00237{letter-spacing:0.239760px;}
.ls4_c00237{letter-spacing:0.240360px;}
.lsc_c00237{letter-spacing:0.362304px;}
.ls10_c00237{letter-spacing:0.388944px;}
.ls5_c00237{letter-spacing:0.399600px;}
.ls6_c00237{letter-spacing:0.410256px;}
.lsf_c00237{letter-spacing:0.479520px;}
.ls9_c00237{letter-spacing:0.482400px;}
.lsb_c00237{letter-spacing:0.527472px;}
.ls3_c00237{letter-spacing:13.430160px;}
.ls1_c00237{letter-spacing:16.959360px;}
.ls7_c00237{letter-spacing:32.209560px;}
.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:-20.030400px;}
.ws3_c00237{word-spacing:-15.339312px;}
.ws2_c00237{word-spacing:-15.222096px;}
.ws4_c00237{word-spacing:-15.174144px;}
.ws1_c00237{word-spacing:-15.051600px;}
.ws5_c00237{word-spacing:0.000000px;}
._e_c00237{margin-left:-13.957824px;}
._c_c00237{margin-left:-1.100340px;}
._8_c00237{width:1.368000px;}
._5_c00237{width:2.512800px;}
._6_c00237{width:3.816000px;}
._11_c00237{width:5.398560px;}
._10_c00237{width:6.553440px;}
._9_c00237{width:7.682400px;}
._12_c00237{width:10.709280px;}
._d_c00237{width:12.147840px;}
._f_c00237{width:13.999488px;}
._3_c00237{width:15.091200px;}
._7_c00237{width:17.971200px;}
._a_c00237{width:21.312000px;}
._4_c00237{width:22.385700px;}
._13_c00237{width:31.275360px;}
._14_c00237{width:32.379912px;}
._b_c00237{width:35.524800px;}
._1_c00237{width:1061.484000px;}
._2_c00237{width:1146.684000px;}
._0_c00237{width:2079.683700px;}
.fc1_c00237{color:transparent;}
.fc0_c00237{color:rgb(0,0,0);}
.fs1_c00237{font-size:53.280000px;}
.fs2_c00237{font-size:59.040000px;}
.fs0_c00237{font-size:72.000000px;}
.y0_c00237{bottom:0.000000px;}
.y5_c00237{bottom:3.960000px;}
.y1_c00237{bottom:18.750000px;}
.y3_c00237{bottom:36.420030px;}
.y4_c00237{bottom:47.250030px;}
.y28_c00237{bottom:103.020030px;}
.y27_c00237{bottom:118.500030px;}
.y26_c00237{bottom:133.980000px;}
.y25_c00237{bottom:149.460000px;}
.y24_c00237{bottom:164.940000px;}
.y23_c00237{bottom:180.780000px;}
.y22_c00237{bottom:196.260000px;}
.y21_c00237{bottom:211.740000px;}
.y20_c00237{bottom:227.220000px;}
.y1f_c00237{bottom:242.700000px;}
.y1e_c00237{bottom:258.180000px;}
.y1d_c00237{bottom:273.660000px;}
.y1c_c00237{bottom:289.140000px;}
.y1b_c00237{bottom:304.620000px;}
.y1a_c00237{bottom:320.460000px;}
.y19_c00237{bottom:335.940000px;}
.y18_c00237{bottom:375.540000px;}
.y17_c00237{bottom:416.940000px;}
.y16_c00237{bottom:458.340000px;}
.y15_c00237{bottom:499.740000px;}
.y14_c00237{bottom:541.140000px;}
.y13_c00237{bottom:582.540000px;}
.y12_c00237{bottom:623.940000px;}
.y11_c00237{bottom:665.340000px;}
.y10_c00237{bottom:706.740000px;}
.yf_c00237{bottom:748.140000px;}
.ye_c00237{bottom:789.540000px;}
.yd_c00237{bottom:830.940000px;}
.yc_c00237{bottom:872.340000px;}
.yb_c00237{bottom:913.740000px;}
.ya_c00237{bottom:955.140000px;}
.y9_c00237{bottom:996.540000px;}
.y8_c00237{bottom:1037.940000px;}
.y7_c00237{bottom:1079.340000px;}
.y6_c00237{bottom:1120.740000px;}
.y2_c00237{bottom:1174.020000px;}
.h3_c00237{height:20.520000px;}
.h4_c00237{height:47.764688px;}
.h5_c00237{height:52.928438px;}
.h2_c00237{height:64.546875px;}
.h1_c00237{height:1225.500000px;}
.h0_c00237{height:1263.000000px;}
.w2_c00237{width:30.240000px;}
.w1_c00237{width:855.000000px;}
.w0_c00237{width:892.500000px;}
.x0_c00237{left:0.000000px;}
.x1_c00237{left:18.750000px;}
.x2_c00237{left:109.439925px;}
.x6_c00237{left:141.390000px;}
.x5_c00237{left:151.965150px;}
.x3_c00237{left:157.739850px;}
.x4_c00237{left:735.510000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls8_c00237{letter-spacing:0.000000pt;}
.ls0_c00237{letter-spacing:0.012800pt;}
.lsd_c00237{letter-spacing:0.151552pt;}
.ls2_c00237{letter-spacing:0.169920pt;}
.lse_c00237{letter-spacing:0.170496pt;}
.lsa_c00237{letter-spacing:0.213120pt;}
.ls4_c00237{letter-spacing:0.213653pt;}
.lsc_c00237{letter-spacing:0.322048pt;}
.ls10_c00237{letter-spacing:0.345728pt;}
.ls5_c00237{letter-spacing:0.355200pt;}
.ls6_c00237{letter-spacing:0.364672pt;}
.lsf_c00237{letter-spacing:0.426240pt;}
.ls9_c00237{letter-spacing:0.428800pt;}
.lsb_c00237{letter-spacing:0.468864pt;}
.ls3_c00237{letter-spacing:11.937920pt;}
.ls1_c00237{letter-spacing:15.074987pt;}
.ls7_c00237{letter-spacing:28.630720pt;}
.ws0_c00237{word-spacing:-17.804800pt;}
.ws3_c00237{word-spacing:-13.634944pt;}
.ws2_c00237{word-spacing:-13.530752pt;}
.ws4_c00237{word-spacing:-13.488128pt;}
.ws1_c00237{word-spacing:-13.379200pt;}
.ws5_c00237{word-spacing:0.000000pt;}
._e_c00237{margin-left:-12.406955pt;}
._c_c00237{margin-left:-0.978080pt;}
._8_c00237{width:1.216000pt;}
._5_c00237{width:2.233600pt;}
._6_c00237{width:3.392000pt;}
._11_c00237{width:4.798720pt;}
._10_c00237{width:5.825280pt;}
._9_c00237{width:6.828800pt;}
._12_c00237{width:9.519360pt;}
._d_c00237{width:10.798080pt;}
._f_c00237{width:12.443989pt;}
._3_c00237{width:13.414400pt;}
._7_c00237{width:15.974400pt;}
._a_c00237{width:18.944000pt;}
._4_c00237{width:19.898400pt;}
._13_c00237{width:27.800320pt;}
._14_c00237{width:28.782144pt;}
._b_c00237{width:31.577600pt;}
._1_c00237{width:943.541333pt;}
._2_c00237{width:1019.274667pt;}
._0_c00237{width:1848.607733pt;}
.fs1_c00237{font-size:47.360000pt;}
.fs2_c00237{font-size:52.480000pt;}
.fs0_c00237{font-size:64.000000pt;}
.y0_c00237{bottom:0.000000pt;}
.y5_c00237{bottom:3.520000pt;}
.y1_c00237{bottom:16.666667pt;}
.y3_c00237{bottom:32.373360pt;}
.y4_c00237{bottom:42.000027pt;}
.y28_c00237{bottom:91.573360pt;}
.y27_c00237{bottom:105.333360pt;}
.y26_c00237{bottom:119.093333pt;}
.y25_c00237{bottom:132.853333pt;}
.y24_c00237{bottom:146.613333pt;}
.y23_c00237{bottom:160.693333pt;}
.y22_c00237{bottom:174.453333pt;}
.y21_c00237{bottom:188.213333pt;}
.y20_c00237{bottom:201.973333pt;}
.y1f_c00237{bottom:215.733333pt;}
.y1e_c00237{bottom:229.493333pt;}
.y1d_c00237{bottom:243.253333pt;}
.y1c_c00237{bottom:257.013333pt;}
.y1b_c00237{bottom:270.773333pt;}
.y1a_c00237{bottom:284.853333pt;}
.y19_c00237{bottom:298.613333pt;}
.y18_c00237{bottom:333.813333pt;}
.y17_c00237{bottom:370.613333pt;}
.y16_c00237{bottom:407.413333pt;}
.y15_c00237{bottom:444.213333pt;}
.y14_c00237{bottom:481.013333pt;}
.y13_c00237{bottom:517.813333pt;}
.y12_c00237{bottom:554.613333pt;}
.y11_c00237{bottom:591.413333pt;}
.y10_c00237{bottom:628.213333pt;}
.yf_c00237{bottom:665.013333pt;}
.ye_c00237{bottom:701.813333pt;}
.yd_c00237{bottom:738.613333pt;}
.yc_c00237{bottom:775.413333pt;}
.yb_c00237{bottom:812.213333pt;}
.ya_c00237{bottom:849.013333pt;}
.y9_c00237{bottom:885.813333pt;}
.y8_c00237{bottom:922.613333pt;}
.y7_c00237{bottom:959.413333pt;}
.y6_c00237{bottom:996.213333pt;}
.y2_c00237{bottom:1043.573333pt;}
.h3_c00237{height:18.240000pt;}
.h4_c00237{height:42.457500pt;}
.h5_c00237{height:47.047500pt;}
.h2_c00237{height:57.375000pt;}
.h1_c00237{height:1089.333333pt;}
.h0_c00237{height:1122.666667pt;}
.w2_c00237{width:26.880000pt;}
.w1_c00237{width:760.000000pt;}
.w0_c00237{width:793.333333pt;}
.x0_c00237{left:0.000000pt;}
.x1_c00237{left:16.666667pt;}
.x2_c00237{left:97.279933pt;}
.x6_c00237{left:125.680000pt;}
.x5_c00237{left:135.080133pt;}
.x3_c00237{left:140.213200pt;}
.x4_c00237{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9944d70c35fcb6df2f02b341.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00238{letter-spacing:0.000000px;}
.ls0_c00238{letter-spacing:0.014400px;}
.ls1_c00238{letter-spacing:0.410256px;}
.ls4_c00238{letter-spacing:0.431568px;}
.ls3_c00238{letter-spacing:0.527472px;}
.sc__c00238{text-shadow:none;}
.sc0_c00238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00238{-webkit-text-stroke:0px transparent;}
.sc0_c00238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00238{word-spacing:-20.030400px;}
.ws1_c00238{word-spacing:0.000000px;}
._1_c00238{margin-left:-1.012320px;}
._0_c00238{width:1146.683400px;}
.fc1_c00238{color:transparent;}
.fc0_c00238{color:rgb(0,0,0);}
.fs1_c00238{font-size:53.280000px;}
.fs0_c00238{font-size:72.000000px;}
.y0_c00238{bottom:0.000000px;}
.y4_c00238{bottom:3.960000px;}
.y1_c00238{bottom:18.750000px;}
.y2_c00238{bottom:37.860030px;}
.y3_c00238{bottom:52.290030px;}
.ye_c00238{bottom:106.260030px;}
.yd_c00238{bottom:137.220000px;}
.yc_c00238{bottom:168.540000px;}
.yb_c00238{bottom:199.500000px;}
.ya_c00238{bottom:230.460000px;}
.y9_c00238{bottom:261.420000px;}
.y8_c00238{bottom:274.020000px;}
.y7_c00238{bottom:697.740000px;}
.y6_c00238{bottom:746.700000px;}
.y5_c00238{bottom:759.300000px;}
.h3_c00238{height:20.520000px;}
.h4_c00238{height:47.764688px;}
.h2_c00238{height:64.546875px;}
.h1_c00238{height:1225.500000px;}
.h0_c00238{height:1263.000000px;}
.w2_c00238{width:30.240000px;}
.w1_c00238{width:855.000000px;}
.w0_c00238{width:892.500000px;}
.x0_c00238{left:0.000000px;}
.x1_c00238{left:18.750000px;}
.x3_c00238{left:128.190000px;}
.x2_c00238{left:136.440000px;}
.x7_c00238{left:347.692350px;}
.x5_c00238{left:354.955800px;}
.x6_c00238{left:428.114850px;}
.x8_c00238{left:449.377350px;}
.x4_c00238{left:754.440000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls2_c00238{letter-spacing:0.000000pt;}
.ls0_c00238{letter-spacing:0.012800pt;}
.ls1_c00238{letter-spacing:0.364672pt;}
.ls4_c00238{letter-spacing:0.383616pt;}
.ls3_c00238{letter-spacing:0.468864pt;}
.ws0_c00238{word-spacing:-17.804800pt;}
.ws1_c00238{word-spacing:0.000000pt;}
._1_c00238{margin-left:-0.899840pt;}
._0_c00238{width:1019.274133pt;}
.fs1_c00238{font-size:47.360000pt;}
.fs0_c00238{font-size:64.000000pt;}
.y0_c00238{bottom:0.000000pt;}
.y4_c00238{bottom:3.520000pt;}
.y1_c00238{bottom:16.666667pt;}
.y2_c00238{bottom:33.653360pt;}
.y3_c00238{bottom:46.480027pt;}
.ye_c00238{bottom:94.453360pt;}
.yd_c00238{bottom:121.973333pt;}
.yc_c00238{bottom:149.813333pt;}
.yb_c00238{bottom:177.333333pt;}
.ya_c00238{bottom:204.853333pt;}
.y9_c00238{bottom:232.373333pt;}
.y8_c00238{bottom:243.573333pt;}
.y7_c00238{bottom:620.213333pt;}
.y6_c00238{bottom:663.733333pt;}
.y5_c00238{bottom:674.933333pt;}
.h3_c00238{height:18.240000pt;}
.h4_c00238{height:42.457500pt;}
.h2_c00238{height:57.375000pt;}
.h1_c00238{height:1089.333333pt;}
.h0_c00238{height:1122.666667pt;}
.w2_c00238{width:26.880000pt;}
.w1_c00238{width:760.000000pt;}
.w0_c00238{width:793.333333pt;}
.x0_c00238{left:0.000000pt;}
.x1_c00238{left:16.666667pt;}
.x3_c00238{left:113.946667pt;}
.x2_c00238{left:121.280000pt;}
.x7_c00238{left:309.059867pt;}
.x5_c00238{left:315.516267pt;}
.x6_c00238{left:380.546533pt;}
.x8_c00238{left:399.446533pt;}
.x4_c00238{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec394a7bc388e2a4813e4a4a.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00239{letter-spacing:0.000000px;}
.ls0_c00239{letter-spacing:0.014400px;}
.ls1_c00239{letter-spacing:0.420912px;}
.ls3_c00239{letter-spacing:0.527472px;}
.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;}
}
.ws0_c00239{word-spacing:-20.030400px;}
.ws1_c00239{word-spacing:0.000000px;}
._3_c00239{margin-left:-1.012320px;}
._1_c00239{width:1061.484000px;}
._2_c00239{width:1146.684000px;}
._0_c00239{width:2079.683700px;}
.fc1_c00239{color:transparent;}
.fc0_c00239{color:rgb(0,0,0);}
.fs1_c00239{font-size:53.280000px;}
.fs0_c00239{font-size:72.000000px;}
.y0_c00239{bottom:0.000000px;}
.y5_c00239{bottom:3.960000px;}
.y1_c00239{bottom:18.750000px;}
.y3_c00239{bottom:36.420030px;}
.y4_c00239{bottom:47.250030px;}
.yb_c00239{bottom:221.460000px;}
.ya_c00239{bottom:234.420000px;}
.y9_c00239{bottom:645.540000px;}
.y8_c00239{bottom:694.500000px;}
.y7_c00239{bottom:707.460000px;}
.y6_c00239{bottom:1124.700000px;}
.y2_c00239{bottom:1174.020000px;}
.h3_c00239{height:20.520000px;}
.h4_c00239{height:47.764688px;}
.h2_c00239{height:64.546875px;}
.h1_c00239{height:1225.500000px;}
.h0_c00239{height:1263.000000px;}
.w2_c00239{width:30.240000px;}
.w1_c00239{width:855.000000px;}
.w0_c00239{width:892.500000px;}
.x0_c00239{left:0.000000px;}
.x1_c00239{left:18.750000px;}
.x2_c00239{left:109.439925px;}
.x3_c00239{left:157.739850px;}
.x7_c00239{left:253.247700px;}
.x9_c00239{left:357.945150px;}
.x8_c00239{left:428.114850px;}
.x5_c00239{left:449.377350px;}
.x4_c00239{left:735.510000px;}
.x6_c00239{left:754.440000px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls2_c00239{letter-spacing:0.000000pt;}
.ls0_c00239{letter-spacing:0.012800pt;}
.ls1_c00239{letter-spacing:0.374144pt;}
.ls3_c00239{letter-spacing:0.468864pt;}
.ws0_c00239{word-spacing:-17.804800pt;}
.ws1_c00239{word-spacing:0.000000pt;}
._3_c00239{margin-left:-0.899840pt;}
._1_c00239{width:943.541333pt;}
._2_c00239{width:1019.274667pt;}
._0_c00239{width:1848.607733pt;}
.fs1_c00239{font-size:47.360000pt;}
.fs0_c00239{font-size:64.000000pt;}
.y0_c00239{bottom:0.000000pt;}
.y5_c00239{bottom:3.520000pt;}
.y1_c00239{bottom:16.666667pt;}
.y3_c00239{bottom:32.373360pt;}
.y4_c00239{bottom:42.000027pt;}
.yb_c00239{bottom:196.853333pt;}
.ya_c00239{bottom:208.373333pt;}
.y9_c00239{bottom:573.813333pt;}
.y8_c00239{bottom:617.333333pt;}
.y7_c00239{bottom:628.853333pt;}
.y6_c00239{bottom:999.733333pt;}
.y2_c00239{bottom:1043.573333pt;}
.h3_c00239{height:18.240000pt;}
.h4_c00239{height:42.457500pt;}
.h2_c00239{height:57.375000pt;}
.h1_c00239{height:1089.333333pt;}
.h0_c00239{height:1122.666667pt;}
.w2_c00239{width:26.880000pt;}
.w1_c00239{width:760.000000pt;}
.w0_c00239{width:793.333333pt;}
.x0_c00239{left:0.000000pt;}
.x1_c00239{left:16.666667pt;}
.x2_c00239{left:97.279933pt;}
.x3_c00239{left:140.213200pt;}
.x7_c00239{left:225.109067pt;}
.x9_c00239{left:318.173467pt;}
.x8_c00239{left:380.546533pt;}
.x5_c00239{left:399.446533pt;}
.x4_c00239{left:653.786667pt;}
.x6_c00239{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7260e3885c52aee0d4549341.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00240;src:url('chunks/assets/font_4370dc2c50c682e64f649f16.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00240;src:url('chunks/assets/font_b822497e2c599ce214f9e0c8.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;line-height:1.104492;font-style: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;}
.ls3_c00240{letter-spacing:-0.014400px;}
.ls1_c00240{letter-spacing:0.000000px;}
.ls0_c00240{letter-spacing:0.014400px;}
.ls2_c00240{letter-spacing:0.479520px;}
.sc__c00240{text-shadow:none;}
.sc0_c00240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00240{-webkit-text-stroke:0px transparent;}
.sc0_c00240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00240{word-spacing:-20.030400px;}
.ws2_c00240{word-spacing:-20.016000px;}
.ws1_c00240{word-spacing:-20.001600px;}
.ws3_c00240{word-spacing:0.000000px;}
._1_c00240{margin-left:-1.118880px;}
._8_c00240{width:2.260800px;}
._9_c00240{width:4.248000px;}
._6_c00240{width:10.310400px;}
._5_c00240{width:12.225600px;}
._7_c00240{width:23.241600px;}
._2_c00240{width:27.999300px;}
._3_c00240{width:29.908800px;}
._4_c00240{width:38.894400px;}
._0_c00240{width:1146.683400px;}
.fc1_c00240{color:transparent;}
.fc0_c00240{color:rgb(0,0,0);}
.fs1_c00240{font-size:53.280000px;}
.fs0_c00240{font-size:72.000000px;}
.y0_c00240{bottom:0.000000px;}
.y4_c00240{bottom:3.960000px;}
.y1_c00240{bottom:18.750000px;}
.y2_c00240{bottom:37.860030px;}
.y3_c00240{bottom:52.290030px;}
.y14_c00240{bottom:184.380000px;}
.y13_c00240{bottom:225.780000px;}
.y12_c00240{bottom:267.180000px;}
.y11_c00240{bottom:308.580000px;}
.y10_c00240{bottom:349.980000px;}
.yf_c00240{bottom:391.380000px;}
.ye_c00240{bottom:432.780000px;}
.yd_c00240{bottom:493.980000px;}
.yc_c00240{bottom:535.740000px;}
.yb_c00240{bottom:577.140000px;}
.ya_c00240{bottom:618.540000px;}
.y9_c00240{bottom:659.940000px;}
.y8_c00240{bottom:703.860000px;}
.y7_c00240{bottom:745.260000px;}
.y6_c00240{bottom:764.700000px;}
.y5_c00240{bottom:777.300000px;}
.h3_c00240{height:20.520000px;}
.h4_c00240{height:47.764688px;}
.h2_c00240{height:64.546875px;}
.h5_c00240{height:65.003906px;}
.h1_c00240{height:1225.500000px;}
.h0_c00240{height:1263.000000px;}
.w2_c00240{width:30.240000px;}
.w1_c00240{width:855.000000px;}
.w0_c00240{width:892.500000px;}
.x0_c00240{left:0.000000px;}
.x1_c00240{left:18.750000px;}
.x6_c00240{left:109.439925px;}
.x3_c00240{left:128.190000px;}
.x2_c00240{left:136.440000px;}
.x8_c00240{left:151.965150px;}
.x7_c00240{left:173.265000px;}
.x5_c00240{left:283.276650px;}
.x4_c00240{left:754.440000px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls3_c00240{letter-spacing:-0.012800pt;}
.ls1_c00240{letter-spacing:0.000000pt;}
.ls0_c00240{letter-spacing:0.012800pt;}
.ls2_c00240{letter-spacing:0.426240pt;}
.ws0_c00240{word-spacing:-17.804800pt;}
.ws2_c00240{word-spacing:-17.792000pt;}
.ws1_c00240{word-spacing:-17.779200pt;}
.ws3_c00240{word-spacing:0.000000pt;}
._1_c00240{margin-left:-0.994560pt;}
._8_c00240{width:2.009600pt;}
._9_c00240{width:3.776000pt;}
._6_c00240{width:9.164800pt;}
._5_c00240{width:10.867200pt;}
._7_c00240{width:20.659200pt;}
._2_c00240{width:24.888267pt;}
._3_c00240{width:26.585600pt;}
._4_c00240{width:34.572800pt;}
._0_c00240{width:1019.274133pt;}
.fs1_c00240{font-size:47.360000pt;}
.fs0_c00240{font-size:64.000000pt;}
.y0_c00240{bottom:0.000000pt;}
.y4_c00240{bottom:3.520000pt;}
.y1_c00240{bottom:16.666667pt;}
.y2_c00240{bottom:33.653360pt;}
.y3_c00240{bottom:46.480027pt;}
.y14_c00240{bottom:163.893333pt;}
.y13_c00240{bottom:200.693333pt;}
.y12_c00240{bottom:237.493333pt;}
.y11_c00240{bottom:274.293333pt;}
.y10_c00240{bottom:311.093333pt;}
.yf_c00240{bottom:347.893333pt;}
.ye_c00240{bottom:384.693333pt;}
.yd_c00240{bottom:439.093333pt;}
.yc_c00240{bottom:476.213333pt;}
.yb_c00240{bottom:513.013333pt;}
.ya_c00240{bottom:549.813333pt;}
.y9_c00240{bottom:586.613333pt;}
.y8_c00240{bottom:625.653333pt;}
.y7_c00240{bottom:662.453333pt;}
.y6_c00240{bottom:679.733333pt;}
.y5_c00240{bottom:690.933333pt;}
.h3_c00240{height:18.240000pt;}
.h4_c00240{height:42.457500pt;}
.h2_c00240{height:57.375000pt;}
.h5_c00240{height:57.781250pt;}
.h1_c00240{height:1089.333333pt;}
.h0_c00240{height:1122.666667pt;}
.w2_c00240{width:26.880000pt;}
.w1_c00240{width:760.000000pt;}
.w0_c00240{width:793.333333pt;}
.x0_c00240{left:0.000000pt;}
.x1_c00240{left:16.666667pt;}
.x6_c00240{left:97.279933pt;}
.x3_c00240{left:113.946667pt;}
.x2_c00240{left:121.280000pt;}
.x8_c00240{left:135.080133pt;}
.x7_c00240{left:154.013333pt;}
.x5_c00240{left:251.801467pt;}
.x4_c00240{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a82f2ae84b35b3d938a68fd1.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00241;src:url('chunks/assets/font_c2800d8560132509db4298b9.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00241;src:url('chunks/assets/font_170d1e50d7ea5ed2f932270a.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:1.111328;font-style: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;}
.lsc_c00241{letter-spacing:-0.014400px;}
.lsa_c00241{letter-spacing:0.000000px;}
.ls4_c00241{letter-spacing:0.010800px;}
.ls0_c00241{letter-spacing:0.014400px;}
.lsb_c00241{letter-spacing:0.170496px;}
.ls3_c00241{letter-spacing:0.191160px;}
.lsd_c00241{letter-spacing:0.239760px;}
.ls8_c00241{letter-spacing:0.240360px;}
.lsf_c00241{letter-spacing:0.362304px;}
.ls7_c00241{letter-spacing:0.399600px;}
.ls2_c00241{letter-spacing:0.408720px;}
.ls1_c00241{letter-spacing:0.410256px;}
.lse_c00241{letter-spacing:0.479520px;}
.ls9_c00241{letter-spacing:0.596736px;}
.ls6_c00241{letter-spacing:16.959360px;}
.ls5_c00241{letter-spacing:39.094800px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00241{word-spacing:-20.030400px;}
.ws3_c00241{word-spacing:-20.016000px;}
.ws1_c00241{word-spacing:-15.222096px;}
.ws5_c00241{word-spacing:-15.211440px;}
.ws4_c00241{word-spacing:-15.051600px;}
.ws2_c00241{word-spacing:-14.982336px;}
.ws6_c00241{word-spacing:0.000000px;}
._4_c00241{margin-left:-1.118880px;}
._3_c00241{width:1.086696px;}
._7_c00241{width:2.814900px;}
._6_c00241{width:3.938400px;}
._a_c00241{width:5.210100px;}
._e_c00241{width:6.340320px;}
._d_c00241{width:9.076140px;}
._f_c00241{width:10.127052px;}
._8_c00241{width:17.301600px;}
._5_c00241{width:21.946104px;}
._c_c00241{width:24.825600px;}
._b_c00241{width:26.942400px;}
._9_c00241{width:38.970900px;}
._1_c00241{width:1061.484000px;}
._2_c00241{width:1146.684000px;}
._0_c00241{width:2079.683700px;}
.fc1_c00241{color:transparent;}
.fc0_c00241{color:rgb(0,0,0);}
.fs1_c00241{font-size:53.280000px;}
.fs0_c00241{font-size:72.000000px;}
.y0_c00241{bottom:0.000000px;}
.y5_c00241{bottom:3.960000px;}
.y1_c00241{bottom:18.750000px;}
.y3_c00241{bottom:36.420030px;}
.y4_c00241{bottom:47.250030px;}
.y1c_c00241{bottom:130.020030px;}
.y1b_c00241{bottom:145.500000px;}
.y1a_c00241{bottom:160.980000px;}
.y19_c00241{bottom:176.460000px;}
.y18_c00241{bottom:191.940000px;}
.y17_c00241{bottom:231.540000px;}
.y16_c00241{bottom:272.940000px;}
.y15_c00241{bottom:314.340000px;}
.y14_c00241{bottom:355.740000px;}
.y13_c00241{bottom:397.140000px;}
.y12_c00241{bottom:438.540000px;}
.y11_c00241{bottom:479.940000px;}
.y10_c00241{bottom:521.340000px;}
.yf_c00241{bottom:562.740000px;}
.ye_c00241{bottom:604.140000px;}
.yd_c00241{bottom:645.540000px;}
.yc_c00241{bottom:686.940000px;}
.yb_c00241{bottom:728.340000px;}
.ya_c00241{bottom:769.740000px;}
.y9_c00241{bottom:811.140000px;}
.y8_c00241{bottom:852.540000px;}
.y7_c00241{bottom:887.460000px;}
.y6_c00241{bottom:900.420000px;}
.y2_c00241{bottom:1174.020000px;}
.h3_c00241{height:20.520000px;}
.h4_c00241{height:47.764688px;}
.h5_c00241{height:48.623203px;}
.h2_c00241{height:64.546875px;}
.h1_c00241{height:1225.500000px;}
.h0_c00241{height:1263.000000px;}
.w2_c00241{width:30.240000px;}
.w1_c00241{width:855.000000px;}
.w0_c00241{width:892.500000px;}
.x0_c00241{left:0.000000px;}
.x1_c00241{left:18.750000px;}
.x2_c00241{left:109.439925px;}
.x8_c00241{left:141.390000px;}
.x7_c00241{left:151.965150px;}
.x3_c00241{left:157.739850px;}
.x6_c00241{left:354.570150px;}
.x4_c00241{left:735.510000px;}
.x5_c00241{left:751.440000px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.lsc_c00241{letter-spacing:-0.012800pt;}
.lsa_c00241{letter-spacing:0.000000pt;}
.ls4_c00241{letter-spacing:0.009600pt;}
.ls0_c00241{letter-spacing:0.012800pt;}
.lsb_c00241{letter-spacing:0.151552pt;}
.ls3_c00241{letter-spacing:0.169920pt;}
.lsd_c00241{letter-spacing:0.213120pt;}
.ls8_c00241{letter-spacing:0.213653pt;}
.lsf_c00241{letter-spacing:0.322048pt;}
.ls7_c00241{letter-spacing:0.355200pt;}
.ls2_c00241{letter-spacing:0.363307pt;}
.ls1_c00241{letter-spacing:0.364672pt;}
.lse_c00241{letter-spacing:0.426240pt;}
.ls9_c00241{letter-spacing:0.530432pt;}
.ls6_c00241{letter-spacing:15.074987pt;}
.ls5_c00241{letter-spacing:34.750933pt;}
.ws0_c00241{word-spacing:-17.804800pt;}
.ws3_c00241{word-spacing:-17.792000pt;}
.ws1_c00241{word-spacing:-13.530752pt;}
.ws5_c00241{word-spacing:-13.521280pt;}
.ws4_c00241{word-spacing:-13.379200pt;}
.ws2_c00241{word-spacing:-13.317632pt;}
.ws6_c00241{word-spacing:0.000000pt;}
._4_c00241{margin-left:-0.994560pt;}
._3_c00241{width:0.965952pt;}
._7_c00241{width:2.502133pt;}
._6_c00241{width:3.500800pt;}
._a_c00241{width:4.631200pt;}
._e_c00241{width:5.635840pt;}
._d_c00241{width:8.067680pt;}
._f_c00241{width:9.001824pt;}
._8_c00241{width:15.379200pt;}
._5_c00241{width:19.507648pt;}
._c_c00241{width:22.067200pt;}
._b_c00241{width:23.948800pt;}
._9_c00241{width:34.640800pt;}
._1_c00241{width:943.541333pt;}
._2_c00241{width:1019.274667pt;}
._0_c00241{width:1848.607733pt;}
.fs1_c00241{font-size:47.360000pt;}
.fs0_c00241{font-size:64.000000pt;}
.y0_c00241{bottom:0.000000pt;}
.y5_c00241{bottom:3.520000pt;}
.y1_c00241{bottom:16.666667pt;}
.y3_c00241{bottom:32.373360pt;}
.y4_c00241{bottom:42.000027pt;}
.y1c_c00241{bottom:115.573360pt;}
.y1b_c00241{bottom:129.333333pt;}
.y1a_c00241{bottom:143.093333pt;}
.y19_c00241{bottom:156.853333pt;}
.y18_c00241{bottom:170.613333pt;}
.y17_c00241{bottom:205.813333pt;}
.y16_c00241{bottom:242.613333pt;}
.y15_c00241{bottom:279.413333pt;}
.y14_c00241{bottom:316.213333pt;}
.y13_c00241{bottom:353.013333pt;}
.y12_c00241{bottom:389.813333pt;}
.y11_c00241{bottom:426.613333pt;}
.y10_c00241{bottom:463.413333pt;}
.yf_c00241{bottom:500.213333pt;}
.ye_c00241{bottom:537.013333pt;}
.yd_c00241{bottom:573.813333pt;}
.yc_c00241{bottom:610.613333pt;}
.yb_c00241{bottom:647.413333pt;}
.ya_c00241{bottom:684.213333pt;}
.y9_c00241{bottom:721.013333pt;}
.y8_c00241{bottom:757.813333pt;}
.y7_c00241{bottom:788.853333pt;}
.y6_c00241{bottom:800.373333pt;}
.y2_c00241{bottom:1043.573333pt;}
.h3_c00241{height:18.240000pt;}
.h4_c00241{height:42.457500pt;}
.h5_c00241{height:43.220625pt;}
.h2_c00241{height:57.375000pt;}
.h1_c00241{height:1089.333333pt;}
.h0_c00241{height:1122.666667pt;}
.w2_c00241{width:26.880000pt;}
.w1_c00241{width:760.000000pt;}
.w0_c00241{width:793.333333pt;}
.x0_c00241{left:0.000000pt;}
.x1_c00241{left:16.666667pt;}
.x2_c00241{left:97.279933pt;}
.x8_c00241{left:125.680000pt;}
.x7_c00241{left:135.080133pt;}
.x3_c00241{left:140.213200pt;}
.x6_c00241{left:315.173467pt;}
.x4_c00241{left:653.786667pt;}
.x5_c00241{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7947a9e4449034471115d5e8.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00242;src:url('chunks/assets/font_31c5d11d5d09e41ec244c403.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00242;src:url('chunks/assets/font_fa43492ce5512d3b1fb215d8.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:1.113281;font-style: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;}
.ls1_c00242{letter-spacing:0.000000px;}
.ls0_c00242{letter-spacing:0.014400px;}
.ls2_c00242{letter-spacing:0.036000px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00242{word-spacing:-20.030400px;}
.ws1_c00242{word-spacing:-20.016000px;}
.ws2_c00242{word-spacing:0.000000px;}
._f_c00242{width:1.000800px;}
._e_c00242{width:2.534400px;}
._9_c00242{width:3.909600px;}
._b_c00242{width:5.032800px;}
._6_c00242{width:7.473600px;}
._1_c00242{width:8.524800px;}
._a_c00242{width:9.960360px;}
._d_c00242{width:13.756500px;}
._c_c00242{width:14.760000px;}
._11_c00242{width:21.074400px;}
._10_c00242{width:22.327200px;}
._8_c00242{width:23.450400px;}
._5_c00242{width:24.916500px;}
._4_c00242{width:25.955100px;}
._12_c00242{width:27.604800px;}
._3_c00242{width:32.774400px;}
._2_c00242{width:35.114400px;}
._7_c00242{width:36.259200px;}
._0_c00242{width:1146.683400px;}
.fc1_c00242{color:transparent;}
.fc0_c00242{color:rgb(0,0,0);}
.fs0_c00242{font-size:72.000000px;}
.y0_c00242{bottom:0.000000px;}
.y4_c00242{bottom:3.960000px;}
.y1_c00242{bottom:18.750000px;}
.y2_c00242{bottom:37.860030px;}
.y3_c00242{bottom:52.290030px;}
.y1b_c00242{bottom:189.420000px;}
.y1a_c00242{bottom:231.180000px;}
.y19_c00242{bottom:272.580000px;}
.y18_c00242{bottom:313.980000px;}
.y17_c00242{bottom:355.380000px;}
.y16_c00242{bottom:396.780000px;}
.y15_c00242{bottom:438.180000px;}
.y14_c00242{bottom:479.220000px;}
.y13_c00242{bottom:541.140000px;}
.y12_c00242{bottom:582.540000px;}
.y11_c00242{bottom:623.940000px;}
.y10_c00242{bottom:665.340000px;}
.yf_c00242{bottom:706.740000px;}
.ye_c00242{bottom:748.140000px;}
.yd_c00242{bottom:789.540000px;}
.yc_c00242{bottom:830.940000px;}
.yb_c00242{bottom:872.340000px;}
.ya_c00242{bottom:913.740000px;}
.y9_c00242{bottom:955.140000px;}
.y8_c00242{bottom:996.540000px;}
.y7_c00242{bottom:1037.940000px;}
.y6_c00242{bottom:1079.340000px;}
.y5_c00242{bottom:1120.740000px;}
.h3_c00242{height:20.520000px;}
.h2_c00242{height:64.546875px;}
.h4_c00242{height:65.003906px;}
.h1_c00242{height:1225.500000px;}
.h0_c00242{height:1263.000000px;}
.w2_c00242{width:30.240000px;}
.w1_c00242{width:855.000000px;}
.w0_c00242{width:892.500000px;}
.x0_c00242{left:0.000000px;}
.x1_c00242{left:18.750000px;}
.x5_c00242{left:109.439925px;}
.x3_c00242{left:128.190000px;}
.x2_c00242{left:136.440000px;}
.x4_c00242{left:151.965150px;}
.x6_c00242{left:162.614850px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls1_c00242{letter-spacing:0.000000pt;}
.ls0_c00242{letter-spacing:0.012800pt;}
.ls2_c00242{letter-spacing:0.032000pt;}
.ws0_c00242{word-spacing:-17.804800pt;}
.ws1_c00242{word-spacing:-17.792000pt;}
.ws2_c00242{word-spacing:0.000000pt;}
._f_c00242{width:0.889600pt;}
._e_c00242{width:2.252800pt;}
._9_c00242{width:3.475200pt;}
._b_c00242{width:4.473600pt;}
._6_c00242{width:6.643200pt;}
._1_c00242{width:7.577600pt;}
._a_c00242{width:8.853653pt;}
._d_c00242{width:12.228000pt;}
._c_c00242{width:13.120000pt;}
._11_c00242{width:18.732800pt;}
._10_c00242{width:19.846400pt;}
._8_c00242{width:20.844800pt;}
._5_c00242{width:22.148000pt;}
._4_c00242{width:23.071200pt;}
._12_c00242{width:24.537600pt;}
._3_c00242{width:29.132800pt;}
._2_c00242{width:31.212800pt;}
._7_c00242{width:32.230400pt;}
._0_c00242{width:1019.274133pt;}
.fs0_c00242{font-size:64.000000pt;}
.y0_c00242{bottom:0.000000pt;}
.y4_c00242{bottom:3.520000pt;}
.y1_c00242{bottom:16.666667pt;}
.y2_c00242{bottom:33.653360pt;}
.y3_c00242{bottom:46.480027pt;}
.y1b_c00242{bottom:168.373333pt;}
.y1a_c00242{bottom:205.493333pt;}
.y19_c00242{bottom:242.293333pt;}
.y18_c00242{bottom:279.093333pt;}
.y17_c00242{bottom:315.893333pt;}
.y16_c00242{bottom:352.693333pt;}
.y15_c00242{bottom:389.493333pt;}
.y14_c00242{bottom:425.973333pt;}
.y13_c00242{bottom:481.013333pt;}
.y12_c00242{bottom:517.813333pt;}
.y11_c00242{bottom:554.613333pt;}
.y10_c00242{bottom:591.413333pt;}
.yf_c00242{bottom:628.213333pt;}
.ye_c00242{bottom:665.013333pt;}
.yd_c00242{bottom:701.813333pt;}
.yc_c00242{bottom:738.613333pt;}
.yb_c00242{bottom:775.413333pt;}
.ya_c00242{bottom:812.213333pt;}
.y9_c00242{bottom:849.013333pt;}
.y8_c00242{bottom:885.813333pt;}
.y7_c00242{bottom:922.613333pt;}
.y6_c00242{bottom:959.413333pt;}
.y5_c00242{bottom:996.213333pt;}
.h3_c00242{height:18.240000pt;}
.h2_c00242{height:57.375000pt;}
.h4_c00242{height:57.781250pt;}
.h1_c00242{height:1089.333333pt;}
.h0_c00242{height:1122.666667pt;}
.w2_c00242{width:26.880000pt;}
.w1_c00242{width:760.000000pt;}
.w0_c00242{width:793.333333pt;}
.x0_c00242{left:0.000000pt;}
.x1_c00242{left:16.666667pt;}
.x5_c00242{left:97.279933pt;}
.x3_c00242{left:113.946667pt;}
.x2_c00242{left:121.280000pt;}
.x4_c00242{left:135.080133pt;}
.x6_c00242{left:144.546533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_391a5cb1ab96e5e17abd73e7.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00243{vertical-align:0.000000px;}
.ls1_c00243{letter-spacing:0.000000px;}
.ls0_c00243{letter-spacing:0.014400px;}
.ls2_c00243{letter-spacing:0.527472px;}
.sc__c00243{text-shadow:none;}
.sc0_c00243{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00243{-webkit-text-stroke:0px transparent;}
.sc0_c00243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00243{word-spacing:-20.030400px;}
.ws1_c00243{word-spacing:0.000000px;}
._5_c00243{margin-left:-1.000800px;}
._7_c00243{width:1.008000px;}
._9_c00243{width:4.608000px;}
._a_c00243{width:6.292800px;}
._c_c00243{width:7.920000px;}
._3_c00243{width:10.562400px;}
._8_c00243{width:11.829600px;}
._6_c00243{width:15.235200px;}
._4_c00243{width:18.792000px;}
._d_c00243{width:21.715200px;}
._b_c00243{width:37.987200px;}
._1_c00243{width:1061.484000px;}
._2_c00243{width:1146.684000px;}
._0_c00243{width:2079.683700px;}
.fc1_c00243{color:transparent;}
.fc0_c00243{color:rgb(0,0,0);}
.fs1_c00243{font-size:53.280000px;}
.fs0_c00243{font-size:72.000000px;}
.y0_c00243{bottom:0.000000px;}
.y5_c00243{bottom:3.960000px;}
.y1_c00243{bottom:18.750000px;}
.y3_c00243{bottom:36.420030px;}
.y4_c00243{bottom:47.250030px;}
.y15_c00243{bottom:152.340000px;}
.y14_c00243{bottom:193.740000px;}
.y13_c00243{bottom:235.140000px;}
.y12_c00243{bottom:288.420000px;}
.y11_c00243{bottom:301.020000px;}
.y10_c00243{bottom:706.740000px;}
.yf_c00243{bottom:748.140000px;}
.ye_c00243{bottom:789.540000px;}
.yd_c00243{bottom:830.940000px;}
.yc_c00243{bottom:872.340000px;}
.yb_c00243{bottom:913.740000px;}
.ya_c00243{bottom:955.140000px;}
.y9_c00243{bottom:996.540000px;}
.y8_c00243{bottom:1037.940000px;}
.y7_c00243{bottom:1079.340000px;}
.y6_c00243{bottom:1120.740000px;}
.y2_c00243{bottom:1174.020000px;}
.h3_c00243{height:20.520000px;}
.h4_c00243{height:47.764688px;}
.h2_c00243{height:64.546875px;}
.h1_c00243{height:1225.500000px;}
.h0_c00243{height:1263.000000px;}
.w2_c00243{width:30.240000px;}
.w1_c00243{width:855.000000px;}
.w0_c00243{width:892.500000px;}
.x0_c00243{left:0.000000px;}
.x1_c00243{left:18.750000px;}
.x2_c00243{left:109.439925px;}
.x5_c00243{left:151.965150px;}
.x3_c00243{left:157.739850px;}
.x7_c00243{left:294.904500px;}
.x4_c00243{left:735.510000px;}
.x6_c00243{left:754.440000px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls1_c00243{letter-spacing:0.000000pt;}
.ls0_c00243{letter-spacing:0.012800pt;}
.ls2_c00243{letter-spacing:0.468864pt;}
.ws0_c00243{word-spacing:-17.804800pt;}
.ws1_c00243{word-spacing:0.000000pt;}
._5_c00243{margin-left:-0.889600pt;}
._7_c00243{width:0.896000pt;}
._9_c00243{width:4.096000pt;}
._a_c00243{width:5.593600pt;}
._c_c00243{width:7.040000pt;}
._3_c00243{width:9.388800pt;}
._8_c00243{width:10.515200pt;}
._6_c00243{width:13.542400pt;}
._4_c00243{width:16.704000pt;}
._d_c00243{width:19.302400pt;}
._b_c00243{width:33.766400pt;}
._1_c00243{width:943.541333pt;}
._2_c00243{width:1019.274667pt;}
._0_c00243{width:1848.607733pt;}
.fs1_c00243{font-size:47.360000pt;}
.fs0_c00243{font-size:64.000000pt;}
.y0_c00243{bottom:0.000000pt;}
.y5_c00243{bottom:3.520000pt;}
.y1_c00243{bottom:16.666667pt;}
.y3_c00243{bottom:32.373360pt;}
.y4_c00243{bottom:42.000027pt;}
.y15_c00243{bottom:135.413333pt;}
.y14_c00243{bottom:172.213333pt;}
.y13_c00243{bottom:209.013333pt;}
.y12_c00243{bottom:256.373333pt;}
.y11_c00243{bottom:267.573333pt;}
.y10_c00243{bottom:628.213333pt;}
.yf_c00243{bottom:665.013333pt;}
.ye_c00243{bottom:701.813333pt;}
.yd_c00243{bottom:738.613333pt;}
.yc_c00243{bottom:775.413333pt;}
.yb_c00243{bottom:812.213333pt;}
.ya_c00243{bottom:849.013333pt;}
.y9_c00243{bottom:885.813333pt;}
.y8_c00243{bottom:922.613333pt;}
.y7_c00243{bottom:959.413333pt;}
.y6_c00243{bottom:996.213333pt;}
.y2_c00243{bottom:1043.573333pt;}
.h3_c00243{height:18.240000pt;}
.h4_c00243{height:42.457500pt;}
.h2_c00243{height:57.375000pt;}
.h1_c00243{height:1089.333333pt;}
.h0_c00243{height:1122.666667pt;}
.w2_c00243{width:26.880000pt;}
.w1_c00243{width:760.000000pt;}
.w0_c00243{width:793.333333pt;}
.x0_c00243{left:0.000000pt;}
.x1_c00243{left:16.666667pt;}
.x2_c00243{left:97.279933pt;}
.x5_c00243{left:135.080133pt;}
.x3_c00243{left:140.213200pt;}
.x7_c00243{left:262.137333pt;}
.x4_c00243{left:653.786667pt;}
.x6_c00243{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3a48f76a0d4713e3bd345275.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00244;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.113281;font-style: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;}
.ls4_c00244{letter-spacing:-0.014400px;}
.ls3_c00244{letter-spacing:0.000000px;}
.ls0_c00244{letter-spacing:0.014400px;}
.ls2_c00244{letter-spacing:0.410256px;}
.ls1_c00244{letter-spacing:0.420912px;}
.sc__c00244{text-shadow:none;}
.sc0_c00244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00244{-webkit-text-stroke:0px transparent;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00244{word-spacing:-20.030400px;}
.ws1_c00244{word-spacing:-15.222096px;}
.ws2_c00244{word-spacing:0.000000px;}
._1_c00244{margin-left:-1.065600px;}
._2_c00244{width:7.488000px;}
._3_c00244{width:18.677100px;}
._0_c00244{width:1146.683400px;}
.fc1_c00244{color:transparent;}
.fc0_c00244{color:rgb(0,0,0);}
.fs1_c00244{font-size:53.280000px;}
.fs0_c00244{font-size:72.000000px;}
.y0_c00244{bottom:0.000000px;}
.y4_c00244{bottom:3.960000px;}
.y1_c00244{bottom:18.750000px;}
.y2_c00244{bottom:37.860030px;}
.y3_c00244{bottom:52.290030px;}
.yb_c00244{bottom:165.660000px;}
.ya_c00244{bottom:207.060000px;}
.y9_c00244{bottom:248.460000px;}
.y8_c00244{bottom:301.740000px;}
.y7_c00244{bottom:314.340000px;}
.y6_c00244{bottom:734.460000px;}
.y5_c00244{bottom:747.420000px;}
.h3_c00244{height:20.520000px;}
.h5_c00244{height:47.764688px;}
.h2_c00244{height:64.546875px;}
.h4_c00244{height:65.003906px;}
.h1_c00244{height:1225.500000px;}
.h0_c00244{height:1263.000000px;}
.w2_c00244{width:30.240000px;}
.w1_c00244{width:855.000000px;}
.w0_c00244{width:892.500000px;}
.x0_c00244{left:0.000000px;}
.x1_c00244{left:18.750000px;}
.x9_c00244{left:109.439925px;}
.x3_c00244{left:128.190000px;}
.x2_c00244{left:136.440000px;}
.x8_c00244{left:151.965150px;}
.x5_c00244{left:284.769600px;}
.x7_c00244{left:286.269300px;}
.x4_c00244{left:751.440000px;}
.x6_c00244{left:754.440000px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls4_c00244{letter-spacing:-0.012800pt;}
.ls3_c00244{letter-spacing:0.000000pt;}
.ls0_c00244{letter-spacing:0.012800pt;}
.ls2_c00244{letter-spacing:0.364672pt;}
.ls1_c00244{letter-spacing:0.374144pt;}
.ws0_c00244{word-spacing:-17.804800pt;}
.ws1_c00244{word-spacing:-13.530752pt;}
.ws2_c00244{word-spacing:0.000000pt;}
._1_c00244{margin-left:-0.947200pt;}
._2_c00244{width:6.656000pt;}
._3_c00244{width:16.601867pt;}
._0_c00244{width:1019.274133pt;}
.fs1_c00244{font-size:47.360000pt;}
.fs0_c00244{font-size:64.000000pt;}
.y0_c00244{bottom:0.000000pt;}
.y4_c00244{bottom:3.520000pt;}
.y1_c00244{bottom:16.666667pt;}
.y2_c00244{bottom:33.653360pt;}
.y3_c00244{bottom:46.480027pt;}
.yb_c00244{bottom:147.253333pt;}
.ya_c00244{bottom:184.053333pt;}
.y9_c00244{bottom:220.853333pt;}
.y8_c00244{bottom:268.213333pt;}
.y7_c00244{bottom:279.413333pt;}
.y6_c00244{bottom:652.853333pt;}
.y5_c00244{bottom:664.373333pt;}
.h3_c00244{height:18.240000pt;}
.h5_c00244{height:42.457500pt;}
.h2_c00244{height:57.375000pt;}
.h4_c00244{height:57.781250pt;}
.h1_c00244{height:1089.333333pt;}
.h0_c00244{height:1122.666667pt;}
.w2_c00244{width:26.880000pt;}
.w1_c00244{width:760.000000pt;}
.w0_c00244{width:793.333333pt;}
.x0_c00244{left:0.000000pt;}
.x1_c00244{left:16.666667pt;}
.x9_c00244{left:97.279933pt;}
.x3_c00244{left:113.946667pt;}
.x2_c00244{left:121.280000pt;}
.x8_c00244{left:135.080133pt;}
.x5_c00244{left:253.128533pt;}
.x7_c00244{left:254.461600pt;}
.x4_c00244{left:667.946667pt;}
.x6_c00244{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_687bc849a96d00c32db536b4.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00245{letter-spacing:0.000000px;}
.ls0_c00245{letter-spacing:0.014400px;}
.ls3_c00245{letter-spacing:0.410256px;}
.ls2_c00245{letter-spacing:0.527472px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00245{word-spacing:-20.030400px;}
.ws1_c00245{word-spacing:0.000000px;}
._f_c00245{margin-left:-1.065600px;}
._4_c00245{width:1.004400px;}
._7_c00245{width:2.044800px;}
._b_c00245{width:5.097600px;}
._6_c00245{width:7.005600px;}
._5_c00245{width:8.892000px;}
._e_c00245{width:10.108800px;}
._d_c00245{width:13.809600px;}
._c_c00245{width:17.683200px;}
._3_c00245{width:21.178800px;}
._a_c00245{width:23.896800px;}
._8_c00245{width:27.295200px;}
._9_c00245{width:28.965600px;}
._1_c00245{width:1061.484000px;}
._2_c00245{width:1146.684000px;}
._0_c00245{width:2079.683700px;}
.fc1_c00245{color:transparent;}
.fc0_c00245{color:rgb(0,0,0);}
.fs1_c00245{font-size:53.280000px;}
.fs0_c00245{font-size:72.000000px;}
.y0_c00245{bottom:0.000000px;}
.y5_c00245{bottom:3.960000px;}
.y1_c00245{bottom:18.750000px;}
.y3_c00245{bottom:36.420030px;}
.y4_c00245{bottom:47.250030px;}
.y13_c00245{bottom:150.900000px;}
.y12_c00245{bottom:163.500000px;}
.y11_c00245{bottom:665.340000px;}
.y10_c00245{bottom:706.740000px;}
.yf_c00245{bottom:748.140000px;}
.ye_c00245{bottom:789.540000px;}
.yd_c00245{bottom:830.940000px;}
.yc_c00245{bottom:872.340000px;}
.yb_c00245{bottom:913.740000px;}
.ya_c00245{bottom:955.140000px;}
.y9_c00245{bottom:996.540000px;}
.y8_c00245{bottom:1037.940000px;}
.y7_c00245{bottom:1079.340000px;}
.y6_c00245{bottom:1120.740000px;}
.y2_c00245{bottom:1174.020000px;}
.h3_c00245{height:20.520000px;}
.h4_c00245{height:47.764688px;}
.h2_c00245{height:64.546875px;}
.h1_c00245{height:1225.500000px;}
.h0_c00245{height:1263.000000px;}
.w2_c00245{width:30.240000px;}
.w1_c00245{width:855.000000px;}
.w0_c00245{width:892.500000px;}
.x0_c00245{left:0.000000px;}
.x1_c00245{left:18.750000px;}
.x2_c00245{left:109.439925px;}
.x5_c00245{left:151.965150px;}
.x3_c00245{left:157.739850px;}
.x7_c00245{left:251.761200px;}
.x4_c00245{left:735.510000px;}
.x6_c00245{left:754.440000px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls1_c00245{letter-spacing:0.000000pt;}
.ls0_c00245{letter-spacing:0.012800pt;}
.ls3_c00245{letter-spacing:0.364672pt;}
.ls2_c00245{letter-spacing:0.468864pt;}
.ws0_c00245{word-spacing:-17.804800pt;}
.ws1_c00245{word-spacing:0.000000pt;}
._f_c00245{margin-left:-0.947200pt;}
._4_c00245{width:0.892800pt;}
._7_c00245{width:1.817600pt;}
._b_c00245{width:4.531200pt;}
._6_c00245{width:6.227200pt;}
._5_c00245{width:7.904000pt;}
._e_c00245{width:8.985600pt;}
._d_c00245{width:12.275200pt;}
._c_c00245{width:15.718400pt;}
._3_c00245{width:18.825600pt;}
._a_c00245{width:21.241600pt;}
._8_c00245{width:24.262400pt;}
._9_c00245{width:25.747200pt;}
._1_c00245{width:943.541333pt;}
._2_c00245{width:1019.274667pt;}
._0_c00245{width:1848.607733pt;}
.fs1_c00245{font-size:47.360000pt;}
.fs0_c00245{font-size:64.000000pt;}
.y0_c00245{bottom:0.000000pt;}
.y5_c00245{bottom:3.520000pt;}
.y1_c00245{bottom:16.666667pt;}
.y3_c00245{bottom:32.373360pt;}
.y4_c00245{bottom:42.000027pt;}
.y13_c00245{bottom:134.133333pt;}
.y12_c00245{bottom:145.333333pt;}
.y11_c00245{bottom:591.413333pt;}
.y10_c00245{bottom:628.213333pt;}
.yf_c00245{bottom:665.013333pt;}
.ye_c00245{bottom:701.813333pt;}
.yd_c00245{bottom:738.613333pt;}
.yc_c00245{bottom:775.413333pt;}
.yb_c00245{bottom:812.213333pt;}
.ya_c00245{bottom:849.013333pt;}
.y9_c00245{bottom:885.813333pt;}
.y8_c00245{bottom:922.613333pt;}
.y7_c00245{bottom:959.413333pt;}
.y6_c00245{bottom:996.213333pt;}
.y2_c00245{bottom:1043.573333pt;}
.h3_c00245{height:18.240000pt;}
.h4_c00245{height:42.457500pt;}
.h2_c00245{height:57.375000pt;}
.h1_c00245{height:1089.333333pt;}
.h0_c00245{height:1122.666667pt;}
.w2_c00245{width:26.880000pt;}
.w1_c00245{width:760.000000pt;}
.w0_c00245{width:793.333333pt;}
.x0_c00245{left:0.000000pt;}
.x1_c00245{left:16.666667pt;}
.x2_c00245{left:97.279933pt;}
.x5_c00245{left:135.080133pt;}
.x3_c00245{left:140.213200pt;}
.x7_c00245{left:223.787733pt;}
.x4_c00245{left:653.786667pt;}
.x6_c00245{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d3ec305d2513ad6346675d6e.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00246;src:url('chunks/assets/font_d90679b59c62e8467a9d4081.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.104492;font-style: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;}
.v1_c00246{vertical-align:33.120000px;}
.lsc_c00246{letter-spacing:-0.014400px;}
.ls9_c00246{letter-spacing:0.000000px;}
.ls2_c00246{letter-spacing:0.000600px;}
.ls0_c00246{letter-spacing:0.014400px;}
.ls8_c00246{letter-spacing:0.036000px;}
.ls1_c00246{letter-spacing:0.274080px;}
.ls3_c00246{letter-spacing:0.274200px;}
.ls5_c00246{letter-spacing:0.274260px;}
.ls4_c00246{letter-spacing:0.274680px;}
.lsb_c00246{letter-spacing:0.410256px;}
.lsa_c00246{letter-spacing:0.527472px;}
.ls7_c00246{letter-spacing:5.785800px;}
.ls6_c00246{letter-spacing:18.877200px;}
.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:-20.030400px;}
.ws1_c00246{word-spacing:-20.016000px;}
.ws2_c00246{word-spacing:-20.001600px;}
.ws3_c00246{word-spacing:0.000000px;}
._1_c00246{margin-left:-1.065600px;}
._b_c00246{width:2.540040px;}
._c_c00246{width:4.885500px;}
._8_c00246{width:6.138900px;}
._2_c00246{width:7.682400px;}
._3_c00246{width:11.196900px;}
._5_c00246{width:12.475800px;}
._6_c00246{width:13.766400px;}
._7_c00246{width:18.777600px;}
._a_c00246{width:25.922820px;}
._9_c00246{width:30.408300px;}
._4_c00246{width:39.902400px;}
._0_c00246{width:1146.683400px;}
.fc1_c00246{color:transparent;}
.fc0_c00246{color:rgb(0,0,0);}
.fs2_c00246{font-size:47.520000px;}
.fs1_c00246{font-size:53.280000px;}
.fs0_c00246{font-size:72.000000px;}
.y0_c00246{bottom:0.000000px;}
.y4_c00246{bottom:3.960000px;}
.y1_c00246{bottom:18.750000px;}
.y2_c00246{bottom:37.860030px;}
.y3_c00246{bottom:52.290030px;}
.y16_c00246{bottom:113.460015px;}
.y15_c00246{bottom:154.860000px;}
.y14_c00246{bottom:196.260000px;}
.y13_c00246{bottom:237.660000px;}
.y12_c00246{bottom:279.060000px;}
.y11_c00246{bottom:320.460000px;}
.y10_c00246{bottom:361.860000px;}
.yf_c00246{bottom:403.260000px;}
.ye_c00246{bottom:444.660000px;}
.yd_c00246{bottom:486.060000px;}
.yc_c00246{bottom:527.460000px;}
.yb_c00246{bottom:568.860000px;}
.ya_c00246{bottom:610.260000px;}
.y9_c00246{bottom:651.660000px;}
.y8_c00246{bottom:693.060000px;}
.y7_c00246{bottom:713.940000px;}
.y6_c00246{bottom:748.860000px;}
.y5_c00246{bottom:761.820000px;}
.h3_c00246{height:20.520000px;}
.h4_c00246{height:47.764688px;}
.h2_c00246{height:64.546875px;}
.h5_c00246{height:75.604922px;}
.h1_c00246{height:1225.500000px;}
.h0_c00246{height:1263.000000px;}
.w2_c00246{width:30.240000px;}
.w1_c00246{width:855.000000px;}
.w0_c00246{width:892.500000px;}
.x0_c00246{left:0.000000px;}
.x1_c00246{left:18.750000px;}
.x6_c00246{left:109.439925px;}
.x3_c00246{left:128.190000px;}
.x2_c00246{left:136.440000px;}
.x7_c00246{left:151.965150px;}
.x5_c00246{left:265.271100px;}
.x4_c00246{left:750.689850px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.v1_c00246{vertical-align:29.440000pt;}
.lsc_c00246{letter-spacing:-0.012800pt;}
.ls9_c00246{letter-spacing:0.000000pt;}
.ls2_c00246{letter-spacing:0.000533pt;}
.ls0_c00246{letter-spacing:0.012800pt;}
.ls8_c00246{letter-spacing:0.032000pt;}
.ls1_c00246{letter-spacing:0.243627pt;}
.ls3_c00246{letter-spacing:0.243733pt;}
.ls5_c00246{letter-spacing:0.243787pt;}
.ls4_c00246{letter-spacing:0.244160pt;}
.lsb_c00246{letter-spacing:0.364672pt;}
.lsa_c00246{letter-spacing:0.468864pt;}
.ls7_c00246{letter-spacing:5.142933pt;}
.ls6_c00246{letter-spacing:16.779733pt;}
.ws0_c00246{word-spacing:-17.804800pt;}
.ws1_c00246{word-spacing:-17.792000pt;}
.ws2_c00246{word-spacing:-17.779200pt;}
.ws3_c00246{word-spacing:0.000000pt;}
._1_c00246{margin-left:-0.947200pt;}
._b_c00246{width:2.257813pt;}
._c_c00246{width:4.342667pt;}
._8_c00246{width:5.456800pt;}
._2_c00246{width:6.828800pt;}
._3_c00246{width:9.952800pt;}
._5_c00246{width:11.089600pt;}
._6_c00246{width:12.236800pt;}
._7_c00246{width:16.691200pt;}
._a_c00246{width:23.042507pt;}
._9_c00246{width:27.029600pt;}
._4_c00246{width:35.468800pt;}
._0_c00246{width:1019.274133pt;}
.fs2_c00246{font-size:42.240000pt;}
.fs1_c00246{font-size:47.360000pt;}
.fs0_c00246{font-size:64.000000pt;}
.y0_c00246{bottom:0.000000pt;}
.y4_c00246{bottom:3.520000pt;}
.y1_c00246{bottom:16.666667pt;}
.y2_c00246{bottom:33.653360pt;}
.y3_c00246{bottom:46.480027pt;}
.y16_c00246{bottom:100.853347pt;}
.y15_c00246{bottom:137.653333pt;}
.y14_c00246{bottom:174.453333pt;}
.y13_c00246{bottom:211.253333pt;}
.y12_c00246{bottom:248.053333pt;}
.y11_c00246{bottom:284.853333pt;}
.y10_c00246{bottom:321.653333pt;}
.yf_c00246{bottom:358.453333pt;}
.ye_c00246{bottom:395.253333pt;}
.yd_c00246{bottom:432.053333pt;}
.yc_c00246{bottom:468.853333pt;}
.yb_c00246{bottom:505.653333pt;}
.ya_c00246{bottom:542.453333pt;}
.y9_c00246{bottom:579.253333pt;}
.y8_c00246{bottom:616.053333pt;}
.y7_c00246{bottom:634.613333pt;}
.y6_c00246{bottom:665.653333pt;}
.y5_c00246{bottom:677.173333pt;}
.h3_c00246{height:18.240000pt;}
.h4_c00246{height:42.457500pt;}
.h2_c00246{height:57.375000pt;}
.h5_c00246{height:67.204375pt;}
.h1_c00246{height:1089.333333pt;}
.h0_c00246{height:1122.666667pt;}
.w2_c00246{width:26.880000pt;}
.w1_c00246{width:760.000000pt;}
.w0_c00246{width:793.333333pt;}
.x0_c00246{left:0.000000pt;}
.x1_c00246{left:16.666667pt;}
.x6_c00246{left:97.279933pt;}
.x3_c00246{left:113.946667pt;}
.x2_c00246{left:121.280000pt;}
.x7_c00246{left:135.080133pt;}
.x5_c00246{left:235.796533pt;}
.x4_c00246{left:667.279867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_50063c2ecc54da897e144de0.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00247;src:url('chunks/assets/font_fda98253e9890296599461f8.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00247;src:url('chunks/assets/font_316a3d750abd1688a706e244.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.104492;font-style: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;}
.v1_c00247{vertical-align:33.120000px;}
.ls9_c00247{letter-spacing:-0.014400px;}
.ls8_c00247{letter-spacing:0.000000px;}
.ls0_c00247{letter-spacing:0.014400px;}
.lsa_c00247{letter-spacing:0.036000px;}
.lse_c00247{letter-spacing:0.143856px;}
.ls11_c00247{letter-spacing:0.224352px;}
.lsb_c00247{letter-spacing:0.239760px;}
.ls4_c00247{letter-spacing:0.240360px;}
.ls1_c00247{letter-spacing:0.274080px;}
.lsd_c00247{letter-spacing:0.410256px;}
.ls5_c00247{letter-spacing:0.415584px;}
.ls6_c00247{letter-spacing:0.436896px;}
.lsc_c00247{letter-spacing:0.479520px;}
.lsf_c00247{letter-spacing:0.527472px;}
.ls10_c00247{letter-spacing:0.826560px;}
.ls2_c00247{letter-spacing:1.164000px;}
.ls7_c00247{letter-spacing:2.993280px;}
.ls3_c00247{letter-spacing:16.959360px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00247{word-spacing:-20.030400px;}
.ws1_c00247{word-spacing:-20.016000px;}
.ws2_c00247{word-spacing:-15.051600px;}
.ws3_c00247{word-spacing:0.000000px;}
._e_c00247{margin-left:-1.188180px;}
._7_c00247{width:1.512000px;}
._5_c00247{width:2.707200px;}
._f_c00247{width:3.854700px;}
._9_c00247{width:5.724000px;}
._b_c00247{width:6.897600px;}
._6_c00247{width:8.136000px;}
._c_c00247{width:9.957600px;}
._a_c00247{width:11.383200px;}
._3_c00247{width:13.183200px;}
._4_c00247{width:17.071200px;}
._8_c00247{width:18.986400px;}
._d_c00247{width:33.487200px;}
._1_c00247{width:1061.484000px;}
._2_c00247{width:1146.684000px;}
._0_c00247{width:2079.683700px;}
.fc1_c00247{color:transparent;}
.fc0_c00247{color:rgb(0,0,0);}
.fs2_c00247{font-size:47.520000px;}
.fs1_c00247{font-size:53.280000px;}
.fs3_c00247{font-size:59.040000px;}
.fs0_c00247{font-size:72.000000px;}
.y0_c00247{bottom:0.000000px;}
.y5_c00247{bottom:3.960000px;}
.y1_c00247{bottom:18.750000px;}
.y3_c00247{bottom:36.420030px;}
.y4_c00247{bottom:47.250030px;}
.y21_c00247{bottom:108.780030px;}
.y20_c00247{bottom:126.060030px;}
.y1f_c00247{bottom:142.620000px;}
.y1e_c00247{bottom:158.100000px;}
.y1d_c00247{bottom:173.580000px;}
.y1c_c00247{bottom:189.420000px;}
.y1b_c00247{bottom:228.660000px;}
.y1a_c00247{bottom:270.060000px;}
.y19_c00247{bottom:311.460000px;}
.y18_c00247{bottom:352.860000px;}
.y17_c00247{bottom:394.260000px;}
.y16_c00247{bottom:435.660000px;}
.y15_c00247{bottom:477.060000px;}
.y14_c00247{bottom:518.460000px;}
.y13_c00247{bottom:559.860000px;}
.y12_c00247{bottom:601.260000px;}
.y11_c00247{bottom:642.660000px;}
.y10_c00247{bottom:684.060000px;}
.yf_c00247{bottom:725.460000px;}
.ye_c00247{bottom:766.860000px;}
.yd_c00247{bottom:808.260000px;}
.yc_c00247{bottom:849.660000px;}
.yb_c00247{bottom:891.060000px;}
.ya_c00247{bottom:952.620000px;}
.y9_c00247{bottom:994.380000px;}
.y8_c00247{bottom:1035.780000px;}
.y7_c00247{bottom:1077.180000px;}
.y6_c00247{bottom:1118.220000px;}
.y2_c00247{bottom:1174.020000px;}
.h3_c00247{height:20.520000px;}
.h6_c00247{height:47.764688px;}
.h7_c00247{height:52.928438px;}
.h2_c00247{height:64.546875px;}
.h4_c00247{height:65.003906px;}
.h5_c00247{height:75.604922px;}
.h1_c00247{height:1225.500000px;}
.h0_c00247{height:1263.000000px;}
.w2_c00247{width:30.240000px;}
.w1_c00247{width:855.000000px;}
.w0_c00247{width:892.500000px;}
.x0_c00247{left:0.000000px;}
.x1_c00247{left:18.750000px;}
.x2_c00247{left:109.439925px;}
.x6_c00247{left:141.390000px;}
.x5_c00247{left:151.965150px;}
.x3_c00247{left:157.739850px;}
.x4_c00247{left:735.510000px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.v1_c00247{vertical-align:29.440000pt;}
.ls9_c00247{letter-spacing:-0.012800pt;}
.ls8_c00247{letter-spacing:0.000000pt;}
.ls0_c00247{letter-spacing:0.012800pt;}
.lsa_c00247{letter-spacing:0.032000pt;}
.lse_c00247{letter-spacing:0.127872pt;}
.ls11_c00247{letter-spacing:0.199424pt;}
.lsb_c00247{letter-spacing:0.213120pt;}
.ls4_c00247{letter-spacing:0.213653pt;}
.ls1_c00247{letter-spacing:0.243627pt;}
.lsd_c00247{letter-spacing:0.364672pt;}
.ls5_c00247{letter-spacing:0.369408pt;}
.ls6_c00247{letter-spacing:0.388352pt;}
.lsc_c00247{letter-spacing:0.426240pt;}
.lsf_c00247{letter-spacing:0.468864pt;}
.ls10_c00247{letter-spacing:0.734720pt;}
.ls2_c00247{letter-spacing:1.034667pt;}
.ls7_c00247{letter-spacing:2.660693pt;}
.ls3_c00247{letter-spacing:15.074987pt;}
.ws0_c00247{word-spacing:-17.804800pt;}
.ws1_c00247{word-spacing:-17.792000pt;}
.ws2_c00247{word-spacing:-13.379200pt;}
.ws3_c00247{word-spacing:0.000000pt;}
._e_c00247{margin-left:-1.056160pt;}
._7_c00247{width:1.344000pt;}
._5_c00247{width:2.406400pt;}
._f_c00247{width:3.426400pt;}
._9_c00247{width:5.088000pt;}
._b_c00247{width:6.131200pt;}
._6_c00247{width:7.232000pt;}
._c_c00247{width:8.851200pt;}
._a_c00247{width:10.118400pt;}
._3_c00247{width:11.718400pt;}
._4_c00247{width:15.174400pt;}
._8_c00247{width:16.876800pt;}
._d_c00247{width:29.766400pt;}
._1_c00247{width:943.541333pt;}
._2_c00247{width:1019.274667pt;}
._0_c00247{width:1848.607733pt;}
.fs2_c00247{font-size:42.240000pt;}
.fs1_c00247{font-size:47.360000pt;}
.fs3_c00247{font-size:52.480000pt;}
.fs0_c00247{font-size:64.000000pt;}
.y0_c00247{bottom:0.000000pt;}
.y5_c00247{bottom:3.520000pt;}
.y1_c00247{bottom:16.666667pt;}
.y3_c00247{bottom:32.373360pt;}
.y4_c00247{bottom:42.000027pt;}
.y21_c00247{bottom:96.693360pt;}
.y20_c00247{bottom:112.053360pt;}
.y1f_c00247{bottom:126.773333pt;}
.y1e_c00247{bottom:140.533333pt;}
.y1d_c00247{bottom:154.293333pt;}
.y1c_c00247{bottom:168.373333pt;}
.y1b_c00247{bottom:203.253333pt;}
.y1a_c00247{bottom:240.053333pt;}
.y19_c00247{bottom:276.853333pt;}
.y18_c00247{bottom:313.653333pt;}
.y17_c00247{bottom:350.453333pt;}
.y16_c00247{bottom:387.253333pt;}
.y15_c00247{bottom:424.053333pt;}
.y14_c00247{bottom:460.853333pt;}
.y13_c00247{bottom:497.653333pt;}
.y12_c00247{bottom:534.453333pt;}
.y11_c00247{bottom:571.253333pt;}
.y10_c00247{bottom:608.053333pt;}
.yf_c00247{bottom:644.853333pt;}
.ye_c00247{bottom:681.653333pt;}
.yd_c00247{bottom:718.453333pt;}
.yc_c00247{bottom:755.253333pt;}
.yb_c00247{bottom:792.053333pt;}
.ya_c00247{bottom:846.773333pt;}
.y9_c00247{bottom:883.893333pt;}
.y8_c00247{bottom:920.693333pt;}
.y7_c00247{bottom:957.493333pt;}
.y6_c00247{bottom:993.973333pt;}
.y2_c00247{bottom:1043.573333pt;}
.h3_c00247{height:18.240000pt;}
.h6_c00247{height:42.457500pt;}
.h7_c00247{height:47.047500pt;}
.h2_c00247{height:57.375000pt;}
.h4_c00247{height:57.781250pt;}
.h5_c00247{height:67.204375pt;}
.h1_c00247{height:1089.333333pt;}
.h0_c00247{height:1122.666667pt;}
.w2_c00247{width:26.880000pt;}
.w1_c00247{width:760.000000pt;}
.w0_c00247{width:793.333333pt;}
.x0_c00247{left:0.000000pt;}
.x1_c00247{left:16.666667pt;}
.x2_c00247{left:97.279933pt;}
.x6_c00247{left:125.680000pt;}
.x5_c00247{left:135.080133pt;}
.x3_c00247{left:140.213200pt;}
.x4_c00247{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_992019943f2a853c8687712e.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00248;src:url('chunks/assets/font_adaeb528a746aee578bff9b5.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:0.953125;font-style: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;}
.v1_c00248{vertical-align:33.120000px;}
.ls5_c00248{letter-spacing:0.000000px;}
.ls0_c00248{letter-spacing:0.014400px;}
.ls3_c00248{letter-spacing:0.036000px;}
.ls2_c00248{letter-spacing:0.125040px;}
.ls1_c00248{letter-spacing:0.125640px;}
.ls6_c00248{letter-spacing:0.191808px;}
.ls4_c00248{letter-spacing:0.426240px;}
.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;}
}
.ws2_c00248{word-spacing:-36.000000px;}
.ws0_c00248{word-spacing:-20.030400px;}
.ws1_c00248{word-spacing:-20.016000px;}
.ws3_c00248{word-spacing:0.000000px;}
._5_c00248{margin-left:-1.065600px;}
._3_c00248{width:1.771200px;}
._4_c00248{width:7.005600px;}
._1_c00248{width:8.100000px;}
._2_c00248{width:9.921300px;}
._0_c00248{width:1146.683400px;}
.fc1_c00248{color:transparent;}
.fc0_c00248{color:rgb(0,0,0);}
.fs1_c00248{font-size:47.520000px;}
.fs2_c00248{font-size:53.280000px;}
.fs0_c00248{font-size:72.000000px;}
.y0_c00248{bottom:0.000000px;}
.y4_c00248{bottom:3.960000px;}
.y1_c00248{bottom:18.750000px;}
.y2_c00248{bottom:37.860030px;}
.y3_c00248{bottom:52.290030px;}
.yd_c00248{bottom:91.500030px;}
.yc_c00248{bottom:104.100030px;}
.yb_c00248{bottom:866.940000px;}
.ya_c00248{bottom:908.340000px;}
.y9_c00248{bottom:949.740000px;}
.y8_c00248{bottom:991.140000px;}
.y7_c00248{bottom:1036.860000px;}
.y6_c00248{bottom:1079.340000px;}
.y5_c00248{bottom:1120.740000px;}
.h3_c00248{height:20.520000px;}
.h5_c00248{height:47.764688px;}
.h2_c00248{height:64.546875px;}
.h4_c00248{height:75.720937px;}
.h1_c00248{height:1225.500000px;}
.h0_c00248{height:1263.000000px;}
.w2_c00248{width:30.240000px;}
.w1_c00248{width:855.000000px;}
.w0_c00248{width:892.500000px;}
.x0_c00248{left:0.000000px;}
.x1_c00248{left:18.750000px;}
.x4_c00248{left:109.439925px;}
.x3_c00248{left:128.190000px;}
.x2_c00248{left:136.440000px;}
.x5_c00248{left:151.965150px;}
.x7_c00248{left:229.616100px;}
.x6_c00248{left:751.440000px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.v1_c00248{vertical-align:29.440000pt;}
.ls5_c00248{letter-spacing:0.000000pt;}
.ls0_c00248{letter-spacing:0.012800pt;}
.ls3_c00248{letter-spacing:0.032000pt;}
.ls2_c00248{letter-spacing:0.111147pt;}
.ls1_c00248{letter-spacing:0.111680pt;}
.ls6_c00248{letter-spacing:0.170496pt;}
.ls4_c00248{letter-spacing:0.378880pt;}
.ws2_c00248{word-spacing:-32.000000pt;}
.ws0_c00248{word-spacing:-17.804800pt;}
.ws1_c00248{word-spacing:-17.792000pt;}
.ws3_c00248{word-spacing:0.000000pt;}
._5_c00248{margin-left:-0.947200pt;}
._3_c00248{width:1.574400pt;}
._4_c00248{width:6.227200pt;}
._1_c00248{width:7.200000pt;}
._2_c00248{width:8.818933pt;}
._0_c00248{width:1019.274133pt;}
.fs1_c00248{font-size:42.240000pt;}
.fs2_c00248{font-size:47.360000pt;}
.fs0_c00248{font-size:64.000000pt;}
.y0_c00248{bottom:0.000000pt;}
.y4_c00248{bottom:3.520000pt;}
.y1_c00248{bottom:16.666667pt;}
.y2_c00248{bottom:33.653360pt;}
.y3_c00248{bottom:46.480027pt;}
.yd_c00248{bottom:81.333360pt;}
.yc_c00248{bottom:92.533360pt;}
.yb_c00248{bottom:770.613333pt;}
.ya_c00248{bottom:807.413333pt;}
.y9_c00248{bottom:844.213333pt;}
.y8_c00248{bottom:881.013333pt;}
.y7_c00248{bottom:921.653333pt;}
.y6_c00248{bottom:959.413333pt;}
.y5_c00248{bottom:996.213333pt;}
.h3_c00248{height:18.240000pt;}
.h5_c00248{height:42.457500pt;}
.h2_c00248{height:57.375000pt;}
.h4_c00248{height:67.307500pt;}
.h1_c00248{height:1089.333333pt;}
.h0_c00248{height:1122.666667pt;}
.w2_c00248{width:26.880000pt;}
.w1_c00248{width:760.000000pt;}
.w0_c00248{width:793.333333pt;}
.x0_c00248{left:0.000000pt;}
.x1_c00248{left:16.666667pt;}
.x4_c00248{left:97.279933pt;}
.x3_c00248{left:113.946667pt;}
.x2_c00248{left:121.280000pt;}
.x5_c00248{left:135.080133pt;}
.x7_c00248{left:204.103200pt;}
.x6_c00248{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c7031cba20336d7553eb5a7.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00249;src:url('chunks/assets/font_b1cf6d62bdf9f7582ff16fc9.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.113281;font-style: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;}
.ls8_c00249{letter-spacing:0.000000px;}
.ls0_c00249{letter-spacing:0.014400px;}
.lsa_c00249{letter-spacing:0.170496px;}
.ls1_c00249{letter-spacing:0.191160px;}
.lse_c00249{letter-spacing:0.224352px;}
.lsb_c00249{letter-spacing:0.239760px;}
.ls11_c00249{letter-spacing:0.253872px;}
.ls4_c00249{letter-spacing:0.256680px;}
.lsd_c00249{letter-spacing:0.318816px;}
.ls6_c00249{letter-spacing:0.320280px;}
.ls2_c00249{letter-spacing:0.410256px;}
.lsf_c00249{letter-spacing:0.478224px;}
.ls9_c00249{letter-spacing:0.479520px;}
.ls5_c00249{letter-spacing:0.519552px;}
.ls7_c00249{letter-spacing:0.543168px;}
.ls10_c00249{letter-spacing:0.578592px;}
.lsc_c00249{letter-spacing:0.637632px;}
.ls12_c00249{letter-spacing:0.826560px;}
.ls3_c00249{letter-spacing:16.959360px;}
.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:-20.030400px;}
.ws1_c00249{word-spacing:-15.222096px;}
.ws2_c00249{word-spacing:-15.051600px;}
.ws3_c00249{word-spacing:0.000000px;}
._b_c00249{margin-left:-1.100280px;}
._4_c00249{width:1.296000px;}
._6_c00249{width:3.348000px;}
._3_c00249{width:4.528800px;}
._c_c00249{width:5.862036px;}
._d_c00249{width:7.954380px;}
._7_c00249{width:9.792000px;}
._8_c00249{width:11.606400px;}
._9_c00249{width:26.121600px;}
._5_c00249{width:27.288000px;}
._a_c00249{width:31.896000px;}
._1_c00249{width:1061.484000px;}
._2_c00249{width:1146.684000px;}
._0_c00249{width:2079.683700px;}
.fc1_c00249{color:transparent;}
.fc0_c00249{color:rgb(0,0,0);}
.fs1_c00249{font-size:53.280000px;}
.fs2_c00249{font-size:59.040000px;}
.fs0_c00249{font-size:72.000000px;}
.y0_c00249{bottom:0.000000px;}
.y5_c00249{bottom:3.960000px;}
.y1_c00249{bottom:18.750000px;}
.y3_c00249{bottom:36.420030px;}
.y4_c00249{bottom:47.250030px;}
.y1a_c00249{bottom:98.700030px;}
.y19_c00249{bottom:115.980015px;}
.y18_c00249{bottom:133.260000px;}
.y17_c00249{bottom:150.540000px;}
.y16_c00249{bottom:167.820000px;}
.y15_c00249{bottom:184.740000px;}
.y14_c00249{bottom:202.020000px;}
.y13_c00249{bottom:218.940000px;}
.y12_c00249{bottom:271.860000px;}
.y11_c00249{bottom:284.460000px;}
.y10_c00249{bottom:684.060000px;}
.yf_c00249{bottom:725.460000px;}
.ye_c00249{bottom:766.860000px;}
.yd_c00249{bottom:808.260000px;}
.yc_c00249{bottom:849.660000px;}
.yb_c00249{bottom:911.220000px;}
.ya_c00249{bottom:952.980000px;}
.y9_c00249{bottom:994.380000px;}
.y8_c00249{bottom:1035.780000px;}
.y7_c00249{bottom:1077.180000px;}
.y6_c00249{bottom:1118.220000px;}
.y2_c00249{bottom:1174.020000px;}
.h3_c00249{height:20.520000px;}
.h5_c00249{height:47.764688px;}
.h6_c00249{height:52.928438px;}
.h2_c00249{height:64.546875px;}
.h4_c00249{height:65.003906px;}
.h1_c00249{height:1225.500000px;}
.h0_c00249{height:1263.000000px;}
.w2_c00249{width:30.240000px;}
.w1_c00249{width:855.000000px;}
.w0_c00249{width:892.500000px;}
.x0_c00249{left:0.000000px;}
.x1_c00249{left:18.750000px;}
.x2_c00249{left:109.439925px;}
.x8_c00249{left:141.390000px;}
.x5_c00249{left:151.965150px;}
.x3_c00249{left:157.739850px;}
.x7_c00249{left:246.118650px;}
.x4_c00249{left:735.510000px;}
.x6_c00249{left:754.440000px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls8_c00249{letter-spacing:0.000000pt;}
.ls0_c00249{letter-spacing:0.012800pt;}
.lsa_c00249{letter-spacing:0.151552pt;}
.ls1_c00249{letter-spacing:0.169920pt;}
.lse_c00249{letter-spacing:0.199424pt;}
.lsb_c00249{letter-spacing:0.213120pt;}
.ls11_c00249{letter-spacing:0.225664pt;}
.ls4_c00249{letter-spacing:0.228160pt;}
.lsd_c00249{letter-spacing:0.283392pt;}
.ls6_c00249{letter-spacing:0.284693pt;}
.ls2_c00249{letter-spacing:0.364672pt;}
.lsf_c00249{letter-spacing:0.425088pt;}
.ls9_c00249{letter-spacing:0.426240pt;}
.ls5_c00249{letter-spacing:0.461824pt;}
.ls7_c00249{letter-spacing:0.482816pt;}
.ls10_c00249{letter-spacing:0.514304pt;}
.lsc_c00249{letter-spacing:0.566784pt;}
.ls12_c00249{letter-spacing:0.734720pt;}
.ls3_c00249{letter-spacing:15.074987pt;}
.ws0_c00249{word-spacing:-17.804800pt;}
.ws1_c00249{word-spacing:-13.530752pt;}
.ws2_c00249{word-spacing:-13.379200pt;}
.ws3_c00249{word-spacing:0.000000pt;}
._b_c00249{margin-left:-0.978027pt;}
._4_c00249{width:1.152000pt;}
._6_c00249{width:2.976000pt;}
._3_c00249{width:4.025600pt;}
._c_c00249{width:5.210699pt;}
._d_c00249{width:7.070560pt;}
._7_c00249{width:8.704000pt;}
._8_c00249{width:10.316800pt;}
._9_c00249{width:23.219200pt;}
._5_c00249{width:24.256000pt;}
._a_c00249{width:28.352000pt;}
._1_c00249{width:943.541333pt;}
._2_c00249{width:1019.274667pt;}
._0_c00249{width:1848.607733pt;}
.fs1_c00249{font-size:47.360000pt;}
.fs2_c00249{font-size:52.480000pt;}
.fs0_c00249{font-size:64.000000pt;}
.y0_c00249{bottom:0.000000pt;}
.y5_c00249{bottom:3.520000pt;}
.y1_c00249{bottom:16.666667pt;}
.y3_c00249{bottom:32.373360pt;}
.y4_c00249{bottom:42.000027pt;}
.y1a_c00249{bottom:87.733360pt;}
.y19_c00249{bottom:103.093347pt;}
.y18_c00249{bottom:118.453333pt;}
.y17_c00249{bottom:133.813333pt;}
.y16_c00249{bottom:149.173333pt;}
.y15_c00249{bottom:164.213333pt;}
.y14_c00249{bottom:179.573333pt;}
.y13_c00249{bottom:194.613333pt;}
.y12_c00249{bottom:241.653333pt;}
.y11_c00249{bottom:252.853333pt;}
.y10_c00249{bottom:608.053333pt;}
.yf_c00249{bottom:644.853333pt;}
.ye_c00249{bottom:681.653333pt;}
.yd_c00249{bottom:718.453333pt;}
.yc_c00249{bottom:755.253333pt;}
.yb_c00249{bottom:809.973333pt;}
.ya_c00249{bottom:847.093333pt;}
.y9_c00249{bottom:883.893333pt;}
.y8_c00249{bottom:920.693333pt;}
.y7_c00249{bottom:957.493333pt;}
.y6_c00249{bottom:993.973333pt;}
.y2_c00249{bottom:1043.573333pt;}
.h3_c00249{height:18.240000pt;}
.h5_c00249{height:42.457500pt;}
.h6_c00249{height:47.047500pt;}
.h2_c00249{height:57.375000pt;}
.h4_c00249{height:57.781250pt;}
.h1_c00249{height:1089.333333pt;}
.h0_c00249{height:1122.666667pt;}
.w2_c00249{width:26.880000pt;}
.w1_c00249{width:760.000000pt;}
.w0_c00249{width:793.333333pt;}
.x0_c00249{left:0.000000pt;}
.x1_c00249{left:16.666667pt;}
.x2_c00249{left:97.279933pt;}
.x8_c00249{left:125.680000pt;}
.x5_c00249{left:135.080133pt;}
.x3_c00249{left:140.213200pt;}
.x7_c00249{left:218.772133pt;}
.x4_c00249{left:653.786667pt;}
.x6_c00249{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7cf16919fb262afbf79e77f1.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00250;src:url('chunks/assets/font_dab1157c4b2900cade2f3dfe.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.104492;font-style: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;}
.ls3_c00250{letter-spacing:-0.014400px;}
.ls2_c00250{letter-spacing:0.000000px;}
.ls0_c00250{letter-spacing:0.014400px;}
.ls5_c00250{letter-spacing:0.410256px;}
.ls4_c00250{letter-spacing:0.479520px;}
.ls1_c00250{letter-spacing:3.142200px;}
.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:-20.030400px;}
.ws1_c00250{word-spacing:0.000000px;}
._a_c00250{margin-left:-1.099680px;}
._4_c00250{width:1.310400px;}
._1_c00250{width:3.115800px;}
._2_c00250{width:7.639200px;}
._7_c00250{width:9.217500px;}
._3_c00250{width:11.044800px;}
._5_c00250{width:19.029600px;}
._8_c00250{width:24.148800px;}
._6_c00250{width:28.857600px;}
._9_c00250{width:35.949600px;}
._0_c00250{width:1146.683400px;}
.fc1_c00250{color:transparent;}
.fc0_c00250{color:rgb(0,0,0);}
.fs1_c00250{font-size:53.280000px;}
.fs0_c00250{font-size:72.000000px;}
.y0_c00250{bottom:0.000000px;}
.y4_c00250{bottom:3.960000px;}
.y1_c00250{bottom:18.750000px;}
.y2_c00250{bottom:37.860030px;}
.y3_c00250{bottom:52.290030px;}
.y13_c00250{bottom:148.380000px;}
.y12_c00250{bottom:161.340000px;}
.y11_c00250{bottom:623.940000px;}
.y10_c00250{bottom:665.340000px;}
.yf_c00250{bottom:706.740000px;}
.ye_c00250{bottom:748.140000px;}
.yd_c00250{bottom:789.540000px;}
.yc_c00250{bottom:830.940000px;}
.yb_c00250{bottom:872.340000px;}
.ya_c00250{bottom:913.740000px;}
.y9_c00250{bottom:955.140000px;}
.y8_c00250{bottom:996.540000px;}
.y7_c00250{bottom:1037.940000px;}
.y6_c00250{bottom:1079.340000px;}
.y5_c00250{bottom:1120.740000px;}
.h3_c00250{height:20.520000px;}
.h4_c00250{height:47.764688px;}
.h2_c00250{height:64.546875px;}
.h1_c00250{height:1225.500000px;}
.h0_c00250{height:1263.000000px;}
.w2_c00250{width:30.240000px;}
.w1_c00250{width:855.000000px;}
.w0_c00250{width:892.500000px;}
.x0_c00250{left:0.000000px;}
.x1_c00250{left:18.750000px;}
.x5_c00250{left:109.439925px;}
.x3_c00250{left:128.190000px;}
.x2_c00250{left:136.440000px;}
.x4_c00250{left:151.965150px;}
.x7_c00250{left:247.631400px;}
.x6_c00250{left:754.440000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls3_c00250{letter-spacing:-0.012800pt;}
.ls2_c00250{letter-spacing:0.000000pt;}
.ls0_c00250{letter-spacing:0.012800pt;}
.ls5_c00250{letter-spacing:0.364672pt;}
.ls4_c00250{letter-spacing:0.426240pt;}
.ls1_c00250{letter-spacing:2.793067pt;}
.ws0_c00250{word-spacing:-17.804800pt;}
.ws1_c00250{word-spacing:0.000000pt;}
._a_c00250{margin-left:-0.977493pt;}
._4_c00250{width:1.164800pt;}
._1_c00250{width:2.769600pt;}
._2_c00250{width:6.790400pt;}
._7_c00250{width:8.193333pt;}
._3_c00250{width:9.817600pt;}
._5_c00250{width:16.915200pt;}
._8_c00250{width:21.465600pt;}
._6_c00250{width:25.651200pt;}
._9_c00250{width:31.955200pt;}
._0_c00250{width:1019.274133pt;}
.fs1_c00250{font-size:47.360000pt;}
.fs0_c00250{font-size:64.000000pt;}
.y0_c00250{bottom:0.000000pt;}
.y4_c00250{bottom:3.520000pt;}
.y1_c00250{bottom:16.666667pt;}
.y2_c00250{bottom:33.653360pt;}
.y3_c00250{bottom:46.480027pt;}
.y13_c00250{bottom:131.893333pt;}
.y12_c00250{bottom:143.413333pt;}
.y11_c00250{bottom:554.613333pt;}
.y10_c00250{bottom:591.413333pt;}
.yf_c00250{bottom:628.213333pt;}
.ye_c00250{bottom:665.013333pt;}
.yd_c00250{bottom:701.813333pt;}
.yc_c00250{bottom:738.613333pt;}
.yb_c00250{bottom:775.413333pt;}
.ya_c00250{bottom:812.213333pt;}
.y9_c00250{bottom:849.013333pt;}
.y8_c00250{bottom:885.813333pt;}
.y7_c00250{bottom:922.613333pt;}
.y6_c00250{bottom:959.413333pt;}
.y5_c00250{bottom:996.213333pt;}
.h3_c00250{height:18.240000pt;}
.h4_c00250{height:42.457500pt;}
.h2_c00250{height:57.375000pt;}
.h1_c00250{height:1089.333333pt;}
.h0_c00250{height:1122.666667pt;}
.w2_c00250{width:26.880000pt;}
.w1_c00250{width:760.000000pt;}
.w0_c00250{width:793.333333pt;}
.x0_c00250{left:0.000000pt;}
.x1_c00250{left:16.666667pt;}
.x5_c00250{left:97.279933pt;}
.x3_c00250{left:113.946667pt;}
.x2_c00250{left:121.280000pt;}
.x4_c00250{left:135.080133pt;}
.x7_c00250{left:220.116800pt;}
.x6_c00250{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_622f8b77ea0a098395d9e18e.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00251;src:url('chunks/assets/font_208f26431c7cd6399773f8a9.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00251{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00251{vertical-align:0.000000px;}
.ls1_c00251{letter-spacing:0.000000px;}
.ls0_c00251{letter-spacing:0.014400px;}
.ls2_c00251{letter-spacing:0.479520px;}
.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:-20.030400px;}
.ws1_c00251{word-spacing:0.000000px;}
._e_c00251{margin-left:-1.225440px;}
._d_c00251{width:1.227900px;}
._8_c00251{width:2.361600px;}
._4_c00251{width:4.017600px;}
._9_c00251{width:5.860800px;}
._3_c00251{width:8.618400px;}
._7_c00251{width:11.923200px;}
._a_c00251{width:15.952800px;}
._6_c00251{width:17.369100px;}
._c_c00251{width:18.547200px;}
._5_c00251{width:28.828800px;}
._b_c00251{width:51.912000px;}
._1_c00251{width:1061.484000px;}
._2_c00251{width:1146.684000px;}
._0_c00251{width:2079.683700px;}
.fc1_c00251{color:transparent;}
.fc0_c00251{color:rgb(0,0,0);}
.fs1_c00251{font-size:53.280000px;}
.fs0_c00251{font-size:72.000000px;}
.y0_c00251{bottom:0.000000px;}
.y5_c00251{bottom:3.960000px;}
.y1_c00251{bottom:18.750000px;}
.y3_c00251{bottom:36.420030px;}
.y4_c00251{bottom:47.250030px;}
.y14_c00251{bottom:190.500000px;}
.y13_c00251{bottom:203.100000px;}
.y12_c00251{bottom:623.940000px;}
.y11_c00251{bottom:665.340000px;}
.y10_c00251{bottom:706.740000px;}
.yf_c00251{bottom:748.140000px;}
.ye_c00251{bottom:789.540000px;}
.yd_c00251{bottom:830.940000px;}
.yc_c00251{bottom:872.340000px;}
.yb_c00251{bottom:913.740000px;}
.ya_c00251{bottom:955.140000px;}
.y9_c00251{bottom:996.540000px;}
.y8_c00251{bottom:1037.940000px;}
.y7_c00251{bottom:1079.340000px;}
.y6_c00251{bottom:1120.740000px;}
.y2_c00251{bottom:1174.020000px;}
.h3_c00251{height:20.520000px;}
.h4_c00251{height:47.764688px;}
.h2_c00251{height:64.546875px;}
.h1_c00251{height:1225.500000px;}
.h0_c00251{height:1263.000000px;}
.w2_c00251{width:30.240000px;}
.w1_c00251{width:855.000000px;}
.w0_c00251{width:892.500000px;}
.x0_c00251{left:0.000000px;}
.x1_c00251{left:18.750000px;}
.x2_c00251{left:109.439925px;}
.x5_c00251{left:151.965150px;}
.x3_c00251{left:157.739850px;}
.x7_c00251{left:234.866400px;}
.x4_c00251{left:735.510000px;}
.x6_c00251{left:754.440000px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls1_c00251{letter-spacing:0.000000pt;}
.ls0_c00251{letter-spacing:0.012800pt;}
.ls2_c00251{letter-spacing:0.426240pt;}
.ws0_c00251{word-spacing:-17.804800pt;}
.ws1_c00251{word-spacing:0.000000pt;}
._e_c00251{margin-left:-1.089280pt;}
._d_c00251{width:1.091467pt;}
._8_c00251{width:2.099200pt;}
._4_c00251{width:3.571200pt;}
._9_c00251{width:5.209600pt;}
._3_c00251{width:7.660800pt;}
._7_c00251{width:10.598400pt;}
._a_c00251{width:14.180267pt;}
._6_c00251{width:15.439200pt;}
._c_c00251{width:16.486400pt;}
._5_c00251{width:25.625600pt;}
._b_c00251{width:46.144000pt;}
._1_c00251{width:943.541333pt;}
._2_c00251{width:1019.274667pt;}
._0_c00251{width:1848.607733pt;}
.fs1_c00251{font-size:47.360000pt;}
.fs0_c00251{font-size:64.000000pt;}
.y0_c00251{bottom:0.000000pt;}
.y5_c00251{bottom:3.520000pt;}
.y1_c00251{bottom:16.666667pt;}
.y3_c00251{bottom:32.373360pt;}
.y4_c00251{bottom:42.000027pt;}
.y14_c00251{bottom:169.333333pt;}
.y13_c00251{bottom:180.533333pt;}
.y12_c00251{bottom:554.613333pt;}
.y11_c00251{bottom:591.413333pt;}
.y10_c00251{bottom:628.213333pt;}
.yf_c00251{bottom:665.013333pt;}
.ye_c00251{bottom:701.813333pt;}
.yd_c00251{bottom:738.613333pt;}
.yc_c00251{bottom:775.413333pt;}
.yb_c00251{bottom:812.213333pt;}
.ya_c00251{bottom:849.013333pt;}
.y9_c00251{bottom:885.813333pt;}
.y8_c00251{bottom:922.613333pt;}
.y7_c00251{bottom:959.413333pt;}
.y6_c00251{bottom:996.213333pt;}
.y2_c00251{bottom:1043.573333pt;}
.h3_c00251{height:18.240000pt;}
.h4_c00251{height:42.457500pt;}
.h2_c00251{height:57.375000pt;}
.h1_c00251{height:1089.333333pt;}
.h0_c00251{height:1122.666667pt;}
.w2_c00251{width:26.880000pt;}
.w1_c00251{width:760.000000pt;}
.w0_c00251{width:793.333333pt;}
.x0_c00251{left:0.000000pt;}
.x1_c00251{left:16.666667pt;}
.x2_c00251{left:97.279933pt;}
.x5_c00251{left:135.080133pt;}
.x3_c00251{left:140.213200pt;}
.x7_c00251{left:208.770133pt;}
.x4_c00251{left:653.786667pt;}
.x6_c00251{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d8d20080a8b1d0c93c9acff5.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00252;src:url('chunks/assets/font_177c67d1c5a7f30cf12b0a11.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00252;src:url('chunks/assets/font_65f59025fad36383884b04d9.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.ls3_c00252{letter-spacing:0.000000px;}
.ls0_c00252{letter-spacing:0.014400px;}
.ls4_c00252{letter-spacing:0.410256px;}
.ls1_c00252{letter-spacing:0.426240px;}
.ls2_c00252{letter-spacing:60.493200px;}
.sc__c00252{text-shadow:none;}
.sc0_c00252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00252{-webkit-text-stroke:0px transparent;}
.sc0_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00252{word-spacing:-20.030400px;}
.ws1_c00252{word-spacing:0.000000px;}
._1_c00252{margin-left:-1.172160px;}
._9_c00252{width:1.494300px;}
._2_c00252{width:2.570400px;}
._a_c00252{width:3.614400px;}
._7_c00252{width:5.889600px;}
._3_c00252{width:7.142400px;}
._6_c00252{width:10.829400px;}
._4_c00252{width:12.181800px;}
._b_c00252{width:22.413600px;}
._8_c00252{width:41.695200px;}
._5_c00252{width:60.426300px;}
._0_c00252{width:1146.683400px;}
.fc1_c00252{color:transparent;}
.fc0_c00252{color:rgb(0,0,0);}
.fs1_c00252{font-size:53.280000px;}
.fs0_c00252{font-size:72.000000px;}
.y0_c00252{bottom:0.000000px;}
.y4_c00252{bottom:3.960000px;}
.y1_c00252{bottom:18.750000px;}
.y2_c00252{bottom:37.860030px;}
.y3_c00252{bottom:52.290030px;}
.y15_c00252{bottom:112.740030px;}
.y14_c00252{bottom:154.140000px;}
.y13_c00252{bottom:195.180000px;}
.y12_c00252{bottom:236.580000px;}
.y11_c00252{bottom:277.980000px;}
.y10_c00252{bottom:319.380000px;}
.yf_c00252{bottom:360.780000px;}
.ye_c00252{bottom:402.180000px;}
.yd_c00252{bottom:443.580000px;}
.yc_c00252{bottom:484.980000px;}
.yb_c00252{bottom:526.380000px;}
.ya_c00252{bottom:587.940000px;}
.y9_c00252{bottom:629.700000px;}
.y8_c00252{bottom:671.100000px;}
.y7_c00252{bottom:712.140000px;}
.y6_c00252{bottom:767.580000px;}
.y5_c00252{bottom:780.540000px;}
.h3_c00252{height:20.520000px;}
.h4_c00252{height:47.764688px;}
.h2_c00252{height:64.546875px;}
.h5_c00252{height:65.003906px;}
.h1_c00252{height:1225.500000px;}
.h0_c00252{height:1263.000000px;}
.w2_c00252{width:30.240000px;}
.w1_c00252{width:855.000000px;}
.w0_c00252{width:892.500000px;}
.x0_c00252{left:0.000000px;}
.x1_c00252{left:18.750000px;}
.x6_c00252{left:109.439925px;}
.x3_c00252{left:128.190000px;}
.x2_c00252{left:136.440000px;}
.x7_c00252{left:151.965150px;}
.x5_c00252{left:270.139200px;}
.x4_c00252{left:754.440000px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls3_c00252{letter-spacing:0.000000pt;}
.ls0_c00252{letter-spacing:0.012800pt;}
.ls4_c00252{letter-spacing:0.364672pt;}
.ls1_c00252{letter-spacing:0.378880pt;}
.ls2_c00252{letter-spacing:53.771733pt;}
.ws0_c00252{word-spacing:-17.804800pt;}
.ws1_c00252{word-spacing:0.000000pt;}
._1_c00252{margin-left:-1.041920pt;}
._9_c00252{width:1.328267pt;}
._2_c00252{width:2.284800pt;}
._a_c00252{width:3.212800pt;}
._7_c00252{width:5.235200pt;}
._3_c00252{width:6.348800pt;}
._6_c00252{width:9.626133pt;}
._4_c00252{width:10.828267pt;}
._b_c00252{width:19.923200pt;}
._8_c00252{width:37.062400pt;}
._5_c00252{width:53.712267pt;}
._0_c00252{width:1019.274133pt;}
.fs1_c00252{font-size:47.360000pt;}
.fs0_c00252{font-size:64.000000pt;}
.y0_c00252{bottom:0.000000pt;}
.y4_c00252{bottom:3.520000pt;}
.y1_c00252{bottom:16.666667pt;}
.y2_c00252{bottom:33.653360pt;}
.y3_c00252{bottom:46.480027pt;}
.y15_c00252{bottom:100.213360pt;}
.y14_c00252{bottom:137.013333pt;}
.y13_c00252{bottom:173.493333pt;}
.y12_c00252{bottom:210.293333pt;}
.y11_c00252{bottom:247.093333pt;}
.y10_c00252{bottom:283.893333pt;}
.yf_c00252{bottom:320.693333pt;}
.ye_c00252{bottom:357.493333pt;}
.yd_c00252{bottom:394.293333pt;}
.yc_c00252{bottom:431.093333pt;}
.yb_c00252{bottom:467.893333pt;}
.ya_c00252{bottom:522.613333pt;}
.y9_c00252{bottom:559.733333pt;}
.y8_c00252{bottom:596.533333pt;}
.y7_c00252{bottom:633.013333pt;}
.y6_c00252{bottom:682.293333pt;}
.y5_c00252{bottom:693.813333pt;}
.h3_c00252{height:18.240000pt;}
.h4_c00252{height:42.457500pt;}
.h2_c00252{height:57.375000pt;}
.h5_c00252{height:57.781250pt;}
.h1_c00252{height:1089.333333pt;}
.h0_c00252{height:1122.666667pt;}
.w2_c00252{width:26.880000pt;}
.w1_c00252{width:760.000000pt;}
.w0_c00252{width:793.333333pt;}
.x0_c00252{left:0.000000pt;}
.x1_c00252{left:16.666667pt;}
.x6_c00252{left:97.279933pt;}
.x3_c00252{left:113.946667pt;}
.x2_c00252{left:121.280000pt;}
.x7_c00252{left:135.080133pt;}
.x5_c00252{left:240.123733pt;}
.x4_c00252{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_95bd93271c7d79dd1969d9fd.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.ls3_c00253{letter-spacing:0.000000px;}
.ls0_c00253{letter-spacing:0.014400px;}
.ls1_c00253{letter-spacing:0.190560px;}
.ls2_c00253{letter-spacing:0.191160px;}
.ls5_c00253{letter-spacing:0.239760px;}
.ls6_c00253{letter-spacing:0.410256px;}
.ls4_c00253{letter-spacing:0.548784px;}
.ls7_c00253{letter-spacing:0.628704px;}
.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;}
}
.ws0_c00253{word-spacing:-20.030400px;}
.ws1_c00253{word-spacing:0.000000px;}
._5_c00253{margin-left:-1.225440px;}
._6_c00253{width:1.123200px;}
._7_c00253{width:14.047200px;}
._4_c00253{width:16.956000px;}
._3_c00253{width:21.312000px;}
._8_c00253{width:53.107200px;}
._1_c00253{width:1061.484000px;}
._2_c00253{width:1146.684000px;}
._0_c00253{width:2079.683700px;}
.fc1_c00253{color:transparent;}
.fc0_c00253{color:rgb(0,0,0);}
.fs1_c00253{font-size:53.280000px;}
.fs0_c00253{font-size:72.000000px;}
.y0_c00253{bottom:0.000000px;}
.y5_c00253{bottom:3.960000px;}
.y1_c00253{bottom:18.750000px;}
.y3_c00253{bottom:36.420030px;}
.y4_c00253{bottom:47.250030px;}
.y10_c00253{bottom:95.820030px;}
.yf_c00253{bottom:108.780030px;}
.ye_c00253{bottom:499.380000px;}
.yd_c00253{bottom:540.780000px;}
.yc_c00253{bottom:582.180000px;}
.yb_c00253{bottom:623.580000px;}
.ya_c00253{bottom:676.500000px;}
.y9_c00253{bottom:689.100000px;}
.y8_c00253{bottom:1037.940000px;}
.y7_c00253{bottom:1079.340000px;}
.y6_c00253{bottom:1120.740000px;}
.y2_c00253{bottom:1174.020000px;}
.h3_c00253{height:20.520000px;}
.h4_c00253{height:47.764688px;}
.h2_c00253{height:64.546875px;}
.h1_c00253{height:1225.500000px;}
.h0_c00253{height:1263.000000px;}
.w2_c00253{width:30.240000px;}
.w1_c00253{width:855.000000px;}
.w0_c00253{width:892.500000px;}
.x0_c00253{left:0.000000px;}
.x1_c00253{left:18.750000px;}
.x2_c00253{left:109.439925px;}
.x7_c00253{left:151.965150px;}
.x3_c00253{left:157.739850px;}
.x9_c00253{left:286.664700px;}
.x6_c00253{left:301.674300px;}
.x4_c00253{left:735.510000px;}
.x8_c00253{left:751.440000px;}
.x5_c00253{left:754.440000px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls3_c00253{letter-spacing:0.000000pt;}
.ls0_c00253{letter-spacing:0.012800pt;}
.ls1_c00253{letter-spacing:0.169387pt;}
.ls2_c00253{letter-spacing:0.169920pt;}
.ls5_c00253{letter-spacing:0.213120pt;}
.ls6_c00253{letter-spacing:0.364672pt;}
.ls4_c00253{letter-spacing:0.487808pt;}
.ls7_c00253{letter-spacing:0.558848pt;}
.ws0_c00253{word-spacing:-17.804800pt;}
.ws1_c00253{word-spacing:0.000000pt;}
._5_c00253{margin-left:-1.089280pt;}
._6_c00253{width:0.998400pt;}
._7_c00253{width:12.486400pt;}
._4_c00253{width:15.072000pt;}
._3_c00253{width:18.944000pt;}
._8_c00253{width:47.206400pt;}
._1_c00253{width:943.541333pt;}
._2_c00253{width:1019.274667pt;}
._0_c00253{width:1848.607733pt;}
.fs1_c00253{font-size:47.360000pt;}
.fs0_c00253{font-size:64.000000pt;}
.y0_c00253{bottom:0.000000pt;}
.y5_c00253{bottom:3.520000pt;}
.y1_c00253{bottom:16.666667pt;}
.y3_c00253{bottom:32.373360pt;}
.y4_c00253{bottom:42.000027pt;}
.y10_c00253{bottom:85.173360pt;}
.yf_c00253{bottom:96.693360pt;}
.ye_c00253{bottom:443.893333pt;}
.yd_c00253{bottom:480.693333pt;}
.yc_c00253{bottom:517.493333pt;}
.yb_c00253{bottom:554.293333pt;}
.ya_c00253{bottom:601.333333pt;}
.y9_c00253{bottom:612.533333pt;}
.y8_c00253{bottom:922.613333pt;}
.y7_c00253{bottom:959.413333pt;}
.y6_c00253{bottom:996.213333pt;}
.y2_c00253{bottom:1043.573333pt;}
.h3_c00253{height:18.240000pt;}
.h4_c00253{height:42.457500pt;}
.h2_c00253{height:57.375000pt;}
.h1_c00253{height:1089.333333pt;}
.h0_c00253{height:1122.666667pt;}
.w2_c00253{width:26.880000pt;}
.w1_c00253{width:760.000000pt;}
.w0_c00253{width:793.333333pt;}
.x0_c00253{left:0.000000pt;}
.x1_c00253{left:16.666667pt;}
.x2_c00253{left:97.279933pt;}
.x7_c00253{left:135.080133pt;}
.x3_c00253{left:140.213200pt;}
.x9_c00253{left:254.813067pt;}
.x6_c00253{left:268.154933pt;}
.x4_c00253{left:653.786667pt;}
.x8_c00253{left:667.946667pt;}
.x5_c00253{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_93ae21be7ba89b31fd94062f.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00254;src:url('chunks/assets/font_b9af421dd857747b909dbe13.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00254;src:url('chunks/assets/font_5b6f86bf05181644a2f790a8.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.ls7_c00254{letter-spacing:-0.014400px;}
.ls3_c00254{letter-spacing:0.000000px;}
.ls0_c00254{letter-spacing:0.014400px;}
.ls2_c00254{letter-spacing:0.191160px;}
.ls5_c00254{letter-spacing:0.362304px;}
.ls1_c00254{letter-spacing:0.408720px;}
.ls6_c00254{letter-spacing:0.410256px;}
.ls4_c00254{letter-spacing:0.628704px;}
.sc__c00254{text-shadow:none;}
.sc0_c00254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00254{-webkit-text-stroke:0px transparent;}
.sc0_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00254{word-spacing:-20.030400px;}
.ws1_c00254{word-spacing:-15.440544px;}
.ws2_c00254{word-spacing:0.000000px;}
._1_c00254{margin-left:-1.065600px;}
._5_c00254{width:1.713600px;}
._4_c00254{width:3.463200px;}
._8_c00254{width:4.968000px;}
._7_c00254{width:7.381500px;}
._9_c00254{width:12.614400px;}
._a_c00254{width:14.918400px;}
._b_c00254{width:16.757100px;}
._2_c00254{width:17.789400px;}
._3_c00254{width:32.356800px;}
._6_c00254{width:53.928000px;}
._0_c00254{width:1146.683400px;}
.fc1_c00254{color:transparent;}
.fc0_c00254{color:rgb(0,0,0);}
.fs1_c00254{font-size:53.280000px;}
.fs0_c00254{font-size:72.000000px;}
.y0_c00254{bottom:0.000000px;}
.y4_c00254{bottom:3.960000px;}
.y1_c00254{bottom:18.750000px;}
.y2_c00254{bottom:37.860030px;}
.y3_c00254{bottom:52.290030px;}
.y15_c00254{bottom:130.740030px;}
.y14_c00254{bottom:172.140000px;}
.y13_c00254{bottom:213.180000px;}
.y12_c00254{bottom:254.580000px;}
.y11_c00254{bottom:295.980000px;}
.y10_c00254{bottom:337.380000px;}
.yf_c00254{bottom:378.780000px;}
.ye_c00254{bottom:420.180000px;}
.yd_c00254{bottom:461.580000px;}
.yc_c00254{bottom:502.980000px;}
.yb_c00254{bottom:564.540000px;}
.ya_c00254{bottom:606.300000px;}
.y9_c00254{bottom:647.700000px;}
.y8_c00254{bottom:689.100000px;}
.y7_c00254{bottom:730.140000px;}
.y6_c00254{bottom:785.580000px;}
.y5_c00254{bottom:798.540000px;}
.h3_c00254{height:20.520000px;}
.h4_c00254{height:47.764688px;}
.h2_c00254{height:64.546875px;}
.h5_c00254{height:65.003906px;}
.h1_c00254{height:1225.500000px;}
.h0_c00254{height:1263.000000px;}
.w2_c00254{width:30.240000px;}
.w1_c00254{width:855.000000px;}
.w0_c00254{width:892.500000px;}
.x0_c00254{left:0.000000px;}
.x1_c00254{left:18.750000px;}
.x6_c00254{left:109.439925px;}
.x3_c00254{left:128.190000px;}
.x2_c00254{left:136.440000px;}
.x7_c00254{left:151.965150px;}
.x5_c00254{left:284.789400px;}
.x4_c00254{left:754.440000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls7_c00254{letter-spacing:-0.012800pt;}
.ls3_c00254{letter-spacing:0.000000pt;}
.ls0_c00254{letter-spacing:0.012800pt;}
.ls2_c00254{letter-spacing:0.169920pt;}
.ls5_c00254{letter-spacing:0.322048pt;}
.ls1_c00254{letter-spacing:0.363307pt;}
.ls6_c00254{letter-spacing:0.364672pt;}
.ls4_c00254{letter-spacing:0.558848pt;}
.ws0_c00254{word-spacing:-17.804800pt;}
.ws1_c00254{word-spacing:-13.724928pt;}
.ws2_c00254{word-spacing:0.000000pt;}
._1_c00254{margin-left:-0.947200pt;}
._5_c00254{width:1.523200pt;}
._4_c00254{width:3.078400pt;}
._8_c00254{width:4.416000pt;}
._7_c00254{width:6.561333pt;}
._9_c00254{width:11.212800pt;}
._a_c00254{width:13.260800pt;}
._b_c00254{width:14.895200pt;}
._2_c00254{width:15.812800pt;}
._3_c00254{width:28.761600pt;}
._6_c00254{width:47.936000pt;}
._0_c00254{width:1019.274133pt;}
.fs1_c00254{font-size:47.360000pt;}
.fs0_c00254{font-size:64.000000pt;}
.y0_c00254{bottom:0.000000pt;}
.y4_c00254{bottom:3.520000pt;}
.y1_c00254{bottom:16.666667pt;}
.y2_c00254{bottom:33.653360pt;}
.y3_c00254{bottom:46.480027pt;}
.y15_c00254{bottom:116.213360pt;}
.y14_c00254{bottom:153.013333pt;}
.y13_c00254{bottom:189.493333pt;}
.y12_c00254{bottom:226.293333pt;}
.y11_c00254{bottom:263.093333pt;}
.y10_c00254{bottom:299.893333pt;}
.yf_c00254{bottom:336.693333pt;}
.ye_c00254{bottom:373.493333pt;}
.yd_c00254{bottom:410.293333pt;}
.yc_c00254{bottom:447.093333pt;}
.yb_c00254{bottom:501.813333pt;}
.ya_c00254{bottom:538.933333pt;}
.y9_c00254{bottom:575.733333pt;}
.y8_c00254{bottom:612.533333pt;}
.y7_c00254{bottom:649.013333pt;}
.y6_c00254{bottom:698.293333pt;}
.y5_c00254{bottom:709.813333pt;}
.h3_c00254{height:18.240000pt;}
.h4_c00254{height:42.457500pt;}
.h2_c00254{height:57.375000pt;}
.h5_c00254{height:57.781250pt;}
.h1_c00254{height:1089.333333pt;}
.h0_c00254{height:1122.666667pt;}
.w2_c00254{width:26.880000pt;}
.w1_c00254{width:760.000000pt;}
.w0_c00254{width:793.333333pt;}
.x0_c00254{left:0.000000pt;}
.x1_c00254{left:16.666667pt;}
.x6_c00254{left:97.279933pt;}
.x3_c00254{left:113.946667pt;}
.x2_c00254{left:121.280000pt;}
.x7_c00254{left:135.080133pt;}
.x5_c00254{left:253.146133pt;}
.x4_c00254{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_faa8653b9671fd8bd56585fa.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00255;src:url('chunks/assets/font_1bc2038277c85e417f830ce1.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.104492;font-style: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;}
.v1_c00255{vertical-align:33.120000px;}
.ls3_c00255{letter-spacing:0.000000px;}
.ls0_c00255{letter-spacing:0.014400px;}
.ls6_c00255{letter-spacing:0.191808px;}
.ls2_c00255{letter-spacing:0.274080px;}
.ls1_c00255{letter-spacing:0.274260px;}
.ls4_c00255{letter-spacing:0.479520px;}
.ls5_c00255{letter-spacing:0.548784px;}
.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:-20.030400px;}
.ws1_c00255{word-spacing:-20.016000px;}
.ws2_c00255{word-spacing:0.000000px;}
._3_c00255{margin-left:-1.012320px;}
._4_c00255{width:1.036800px;}
._7_c00255{width:2.556000px;}
._9_c00255{width:8.931900px;}
._6_c00255{width:10.080000px;}
._5_c00255{width:16.257600px;}
._8_c00255{width:29.649600px;}
._1_c00255{width:1061.484000px;}
._2_c00255{width:1146.684000px;}
._0_c00255{width:2079.683700px;}
.fc1_c00255{color:transparent;}
.fc0_c00255{color:rgb(0,0,0);}
.fs2_c00255{font-size:47.520000px;}
.fs1_c00255{font-size:53.280000px;}
.fs0_c00255{font-size:72.000000px;}
.y0_c00255{bottom:0.000000px;}
.y5_c00255{bottom:3.960000px;}
.y1_c00255{bottom:18.750000px;}
.y3_c00255{bottom:36.420030px;}
.y4_c00255{bottom:47.250030px;}
.y12_c00255{bottom:103.020030px;}
.y11_c00255{bottom:115.620030px;}
.y10_c00255{bottom:422.340000px;}
.yf_c00255{bottom:463.740000px;}
.ye_c00255{bottom:505.140000px;}
.yd_c00255{bottom:546.540000px;}
.yc_c00255{bottom:587.940000px;}
.yb_c00255{bottom:629.340000px;}
.ya_c00255{bottom:670.740000px;}
.y9_c00255{bottom:712.140000px;}
.y8_c00255{bottom:753.540000px;}
.y7_c00255{bottom:806.460000px;}
.y6_c00255{bottom:819.420000px;}
.y2_c00255{bottom:1174.020000px;}
.h3_c00255{height:20.520000px;}
.h4_c00255{height:47.764688px;}
.h2_c00255{height:64.546875px;}
.h5_c00255{height:75.604922px;}
.h1_c00255{height:1225.500000px;}
.h0_c00255{height:1263.000000px;}
.w2_c00255{width:30.240000px;}
.w1_c00255{width:855.000000px;}
.w0_c00255{width:892.500000px;}
.x0_c00255{left:0.000000px;}
.x1_c00255{left:18.750000px;}
.x2_c00255{left:109.439925px;}
.x7_c00255{left:151.965150px;}
.x3_c00255{left:157.739850px;}
.x6_c00255{left:298.658550px;}
.x8_c00255{left:328.697400px;}
.x4_c00255{left:735.510000px;}
.x5_c00255{left:754.440000px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.v1_c00255{vertical-align:29.440000pt;}
.ls3_c00255{letter-spacing:0.000000pt;}
.ls0_c00255{letter-spacing:0.012800pt;}
.ls6_c00255{letter-spacing:0.170496pt;}
.ls2_c00255{letter-spacing:0.243627pt;}
.ls1_c00255{letter-spacing:0.243787pt;}
.ls4_c00255{letter-spacing:0.426240pt;}
.ls5_c00255{letter-spacing:0.487808pt;}
.ws0_c00255{word-spacing:-17.804800pt;}
.ws1_c00255{word-spacing:-17.792000pt;}
.ws2_c00255{word-spacing:0.000000pt;}
._3_c00255{margin-left:-0.899840pt;}
._4_c00255{width:0.921600pt;}
._7_c00255{width:2.272000pt;}
._9_c00255{width:7.939467pt;}
._6_c00255{width:8.960000pt;}
._5_c00255{width:14.451200pt;}
._8_c00255{width:26.355200pt;}
._1_c00255{width:943.541333pt;}
._2_c00255{width:1019.274667pt;}
._0_c00255{width:1848.607733pt;}
.fs2_c00255{font-size:42.240000pt;}
.fs1_c00255{font-size:47.360000pt;}
.fs0_c00255{font-size:64.000000pt;}
.y0_c00255{bottom:0.000000pt;}
.y5_c00255{bottom:3.520000pt;}
.y1_c00255{bottom:16.666667pt;}
.y3_c00255{bottom:32.373360pt;}
.y4_c00255{bottom:42.000027pt;}
.y12_c00255{bottom:91.573360pt;}
.y11_c00255{bottom:102.773360pt;}
.y10_c00255{bottom:375.413333pt;}
.yf_c00255{bottom:412.213333pt;}
.ye_c00255{bottom:449.013333pt;}
.yd_c00255{bottom:485.813333pt;}
.yc_c00255{bottom:522.613333pt;}
.yb_c00255{bottom:559.413333pt;}
.ya_c00255{bottom:596.213333pt;}
.y9_c00255{bottom:633.013333pt;}
.y8_c00255{bottom:669.813333pt;}
.y7_c00255{bottom:716.853333pt;}
.y6_c00255{bottom:728.373333pt;}
.y2_c00255{bottom:1043.573333pt;}
.h3_c00255{height:18.240000pt;}
.h4_c00255{height:42.457500pt;}
.h2_c00255{height:57.375000pt;}
.h5_c00255{height:67.204375pt;}
.h1_c00255{height:1089.333333pt;}
.h0_c00255{height:1122.666667pt;}
.w2_c00255{width:26.880000pt;}
.w1_c00255{width:760.000000pt;}
.w0_c00255{width:793.333333pt;}
.x0_c00255{left:0.000000pt;}
.x1_c00255{left:16.666667pt;}
.x2_c00255{left:97.279933pt;}
.x7_c00255{left:135.080133pt;}
.x3_c00255{left:140.213200pt;}
.x6_c00255{left:265.474267pt;}
.x8_c00255{left:292.175467pt;}
.x4_c00255{left:653.786667pt;}
.x5_c00255{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_108764d4a744a74785c8d34d.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00256{letter-spacing:0.000000px;}
.ls0_c00256{letter-spacing:0.014400px;}
.ls3_c00256{letter-spacing:0.479520px;}
.ls2_c00256{letter-spacing:0.527472px;}
.sc__c00256{text-shadow:none;}
.sc0_c00256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00256{-webkit-text-stroke:0px transparent;}
.sc0_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00256{word-spacing:-20.030400px;}
.ws1_c00256{word-spacing:0.000000px;}
._3_c00256{margin-left:-1.065600px;}
._4_c00256{width:2.188800px;}
._6_c00256{width:5.882400px;}
._1_c00256{width:12.564000px;}
._2_c00256{width:14.407200px;}
._5_c00256{width:17.186400px;}
._7_c00256{width:39.103200px;}
._0_c00256{width:1146.683400px;}
.fc1_c00256{color:transparent;}
.fc0_c00256{color:rgb(0,0,0);}
.fs1_c00256{font-size:53.280000px;}
.fs0_c00256{font-size:72.000000px;}
.y0_c00256{bottom:0.000000px;}
.y4_c00256{bottom:3.960000px;}
.y1_c00256{bottom:18.750000px;}
.y2_c00256{bottom:37.860030px;}
.y3_c00256{bottom:52.290030px;}
.y10_c00256{bottom:105.540030px;}
.yf_c00256{bottom:118.140030px;}
.ye_c00256{bottom:466.980000px;}
.yd_c00256{bottom:508.380000px;}
.yc_c00256{bottom:549.780000px;}
.yb_c00256{bottom:591.180000px;}
.ya_c00256{bottom:632.580000px;}
.y9_c00256{bottom:685.500000px;}
.y8_c00256{bottom:698.100000px;}
.y7_c00256{bottom:1037.940000px;}
.y6_c00256{bottom:1079.340000px;}
.y5_c00256{bottom:1120.740000px;}
.h3_c00256{height:20.520000px;}
.h4_c00256{height:47.764688px;}
.h2_c00256{height:64.546875px;}
.h1_c00256{height:1225.500000px;}
.h0_c00256{height:1263.000000px;}
.w2_c00256{width:30.240000px;}
.w1_c00256{width:855.000000px;}
.w0_c00256{width:892.500000px;}
.x0_c00256{left:0.000000px;}
.x1_c00256{left:18.750000px;}
.x5_c00256{left:109.439925px;}
.x3_c00256{left:128.190000px;}
.x2_c00256{left:136.440000px;}
.x4_c00256{left:151.965150px;}
.x7_c00256{left:329.814600px;}
.x8_c00256{left:334.699200px;}
.x6_c00256{left:754.440000px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls1_c00256{letter-spacing:0.000000pt;}
.ls0_c00256{letter-spacing:0.012800pt;}
.ls3_c00256{letter-spacing:0.426240pt;}
.ls2_c00256{letter-spacing:0.468864pt;}
.ws0_c00256{word-spacing:-17.804800pt;}
.ws1_c00256{word-spacing:0.000000pt;}
._3_c00256{margin-left:-0.947200pt;}
._4_c00256{width:1.945600pt;}
._6_c00256{width:5.228800pt;}
._1_c00256{width:11.168000pt;}
._2_c00256{width:12.806400pt;}
._5_c00256{width:15.276800pt;}
._7_c00256{width:34.758400pt;}
._0_c00256{width:1019.274133pt;}
.fs1_c00256{font-size:47.360000pt;}
.fs0_c00256{font-size:64.000000pt;}
.y0_c00256{bottom:0.000000pt;}
.y4_c00256{bottom:3.520000pt;}
.y1_c00256{bottom:16.666667pt;}
.y2_c00256{bottom:33.653360pt;}
.y3_c00256{bottom:46.480027pt;}
.y10_c00256{bottom:93.813360pt;}
.yf_c00256{bottom:105.013360pt;}
.ye_c00256{bottom:415.093333pt;}
.yd_c00256{bottom:451.893333pt;}
.yc_c00256{bottom:488.693333pt;}
.yb_c00256{bottom:525.493333pt;}
.ya_c00256{bottom:562.293333pt;}
.y9_c00256{bottom:609.333333pt;}
.y8_c00256{bottom:620.533333pt;}
.y7_c00256{bottom:922.613333pt;}
.y6_c00256{bottom:959.413333pt;}
.y5_c00256{bottom:996.213333pt;}
.h3_c00256{height:18.240000pt;}
.h4_c00256{height:42.457500pt;}
.h2_c00256{height:57.375000pt;}
.h1_c00256{height:1089.333333pt;}
.h0_c00256{height:1122.666667pt;}
.w2_c00256{width:26.880000pt;}
.w1_c00256{width:760.000000pt;}
.w0_c00256{width:793.333333pt;}
.x0_c00256{left:0.000000pt;}
.x1_c00256{left:16.666667pt;}
.x5_c00256{left:97.279933pt;}
.x3_c00256{left:113.946667pt;}
.x2_c00256{left:121.280000pt;}
.x4_c00256{left:135.080133pt;}
.x7_c00256{left:293.168533pt;}
.x8_c00256{left:297.510400pt;}
.x6_c00256{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3356d467d554b0ec89143100.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00257{vertical-align:0.000000px;}
.ls1_c00257{letter-spacing:0.000000px;}
.ls0_c00257{letter-spacing:0.014400px;}
.ls3_c00257{letter-spacing:0.191808px;}
.ls2_c00257{letter-spacing:0.479520px;}
.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;}
}
.ws0_c00257{word-spacing:-20.030400px;}
.ws1_c00257{word-spacing:-15.291360px;}
.ws2_c00257{word-spacing:0.000000px;}
._3_c00257{margin-left:-1.148400px;}
._4_c00257{width:1.065600px;}
._1_c00257{width:1061.484000px;}
._2_c00257{width:1146.684000px;}
._0_c00257{width:2079.683700px;}
.fc1_c00257{color:transparent;}
.fc0_c00257{color:rgb(0,0,0);}
.fs1_c00257{font-size:53.280000px;}
.fs0_c00257{font-size:72.000000px;}
.y0_c00257{bottom:0.000000px;}
.y5_c00257{bottom:3.960000px;}
.y1_c00257{bottom:18.750000px;}
.y3_c00257{bottom:36.420030px;}
.y4_c00257{bottom:47.250030px;}
.yc_c00257{bottom:163.500000px;}
.yb_c00257{bottom:176.100000px;}
.ya_c00257{bottom:611.340000px;}
.y9_c00257{bottom:660.660000px;}
.y8_c00257{bottom:673.260000px;}
.y7_c00257{bottom:1075.740000px;}
.y6_c00257{bottom:1124.700000px;}
.y2_c00257{bottom:1174.020000px;}
.h3_c00257{height:20.520000px;}
.h4_c00257{height:47.764688px;}
.h2_c00257{height:64.546875px;}
.h1_c00257{height:1225.500000px;}
.h0_c00257{height:1263.000000px;}
.w2_c00257{width:30.240000px;}
.w1_c00257{width:855.000000px;}
.w0_c00257{width:892.500000px;}
.x0_c00257{left:0.000000px;}
.x1_c00257{left:18.750000px;}
.x2_c00257{left:109.439925px;}
.x3_c00257{left:157.739850px;}
.x8_c00257{left:345.575700px;}
.x7_c00257{left:354.583350px;}
.x5_c00257{left:428.114850px;}
.x4_c00257{left:735.510000px;}
.x6_c00257{left:754.440000px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls1_c00257{letter-spacing:0.000000pt;}
.ls0_c00257{letter-spacing:0.012800pt;}
.ls3_c00257{letter-spacing:0.170496pt;}
.ls2_c00257{letter-spacing:0.426240pt;}
.ws0_c00257{word-spacing:-17.804800pt;}
.ws1_c00257{word-spacing:-13.592320pt;}
.ws2_c00257{word-spacing:0.000000pt;}
._3_c00257{margin-left:-1.020800pt;}
._4_c00257{width:0.947200pt;}
._1_c00257{width:943.541333pt;}
._2_c00257{width:1019.274667pt;}
._0_c00257{width:1848.607733pt;}
.fs1_c00257{font-size:47.360000pt;}
.fs0_c00257{font-size:64.000000pt;}
.y0_c00257{bottom:0.000000pt;}
.y5_c00257{bottom:3.520000pt;}
.y1_c00257{bottom:16.666667pt;}
.y3_c00257{bottom:32.373360pt;}
.y4_c00257{bottom:42.000027pt;}
.yc_c00257{bottom:145.333333pt;}
.yb_c00257{bottom:156.533333pt;}
.ya_c00257{bottom:543.413333pt;}
.y9_c00257{bottom:587.253333pt;}
.y8_c00257{bottom:598.453333pt;}
.y7_c00257{bottom:956.213333pt;}
.y6_c00257{bottom:999.733333pt;}
.y2_c00257{bottom:1043.573333pt;}
.h3_c00257{height:18.240000pt;}
.h4_c00257{height:42.457500pt;}
.h2_c00257{height:57.375000pt;}
.h1_c00257{height:1089.333333pt;}
.h0_c00257{height:1122.666667pt;}
.w2_c00257{width:26.880000pt;}
.w1_c00257{width:760.000000pt;}
.w0_c00257{width:793.333333pt;}
.x0_c00257{left:0.000000pt;}
.x1_c00257{left:16.666667pt;}
.x2_c00257{left:97.279933pt;}
.x3_c00257{left:140.213200pt;}
.x8_c00257{left:307.178400pt;}
.x7_c00257{left:315.185200pt;}
.x5_c00257{left:380.546533pt;}
.x4_c00257{left:653.786667pt;}
.x6_c00257{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_834f497dfcc01a79ff0b2484.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00258;src:url('chunks/assets/font_f740ec6aa2049aac6fc63d1d.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.104492;font-style: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;}
.ls7_c00258{letter-spacing:-0.014400px;}
.ls6_c00258{letter-spacing:0.000000px;}
.ls1_c00258{letter-spacing:0.010800px;}
.ls0_c00258{letter-spacing:0.014400px;}
.ls9_c00258{letter-spacing:0.191808px;}
.ls5_c00258{letter-spacing:0.360000px;}
.ls4_c00258{letter-spacing:0.408120px;}
.ls3_c00258{letter-spacing:0.410256px;}
.lsa_c00258{letter-spacing:0.420912px;}
.ls8_c00258{letter-spacing:0.479520px;}
.ls2_c00258{letter-spacing:0.528840px;}
.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:-20.030400px;}
.ws1_c00258{word-spacing:-20.016000px;}
.ws3_c00258{word-spacing:-15.232752px;}
.ws2_c00258{word-spacing:-15.003648px;}
.ws4_c00258{word-spacing:0.000000px;}
._1_c00258{margin-left:-1.172160px;}
._5_c00258{width:1.836000px;}
._6_c00258{width:2.887200px;}
._2_c00258{width:10.231200px;}
._4_c00258{width:11.620800px;}
._3_c00258{width:13.471200px;}
._7_c00258{width:14.515200px;}
._0_c00258{width:1146.683400px;}
.fc1_c00258{color:transparent;}
.fc0_c00258{color:rgb(0,0,0);}
.fs1_c00258{font-size:53.280000px;}
.fs0_c00258{font-size:72.000000px;}
.y0_c00258{bottom:0.000000px;}
.y4_c00258{bottom:3.960000px;}
.y1_c00258{bottom:18.750000px;}
.y2_c00258{bottom:37.860030px;}
.y3_c00258{bottom:52.290030px;}
.yf_c00258{bottom:92.940015px;}
.ye_c00258{bottom:105.540030px;}
.yd_c00258{bottom:466.260000px;}
.yc_c00258{bottom:507.660000px;}
.yb_c00258{bottom:549.060000px;}
.ya_c00258{bottom:590.460000px;}
.y9_c00258{bottom:631.860000px;}
.y8_c00258{bottom:673.260000px;}
.y7_c00258{bottom:714.660000px;}
.y6_c00258{bottom:767.580000px;}
.y5_c00258{bottom:780.540000px;}
.h3_c00258{height:20.520000px;}
.h4_c00258{height:47.764688px;}
.h2_c00258{height:64.546875px;}
.h1_c00258{height:1225.500000px;}
.h0_c00258{height:1263.000000px;}
.w2_c00258{width:30.240000px;}
.w1_c00258{width:855.000000px;}
.w0_c00258{width:892.500000px;}
.x0_c00258{left:0.000000px;}
.x1_c00258{left:18.750000px;}
.x7_c00258{left:109.439925px;}
.x3_c00258{left:128.190000px;}
.x2_c00258{left:136.440000px;}
.x6_c00258{left:151.965150px;}
.x8_c00258{left:321.541950px;}
.x5_c00258{left:336.561450px;}
.x4_c00258{left:751.440000px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls7_c00258{letter-spacing:-0.012800pt;}
.ls6_c00258{letter-spacing:0.000000pt;}
.ls1_c00258{letter-spacing:0.009600pt;}
.ls0_c00258{letter-spacing:0.012800pt;}
.ls9_c00258{letter-spacing:0.170496pt;}
.ls5_c00258{letter-spacing:0.320000pt;}
.ls4_c00258{letter-spacing:0.362773pt;}
.ls3_c00258{letter-spacing:0.364672pt;}
.lsa_c00258{letter-spacing:0.374144pt;}
.ls8_c00258{letter-spacing:0.426240pt;}
.ls2_c00258{letter-spacing:0.470080pt;}
.ws0_c00258{word-spacing:-17.804800pt;}
.ws1_c00258{word-spacing:-17.792000pt;}
.ws3_c00258{word-spacing:-13.540224pt;}
.ws2_c00258{word-spacing:-13.336576pt;}
.ws4_c00258{word-spacing:0.000000pt;}
._1_c00258{margin-left:-1.041920pt;}
._5_c00258{width:1.632000pt;}
._6_c00258{width:2.566400pt;}
._2_c00258{width:9.094400pt;}
._4_c00258{width:10.329600pt;}
._3_c00258{width:11.974400pt;}
._7_c00258{width:12.902400pt;}
._0_c00258{width:1019.274133pt;}
.fs1_c00258{font-size:47.360000pt;}
.fs0_c00258{font-size:64.000000pt;}
.y0_c00258{bottom:0.000000pt;}
.y4_c00258{bottom:3.520000pt;}
.y1_c00258{bottom:16.666667pt;}
.y2_c00258{bottom:33.653360pt;}
.y3_c00258{bottom:46.480027pt;}
.yf_c00258{bottom:82.613347pt;}
.ye_c00258{bottom:93.813360pt;}
.yd_c00258{bottom:414.453333pt;}
.yc_c00258{bottom:451.253333pt;}
.yb_c00258{bottom:488.053333pt;}
.ya_c00258{bottom:524.853333pt;}
.y9_c00258{bottom:561.653333pt;}
.y8_c00258{bottom:598.453333pt;}
.y7_c00258{bottom:635.253333pt;}
.y6_c00258{bottom:682.293333pt;}
.y5_c00258{bottom:693.813333pt;}
.h3_c00258{height:18.240000pt;}
.h4_c00258{height:42.457500pt;}
.h2_c00258{height:57.375000pt;}
.h1_c00258{height:1089.333333pt;}
.h0_c00258{height:1122.666667pt;}
.w2_c00258{width:26.880000pt;}
.w1_c00258{width:760.000000pt;}
.w0_c00258{width:793.333333pt;}
.x0_c00258{left:0.000000pt;}
.x1_c00258{left:16.666667pt;}
.x7_c00258{left:97.279933pt;}
.x3_c00258{left:113.946667pt;}
.x2_c00258{left:121.280000pt;}
.x6_c00258{left:135.080133pt;}
.x8_c00258{left:285.815067pt;}
.x5_c00258{left:299.165733pt;}
.x4_c00258{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_abee0f3934b19158746a16f7.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00259;src:url('chunks/assets/font_a6c6aa8d5f2e9e49eea8db9f.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00259;src:url('chunks/assets/font_ff99d38cb1987523779d4da4.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:1.113281;font-style: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;}
.ls2_c00259{letter-spacing:0.000000px;}
.ls1_c00259{letter-spacing:0.010800px;}
.ls0_c00259{letter-spacing:0.014400px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00259{word-spacing:-20.030400px;}
.ws1_c00259{word-spacing:-20.016000px;}
.ws2_c00259{word-spacing:0.000000px;}
._b_c00259{width:1.231200px;}
._a_c00259{width:2.440800px;}
._5_c00259{width:4.670100px;}
._8_c00259{width:5.714400px;}
._6_c00259{width:6.818400px;}
._3_c00259{width:8.539200px;}
._4_c00259{width:10.315500px;}
._c_c00259{width:17.373600px;}
._7_c00259{width:18.770400px;}
._9_c00259{width:21.561300px;}
._d_c00259{width:33.386400px;}
._1_c00259{width:1061.484000px;}
._2_c00259{width:1146.684000px;}
._0_c00259{width:2079.683700px;}
.fc1_c00259{color:transparent;}
.fc0_c00259{color:rgb(0,0,0);}
.fs1_c00259{font-size:53.280000px;}
.fs0_c00259{font-size:72.000000px;}
.y0_c00259{bottom:0.000000px;}
.y5_c00259{bottom:3.960000px;}
.y1_c00259{bottom:18.750000px;}
.y3_c00259{bottom:36.420030px;}
.y4_c00259{bottom:47.250030px;}
.y1d_c00259{bottom:128.220030px;}
.y1c_c00259{bottom:169.620000px;}
.y1b_c00259{bottom:210.660000px;}
.y1a_c00259{bottom:252.060000px;}
.y19_c00259{bottom:293.460000px;}
.y18_c00259{bottom:355.020000px;}
.y17_c00259{bottom:396.780000px;}
.y16_c00259{bottom:438.180000px;}
.y15_c00259{bottom:479.580000px;}
.y14_c00259{bottom:520.980000px;}
.y13_c00259{bottom:562.380000px;}
.y12_c00259{bottom:603.420000px;}
.y11_c00259{bottom:665.340000px;}
.y10_c00259{bottom:706.740000px;}
.yf_c00259{bottom:748.140000px;}
.ye_c00259{bottom:789.540000px;}
.yd_c00259{bottom:830.940000px;}
.yc_c00259{bottom:872.340000px;}
.yb_c00259{bottom:913.740000px;}
.ya_c00259{bottom:955.140000px;}
.y9_c00259{bottom:996.540000px;}
.y8_c00259{bottom:1037.940000px;}
.y7_c00259{bottom:1079.340000px;}
.y6_c00259{bottom:1120.740000px;}
.y2_c00259{bottom:1174.020000px;}
.h3_c00259{height:20.520000px;}
.h2_c00259{height:64.546875px;}
.h4_c00259{height:65.003906px;}
.h1_c00259{height:1225.500000px;}
.h0_c00259{height:1263.000000px;}
.w2_c00259{width:30.240000px;}
.w1_c00259{width:855.000000px;}
.w0_c00259{width:892.500000px;}
.x0_c00259{left:0.000000px;}
.x1_c00259{left:18.750000px;}
.x2_c00259{left:109.439925px;}
.x5_c00259{left:151.965150px;}
.x3_c00259{left:157.739850px;}
.x4_c00259{left:735.510000px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls2_c00259{letter-spacing:0.000000pt;}
.ls1_c00259{letter-spacing:0.009600pt;}
.ls0_c00259{letter-spacing:0.012800pt;}
.ws0_c00259{word-spacing:-17.804800pt;}
.ws1_c00259{word-spacing:-17.792000pt;}
.ws2_c00259{word-spacing:0.000000pt;}
._b_c00259{width:1.094400pt;}
._a_c00259{width:2.169600pt;}
._5_c00259{width:4.151200pt;}
._8_c00259{width:5.079467pt;}
._6_c00259{width:6.060800pt;}
._3_c00259{width:7.590400pt;}
._4_c00259{width:9.169333pt;}
._c_c00259{width:15.443200pt;}
._7_c00259{width:16.684800pt;}
._9_c00259{width:19.165600pt;}
._d_c00259{width:29.676800pt;}
._1_c00259{width:943.541333pt;}
._2_c00259{width:1019.274667pt;}
._0_c00259{width:1848.607733pt;}
.fs1_c00259{font-size:47.360000pt;}
.fs0_c00259{font-size:64.000000pt;}
.y0_c00259{bottom:0.000000pt;}
.y5_c00259{bottom:3.520000pt;}
.y1_c00259{bottom:16.666667pt;}
.y3_c00259{bottom:32.373360pt;}
.y4_c00259{bottom:42.000027pt;}
.y1d_c00259{bottom:113.973360pt;}
.y1c_c00259{bottom:150.773333pt;}
.y1b_c00259{bottom:187.253333pt;}
.y1a_c00259{bottom:224.053333pt;}
.y19_c00259{bottom:260.853333pt;}
.y18_c00259{bottom:315.573333pt;}
.y17_c00259{bottom:352.693333pt;}
.y16_c00259{bottom:389.493333pt;}
.y15_c00259{bottom:426.293333pt;}
.y14_c00259{bottom:463.093333pt;}
.y13_c00259{bottom:499.893333pt;}
.y12_c00259{bottom:536.373333pt;}
.y11_c00259{bottom:591.413333pt;}
.y10_c00259{bottom:628.213333pt;}
.yf_c00259{bottom:665.013333pt;}
.ye_c00259{bottom:701.813333pt;}
.yd_c00259{bottom:738.613333pt;}
.yc_c00259{bottom:775.413333pt;}
.yb_c00259{bottom:812.213333pt;}
.ya_c00259{bottom:849.013333pt;}
.y9_c00259{bottom:885.813333pt;}
.y8_c00259{bottom:922.613333pt;}
.y7_c00259{bottom:959.413333pt;}
.y6_c00259{bottom:996.213333pt;}
.y2_c00259{bottom:1043.573333pt;}
.h3_c00259{height:18.240000pt;}
.h2_c00259{height:57.375000pt;}
.h4_c00259{height:57.781250pt;}
.h1_c00259{height:1089.333333pt;}
.h0_c00259{height:1122.666667pt;}
.w2_c00259{width:26.880000pt;}
.w1_c00259{width:760.000000pt;}
.w0_c00259{width:793.333333pt;}
.x0_c00259{left:0.000000pt;}
.x1_c00259{left:16.666667pt;}
.x2_c00259{left:97.279933pt;}
.x5_c00259{left:135.080133pt;}
.x3_c00259{left:140.213200pt;}
.x4_c00259{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f82c010c98ea46d887b577f1.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00260;src:url('chunks/assets/font_25bf8955876cb10e1210bf40.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.104492;font-style: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;}
.ls3_c00260{letter-spacing:-0.014400px;}
.ls1_c00260{letter-spacing:0.000000px;}
.ls0_c00260{letter-spacing:0.014400px;}
.ls2_c00260{letter-spacing:0.527472px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00260{word-spacing:-20.030400px;}
.ws1_c00260{word-spacing:-20.016000px;}
.ws2_c00260{word-spacing:-20.001600px;}
.ws3_c00260{word-spacing:0.000000px;}
._2_c00260{margin-left:-1.118880px;}
._8_c00260{width:1.004580px;}
._1_c00260{width:2.556000px;}
._5_c00260{width:3.600000px;}
._9_c00260{width:9.936000px;}
._7_c00260{width:21.484800px;}
._6_c00260{width:24.710700px;}
._4_c00260{width:26.092500px;}
._3_c00260{width:27.799800px;}
._0_c00260{width:1146.683400px;}
.fc1_c00260{color:transparent;}
.fc0_c00260{color:rgb(0,0,0);}
.fs1_c00260{font-size:53.280000px;}
.fs0_c00260{font-size:72.000000px;}
.y0_c00260{bottom:0.000000px;}
.y4_c00260{bottom:3.960000px;}
.y1_c00260{bottom:18.750000px;}
.y2_c00260{bottom:37.860030px;}
.y3_c00260{bottom:52.290030px;}
.y14_c00260{bottom:122.460015px;}
.y13_c00260{bottom:163.860000px;}
.y12_c00260{bottom:205.260000px;}
.y11_c00260{bottom:246.660000px;}
.y10_c00260{bottom:288.060000px;}
.yf_c00260{bottom:329.460000px;}
.ye_c00260{bottom:370.860000px;}
.yd_c00260{bottom:412.260000px;}
.yc_c00260{bottom:453.660000px;}
.yb_c00260{bottom:495.060000px;}
.ya_c00260{bottom:536.460000px;}
.y9_c00260{bottom:577.860000px;}
.y8_c00260{bottom:630.780000px;}
.y7_c00260{bottom:643.740000px;}
.y6_c00260{bottom:1079.340000px;}
.y5_c00260{bottom:1120.740000px;}
.h3_c00260{height:20.520000px;}
.h4_c00260{height:47.764688px;}
.h2_c00260{height:64.546875px;}
.h1_c00260{height:1225.500000px;}
.h0_c00260{height:1263.000000px;}
.w2_c00260{width:30.240000px;}
.w1_c00260{width:855.000000px;}
.w0_c00260{width:892.500000px;}
.x0_c00260{left:0.000000px;}
.x1_c00260{left:18.750000px;}
.x4_c00260{left:109.439925px;}
.x3_c00260{left:128.190000px;}
.x2_c00260{left:136.440000px;}
.x7_c00260{left:151.965150px;}
.x6_c00260{left:307.306950px;}
.x5_c00260{left:754.440000px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls3_c00260{letter-spacing:-0.012800pt;}
.ls1_c00260{letter-spacing:0.000000pt;}
.ls0_c00260{letter-spacing:0.012800pt;}
.ls2_c00260{letter-spacing:0.468864pt;}
.ws0_c00260{word-spacing:-17.804800pt;}
.ws1_c00260{word-spacing:-17.792000pt;}
.ws2_c00260{word-spacing:-17.779200pt;}
.ws3_c00260{word-spacing:0.000000pt;}
._2_c00260{margin-left:-0.994560pt;}
._8_c00260{width:0.892960pt;}
._1_c00260{width:2.272000pt;}
._5_c00260{width:3.200000pt;}
._9_c00260{width:8.832000pt;}
._7_c00260{width:19.097600pt;}
._6_c00260{width:21.965067pt;}
._4_c00260{width:23.193333pt;}
._3_c00260{width:24.710933pt;}
._0_c00260{width:1019.274133pt;}
.fs1_c00260{font-size:47.360000pt;}
.fs0_c00260{font-size:64.000000pt;}
.y0_c00260{bottom:0.000000pt;}
.y4_c00260{bottom:3.520000pt;}
.y1_c00260{bottom:16.666667pt;}
.y2_c00260{bottom:33.653360pt;}
.y3_c00260{bottom:46.480027pt;}
.y14_c00260{bottom:108.853347pt;}
.y13_c00260{bottom:145.653333pt;}
.y12_c00260{bottom:182.453333pt;}
.y11_c00260{bottom:219.253333pt;}
.y10_c00260{bottom:256.053333pt;}
.yf_c00260{bottom:292.853333pt;}
.ye_c00260{bottom:329.653333pt;}
.yd_c00260{bottom:366.453333pt;}
.yc_c00260{bottom:403.253333pt;}
.yb_c00260{bottom:440.053333pt;}
.ya_c00260{bottom:476.853333pt;}
.y9_c00260{bottom:513.653333pt;}
.y8_c00260{bottom:560.693333pt;}
.y7_c00260{bottom:572.213333pt;}
.y6_c00260{bottom:959.413333pt;}
.y5_c00260{bottom:996.213333pt;}
.h3_c00260{height:18.240000pt;}
.h4_c00260{height:42.457500pt;}
.h2_c00260{height:57.375000pt;}
.h1_c00260{height:1089.333333pt;}
.h0_c00260{height:1122.666667pt;}
.w2_c00260{width:26.880000pt;}
.w1_c00260{width:760.000000pt;}
.w0_c00260{width:793.333333pt;}
.x0_c00260{left:0.000000pt;}
.x1_c00260{left:16.666667pt;}
.x4_c00260{left:97.279933pt;}
.x3_c00260{left:113.946667pt;}
.x2_c00260{left:121.280000pt;}
.x7_c00260{left:135.080133pt;}
.x6_c00260{left:273.161733pt;}
.x5_c00260{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ae2e0ef915fa3e99077bcf68.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls2_c00261{letter-spacing:0.000000px;}
.ls0_c00261{letter-spacing:0.014400px;}
.ls1_c00261{letter-spacing:0.399600px;}
.ls3_c00261{letter-spacing:0.479520px;}
.ls4_c00261{letter-spacing:0.527472px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00261{word-spacing:-20.030400px;}
.ws1_c00261{word-spacing:-15.211440px;}
.ws2_c00261{word-spacing:0.000000px;}
._3_c00261{margin-left:-1.065600px;}
._1_c00261{width:1061.484000px;}
._2_c00261{width:1146.684000px;}
._0_c00261{width:2079.683700px;}
.fc1_c00261{color:transparent;}
.fc0_c00261{color:rgb(0,0,0);}
.fs1_c00261{font-size:53.280000px;}
.fs0_c00261{font-size:72.000000px;}
.y0_c00261{bottom:0.000000px;}
.y5_c00261{bottom:3.960000px;}
.y1_c00261{bottom:18.750000px;}
.y3_c00261{bottom:36.420030px;}
.y4_c00261{bottom:47.250030px;}
.yc_c00261{bottom:175.740000px;}
.yb_c00261{bottom:188.340000px;}
.ya_c00261{bottom:623.940000px;}
.y9_c00261{bottom:672.900000px;}
.y8_c00261{bottom:685.500000px;}
.y7_c00261{bottom:1079.340000px;}
.y6_c00261{bottom:1120.740000px;}
.y2_c00261{bottom:1174.020000px;}
.h3_c00261{height:20.520000px;}
.h4_c00261{height:47.764688px;}
.h2_c00261{height:64.546875px;}
.h1_c00261{height:1225.500000px;}
.h0_c00261{height:1263.000000px;}
.w2_c00261{width:30.240000px;}
.w1_c00261{width:855.000000px;}
.w0_c00261{width:892.500000px;}
.x0_c00261{left:0.000000px;}
.x1_c00261{left:18.750000px;}
.x2_c00261{left:109.439925px;}
.x5_c00261{left:151.965150px;}
.x3_c00261{left:157.739850px;}
.x9_c00261{left:314.056950px;}
.x7_c00261{left:317.425350px;}
.x8_c00261{left:428.114850px;}
.x4_c00261{left:735.510000px;}
.x6_c00261{left:754.440000px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls2_c00261{letter-spacing:0.000000pt;}
.ls0_c00261{letter-spacing:0.012800pt;}
.ls1_c00261{letter-spacing:0.355200pt;}
.ls3_c00261{letter-spacing:0.426240pt;}
.ls4_c00261{letter-spacing:0.468864pt;}
.ws0_c00261{word-spacing:-17.804800pt;}
.ws1_c00261{word-spacing:-13.521280pt;}
.ws2_c00261{word-spacing:0.000000pt;}
._3_c00261{margin-left:-0.947200pt;}
._1_c00261{width:943.541333pt;}
._2_c00261{width:1019.274667pt;}
._0_c00261{width:1848.607733pt;}
.fs1_c00261{font-size:47.360000pt;}
.fs0_c00261{font-size:64.000000pt;}
.y0_c00261{bottom:0.000000pt;}
.y5_c00261{bottom:3.520000pt;}
.y1_c00261{bottom:16.666667pt;}
.y3_c00261{bottom:32.373360pt;}
.y4_c00261{bottom:42.000027pt;}
.yc_c00261{bottom:156.213333pt;}
.yb_c00261{bottom:167.413333pt;}
.ya_c00261{bottom:554.613333pt;}
.y9_c00261{bottom:598.133333pt;}
.y8_c00261{bottom:609.333333pt;}
.y7_c00261{bottom:959.413333pt;}
.y6_c00261{bottom:996.213333pt;}
.y2_c00261{bottom:1043.573333pt;}
.h3_c00261{height:18.240000pt;}
.h4_c00261{height:42.457500pt;}
.h2_c00261{height:57.375000pt;}
.h1_c00261{height:1089.333333pt;}
.h0_c00261{height:1122.666667pt;}
.w2_c00261{width:26.880000pt;}
.w1_c00261{width:760.000000pt;}
.w0_c00261{width:793.333333pt;}
.x0_c00261{left:0.000000pt;}
.x1_c00261{left:16.666667pt;}
.x2_c00261{left:97.279933pt;}
.x5_c00261{left:135.080133pt;}
.x3_c00261{left:140.213200pt;}
.x9_c00261{left:279.161733pt;}
.x7_c00261{left:282.155867pt;}
.x8_c00261{left:380.546533pt;}
.x4_c00261{left:653.786667pt;}
.x6_c00261{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6d73d11a2af7bb83837cf32a.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00262{letter-spacing:0.000000px;}
.ls0_c00262{letter-spacing:0.014400px;}
.ls2_c00262{letter-spacing:0.479520px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00262{word-spacing:-20.030400px;}
.ws1_c00262{word-spacing:0.000000px;}
._1_c00262{margin-left:-1.225440px;}
._4_c00262{width:3.650400px;}
._2_c00262{width:4.759200px;}
._3_c00262{width:9.633600px;}
._0_c00262{width:1146.683400px;}
.fc1_c00262{color:transparent;}
.fc0_c00262{color:rgb(0,0,0);}
.fs1_c00262{font-size:53.280000px;}
.fs0_c00262{font-size:72.000000px;}
.y0_c00262{bottom:0.000000px;}
.y4_c00262{bottom:3.960000px;}
.y1_c00262{bottom:18.750000px;}
.y2_c00262{bottom:37.860030px;}
.y3_c00262{bottom:52.290030px;}
.yc_c00262{bottom:112.380015px;}
.yb_c00262{bottom:153.780000px;}
.ya_c00262{bottom:195.180000px;}
.y9_c00262{bottom:236.580000px;}
.y8_c00262{bottom:289.500000px;}
.y7_c00262{bottom:302.460000px;}
.y6_c00262{bottom:749.580000px;}
.y5_c00262{bottom:762.540000px;}
.h3_c00262{height:20.520000px;}
.h4_c00262{height:47.764688px;}
.h2_c00262{height:64.546875px;}
.h1_c00262{height:1225.500000px;}
.h0_c00262{height:1263.000000px;}
.w2_c00262{width:30.240000px;}
.w1_c00262{width:855.000000px;}
.w0_c00262{width:892.500000px;}
.x0_c00262{left:0.000000px;}
.x1_c00262{left:18.750000px;}
.x8_c00262{left:109.439925px;}
.x3_c00262{left:128.190000px;}
.x2_c00262{left:136.440000px;}
.x7_c00262{left:151.965150px;}
.x6_c00262{left:347.088450px;}
.x5_c00262{left:348.963900px;}
.x4_c00262{left:754.440000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls1_c00262{letter-spacing:0.000000pt;}
.ls0_c00262{letter-spacing:0.012800pt;}
.ls2_c00262{letter-spacing:0.426240pt;}
.ws0_c00262{word-spacing:-17.804800pt;}
.ws1_c00262{word-spacing:0.000000pt;}
._1_c00262{margin-left:-1.089280pt;}
._4_c00262{width:3.244800pt;}
._2_c00262{width:4.230400pt;}
._3_c00262{width:8.563200pt;}
._0_c00262{width:1019.274133pt;}
.fs1_c00262{font-size:47.360000pt;}
.fs0_c00262{font-size:64.000000pt;}
.y0_c00262{bottom:0.000000pt;}
.y4_c00262{bottom:3.520000pt;}
.y1_c00262{bottom:16.666667pt;}
.y2_c00262{bottom:33.653360pt;}
.y3_c00262{bottom:46.480027pt;}
.yc_c00262{bottom:99.893347pt;}
.yb_c00262{bottom:136.693333pt;}
.ya_c00262{bottom:173.493333pt;}
.y9_c00262{bottom:210.293333pt;}
.y8_c00262{bottom:257.333333pt;}
.y7_c00262{bottom:268.853333pt;}
.y6_c00262{bottom:666.293333pt;}
.y5_c00262{bottom:677.813333pt;}
.h3_c00262{height:18.240000pt;}
.h4_c00262{height:42.457500pt;}
.h2_c00262{height:57.375000pt;}
.h1_c00262{height:1089.333333pt;}
.h0_c00262{height:1122.666667pt;}
.w2_c00262{width:26.880000pt;}
.w1_c00262{width:760.000000pt;}
.w0_c00262{width:793.333333pt;}
.x0_c00262{left:0.000000pt;}
.x1_c00262{left:16.666667pt;}
.x8_c00262{left:97.279933pt;}
.x3_c00262{left:113.946667pt;}
.x2_c00262{left:121.280000pt;}
.x7_c00262{left:135.080133pt;}
.x6_c00262{left:308.523067pt;}
.x5_c00262{left:310.190133pt;}
.x4_c00262{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3fbe6f05c0ee3fbcf25a5c69.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.ls1_c00263{letter-spacing:0.000000px;}
.ls0_c00263{letter-spacing:0.014400px;}
.ls3_c00263{letter-spacing:0.479520px;}
.ls2_c00263{letter-spacing:0.527472px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00263{word-spacing:-20.030400px;}
.ws1_c00263{word-spacing:0.000000px;}
._3_c00263{margin-left:-1.065600px;}
._1_c00263{width:1061.484000px;}
._2_c00263{width:1146.684000px;}
._0_c00263{width:2079.683700px;}
.fc1_c00263{color:transparent;}
.fc0_c00263{color:rgb(0,0,0);}
.fs1_c00263{font-size:53.280000px;}
.fs0_c00263{font-size:72.000000px;}
.y0_c00263{bottom:0.000000px;}
.y5_c00263{bottom:3.960000px;}
.y1_c00263{bottom:18.750000px;}
.y3_c00263{bottom:36.420030px;}
.y4_c00263{bottom:47.250030px;}
.yd_c00263{bottom:96.540030px;}
.yc_c00263{bottom:145.860000px;}
.yb_c00263{bottom:158.460000px;}
.ya_c00263{bottom:599.820000px;}
.y9_c00263{bottom:648.780000px;}
.y8_c00263{bottom:661.740000px;}
.y7_c00263{bottom:1061.340000px;}
.y6_c00263{bottom:1120.740000px;}
.y2_c00263{bottom:1174.020000px;}
.h3_c00263{height:20.520000px;}
.h4_c00263{height:47.764688px;}
.h2_c00263{height:64.546875px;}
.h1_c00263{height:1225.500000px;}
.h0_c00263{height:1263.000000px;}
.w2_c00263{width:30.240000px;}
.w1_c00263{width:855.000000px;}
.w0_c00263{width:892.500000px;}
.x0_c00263{left:0.000000px;}
.x1_c00263{left:18.750000px;}
.x2_c00263{left:109.439925px;}
.x5_c00263{left:151.965150px;}
.x3_c00263{left:157.739850px;}
.xa_c00263{left:327.184500px;}
.x7_c00263{left:348.957300px;}
.x8_c00263{left:428.114850px;}
.x4_c00263{left:735.510000px;}
.x9_c00263{left:751.440000px;}
.x6_c00263{left:754.440000px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls1_c00263{letter-spacing:0.000000pt;}
.ls0_c00263{letter-spacing:0.012800pt;}
.ls3_c00263{letter-spacing:0.426240pt;}
.ls2_c00263{letter-spacing:0.468864pt;}
.ws0_c00263{word-spacing:-17.804800pt;}
.ws1_c00263{word-spacing:0.000000pt;}
._3_c00263{margin-left:-0.947200pt;}
._1_c00263{width:943.541333pt;}
._2_c00263{width:1019.274667pt;}
._0_c00263{width:1848.607733pt;}
.fs1_c00263{font-size:47.360000pt;}
.fs0_c00263{font-size:64.000000pt;}
.y0_c00263{bottom:0.000000pt;}
.y5_c00263{bottom:3.520000pt;}
.y1_c00263{bottom:16.666667pt;}
.y3_c00263{bottom:32.373360pt;}
.y4_c00263{bottom:42.000027pt;}
.yd_c00263{bottom:85.813360pt;}
.yc_c00263{bottom:129.653333pt;}
.yb_c00263{bottom:140.853333pt;}
.ya_c00263{bottom:533.173333pt;}
.y9_c00263{bottom:576.693333pt;}
.y8_c00263{bottom:588.213333pt;}
.y7_c00263{bottom:943.413333pt;}
.y6_c00263{bottom:996.213333pt;}
.y2_c00263{bottom:1043.573333pt;}
.h3_c00263{height:18.240000pt;}
.h4_c00263{height:42.457500pt;}
.h2_c00263{height:57.375000pt;}
.h1_c00263{height:1089.333333pt;}
.h0_c00263{height:1122.666667pt;}
.w2_c00263{width:26.880000pt;}
.w1_c00263{width:760.000000pt;}
.w0_c00263{width:793.333333pt;}
.x0_c00263{left:0.000000pt;}
.x1_c00263{left:16.666667pt;}
.x2_c00263{left:97.279933pt;}
.x5_c00263{left:135.080133pt;}
.x3_c00263{left:140.213200pt;}
.xa_c00263{left:290.830667pt;}
.x7_c00263{left:310.184267pt;}
.x8_c00263{left:380.546533pt;}
.x4_c00263{left:653.786667pt;}
.x9_c00263{left:667.946667pt;}
.x6_c00263{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_efb0dfb67bbbdc2f4df2223f.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00264{vertical-align:0.000000px;}
.ls1_c00264{letter-spacing:0.000000px;}
.ls0_c00264{letter-spacing:0.014400px;}
.ls2_c00264{letter-spacing:0.479520px;}
.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;}
}
.ws0_c00264{word-spacing:-20.030400px;}
.ws1_c00264{word-spacing:0.000000px;}
._1_c00264{margin-left:-1.065600px;}
._2_c00264{width:3.398400px;}
._3_c00264{width:34.156800px;}
._0_c00264{width:1146.683400px;}
.fc1_c00264{color:transparent;}
.fc0_c00264{color:rgb(0,0,0);}
.fs1_c00264{font-size:53.280000px;}
.fs0_c00264{font-size:72.000000px;}
.y0_c00264{bottom:0.000000px;}
.y4_c00264{bottom:3.960000px;}
.y1_c00264{bottom:18.750000px;}
.y2_c00264{bottom:37.860030px;}
.y3_c00264{bottom:52.290030px;}
.ye_c00264{bottom:341.340000px;}
.yd_c00264{bottom:396.780000px;}
.yc_c00264{bottom:438.180000px;}
.yb_c00264{bottom:479.580000px;}
.ya_c00264{bottom:520.980000px;}
.y9_c00264{bottom:580.380000px;}
.y8_c00264{bottom:633.660000px;}
.y7_c00264{bottom:646.260000px;}
.y6_c00264{bottom:1075.740000px;}
.y5_c00264{bottom:1124.700000px;}
.h3_c00264{height:20.520000px;}
.h4_c00264{height:47.764688px;}
.h2_c00264{height:64.546875px;}
.h1_c00264{height:1225.500000px;}
.h0_c00264{height:1263.000000px;}
.w2_c00264{width:30.240000px;}
.w1_c00264{width:855.000000px;}
.w0_c00264{width:892.500000px;}
.x0_c00264{left:0.000000px;}
.x1_c00264{left:18.750000px;}
.x8_c00264{left:109.439925px;}
.x3_c00264{left:128.190000px;}
.x2_c00264{left:136.440000px;}
.x7_c00264{left:151.965150px;}
.x6_c00264{left:323.809500px;}
.x4_c00264{left:428.114850px;}
.x5_c00264{left:754.440000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls1_c00264{letter-spacing:0.000000pt;}
.ls0_c00264{letter-spacing:0.012800pt;}
.ls2_c00264{letter-spacing:0.426240pt;}
.ws0_c00264{word-spacing:-17.804800pt;}
.ws1_c00264{word-spacing:0.000000pt;}
._1_c00264{margin-left:-0.947200pt;}
._2_c00264{width:3.020800pt;}
._3_c00264{width:30.361600pt;}
._0_c00264{width:1019.274133pt;}
.fs1_c00264{font-size:47.360000pt;}
.fs0_c00264{font-size:64.000000pt;}
.y0_c00264{bottom:0.000000pt;}
.y4_c00264{bottom:3.520000pt;}
.y1_c00264{bottom:16.666667pt;}
.y2_c00264{bottom:33.653360pt;}
.y3_c00264{bottom:46.480027pt;}
.ye_c00264{bottom:303.413333pt;}
.yd_c00264{bottom:352.693333pt;}
.yc_c00264{bottom:389.493333pt;}
.yb_c00264{bottom:426.293333pt;}
.ya_c00264{bottom:463.093333pt;}
.y9_c00264{bottom:515.893333pt;}
.y8_c00264{bottom:563.253333pt;}
.y7_c00264{bottom:574.453333pt;}
.y6_c00264{bottom:956.213333pt;}
.y5_c00264{bottom:999.733333pt;}
.h3_c00264{height:18.240000pt;}
.h4_c00264{height:42.457500pt;}
.h2_c00264{height:57.375000pt;}
.h1_c00264{height:1089.333333pt;}
.h0_c00264{height:1122.666667pt;}
.w2_c00264{width:26.880000pt;}
.w1_c00264{width:760.000000pt;}
.w0_c00264{width:793.333333pt;}
.x0_c00264{left:0.000000pt;}
.x1_c00264{left:16.666667pt;}
.x8_c00264{left:97.279933pt;}
.x3_c00264{left:113.946667pt;}
.x2_c00264{left:121.280000pt;}
.x7_c00264{left:135.080133pt;}
.x6_c00264{left:287.830667pt;}
.x4_c00264{left:380.546533pt;}
.x5_c00264{left:670.613333pt;}
}





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

.ir_c00265:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00265{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00265;src:url('chunks/assets/font_0e2268290bf73f31b419f7d0.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00265{letter-spacing:0.000000px;}
.ls0_c00265{letter-spacing:0.014400px;}
.ls2_c00265{letter-spacing:0.410256px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00265{word-spacing:-20.030400px;}
.ws1_c00265{word-spacing:0.000000px;}
._3_c00265{margin-left:-1.172160px;}
._1_c00265{width:1061.484000px;}
._2_c00265{width:1146.684000px;}
._0_c00265{width:2079.683700px;}
.fc1_c00265{color:transparent;}
.fc0_c00265{color:rgb(0,0,0);}
.fs1_c00265{font-size:53.280000px;}
.fs0_c00265{font-size:72.000000px;}
.y0_c00265{bottom:0.000000px;}
.y5_c00265{bottom:3.960000px;}
.y1_c00265{bottom:18.750000px;}
.y3_c00265{bottom:36.420030px;}
.y4_c00265{bottom:47.250030px;}
.y9_c00265{bottom:118.140030px;}
.y8_c00265{bottom:133.620000px;}
.y7_c00265{bottom:149.100000px;}
.y6_c00265{bottom:164.580000px;}
.y2_c00265{bottom:1174.020000px;}
.h3_c00265{height:20.520000px;}
.h4_c00265{height:47.764688px;}
.h2_c00265{height:64.546875px;}
.h1_c00265{height:1225.500000px;}
.h0_c00265{height:1263.000000px;}
.w2_c00265{width:30.240000px;}
.w1_c00265{width:855.000000px;}
.w0_c00265{width:892.500000px;}
.x0_c00265{left:0.000000px;}
.x1_c00265{left:18.750000px;}
.x2_c00265{left:109.439925px;}
.x3_c00265{left:157.739850px;}
.x5_c00265{left:292.297500px;}
.x6_c00265{left:428.114850px;}
.x4_c00265{left:735.510000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls1_c00265{letter-spacing:0.000000pt;}
.ls0_c00265{letter-spacing:0.012800pt;}
.ls2_c00265{letter-spacing:0.364672pt;}
.ws0_c00265{word-spacing:-17.804800pt;}
.ws1_c00265{word-spacing:0.000000pt;}
._3_c00265{margin-left:-1.041920pt;}
._1_c00265{width:943.541333pt;}
._2_c00265{width:1019.274667pt;}
._0_c00265{width:1848.607733pt;}
.fs1_c00265{font-size:47.360000pt;}
.fs0_c00265{font-size:64.000000pt;}
.y0_c00265{bottom:0.000000pt;}
.y5_c00265{bottom:3.520000pt;}
.y1_c00265{bottom:16.666667pt;}
.y3_c00265{bottom:32.373360pt;}
.y4_c00265{bottom:42.000027pt;}
.y9_c00265{bottom:105.013360pt;}
.y8_c00265{bottom:118.773333pt;}
.y7_c00265{bottom:132.533333pt;}
.y6_c00265{bottom:146.293333pt;}
.y2_c00265{bottom:1043.573333pt;}
.h3_c00265{height:18.240000pt;}
.h4_c00265{height:42.457500pt;}
.h2_c00265{height:57.375000pt;}
.h1_c00265{height:1089.333333pt;}
.h0_c00265{height:1122.666667pt;}
.w2_c00265{width:26.880000pt;}
.w1_c00265{width:760.000000pt;}
.w0_c00265{width:793.333333pt;}
.x0_c00265{left:0.000000pt;}
.x1_c00265{left:16.666667pt;}
.x2_c00265{left:97.279933pt;}
.x3_c00265{left:140.213200pt;}
.x5_c00265{left:259.820000pt;}
.x6_c00265{left:380.546533pt;}
.x4_c00265{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec054f47c0a5a25d01841d1f.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.ls1_c00266{letter-spacing:0.000000px;}
.ls0_c00266{letter-spacing:0.014400px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00266{word-spacing:-20.030400px;}
.ws1_c00266{word-spacing:0.000000px;}
._0_c00266{width:1146.683400px;}
.fc1_c00266{color:transparent;}
.fc0_c00266{color:rgb(0,0,0);}
.fs1_c00266{font-size:53.280000px;}
.fs0_c00266{font-size:72.000000px;}
.y0_c00266{bottom:0.000000px;}
.y4_c00266{bottom:3.960000px;}
.y1_c00266{bottom:18.750000px;}
.y2_c00266{bottom:37.860030px;}
.y3_c00266{bottom:52.290030px;}
.y24_c00266{bottom:162.060000px;}
.y23_c00266{bottom:193.380000px;}
.y22_c00266{bottom:224.340000px;}
.y21_c00266{bottom:255.300000px;}
.y20_c00266{bottom:286.260000px;}
.y1f_c00266{bottom:317.220000px;}
.y1e_c00266{bottom:348.540000px;}
.y1d_c00266{bottom:379.500000px;}
.y1c_c00266{bottom:410.460000px;}
.y1b_c00266{bottom:441.420000px;}
.y1a_c00266{bottom:472.740000px;}
.y19_c00266{bottom:503.700000px;}
.y18_c00266{bottom:534.660000px;}
.y17_c00266{bottom:565.620000px;}
.y16_c00266{bottom:596.940000px;}
.y15_c00266{bottom:627.900000px;}
.y14_c00266{bottom:658.860000px;}
.y13_c00266{bottom:689.820000px;}
.y12_c00266{bottom:721.140000px;}
.y11_c00266{bottom:752.100000px;}
.y10_c00266{bottom:783.060000px;}
.yf_c00266{bottom:814.020000px;}
.ye_c00266{bottom:845.340000px;}
.yd_c00266{bottom:876.300000px;}
.yc_c00266{bottom:907.260000px;}
.yb_c00266{bottom:938.220000px;}
.ya_c00266{bottom:969.540000px;}
.y9_c00266{bottom:1000.500000px;}
.y8_c00266{bottom:1031.460000px;}
.y7_c00266{bottom:1062.420000px;}
.y6_c00266{bottom:1093.740000px;}
.y5_c00266{bottom:1124.700000px;}
.h3_c00266{height:20.520000px;}
.h4_c00266{height:47.764688px;}
.h2_c00266{height:64.546875px;}
.h1_c00266{height:1225.500000px;}
.h0_c00266{height:1263.000000px;}
.w2_c00266{width:30.240000px;}
.w1_c00266{width:855.000000px;}
.w0_c00266{width:892.500000px;}
.x0_c00266{left:0.000000px;}
.x1_c00266{left:18.750000px;}
.x3_c00266{left:128.190000px;}
.x2_c00266{left:136.440000px;}
.x4_c00266{left:428.114850px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls1_c00266{letter-spacing:0.000000pt;}
.ls0_c00266{letter-spacing:0.012800pt;}
.ws0_c00266{word-spacing:-17.804800pt;}
.ws1_c00266{word-spacing:0.000000pt;}
._0_c00266{width:1019.274133pt;}
.fs1_c00266{font-size:47.360000pt;}
.fs0_c00266{font-size:64.000000pt;}
.y0_c00266{bottom:0.000000pt;}
.y4_c00266{bottom:3.520000pt;}
.y1_c00266{bottom:16.666667pt;}
.y2_c00266{bottom:33.653360pt;}
.y3_c00266{bottom:46.480027pt;}
.y24_c00266{bottom:144.053333pt;}
.y23_c00266{bottom:171.893333pt;}
.y22_c00266{bottom:199.413333pt;}
.y21_c00266{bottom:226.933333pt;}
.y20_c00266{bottom:254.453333pt;}
.y1f_c00266{bottom:281.973333pt;}
.y1e_c00266{bottom:309.813333pt;}
.y1d_c00266{bottom:337.333333pt;}
.y1c_c00266{bottom:364.853333pt;}
.y1b_c00266{bottom:392.373333pt;}
.y1a_c00266{bottom:420.213333pt;}
.y19_c00266{bottom:447.733333pt;}
.y18_c00266{bottom:475.253333pt;}
.y17_c00266{bottom:502.773333pt;}
.y16_c00266{bottom:530.613333pt;}
.y15_c00266{bottom:558.133333pt;}
.y14_c00266{bottom:585.653333pt;}
.y13_c00266{bottom:613.173333pt;}
.y12_c00266{bottom:641.013333pt;}
.y11_c00266{bottom:668.533333pt;}
.y10_c00266{bottom:696.053333pt;}
.yf_c00266{bottom:723.573333pt;}
.ye_c00266{bottom:751.413333pt;}
.yd_c00266{bottom:778.933333pt;}
.yc_c00266{bottom:806.453333pt;}
.yb_c00266{bottom:833.973333pt;}
.ya_c00266{bottom:861.813333pt;}
.y9_c00266{bottom:889.333333pt;}
.y8_c00266{bottom:916.853333pt;}
.y7_c00266{bottom:944.373333pt;}
.y6_c00266{bottom:972.213333pt;}
.y5_c00266{bottom:999.733333pt;}
.h3_c00266{height:18.240000pt;}
.h4_c00266{height:42.457500pt;}
.h2_c00266{height:57.375000pt;}
.h1_c00266{height:1089.333333pt;}
.h0_c00266{height:1122.666667pt;}
.w2_c00266{width:26.880000pt;}
.w1_c00266{width:760.000000pt;}
.w0_c00266{width:793.333333pt;}
.x0_c00266{left:0.000000pt;}
.x1_c00266{left:16.666667pt;}
.x3_c00266{left:113.946667pt;}
.x2_c00266{left:121.280000pt;}
.x4_c00266{left:380.546533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_35ac2a0eee40652fcacfacb3.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00267;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.113281;font-style: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:0.014400px;}
.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:-20.030400px;}
.ws1_c00267{word-spacing:0.000000px;}
._5_c00267{width:1.728000px;}
._4_c00267{width:6.228000px;}
._3_c00267{width:14.536800px;}
._1_c00267{width:1061.484000px;}
._2_c00267{width:1146.684000px;}
._0_c00267{width:2079.683700px;}
.fc1_c00267{color:transparent;}
.fc0_c00267{color:rgb(0,0,0);}
.fs1_c00267{font-size:53.280000px;}
.fs0_c00267{font-size:72.000000px;}
.y0_c00267{bottom:0.000000px;}
.y5_c00267{bottom:3.960000px;}
.y1_c00267{bottom:18.750000px;}
.y3_c00267{bottom:36.420030px;}
.y4_c00267{bottom:47.250030px;}
.yc_c00267{bottom:159.180000px;}
.yb_c00267{bottom:392.820000px;}
.ya_c00267{bottom:716.820000px;}
.y9_c00267{bottom:996.540000px;}
.y8_c00267{bottom:1037.940000px;}
.y7_c00267{bottom:1079.340000px;}
.y6_c00267{bottom:1120.740000px;}
.y2_c00267{bottom:1174.020000px;}
.h3_c00267{height:20.520000px;}
.h2_c00267{height:64.546875px;}
.h4_c00267{height:65.003906px;}
.h1_c00267{height:1225.500000px;}
.h0_c00267{height:1263.000000px;}
.w2_c00267{width:30.240000px;}
.w1_c00267{width:855.000000px;}
.w0_c00267{width:892.500000px;}
.x0_c00267{left:0.000000px;}
.x1_c00267{left:18.750000px;}
.x2_c00267{left:109.439925px;}
.x5_c00267{left:151.965150px;}
.x3_c00267{left:157.739850px;}
.x4_c00267{left:735.510000px;}
.x6_c00267{left:751.440000px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls1_c00267{letter-spacing:0.000000pt;}
.ls0_c00267{letter-spacing:0.012800pt;}
.ws0_c00267{word-spacing:-17.804800pt;}
.ws1_c00267{word-spacing:0.000000pt;}
._5_c00267{width:1.536000pt;}
._4_c00267{width:5.536000pt;}
._3_c00267{width:12.921600pt;}
._1_c00267{width:943.541333pt;}
._2_c00267{width:1019.274667pt;}
._0_c00267{width:1848.607733pt;}
.fs1_c00267{font-size:47.360000pt;}
.fs0_c00267{font-size:64.000000pt;}
.y0_c00267{bottom:0.000000pt;}
.y5_c00267{bottom:3.520000pt;}
.y1_c00267{bottom:16.666667pt;}
.y3_c00267{bottom:32.373360pt;}
.y4_c00267{bottom:42.000027pt;}
.yc_c00267{bottom:141.493333pt;}
.yb_c00267{bottom:349.173333pt;}
.ya_c00267{bottom:637.173333pt;}
.y9_c00267{bottom:885.813333pt;}
.y8_c00267{bottom:922.613333pt;}
.y7_c00267{bottom:959.413333pt;}
.y6_c00267{bottom:996.213333pt;}
.y2_c00267{bottom:1043.573333pt;}
.h3_c00267{height:18.240000pt;}
.h2_c00267{height:57.375000pt;}
.h4_c00267{height:57.781250pt;}
.h1_c00267{height:1089.333333pt;}
.h0_c00267{height:1122.666667pt;}
.w2_c00267{width:26.880000pt;}
.w1_c00267{width:760.000000pt;}
.w0_c00267{width:793.333333pt;}
.x0_c00267{left:0.000000pt;}
.x1_c00267{left:16.666667pt;}
.x2_c00267{left:97.279933pt;}
.x5_c00267{left:135.080133pt;}
.x3_c00267{left:140.213200pt;}
.x4_c00267{left:653.786667pt;}
.x6_c00267{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4aef34caa1917ae939dc157.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00268;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00268{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00268{vertical-align:0.000000px;}
.ls2_c00268{letter-spacing:0.000000px;}
.ls0_c00268{letter-spacing:0.014400px;}
.ls1_c00268{letter-spacing:0.191160px;}
.ls4_c00268{letter-spacing:0.410256px;}
.ls3_c00268{letter-spacing:0.479520px;}
.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:-20.030400px;}
.ws1_c00268{word-spacing:-15.291360px;}
.ws2_c00268{word-spacing:0.000000px;}
._1_c00268{margin-left:-1.278720px;}
._0_c00268{width:1146.683400px;}
.fc1_c00268{color:transparent;}
.fc0_c00268{color:rgb(0,0,0);}
.fs1_c00268{font-size:53.280000px;}
.fs0_c00268{font-size:72.000000px;}
.y0_c00268{bottom:0.000000px;}
.y4_c00268{bottom:3.960000px;}
.y1_c00268{bottom:18.750000px;}
.y2_c00268{bottom:37.860030px;}
.y3_c00268{bottom:52.290030px;}
.ya_c00268{bottom:112.740030px;}
.y9_c00268{bottom:154.140000px;}
.y8_c00268{bottom:173.580000px;}
.y7_c00268{bottom:189.060000px;}
.y6_c00268{bottom:465.540000px;}
.y5_c00268{bottom:852.180000px;}
.h3_c00268{height:20.520000px;}
.h5_c00268{height:47.764688px;}
.h2_c00268{height:64.546875px;}
.h4_c00268{height:65.003906px;}
.h1_c00268{height:1225.500000px;}
.h0_c00268{height:1263.000000px;}
.w2_c00268{width:30.240000px;}
.w1_c00268{width:855.000000px;}
.w0_c00268{width:892.500000px;}
.x0_c00268{left:0.000000px;}
.x1_c00268{left:18.750000px;}
.x7_c00268{left:109.439925px;}
.x3_c00268{left:128.190000px;}
.x2_c00268{left:136.440000px;}
.x5_c00268{left:279.542400px;}
.x6_c00268{left:428.114850px;}
.x4_c00268{left:751.440000px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls2_c00268{letter-spacing:0.000000pt;}
.ls0_c00268{letter-spacing:0.012800pt;}
.ls1_c00268{letter-spacing:0.169920pt;}
.ls4_c00268{letter-spacing:0.364672pt;}
.ls3_c00268{letter-spacing:0.426240pt;}
.ws0_c00268{word-spacing:-17.804800pt;}
.ws1_c00268{word-spacing:-13.592320pt;}
.ws2_c00268{word-spacing:0.000000pt;}
._1_c00268{margin-left:-1.136640pt;}
._0_c00268{width:1019.274133pt;}
.fs1_c00268{font-size:47.360000pt;}
.fs0_c00268{font-size:64.000000pt;}
.y0_c00268{bottom:0.000000pt;}
.y4_c00268{bottom:3.520000pt;}
.y1_c00268{bottom:16.666667pt;}
.y2_c00268{bottom:33.653360pt;}
.y3_c00268{bottom:46.480027pt;}
.ya_c00268{bottom:100.213360pt;}
.y9_c00268{bottom:137.013333pt;}
.y8_c00268{bottom:154.293333pt;}
.y7_c00268{bottom:168.053333pt;}
.y6_c00268{bottom:413.813333pt;}
.y5_c00268{bottom:757.493333pt;}
.h3_c00268{height:18.240000pt;}
.h5_c00268{height:42.457500pt;}
.h2_c00268{height:57.375000pt;}
.h4_c00268{height:57.781250pt;}
.h1_c00268{height:1089.333333pt;}
.h0_c00268{height:1122.666667pt;}
.w2_c00268{width:26.880000pt;}
.w1_c00268{width:760.000000pt;}
.w0_c00268{width:793.333333pt;}
.x0_c00268{left:0.000000pt;}
.x1_c00268{left:16.666667pt;}
.x7_c00268{left:97.279933pt;}
.x3_c00268{left:113.946667pt;}
.x2_c00268{left:121.280000pt;}
.x5_c00268{left:248.482133pt;}
.x6_c00268{left:380.546533pt;}
.x4_c00268{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dd76cfca32de6e313c56215e.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00269;src:url('chunks/assets/font_cd2f27b876a951c8e05f6c1b.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:1.113281;font-style: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;}
.ls1_c00269{letter-spacing:0.000000px;}
.ls0_c00269{letter-spacing:0.014400px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00269{word-spacing:-20.030400px;}
.ws1_c00269{word-spacing:-20.016000px;}
.ws2_c00269{word-spacing:0.000000px;}
._11_c00269{margin-left:-1.000800px;}
._a_c00269{width:1.008000px;}
._4_c00269{width:2.361600px;}
._5_c00269{width:3.772800px;}
._e_c00269{width:4.917600px;}
._10_c00269{width:5.925600px;}
._7_c00269{width:8.294400px;}
._f_c00269{width:10.231200px;}
._12_c00269{width:14.356800px;}
._6_c00269{width:16.300800px;}
._3_c00269{width:17.740200px;}
._8_c00269{width:18.871200px;}
._b_c00269{width:21.520800px;}
._9_c00269{width:22.860000px;}
._d_c00269{width:24.933600px;}
._c_c00269{width:28.872000px;}
._1_c00269{width:1061.484000px;}
._2_c00269{width:1146.684000px;}
._0_c00269{width:2079.683700px;}
.fc1_c00269{color:transparent;}
.fc0_c00269{color:rgb(0,0,0);}
.fs1_c00269{font-size:53.280000px;}
.fs0_c00269{font-size:72.000000px;}
.y0_c00269{bottom:0.000000px;}
.y5_c00269{bottom:3.960000px;}
.y1_c00269{bottom:18.750000px;}
.y3_c00269{bottom:36.420030px;}
.y4_c00269{bottom:47.250030px;}
.y1d_c00269{bottom:110.220030px;}
.y1c_c00269{bottom:151.620000px;}
.y1b_c00269{bottom:192.660000px;}
.y1a_c00269{bottom:234.060000px;}
.y19_c00269{bottom:275.460000px;}
.y18_c00269{bottom:316.860000px;}
.y17_c00269{bottom:358.260000px;}
.y16_c00269{bottom:399.660000px;}
.y15_c00269{bottom:441.060000px;}
.y14_c00269{bottom:482.460000px;}
.y13_c00269{bottom:523.860000px;}
.y12_c00269{bottom:565.260000px;}
.y11_c00269{bottom:606.660000px;}
.y10_c00269{bottom:648.060000px;}
.yf_c00269{bottom:709.620000px;}
.ye_c00269{bottom:751.380000px;}
.yd_c00269{bottom:792.780000px;}
.yc_c00269{bottom:834.180000px;}
.yb_c00269{bottom:875.220000px;}
.ya_c00269{bottom:937.140000px;}
.y9_c00269{bottom:996.540000px;}
.y8_c00269{bottom:1037.940000px;}
.y7_c00269{bottom:1079.340000px;}
.y6_c00269{bottom:1120.740000px;}
.y2_c00269{bottom:1174.020000px;}
.h3_c00269{height:20.520000px;}
.h2_c00269{height:64.546875px;}
.h4_c00269{height:65.003906px;}
.h1_c00269{height:1225.500000px;}
.h0_c00269{height:1263.000000px;}
.w2_c00269{width:30.240000px;}
.w1_c00269{width:855.000000px;}
.w0_c00269{width:892.500000px;}
.x0_c00269{left:0.000000px;}
.x1_c00269{left:18.750000px;}
.x2_c00269{left:109.439925px;}
.x5_c00269{left:151.965150px;}
.x3_c00269{left:157.739850px;}
.x4_c00269{left:735.510000px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls1_c00269{letter-spacing:0.000000pt;}
.ls0_c00269{letter-spacing:0.012800pt;}
.ws0_c00269{word-spacing:-17.804800pt;}
.ws1_c00269{word-spacing:-17.792000pt;}
.ws2_c00269{word-spacing:0.000000pt;}
._11_c00269{margin-left:-0.889600pt;}
._a_c00269{width:0.896000pt;}
._4_c00269{width:2.099200pt;}
._5_c00269{width:3.353600pt;}
._e_c00269{width:4.371200pt;}
._10_c00269{width:5.267200pt;}
._7_c00269{width:7.372800pt;}
._f_c00269{width:9.094400pt;}
._12_c00269{width:12.761600pt;}
._6_c00269{width:14.489600pt;}
._3_c00269{width:15.769067pt;}
._8_c00269{width:16.774400pt;}
._b_c00269{width:19.129600pt;}
._9_c00269{width:20.320000pt;}
._d_c00269{width:22.163200pt;}
._c_c00269{width:25.664000pt;}
._1_c00269{width:943.541333pt;}
._2_c00269{width:1019.274667pt;}
._0_c00269{width:1848.607733pt;}
.fs1_c00269{font-size:47.360000pt;}
.fs0_c00269{font-size:64.000000pt;}
.y0_c00269{bottom:0.000000pt;}
.y5_c00269{bottom:3.520000pt;}
.y1_c00269{bottom:16.666667pt;}
.y3_c00269{bottom:32.373360pt;}
.y4_c00269{bottom:42.000027pt;}
.y1d_c00269{bottom:97.973360pt;}
.y1c_c00269{bottom:134.773333pt;}
.y1b_c00269{bottom:171.253333pt;}
.y1a_c00269{bottom:208.053333pt;}
.y19_c00269{bottom:244.853333pt;}
.y18_c00269{bottom:281.653333pt;}
.y17_c00269{bottom:318.453333pt;}
.y16_c00269{bottom:355.253333pt;}
.y15_c00269{bottom:392.053333pt;}
.y14_c00269{bottom:428.853333pt;}
.y13_c00269{bottom:465.653333pt;}
.y12_c00269{bottom:502.453333pt;}
.y11_c00269{bottom:539.253333pt;}
.y10_c00269{bottom:576.053333pt;}
.yf_c00269{bottom:630.773333pt;}
.ye_c00269{bottom:667.893333pt;}
.yd_c00269{bottom:704.693333pt;}
.yc_c00269{bottom:741.493333pt;}
.yb_c00269{bottom:777.973333pt;}
.ya_c00269{bottom:833.013333pt;}
.y9_c00269{bottom:885.813333pt;}
.y8_c00269{bottom:922.613333pt;}
.y7_c00269{bottom:959.413333pt;}
.y6_c00269{bottom:996.213333pt;}
.y2_c00269{bottom:1043.573333pt;}
.h3_c00269{height:18.240000pt;}
.h2_c00269{height:57.375000pt;}
.h4_c00269{height:57.781250pt;}
.h1_c00269{height:1089.333333pt;}
.h0_c00269{height:1122.666667pt;}
.w2_c00269{width:26.880000pt;}
.w1_c00269{width:760.000000pt;}
.w0_c00269{width:793.333333pt;}
.x0_c00269{left:0.000000pt;}
.x1_c00269{left:16.666667pt;}
.x2_c00269{left:97.279933pt;}
.x5_c00269{left:135.080133pt;}
.x3_c00269{left:140.213200pt;}
.x4_c00269{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1974279ac7b6691c5217cb0a.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00270;src:url('chunks/assets/font_42f88454220e472d8a5f3649.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.113281;font-style: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;}
.ls1_c00270{letter-spacing:0.000000px;}
.ls0_c00270{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00270{word-spacing:0.000000px;}
._1_c00270{width:1.029600px;}
._8_c00270{width:2.268000px;}
._5_c00270{width:4.140000px;}
._b_c00270{width:5.371200px;}
._3_c00270{width:6.652800px;}
._a_c00270{width:7.911000px;}
._4_c00270{width:9.770400px;}
._9_c00270{width:10.864800px;}
._7_c00270{width:15.904800px;}
._2_c00270{width:21.225600px;}
._6_c00270{width:25.552260px;}
._d_c00270{width:36.201600px;}
._c_c00270{width:37.288800px;}
._0_c00270{width:1146.683400px;}
.fc1_c00270{color:transparent;}
.fc0_c00270{color:rgb(0,0,0);}
.fs0_c00270{font-size:72.000000px;}
.y0_c00270{bottom:0.000000px;}
.y4_c00270{bottom:3.960000px;}
.y1_c00270{bottom:18.750000px;}
.y2_c00270{bottom:37.860030px;}
.y3_c00270{bottom:52.290030px;}
.y1c_c00270{bottom:128.220030px;}
.y1b_c00270{bottom:169.620000px;}
.y1a_c00270{bottom:210.660000px;}
.y19_c00270{bottom:252.060000px;}
.y18_c00270{bottom:293.460000px;}
.y17_c00270{bottom:334.860000px;}
.y16_c00270{bottom:376.260000px;}
.y15_c00270{bottom:417.660000px;}
.y14_c00270{bottom:459.060000px;}
.y13_c00270{bottom:500.460000px;}
.y12_c00270{bottom:541.860000px;}
.y11_c00270{bottom:583.260000px;}
.y10_c00270{bottom:624.660000px;}
.yf_c00270{bottom:666.060000px;}
.ye_c00270{bottom:707.460000px;}
.yd_c00270{bottom:748.860000px;}
.yc_c00270{bottom:810.420000px;}
.yb_c00270{bottom:852.180000px;}
.ya_c00270{bottom:893.580000px;}
.y9_c00270{bottom:934.980000px;}
.y8_c00270{bottom:976.380000px;}
.y7_c00270{bottom:1017.420000px;}
.y6_c00270{bottom:1079.340000px;}
.y5_c00270{bottom:1120.740000px;}
.h3_c00270{height:20.520000px;}
.h2_c00270{height:64.546875px;}
.h4_c00270{height:65.003906px;}
.h1_c00270{height:1225.500000px;}
.h0_c00270{height:1263.000000px;}
.w2_c00270{width:30.240000px;}
.w1_c00270{width:855.000000px;}
.w0_c00270{width:892.500000px;}
.x0_c00270{left:0.000000px;}
.x1_c00270{left:18.750000px;}
.x4_c00270{left:109.439925px;}
.x3_c00270{left:128.190000px;}
.x2_c00270{left:136.440000px;}
.x5_c00270{left:151.965150px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls1_c00270{letter-spacing:0.000000pt;}
.ls0_c00270{letter-spacing:0.012800pt;}
.ws0_c00270{word-spacing:-17.804800pt;}
.ws1_c00270{word-spacing:0.000000pt;}
._1_c00270{width:0.915200pt;}
._8_c00270{width:2.016000pt;}
._5_c00270{width:3.680000pt;}
._b_c00270{width:4.774400pt;}
._3_c00270{width:5.913600pt;}
._a_c00270{width:7.032000pt;}
._4_c00270{width:8.684800pt;}
._9_c00270{width:9.657600pt;}
._7_c00270{width:14.137600pt;}
._2_c00270{width:18.867200pt;}
._6_c00270{width:22.713120pt;}
._d_c00270{width:32.179200pt;}
._c_c00270{width:33.145600pt;}
._0_c00270{width:1019.274133pt;}
.fs0_c00270{font-size:64.000000pt;}
.y0_c00270{bottom:0.000000pt;}
.y4_c00270{bottom:3.520000pt;}
.y1_c00270{bottom:16.666667pt;}
.y2_c00270{bottom:33.653360pt;}
.y3_c00270{bottom:46.480027pt;}
.y1c_c00270{bottom:113.973360pt;}
.y1b_c00270{bottom:150.773333pt;}
.y1a_c00270{bottom:187.253333pt;}
.y19_c00270{bottom:224.053333pt;}
.y18_c00270{bottom:260.853333pt;}
.y17_c00270{bottom:297.653333pt;}
.y16_c00270{bottom:334.453333pt;}
.y15_c00270{bottom:371.253333pt;}
.y14_c00270{bottom:408.053333pt;}
.y13_c00270{bottom:444.853333pt;}
.y12_c00270{bottom:481.653333pt;}
.y11_c00270{bottom:518.453333pt;}
.y10_c00270{bottom:555.253333pt;}
.yf_c00270{bottom:592.053333pt;}
.ye_c00270{bottom:628.853333pt;}
.yd_c00270{bottom:665.653333pt;}
.yc_c00270{bottom:720.373333pt;}
.yb_c00270{bottom:757.493333pt;}
.ya_c00270{bottom:794.293333pt;}
.y9_c00270{bottom:831.093333pt;}
.y8_c00270{bottom:867.893333pt;}
.y7_c00270{bottom:904.373333pt;}
.y6_c00270{bottom:959.413333pt;}
.y5_c00270{bottom:996.213333pt;}
.h3_c00270{height:18.240000pt;}
.h2_c00270{height:57.375000pt;}
.h4_c00270{height:57.781250pt;}
.h1_c00270{height:1089.333333pt;}
.h0_c00270{height:1122.666667pt;}
.w2_c00270{width:26.880000pt;}
.w1_c00270{width:760.000000pt;}
.w0_c00270{width:793.333333pt;}
.x0_c00270{left:0.000000pt;}
.x1_c00270{left:16.666667pt;}
.x4_c00270{left:97.279933pt;}
.x3_c00270{left:113.946667pt;}
.x2_c00270{left:121.280000pt;}
.x5_c00270{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_094853deb3ad9d58e71047fe.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00271;src:url('chunks/assets/font_89ed4dfdc7f5538478b16252.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.113281;font-style: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;}
.ls2_c00271{letter-spacing:-0.014400px;}
.ls1_c00271{letter-spacing:0.000000px;}
.ls0_c00271{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00271{word-spacing:-20.001600px;}
.ws2_c00271{word-spacing:0.000000px;}
._f_c00271{margin-left:-1.011600px;}
._7_c00271{width:1.022400px;}
._d_c00271{width:2.426400px;}
._10_c00271{width:3.547500px;}
._e_c00271{width:4.630500px;}
._6_c00271{width:5.968800px;}
._5_c00271{width:7.596000px;}
._11_c00271{width:9.093600px;}
._a_c00271{width:10.108800px;}
._9_c00271{width:11.548800px;}
._c_c00271{width:18.518400px;}
._b_c00271{width:24.055200px;}
._4_c00271{width:27.465300px;}
._8_c00271{width:30.556800px;}
._3_c00271{width:32.155200px;}
._1_c00271{width:1061.484000px;}
._2_c00271{width:1146.684000px;}
._0_c00271{width:2079.683700px;}
.fc1_c00271{color:transparent;}
.fc0_c00271{color:rgb(0,0,0);}
.fs1_c00271{font-size:53.280000px;}
.fs0_c00271{font-size:72.000000px;}
.y0_c00271{bottom:0.000000px;}
.y5_c00271{bottom:3.960000px;}
.y1_c00271{bottom:18.750000px;}
.y3_c00271{bottom:36.420030px;}
.y4_c00271{bottom:47.250030px;}
.y1d_c00271{bottom:128.220030px;}
.y1c_c00271{bottom:169.620000px;}
.y1b_c00271{bottom:210.660000px;}
.y1a_c00271{bottom:252.060000px;}
.y19_c00271{bottom:293.460000px;}
.y18_c00271{bottom:334.860000px;}
.y17_c00271{bottom:396.420000px;}
.y16_c00271{bottom:438.180000px;}
.y15_c00271{bottom:479.580000px;}
.y14_c00271{bottom:520.980000px;}
.y13_c00271{bottom:562.380000px;}
.y12_c00271{bottom:603.780000px;}
.y11_c00271{bottom:645.180000px;}
.y10_c00271{bottom:686.220000px;}
.yf_c00271{bottom:748.140000px;}
.ye_c00271{bottom:789.540000px;}
.yd_c00271{bottom:830.940000px;}
.yc_c00271{bottom:872.340000px;}
.yb_c00271{bottom:913.740000px;}
.ya_c00271{bottom:955.140000px;}
.y9_c00271{bottom:996.540000px;}
.y8_c00271{bottom:1037.940000px;}
.y7_c00271{bottom:1079.340000px;}
.y6_c00271{bottom:1120.740000px;}
.y2_c00271{bottom:1174.020000px;}
.h3_c00271{height:20.520000px;}
.h2_c00271{height:64.546875px;}
.h4_c00271{height:65.003906px;}
.h1_c00271{height:1225.500000px;}
.h0_c00271{height:1263.000000px;}
.w2_c00271{width:30.240000px;}
.w1_c00271{width:855.000000px;}
.w0_c00271{width:892.500000px;}
.x0_c00271{left:0.000000px;}
.x1_c00271{left:18.750000px;}
.x2_c00271{left:109.439925px;}
.x5_c00271{left:151.965150px;}
.x3_c00271{left:157.739850px;}
.x4_c00271{left:735.510000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls2_c00271{letter-spacing:-0.012800pt;}
.ls1_c00271{letter-spacing:0.000000pt;}
.ls0_c00271{letter-spacing:0.012800pt;}
.ws0_c00271{word-spacing:-17.804800pt;}
.ws1_c00271{word-spacing:-17.779200pt;}
.ws2_c00271{word-spacing:0.000000pt;}
._f_c00271{margin-left:-0.899200pt;}
._7_c00271{width:0.908800pt;}
._d_c00271{width:2.156800pt;}
._10_c00271{width:3.153333pt;}
._e_c00271{width:4.116000pt;}
._6_c00271{width:5.305600pt;}
._5_c00271{width:6.752000pt;}
._11_c00271{width:8.083200pt;}
._a_c00271{width:8.985600pt;}
._9_c00271{width:10.265600pt;}
._c_c00271{width:16.460800pt;}
._b_c00271{width:21.382400pt;}
._4_c00271{width:24.413600pt;}
._8_c00271{width:27.161600pt;}
._3_c00271{width:28.582400pt;}
._1_c00271{width:943.541333pt;}
._2_c00271{width:1019.274667pt;}
._0_c00271{width:1848.607733pt;}
.fs1_c00271{font-size:47.360000pt;}
.fs0_c00271{font-size:64.000000pt;}
.y0_c00271{bottom:0.000000pt;}
.y5_c00271{bottom:3.520000pt;}
.y1_c00271{bottom:16.666667pt;}
.y3_c00271{bottom:32.373360pt;}
.y4_c00271{bottom:42.000027pt;}
.y1d_c00271{bottom:113.973360pt;}
.y1c_c00271{bottom:150.773333pt;}
.y1b_c00271{bottom:187.253333pt;}
.y1a_c00271{bottom:224.053333pt;}
.y19_c00271{bottom:260.853333pt;}
.y18_c00271{bottom:297.653333pt;}
.y17_c00271{bottom:352.373333pt;}
.y16_c00271{bottom:389.493333pt;}
.y15_c00271{bottom:426.293333pt;}
.y14_c00271{bottom:463.093333pt;}
.y13_c00271{bottom:499.893333pt;}
.y12_c00271{bottom:536.693333pt;}
.y11_c00271{bottom:573.493333pt;}
.y10_c00271{bottom:609.973333pt;}
.yf_c00271{bottom:665.013333pt;}
.ye_c00271{bottom:701.813333pt;}
.yd_c00271{bottom:738.613333pt;}
.yc_c00271{bottom:775.413333pt;}
.yb_c00271{bottom:812.213333pt;}
.ya_c00271{bottom:849.013333pt;}
.y9_c00271{bottom:885.813333pt;}
.y8_c00271{bottom:922.613333pt;}
.y7_c00271{bottom:959.413333pt;}
.y6_c00271{bottom:996.213333pt;}
.y2_c00271{bottom:1043.573333pt;}
.h3_c00271{height:18.240000pt;}
.h2_c00271{height:57.375000pt;}
.h4_c00271{height:57.781250pt;}
.h1_c00271{height:1089.333333pt;}
.h0_c00271{height:1122.666667pt;}
.w2_c00271{width:26.880000pt;}
.w1_c00271{width:760.000000pt;}
.w0_c00271{width:793.333333pt;}
.x0_c00271{left:0.000000pt;}
.x1_c00271{left:16.666667pt;}
.x2_c00271{left:97.279933pt;}
.x5_c00271{left:135.080133pt;}
.x3_c00271{left:140.213200pt;}
.x4_c00271{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_75b062eab973f2182c99b902.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00272;src:url('chunks/assets/font_9ae16584ee8a7853975648ad.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.111328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.ls1_c00272{letter-spacing:0.000000px;}
.ls0_c00272{letter-spacing:0.014400px;}
.ls2_c00272{letter-spacing:0.479520px;}
.sc__c00272{text-shadow:none;}
.sc0_c00272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00272{-webkit-text-stroke:0px transparent;}
.sc0_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00272{word-spacing:-20.030400px;}
.ws1_c00272{word-spacing:0.000000px;}
._1_c00272{margin-left:-1.012320px;}
._4_c00272{width:1.260000px;}
._3_c00272{width:2.512800px;}
._6_c00272{width:3.780000px;}
._8_c00272{width:6.088500px;}
._9_c00272{width:21.422100px;}
._5_c00272{width:24.321600px;}
._2_c00272{width:25.588800px;}
._a_c00272{width:34.437600px;}
._7_c00272{width:41.392800px;}
._0_c00272{width:1146.683400px;}
.fc1_c00272{color:transparent;}
.fc0_c00272{color:rgb(0,0,0);}
.fs1_c00272{font-size:53.280000px;}
.fs0_c00272{font-size:72.000000px;}
.y0_c00272{bottom:0.000000px;}
.y4_c00272{bottom:3.960000px;}
.y1_c00272{bottom:18.750000px;}
.y2_c00272{bottom:37.860030px;}
.y3_c00272{bottom:52.290030px;}
.y12_c00272{bottom:172.140000px;}
.y11_c00272{bottom:213.540000px;}
.y10_c00272{bottom:254.940000px;}
.yf_c00272{bottom:296.340000px;}
.ye_c00272{bottom:337.740000px;}
.yd_c00272{bottom:379.140000px;}
.yc_c00272{bottom:420.540000px;}
.yb_c00272{bottom:461.940000px;}
.ya_c00272{bottom:503.340000px;}
.y9_c00272{bottom:544.740000px;}
.y8_c00272{bottom:586.140000px;}
.y7_c00272{bottom:627.540000px;}
.y6_c00272{bottom:680.460000px;}
.y5_c00272{bottom:693.420000px;}
.h3_c00272{height:20.520000px;}
.h4_c00272{height:47.764688px;}
.h2_c00272{height:64.546875px;}
.h5_c00272{height:65.707031px;}
.h1_c00272{height:1225.500000px;}
.h0_c00272{height:1263.000000px;}
.w2_c00272{width:30.240000px;}
.w1_c00272{width:855.000000px;}
.w0_c00272{width:892.500000px;}
.x0_c00272{left:0.000000px;}
.x1_c00272{left:18.750000px;}
.x7_c00272{left:109.439925px;}
.x3_c00272{left:128.190000px;}
.x2_c00272{left:136.440000px;}
.x6_c00272{left:151.965150px;}
.x5_c00272{left:310.299600px;}
.x4_c00272{left:751.440000px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls1_c00272{letter-spacing:0.000000pt;}
.ls0_c00272{letter-spacing:0.012800pt;}
.ls2_c00272{letter-spacing:0.426240pt;}
.ws0_c00272{word-spacing:-17.804800pt;}
.ws1_c00272{word-spacing:0.000000pt;}
._1_c00272{margin-left:-0.899840pt;}
._4_c00272{width:1.120000pt;}
._3_c00272{width:2.233600pt;}
._6_c00272{width:3.360000pt;}
._8_c00272{width:5.412000pt;}
._9_c00272{width:19.041867pt;}
._5_c00272{width:21.619200pt;}
._2_c00272{width:22.745600pt;}
._a_c00272{width:30.611200pt;}
._7_c00272{width:36.793600pt;}
._0_c00272{width:1019.274133pt;}
.fs1_c00272{font-size:47.360000pt;}
.fs0_c00272{font-size:64.000000pt;}
.y0_c00272{bottom:0.000000pt;}
.y4_c00272{bottom:3.520000pt;}
.y1_c00272{bottom:16.666667pt;}
.y2_c00272{bottom:33.653360pt;}
.y3_c00272{bottom:46.480027pt;}
.y12_c00272{bottom:153.013333pt;}
.y11_c00272{bottom:189.813333pt;}
.y10_c00272{bottom:226.613333pt;}
.yf_c00272{bottom:263.413333pt;}
.ye_c00272{bottom:300.213333pt;}
.yd_c00272{bottom:337.013333pt;}
.yc_c00272{bottom:373.813333pt;}
.yb_c00272{bottom:410.613333pt;}
.ya_c00272{bottom:447.413333pt;}
.y9_c00272{bottom:484.213333pt;}
.y8_c00272{bottom:521.013333pt;}
.y7_c00272{bottom:557.813333pt;}
.y6_c00272{bottom:604.853333pt;}
.y5_c00272{bottom:616.373333pt;}
.h3_c00272{height:18.240000pt;}
.h4_c00272{height:42.457500pt;}
.h2_c00272{height:57.375000pt;}
.h5_c00272{height:58.406250pt;}
.h1_c00272{height:1089.333333pt;}
.h0_c00272{height:1122.666667pt;}
.w2_c00272{width:26.880000pt;}
.w1_c00272{width:760.000000pt;}
.w0_c00272{width:793.333333pt;}
.x0_c00272{left:0.000000pt;}
.x1_c00272{left:16.666667pt;}
.x7_c00272{left:97.279933pt;}
.x3_c00272{left:113.946667pt;}
.x2_c00272{left:121.280000pt;}
.x6_c00272{left:135.080133pt;}
.x5_c00272{left:275.821867pt;}
.x4_c00272{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d3db68fec88170efea056206.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00273{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.ls3_c00273{letter-spacing:0.000000px;}
.ls0_c00273{letter-spacing:0.014400px;}
.ls4_c00273{letter-spacing:0.036000px;}
.ls2_c00273{letter-spacing:0.191160px;}
.ls7_c00273{letter-spacing:0.388944px;}
.ls1_c00273{letter-spacing:0.408720px;}
.ls6_c00273{letter-spacing:0.410256px;}
.ls5_c00273{letter-spacing:0.479520px;}
.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;}
}
.ws0_c00273{word-spacing:-20.030400px;}
.ws1_c00273{word-spacing:0.000000px;}
._4_c00273{margin-left:-1.012320px;}
._3_c00273{width:5.896800px;}
._1_c00273{width:1061.484000px;}
._2_c00273{width:1146.684000px;}
._0_c00273{width:2079.683700px;}
.fc1_c00273{color:transparent;}
.fc0_c00273{color:rgb(0,0,0);}
.fs1_c00273{font-size:53.280000px;}
.fs0_c00273{font-size:72.000000px;}
.y0_c00273{bottom:0.000000px;}
.y5_c00273{bottom:3.960000px;}
.y1_c00273{bottom:18.750000px;}
.y3_c00273{bottom:36.420030px;}
.y4_c00273{bottom:47.250030px;}
.y9_c00273{bottom:102.660030px;}
.y8_c00273{bottom:115.620030px;}
.y7_c00273{bottom:1079.340000px;}
.y6_c00273{bottom:1120.740000px;}
.y2_c00273{bottom:1174.020000px;}
.h3_c00273{height:20.520000px;}
.h4_c00273{height:47.764688px;}
.h2_c00273{height:64.546875px;}
.h1_c00273{height:1225.500000px;}
.h0_c00273{height:1263.000000px;}
.w2_c00273{width:30.240000px;}
.w1_c00273{width:855.000000px;}
.w0_c00273{width:892.500000px;}
.x0_c00273{left:0.000000px;}
.x1_c00273{left:18.750000px;}
.x2_c00273{left:109.439925px;}
.x3_c00273{left:157.739850px;}
.x6_c00273{left:228.132900px;}
.x4_c00273{left:735.510000px;}
.x5_c00273{left:754.440000px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls3_c00273{letter-spacing:0.000000pt;}
.ls0_c00273{letter-spacing:0.012800pt;}
.ls4_c00273{letter-spacing:0.032000pt;}
.ls2_c00273{letter-spacing:0.169920pt;}
.ls7_c00273{letter-spacing:0.345728pt;}
.ls1_c00273{letter-spacing:0.363307pt;}
.ls6_c00273{letter-spacing:0.364672pt;}
.ls5_c00273{letter-spacing:0.426240pt;}
.ws0_c00273{word-spacing:-17.804800pt;}
.ws1_c00273{word-spacing:0.000000pt;}
._4_c00273{margin-left:-0.899840pt;}
._3_c00273{width:5.241600pt;}
._1_c00273{width:943.541333pt;}
._2_c00273{width:1019.274667pt;}
._0_c00273{width:1848.607733pt;}
.fs1_c00273{font-size:47.360000pt;}
.fs0_c00273{font-size:64.000000pt;}
.y0_c00273{bottom:0.000000pt;}
.y5_c00273{bottom:3.520000pt;}
.y1_c00273{bottom:16.666667pt;}
.y3_c00273{bottom:32.373360pt;}
.y4_c00273{bottom:42.000027pt;}
.y9_c00273{bottom:91.253360pt;}
.y8_c00273{bottom:102.773360pt;}
.y7_c00273{bottom:959.413333pt;}
.y6_c00273{bottom:996.213333pt;}
.y2_c00273{bottom:1043.573333pt;}
.h3_c00273{height:18.240000pt;}
.h4_c00273{height:42.457500pt;}
.h2_c00273{height:57.375000pt;}
.h1_c00273{height:1089.333333pt;}
.h0_c00273{height:1122.666667pt;}
.w2_c00273{width:26.880000pt;}
.w1_c00273{width:760.000000pt;}
.w0_c00273{width:793.333333pt;}
.x0_c00273{left:0.000000pt;}
.x1_c00273{left:16.666667pt;}
.x2_c00273{left:97.279933pt;}
.x3_c00273{left:140.213200pt;}
.x6_c00273{left:202.784800pt;}
.x4_c00273{left:653.786667pt;}
.x5_c00273{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9c0179a949e089c71c7464a7.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00274{letter-spacing:0.000000px;}
.ls0_c00274{letter-spacing:0.014400px;}
.ls2_c00274{letter-spacing:0.479520px;}
.sc__c00274{text-shadow:none;}
.sc0_c00274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00274{-webkit-text-stroke:0px transparent;}
.sc0_c00274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00274{word-spacing:-20.030400px;}
.ws1_c00274{word-spacing:0.000000px;}
._1_c00274{margin-left:-1.118880px;}
._0_c00274{width:1146.683400px;}
.fc1_c00274{color:transparent;}
.fc0_c00274{color:rgb(0,0,0);}
.fs1_c00274{font-size:53.280000px;}
.fs0_c00274{font-size:72.000000px;}
.y0_c00274{bottom:0.000000px;}
.y4_c00274{bottom:3.960000px;}
.y1_c00274{bottom:18.750000px;}
.y2_c00274{bottom:37.860030px;}
.y3_c00274{bottom:52.290030px;}
.y8_c00274{bottom:117.420015px;}
.y7_c00274{bottom:130.020030px;}
.y6_c00274{bottom:1093.740000px;}
.y5_c00274{bottom:1124.700000px;}
.h3_c00274{height:20.520000px;}
.h4_c00274{height:47.764688px;}
.h2_c00274{height:64.546875px;}
.h1_c00274{height:1225.500000px;}
.h0_c00274{height:1263.000000px;}
.w2_c00274{width:30.240000px;}
.w1_c00274{width:855.000000px;}
.w0_c00274{width:892.500000px;}
.x0_c00274{left:0.000000px;}
.x1_c00274{left:18.750000px;}
.x3_c00274{left:128.190000px;}
.x2_c00274{left:136.440000px;}
.x6_c00274{left:309.048000px;}
.x4_c00274{left:428.114850px;}
.x5_c00274{left:754.440000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls1_c00274{letter-spacing:0.000000pt;}
.ls0_c00274{letter-spacing:0.012800pt;}
.ls2_c00274{letter-spacing:0.426240pt;}
.ws0_c00274{word-spacing:-17.804800pt;}
.ws1_c00274{word-spacing:0.000000pt;}
._1_c00274{margin-left:-0.994560pt;}
._0_c00274{width:1019.274133pt;}
.fs1_c00274{font-size:47.360000pt;}
.fs0_c00274{font-size:64.000000pt;}
.y0_c00274{bottom:0.000000pt;}
.y4_c00274{bottom:3.520000pt;}
.y1_c00274{bottom:16.666667pt;}
.y2_c00274{bottom:33.653360pt;}
.y3_c00274{bottom:46.480027pt;}
.y8_c00274{bottom:104.373347pt;}
.y7_c00274{bottom:115.573360pt;}
.y6_c00274{bottom:972.213333pt;}
.y5_c00274{bottom:999.733333pt;}
.h3_c00274{height:18.240000pt;}
.h4_c00274{height:42.457500pt;}
.h2_c00274{height:57.375000pt;}
.h1_c00274{height:1089.333333pt;}
.h0_c00274{height:1122.666667pt;}
.w2_c00274{width:26.880000pt;}
.w1_c00274{width:760.000000pt;}
.w0_c00274{width:793.333333pt;}
.x0_c00274{left:0.000000pt;}
.x1_c00274{left:16.666667pt;}
.x3_c00274{left:113.946667pt;}
.x2_c00274{left:121.280000pt;}
.x6_c00274{left:274.709333pt;}
.x4_c00274{left:380.546533pt;}
.x5_c00274{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e5ad3bdccfdc4dceb8daaa3b.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00275;src:url('chunks/assets/font_3a73d5a8b7e5352d8c4120c8.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.ls1_c00275{letter-spacing:0.000000px;}
.ls0_c00275{letter-spacing:0.014400px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00275{word-spacing:-20.030400px;}
.ws1_c00275{word-spacing:0.000000px;}
._d_c00275{margin-left:-1.008000px;}
._3_c00275{width:1.576800px;}
._5_c00275{width:3.581700px;}
._b_c00275{width:4.745400px;}
._6_c00275{width:5.760000px;}
._4_c00275{width:8.661600px;}
._7_c00275{width:10.267200px;}
._8_c00275{width:11.548200px;}
._a_c00275{width:12.989400px;}
._9_c00275{width:14.414400px;}
._e_c00275{width:15.804000px;}
._c_c00275{width:18.604800px;}
._f_c00275{width:42.501600px;}
._1_c00275{width:1061.484000px;}
._2_c00275{width:1146.684000px;}
._0_c00275{width:2079.683700px;}
.fc1_c00275{color:transparent;}
.fc0_c00275{color:rgb(0,0,0);}
.fs1_c00275{font-size:53.280000px;}
.fs0_c00275{font-size:72.000000px;}
.y0_c00275{bottom:0.000000px;}
.y5_c00275{bottom:3.960000px;}
.y1_c00275{bottom:18.750000px;}
.y3_c00275{bottom:36.420030px;}
.y4_c00275{bottom:47.250030px;}
.y1e_c00275{bottom:104.820030px;}
.y1d_c00275{bottom:146.220000px;}
.y1c_c00275{bottom:187.620000px;}
.y1b_c00275{bottom:228.660000px;}
.y1a_c00275{bottom:270.060000px;}
.y19_c00275{bottom:311.460000px;}
.y18_c00275{bottom:352.860000px;}
.y17_c00275{bottom:394.260000px;}
.y16_c00275{bottom:435.660000px;}
.y15_c00275{bottom:477.060000px;}
.y14_c00275{bottom:518.460000px;}
.y13_c00275{bottom:559.860000px;}
.y12_c00275{bottom:601.260000px;}
.y11_c00275{bottom:642.660000px;}
.y10_c00275{bottom:684.060000px;}
.yf_c00275{bottom:725.460000px;}
.ye_c00275{bottom:766.860000px;}
.yd_c00275{bottom:808.260000px;}
.yc_c00275{bottom:869.820000px;}
.yb_c00275{bottom:911.580000px;}
.ya_c00275{bottom:952.980000px;}
.y9_c00275{bottom:994.380000px;}
.y8_c00275{bottom:1035.780000px;}
.y7_c00275{bottom:1077.180000px;}
.y6_c00275{bottom:1118.220000px;}
.y2_c00275{bottom:1174.020000px;}
.h3_c00275{height:20.520000px;}
.h2_c00275{height:64.546875px;}
.h4_c00275{height:65.003906px;}
.h1_c00275{height:1225.500000px;}
.h0_c00275{height:1263.000000px;}
.w2_c00275{width:30.240000px;}
.w1_c00275{width:855.000000px;}
.w0_c00275{width:892.500000px;}
.x0_c00275{left:0.000000px;}
.x1_c00275{left:18.750000px;}
.x2_c00275{left:109.439925px;}
.x5_c00275{left:151.965150px;}
.x3_c00275{left:157.739850px;}
.x4_c00275{left:735.510000px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls1_c00275{letter-spacing:0.000000pt;}
.ls0_c00275{letter-spacing:0.012800pt;}
.ws0_c00275{word-spacing:-17.804800pt;}
.ws1_c00275{word-spacing:0.000000pt;}
._d_c00275{margin-left:-0.896000pt;}
._3_c00275{width:1.401600pt;}
._5_c00275{width:3.183733pt;}
._b_c00275{width:4.218133pt;}
._6_c00275{width:5.120000pt;}
._4_c00275{width:7.699200pt;}
._7_c00275{width:9.126400pt;}
._8_c00275{width:10.265067pt;}
._a_c00275{width:11.546133pt;}
._9_c00275{width:12.812800pt;}
._e_c00275{width:14.048000pt;}
._c_c00275{width:16.537600pt;}
._f_c00275{width:37.779200pt;}
._1_c00275{width:943.541333pt;}
._2_c00275{width:1019.274667pt;}
._0_c00275{width:1848.607733pt;}
.fs1_c00275{font-size:47.360000pt;}
.fs0_c00275{font-size:64.000000pt;}
.y0_c00275{bottom:0.000000pt;}
.y5_c00275{bottom:3.520000pt;}
.y1_c00275{bottom:16.666667pt;}
.y3_c00275{bottom:32.373360pt;}
.y4_c00275{bottom:42.000027pt;}
.y1e_c00275{bottom:93.173360pt;}
.y1d_c00275{bottom:129.973333pt;}
.y1c_c00275{bottom:166.773333pt;}
.y1b_c00275{bottom:203.253333pt;}
.y1a_c00275{bottom:240.053333pt;}
.y19_c00275{bottom:276.853333pt;}
.y18_c00275{bottom:313.653333pt;}
.y17_c00275{bottom:350.453333pt;}
.y16_c00275{bottom:387.253333pt;}
.y15_c00275{bottom:424.053333pt;}
.y14_c00275{bottom:460.853333pt;}
.y13_c00275{bottom:497.653333pt;}
.y12_c00275{bottom:534.453333pt;}
.y11_c00275{bottom:571.253333pt;}
.y10_c00275{bottom:608.053333pt;}
.yf_c00275{bottom:644.853333pt;}
.ye_c00275{bottom:681.653333pt;}
.yd_c00275{bottom:718.453333pt;}
.yc_c00275{bottom:773.173333pt;}
.yb_c00275{bottom:810.293333pt;}
.ya_c00275{bottom:847.093333pt;}
.y9_c00275{bottom:883.893333pt;}
.y8_c00275{bottom:920.693333pt;}
.y7_c00275{bottom:957.493333pt;}
.y6_c00275{bottom:993.973333pt;}
.y2_c00275{bottom:1043.573333pt;}
.h3_c00275{height:18.240000pt;}
.h2_c00275{height:57.375000pt;}
.h4_c00275{height:57.781250pt;}
.h1_c00275{height:1089.333333pt;}
.h0_c00275{height:1122.666667pt;}
.w2_c00275{width:26.880000pt;}
.w1_c00275{width:760.000000pt;}
.w0_c00275{width:793.333333pt;}
.x0_c00275{left:0.000000pt;}
.x1_c00275{left:16.666667pt;}
.x2_c00275{left:97.279933pt;}
.x5_c00275{left:135.080133pt;}
.x3_c00275{left:140.213200pt;}
.x4_c00275{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_75c051bbda87796a98b7bea8.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00276;src:url('chunks/assets/font_79387e08cb135223c75a3a46.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00276;src:url('chunks/assets/font_c786644aeb5ae8419acaa816.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:1.111328;font-style: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;}
.ls4_c00276{letter-spacing:-0.014400px;}
.ls3_c00276{letter-spacing:0.000000px;}
.ls2_c00276{letter-spacing:0.003600px;}
.ls1_c00276{letter-spacing:0.004200px;}
.ls0_c00276{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00276{word-spacing:-20.001600px;}
.ws2_c00276{word-spacing:0.000000px;}
._f_c00276{width:1.764000px;}
._1_c00276{width:4.180500px;}
._2_c00276{width:5.369400px;}
._5_c00276{width:6.616800px;}
._b_c00276{width:8.100000px;}
._d_c00276{width:9.777600px;}
._9_c00276{width:11.580300px;}
._4_c00276{width:12.598800px;}
._3_c00276{width:13.719600px;}
._6_c00276{width:15.181200px;}
._8_c00276{width:16.430400px;}
._c_c00276{width:24.120000px;}
._e_c00276{width:29.037600px;}
._7_c00276{width:31.356000px;}
._a_c00276{width:50.565600px;}
._0_c00276{width:1146.683400px;}
.fc1_c00276{color:transparent;}
.fc0_c00276{color:rgb(0,0,0);}
.fs0_c00276{font-size:72.000000px;}
.y0_c00276{bottom:0.000000px;}
.y4_c00276{bottom:3.960000px;}
.y1_c00276{bottom:18.750000px;}
.y2_c00276{bottom:37.860030px;}
.y3_c00276{bottom:52.290030px;}
.y1b_c00276{bottom:169.620000px;}
.y1a_c00276{bottom:210.660000px;}
.y19_c00276{bottom:252.060000px;}
.y18_c00276{bottom:293.460000px;}
.y17_c00276{bottom:334.860000px;}
.y16_c00276{bottom:376.260000px;}
.y15_c00276{bottom:417.660000px;}
.y14_c00276{bottom:459.060000px;}
.y13_c00276{bottom:500.460000px;}
.y12_c00276{bottom:541.860000px;}
.y11_c00276{bottom:603.420000px;}
.y10_c00276{bottom:645.180000px;}
.yf_c00276{bottom:686.580000px;}
.ye_c00276{bottom:727.980000px;}
.yd_c00276{bottom:769.380000px;}
.yc_c00276{bottom:810.420000px;}
.yb_c00276{bottom:872.340000px;}
.ya_c00276{bottom:913.740000px;}
.y9_c00276{bottom:955.140000px;}
.y8_c00276{bottom:996.540000px;}
.y7_c00276{bottom:1037.940000px;}
.y6_c00276{bottom:1079.340000px;}
.y5_c00276{bottom:1120.740000px;}
.h3_c00276{height:20.520000px;}
.h2_c00276{height:64.546875px;}
.h4_c00276{height:65.003906px;}
.h5_c00276{height:65.707031px;}
.h1_c00276{height:1225.500000px;}
.h0_c00276{height:1263.000000px;}
.w2_c00276{width:30.240000px;}
.w1_c00276{width:855.000000px;}
.w0_c00276{width:892.500000px;}
.x0_c00276{left:0.000000px;}
.x1_c00276{left:18.750000px;}
.x4_c00276{left:109.439925px;}
.x3_c00276{left:128.190000px;}
.x2_c00276{left:136.440000px;}
.x5_c00276{left:151.965150px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls4_c00276{letter-spacing:-0.012800pt;}
.ls3_c00276{letter-spacing:0.000000pt;}
.ls2_c00276{letter-spacing:0.003200pt;}
.ls1_c00276{letter-spacing:0.003733pt;}
.ls0_c00276{letter-spacing:0.012800pt;}
.ws0_c00276{word-spacing:-17.804800pt;}
.ws1_c00276{word-spacing:-17.779200pt;}
.ws2_c00276{word-spacing:0.000000pt;}
._f_c00276{width:1.568000pt;}
._1_c00276{width:3.716000pt;}
._2_c00276{width:4.772800pt;}
._5_c00276{width:5.881600pt;}
._b_c00276{width:7.200000pt;}
._d_c00276{width:8.691200pt;}
._9_c00276{width:10.293600pt;}
._4_c00276{width:11.198933pt;}
._3_c00276{width:12.195200pt;}
._6_c00276{width:13.494400pt;}
._8_c00276{width:14.604800pt;}
._c_c00276{width:21.440000pt;}
._e_c00276{width:25.811200pt;}
._7_c00276{width:27.872000pt;}
._a_c00276{width:44.947200pt;}
._0_c00276{width:1019.274133pt;}
.fs0_c00276{font-size:64.000000pt;}
.y0_c00276{bottom:0.000000pt;}
.y4_c00276{bottom:3.520000pt;}
.y1_c00276{bottom:16.666667pt;}
.y2_c00276{bottom:33.653360pt;}
.y3_c00276{bottom:46.480027pt;}
.y1b_c00276{bottom:150.773333pt;}
.y1a_c00276{bottom:187.253333pt;}
.y19_c00276{bottom:224.053333pt;}
.y18_c00276{bottom:260.853333pt;}
.y17_c00276{bottom:297.653333pt;}
.y16_c00276{bottom:334.453333pt;}
.y15_c00276{bottom:371.253333pt;}
.y14_c00276{bottom:408.053333pt;}
.y13_c00276{bottom:444.853333pt;}
.y12_c00276{bottom:481.653333pt;}
.y11_c00276{bottom:536.373333pt;}
.y10_c00276{bottom:573.493333pt;}
.yf_c00276{bottom:610.293333pt;}
.ye_c00276{bottom:647.093333pt;}
.yd_c00276{bottom:683.893333pt;}
.yc_c00276{bottom:720.373333pt;}
.yb_c00276{bottom:775.413333pt;}
.ya_c00276{bottom:812.213333pt;}
.y9_c00276{bottom:849.013333pt;}
.y8_c00276{bottom:885.813333pt;}
.y7_c00276{bottom:922.613333pt;}
.y6_c00276{bottom:959.413333pt;}
.y5_c00276{bottom:996.213333pt;}
.h3_c00276{height:18.240000pt;}
.h2_c00276{height:57.375000pt;}
.h4_c00276{height:57.781250pt;}
.h5_c00276{height:58.406250pt;}
.h1_c00276{height:1089.333333pt;}
.h0_c00276{height:1122.666667pt;}
.w2_c00276{width:26.880000pt;}
.w1_c00276{width:760.000000pt;}
.w0_c00276{width:793.333333pt;}
.x0_c00276{left:0.000000pt;}
.x1_c00276{left:16.666667pt;}
.x4_c00276{left:97.279933pt;}
.x3_c00276{left:113.946667pt;}
.x2_c00276{left:121.280000pt;}
.x5_c00276{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af711b0219973010f5e10d50.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00277;src:url('chunks/assets/font_145f14954672f008b0ce984b.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00277;src:url('chunks/assets/font_6a552c1a226202cbc8bae7ea.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;line-height:1.111328;font-style: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;}
.lsc_c00277{letter-spacing:-0.014400px;}
.lsb_c00277{letter-spacing:0.000000px;}
.ls1_c00277{letter-spacing:0.011400px;}
.ls0_c00277{letter-spacing:0.014400px;}
.lsd_c00277{letter-spacing:0.036000px;}
.lse_c00277{letter-spacing:0.191808px;}
.ls6_c00277{letter-spacing:0.239760px;}
.ls4_c00277{letter-spacing:0.240360px;}
.lsf_c00277{letter-spacing:0.362304px;}
.lsa_c00277{letter-spacing:0.399600px;}
.ls5_c00277{letter-spacing:0.410256px;}
.ls7_c00277{letter-spacing:0.415584px;}
.ls3_c00277{letter-spacing:0.431568px;}
.ls8_c00277{letter-spacing:0.493800px;}
.ls9_c00277{letter-spacing:11.879160px;}
.ls2_c00277{letter-spacing:16.959360px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00277{word-spacing:-20.030400px;}
.ws1_c00277{word-spacing:-20.001600px;}
.ws3_c00277{word-spacing:-15.222096px;}
.ws2_c00277{word-spacing:-15.051600px;}
.ws4_c00277{word-spacing:0.000000px;}
._f_c00277{margin-left:-1.135044px;}
._4_c00277{width:1.670400px;}
._9_c00277{width:3.276000px;}
._5_c00277{width:5.061600px;}
._e_c00277{width:8.740800px;}
._b_c00277{width:9.936000px;}
._a_c00277{width:11.059200px;}
._10_c00277{width:12.070872px;}
._c_c00277{width:15.746400px;}
._6_c00277{width:23.068800px;}
._d_c00277{width:25.236000px;}
._8_c00277{width:28.505700px;}
._7_c00277{width:32.637600px;}
._3_c00277{width:33.760800px;}
._1_c00277{width:1061.484000px;}
._2_c00277{width:1146.684000px;}
._0_c00277{width:2079.683700px;}
.fc1_c00277{color:transparent;}
.fc0_c00277{color:rgb(0,0,0);}
.fs1_c00277{font-size:53.280000px;}
.fs0_c00277{font-size:72.000000px;}
.y0_c00277{bottom:0.000000px;}
.y5_c00277{bottom:3.960000px;}
.y1_c00277{bottom:18.750000px;}
.y3_c00277{bottom:36.420030px;}
.y4_c00277{bottom:47.250030px;}
.y20_c00277{bottom:105.180030px;}
.y1f_c00277{bottom:124.620030px;}
.y1e_c00277{bottom:140.100000px;}
.y1d_c00277{bottom:155.580000px;}
.y1c_c00277{bottom:171.420000px;}
.y1b_c00277{bottom:210.660000px;}
.y1a_c00277{bottom:252.060000px;}
.y19_c00277{bottom:293.460000px;}
.y18_c00277{bottom:334.860000px;}
.y17_c00277{bottom:376.260000px;}
.y16_c00277{bottom:417.660000px;}
.y15_c00277{bottom:459.060000px;}
.y14_c00277{bottom:500.460000px;}
.y13_c00277{bottom:541.860000px;}
.y12_c00277{bottom:583.260000px;}
.y11_c00277{bottom:624.660000px;}
.y10_c00277{bottom:666.060000px;}
.yf_c00277{bottom:727.620000px;}
.ye_c00277{bottom:769.380000px;}
.yd_c00277{bottom:810.780000px;}
.yc_c00277{bottom:852.180000px;}
.yb_c00277{bottom:893.220000px;}
.ya_c00277{bottom:955.140000px;}
.y9_c00277{bottom:996.540000px;}
.y8_c00277{bottom:1037.940000px;}
.y7_c00277{bottom:1079.340000px;}
.y6_c00277{bottom:1120.740000px;}
.y2_c00277{bottom:1174.020000px;}
.h3_c00277{height:20.520000px;}
.h5_c00277{height:47.764688px;}
.h6_c00277{height:48.623203px;}
.h2_c00277{height:64.546875px;}
.h4_c00277{height:65.003906px;}
.h1_c00277{height:1225.500000px;}
.h0_c00277{height:1263.000000px;}
.w2_c00277{width:30.240000px;}
.w1_c00277{width:855.000000px;}
.w0_c00277{width:892.500000px;}
.x0_c00277{left:0.000000px;}
.x1_c00277{left:18.750000px;}
.x2_c00277{left:109.439925px;}
.x6_c00277{left:141.390000px;}
.x5_c00277{left:151.965150px;}
.x3_c00277{left:157.739850px;}
.x4_c00277{left:735.510000px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.lsc_c00277{letter-spacing:-0.012800pt;}
.lsb_c00277{letter-spacing:0.000000pt;}
.ls1_c00277{letter-spacing:0.010133pt;}
.ls0_c00277{letter-spacing:0.012800pt;}
.lsd_c00277{letter-spacing:0.032000pt;}
.lse_c00277{letter-spacing:0.170496pt;}
.ls6_c00277{letter-spacing:0.213120pt;}
.ls4_c00277{letter-spacing:0.213653pt;}
.lsf_c00277{letter-spacing:0.322048pt;}
.lsa_c00277{letter-spacing:0.355200pt;}
.ls5_c00277{letter-spacing:0.364672pt;}
.ls7_c00277{letter-spacing:0.369408pt;}
.ls3_c00277{letter-spacing:0.383616pt;}
.ls8_c00277{letter-spacing:0.438933pt;}
.ls9_c00277{letter-spacing:10.559253pt;}
.ls2_c00277{letter-spacing:15.074987pt;}
.ws0_c00277{word-spacing:-17.804800pt;}
.ws1_c00277{word-spacing:-17.779200pt;}
.ws3_c00277{word-spacing:-13.530752pt;}
.ws2_c00277{word-spacing:-13.379200pt;}
.ws4_c00277{word-spacing:0.000000pt;}
._f_c00277{margin-left:-1.008928pt;}
._4_c00277{width:1.484800pt;}
._9_c00277{width:2.912000pt;}
._5_c00277{width:4.499200pt;}
._e_c00277{width:7.769600pt;}
._b_c00277{width:8.832000pt;}
._a_c00277{width:9.830400pt;}
._10_c00277{width:10.729664pt;}
._c_c00277{width:13.996800pt;}
._6_c00277{width:20.505600pt;}
._d_c00277{width:22.432000pt;}
._8_c00277{width:25.338400pt;}
._7_c00277{width:29.011200pt;}
._3_c00277{width:30.009600pt;}
._1_c00277{width:943.541333pt;}
._2_c00277{width:1019.274667pt;}
._0_c00277{width:1848.607733pt;}
.fs1_c00277{font-size:47.360000pt;}
.fs0_c00277{font-size:64.000000pt;}
.y0_c00277{bottom:0.000000pt;}
.y5_c00277{bottom:3.520000pt;}
.y1_c00277{bottom:16.666667pt;}
.y3_c00277{bottom:32.373360pt;}
.y4_c00277{bottom:42.000027pt;}
.y20_c00277{bottom:93.493360pt;}
.y1f_c00277{bottom:110.773360pt;}
.y1e_c00277{bottom:124.533333pt;}
.y1d_c00277{bottom:138.293333pt;}
.y1c_c00277{bottom:152.373333pt;}
.y1b_c00277{bottom:187.253333pt;}
.y1a_c00277{bottom:224.053333pt;}
.y19_c00277{bottom:260.853333pt;}
.y18_c00277{bottom:297.653333pt;}
.y17_c00277{bottom:334.453333pt;}
.y16_c00277{bottom:371.253333pt;}
.y15_c00277{bottom:408.053333pt;}
.y14_c00277{bottom:444.853333pt;}
.y13_c00277{bottom:481.653333pt;}
.y12_c00277{bottom:518.453333pt;}
.y11_c00277{bottom:555.253333pt;}
.y10_c00277{bottom:592.053333pt;}
.yf_c00277{bottom:646.773333pt;}
.ye_c00277{bottom:683.893333pt;}
.yd_c00277{bottom:720.693333pt;}
.yc_c00277{bottom:757.493333pt;}
.yb_c00277{bottom:793.973333pt;}
.ya_c00277{bottom:849.013333pt;}
.y9_c00277{bottom:885.813333pt;}
.y8_c00277{bottom:922.613333pt;}
.y7_c00277{bottom:959.413333pt;}
.y6_c00277{bottom:996.213333pt;}
.y2_c00277{bottom:1043.573333pt;}
.h3_c00277{height:18.240000pt;}
.h5_c00277{height:42.457500pt;}
.h6_c00277{height:43.220625pt;}
.h2_c00277{height:57.375000pt;}
.h4_c00277{height:57.781250pt;}
.h1_c00277{height:1089.333333pt;}
.h0_c00277{height:1122.666667pt;}
.w2_c00277{width:26.880000pt;}
.w1_c00277{width:760.000000pt;}
.w0_c00277{width:793.333333pt;}
.x0_c00277{left:0.000000pt;}
.x1_c00277{left:16.666667pt;}
.x2_c00277{left:97.279933pt;}
.x6_c00277{left:125.680000pt;}
.x5_c00277{left:135.080133pt;}
.x3_c00277{left:140.213200pt;}
.x4_c00277{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_6398938038139ac7caeb7634.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00278;src:url('chunks/assets/font_a5380b6befd4c82992867855.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.104492;font-style: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;}
.ls5_c00278{letter-spacing:-0.014400px;}
.ls4_c00278{letter-spacing:0.000000px;}
.ls0_c00278{letter-spacing:0.014400px;}
.ls1_c00278{letter-spacing:0.036000px;}
.ls3_c00278{letter-spacing:0.239760px;}
.ls9_c00278{letter-spacing:0.362304px;}
.ls7_c00278{letter-spacing:0.410256px;}
.ls8_c00278{letter-spacing:0.479520px;}
.ls6_c00278{letter-spacing:0.628704px;}
.ls2_c00278{letter-spacing:16.959360px;}
.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:-20.052000px;}
.ws0_c00278{word-spacing:-20.030400px;}
.ws2_c00278{word-spacing:-15.051600px;}
.ws3_c00278{word-spacing:0.000000px;}
._5_c00278{margin-left:-1.008000px;}
._c_c00278{width:1.138500px;}
._8_c00278{width:2.973600px;}
._b_c00278{width:4.178640px;}
._a_c00278{width:5.239980px;}
._4_c00278{width:7.596000px;}
._1_c00278{width:9.691200px;}
._6_c00278{width:18.093600px;}
._7_c00278{width:31.780800px;}
._3_c00278{width:35.822100px;}
._9_c00278{width:41.184000px;}
._2_c00278{width:66.751200px;}
._0_c00278{width:1146.683400px;}
.fc1_c00278{color:transparent;}
.fc0_c00278{color:rgb(0,0,0);}
.fs1_c00278{font-size:53.280000px;}
.fs0_c00278{font-size:72.000000px;}
.y0_c00278{bottom:0.000000px;}
.y4_c00278{bottom:3.960000px;}
.y1_c00278{bottom:18.750000px;}
.y2_c00278{bottom:37.860030px;}
.y3_c00278{bottom:52.290030px;}
.y14_c00278{bottom:117.780030px;}
.y13_c00278{bottom:137.580000px;}
.y12_c00278{bottom:153.060000px;}
.y11_c00278{bottom:204.180000px;}
.y10_c00278{bottom:217.140000px;}
.yf_c00278{bottom:706.740000px;}
.ye_c00278{bottom:748.140000px;}
.yd_c00278{bottom:789.540000px;}
.yc_c00278{bottom:830.940000px;}
.yb_c00278{bottom:872.340000px;}
.ya_c00278{bottom:913.740000px;}
.y9_c00278{bottom:955.140000px;}
.y8_c00278{bottom:996.540000px;}
.y7_c00278{bottom:1037.940000px;}
.y6_c00278{bottom:1079.340000px;}
.y5_c00278{bottom:1120.740000px;}
.h3_c00278{height:20.520000px;}
.h4_c00278{height:47.764688px;}
.h2_c00278{height:64.546875px;}
.h1_c00278{height:1225.500000px;}
.h0_c00278{height:1263.000000px;}
.w2_c00278{width:30.240000px;}
.w1_c00278{width:855.000000px;}
.w0_c00278{width:892.500000px;}
.x0_c00278{left:0.000000px;}
.x1_c00278{left:18.750000px;}
.x4_c00278{left:109.439925px;}
.x3_c00278{left:128.190000px;}
.x2_c00278{left:136.440000px;}
.x8_c00278{left:141.390000px;}
.x5_c00278{left:151.965150px;}
.x7_c00278{left:248.761950px;}
.x6_c00278{left:751.440000px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls5_c00278{letter-spacing:-0.012800pt;}
.ls4_c00278{letter-spacing:0.000000pt;}
.ls0_c00278{letter-spacing:0.012800pt;}
.ls1_c00278{letter-spacing:0.032000pt;}
.ls3_c00278{letter-spacing:0.213120pt;}
.ls9_c00278{letter-spacing:0.322048pt;}
.ls7_c00278{letter-spacing:0.364672pt;}
.ls8_c00278{letter-spacing:0.426240pt;}
.ls6_c00278{letter-spacing:0.558848pt;}
.ls2_c00278{letter-spacing:15.074987pt;}
.ws1_c00278{word-spacing:-17.824000pt;}
.ws0_c00278{word-spacing:-17.804800pt;}
.ws2_c00278{word-spacing:-13.379200pt;}
.ws3_c00278{word-spacing:0.000000pt;}
._5_c00278{margin-left:-0.896000pt;}
._c_c00278{width:1.012000pt;}
._8_c00278{width:2.643200pt;}
._b_c00278{width:3.714347pt;}
._a_c00278{width:4.657760pt;}
._4_c00278{width:6.752000pt;}
._1_c00278{width:8.614400pt;}
._6_c00278{width:16.083200pt;}
._7_c00278{width:28.249600pt;}
._3_c00278{width:31.841867pt;}
._9_c00278{width:36.608000pt;}
._2_c00278{width:59.334400pt;}
._0_c00278{width:1019.274133pt;}
.fs1_c00278{font-size:47.360000pt;}
.fs0_c00278{font-size:64.000000pt;}
.y0_c00278{bottom:0.000000pt;}
.y4_c00278{bottom:3.520000pt;}
.y1_c00278{bottom:16.666667pt;}
.y2_c00278{bottom:33.653360pt;}
.y3_c00278{bottom:46.480027pt;}
.y14_c00278{bottom:104.693360pt;}
.y13_c00278{bottom:122.293333pt;}
.y12_c00278{bottom:136.053333pt;}
.y11_c00278{bottom:181.493333pt;}
.y10_c00278{bottom:193.013333pt;}
.yf_c00278{bottom:628.213333pt;}
.ye_c00278{bottom:665.013333pt;}
.yd_c00278{bottom:701.813333pt;}
.yc_c00278{bottom:738.613333pt;}
.yb_c00278{bottom:775.413333pt;}
.ya_c00278{bottom:812.213333pt;}
.y9_c00278{bottom:849.013333pt;}
.y8_c00278{bottom:885.813333pt;}
.y7_c00278{bottom:922.613333pt;}
.y6_c00278{bottom:959.413333pt;}
.y5_c00278{bottom:996.213333pt;}
.h3_c00278{height:18.240000pt;}
.h4_c00278{height:42.457500pt;}
.h2_c00278{height:57.375000pt;}
.h1_c00278{height:1089.333333pt;}
.h0_c00278{height:1122.666667pt;}
.w2_c00278{width:26.880000pt;}
.w1_c00278{width:760.000000pt;}
.w0_c00278{width:793.333333pt;}
.x0_c00278{left:0.000000pt;}
.x1_c00278{left:16.666667pt;}
.x4_c00278{left:97.279933pt;}
.x3_c00278{left:113.946667pt;}
.x2_c00278{left:121.280000pt;}
.x8_c00278{left:125.680000pt;}
.x5_c00278{left:135.080133pt;}
.x7_c00278{left:221.121733pt;}
.x6_c00278{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_72b3d058766f1afeffb770a8.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00279;src:url('chunks/assets/font_6a552c1a226202cbc8bae7ea.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.111328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00279;src:url('chunks/assets/font_2534853e60038dd245a76364.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00279;src:url('chunks/assets/font_34678438a170f8136a1e152b.woff2')format("woff");}.ff4_c00279{font-family:ff4_c00279;line-height:1.113281;font-style: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;}
.ls4_c00279{letter-spacing:-0.014400px;}
.ls1_c00279{letter-spacing:0.000000px;}
.ls0_c00279{letter-spacing:0.014400px;}
.ls3_c00279{letter-spacing:0.362304px;}
.ls2_c00279{letter-spacing:0.628704px;}
.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:-20.030400px;}
.ws4_c00279{word-spacing:-20.016000px;}
.ws3_c00279{word-spacing:-20.001600px;}
.ws2_c00279{word-spacing:-15.174144px;}
.ws1_c00279{word-spacing:-0.072000px;}
.ws5_c00279{word-spacing:0.000000px;}
._6_c00279{margin-left:-1.065600px;}
._8_c00279{width:2.580300px;}
._3_c00279{width:4.824000px;}
._5_c00279{width:16.365600px;}
._7_c00279{width:25.884000px;}
._4_c00279{width:31.176000px;}
._a_c00279{width:38.923200px;}
._9_c00279{width:47.008800px;}
._1_c00279{width:1061.484000px;}
._2_c00279{width:1146.684000px;}
._0_c00279{width:2079.683700px;}
.fc1_c00279{color:transparent;}
.fc0_c00279{color:rgb(0,0,0);}
.fs1_c00279{font-size:53.280000px;}
.fs0_c00279{font-size:72.000000px;}
.y0_c00279{bottom:0.000000px;}
.y5_c00279{bottom:3.960000px;}
.y1_c00279{bottom:18.750000px;}
.y3_c00279{bottom:36.420030px;}
.y4_c00279{bottom:47.250030px;}
.y12_c00279{bottom:112.020030px;}
.y11_c00279{bottom:153.780000px;}
.y10_c00279{bottom:195.180000px;}
.yf_c00279{bottom:236.580000px;}
.ye_c00279{bottom:277.980000px;}
.yd_c00279{bottom:319.020000px;}
.yc_c00279{bottom:362.940000px;}
.yb_c00279{bottom:406.860000px;}
.ya_c00279{bottom:419.820000px;}
.y9_c00279{bottom:996.540000px;}
.y8_c00279{bottom:1037.940000px;}
.y7_c00279{bottom:1079.340000px;}
.y6_c00279{bottom:1120.740000px;}
.y2_c00279{bottom:1174.020000px;}
.h3_c00279{height:20.520000px;}
.h5_c00279{height:47.764688px;}
.h2_c00279{height:64.546875px;}
.h6_c00279{height:65.003906px;}
.h4_c00279{height:65.707031px;}
.h1_c00279{height:1225.500000px;}
.h0_c00279{height:1263.000000px;}
.w2_c00279{width:30.240000px;}
.w1_c00279{width:855.000000px;}
.w0_c00279{width:892.500000px;}
.x0_c00279{left:0.000000px;}
.x1_c00279{left:18.750000px;}
.x2_c00279{left:109.439925px;}
.x7_c00279{left:113.290635px;}
.x5_c00279{left:151.965150px;}
.x3_c00279{left:157.739850px;}
.x4_c00279{left:735.510000px;}
.x6_c00279{left:751.440000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls4_c00279{letter-spacing:-0.012800pt;}
.ls1_c00279{letter-spacing:0.000000pt;}
.ls0_c00279{letter-spacing:0.012800pt;}
.ls3_c00279{letter-spacing:0.322048pt;}
.ls2_c00279{letter-spacing:0.558848pt;}
.ws0_c00279{word-spacing:-17.804800pt;}
.ws4_c00279{word-spacing:-17.792000pt;}
.ws3_c00279{word-spacing:-17.779200pt;}
.ws2_c00279{word-spacing:-13.488128pt;}
.ws1_c00279{word-spacing:-0.064000pt;}
.ws5_c00279{word-spacing:0.000000pt;}
._6_c00279{margin-left:-0.947200pt;}
._8_c00279{width:2.293600pt;}
._3_c00279{width:4.288000pt;}
._5_c00279{width:14.547200pt;}
._7_c00279{width:23.008000pt;}
._4_c00279{width:27.712000pt;}
._a_c00279{width:34.598400pt;}
._9_c00279{width:41.785600pt;}
._1_c00279{width:943.541333pt;}
._2_c00279{width:1019.274667pt;}
._0_c00279{width:1848.607733pt;}
.fs1_c00279{font-size:47.360000pt;}
.fs0_c00279{font-size:64.000000pt;}
.y0_c00279{bottom:0.000000pt;}
.y5_c00279{bottom:3.520000pt;}
.y1_c00279{bottom:16.666667pt;}
.y3_c00279{bottom:32.373360pt;}
.y4_c00279{bottom:42.000027pt;}
.y12_c00279{bottom:99.573360pt;}
.y11_c00279{bottom:136.693333pt;}
.y10_c00279{bottom:173.493333pt;}
.yf_c00279{bottom:210.293333pt;}
.ye_c00279{bottom:247.093333pt;}
.yd_c00279{bottom:283.573333pt;}
.yc_c00279{bottom:322.613333pt;}
.yb_c00279{bottom:361.653333pt;}
.ya_c00279{bottom:373.173333pt;}
.y9_c00279{bottom:885.813333pt;}
.y8_c00279{bottom:922.613333pt;}
.y7_c00279{bottom:959.413333pt;}
.y6_c00279{bottom:996.213333pt;}
.y2_c00279{bottom:1043.573333pt;}
.h3_c00279{height:18.240000pt;}
.h5_c00279{height:42.457500pt;}
.h2_c00279{height:57.375000pt;}
.h6_c00279{height:57.781250pt;}
.h4_c00279{height:58.406250pt;}
.h1_c00279{height:1089.333333pt;}
.h0_c00279{height:1122.666667pt;}
.w2_c00279{width:26.880000pt;}
.w1_c00279{width:760.000000pt;}
.w0_c00279{width:793.333333pt;}
.x0_c00279{left:0.000000pt;}
.x1_c00279{left:16.666667pt;}
.x2_c00279{left:97.279933pt;}
.x7_c00279{left:100.702787pt;}
.x5_c00279{left:135.080133pt;}
.x3_c00279{left:140.213200pt;}
.x4_c00279{left:653.786667pt;}
.x6_c00279{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_97626020ae4addbd6d8ed779.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00280;src:url('chunks/assets/font_c8c6b86da19692582c449806.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.104492;font-style: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;}
.ls2_c00280{letter-spacing:0.000000px;}
.ls1_c00280{letter-spacing:0.000600px;}
.ls0_c00280{letter-spacing:0.014400px;}
.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;}
}
.ws0_c00280{word-spacing:-20.030400px;}
.ws1_c00280{word-spacing:-20.016000px;}
.ws2_c00280{word-spacing:0.000000px;}
._b_c00280{margin-left:-1.011300px;}
._6_c00280{width:2.433600px;}
._10_c00280{width:3.458100px;}
._8_c00280{width:5.018400px;}
._1_c00280{width:6.300000px;}
._2_c00280{width:8.062500px;}
._3_c00280{width:9.217500px;}
._12_c00280{width:11.129700px;}
._a_c00280{width:12.477600px;}
._c_c00280{width:14.522400px;}
._4_c00280{width:17.604900px;}
._e_c00280{width:18.838980px;}
._9_c00280{width:21.808800px;}
._d_c00280{width:23.136300px;}
._f_c00280{width:24.657900px;}
._7_c00280{width:26.553600px;}
._5_c00280{width:31.615200px;}
._11_c00280{width:32.853600px;}
._0_c00280{width:1146.683400px;}
.fc1_c00280{color:transparent;}
.fc0_c00280{color:rgb(0,0,0);}
.fs0_c00280{font-size:72.000000px;}
.y0_c00280{bottom:0.000000px;}
.y4_c00280{bottom:3.960000px;}
.y1_c00280{bottom:18.750000px;}
.y2_c00280{bottom:37.860030px;}
.y3_c00280{bottom:52.290030px;}
.y1d_c00280{bottom:127.140030px;}
.y1c_c00280{bottom:168.540000px;}
.y1b_c00280{bottom:209.940000px;}
.y1a_c00280{bottom:251.340000px;}
.y19_c00280{bottom:292.740000px;}
.y18_c00280{bottom:334.140000px;}
.y17_c00280{bottom:375.540000px;}
.y16_c00280{bottom:416.940000px;}
.y15_c00280{bottom:458.340000px;}
.y14_c00280{bottom:499.740000px;}
.y13_c00280{bottom:541.140000px;}
.y12_c00280{bottom:582.540000px;}
.y11_c00280{bottom:623.940000px;}
.y10_c00280{bottom:665.340000px;}
.yf_c00280{bottom:706.740000px;}
.ye_c00280{bottom:748.140000px;}
.yd_c00280{bottom:789.540000px;}
.yc_c00280{bottom:830.940000px;}
.yb_c00280{bottom:872.340000px;}
.ya_c00280{bottom:913.740000px;}
.y9_c00280{bottom:955.140000px;}
.y8_c00280{bottom:996.540000px;}
.y7_c00280{bottom:1037.940000px;}
.y6_c00280{bottom:1079.340000px;}
.y5_c00280{bottom:1120.740000px;}
.h3_c00280{height:20.520000px;}
.h4_c00280{height:64.371094px;}
.h2_c00280{height:64.546875px;}
.h1_c00280{height:1225.500000px;}
.h0_c00280{height:1263.000000px;}
.w2_c00280{width:30.240000px;}
.w1_c00280{width:855.000000px;}
.w0_c00280{width:892.500000px;}
.x0_c00280{left:0.000000px;}
.x1_c00280{left:18.750000px;}
.x5_c00280{left:109.439925px;}
.x3_c00280{left:128.190000px;}
.x2_c00280{left:136.440000px;}
.x4_c00280{left:151.965150px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls2_c00280{letter-spacing:0.000000pt;}
.ls1_c00280{letter-spacing:0.000533pt;}
.ls0_c00280{letter-spacing:0.012800pt;}
.ws0_c00280{word-spacing:-17.804800pt;}
.ws1_c00280{word-spacing:-17.792000pt;}
.ws2_c00280{word-spacing:0.000000pt;}
._b_c00280{margin-left:-0.898933pt;}
._6_c00280{width:2.163200pt;}
._10_c00280{width:3.073867pt;}
._8_c00280{width:4.460800pt;}
._1_c00280{width:5.600000pt;}
._2_c00280{width:7.166667pt;}
._3_c00280{width:8.193333pt;}
._12_c00280{width:9.893067pt;}
._a_c00280{width:11.091200pt;}
._c_c00280{width:12.908800pt;}
._4_c00280{width:15.648800pt;}
._e_c00280{width:16.745760pt;}
._9_c00280{width:19.385600pt;}
._d_c00280{width:20.565600pt;}
._f_c00280{width:21.918133pt;}
._7_c00280{width:23.603200pt;}
._5_c00280{width:28.102400pt;}
._11_c00280{width:29.203200pt;}
._0_c00280{width:1019.274133pt;}
.fs0_c00280{font-size:64.000000pt;}
.y0_c00280{bottom:0.000000pt;}
.y4_c00280{bottom:3.520000pt;}
.y1_c00280{bottom:16.666667pt;}
.y2_c00280{bottom:33.653360pt;}
.y3_c00280{bottom:46.480027pt;}
.y1d_c00280{bottom:113.013360pt;}
.y1c_c00280{bottom:149.813333pt;}
.y1b_c00280{bottom:186.613333pt;}
.y1a_c00280{bottom:223.413333pt;}
.y19_c00280{bottom:260.213333pt;}
.y18_c00280{bottom:297.013333pt;}
.y17_c00280{bottom:333.813333pt;}
.y16_c00280{bottom:370.613333pt;}
.y15_c00280{bottom:407.413333pt;}
.y14_c00280{bottom:444.213333pt;}
.y13_c00280{bottom:481.013333pt;}
.y12_c00280{bottom:517.813333pt;}
.y11_c00280{bottom:554.613333pt;}
.y10_c00280{bottom:591.413333pt;}
.yf_c00280{bottom:628.213333pt;}
.ye_c00280{bottom:665.013333pt;}
.yd_c00280{bottom:701.813333pt;}
.yc_c00280{bottom:738.613333pt;}
.yb_c00280{bottom:775.413333pt;}
.ya_c00280{bottom:812.213333pt;}
.y9_c00280{bottom:849.013333pt;}
.y8_c00280{bottom:885.813333pt;}
.y7_c00280{bottom:922.613333pt;}
.y6_c00280{bottom:959.413333pt;}
.y5_c00280{bottom:996.213333pt;}
.h3_c00280{height:18.240000pt;}
.h4_c00280{height:57.218750pt;}
.h2_c00280{height:57.375000pt;}
.h1_c00280{height:1089.333333pt;}
.h0_c00280{height:1122.666667pt;}
.w2_c00280{width:26.880000pt;}
.w1_c00280{width:760.000000pt;}
.w0_c00280{width:793.333333pt;}
.x0_c00280{left:0.000000pt;}
.x1_c00280{left:16.666667pt;}
.x5_c00280{left:97.279933pt;}
.x3_c00280{left:113.946667pt;}
.x2_c00280{left:121.280000pt;}
.x4_c00280{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_452a4317a5f49dffdd0f8662.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00281;src:url('chunks/assets/font_a9dfdb0a41280223207a8303.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00281;src:url('chunks/assets/font_71785faf2aabb32d8c2d05ec.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.104492;font-style: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;}
.ls3_c00281{letter-spacing:-0.014400px;}
.ls2_c00281{letter-spacing:0.000000px;}
.ls0_c00281{letter-spacing:0.014400px;}
.ls4_c00281{letter-spacing:0.036000px;}
.ls1_c00281{letter-spacing:22.983000px;}
.sc__c00281{text-shadow:none;}
.sc0_c00281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00281{-webkit-text-stroke:0px transparent;}
.sc0_c00281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00281{word-spacing:-20.052000px;}
.ws0_c00281{word-spacing:-20.030400px;}
.ws2_c00281{word-spacing:0.000000px;}
._10_c00281{margin-left:-1.022400px;}
._a_c00281{width:1.872000px;}
._3_c00281{width:3.045600px;}
._11_c00281{width:4.348800px;}
._8_c00281{width:8.323200px;}
._e_c00281{width:18.679500px;}
._6_c00281{width:22.953600px;}
._f_c00281{width:24.962400px;}
._d_c00281{width:27.717600px;}
._4_c00281{width:32.238300px;}
._5_c00281{width:33.297600px;}
._7_c00281{width:34.612800px;}
._c_c00281{width:38.239200px;}
._9_c00281{width:43.092000px;}
._b_c00281{width:48.859200px;}
._1_c00281{width:1061.484000px;}
._2_c00281{width:1146.684000px;}
._0_c00281{width:2079.683700px;}
.fc1_c00281{color:transparent;}
.fc0_c00281{color:rgb(0,0,0);}
.fs1_c00281{font-size:53.280000px;}
.fs0_c00281{font-size:72.000000px;}
.y0_c00281{bottom:0.000000px;}
.y5_c00281{bottom:3.960000px;}
.y1_c00281{bottom:18.750000px;}
.y3_c00281{bottom:36.420030px;}
.y4_c00281{bottom:47.250030px;}
.y1b_c00281{bottom:233.340000px;}
.y1a_c00281{bottom:274.740000px;}
.y19_c00281{bottom:316.140000px;}
.y18_c00281{bottom:357.540000px;}
.y17_c00281{bottom:398.940000px;}
.y16_c00281{bottom:440.340000px;}
.y15_c00281{bottom:481.740000px;}
.y14_c00281{bottom:523.140000px;}
.y13_c00281{bottom:564.540000px;}
.y12_c00281{bottom:605.940000px;}
.y11_c00281{bottom:647.340000px;}
.y10_c00281{bottom:688.740000px;}
.yf_c00281{bottom:730.140000px;}
.ye_c00281{bottom:771.540000px;}
.yd_c00281{bottom:830.940000px;}
.yc_c00281{bottom:872.340000px;}
.yb_c00281{bottom:913.740000px;}
.ya_c00281{bottom:955.140000px;}
.y9_c00281{bottom:996.540000px;}
.y8_c00281{bottom:1037.940000px;}
.y7_c00281{bottom:1079.340000px;}
.y6_c00281{bottom:1120.740000px;}
.y2_c00281{bottom:1174.020000px;}
.h3_c00281{height:20.520000px;}
.h2_c00281{height:64.546875px;}
.h4_c00281{height:65.003906px;}
.h1_c00281{height:1225.500000px;}
.h0_c00281{height:1263.000000px;}
.w2_c00281{width:30.240000px;}
.w1_c00281{width:855.000000px;}
.w0_c00281{width:892.500000px;}
.x0_c00281{left:0.000000px;}
.x1_c00281{left:18.750000px;}
.x2_c00281{left:109.439925px;}
.x5_c00281{left:151.965150px;}
.x3_c00281{left:157.739850px;}
.x4_c00281{left:735.510000px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls3_c00281{letter-spacing:-0.012800pt;}
.ls2_c00281{letter-spacing:0.000000pt;}
.ls0_c00281{letter-spacing:0.012800pt;}
.ls4_c00281{letter-spacing:0.032000pt;}
.ls1_c00281{letter-spacing:20.429333pt;}
.ws1_c00281{word-spacing:-17.824000pt;}
.ws0_c00281{word-spacing:-17.804800pt;}
.ws2_c00281{word-spacing:0.000000pt;}
._10_c00281{margin-left:-0.908800pt;}
._a_c00281{width:1.664000pt;}
._3_c00281{width:2.707200pt;}
._11_c00281{width:3.865600pt;}
._8_c00281{width:7.398400pt;}
._e_c00281{width:16.604000pt;}
._6_c00281{width:20.403200pt;}
._f_c00281{width:22.188800pt;}
._d_c00281{width:24.637867pt;}
._4_c00281{width:28.656267pt;}
._5_c00281{width:29.597867pt;}
._7_c00281{width:30.766933pt;}
._c_c00281{width:33.990400pt;}
._9_c00281{width:38.304000pt;}
._b_c00281{width:43.430400pt;}
._1_c00281{width:943.541333pt;}
._2_c00281{width:1019.274667pt;}
._0_c00281{width:1848.607733pt;}
.fs1_c00281{font-size:47.360000pt;}
.fs0_c00281{font-size:64.000000pt;}
.y0_c00281{bottom:0.000000pt;}
.y5_c00281{bottom:3.520000pt;}
.y1_c00281{bottom:16.666667pt;}
.y3_c00281{bottom:32.373360pt;}
.y4_c00281{bottom:42.000027pt;}
.y1b_c00281{bottom:207.413333pt;}
.y1a_c00281{bottom:244.213333pt;}
.y19_c00281{bottom:281.013333pt;}
.y18_c00281{bottom:317.813333pt;}
.y17_c00281{bottom:354.613333pt;}
.y16_c00281{bottom:391.413333pt;}
.y15_c00281{bottom:428.213333pt;}
.y14_c00281{bottom:465.013333pt;}
.y13_c00281{bottom:501.813333pt;}
.y12_c00281{bottom:538.613333pt;}
.y11_c00281{bottom:575.413333pt;}
.y10_c00281{bottom:612.213333pt;}
.yf_c00281{bottom:649.013333pt;}
.ye_c00281{bottom:685.813333pt;}
.yd_c00281{bottom:738.613333pt;}
.yc_c00281{bottom:775.413333pt;}
.yb_c00281{bottom:812.213333pt;}
.ya_c00281{bottom:849.013333pt;}
.y9_c00281{bottom:885.813333pt;}
.y8_c00281{bottom:922.613333pt;}
.y7_c00281{bottom:959.413333pt;}
.y6_c00281{bottom:996.213333pt;}
.y2_c00281{bottom:1043.573333pt;}
.h3_c00281{height:18.240000pt;}
.h2_c00281{height:57.375000pt;}
.h4_c00281{height:57.781250pt;}
.h1_c00281{height:1089.333333pt;}
.h0_c00281{height:1122.666667pt;}
.w2_c00281{width:26.880000pt;}
.w1_c00281{width:760.000000pt;}
.w0_c00281{width:793.333333pt;}
.x0_c00281{left:0.000000pt;}
.x1_c00281{left:16.666667pt;}
.x2_c00281{left:97.279933pt;}
.x5_c00281{left:135.080133pt;}
.x3_c00281{left:140.213200pt;}
.x4_c00281{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_eb3e9d3c17a23a0ce412de52.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00282;src:url('chunks/assets/font_68ca1496a4cb24ab49e11407.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00282;src:url('chunks/assets/font_8c393b6803718c12a6cd88d6.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls6_c00282{letter-spacing:-0.014400px;}
.ls2_c00282{letter-spacing:0.000000px;}
.ls1_c00282{letter-spacing:0.007200px;}
.ls0_c00282{letter-spacing:0.014400px;}
.ls4_c00282{letter-spacing:0.410256px;}
.ls3_c00282{letter-spacing:0.479520px;}
.ls5_c00282{letter-spacing:0.628704px;}
.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;}
}
.ws0_c00282{word-spacing:-20.030400px;}
.ws2_c00282{word-spacing:-20.016000px;}
.ws1_c00282{word-spacing:-15.440544px;}
.ws3_c00282{word-spacing:0.000000px;}
._3_c00282{margin-left:-1.065600px;}
._7_c00282{width:1.000500px;}
._4_c00282{width:9.676800px;}
._6_c00282{width:11.541600px;}
._5_c00282{width:18.309600px;}
._1_c00282{width:21.738240px;}
._2_c00282{width:23.281200px;}
._0_c00282{width:1146.683400px;}
.fc1_c00282{color:transparent;}
.fc0_c00282{color:rgb(0,0,0);}
.fs1_c00282{font-size:53.280000px;}
.fs0_c00282{font-size:72.000000px;}
.y0_c00282{bottom:0.000000px;}
.y4_c00282{bottom:3.960000px;}
.y1_c00282{bottom:18.750000px;}
.y2_c00282{bottom:37.860030px;}
.y3_c00282{bottom:52.290030px;}
.ye_c00282{bottom:97.980015px;}
.yd_c00282{bottom:139.380000px;}
.yc_c00282{bottom:180.780000px;}
.yb_c00282{bottom:222.180000px;}
.ya_c00282{bottom:263.580000px;}
.y9_c00282{bottom:283.020000px;}
.y8_c00282{bottom:298.500000px;}
.y7_c00282{bottom:313.980000px;}
.y6_c00282{bottom:329.460000px;}
.y5_c00282{bottom:342.420000px;}
.h3_c00282{height:20.520000px;}
.h4_c00282{height:47.764688px;}
.h2_c00282{height:64.546875px;}
.h1_c00282{height:1225.500000px;}
.h0_c00282{height:1263.000000px;}
.w2_c00282{width:30.240000px;}
.w1_c00282{width:855.000000px;}
.w0_c00282{width:892.500000px;}
.x0_c00282{left:0.000000px;}
.x1_c00282{left:18.750000px;}
.x8_c00282{left:109.439925px;}
.x3_c00282{left:128.190000px;}
.x2_c00282{left:136.440000px;}
.x7_c00282{left:151.965150px;}
.x5_c00282{left:215.789700px;}
.x6_c00282{left:428.114850px;}
.x4_c00282{left:751.440000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls6_c00282{letter-spacing:-0.012800pt;}
.ls2_c00282{letter-spacing:0.000000pt;}
.ls1_c00282{letter-spacing:0.006400pt;}
.ls0_c00282{letter-spacing:0.012800pt;}
.ls4_c00282{letter-spacing:0.364672pt;}
.ls3_c00282{letter-spacing:0.426240pt;}
.ls5_c00282{letter-spacing:0.558848pt;}
.ws0_c00282{word-spacing:-17.804800pt;}
.ws2_c00282{word-spacing:-17.792000pt;}
.ws1_c00282{word-spacing:-13.724928pt;}
.ws3_c00282{word-spacing:0.000000pt;}
._3_c00282{margin-left:-0.947200pt;}
._7_c00282{width:0.889333pt;}
._4_c00282{width:8.601600pt;}
._6_c00282{width:10.259200pt;}
._5_c00282{width:16.275200pt;}
._1_c00282{width:19.322880pt;}
._2_c00282{width:20.694400pt;}
._0_c00282{width:1019.274133pt;}
.fs1_c00282{font-size:47.360000pt;}
.fs0_c00282{font-size:64.000000pt;}
.y0_c00282{bottom:0.000000pt;}
.y4_c00282{bottom:3.520000pt;}
.y1_c00282{bottom:16.666667pt;}
.y2_c00282{bottom:33.653360pt;}
.y3_c00282{bottom:46.480027pt;}
.ye_c00282{bottom:87.093347pt;}
.yd_c00282{bottom:123.893333pt;}
.yc_c00282{bottom:160.693333pt;}
.yb_c00282{bottom:197.493333pt;}
.ya_c00282{bottom:234.293333pt;}
.y9_c00282{bottom:251.573333pt;}
.y8_c00282{bottom:265.333333pt;}
.y7_c00282{bottom:279.093333pt;}
.y6_c00282{bottom:292.853333pt;}
.y5_c00282{bottom:304.373333pt;}
.h3_c00282{height:18.240000pt;}
.h4_c00282{height:42.457500pt;}
.h2_c00282{height:57.375000pt;}
.h1_c00282{height:1089.333333pt;}
.h0_c00282{height:1122.666667pt;}
.w2_c00282{width:26.880000pt;}
.w1_c00282{width:760.000000pt;}
.w0_c00282{width:793.333333pt;}
.x0_c00282{left:0.000000pt;}
.x1_c00282{left:16.666667pt;}
.x8_c00282{left:97.279933pt;}
.x3_c00282{left:113.946667pt;}
.x2_c00282{left:121.280000pt;}
.x7_c00282{left:135.080133pt;}
.x5_c00282{left:191.813067pt;}
.x6_c00282{left:380.546533pt;}
.x4_c00282{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c8d094cf2a0fbdbc160fc91.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls3_c00283{letter-spacing:0.000000px;}
.ls0_c00283{letter-spacing:0.014400px;}
.ls1_c00283{letter-spacing:0.036000px;}
.ls2_c00283{letter-spacing:0.420912px;}
.sc__c00283{text-shadow:none;}
.sc0_c00283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00283{-webkit-text-stroke:0px transparent;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00283{word-spacing:-20.030400px;}
.ws1_c00283{word-spacing:0.000000px;}
._8_c00283{margin-left:-1.065600px;}
._4_c00283{width:2.433600px;}
._6_c00283{width:7.220100px;}
._5_c00283{width:8.589600px;}
._3_c00283{width:11.469600px;}
._7_c00283{width:26.584500px;}
._1_c00283{width:1061.484000px;}
._2_c00283{width:1146.684000px;}
._0_c00283{width:2079.683700px;}
.fc1_c00283{color:transparent;}
.fc0_c00283{color:rgb(0,0,0);}
.fs1_c00283{font-size:53.280000px;}
.fs0_c00283{font-size:72.000000px;}
.y0_c00283{bottom:0.000000px;}
.y5_c00283{bottom:3.960000px;}
.y1_c00283{bottom:18.750000px;}
.y3_c00283{bottom:36.420030px;}
.y4_c00283{bottom:47.250030px;}
.yd_c00283{bottom:96.180030px;}
.yc_c00283{bottom:109.140030px;}
.yb_c00283{bottom:913.740000px;}
.ya_c00283{bottom:955.140000px;}
.y9_c00283{bottom:996.540000px;}
.y8_c00283{bottom:1037.940000px;}
.y7_c00283{bottom:1079.340000px;}
.y6_c00283{bottom:1120.740000px;}
.y2_c00283{bottom:1174.020000px;}
.h3_c00283{height:20.520000px;}
.h4_c00283{height:47.764688px;}
.h2_c00283{height:64.546875px;}
.h1_c00283{height:1225.500000px;}
.h0_c00283{height:1263.000000px;}
.w2_c00283{width:30.240000px;}
.w1_c00283{width:855.000000px;}
.w0_c00283{width:892.500000px;}
.x0_c00283{left:0.000000px;}
.x1_c00283{left:18.750000px;}
.x2_c00283{left:109.439925px;}
.x5_c00283{left:151.965150px;}
.x3_c00283{left:157.739850px;}
.x7_c00283{left:557.644800px;}
.x4_c00283{left:735.510000px;}
.x6_c00283{left:751.440000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls3_c00283{letter-spacing:0.000000pt;}
.ls0_c00283{letter-spacing:0.012800pt;}
.ls1_c00283{letter-spacing:0.032000pt;}
.ls2_c00283{letter-spacing:0.374144pt;}
.ws0_c00283{word-spacing:-17.804800pt;}
.ws1_c00283{word-spacing:0.000000pt;}
._8_c00283{margin-left:-0.947200pt;}
._4_c00283{width:2.163200pt;}
._6_c00283{width:6.417867pt;}
._5_c00283{width:7.635200pt;}
._3_c00283{width:10.195200pt;}
._7_c00283{width:23.630667pt;}
._1_c00283{width:943.541333pt;}
._2_c00283{width:1019.274667pt;}
._0_c00283{width:1848.607733pt;}
.fs1_c00283{font-size:47.360000pt;}
.fs0_c00283{font-size:64.000000pt;}
.y0_c00283{bottom:0.000000pt;}
.y5_c00283{bottom:3.520000pt;}
.y1_c00283{bottom:16.666667pt;}
.y3_c00283{bottom:32.373360pt;}
.y4_c00283{bottom:42.000027pt;}
.yd_c00283{bottom:85.493360pt;}
.yc_c00283{bottom:97.013360pt;}
.yb_c00283{bottom:812.213333pt;}
.ya_c00283{bottom:849.013333pt;}
.y9_c00283{bottom:885.813333pt;}
.y8_c00283{bottom:922.613333pt;}
.y7_c00283{bottom:959.413333pt;}
.y6_c00283{bottom:996.213333pt;}
.y2_c00283{bottom:1043.573333pt;}
.h3_c00283{height:18.240000pt;}
.h4_c00283{height:42.457500pt;}
.h2_c00283{height:57.375000pt;}
.h1_c00283{height:1089.333333pt;}
.h0_c00283{height:1122.666667pt;}
.w2_c00283{width:26.880000pt;}
.w1_c00283{width:760.000000pt;}
.w0_c00283{width:793.333333pt;}
.x0_c00283{left:0.000000pt;}
.x1_c00283{left:16.666667pt;}
.x2_c00283{left:97.279933pt;}
.x5_c00283{left:135.080133pt;}
.x3_c00283{left:140.213200pt;}
.x7_c00283{left:495.684267pt;}
.x4_c00283{left:653.786667pt;}
.x6_c00283{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c3b419a7faddd64bdba6725.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00284{letter-spacing:0.000000px;}
.ls0_c00284{letter-spacing:0.014400px;}
.ls1_c00284{letter-spacing:0.420912px;}
.ls3_c00284{letter-spacing:0.527472px;}
.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:-20.030400px;}
.ws1_c00284{word-spacing:0.000000px;}
._1_c00284{margin-left:-1.118880px;}
._0_c00284{width:1146.683400px;}
.fc1_c00284{color:transparent;}
.fc0_c00284{color:rgb(0,0,0);}
.fs1_c00284{font-size:53.280000px;}
.fs0_c00284{font-size:72.000000px;}
.y0_c00284{bottom:0.000000px;}
.y4_c00284{bottom:3.960000px;}
.y1_c00284{bottom:18.750000px;}
.y2_c00284{bottom:37.860030px;}
.y3_c00284{bottom:52.290030px;}
.y8_c00284{bottom:103.740030px;}
.y7_c00284{bottom:116.340015px;}
.y6_c00284{bottom:662.460000px;}
.y5_c00284{bottom:675.420000px;}
.h3_c00284{height:20.520000px;}
.h4_c00284{height:47.764688px;}
.h2_c00284{height:64.546875px;}
.h1_c00284{height:1225.500000px;}
.h0_c00284{height:1263.000000px;}
.w2_c00284{width:30.240000px;}
.w1_c00284{width:855.000000px;}
.w0_c00284{width:892.500000px;}
.x0_c00284{left:0.000000px;}
.x1_c00284{left:18.750000px;}
.x3_c00284{left:128.190000px;}
.x2_c00284{left:136.440000px;}
.x5_c00284{left:268.963650px;}
.x6_c00284{left:557.644800px;}
.x4_c00284{left:751.440000px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls2_c00284{letter-spacing:0.000000pt;}
.ls0_c00284{letter-spacing:0.012800pt;}
.ls1_c00284{letter-spacing:0.374144pt;}
.ls3_c00284{letter-spacing:0.468864pt;}
.ws0_c00284{word-spacing:-17.804800pt;}
.ws1_c00284{word-spacing:0.000000pt;}
._1_c00284{margin-left:-0.994560pt;}
._0_c00284{width:1019.274133pt;}
.fs1_c00284{font-size:47.360000pt;}
.fs0_c00284{font-size:64.000000pt;}
.y0_c00284{bottom:0.000000pt;}
.y4_c00284{bottom:3.520000pt;}
.y1_c00284{bottom:16.666667pt;}
.y2_c00284{bottom:33.653360pt;}
.y3_c00284{bottom:46.480027pt;}
.y8_c00284{bottom:92.213360pt;}
.y7_c00284{bottom:103.413347pt;}
.y6_c00284{bottom:588.853333pt;}
.y5_c00284{bottom:600.373333pt;}
.h3_c00284{height:18.240000pt;}
.h4_c00284{height:42.457500pt;}
.h2_c00284{height:57.375000pt;}
.h1_c00284{height:1089.333333pt;}
.h0_c00284{height:1122.666667pt;}
.w2_c00284{width:26.880000pt;}
.w1_c00284{width:760.000000pt;}
.w0_c00284{width:793.333333pt;}
.x0_c00284{left:0.000000pt;}
.x1_c00284{left:16.666667pt;}
.x3_c00284{left:113.946667pt;}
.x2_c00284{left:121.280000pt;}
.x5_c00284{left:239.078800pt;}
.x6_c00284{left:495.684267pt;}
.x4_c00284{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c149b8165adbf3bc42853378.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00285{letter-spacing:0.000000px;}
.ls0_c00285{letter-spacing:0.014400px;}
.ls3_c00285{letter-spacing:0.410256px;}
.ls1_c00285{letter-spacing:0.420912px;}
.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:-20.030400px;}
.ws1_c00285{word-spacing:-15.222096px;}
.ws2_c00285{word-spacing:0.000000px;}
._3_c00285{margin-left:-1.065600px;}
._1_c00285{width:1061.484000px;}
._2_c00285{width:1146.684000px;}
._0_c00285{width:2079.683700px;}
.fc1_c00285{color:transparent;}
.fc0_c00285{color:rgb(0,0,0);}
.fs1_c00285{font-size:53.280000px;}
.fs0_c00285{font-size:72.000000px;}
.y0_c00285{bottom:0.000000px;}
.y5_c00285{bottom:3.960000px;}
.y1_c00285{bottom:18.750000px;}
.y3_c00285{bottom:36.420030px;}
.y4_c00285{bottom:47.250030px;}
.y9_c00285{bottom:105.540030px;}
.y8_c00285{bottom:118.140030px;}
.y7_c00285{bottom:1093.740000px;}
.y6_c00285{bottom:1124.700000px;}
.y2_c00285{bottom:1174.020000px;}
.h3_c00285{height:20.520000px;}
.h4_c00285{height:47.764688px;}
.h2_c00285{height:64.546875px;}
.h1_c00285{height:1225.500000px;}
.h0_c00285{height:1263.000000px;}
.w2_c00285{width:30.240000px;}
.w1_c00285{width:855.000000px;}
.w0_c00285{width:892.500000px;}
.x0_c00285{left:0.000000px;}
.x1_c00285{left:18.750000px;}
.x2_c00285{left:109.439925px;}
.x3_c00285{left:157.739850px;}
.x7_c00285{left:557.644800px;}
.x4_c00285{left:735.510000px;}
.x5_c00285{left:746.789700px;}
.x6_c00285{left:751.440000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls2_c00285{letter-spacing:0.000000pt;}
.ls0_c00285{letter-spacing:0.012800pt;}
.ls3_c00285{letter-spacing:0.364672pt;}
.ls1_c00285{letter-spacing:0.374144pt;}
.ws0_c00285{word-spacing:-17.804800pt;}
.ws1_c00285{word-spacing:-13.530752pt;}
.ws2_c00285{word-spacing:0.000000pt;}
._3_c00285{margin-left:-0.947200pt;}
._1_c00285{width:943.541333pt;}
._2_c00285{width:1019.274667pt;}
._0_c00285{width:1848.607733pt;}
.fs1_c00285{font-size:47.360000pt;}
.fs0_c00285{font-size:64.000000pt;}
.y0_c00285{bottom:0.000000pt;}
.y5_c00285{bottom:3.520000pt;}
.y1_c00285{bottom:16.666667pt;}
.y3_c00285{bottom:32.373360pt;}
.y4_c00285{bottom:42.000027pt;}
.y9_c00285{bottom:93.813360pt;}
.y8_c00285{bottom:105.013360pt;}
.y7_c00285{bottom:972.213333pt;}
.y6_c00285{bottom:999.733333pt;}
.y2_c00285{bottom:1043.573333pt;}
.h3_c00285{height:18.240000pt;}
.h4_c00285{height:42.457500pt;}
.h2_c00285{height:57.375000pt;}
.h1_c00285{height:1089.333333pt;}
.h0_c00285{height:1122.666667pt;}
.w2_c00285{width:26.880000pt;}
.w1_c00285{width:760.000000pt;}
.w0_c00285{width:793.333333pt;}
.x0_c00285{left:0.000000pt;}
.x1_c00285{left:16.666667pt;}
.x2_c00285{left:97.279933pt;}
.x3_c00285{left:140.213200pt;}
.x7_c00285{left:495.684267pt;}
.x4_c00285{left:653.786667pt;}
.x5_c00285{left:663.813067pt;}
.x6_c00285{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_12ed15ecdaa7a9172c485020.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00286;src:url('chunks/assets/font_9ae16584ee8a7853975648ad.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.111328;font-style: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;}
.ls3_c00286{letter-spacing:0.000000px;}
.ls0_c00286{letter-spacing:0.014400px;}
.ls1_c00286{letter-spacing:0.191160px;}
.ls5_c00286{letter-spacing:0.410256px;}
.ls2_c00286{letter-spacing:0.420912px;}
.ls4_c00286{letter-spacing:0.527472px;}
.sc__c00286{text-shadow:none;}
.sc0_c00286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00286{-webkit-text-stroke:0px transparent;}
.sc0_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00286{word-spacing:-20.030400px;}
.ws1_c00286{word-spacing:-15.339312px;}
.ws2_c00286{word-spacing:-0.072000px;}
.ws3_c00286{word-spacing:0.000000px;}
._1_c00286{margin-left:-1.065600px;}
._3_c00286{width:2.952000px;}
._2_c00286{width:4.291200px;}
._4_c00286{width:5.356800px;}
._0_c00286{width:1146.683400px;}
.fc1_c00286{color:transparent;}
.fc0_c00286{color:rgb(0,0,0);}
.fs1_c00286{font-size:53.280000px;}
.fs0_c00286{font-size:72.000000px;}
.y0_c00286{bottom:0.000000px;}
.y4_c00286{bottom:3.960000px;}
.y1_c00286{bottom:18.750000px;}
.y2_c00286{bottom:37.860030px;}
.y3_c00286{bottom:52.290030px;}
.yd_c00286{bottom:100.500030px;}
.yc_c00286{bottom:113.460015px;}
.yb_c00286{bottom:504.060000px;}
.ya_c00286{bottom:545.460000px;}
.y9_c00286{bottom:586.860000px;}
.y8_c00286{bottom:628.260000px;}
.y7_c00286{bottom:669.660000px;}
.y6_c00286{bottom:704.580000px;}
.y5_c00286{bottom:717.540000px;}
.h3_c00286{height:20.520000px;}
.h4_c00286{height:47.764688px;}
.h2_c00286{height:64.546875px;}
.h5_c00286{height:65.707031px;}
.h1_c00286{height:1225.500000px;}
.h0_c00286{height:1263.000000px;}
.w2_c00286{width:30.240000px;}
.w1_c00286{width:855.000000px;}
.w0_c00286{width:892.500000px;}
.x0_c00286{left:0.000000px;}
.x1_c00286{left:18.750000px;}
.x7_c00286{left:109.439925px;}
.x3_c00286{left:128.190000px;}
.x2_c00286{left:136.440000px;}
.x6_c00286{left:151.965150px;}
.x5_c00286{left:245.014500px;}
.x8_c00286{left:557.644800px;}
.x4_c00286{left:751.440000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls3_c00286{letter-spacing:0.000000pt;}
.ls0_c00286{letter-spacing:0.012800pt;}
.ls1_c00286{letter-spacing:0.169920pt;}
.ls5_c00286{letter-spacing:0.364672pt;}
.ls2_c00286{letter-spacing:0.374144pt;}
.ls4_c00286{letter-spacing:0.468864pt;}
.ws0_c00286{word-spacing:-17.804800pt;}
.ws1_c00286{word-spacing:-13.634944pt;}
.ws2_c00286{word-spacing:-0.064000pt;}
.ws3_c00286{word-spacing:0.000000pt;}
._1_c00286{margin-left:-0.947200pt;}
._3_c00286{width:2.624000pt;}
._2_c00286{width:3.814400pt;}
._4_c00286{width:4.761600pt;}
._0_c00286{width:1019.274133pt;}
.fs1_c00286{font-size:47.360000pt;}
.fs0_c00286{font-size:64.000000pt;}
.y0_c00286{bottom:0.000000pt;}
.y4_c00286{bottom:3.520000pt;}
.y1_c00286{bottom:16.666667pt;}
.y2_c00286{bottom:33.653360pt;}
.y3_c00286{bottom:46.480027pt;}
.yd_c00286{bottom:89.333360pt;}
.yc_c00286{bottom:100.853347pt;}
.yb_c00286{bottom:448.053333pt;}
.ya_c00286{bottom:484.853333pt;}
.y9_c00286{bottom:521.653333pt;}
.y8_c00286{bottom:558.453333pt;}
.y7_c00286{bottom:595.253333pt;}
.y6_c00286{bottom:626.293333pt;}
.y5_c00286{bottom:637.813333pt;}
.h3_c00286{height:18.240000pt;}
.h4_c00286{height:42.457500pt;}
.h2_c00286{height:57.375000pt;}
.h5_c00286{height:58.406250pt;}
.h1_c00286{height:1089.333333pt;}
.h0_c00286{height:1122.666667pt;}
.w2_c00286{width:26.880000pt;}
.w1_c00286{width:760.000000pt;}
.w0_c00286{width:793.333333pt;}
.x0_c00286{left:0.000000pt;}
.x1_c00286{left:16.666667pt;}
.x7_c00286{left:97.279933pt;}
.x3_c00286{left:113.946667pt;}
.x2_c00286{left:121.280000pt;}
.x6_c00286{left:135.080133pt;}
.x5_c00286{left:217.790667pt;}
.x8_c00286{left:495.684267pt;}
.x4_c00286{left:667.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_719b802aa067e533ad4f4b2a.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00287{letter-spacing:0.000000px;}
.ls0_c00287{letter-spacing:0.014400px;}
.ls2_c00287{letter-spacing:0.548784px;}
.sc__c00287{text-shadow:none;}
.sc0_c00287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00287{-webkit-text-stroke:0px transparent;}
.sc0_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00287{word-spacing:-20.030400px;}
.ws1_c00287{word-spacing:0.000000px;}
._3_c00287{margin-left:-1.118880px;}
._1_c00287{width:1061.484000px;}
._2_c00287{width:1146.684000px;}
._0_c00287{width:2079.683700px;}
.fc1_c00287{color:transparent;}
.fc0_c00287{color:rgb(0,0,0);}
.fs1_c00287{font-size:53.280000px;}
.fs0_c00287{font-size:72.000000px;}
.y0_c00287{bottom:0.000000px;}
.y5_c00287{bottom:3.960000px;}
.y1_c00287{bottom:18.750000px;}
.y3_c00287{bottom:36.420030px;}
.y4_c00287{bottom:47.250030px;}
.y8_c00287{bottom:92.220030px;}
.y7_c00287{bottom:104.820030px;}
.y6_c00287{bottom:876.300000px;}
.y2_c00287{bottom:1174.020000px;}
.h3_c00287{height:20.520000px;}
.h4_c00287{height:47.764688px;}
.h2_c00287{height:64.546875px;}
.h1_c00287{height:1225.500000px;}
.h0_c00287{height:1263.000000px;}
.w2_c00287{width:30.240000px;}
.w1_c00287{width:855.000000px;}
.w0_c00287{width:892.500000px;}
.x0_c00287{left:0.000000px;}
.x1_c00287{left:18.750000px;}
.x2_c00287{left:109.439925px;}
.x3_c00287{left:157.739850px;}
.x6_c00287{left:327.945900px;}
.x4_c00287{left:735.510000px;}
.x5_c00287{left:746.789700px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls1_c00287{letter-spacing:0.000000pt;}
.ls0_c00287{letter-spacing:0.012800pt;}
.ls2_c00287{letter-spacing:0.487808pt;}
.ws0_c00287{word-spacing:-17.804800pt;}
.ws1_c00287{word-spacing:0.000000pt;}
._3_c00287{margin-left:-0.994560pt;}
._1_c00287{width:943.541333pt;}
._2_c00287{width:1019.274667pt;}
._0_c00287{width:1848.607733pt;}
.fs1_c00287{font-size:47.360000pt;}
.fs0_c00287{font-size:64.000000pt;}
.y0_c00287{bottom:0.000000pt;}
.y5_c00287{bottom:3.520000pt;}
.y1_c00287{bottom:16.666667pt;}
.y3_c00287{bottom:32.373360pt;}
.y4_c00287{bottom:42.000027pt;}
.y8_c00287{bottom:81.973360pt;}
.y7_c00287{bottom:93.173360pt;}
.y6_c00287{bottom:778.933333pt;}
.y2_c00287{bottom:1043.573333pt;}
.h3_c00287{height:18.240000pt;}
.h4_c00287{height:42.457500pt;}
.h2_c00287{height:57.375000pt;}
.h1_c00287{height:1089.333333pt;}
.h0_c00287{height:1122.666667pt;}
.w2_c00287{width:26.880000pt;}
.w1_c00287{width:760.000000pt;}
.w0_c00287{width:793.333333pt;}
.x0_c00287{left:0.000000pt;}
.x1_c00287{left:16.666667pt;}
.x2_c00287{left:97.279933pt;}
.x3_c00287{left:140.213200pt;}
.x6_c00287{left:291.507467pt;}
.x4_c00287{left:653.786667pt;}
.x5_c00287{left:663.813067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_36422e87592253868852fc3e.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00288;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.ls1_c00288{letter-spacing:0.000000px;}
.ls0_c00288{letter-spacing:0.014400px;}
.sc__c00288{text-shadow:none;}
.sc0_c00288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00288{-webkit-text-stroke:0px transparent;}
.sc0_c00288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00288{word-spacing:-20.030400px;}
.ws1_c00288{word-spacing:0.000000px;}
._0_c00288{width:1146.683400px;}
.fc1_c00288{color:transparent;}
.fc0_c00288{color:rgb(0,0,0);}
.fs1_c00288{font-size:53.280000px;}
.fs0_c00288{font-size:72.000000px;}
.y0_c00288{bottom:0.000000px;}
.y4_c00288{bottom:3.960000px;}
.y1_c00288{bottom:18.750000px;}
.y2_c00288{bottom:37.860030px;}
.y3_c00288{bottom:52.290030px;}
.y45_c00288{bottom:101.220030px;}
.y44_c00288{bottom:122.100030px;}
.y43_c00288{bottom:142.620000px;}
.y42_c00288{bottom:163.500000px;}
.y41_c00288{bottom:184.020000px;}
.y40_c00288{bottom:204.900000px;}
.y3f_c00288{bottom:224.340000px;}
.y3e_c00288{bottom:239.820000px;}
.y3d_c00288{bottom:255.300000px;}
.y3c_c00288{bottom:270.780000px;}
.y3b_c00288{bottom:286.260000px;}
.y3a_c00288{bottom:301.740000px;}
.y39_c00288{bottom:317.220000px;}
.y38_c00288{bottom:333.060000px;}
.y37_c00288{bottom:348.540000px;}
.y36_c00288{bottom:364.020000px;}
.y35_c00288{bottom:379.500000px;}
.y34_c00288{bottom:394.980000px;}
.y33_c00288{bottom:410.460000px;}
.y32_c00288{bottom:425.940000px;}
.y31_c00288{bottom:441.420000px;}
.y30_c00288{bottom:457.260000px;}
.y2f_c00288{bottom:472.740000px;}
.y2e_c00288{bottom:488.220000px;}
.y2d_c00288{bottom:503.700000px;}
.y2c_c00288{bottom:519.180000px;}
.y2b_c00288{bottom:534.660000px;}
.y2a_c00288{bottom:550.140000px;}
.y29_c00288{bottom:565.620000px;}
.y28_c00288{bottom:581.460000px;}
.y27_c00288{bottom:596.940000px;}
.y26_c00288{bottom:612.420000px;}
.y25_c00288{bottom:627.900000px;}
.y24_c00288{bottom:643.380000px;}
.y23_c00288{bottom:658.860000px;}
.y22_c00288{bottom:674.340000px;}
.y21_c00288{bottom:689.820000px;}
.y20_c00288{bottom:705.660000px;}
.y1f_c00288{bottom:721.140000px;}
.y1e_c00288{bottom:736.620000px;}
.y1d_c00288{bottom:752.100000px;}
.y1c_c00288{bottom:767.580000px;}
.y1b_c00288{bottom:783.060000px;}
.y1a_c00288{bottom:798.540000px;}
.y19_c00288{bottom:814.020000px;}
.y18_c00288{bottom:829.500000px;}
.y17_c00288{bottom:845.340000px;}
.y16_c00288{bottom:860.820000px;}
.y15_c00288{bottom:876.300000px;}
.y14_c00288{bottom:891.780000px;}
.y13_c00288{bottom:907.260000px;}
.y12_c00288{bottom:922.740000px;}
.y11_c00288{bottom:938.220000px;}
.y10_c00288{bottom:953.700000px;}
.yf_c00288{bottom:969.540000px;}
.ye_c00288{bottom:985.020000px;}
.yd_c00288{bottom:1000.500000px;}
.yc_c00288{bottom:1015.980000px;}
.yb_c00288{bottom:1031.460000px;}
.ya_c00288{bottom:1046.940000px;}
.y9_c00288{bottom:1062.420000px;}
.y8_c00288{bottom:1077.900000px;}
.y7_c00288{bottom:1093.740000px;}
.y6_c00288{bottom:1109.220000px;}
.y5_c00288{bottom:1124.700000px;}
.h3_c00288{height:20.520000px;}
.h4_c00288{height:47.764688px;}
.h2_c00288{height:64.546875px;}
.h5_c00288{height:65.003906px;}
.h1_c00288{height:1225.500000px;}
.h0_c00288{height:1263.000000px;}
.w2_c00288{width:30.240000px;}
.w1_c00288{width:855.000000px;}
.w0_c00288{width:892.500000px;}
.x0_c00288{left:0.000000px;}
.x1_c00288{left:18.750000px;}
.x5_c00288{left:109.439925px;}
.x3_c00288{left:128.190000px;}
.x2_c00288{left:136.440000px;}
.x4_c00288{left:428.114850px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls1_c00288{letter-spacing:0.000000pt;}
.ls0_c00288{letter-spacing:0.012800pt;}
.ws0_c00288{word-spacing:-17.804800pt;}
.ws1_c00288{word-spacing:0.000000pt;}
._0_c00288{width:1019.274133pt;}
.fs1_c00288{font-size:47.360000pt;}
.fs0_c00288{font-size:64.000000pt;}
.y0_c00288{bottom:0.000000pt;}
.y4_c00288{bottom:3.520000pt;}
.y1_c00288{bottom:16.666667pt;}
.y2_c00288{bottom:33.653360pt;}
.y3_c00288{bottom:46.480027pt;}
.y45_c00288{bottom:89.973360pt;}
.y44_c00288{bottom:108.533360pt;}
.y43_c00288{bottom:126.773333pt;}
.y42_c00288{bottom:145.333333pt;}
.y41_c00288{bottom:163.573333pt;}
.y40_c00288{bottom:182.133333pt;}
.y3f_c00288{bottom:199.413333pt;}
.y3e_c00288{bottom:213.173333pt;}
.y3d_c00288{bottom:226.933333pt;}
.y3c_c00288{bottom:240.693333pt;}
.y3b_c00288{bottom:254.453333pt;}
.y3a_c00288{bottom:268.213333pt;}
.y39_c00288{bottom:281.973333pt;}
.y38_c00288{bottom:296.053333pt;}
.y37_c00288{bottom:309.813333pt;}
.y36_c00288{bottom:323.573333pt;}
.y35_c00288{bottom:337.333333pt;}
.y34_c00288{bottom:351.093333pt;}
.y33_c00288{bottom:364.853333pt;}
.y32_c00288{bottom:378.613333pt;}
.y31_c00288{bottom:392.373333pt;}
.y30_c00288{bottom:406.453333pt;}
.y2f_c00288{bottom:420.213333pt;}
.y2e_c00288{bottom:433.973333pt;}
.y2d_c00288{bottom:447.733333pt;}
.y2c_c00288{bottom:461.493333pt;}
.y2b_c00288{bottom:475.253333pt;}
.y2a_c00288{bottom:489.013333pt;}
.y29_c00288{bottom:502.773333pt;}
.y28_c00288{bottom:516.853333pt;}
.y27_c00288{bottom:530.613333pt;}
.y26_c00288{bottom:544.373333pt;}
.y25_c00288{bottom:558.133333pt;}
.y24_c00288{bottom:571.893333pt;}
.y23_c00288{bottom:585.653333pt;}
.y22_c00288{bottom:599.413333pt;}
.y21_c00288{bottom:613.173333pt;}
.y20_c00288{bottom:627.253333pt;}
.y1f_c00288{bottom:641.013333pt;}
.y1e_c00288{bottom:654.773333pt;}
.y1d_c00288{bottom:668.533333pt;}
.y1c_c00288{bottom:682.293333pt;}
.y1b_c00288{bottom:696.053333pt;}
.y1a_c00288{bottom:709.813333pt;}
.y19_c00288{bottom:723.573333pt;}
.y18_c00288{bottom:737.333333pt;}
.y17_c00288{bottom:751.413333pt;}
.y16_c00288{bottom:765.173333pt;}
.y15_c00288{bottom:778.933333pt;}
.y14_c00288{bottom:792.693333pt;}
.y13_c00288{bottom:806.453333pt;}
.y12_c00288{bottom:820.213333pt;}
.y11_c00288{bottom:833.973333pt;}
.y10_c00288{bottom:847.733333pt;}
.yf_c00288{bottom:861.813333pt;}
.ye_c00288{bottom:875.573333pt;}
.yd_c00288{bottom:889.333333pt;}
.yc_c00288{bottom:903.093333pt;}
.yb_c00288{bottom:916.853333pt;}
.ya_c00288{bottom:930.613333pt;}
.y9_c00288{bottom:944.373333pt;}
.y8_c00288{bottom:958.133333pt;}
.y7_c00288{bottom:972.213333pt;}
.y6_c00288{bottom:985.973333pt;}
.y5_c00288{bottom:999.733333pt;}
.h3_c00288{height:18.240000pt;}
.h4_c00288{height:42.457500pt;}
.h2_c00288{height:57.375000pt;}
.h5_c00288{height:57.781250pt;}
.h1_c00288{height:1089.333333pt;}
.h0_c00288{height:1122.666667pt;}
.w2_c00288{width:26.880000pt;}
.w1_c00288{width:760.000000pt;}
.w0_c00288{width:793.333333pt;}
.x0_c00288{left:0.000000pt;}
.x1_c00288{left:16.666667pt;}
.x5_c00288{left:97.279933pt;}
.x3_c00288{left:113.946667pt;}
.x2_c00288{left:121.280000pt;}
.x4_c00288{left:380.546533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7eb9e016d4d6c35c5829f949.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00289;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.113281;font-style: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;}
.ls1_c00289{letter-spacing:0.000000px;}
.ls2_c00289{letter-spacing:0.275616px;}
.ls0_c00289{letter-spacing:0.359136px;}
.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:-23.577696px;}
.ws1_c00289{word-spacing:0.000000px;}
._3_c00289{width:843.233160px;}
._2_c00289{width:1146.684000px;}
._1_c00289{width:1254.683700px;}
._0_c00289{width:2079.683700px;}
.fc1_c00289{color:transparent;}
.fc0_c00289{color:rgb(0,0,0);}
.fs1_c00289{font-size:53.280000px;}
.fs0_c00289{font-size:72.000000px;}
.fs2_c00289{font-size:83.520000px;}
.y0_c00289{bottom:0.000000px;}
.y1_c00289{bottom:18.750000px;}
.y3_c00289{bottom:36.420030px;}
.y1c_c00289{bottom:620.700000px;}
.y1b_c00289{bottom:644.460000px;}
.y1a_c00289{bottom:665.340000px;}
.y19_c00289{bottom:685.860000px;}
.y18_c00289{bottom:706.740000px;}
.y17_c00289{bottom:727.260000px;}
.y16_c00289{bottom:748.140000px;}
.y15_c00289{bottom:768.660000px;}
.y14_c00289{bottom:789.540000px;}
.y13_c00289{bottom:810.060000px;}
.y12_c00289{bottom:830.940000px;}
.y11_c00289{bottom:851.460000px;}
.y10_c00289{bottom:872.340000px;}
.yf_c00289{bottom:892.860000px;}
.ye_c00289{bottom:913.740000px;}
.yd_c00289{bottom:934.260000px;}
.yc_c00289{bottom:955.140000px;}
.yb_c00289{bottom:975.660000px;}
.ya_c00289{bottom:996.540000px;}
.y9_c00289{bottom:1017.060000px;}
.y8_c00289{bottom:1037.940000px;}
.y7_c00289{bottom:1058.460000px;}
.y6_c00289{bottom:1079.340000px;}
.y5_c00289{bottom:1099.860000px;}
.y4_c00289{bottom:1120.740000px;}
.y2_c00289{bottom:1174.020000px;}
.h2_c00289{height:64.546875px;}
.h3_c00289{height:65.003906px;}
.h4_c00289{height:74.874375px;}
.h1_c00289{height:1225.500000px;}
.h0_c00289{height:1263.000000px;}
.w1_c00289{width:855.000000px;}
.w0_c00289{width:892.500000px;}
.x0_c00289{left:0.000000px;}
.x1_c00289{left:18.750000px;}
.x2_c00289{left:109.439925px;}
.x3_c00289{left:555.410850px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls1_c00289{letter-spacing:0.000000pt;}
.ls2_c00289{letter-spacing:0.244992pt;}
.ls0_c00289{letter-spacing:0.319232pt;}
.ws0_c00289{word-spacing:-20.957952pt;}
.ws1_c00289{word-spacing:0.000000pt;}
._3_c00289{width:749.540587pt;}
._2_c00289{width:1019.274667pt;}
._1_c00289{width:1115.274400pt;}
._0_c00289{width:1848.607733pt;}
.fs1_c00289{font-size:47.360000pt;}
.fs0_c00289{font-size:64.000000pt;}
.fs2_c00289{font-size:74.240000pt;}
.y0_c00289{bottom:0.000000pt;}
.y1_c00289{bottom:16.666667pt;}
.y3_c00289{bottom:32.373360pt;}
.y1c_c00289{bottom:551.733333pt;}
.y1b_c00289{bottom:572.853333pt;}
.y1a_c00289{bottom:591.413333pt;}
.y19_c00289{bottom:609.653333pt;}
.y18_c00289{bottom:628.213333pt;}
.y17_c00289{bottom:646.453333pt;}
.y16_c00289{bottom:665.013333pt;}
.y15_c00289{bottom:683.253333pt;}
.y14_c00289{bottom:701.813333pt;}
.y13_c00289{bottom:720.053333pt;}
.y12_c00289{bottom:738.613333pt;}
.y11_c00289{bottom:756.853333pt;}
.y10_c00289{bottom:775.413333pt;}
.yf_c00289{bottom:793.653333pt;}
.ye_c00289{bottom:812.213333pt;}
.yd_c00289{bottom:830.453333pt;}
.yc_c00289{bottom:849.013333pt;}
.yb_c00289{bottom:867.253333pt;}
.ya_c00289{bottom:885.813333pt;}
.y9_c00289{bottom:904.053333pt;}
.y8_c00289{bottom:922.613333pt;}
.y7_c00289{bottom:940.853333pt;}
.y6_c00289{bottom:959.413333pt;}
.y5_c00289{bottom:977.653333pt;}
.y4_c00289{bottom:996.213333pt;}
.y2_c00289{bottom:1043.573333pt;}
.h2_c00289{height:57.375000pt;}
.h3_c00289{height:57.781250pt;}
.h4_c00289{height:66.555000pt;}
.h1_c00289{height:1089.333333pt;}
.h0_c00289{height:1122.666667pt;}
.w1_c00289{width:760.000000pt;}
.w0_c00289{width:793.333333pt;}
.x0_c00289{left:0.000000pt;}
.x1_c00289{left:16.666667pt;}
.x2_c00289{left:97.279933pt;}
.x3_c00289{left:493.698533pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc845accef0beaceb15afc88.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00290;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.113281;font-style: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:0.000000px;}
._0_c00290{width:1146.683400px;}
.fc0_c00290{color:rgb(0,0,0);}
.fs0_c00290{font-size:72.000000px;}
.y0_c00290{bottom:0.000000px;}
.y1_c00290{bottom:18.750000px;}
.y3_c00290{bottom:37.860030px;}
.y2_c00290{bottom:58.380030px;}
.y4_c00290{bottom:1120.740000px;}
.h2_c00290{height:64.546875px;}
.h3_c00290{height:65.003906px;}
.h1_c00290{height:1225.500000px;}
.h0_c00290{height:1263.000000px;}
.w1_c00290{width:855.000000px;}
.w0_c00290{width:892.500000px;}
.x0_c00290{left:0.000000px;}
.x1_c00290{left:18.750000px;}
.x3_c00290{left:109.439925px;}
.x2_c00290{left:136.440000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls0_c00290{letter-spacing:0.000000pt;}
.ws0_c00290{word-spacing:0.000000pt;}
._0_c00290{width:1019.274133pt;}
.fs0_c00290{font-size:64.000000pt;}
.y0_c00290{bottom:0.000000pt;}
.y1_c00290{bottom:16.666667pt;}
.y3_c00290{bottom:33.653360pt;}
.y2_c00290{bottom:51.893360pt;}
.y4_c00290{bottom:996.213333pt;}
.h2_c00290{height:57.375000pt;}
.h3_c00290{height:57.781250pt;}
.h1_c00290{height:1089.333333pt;}
.h0_c00290{height:1122.666667pt;}
.w1_c00290{width:760.000000pt;}
.w0_c00290{width:793.333333pt;}
.x0_c00290{left:0.000000pt;}
.x1_c00290{left:16.666667pt;}
.x3_c00290{left:97.279933pt;}
.x2_c00290{left:121.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a29d2434aee3e734792a9f0d.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00291;src:url('chunks/assets/font_ee5947f7f9f4b8bfe415d690.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00291{vertical-align:0.000000px;}
.ls2_c00291{letter-spacing:0.000000px;}
.ls0_c00291{letter-spacing:0.014400px;}
.ls1_c00291{letter-spacing:0.036000px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00291{word-spacing:-20.030400px;}
.ws1_c00291{word-spacing:0.000000px;}
._b_c00291{width:1.389600px;}
._3_c00291{width:2.851200px;}
._4_c00291{width:4.701600px;}
._8_c00291{width:6.501600px;}
._f_c00291{width:8.114400px;}
._d_c00291{width:9.453600px;}
._a_c00291{width:10.807200px;}
._7_c00291{width:12.356700px;}
._e_c00291{width:13.937400px;}
._2_c00291{width:16.149600px;}
._c_c00291{width:22.284000px;}
._6_c00291{width:23.493600px;}
._5_c00291{width:35.179200px;}
._10_c00291{width:36.493500px;}
._9_c00291{width:37.512000px;}
._1_c00291{width:90.008100px;}
._0_c00291{width:2079.683700px;}
.fc1_c00291{color:transparent;}
.fc0_c00291{color:rgb(0,0,0);}
.fs0_c00291{font-size:72.000000px;}
.y0_c00291{bottom:0.000000px;}
.y5_c00291{bottom:3.960000px;}
.y1_c00291{bottom:18.750000px;}
.y3_c00291{bottom:40.020030px;}
.y4_c00291{bottom:54.450030px;}
.y1e_c00291{bottom:127.140030px;}
.y1d_c00291{bottom:168.540000px;}
.y1c_c00291{bottom:209.940000px;}
.y1b_c00291{bottom:251.340000px;}
.y1a_c00291{bottom:292.740000px;}
.y19_c00291{bottom:334.140000px;}
.y18_c00291{bottom:375.540000px;}
.y17_c00291{bottom:416.940000px;}
.y16_c00291{bottom:458.340000px;}
.y15_c00291{bottom:499.740000px;}
.y14_c00291{bottom:541.140000px;}
.y13_c00291{bottom:582.540000px;}
.y12_c00291{bottom:623.940000px;}
.y11_c00291{bottom:665.340000px;}
.y10_c00291{bottom:706.740000px;}
.yf_c00291{bottom:748.140000px;}
.ye_c00291{bottom:789.540000px;}
.yd_c00291{bottom:830.940000px;}
.yc_c00291{bottom:872.340000px;}
.yb_c00291{bottom:913.740000px;}
.ya_c00291{bottom:955.140000px;}
.y9_c00291{bottom:996.540000px;}
.y8_c00291{bottom:1037.940000px;}
.y7_c00291{bottom:1079.340000px;}
.y6_c00291{bottom:1120.740000px;}
.y2_c00291{bottom:1174.020000px;}
.h3_c00291{height:20.520000px;}
.h2_c00291{height:64.546875px;}
.h4_c00291{height:65.003906px;}
.h1_c00291{height:1225.500000px;}
.h0_c00291{height:1263.000000px;}
.w2_c00291{width:30.240000px;}
.w1_c00291{width:855.000000px;}
.w0_c00291{width:892.500000px;}
.x0_c00291{left:0.000000px;}
.x1_c00291{left:18.750000px;}
.x2_c00291{left:109.439925px;}
.x5_c00291{left:151.965150px;}
.x3_c00291{left:438.764550px;}
.x4_c00291{left:735.510000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls2_c00291{letter-spacing:0.000000pt;}
.ls0_c00291{letter-spacing:0.012800pt;}
.ls1_c00291{letter-spacing:0.032000pt;}
.ws0_c00291{word-spacing:-17.804800pt;}
.ws1_c00291{word-spacing:0.000000pt;}
._b_c00291{width:1.235200pt;}
._3_c00291{width:2.534400pt;}
._4_c00291{width:4.179200pt;}
._8_c00291{width:5.779200pt;}
._f_c00291{width:7.212800pt;}
._d_c00291{width:8.403200pt;}
._a_c00291{width:9.606400pt;}
._7_c00291{width:10.983733pt;}
._e_c00291{width:12.388800pt;}
._2_c00291{width:14.355200pt;}
._c_c00291{width:19.808000pt;}
._6_c00291{width:20.883200pt;}
._5_c00291{width:31.270400pt;}
._10_c00291{width:32.438667pt;}
._9_c00291{width:33.344000pt;}
._1_c00291{width:80.007200pt;}
._0_c00291{width:1848.607733pt;}
.fs0_c00291{font-size:64.000000pt;}
.y0_c00291{bottom:0.000000pt;}
.y5_c00291{bottom:3.520000pt;}
.y1_c00291{bottom:16.666667pt;}
.y3_c00291{bottom:35.573360pt;}
.y4_c00291{bottom:48.400027pt;}
.y1e_c00291{bottom:113.013360pt;}
.y1d_c00291{bottom:149.813333pt;}
.y1c_c00291{bottom:186.613333pt;}
.y1b_c00291{bottom:223.413333pt;}
.y1a_c00291{bottom:260.213333pt;}
.y19_c00291{bottom:297.013333pt;}
.y18_c00291{bottom:333.813333pt;}
.y17_c00291{bottom:370.613333pt;}
.y16_c00291{bottom:407.413333pt;}
.y15_c00291{bottom:444.213333pt;}
.y14_c00291{bottom:481.013333pt;}
.y13_c00291{bottom:517.813333pt;}
.y12_c00291{bottom:554.613333pt;}
.y11_c00291{bottom:591.413333pt;}
.y10_c00291{bottom:628.213333pt;}
.yf_c00291{bottom:665.013333pt;}
.ye_c00291{bottom:701.813333pt;}
.yd_c00291{bottom:738.613333pt;}
.yc_c00291{bottom:775.413333pt;}
.yb_c00291{bottom:812.213333pt;}
.ya_c00291{bottom:849.013333pt;}
.y9_c00291{bottom:885.813333pt;}
.y8_c00291{bottom:922.613333pt;}
.y7_c00291{bottom:959.413333pt;}
.y6_c00291{bottom:996.213333pt;}
.y2_c00291{bottom:1043.573333pt;}
.h3_c00291{height:18.240000pt;}
.h2_c00291{height:57.375000pt;}
.h4_c00291{height:57.781250pt;}
.h1_c00291{height:1089.333333pt;}
.h0_c00291{height:1122.666667pt;}
.w2_c00291{width:26.880000pt;}
.w1_c00291{width:760.000000pt;}
.w0_c00291{width:793.333333pt;}
.x0_c00291{left:0.000000pt;}
.x1_c00291{left:16.666667pt;}
.x2_c00291{left:97.279933pt;}
.x5_c00291{left:135.080133pt;}
.x3_c00291{left:390.012933pt;}
.x4_c00291{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a260fe9478d2788dd81325ce.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00292;src:url('chunks/assets/font_4329421a6e1dc18d52b76222.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.113281;font-style: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;}
.ls6_c00292{letter-spacing:-0.021600px;}
.ls4_c00292{letter-spacing:-0.014400px;}
.ls3_c00292{letter-spacing:0.000000px;}
.ls0_c00292{letter-spacing:0.014400px;}
.ls2_c00292{letter-spacing:0.036000px;}
.ls5_c00292{letter-spacing:0.043200px;}
.ls1_c00292{letter-spacing:29.991000px;}
.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:-20.030400px;}
.ws1_c00292{word-spacing:0.000000px;}
._1_c00292{width:1.019400px;}
._8_c00292{width:2.505000px;}
._5_c00292{width:4.478400px;}
._3_c00292{width:6.220800px;}
._4_c00292{width:7.653600px;}
._9_c00292{width:12.600000px;}
._a_c00292{width:13.902600px;}
._2_c00292{width:15.070500px;}
._b_c00292{width:18.583200px;}
._6_c00292{width:21.772800px;}
._c_c00292{width:23.227200px;}
._d_c00292{width:24.234300px;}
._7_c00292{width:90.008100px;}
._0_c00292{width:1146.683400px;}
.fc1_c00292{color:transparent;}
.fc0_c00292{color:rgb(0,0,0);}
.fs0_c00292{font-size:72.000000px;}
.y0_c00292{bottom:0.000000px;}
.y4_c00292{bottom:3.960000px;}
.y1_c00292{bottom:18.750000px;}
.y2_c00292{bottom:40.020030px;}
.y3_c00292{bottom:54.450030px;}
.y1c_c00292{bottom:130.740030px;}
.y1b_c00292{bottom:172.140000px;}
.y1a_c00292{bottom:213.540000px;}
.y19_c00292{bottom:254.940000px;}
.y18_c00292{bottom:296.340000px;}
.y17_c00292{bottom:337.740000px;}
.y16_c00292{bottom:379.140000px;}
.y15_c00292{bottom:420.540000px;}
.y14_c00292{bottom:461.940000px;}
.y13_c00292{bottom:503.340000px;}
.y12_c00292{bottom:544.740000px;}
.y11_c00292{bottom:586.140000px;}
.y10_c00292{bottom:627.540000px;}
.yf_c00292{bottom:686.580000px;}
.ye_c00292{bottom:748.140000px;}
.yd_c00292{bottom:789.540000px;}
.yc_c00292{bottom:830.940000px;}
.yb_c00292{bottom:872.340000px;}
.ya_c00292{bottom:913.740000px;}
.y9_c00292{bottom:955.140000px;}
.y8_c00292{bottom:996.540000px;}
.y7_c00292{bottom:1037.940000px;}
.y6_c00292{bottom:1079.340000px;}
.y5_c00292{bottom:1120.740000px;}
.h3_c00292{height:20.520000px;}
.h2_c00292{height:64.546875px;}
.h4_c00292{height:65.003906px;}
.h1_c00292{height:1225.500000px;}
.h0_c00292{height:1263.000000px;}
.w2_c00292{width:30.240000px;}
.w1_c00292{width:855.000000px;}
.w0_c00292{width:892.500000px;}
.x0_c00292{left:0.000000px;}
.x1_c00292{left:18.750000px;}
.x4_c00292{left:109.439925px;}
.x3_c00292{left:128.190000px;}
.x2_c00292{left:136.440000px;}
.x5_c00292{left:151.965150px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls6_c00292{letter-spacing:-0.019200pt;}
.ls4_c00292{letter-spacing:-0.012800pt;}
.ls3_c00292{letter-spacing:0.000000pt;}
.ls0_c00292{letter-spacing:0.012800pt;}
.ls2_c00292{letter-spacing:0.032000pt;}
.ls5_c00292{letter-spacing:0.038400pt;}
.ls1_c00292{letter-spacing:26.658667pt;}
.ws0_c00292{word-spacing:-17.804800pt;}
.ws1_c00292{word-spacing:0.000000pt;}
._1_c00292{width:0.906133pt;}
._8_c00292{width:2.226667pt;}
._5_c00292{width:3.980800pt;}
._3_c00292{width:5.529600pt;}
._4_c00292{width:6.803200pt;}
._9_c00292{width:11.200000pt;}
._a_c00292{width:12.357867pt;}
._2_c00292{width:13.396000pt;}
._b_c00292{width:16.518400pt;}
._6_c00292{width:19.353600pt;}
._c_c00292{width:20.646400pt;}
._d_c00292{width:21.541600pt;}
._7_c00292{width:80.007200pt;}
._0_c00292{width:1019.274133pt;}
.fs0_c00292{font-size:64.000000pt;}
.y0_c00292{bottom:0.000000pt;}
.y4_c00292{bottom:3.520000pt;}
.y1_c00292{bottom:16.666667pt;}
.y2_c00292{bottom:35.573360pt;}
.y3_c00292{bottom:48.400027pt;}
.y1c_c00292{bottom:116.213360pt;}
.y1b_c00292{bottom:153.013333pt;}
.y1a_c00292{bottom:189.813333pt;}
.y19_c00292{bottom:226.613333pt;}
.y18_c00292{bottom:263.413333pt;}
.y17_c00292{bottom:300.213333pt;}
.y16_c00292{bottom:337.013333pt;}
.y15_c00292{bottom:373.813333pt;}
.y14_c00292{bottom:410.613333pt;}
.y13_c00292{bottom:447.413333pt;}
.y12_c00292{bottom:484.213333pt;}
.y11_c00292{bottom:521.013333pt;}
.y10_c00292{bottom:557.813333pt;}
.yf_c00292{bottom:610.293333pt;}
.ye_c00292{bottom:665.013333pt;}
.yd_c00292{bottom:701.813333pt;}
.yc_c00292{bottom:738.613333pt;}
.yb_c00292{bottom:775.413333pt;}
.ya_c00292{bottom:812.213333pt;}
.y9_c00292{bottom:849.013333pt;}
.y8_c00292{bottom:885.813333pt;}
.y7_c00292{bottom:922.613333pt;}
.y6_c00292{bottom:959.413333pt;}
.y5_c00292{bottom:996.213333pt;}
.h3_c00292{height:18.240000pt;}
.h2_c00292{height:57.375000pt;}
.h4_c00292{height:57.781250pt;}
.h1_c00292{height:1089.333333pt;}
.h0_c00292{height:1122.666667pt;}
.w2_c00292{width:26.880000pt;}
.w1_c00292{width:760.000000pt;}
.w0_c00292{width:793.333333pt;}
.x0_c00292{left:0.000000pt;}
.x1_c00292{left:16.666667pt;}
.x4_c00292{left:97.279933pt;}
.x3_c00292{left:113.946667pt;}
.x2_c00292{left:121.280000pt;}
.x5_c00292{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2c5df99c299447453a1295c.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00293{vertical-align:0.000000px;}
.ls2_c00293{letter-spacing:-0.014400px;}
.ls1_c00293{letter-spacing:0.000000px;}
.ls0_c00293{letter-spacing:0.014400px;}
.sc__c00293{text-shadow:none;}
.sc0_c00293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00293{-webkit-text-stroke:0px transparent;}
.sc0_c00293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00293{word-spacing:-20.030400px;}
.ws1_c00293{word-spacing:0.000000px;}
._a_c00293{margin-left:-1.000500px;}
._d_c00293{width:1.164900px;}
._2_c00293{width:2.728800px;}
._c_c00293{width:3.794400px;}
._4_c00293{width:6.098400px;}
._5_c00293{width:7.166100px;}
._b_c00293{width:8.222400px;}
._3_c00293{width:12.672000px;}
._7_c00293{width:13.862400px;}
._1_c00293{width:15.904800px;}
._8_c00293{width:18.583200px;}
._9_c00293{width:33.761400px;}
._6_c00293{width:90.008100px;}
._0_c00293{width:2079.683700px;}
.fc1_c00293{color:transparent;}
.fc0_c00293{color:rgb(0,0,0);}
.fs0_c00293{font-size:72.000000px;}
.y0_c00293{bottom:0.000000px;}
.y5_c00293{bottom:3.960000px;}
.y1_c00293{bottom:18.750000px;}
.y3_c00293{bottom:40.020030px;}
.y4_c00293{bottom:54.450030px;}
.y1c_c00293{bottom:118.140030px;}
.y1b_c00293{bottom:177.540000px;}
.y1a_c00293{bottom:236.940000px;}
.y19_c00293{bottom:278.340000px;}
.y18_c00293{bottom:319.740000px;}
.y17_c00293{bottom:361.140000px;}
.y16_c00293{bottom:402.540000px;}
.y15_c00293{bottom:443.940000px;}
.y14_c00293{bottom:485.340000px;}
.y13_c00293{bottom:526.740000px;}
.y12_c00293{bottom:568.140000px;}
.y11_c00293{bottom:609.540000px;}
.y10_c00293{bottom:650.940000px;}
.yf_c00293{bottom:692.340000px;}
.ye_c00293{bottom:733.740000px;}
.yd_c00293{bottom:792.780000px;}
.yc_c00293{bottom:854.340000px;}
.yb_c00293{bottom:913.740000px;}
.ya_c00293{bottom:955.140000px;}
.y9_c00293{bottom:996.540000px;}
.y8_c00293{bottom:1037.940000px;}
.y7_c00293{bottom:1079.340000px;}
.y6_c00293{bottom:1120.740000px;}
.y2_c00293{bottom:1174.020000px;}
.h3_c00293{height:20.520000px;}
.h2_c00293{height:64.546875px;}
.h1_c00293{height:1225.500000px;}
.h0_c00293{height:1263.000000px;}
.w2_c00293{width:30.240000px;}
.w1_c00293{width:855.000000px;}
.w0_c00293{width:892.500000px;}
.x0_c00293{left:0.000000px;}
.x1_c00293{left:18.750000px;}
.x2_c00293{left:109.439925px;}
.x5_c00293{left:151.965150px;}
.x3_c00293{left:438.764550px;}
.x4_c00293{left:735.510000px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls2_c00293{letter-spacing:-0.012800pt;}
.ls1_c00293{letter-spacing:0.000000pt;}
.ls0_c00293{letter-spacing:0.012800pt;}
.ws0_c00293{word-spacing:-17.804800pt;}
.ws1_c00293{word-spacing:0.000000pt;}
._a_c00293{margin-left:-0.889333pt;}
._d_c00293{width:1.035467pt;}
._2_c00293{width:2.425600pt;}
._c_c00293{width:3.372800pt;}
._4_c00293{width:5.420800pt;}
._5_c00293{width:6.369867pt;}
._b_c00293{width:7.308800pt;}
._3_c00293{width:11.264000pt;}
._7_c00293{width:12.322133pt;}
._1_c00293{width:14.137600pt;}
._8_c00293{width:16.518400pt;}
._9_c00293{width:30.010133pt;}
._6_c00293{width:80.007200pt;}
._0_c00293{width:1848.607733pt;}
.fs0_c00293{font-size:64.000000pt;}
.y0_c00293{bottom:0.000000pt;}
.y5_c00293{bottom:3.520000pt;}
.y1_c00293{bottom:16.666667pt;}
.y3_c00293{bottom:35.573360pt;}
.y4_c00293{bottom:48.400027pt;}
.y1c_c00293{bottom:105.013360pt;}
.y1b_c00293{bottom:157.813333pt;}
.y1a_c00293{bottom:210.613333pt;}
.y19_c00293{bottom:247.413333pt;}
.y18_c00293{bottom:284.213333pt;}
.y17_c00293{bottom:321.013333pt;}
.y16_c00293{bottom:357.813333pt;}
.y15_c00293{bottom:394.613333pt;}
.y14_c00293{bottom:431.413333pt;}
.y13_c00293{bottom:468.213333pt;}
.y12_c00293{bottom:505.013333pt;}
.y11_c00293{bottom:541.813333pt;}
.y10_c00293{bottom:578.613333pt;}
.yf_c00293{bottom:615.413333pt;}
.ye_c00293{bottom:652.213333pt;}
.yd_c00293{bottom:704.693333pt;}
.yc_c00293{bottom:759.413333pt;}
.yb_c00293{bottom:812.213333pt;}
.ya_c00293{bottom:849.013333pt;}
.y9_c00293{bottom:885.813333pt;}
.y8_c00293{bottom:922.613333pt;}
.y7_c00293{bottom:959.413333pt;}
.y6_c00293{bottom:996.213333pt;}
.y2_c00293{bottom:1043.573333pt;}
.h3_c00293{height:18.240000pt;}
.h2_c00293{height:57.375000pt;}
.h1_c00293{height:1089.333333pt;}
.h0_c00293{height:1122.666667pt;}
.w2_c00293{width:26.880000pt;}
.w1_c00293{width:760.000000pt;}
.w0_c00293{width:793.333333pt;}
.x0_c00293{left:0.000000pt;}
.x1_c00293{left:16.666667pt;}
.x2_c00293{left:97.279933pt;}
.x5_c00293{left:135.080133pt;}
.x3_c00293{left:390.012933pt;}
.x4_c00293{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c3f65871986fac63330e177c.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00294{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00294{vertical-align:0.000000px;}
.ls3_c00294{letter-spacing:-0.014400px;}
.ls2_c00294{letter-spacing:0.000000px;}
.ls0_c00294{letter-spacing:0.014400px;}
.ls1_c00294{letter-spacing:0.036000px;}
.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;}
}
.ws0_c00294{word-spacing:-20.030400px;}
.ws1_c00294{word-spacing:-20.016000px;}
.ws2_c00294{word-spacing:0.000000px;}
._4_c00294{width:1.116900px;}
._11_c00294{width:2.163300px;}
._d_c00294{width:3.437100px;}
._a_c00294{width:5.140800px;}
._c_c00294{width:6.638400px;}
._b_c00294{width:9.302400px;}
._3_c00294{width:12.981600px;}
._8_c00294{width:14.385600px;}
._7_c00294{width:15.940800px;}
._10_c00294{width:17.199600px;}
._5_c00294{width:25.279200px;}
._e_c00294{width:27.640800px;}
._2_c00294{width:29.066400px;}
._9_c00294{width:32.047200px;}
._6_c00294{width:34.552800px;}
._f_c00294{width:47.240100px;}
._1_c00294{width:90.008100px;}
._0_c00294{width:1146.683400px;}
.fc1_c00294{color:transparent;}
.fc0_c00294{color:rgb(0,0,0);}
.fs0_c00294{font-size:72.000000px;}
.y0_c00294{bottom:0.000000px;}
.y4_c00294{bottom:3.960000px;}
.y1_c00294{bottom:18.750000px;}
.y2_c00294{bottom:40.020030px;}
.y3_c00294{bottom:54.450030px;}
.y1d_c00294{bottom:107.340030px;}
.y1c_c00294{bottom:148.740000px;}
.y1b_c00294{bottom:190.140000px;}
.y1a_c00294{bottom:231.540000px;}
.y19_c00294{bottom:272.940000px;}
.y18_c00294{bottom:314.340000px;}
.y17_c00294{bottom:355.740000px;}
.y16_c00294{bottom:397.140000px;}
.y15_c00294{bottom:438.540000px;}
.y14_c00294{bottom:479.940000px;}
.y13_c00294{bottom:521.340000px;}
.y12_c00294{bottom:562.740000px;}
.y11_c00294{bottom:604.140000px;}
.y10_c00294{bottom:645.540000px;}
.yf_c00294{bottom:686.940000px;}
.ye_c00294{bottom:728.340000px;}
.yd_c00294{bottom:769.740000px;}
.yc_c00294{bottom:811.140000px;}
.yb_c00294{bottom:852.540000px;}
.ya_c00294{bottom:893.940000px;}
.y9_c00294{bottom:935.340000px;}
.y8_c00294{bottom:976.740000px;}
.y7_c00294{bottom:1018.140000px;}
.y6_c00294{bottom:1059.540000px;}
.y5_c00294{bottom:1118.580000px;}
.h3_c00294{height:20.520000px;}
.h2_c00294{height:64.546875px;}
.h1_c00294{height:1225.500000px;}
.h0_c00294{height:1263.000000px;}
.w2_c00294{width:30.240000px;}
.w1_c00294{width:855.000000px;}
.w0_c00294{width:892.500000px;}
.x0_c00294{left:0.000000px;}
.x1_c00294{left:18.750000px;}
.x4_c00294{left:109.439925px;}
.x3_c00294{left:128.190000px;}
.x2_c00294{left:136.440000px;}
.x5_c00294{left:151.965150px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls3_c00294{letter-spacing:-0.012800pt;}
.ls2_c00294{letter-spacing:0.000000pt;}
.ls0_c00294{letter-spacing:0.012800pt;}
.ls1_c00294{letter-spacing:0.032000pt;}
.ws0_c00294{word-spacing:-17.804800pt;}
.ws1_c00294{word-spacing:-17.792000pt;}
.ws2_c00294{word-spacing:0.000000pt;}
._4_c00294{width:0.992800pt;}
._11_c00294{width:1.922933pt;}
._d_c00294{width:3.055200pt;}
._a_c00294{width:4.569600pt;}
._c_c00294{width:5.900800pt;}
._b_c00294{width:8.268800pt;}
._3_c00294{width:11.539200pt;}
._8_c00294{width:12.787200pt;}
._7_c00294{width:14.169600pt;}
._10_c00294{width:15.288533pt;}
._5_c00294{width:22.470400pt;}
._e_c00294{width:24.569600pt;}
._2_c00294{width:25.836800pt;}
._9_c00294{width:28.486400pt;}
._6_c00294{width:30.713600pt;}
._f_c00294{width:41.991200pt;}
._1_c00294{width:80.007200pt;}
._0_c00294{width:1019.274133pt;}
.fs0_c00294{font-size:64.000000pt;}
.y0_c00294{bottom:0.000000pt;}
.y4_c00294{bottom:3.520000pt;}
.y1_c00294{bottom:16.666667pt;}
.y2_c00294{bottom:35.573360pt;}
.y3_c00294{bottom:48.400027pt;}
.y1d_c00294{bottom:95.413360pt;}
.y1c_c00294{bottom:132.213333pt;}
.y1b_c00294{bottom:169.013333pt;}
.y1a_c00294{bottom:205.813333pt;}
.y19_c00294{bottom:242.613333pt;}
.y18_c00294{bottom:279.413333pt;}
.y17_c00294{bottom:316.213333pt;}
.y16_c00294{bottom:353.013333pt;}
.y15_c00294{bottom:389.813333pt;}
.y14_c00294{bottom:426.613333pt;}
.y13_c00294{bottom:463.413333pt;}
.y12_c00294{bottom:500.213333pt;}
.y11_c00294{bottom:537.013333pt;}
.y10_c00294{bottom:573.813333pt;}
.yf_c00294{bottom:610.613333pt;}
.ye_c00294{bottom:647.413333pt;}
.yd_c00294{bottom:684.213333pt;}
.yc_c00294{bottom:721.013333pt;}
.yb_c00294{bottom:757.813333pt;}
.ya_c00294{bottom:794.613333pt;}
.y9_c00294{bottom:831.413333pt;}
.y8_c00294{bottom:868.213333pt;}
.y7_c00294{bottom:905.013333pt;}
.y6_c00294{bottom:941.813333pt;}
.y5_c00294{bottom:994.293333pt;}
.h3_c00294{height:18.240000pt;}
.h2_c00294{height:57.375000pt;}
.h1_c00294{height:1089.333333pt;}
.h0_c00294{height:1122.666667pt;}
.w2_c00294{width:26.880000pt;}
.w1_c00294{width:760.000000pt;}
.w0_c00294{width:793.333333pt;}
.x0_c00294{left:0.000000pt;}
.x1_c00294{left:16.666667pt;}
.x4_c00294{left:97.279933pt;}
.x3_c00294{left:113.946667pt;}
.x2_c00294{left:121.280000pt;}
.x5_c00294{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7f91622e81e5399eaff38624.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls3_c00295{letter-spacing:-0.014400px;}
.ls2_c00295{letter-spacing:0.000000px;}
.ls0_c00295{letter-spacing:0.014400px;}
.ls1_c00295{letter-spacing:0.036000px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00295{word-spacing:-20.030400px;}
.ws1_c00295{word-spacing:0.000000px;}
._6_c00295{margin-left:-1.012500px;}
._10_c00295{width:2.963400px;}
._7_c00295{width:4.924800px;}
._a_c00295{width:6.364800px;}
._5_c00295{width:9.309600px;}
._3_c00295{width:10.672500px;}
._11_c00295{width:12.483600px;}
._4_c00295{width:14.054400px;}
._f_c00295{width:15.194700px;}
._b_c00295{width:18.783900px;}
._d_c00295{width:23.141700px;}
._9_c00295{width:25.365000px;}
._e_c00295{width:27.169500px;}
._c_c00295{width:28.792800px;}
._8_c00295{width:31.536000px;}
._12_c00295{width:34.603200px;}
._2_c00295{width:46.490400px;}
._1_c00295{width:89.993700px;}
._0_c00295{width:2079.683700px;}
.fc1_c00295{color:transparent;}
.fc0_c00295{color:rgb(0,0,0);}
.fs0_c00295{font-size:72.000000px;}
.y0_c00295{bottom:0.000000px;}
.y5_c00295{bottom:3.960000px;}
.y1_c00295{bottom:18.750000px;}
.y3_c00295{bottom:40.020030px;}
.y4_c00295{bottom:54.450030px;}
.y1d_c00295{bottom:110.940015px;}
.y1c_c00295{bottom:152.340000px;}
.y1b_c00295{bottom:193.740000px;}
.y1a_c00295{bottom:235.140000px;}
.y19_c00295{bottom:276.540000px;}
.y18_c00295{bottom:335.580000px;}
.y17_c00295{bottom:397.140000px;}
.y16_c00295{bottom:438.540000px;}
.y15_c00295{bottom:479.940000px;}
.y14_c00295{bottom:521.340000px;}
.y13_c00295{bottom:562.740000px;}
.y12_c00295{bottom:604.140000px;}
.y11_c00295{bottom:645.540000px;}
.y10_c00295{bottom:686.940000px;}
.yf_c00295{bottom:728.340000px;}
.ye_c00295{bottom:769.740000px;}
.yd_c00295{bottom:811.140000px;}
.yc_c00295{bottom:852.540000px;}
.yb_c00295{bottom:893.940000px;}
.ya_c00295{bottom:935.340000px;}
.y9_c00295{bottom:976.740000px;}
.y8_c00295{bottom:1018.140000px;}
.y7_c00295{bottom:1059.540000px;}
.y6_c00295{bottom:1118.580000px;}
.y2_c00295{bottom:1174.020000px;}
.h3_c00295{height:20.520000px;}
.h2_c00295{height:64.546875px;}
.h1_c00295{height:1225.500000px;}
.h0_c00295{height:1263.000000px;}
.w2_c00295{width:30.240000px;}
.w1_c00295{width:855.000000px;}
.w0_c00295{width:892.500000px;}
.x0_c00295{left:0.000000px;}
.x1_c00295{left:18.750000px;}
.x2_c00295{left:109.439925px;}
.x5_c00295{left:151.965150px;}
.x3_c00295{left:438.764550px;}
.x4_c00295{left:735.510000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls3_c00295{letter-spacing:-0.012800pt;}
.ls2_c00295{letter-spacing:0.000000pt;}
.ls0_c00295{letter-spacing:0.012800pt;}
.ls1_c00295{letter-spacing:0.032000pt;}
.ws0_c00295{word-spacing:-17.804800pt;}
.ws1_c00295{word-spacing:0.000000pt;}
._6_c00295{margin-left:-0.900000pt;}
._10_c00295{width:2.634133pt;}
._7_c00295{width:4.377600pt;}
._a_c00295{width:5.657600pt;}
._5_c00295{width:8.275200pt;}
._3_c00295{width:9.486667pt;}
._11_c00295{width:11.096533pt;}
._4_c00295{width:12.492800pt;}
._f_c00295{width:13.506400pt;}
._b_c00295{width:16.696800pt;}
._d_c00295{width:20.570400pt;}
._9_c00295{width:22.546667pt;}
._e_c00295{width:24.150667pt;}
._c_c00295{width:25.593600pt;}
._8_c00295{width:28.032000pt;}
._12_c00295{width:30.758400pt;}
._2_c00295{width:41.324800pt;}
._1_c00295{width:79.994400pt;}
._0_c00295{width:1848.607733pt;}
.fs0_c00295{font-size:64.000000pt;}
.y0_c00295{bottom:0.000000pt;}
.y5_c00295{bottom:3.520000pt;}
.y1_c00295{bottom:16.666667pt;}
.y3_c00295{bottom:35.573360pt;}
.y4_c00295{bottom:48.400027pt;}
.y1d_c00295{bottom:98.613347pt;}
.y1c_c00295{bottom:135.413333pt;}
.y1b_c00295{bottom:172.213333pt;}
.y1a_c00295{bottom:209.013333pt;}
.y19_c00295{bottom:245.813333pt;}
.y18_c00295{bottom:298.293333pt;}
.y17_c00295{bottom:353.013333pt;}
.y16_c00295{bottom:389.813333pt;}
.y15_c00295{bottom:426.613333pt;}
.y14_c00295{bottom:463.413333pt;}
.y13_c00295{bottom:500.213333pt;}
.y12_c00295{bottom:537.013333pt;}
.y11_c00295{bottom:573.813333pt;}
.y10_c00295{bottom:610.613333pt;}
.yf_c00295{bottom:647.413333pt;}
.ye_c00295{bottom:684.213333pt;}
.yd_c00295{bottom:721.013333pt;}
.yc_c00295{bottom:757.813333pt;}
.yb_c00295{bottom:794.613333pt;}
.ya_c00295{bottom:831.413333pt;}
.y9_c00295{bottom:868.213333pt;}
.y8_c00295{bottom:905.013333pt;}
.y7_c00295{bottom:941.813333pt;}
.y6_c00295{bottom:994.293333pt;}
.y2_c00295{bottom:1043.573333pt;}
.h3_c00295{height:18.240000pt;}
.h2_c00295{height:57.375000pt;}
.h1_c00295{height:1089.333333pt;}
.h0_c00295{height:1122.666667pt;}
.w2_c00295{width:26.880000pt;}
.w1_c00295{width:760.000000pt;}
.w0_c00295{width:793.333333pt;}
.x0_c00295{left:0.000000pt;}
.x1_c00295{left:16.666667pt;}
.x2_c00295{left:97.279933pt;}
.x5_c00295{left:135.080133pt;}
.x3_c00295{left:390.012933pt;}
.x4_c00295{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3301566b9216264b79b78691.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00296{letter-spacing:-0.014400px;}
.ls2_c00296{letter-spacing:0.000000px;}
.ls0_c00296{letter-spacing:0.014400px;}
.ls1_c00296{letter-spacing:0.036000px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00296{word-spacing:-20.030400px;}
.ws1_c00296{word-spacing:-20.016000px;}
.ws2_c00296{word-spacing:0.000000px;}
._b_c00296{margin-left:-1.010100px;}
._5_c00296{width:1.616100px;}
._a_c00296{width:2.751600px;}
._1_c00296{width:4.154100px;}
._2_c00296{width:5.315400px;}
._e_c00296{width:7.147800px;}
._3_c00296{width:8.287200px;}
._c_c00296{width:9.842400px;}
._f_c00296{width:11.023200px;}
._9_c00296{width:12.312000px;}
._8_c00296{width:14.270400px;}
._7_c00296{width:16.264800px;}
._6_c00296{width:18.259200px;}
._11_c00296{width:23.407200px;}
._4_c00296{width:30.132000px;}
._10_c00296{width:33.669540px;}
._d_c00296{width:90.008100px;}
._0_c00296{width:1146.683400px;}
.fc1_c00296{color:transparent;}
.fc0_c00296{color:rgb(0,0,0);}
.fs0_c00296{font-size:72.000000px;}
.y0_c00296{bottom:0.000000px;}
.y4_c00296{bottom:3.960000px;}
.y1_c00296{bottom:18.750000px;}
.y2_c00296{bottom:40.020030px;}
.y3_c00296{bottom:54.450030px;}
.y1c_c00296{bottom:130.740030px;}
.y1b_c00296{bottom:172.140000px;}
.y1a_c00296{bottom:213.540000px;}
.y19_c00296{bottom:254.940000px;}
.y18_c00296{bottom:296.340000px;}
.y17_c00296{bottom:337.740000px;}
.y16_c00296{bottom:379.140000px;}
.y15_c00296{bottom:420.540000px;}
.y14_c00296{bottom:461.940000px;}
.y13_c00296{bottom:503.340000px;}
.y12_c00296{bottom:562.380000px;}
.y11_c00296{bottom:623.940000px;}
.y10_c00296{bottom:665.340000px;}
.yf_c00296{bottom:706.740000px;}
.ye_c00296{bottom:748.140000px;}
.yd_c00296{bottom:789.540000px;}
.yc_c00296{bottom:830.940000px;}
.yb_c00296{bottom:872.340000px;}
.ya_c00296{bottom:913.740000px;}
.y9_c00296{bottom:955.140000px;}
.y8_c00296{bottom:996.540000px;}
.y7_c00296{bottom:1037.940000px;}
.y6_c00296{bottom:1079.340000px;}
.y5_c00296{bottom:1120.740000px;}
.h3_c00296{height:20.520000px;}
.h2_c00296{height:64.546875px;}
.h1_c00296{height:1225.500000px;}
.h0_c00296{height:1263.000000px;}
.w2_c00296{width:30.240000px;}
.w1_c00296{width:855.000000px;}
.w0_c00296{width:892.500000px;}
.x0_c00296{left:0.000000px;}
.x1_c00296{left:18.750000px;}
.x4_c00296{left:109.439925px;}
.x3_c00296{left:128.190000px;}
.x2_c00296{left:136.440000px;}
.x5_c00296{left:151.965150px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls3_c00296{letter-spacing:-0.012800pt;}
.ls2_c00296{letter-spacing:0.000000pt;}
.ls0_c00296{letter-spacing:0.012800pt;}
.ls1_c00296{letter-spacing:0.032000pt;}
.ws0_c00296{word-spacing:-17.804800pt;}
.ws1_c00296{word-spacing:-17.792000pt;}
.ws2_c00296{word-spacing:0.000000pt;}
._b_c00296{margin-left:-0.897867pt;}
._5_c00296{width:1.436533pt;}
._a_c00296{width:2.445867pt;}
._1_c00296{width:3.692533pt;}
._2_c00296{width:4.724800pt;}
._e_c00296{width:6.353600pt;}
._3_c00296{width:7.366400pt;}
._c_c00296{width:8.748800pt;}
._f_c00296{width:9.798400pt;}
._9_c00296{width:10.944000pt;}
._8_c00296{width:12.684800pt;}
._7_c00296{width:14.457600pt;}
._6_c00296{width:16.230400pt;}
._11_c00296{width:20.806400pt;}
._4_c00296{width:26.784000pt;}
._10_c00296{width:29.928480pt;}
._d_c00296{width:80.007200pt;}
._0_c00296{width:1019.274133pt;}
.fs0_c00296{font-size:64.000000pt;}
.y0_c00296{bottom:0.000000pt;}
.y4_c00296{bottom:3.520000pt;}
.y1_c00296{bottom:16.666667pt;}
.y2_c00296{bottom:35.573360pt;}
.y3_c00296{bottom:48.400027pt;}
.y1c_c00296{bottom:116.213360pt;}
.y1b_c00296{bottom:153.013333pt;}
.y1a_c00296{bottom:189.813333pt;}
.y19_c00296{bottom:226.613333pt;}
.y18_c00296{bottom:263.413333pt;}
.y17_c00296{bottom:300.213333pt;}
.y16_c00296{bottom:337.013333pt;}
.y15_c00296{bottom:373.813333pt;}
.y14_c00296{bottom:410.613333pt;}
.y13_c00296{bottom:447.413333pt;}
.y12_c00296{bottom:499.893333pt;}
.y11_c00296{bottom:554.613333pt;}
.y10_c00296{bottom:591.413333pt;}
.yf_c00296{bottom:628.213333pt;}
.ye_c00296{bottom:665.013333pt;}
.yd_c00296{bottom:701.813333pt;}
.yc_c00296{bottom:738.613333pt;}
.yb_c00296{bottom:775.413333pt;}
.ya_c00296{bottom:812.213333pt;}
.y9_c00296{bottom:849.013333pt;}
.y8_c00296{bottom:885.813333pt;}
.y7_c00296{bottom:922.613333pt;}
.y6_c00296{bottom:959.413333pt;}
.y5_c00296{bottom:996.213333pt;}
.h3_c00296{height:18.240000pt;}
.h2_c00296{height:57.375000pt;}
.h1_c00296{height:1089.333333pt;}
.h0_c00296{height:1122.666667pt;}
.w2_c00296{width:26.880000pt;}
.w1_c00296{width:760.000000pt;}
.w0_c00296{width:793.333333pt;}
.x0_c00296{left:0.000000pt;}
.x1_c00296{left:16.666667pt;}
.x4_c00296{left:97.279933pt;}
.x3_c00296{left:113.946667pt;}
.x2_c00296{left:121.280000pt;}
.x5_c00296{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dddf2d941dacf5d932212b6b.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c00297{letter-spacing:-0.014400px;}
.ls3_c00297{letter-spacing:0.000000px;}
.ls0_c00297{letter-spacing:0.014400px;}
.ls1_c00297{letter-spacing:0.036000px;}
.ls2_c00297{letter-spacing:90.037980px;}
.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:-20.052000px;}
.ws0_c00297{word-spacing:-20.030400px;}
.ws2_c00297{word-spacing:0.000000px;}
._c_c00297{width:1.000800px;}
._d_c00297{width:2.498400px;}
._7_c00297{width:3.528000px;}
._e_c00297{width:9.928800px;}
._3_c00297{width:11.923200px;}
._5_c00297{width:13.943700px;}
._4_c00297{width:15.086700px;}
._8_c00297{width:17.186400px;}
._9_c00297{width:18.273600px;}
._1_c00297{width:21.484800px;}
._a_c00297{width:24.648900px;}
._b_c00297{width:25.756500px;}
._2_c00297{width:27.950400px;}
._6_c00297{width:29.001600px;}
._0_c00297{width:2079.683700px;}
.fc1_c00297{color:transparent;}
.fc0_c00297{color:rgb(0,0,0);}
.fs0_c00297{font-size:72.000000px;}
.y0_c00297{bottom:0.000000px;}
.y5_c00297{bottom:3.960000px;}
.y1_c00297{bottom:18.750000px;}
.y3_c00297{bottom:40.020030px;}
.y4_c00297{bottom:54.450030px;}
.y1c_c00297{bottom:172.140000px;}
.y1b_c00297{bottom:213.540000px;}
.y1a_c00297{bottom:254.940000px;}
.y19_c00297{bottom:296.340000px;}
.y18_c00297{bottom:337.740000px;}
.y17_c00297{bottom:379.140000px;}
.y16_c00297{bottom:420.540000px;}
.y15_c00297{bottom:479.580000px;}
.y14_c00297{bottom:541.140000px;}
.y13_c00297{bottom:582.540000px;}
.y12_c00297{bottom:623.940000px;}
.y11_c00297{bottom:665.340000px;}
.y10_c00297{bottom:706.740000px;}
.yf_c00297{bottom:748.140000px;}
.ye_c00297{bottom:789.540000px;}
.yd_c00297{bottom:830.940000px;}
.yc_c00297{bottom:872.340000px;}
.yb_c00297{bottom:913.740000px;}
.ya_c00297{bottom:955.140000px;}
.y9_c00297{bottom:996.540000px;}
.y8_c00297{bottom:1037.940000px;}
.y7_c00297{bottom:1079.340000px;}
.y6_c00297{bottom:1120.740000px;}
.y2_c00297{bottom:1174.020000px;}
.h3_c00297{height:20.520000px;}
.h2_c00297{height:64.546875px;}
.h1_c00297{height:1225.500000px;}
.h0_c00297{height:1263.000000px;}
.w2_c00297{width:30.240000px;}
.w1_c00297{width:855.000000px;}
.w0_c00297{width:892.500000px;}
.x0_c00297{left:0.000000px;}
.x1_c00297{left:18.750000px;}
.x2_c00297{left:109.439925px;}
.x5_c00297{left:151.965150px;}
.x3_c00297{left:438.764550px;}
.x4_c00297{left:735.510000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls4_c00297{letter-spacing:-0.012800pt;}
.ls3_c00297{letter-spacing:0.000000pt;}
.ls0_c00297{letter-spacing:0.012800pt;}
.ls1_c00297{letter-spacing:0.032000pt;}
.ls2_c00297{letter-spacing:80.033760pt;}
.ws1_c00297{word-spacing:-17.824000pt;}
.ws0_c00297{word-spacing:-17.804800pt;}
.ws2_c00297{word-spacing:0.000000pt;}
._c_c00297{width:0.889600pt;}
._d_c00297{width:2.220800pt;}
._7_c00297{width:3.136000pt;}
._e_c00297{width:8.825600pt;}
._3_c00297{width:10.598400pt;}
._5_c00297{width:12.394400pt;}
._4_c00297{width:13.410400pt;}
._8_c00297{width:15.276800pt;}
._9_c00297{width:16.243200pt;}
._1_c00297{width:19.097600pt;}
._a_c00297{width:21.910133pt;}
._b_c00297{width:22.894667pt;}
._2_c00297{width:24.844800pt;}
._6_c00297{width:25.779200pt;}
._0_c00297{width:1848.607733pt;}
.fs0_c00297{font-size:64.000000pt;}
.y0_c00297{bottom:0.000000pt;}
.y5_c00297{bottom:3.520000pt;}
.y1_c00297{bottom:16.666667pt;}
.y3_c00297{bottom:35.573360pt;}
.y4_c00297{bottom:48.400027pt;}
.y1c_c00297{bottom:153.013333pt;}
.y1b_c00297{bottom:189.813333pt;}
.y1a_c00297{bottom:226.613333pt;}
.y19_c00297{bottom:263.413333pt;}
.y18_c00297{bottom:300.213333pt;}
.y17_c00297{bottom:337.013333pt;}
.y16_c00297{bottom:373.813333pt;}
.y15_c00297{bottom:426.293333pt;}
.y14_c00297{bottom:481.013333pt;}
.y13_c00297{bottom:517.813333pt;}
.y12_c00297{bottom:554.613333pt;}
.y11_c00297{bottom:591.413333pt;}
.y10_c00297{bottom:628.213333pt;}
.yf_c00297{bottom:665.013333pt;}
.ye_c00297{bottom:701.813333pt;}
.yd_c00297{bottom:738.613333pt;}
.yc_c00297{bottom:775.413333pt;}
.yb_c00297{bottom:812.213333pt;}
.ya_c00297{bottom:849.013333pt;}
.y9_c00297{bottom:885.813333pt;}
.y8_c00297{bottom:922.613333pt;}
.y7_c00297{bottom:959.413333pt;}
.y6_c00297{bottom:996.213333pt;}
.y2_c00297{bottom:1043.573333pt;}
.h3_c00297{height:18.240000pt;}
.h2_c00297{height:57.375000pt;}
.h1_c00297{height:1089.333333pt;}
.h0_c00297{height:1122.666667pt;}
.w2_c00297{width:26.880000pt;}
.w1_c00297{width:760.000000pt;}
.w0_c00297{width:793.333333pt;}
.x0_c00297{left:0.000000pt;}
.x1_c00297{left:16.666667pt;}
.x2_c00297{left:97.279933pt;}
.x5_c00297{left:135.080133pt;}
.x3_c00297{left:390.012933pt;}
.x4_c00297{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_edca4be58f325395287d3640.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00298;src:url('chunks/assets/font_52388869d714d64629c52ddd.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls7_c00298{letter-spacing:-0.014400px;}
.ls6_c00298{letter-spacing:0.000000px;}
.ls0_c00298{letter-spacing:0.014400px;}
.ls8_c00298{letter-spacing:0.036000px;}
.lsa_c00298{letter-spacing:0.170496px;}
.ls2_c00298{letter-spacing:0.191160px;}
.ls5_c00298{letter-spacing:0.240360px;}
.ls4_c00298{letter-spacing:0.399600px;}
.ls3_c00298{letter-spacing:0.410256px;}
.ls9_c00298{letter-spacing:0.479520px;}
.lsb_c00298{letter-spacing:0.527472px;}
.ls1_c00298{letter-spacing:6.764400px;}
.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:-20.030400px;}
.ws1_c00298{word-spacing:-20.016000px;}
.ws2_c00298{word-spacing:-15.222096px;}
.ws3_c00298{word-spacing:0.000000px;}
._9_c00298{margin-left:-1.225440px;}
._a_c00298{width:1.047240px;}
._3_c00298{width:2.232000px;}
._4_c00298{width:3.535200px;}
._6_c00298{width:6.689700px;}
._5_c00298{width:10.065600px;}
._7_c00298{width:18.288000px;}
._8_c00298{width:21.212100px;}
._2_c00298{width:22.406400px;}
._1_c00298{width:32.839200px;}
._0_c00298{width:1146.683400px;}
.fc1_c00298{color:transparent;}
.fc0_c00298{color:rgb(0,0,0);}
.fs1_c00298{font-size:53.280000px;}
.fs0_c00298{font-size:72.000000px;}
.y0_c00298{bottom:0.000000px;}
.y4_c00298{bottom:3.960000px;}
.y1_c00298{bottom:18.750000px;}
.y2_c00298{bottom:40.020030px;}
.y3_c00298{bottom:54.450030px;}
.y15_c00298{bottom:131.460000px;}
.y14_c00298{bottom:172.860000px;}
.y13_c00298{bottom:192.300000px;}
.y12_c00298{bottom:205.260000px;}
.y11_c00298{bottom:605.940000px;}
.y10_c00298{bottom:665.340000px;}
.yf_c00298{bottom:706.740000px;}
.ye_c00298{bottom:748.140000px;}
.yd_c00298{bottom:789.540000px;}
.yc_c00298{bottom:830.940000px;}
.yb_c00298{bottom:872.340000px;}
.ya_c00298{bottom:913.740000px;}
.y9_c00298{bottom:955.140000px;}
.y8_c00298{bottom:996.540000px;}
.y7_c00298{bottom:1037.940000px;}
.y6_c00298{bottom:1079.340000px;}
.y5_c00298{bottom:1120.740000px;}
.h3_c00298{height:20.520000px;}
.h2_c00298{height:64.546875px;}
.h1_c00298{height:1225.500000px;}
.h0_c00298{height:1263.000000px;}
.w2_c00298{width:30.240000px;}
.w1_c00298{width:855.000000px;}
.w0_c00298{width:892.500000px;}
.x0_c00298{left:0.000000px;}
.x1_c00298{left:18.750000px;}
.x4_c00298{left:109.439925px;}
.x3_c00298{left:128.190000px;}
.x2_c00298{left:136.440000px;}
.x5_c00298{left:151.965150px;}
.x7_c00298{left:181.206000px;}
.x6_c00298{left:717.989850px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls7_c00298{letter-spacing:-0.012800pt;}
.ls6_c00298{letter-spacing:0.000000pt;}
.ls0_c00298{letter-spacing:0.012800pt;}
.ls8_c00298{letter-spacing:0.032000pt;}
.lsa_c00298{letter-spacing:0.151552pt;}
.ls2_c00298{letter-spacing:0.169920pt;}
.ls5_c00298{letter-spacing:0.213653pt;}
.ls4_c00298{letter-spacing:0.355200pt;}
.ls3_c00298{letter-spacing:0.364672pt;}
.ls9_c00298{letter-spacing:0.426240pt;}
.lsb_c00298{letter-spacing:0.468864pt;}
.ls1_c00298{letter-spacing:6.012800pt;}
.ws0_c00298{word-spacing:-17.804800pt;}
.ws1_c00298{word-spacing:-17.792000pt;}
.ws2_c00298{word-spacing:-13.530752pt;}
.ws3_c00298{word-spacing:0.000000pt;}
._9_c00298{margin-left:-1.089280pt;}
._a_c00298{width:0.930880pt;}
._3_c00298{width:1.984000pt;}
._4_c00298{width:3.142400pt;}
._6_c00298{width:5.946400pt;}
._5_c00298{width:8.947200pt;}
._7_c00298{width:16.256000pt;}
._8_c00298{width:18.855200pt;}
._2_c00298{width:19.916800pt;}
._1_c00298{width:29.190400pt;}
._0_c00298{width:1019.274133pt;}
.fs1_c00298{font-size:47.360000pt;}
.fs0_c00298{font-size:64.000000pt;}
.y0_c00298{bottom:0.000000pt;}
.y4_c00298{bottom:3.520000pt;}
.y1_c00298{bottom:16.666667pt;}
.y2_c00298{bottom:35.573360pt;}
.y3_c00298{bottom:48.400027pt;}
.y15_c00298{bottom:116.853333pt;}
.y14_c00298{bottom:153.653333pt;}
.y13_c00298{bottom:170.933333pt;}
.y12_c00298{bottom:182.453333pt;}
.y11_c00298{bottom:538.613333pt;}
.y10_c00298{bottom:591.413333pt;}
.yf_c00298{bottom:628.213333pt;}
.ye_c00298{bottom:665.013333pt;}
.yd_c00298{bottom:701.813333pt;}
.yc_c00298{bottom:738.613333pt;}
.yb_c00298{bottom:775.413333pt;}
.ya_c00298{bottom:812.213333pt;}
.y9_c00298{bottom:849.013333pt;}
.y8_c00298{bottom:885.813333pt;}
.y7_c00298{bottom:922.613333pt;}
.y6_c00298{bottom:959.413333pt;}
.y5_c00298{bottom:996.213333pt;}
.h3_c00298{height:18.240000pt;}
.h2_c00298{height:57.375000pt;}
.h1_c00298{height:1089.333333pt;}
.h0_c00298{height:1122.666667pt;}
.w2_c00298{width:26.880000pt;}
.w1_c00298{width:760.000000pt;}
.w0_c00298{width:793.333333pt;}
.x0_c00298{left:0.000000pt;}
.x1_c00298{left:16.666667pt;}
.x4_c00298{left:97.279933pt;}
.x3_c00298{left:113.946667pt;}
.x2_c00298{left:121.280000pt;}
.x5_c00298{left:135.080133pt;}
.x7_c00298{left:161.072000pt;}
.x6_c00298{left:638.213200pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a88490734c2e1ae1ef252102.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00299;src:url('chunks/assets/font_4b0690d9d47e34c89e90ab93.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.113281;font-style: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;}
.ls2_c00299{letter-spacing:0.000000px;}
.ls0_c00299{letter-spacing:0.014400px;}
.ls4_c00299{letter-spacing:0.410256px;}
.ls1_c00299{letter-spacing:0.479640px;}
.ls3_c00299{letter-spacing:0.527472px;}
.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:-20.030400px;}
.ws1_c00299{word-spacing:-15.222096px;}
.ws2_c00299{word-spacing:0.000000px;}
._3_c00299{margin-left:-1.065600px;}
._2_c00299{width:1.900800px;}
._1_c00299{width:10.900800px;}
._0_c00299{width:2079.683700px;}
.fc1_c00299{color:transparent;}
.fc0_c00299{color:rgb(0,0,0);}
.fs1_c00299{font-size:53.280000px;}
.fs0_c00299{font-size:72.000000px;}
.y0_c00299{bottom:0.000000px;}
.y5_c00299{bottom:3.960000px;}
.y1_c00299{bottom:18.750000px;}
.y3_c00299{bottom:40.020030px;}
.y4_c00299{bottom:54.450030px;}
.yb_c00299{bottom:91.860015px;}
.ya_c00299{bottom:104.820030px;}
.y9_c00299{bottom:996.540000px;}
.y8_c00299{bottom:1037.940000px;}
.y7_c00299{bottom:1079.340000px;}
.y6_c00299{bottom:1120.740000px;}
.y2_c00299{bottom:1174.020000px;}
.h3_c00299{height:20.520000px;}
.h5_c00299{height:47.764688px;}
.h2_c00299{height:64.546875px;}
.h4_c00299{height:65.003906px;}
.h1_c00299{height:1225.500000px;}
.h0_c00299{height:1263.000000px;}
.w2_c00299{width:30.240000px;}
.w1_c00299{width:855.000000px;}
.w0_c00299{width:892.500000px;}
.x0_c00299{left:0.000000px;}
.x1_c00299{left:18.750000px;}
.x2_c00299{left:109.439925px;}
.x5_c00299{left:151.965150px;}
.x7_c00299{left:300.161550px;}
.x3_c00299{left:438.764550px;}
.x4_c00299{left:735.510000px;}
.x6_c00299{left:754.440000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls2_c00299{letter-spacing:0.000000pt;}
.ls0_c00299{letter-spacing:0.012800pt;}
.ls4_c00299{letter-spacing:0.364672pt;}
.ls1_c00299{letter-spacing:0.426347pt;}
.ls3_c00299{letter-spacing:0.468864pt;}
.ws0_c00299{word-spacing:-17.804800pt;}
.ws1_c00299{word-spacing:-13.530752pt;}
.ws2_c00299{word-spacing:0.000000pt;}
._3_c00299{margin-left:-0.947200pt;}
._2_c00299{width:1.689600pt;}
._1_c00299{width:9.689600pt;}
._0_c00299{width:1848.607733pt;}
.fs1_c00299{font-size:47.360000pt;}
.fs0_c00299{font-size:64.000000pt;}
.y0_c00299{bottom:0.000000pt;}
.y5_c00299{bottom:3.520000pt;}
.y1_c00299{bottom:16.666667pt;}
.y3_c00299{bottom:35.573360pt;}
.y4_c00299{bottom:48.400027pt;}
.yb_c00299{bottom:81.653347pt;}
.ya_c00299{bottom:93.173360pt;}
.y9_c00299{bottom:885.813333pt;}
.y8_c00299{bottom:922.613333pt;}
.y7_c00299{bottom:959.413333pt;}
.y6_c00299{bottom:996.213333pt;}
.y2_c00299{bottom:1043.573333pt;}
.h3_c00299{height:18.240000pt;}
.h5_c00299{height:42.457500pt;}
.h2_c00299{height:57.375000pt;}
.h4_c00299{height:57.781250pt;}
.h1_c00299{height:1089.333333pt;}
.h0_c00299{height:1122.666667pt;}
.w2_c00299{width:26.880000pt;}
.w1_c00299{width:760.000000pt;}
.w0_c00299{width:793.333333pt;}
.x0_c00299{left:0.000000pt;}
.x1_c00299{left:16.666667pt;}
.x2_c00299{left:97.279933pt;}
.x5_c00299{left:135.080133pt;}
.x7_c00299{left:266.810267pt;}
.x3_c00299{left:390.012933pt;}
.x4_c00299{left:653.786667pt;}
.x6_c00299{left:670.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e9514634042e750d4d407675.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00300{letter-spacing:-0.014400px;}
.ls1_c00300{letter-spacing:0.000000px;}
.ls0_c00300{letter-spacing:0.014400px;}
.sc__c00300{text-shadow:none;}
.sc0_c00300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00300{-webkit-text-stroke:0px transparent;}
.sc0_c00300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00300{word-spacing:-20.030400px;}
.ws1_c00300{word-spacing:0.000000px;}
._b_c00300{width:1.204500px;}
._6_c00300{width:4.348800px;}
._1_c00300{width:6.062400px;}
._2_c00300{width:7.833600px;}
._4_c00300{width:8.908500px;}
._a_c00300{width:10.943100px;}
._9_c00300{width:13.119300px;}
._5_c00300{width:14.471100px;}
._7_c00300{width:15.580500px;}
._8_c00300{width:27.777600px;}
._3_c00300{width:33.790800px;}
._0_c00300{width:1146.683400px;}
.fc1_c00300{color:transparent;}
.fc0_c00300{color:rgb(0,0,0);}
.fs0_c00300{font-size:72.000000px;}
.y0_c00300{bottom:0.000000px;}
.y4_c00300{bottom:3.960000px;}
.y1_c00300{bottom:18.750000px;}
.y2_c00300{bottom:40.020030px;}
.y3_c00300{bottom:54.450030px;}
.y1c_c00300{bottom:114.540030px;}
.y1b_c00300{bottom:173.940000px;}
.y1a_c00300{bottom:233.340000px;}
.y19_c00300{bottom:292.740000px;}
.y18_c00300{bottom:334.140000px;}
.y17_c00300{bottom:375.540000px;}
.y16_c00300{bottom:416.940000px;}
.y15_c00300{bottom:458.340000px;}
.y14_c00300{bottom:499.740000px;}
.y13_c00300{bottom:541.140000px;}
.y12_c00300{bottom:582.540000px;}
.y11_c00300{bottom:623.940000px;}
.y10_c00300{bottom:665.340000px;}
.yf_c00300{bottom:706.740000px;}
.ye_c00300{bottom:748.140000px;}
.yd_c00300{bottom:789.540000px;}
.yc_c00300{bottom:830.940000px;}
.yb_c00300{bottom:872.340000px;}
.ya_c00300{bottom:913.740000px;}
.y9_c00300{bottom:955.140000px;}
.y8_c00300{bottom:996.540000px;}
.y7_c00300{bottom:1037.940000px;}
.y6_c00300{bottom:1079.340000px;}
.y5_c00300{bottom:1120.740000px;}
.h3_c00300{height:20.520000px;}
.h2_c00300{height:64.546875px;}
.h1_c00300{height:1225.500000px;}
.h0_c00300{height:1263.000000px;}
.w2_c00300{width:30.240000px;}
.w1_c00300{width:855.000000px;}
.w0_c00300{width:892.500000px;}
.x0_c00300{left:0.000000px;}
.x1_c00300{left:18.750000px;}
.x5_c00300{left:109.439925px;}
.x3_c00300{left:128.190000px;}
.x2_c00300{left:136.440000px;}
.x4_c00300{left:151.965150px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls2_c00300{letter-spacing:-0.012800pt;}
.ls1_c00300{letter-spacing:0.000000pt;}
.ls0_c00300{letter-spacing:0.012800pt;}
.ws0_c00300{word-spacing:-17.804800pt;}
.ws1_c00300{word-spacing:0.000000pt;}
._b_c00300{width:1.070667pt;}
._6_c00300{width:3.865600pt;}
._1_c00300{width:5.388800pt;}
._2_c00300{width:6.963200pt;}
._4_c00300{width:7.918667pt;}
._a_c00300{width:9.727200pt;}
._9_c00300{width:11.661600pt;}
._5_c00300{width:12.863200pt;}
._7_c00300{width:13.849333pt;}
._8_c00300{width:24.691200pt;}
._3_c00300{width:30.036267pt;}
._0_c00300{width:1019.274133pt;}
.fs0_c00300{font-size:64.000000pt;}
.y0_c00300{bottom:0.000000pt;}
.y4_c00300{bottom:3.520000pt;}
.y1_c00300{bottom:16.666667pt;}
.y2_c00300{bottom:35.573360pt;}
.y3_c00300{bottom:48.400027pt;}
.y1c_c00300{bottom:101.813360pt;}
.y1b_c00300{bottom:154.613333pt;}
.y1a_c00300{bottom:207.413333pt;}
.y19_c00300{bottom:260.213333pt;}
.y18_c00300{bottom:297.013333pt;}
.y17_c00300{bottom:333.813333pt;}
.y16_c00300{bottom:370.613333pt;}
.y15_c00300{bottom:407.413333pt;}
.y14_c00300{bottom:444.213333pt;}
.y13_c00300{bottom:481.013333pt;}
.y12_c00300{bottom:517.813333pt;}
.y11_c00300{bottom:554.613333pt;}
.y10_c00300{bottom:591.413333pt;}
.yf_c00300{bottom:628.213333pt;}
.ye_c00300{bottom:665.013333pt;}
.yd_c00300{bottom:701.813333pt;}
.yc_c00300{bottom:738.613333pt;}
.yb_c00300{bottom:775.413333pt;}
.ya_c00300{bottom:812.213333pt;}
.y9_c00300{bottom:849.013333pt;}
.y8_c00300{bottom:885.813333pt;}
.y7_c00300{bottom:922.613333pt;}
.y6_c00300{bottom:959.413333pt;}
.y5_c00300{bottom:996.213333pt;}
.h3_c00300{height:18.240000pt;}
.h2_c00300{height:57.375000pt;}
.h1_c00300{height:1089.333333pt;}
.h0_c00300{height:1122.666667pt;}
.w2_c00300{width:26.880000pt;}
.w1_c00300{width:760.000000pt;}
.w0_c00300{width:793.333333pt;}
.x0_c00300{left:0.000000pt;}
.x1_c00300{left:16.666667pt;}
.x5_c00300{left:97.279933pt;}
.x3_c00300{left:113.946667pt;}
.x2_c00300{left:121.280000pt;}
.x4_c00300{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76fdad54b2c026c93b929b46.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00301;src:url('chunks/assets/font_6c6dce953f962f90d9c0f53e.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.113281;font-style: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;}
.ls5_c00301{letter-spacing:-0.021600px;}
.ls6_c00301{letter-spacing:-0.014400px;}
.ls4_c00301{letter-spacing:0.000000px;}
.ls0_c00301{letter-spacing:0.014400px;}
.ls2_c00301{letter-spacing:0.036000px;}
.ls1_c00301{letter-spacing:5.136840px;}
.ls3_c00301{letter-spacing:11.970600px;}
.sc__c00301{text-shadow:none;}
.sc0_c00301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00301{-webkit-text-stroke:0px transparent;}
.sc0_c00301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00301{word-spacing:-20.052000px;}
.ws0_c00301{word-spacing:-20.030400px;}
.ws2_c00301{word-spacing:-20.001600px;}
.ws3_c00301{word-spacing:0.000000px;}
._3_c00301{width:1.015200px;}
._4_c00301{width:2.028900px;}
._2_c00301{width:3.816000px;}
._6_c00301{width:5.697300px;}
._5_c00301{width:7.632000px;}
._c_c00301{width:9.057900px;}
._8_c00301{width:11.015700px;}
._7_c00301{width:12.067200px;}
._b_c00301{width:21.660300px;}
._1_c00301{width:29.931300px;}
._d_c00301{width:35.064000px;}
._a_c00301{width:36.864000px;}
._9_c00301{width:40.053600px;}
._0_c00301{width:2079.683700px;}
.fc1_c00301{color:transparent;}
.fc0_c00301{color:rgb(0,0,0);}
.fs0_c00301{font-size:72.000000px;}
.y0_c00301{bottom:0.000000px;}
.y5_c00301{bottom:3.960000px;}
.y1_c00301{bottom:18.750000px;}
.y3_c00301{bottom:40.020030px;}
.y4_c00301{bottom:54.450030px;}
.y1c_c00301{bottom:143.340000px;}
.y1b_c00301{bottom:184.740000px;}
.y1a_c00301{bottom:226.140000px;}
.y19_c00301{bottom:267.540000px;}
.y18_c00301{bottom:308.940000px;}
.y17_c00301{bottom:350.340000px;}
.y16_c00301{bottom:391.740000px;}
.y15_c00301{bottom:433.140000px;}
.y14_c00301{bottom:474.540000px;}
.y13_c00301{bottom:515.940000px;}
.y12_c00301{bottom:557.340000px;}
.y11_c00301{bottom:598.740000px;}
.y10_c00301{bottom:640.140000px;}
.yf_c00301{bottom:699.180000px;}
.ye_c00301{bottom:751.740000px;}
.yd_c00301{bottom:793.140000px;}
.yc_c00301{bottom:834.540000px;}
.yb_c00301{bottom:875.940000px;}
.ya_c00301{bottom:917.340000px;}
.y9_c00301{bottom:958.740000px;}
.y8_c00301{bottom:1017.780000px;}
.y7_c00301{bottom:1070.340000px;}
.y6_c00301{bottom:1120.740000px;}
.y2_c00301{bottom:1174.020000px;}
.h3_c00301{height:20.520000px;}
.h2_c00301{height:64.546875px;}
.h4_c00301{height:65.003906px;}
.h1_c00301{height:1225.500000px;}
.h0_c00301{height:1263.000000px;}
.w2_c00301{width:30.240000px;}
.w1_c00301{width:855.000000px;}
.w0_c00301{width:892.500000px;}
.x0_c00301{left:0.000000px;}
.x1_c00301{left:18.750000px;}
.x2_c00301{left:109.439925px;}
.x5_c00301{left:151.965150px;}
.x3_c00301{left:438.764550px;}
.x4_c00301{left:735.510000px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls5_c00301{letter-spacing:-0.019200pt;}
.ls6_c00301{letter-spacing:-0.012800pt;}
.ls4_c00301{letter-spacing:0.000000pt;}
.ls0_c00301{letter-spacing:0.012800pt;}
.ls2_c00301{letter-spacing:0.032000pt;}
.ls1_c00301{letter-spacing:4.566080pt;}
.ls3_c00301{letter-spacing:10.640533pt;}
.ws1_c00301{word-spacing:-17.824000pt;}
.ws0_c00301{word-spacing:-17.804800pt;}
.ws2_c00301{word-spacing:-17.779200pt;}
.ws3_c00301{word-spacing:0.000000pt;}
._3_c00301{width:0.902400pt;}
._4_c00301{width:1.803467pt;}
._2_c00301{width:3.392000pt;}
._6_c00301{width:5.064267pt;}
._5_c00301{width:6.784000pt;}
._c_c00301{width:8.051467pt;}
._8_c00301{width:9.791733pt;}
._7_c00301{width:10.726400pt;}
._b_c00301{width:19.253600pt;}
._1_c00301{width:26.605600pt;}
._d_c00301{width:31.168000pt;}
._a_c00301{width:32.768000pt;}
._9_c00301{width:35.603200pt;}
._0_c00301{width:1848.607733pt;}
.fs0_c00301{font-size:64.000000pt;}
.y0_c00301{bottom:0.000000pt;}
.y5_c00301{bottom:3.520000pt;}
.y1_c00301{bottom:16.666667pt;}
.y3_c00301{bottom:35.573360pt;}
.y4_c00301{bottom:48.400027pt;}
.y1c_c00301{bottom:127.413333pt;}
.y1b_c00301{bottom:164.213333pt;}
.y1a_c00301{bottom:201.013333pt;}
.y19_c00301{bottom:237.813333pt;}
.y18_c00301{bottom:274.613333pt;}
.y17_c00301{bottom:311.413333pt;}
.y16_c00301{bottom:348.213333pt;}
.y15_c00301{bottom:385.013333pt;}
.y14_c00301{bottom:421.813333pt;}
.y13_c00301{bottom:458.613333pt;}
.y12_c00301{bottom:495.413333pt;}
.y11_c00301{bottom:532.213333pt;}
.y10_c00301{bottom:569.013333pt;}
.yf_c00301{bottom:621.493333pt;}
.ye_c00301{bottom:668.213333pt;}
.yd_c00301{bottom:705.013333pt;}
.yc_c00301{bottom:741.813333pt;}
.yb_c00301{bottom:778.613333pt;}
.ya_c00301{bottom:815.413333pt;}
.y9_c00301{bottom:852.213333pt;}
.y8_c00301{bottom:904.693333pt;}
.y7_c00301{bottom:951.413333pt;}
.y6_c00301{bottom:996.213333pt;}
.y2_c00301{bottom:1043.573333pt;}
.h3_c00301{height:18.240000pt;}
.h2_c00301{height:57.375000pt;}
.h4_c00301{height:57.781250pt;}
.h1_c00301{height:1089.333333pt;}
.h0_c00301{height:1122.666667pt;}
.w2_c00301{width:26.880000pt;}
.w1_c00301{width:760.000000pt;}
.w0_c00301{width:793.333333pt;}
.x0_c00301{left:0.000000pt;}
.x1_c00301{left:16.666667pt;}
.x2_c00301{left:97.279933pt;}
.x5_c00301{left:135.080133pt;}
.x3_c00301{left:390.012933pt;}
.x4_c00301{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_38dce3d5d8a094a9c9da9d2d.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00302{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.ls2_c00302{letter-spacing:-0.014400px;}
.ls1_c00302{letter-spacing:0.000000px;}
.ls0_c00302{letter-spacing:0.014400px;}
.ls3_c00302{letter-spacing:0.036000px;}
.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:-20.030400px;}
.ws1_c00302{word-spacing:0.000000px;}
._4_c00302{margin-left:-1.022400px;}
._2_c00302{width:1.614600px;}
._a_c00302{width:3.539100px;}
._1_c00302{width:5.106960px;}
._9_c00302{width:6.840000px;}
._b_c00302{width:8.416800px;}
._c_c00302{width:9.456300px;}
._5_c00302{width:13.550400px;}
._8_c00302{width:15.739200px;}
._6_c00302{width:17.064000px;}
._3_c00302{width:19.019700px;}
._7_c00302{width:21.578400px;}
._d_c00302{width:23.083200px;}
._e_c00302{width:30.924000px;}
._0_c00302{width:1146.683400px;}
.fc1_c00302{color:transparent;}
.fc0_c00302{color:rgb(0,0,0);}
.fs0_c00302{font-size:72.000000px;}
.y0_c00302{bottom:0.000000px;}
.y4_c00302{bottom:3.960000px;}
.y1_c00302{bottom:18.750000px;}
.y2_c00302{bottom:40.020030px;}
.y3_c00302{bottom:54.450030px;}
.y1d_c00302{bottom:105.180030px;}
.y1c_c00302{bottom:148.740000px;}
.y1b_c00302{bottom:190.140000px;}
.y1a_c00302{bottom:231.540000px;}
.y19_c00302{bottom:272.940000px;}
.y18_c00302{bottom:314.340000px;}
.y17_c00302{bottom:355.740000px;}
.y16_c00302{bottom:397.140000px;}
.y15_c00302{bottom:438.540000px;}
.y14_c00302{bottom:479.940000px;}
.y13_c00302{bottom:521.340000px;}
.y12_c00302{bottom:562.740000px;}
.y11_c00302{bottom:604.140000px;}
.y10_c00302{bottom:645.540000px;}
.yf_c00302{bottom:686.940000px;}
.ye_c00302{bottom:728.340000px;}
.yd_c00302{bottom:769.740000px;}
.yc_c00302{bottom:811.140000px;}
.yb_c00302{bottom:852.540000px;}
.ya_c00302{bottom:893.940000px;}
.y9_c00302{bottom:935.340000px;}
.y8_c00302{bottom:976.740000px;}
.y7_c00302{bottom:1018.140000px;}
.y6_c00302{bottom:1059.540000px;}
.y5_c00302{bottom:1118.580000px;}
.h3_c00302{height:20.520000px;}
.h2_c00302{height:64.546875px;}
.h1_c00302{height:1225.500000px;}
.h0_c00302{height:1263.000000px;}
.w2_c00302{width:30.240000px;}
.w1_c00302{width:855.000000px;}
.w0_c00302{width:892.500000px;}
.x0_c00302{left:0.000000px;}
.x1_c00302{left:18.750000px;}
.x4_c00302{left:109.439925px;}
.x3_c00302{left:128.190000px;}
.x2_c00302{left:136.440000px;}
.x5_c00302{left:151.965150px;}
.x6_c00302{left:305.050350px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls2_c00302{letter-spacing:-0.012800pt;}
.ls1_c00302{letter-spacing:0.000000pt;}
.ls0_c00302{letter-spacing:0.012800pt;}
.ls3_c00302{letter-spacing:0.032000pt;}
.ws0_c00302{word-spacing:-17.804800pt;}
.ws1_c00302{word-spacing:0.000000pt;}
._4_c00302{margin-left:-0.908800pt;}
._2_c00302{width:1.435200pt;}
._a_c00302{width:3.145867pt;}
._1_c00302{width:4.539520pt;}
._9_c00302{width:6.080000pt;}
._b_c00302{width:7.481600pt;}
._c_c00302{width:8.405600pt;}
._5_c00302{width:12.044800pt;}
._8_c00302{width:13.990400pt;}
._6_c00302{width:15.168000pt;}
._3_c00302{width:16.906400pt;}
._7_c00302{width:19.180800pt;}
._d_c00302{width:20.518400pt;}
._e_c00302{width:27.488000pt;}
._0_c00302{width:1019.274133pt;}
.fs0_c00302{font-size:64.000000pt;}
.y0_c00302{bottom:0.000000pt;}
.y4_c00302{bottom:3.520000pt;}
.y1_c00302{bottom:16.666667pt;}
.y2_c00302{bottom:35.573360pt;}
.y3_c00302{bottom:48.400027pt;}
.y1d_c00302{bottom:93.493360pt;}
.y1c_c00302{bottom:132.213333pt;}
.y1b_c00302{bottom:169.013333pt;}
.y1a_c00302{bottom:205.813333pt;}
.y19_c00302{bottom:242.613333pt;}
.y18_c00302{bottom:279.413333pt;}
.y17_c00302{bottom:316.213333pt;}
.y16_c00302{bottom:353.013333pt;}
.y15_c00302{bottom:389.813333pt;}
.y14_c00302{bottom:426.613333pt;}
.y13_c00302{bottom:463.413333pt;}
.y12_c00302{bottom:500.213333pt;}
.y11_c00302{bottom:537.013333pt;}
.y10_c00302{bottom:573.813333pt;}
.yf_c00302{bottom:610.613333pt;}
.ye_c00302{bottom:647.413333pt;}
.yd_c00302{bottom:684.213333pt;}
.yc_c00302{bottom:721.013333pt;}
.yb_c00302{bottom:757.813333pt;}
.ya_c00302{bottom:794.613333pt;}
.y9_c00302{bottom:831.413333pt;}
.y8_c00302{bottom:868.213333pt;}
.y7_c00302{bottom:905.013333pt;}
.y6_c00302{bottom:941.813333pt;}
.y5_c00302{bottom:994.293333pt;}
.h3_c00302{height:18.240000pt;}
.h2_c00302{height:57.375000pt;}
.h1_c00302{height:1089.333333pt;}
.h0_c00302{height:1122.666667pt;}
.w2_c00302{width:26.880000pt;}
.w1_c00302{width:760.000000pt;}
.w0_c00302{width:793.333333pt;}
.x0_c00302{left:0.000000pt;}
.x1_c00302{left:16.666667pt;}
.x4_c00302{left:97.279933pt;}
.x3_c00302{left:113.946667pt;}
.x2_c00302{left:121.280000pt;}
.x5_c00302{left:135.080133pt;}
.x6_c00302{left:271.155867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_23634531d7b4043cab3266be.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00303;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.113281;font-style: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;}
.ls2_c00303{letter-spacing:0.000000px;}
.ls0_c00303{letter-spacing:0.119040px;}
.ls1_c00303{letter-spacing:0.119640px;}
.ls4_c00303{letter-spacing:0.317376px;}
.ls3_c00303{letter-spacing:0.359136px;}
.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:-23.577696px;}
.ws1_c00303{word-spacing:-23.535936px;}
.ws2_c00303{word-spacing:0.000000px;}
._3_c00303{width:842.984880px;}
._2_c00303{width:1146.684000px;}
._1_c00303{width:1169.483940px;}
._0_c00303{width:2079.683700px;}
.fc1_c00303{color:transparent;}
.fc0_c00303{color:rgb(0,0,0);}
.fs1_c00303{font-size:53.280000px;}
.fs0_c00303{font-size:72.000000px;}
.fs2_c00303{font-size:83.520000px;}
.y0_c00303{bottom:0.000000px;}
.y1_c00303{bottom:18.750000px;}
.y6_c00303{bottom:36.420030px;}
.y5_c00303{bottom:53.340030px;}
.y4_c00303{bottom:73.860030px;}
.y3_c00303{bottom:94.740030px;}
.y1c_c00303{bottom:648.060000px;}
.y1b_c00303{bottom:686.220000px;}
.y1a_c00303{bottom:724.020000px;}
.y19_c00303{bottom:748.140000px;}
.y18_c00303{bottom:768.660000px;}
.y17_c00303{bottom:789.540000px;}
.y16_c00303{bottom:810.060000px;}
.y15_c00303{bottom:830.940000px;}
.y14_c00303{bottom:851.460000px;}
.y13_c00303{bottom:872.340000px;}
.y12_c00303{bottom:892.860000px;}
.y11_c00303{bottom:913.740000px;}
.y10_c00303{bottom:934.260000px;}
.yf_c00303{bottom:955.140000px;}
.ye_c00303{bottom:975.660000px;}
.yd_c00303{bottom:996.540000px;}
.yc_c00303{bottom:1017.060000px;}
.yb_c00303{bottom:1037.940000px;}
.ya_c00303{bottom:1058.460000px;}
.y9_c00303{bottom:1079.340000px;}
.y8_c00303{bottom:1099.860000px;}
.y7_c00303{bottom:1120.740000px;}
.y2_c00303{bottom:1174.020000px;}
.h2_c00303{height:64.546875px;}
.h3_c00303{height:65.003906px;}
.h4_c00303{height:74.874375px;}
.h1_c00303{height:1225.500000px;}
.h0_c00303{height:1263.000000px;}
.w1_c00303{width:855.000000px;}
.w0_c00303{width:892.500000px;}
.x0_c00303{left:0.000000px;}
.x1_c00303{left:18.750000px;}
.x2_c00303{left:109.439925px;}
.x5_c00303{left:130.739865px;}
.x4_c00303{left:255.277200px;}
.x3_c00303{left:414.614850px;}
.x7_c00303{left:416.552400px;}
.x6_c00303{left:746.789700px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls2_c00303{letter-spacing:0.000000pt;}
.ls0_c00303{letter-spacing:0.105813pt;}
.ls1_c00303{letter-spacing:0.106347pt;}
.ls4_c00303{letter-spacing:0.282112pt;}
.ls3_c00303{letter-spacing:0.319232pt;}
.ws0_c00303{word-spacing:-20.957952pt;}
.ws1_c00303{word-spacing:-20.920832pt;}
.ws2_c00303{word-spacing:0.000000pt;}
._3_c00303{width:749.319893pt;}
._2_c00303{width:1019.274667pt;}
._1_c00303{width:1039.541280pt;}
._0_c00303{width:1848.607733pt;}
.fs1_c00303{font-size:47.360000pt;}
.fs0_c00303{font-size:64.000000pt;}
.fs2_c00303{font-size:74.240000pt;}
.y0_c00303{bottom:0.000000pt;}
.y1_c00303{bottom:16.666667pt;}
.y6_c00303{bottom:32.373360pt;}
.y5_c00303{bottom:47.413360pt;}
.y4_c00303{bottom:65.653360pt;}
.y3_c00303{bottom:84.213360pt;}
.y1c_c00303{bottom:576.053333pt;}
.y1b_c00303{bottom:609.973333pt;}
.y1a_c00303{bottom:643.573333pt;}
.y19_c00303{bottom:665.013333pt;}
.y18_c00303{bottom:683.253333pt;}
.y17_c00303{bottom:701.813333pt;}
.y16_c00303{bottom:720.053333pt;}
.y15_c00303{bottom:738.613333pt;}
.y14_c00303{bottom:756.853333pt;}
.y13_c00303{bottom:775.413333pt;}
.y12_c00303{bottom:793.653333pt;}
.y11_c00303{bottom:812.213333pt;}
.y10_c00303{bottom:830.453333pt;}
.yf_c00303{bottom:849.013333pt;}
.ye_c00303{bottom:867.253333pt;}
.yd_c00303{bottom:885.813333pt;}
.yc_c00303{bottom:904.053333pt;}
.yb_c00303{bottom:922.613333pt;}
.ya_c00303{bottom:940.853333pt;}
.y9_c00303{bottom:959.413333pt;}
.y8_c00303{bottom:977.653333pt;}
.y7_c00303{bottom:996.213333pt;}
.y2_c00303{bottom:1043.573333pt;}
.h2_c00303{height:57.375000pt;}
.h3_c00303{height:57.781250pt;}
.h4_c00303{height:66.555000pt;}
.h1_c00303{height:1089.333333pt;}
.h0_c00303{height:1122.666667pt;}
.w1_c00303{width:760.000000pt;}
.w0_c00303{width:793.333333pt;}
.x0_c00303{left:0.000000pt;}
.x1_c00303{left:16.666667pt;}
.x2_c00303{left:97.279933pt;}
.x5_c00303{left:116.213213pt;}
.x4_c00303{left:226.913067pt;}
.x3_c00303{left:368.546533pt;}
.x7_c00303{left:370.268800pt;}
.x6_c00303{left:663.813067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc845accef0beaceb15afc88.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00304;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.113281;font-style: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;}
}
.ws0_c00304{word-spacing:0.000000px;}
._0_c00304{width:1146.683400px;}
.fc0_c00304{color:rgb(0,0,0);}
.fs0_c00304{font-size:72.000000px;}
.y0_c00304{bottom:0.000000px;}
.y1_c00304{bottom:18.750000px;}
.y3_c00304{bottom:37.860030px;}
.y2_c00304{bottom:58.380030px;}
.y5_c00304{bottom:1099.860000px;}
.y4_c00304{bottom:1120.740000px;}
.h2_c00304{height:64.546875px;}
.h3_c00304{height:65.003906px;}
.h1_c00304{height:1225.500000px;}
.h0_c00304{height:1263.000000px;}
.w1_c00304{width:855.000000px;}
.w0_c00304{width:892.500000px;}
.x0_c00304{left:0.000000px;}
.x1_c00304{left:18.750000px;}
.x3_c00304{left:109.439925px;}
.x2_c00304{left:136.440000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls0_c00304{letter-spacing:0.000000pt;}
.ws0_c00304{word-spacing:0.000000pt;}
._0_c00304{width:1019.274133pt;}
.fs0_c00304{font-size:64.000000pt;}
.y0_c00304{bottom:0.000000pt;}
.y1_c00304{bottom:16.666667pt;}
.y3_c00304{bottom:33.653360pt;}
.y2_c00304{bottom:51.893360pt;}
.y5_c00304{bottom:977.653333pt;}
.y4_c00304{bottom:996.213333pt;}
.h2_c00304{height:57.375000pt;}
.h3_c00304{height:57.781250pt;}
.h1_c00304{height:1089.333333pt;}
.h0_c00304{height:1122.666667pt;}
.w1_c00304{width:760.000000pt;}
.w0_c00304{width:793.333333pt;}
.x0_c00304{left:0.000000pt;}
.x1_c00304{left:16.666667pt;}
.x3_c00304{left:97.279933pt;}
.x2_c00304{left:121.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_3b2409a7c3cec4414c2968ab.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00305;src:url('chunks/assets/font_d75f76136072134690d81728.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00305;src:url('chunks/assets/font_8a986ef73bc575aa92e175d1.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00305{transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-ms-transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-webkit-transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,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;}
.ls2_c00305{letter-spacing:-0.014400px;}
.ls3_c00305{letter-spacing:-0.012000px;}
.ls1_c00305{letter-spacing:0.000000px;}
.ls0_c00305{letter-spacing:0.014400px;}
.ls4_c00305{letter-spacing:0.036000px;}
.sc__c00305{text-shadow:none;}
.sc0_c00305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00305{-webkit-text-stroke:0px transparent;}
.sc0_c00305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00305{word-spacing:-20.001600px;}
.ws2_c00305{word-spacing:0.000000px;}
.ws3_c00305{word-spacing:0.006000px;}
.ws0_c00305{word-spacing:5.068800px;}
._3_c00305{width:1.051200px;}
._7_c00305{width:5.868000px;}
._2_c00305{width:17.006400px;}
._1_c00305{width:18.201600px;}
._5_c00305{width:19.597562px;}
._4_c00305{width:21.902400px;}
._0_c00305{width:24.775200px;}
._8_c00305{width:28.720800px;}
._6_c00305{width:34.732800px;}
.fc1_c00305{color:transparent;}
.fc0_c00305{color:rgb(0,0,0);}
.fs0_c00305{font-size:72.000000px;}
.fs1_c00305{font-size:74.538968px;}
.y0_c00305{bottom:0.000000px;}
.y2_c00305{bottom:3.960000px;}
.y3_c00305{bottom:18.750000px;}
.y1_c00305{bottom:52.290000px;}
.y1a_c00305{bottom:209.940000px;}
.y19_c00305{bottom:251.340000px;}
.y18_c00305{bottom:292.740000px;}
.y17_c00305{bottom:334.140000px;}
.y16_c00305{bottom:375.540000px;}
.y15_c00305{bottom:416.940000px;}
.y14_c00305{bottom:458.340000px;}
.y13_c00305{bottom:499.740000px;}
.y12_c00305{bottom:541.140000px;}
.y11_c00305{bottom:582.540000px;}
.y10_c00305{bottom:623.940000px;}
.yf_c00305{bottom:686.199000px;}
.ye_c00305{bottom:727.599000px;}
.yd_c00305{bottom:748.140000px;}
.yc_c00305{bottom:789.540000px;}
.yb_c00305{bottom:830.940000px;}
.ya_c00305{bottom:872.340000px;}
.y9_c00305{bottom:913.740000px;}
.y8_c00305{bottom:955.140000px;}
.y7_c00305{bottom:996.540000px;}
.y6_c00305{bottom:1037.940000px;}
.y5_c00305{bottom:1079.340000px;}
.y4_c00305{bottom:1120.740000px;}
.h1_c00305{height:20.520000px;}
.h5_c00305{height:64.371094px;}
.h2_c00305{height:64.546875px;}
.h4_c00305{height:65.003906px;}
.h6_c00305{height:66.823020px;}
.h3_c00305{height:1225.500000px;}
.h0_c00305{height:1263.000000px;}
.w1_c00305{width:30.240000px;}
.w2_c00305{width:855.000000px;}
.w0_c00305{width:892.500000px;}
.x0_c00305{left:0.000000px;}
.x2_c00305{left:18.750000px;}
.x3_c00305{left:109.440000px;}
.x6_c00305{left:128.190000px;}
.x4_c00305{left:151.974000px;}
.x5_c00305{left:170.715000px;}
.x7_c00305{left:388.797150px;}
.x1_c00305{left:735.510000px;}
.x8_c00305{left:760.467150px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls2_c00305{letter-spacing:-0.012800pt;}
.ls3_c00305{letter-spacing:-0.010667pt;}
.ls1_c00305{letter-spacing:0.000000pt;}
.ls0_c00305{letter-spacing:0.012800pt;}
.ls4_c00305{letter-spacing:0.032000pt;}
.ws1_c00305{word-spacing:-17.779200pt;}
.ws2_c00305{word-spacing:0.000000pt;}
.ws3_c00305{word-spacing:0.005333pt;}
.ws0_c00305{word-spacing:4.505600pt;}
._3_c00305{width:0.934400pt;}
._7_c00305{width:5.216000pt;}
._2_c00305{width:15.116800pt;}
._1_c00305{width:16.179200pt;}
._5_c00305{width:17.420055pt;}
._4_c00305{width:19.468800pt;}
._0_c00305{width:22.022400pt;}
._8_c00305{width:25.529600pt;}
._6_c00305{width:30.873600pt;}
.fs0_c00305{font-size:64.000000pt;}
.fs1_c00305{font-size:66.256861pt;}
.y0_c00305{bottom:0.000000pt;}
.y2_c00305{bottom:3.520000pt;}
.y3_c00305{bottom:16.666667pt;}
.y1_c00305{bottom:46.480000pt;}
.y1a_c00305{bottom:186.613333pt;}
.y19_c00305{bottom:223.413333pt;}
.y18_c00305{bottom:260.213333pt;}
.y17_c00305{bottom:297.013333pt;}
.y16_c00305{bottom:333.813333pt;}
.y15_c00305{bottom:370.613333pt;}
.y14_c00305{bottom:407.413333pt;}
.y13_c00305{bottom:444.213333pt;}
.y12_c00305{bottom:481.013333pt;}
.y11_c00305{bottom:517.813333pt;}
.y10_c00305{bottom:554.613333pt;}
.yf_c00305{bottom:609.954667pt;}
.ye_c00305{bottom:646.754667pt;}
.yd_c00305{bottom:665.013333pt;}
.yc_c00305{bottom:701.813333pt;}
.yb_c00305{bottom:738.613333pt;}
.ya_c00305{bottom:775.413333pt;}
.y9_c00305{bottom:812.213333pt;}
.y8_c00305{bottom:849.013333pt;}
.y7_c00305{bottom:885.813333pt;}
.y6_c00305{bottom:922.613333pt;}
.y5_c00305{bottom:959.413333pt;}
.y4_c00305{bottom:996.213333pt;}
.h1_c00305{height:18.240000pt;}
.h5_c00305{height:57.218750pt;}
.h2_c00305{height:57.375000pt;}
.h4_c00305{height:57.781250pt;}
.h6_c00305{height:59.398240pt;}
.h3_c00305{height:1089.333333pt;}
.h0_c00305{height:1122.666667pt;}
.w1_c00305{width:26.880000pt;}
.w2_c00305{width:760.000000pt;}
.w0_c00305{width:793.333333pt;}
.x0_c00305{left:0.000000pt;}
.x2_c00305{left:16.666667pt;}
.x3_c00305{left:97.280000pt;}
.x6_c00305{left:113.946667pt;}
.x4_c00305{left:135.088000pt;}
.x5_c00305{left:151.746667pt;}
.x7_c00305{left:345.597467pt;}
.x1_c00305{left:653.786667pt;}
.x8_c00305{left:675.970800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_913ae75a5588084c1d647494.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00306;src:url('chunks/assets/font_41e5ba796083cc29fb99115f.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.104492;font-style: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;}
.ls2_c00306{letter-spacing:-0.014400px;}
.ls1_c00306{letter-spacing:0.000000px;}
.ls0_c00306{letter-spacing:0.014400px;}
.sc__c00306{text-shadow:none;}
.sc0_c00306{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00306{-webkit-text-stroke:0px transparent;}
.sc0_c00306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00306{word-spacing:-20.030400px;}
.ws1_c00306{word-spacing:-20.001600px;}
.ws2_c00306{word-spacing:0.000000px;}
._4_c00306{width:1.310400px;}
._1_c00306{width:3.736800px;}
._6_c00306{width:5.400000px;}
._3_c00306{width:6.602400px;}
._c_c00306{width:16.380000px;}
._8_c00306{width:17.832600px;}
._2_c00306{width:18.861000px;}
._7_c00306{width:22.413600px;}
._9_c00306{width:23.702400px;}
._a_c00306{width:25.063200px;}
._b_c00306{width:27.626400px;}
._5_c00306{width:30.218400px;}
._e_c00306{width:41.460600px;}
._d_c00306{width:42.580800px;}
._0_c00306{width:1146.683400px;}
.fc1_c00306{color:transparent;}
.fc0_c00306{color:rgb(0,0,0);}
.fs0_c00306{font-size:72.000000px;}
.y0_c00306{bottom:0.000000px;}
.y4_c00306{bottom:3.960000px;}
.y1_c00306{bottom:18.750000px;}
.y2_c00306{bottom:37.860030px;}
.y3_c00306{bottom:52.290030px;}
.y1d_c00306{bottom:127.140030px;}
.y1c_c00306{bottom:168.540000px;}
.y1b_c00306{bottom:209.940000px;}
.y1a_c00306{bottom:251.340000px;}
.y19_c00306{bottom:292.740000px;}
.y18_c00306{bottom:334.140000px;}
.y17_c00306{bottom:375.540000px;}
.y16_c00306{bottom:416.940000px;}
.y15_c00306{bottom:458.340000px;}
.y14_c00306{bottom:499.740000px;}
.y13_c00306{bottom:541.140000px;}
.y12_c00306{bottom:582.540000px;}
.y11_c00306{bottom:623.940000px;}
.y10_c00306{bottom:665.340000px;}
.yf_c00306{bottom:706.740000px;}
.ye_c00306{bottom:748.140000px;}
.yd_c00306{bottom:789.540000px;}
.yc_c00306{bottom:830.940000px;}
.yb_c00306{bottom:872.340000px;}
.ya_c00306{bottom:913.740000px;}
.y9_c00306{bottom:955.140000px;}
.y8_c00306{bottom:996.540000px;}
.y7_c00306{bottom:1037.940000px;}
.y6_c00306{bottom:1079.340000px;}
.y5_c00306{bottom:1120.740000px;}
.h3_c00306{height:20.520000px;}
.h2_c00306{height:64.546875px;}
.h1_c00306{height:1225.500000px;}
.h0_c00306{height:1263.000000px;}
.w2_c00306{width:30.240000px;}
.w1_c00306{width:855.000000px;}
.w0_c00306{width:892.500000px;}
.x0_c00306{left:0.000000px;}
.x1_c00306{left:18.750000px;}
.x4_c00306{left:109.439925px;}
.x3_c00306{left:128.190000px;}
.x2_c00306{left:136.440000px;}
.x5_c00306{left:151.965150px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls2_c00306{letter-spacing:-0.012800pt;}
.ls1_c00306{letter-spacing:0.000000pt;}
.ls0_c00306{letter-spacing:0.012800pt;}
.ws0_c00306{word-spacing:-17.804800pt;}
.ws1_c00306{word-spacing:-17.779200pt;}
.ws2_c00306{word-spacing:0.000000pt;}
._4_c00306{width:1.164800pt;}
._1_c00306{width:3.321600pt;}
._6_c00306{width:4.800000pt;}
._3_c00306{width:5.868800pt;}
._c_c00306{width:14.560000pt;}
._8_c00306{width:15.851200pt;}
._2_c00306{width:16.765333pt;}
._7_c00306{width:19.923200pt;}
._9_c00306{width:21.068800pt;}
._a_c00306{width:22.278400pt;}
._b_c00306{width:24.556800pt;}
._5_c00306{width:26.860800pt;}
._e_c00306{width:36.853867pt;}
._d_c00306{width:37.849600pt;}
._0_c00306{width:1019.274133pt;}
.fs0_c00306{font-size:64.000000pt;}
.y0_c00306{bottom:0.000000pt;}
.y4_c00306{bottom:3.520000pt;}
.y1_c00306{bottom:16.666667pt;}
.y2_c00306{bottom:33.653360pt;}
.y3_c00306{bottom:46.480027pt;}
.y1d_c00306{bottom:113.013360pt;}
.y1c_c00306{bottom:149.813333pt;}
.y1b_c00306{bottom:186.613333pt;}
.y1a_c00306{bottom:223.413333pt;}
.y19_c00306{bottom:260.213333pt;}
.y18_c00306{bottom:297.013333pt;}
.y17_c00306{bottom:333.813333pt;}
.y16_c00306{bottom:370.613333pt;}
.y15_c00306{bottom:407.413333pt;}
.y14_c00306{bottom:444.213333pt;}
.y13_c00306{bottom:481.013333pt;}
.y12_c00306{bottom:517.813333pt;}
.y11_c00306{bottom:554.613333pt;}
.y10_c00306{bottom:591.413333pt;}
.yf_c00306{bottom:628.213333pt;}
.ye_c00306{bottom:665.013333pt;}
.yd_c00306{bottom:701.813333pt;}
.yc_c00306{bottom:738.613333pt;}
.yb_c00306{bottom:775.413333pt;}
.ya_c00306{bottom:812.213333pt;}
.y9_c00306{bottom:849.013333pt;}
.y8_c00306{bottom:885.813333pt;}
.y7_c00306{bottom:922.613333pt;}
.y6_c00306{bottom:959.413333pt;}
.y5_c00306{bottom:996.213333pt;}
.h3_c00306{height:18.240000pt;}
.h2_c00306{height:57.375000pt;}
.h1_c00306{height:1089.333333pt;}
.h0_c00306{height:1122.666667pt;}
.w2_c00306{width:26.880000pt;}
.w1_c00306{width:760.000000pt;}
.w0_c00306{width:793.333333pt;}
.x0_c00306{left:0.000000pt;}
.x1_c00306{left:16.666667pt;}
.x4_c00306{left:97.279933pt;}
.x3_c00306{left:113.946667pt;}
.x2_c00306{left:121.280000pt;}
.x5_c00306{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10e78ac6dfdadfc3a378026a.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00307;src:url('chunks/assets/font_1455d5ebdef682af18780f96.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.104492;font-style: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;}
.ls2_c00307{letter-spacing:-0.014400px;}
.ls1_c00307{letter-spacing:0.000000px;}
.ls0_c00307{letter-spacing:0.014400px;}
.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;}
}
.ws0_c00307{word-spacing:-20.030400px;}
.ws1_c00307{word-spacing:-20.016000px;}
.ws2_c00307{word-spacing:0.000000px;}
._5_c00307{width:1.008000px;}
._8_c00307{width:2.881500px;}
._9_c00307{width:3.916800px;}
._3_c00307{width:5.313600px;}
._7_c00307{width:6.782400px;}
._2_c00307{width:8.416800px;}
._b_c00307{width:9.986400px;}
._4_c00307{width:11.527200px;}
._6_c00307{width:12.742500px;}
._c_c00307{width:23.443200px;}
._1_c00307{width:29.664000px;}
._a_c00307{width:42.199200px;}
._0_c00307{width:2079.683700px;}
.fc1_c00307{color:transparent;}
.fc0_c00307{color:rgb(0,0,0);}
.fs0_c00307{font-size:72.000000px;}
.y0_c00307{bottom:0.000000px;}
.y5_c00307{bottom:3.960000px;}
.y1_c00307{bottom:18.750000px;}
.y3_c00307{bottom:37.860030px;}
.y4_c00307{bottom:52.290030px;}
.y1e_c00307{bottom:127.140030px;}
.y1d_c00307{bottom:168.540000px;}
.y1c_c00307{bottom:209.940000px;}
.y1b_c00307{bottom:251.340000px;}
.y1a_c00307{bottom:292.740000px;}
.y19_c00307{bottom:334.140000px;}
.y18_c00307{bottom:375.540000px;}
.y17_c00307{bottom:416.940000px;}
.y16_c00307{bottom:458.340000px;}
.y15_c00307{bottom:499.740000px;}
.y14_c00307{bottom:541.140000px;}
.y13_c00307{bottom:582.540000px;}
.y12_c00307{bottom:623.940000px;}
.y11_c00307{bottom:665.340000px;}
.y10_c00307{bottom:706.740000px;}
.yf_c00307{bottom:748.140000px;}
.ye_c00307{bottom:789.540000px;}
.yd_c00307{bottom:830.940000px;}
.yc_c00307{bottom:872.340000px;}
.yb_c00307{bottom:913.740000px;}
.ya_c00307{bottom:955.140000px;}
.y9_c00307{bottom:996.540000px;}
.y8_c00307{bottom:1037.940000px;}
.y7_c00307{bottom:1079.340000px;}
.y6_c00307{bottom:1120.740000px;}
.y2_c00307{bottom:1173.660000px;}
.h3_c00307{height:20.520000px;}
.h4_c00307{height:64.371094px;}
.h2_c00307{height:64.546875px;}
.h1_c00307{height:1225.500000px;}
.h0_c00307{height:1263.000000px;}
.w2_c00307{width:30.240000px;}
.w1_c00307{width:855.000000px;}
.w0_c00307{width:892.500000px;}
.x0_c00307{left:0.000000px;}
.x1_c00307{left:18.750000px;}
.x2_c00307{left:109.439925px;}
.x5_c00307{left:151.965150px;}
.x3_c00307{left:438.764550px;}
.x4_c00307{left:735.510000px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls2_c00307{letter-spacing:-0.012800pt;}
.ls1_c00307{letter-spacing:0.000000pt;}
.ls0_c00307{letter-spacing:0.012800pt;}
.ws0_c00307{word-spacing:-17.804800pt;}
.ws1_c00307{word-spacing:-17.792000pt;}
.ws2_c00307{word-spacing:0.000000pt;}
._5_c00307{width:0.896000pt;}
._8_c00307{width:2.561333pt;}
._9_c00307{width:3.481600pt;}
._3_c00307{width:4.723200pt;}
._7_c00307{width:6.028800pt;}
._2_c00307{width:7.481600pt;}
._b_c00307{width:8.876800pt;}
._4_c00307{width:10.246400pt;}
._6_c00307{width:11.326667pt;}
._c_c00307{width:20.838400pt;}
._1_c00307{width:26.368000pt;}
._a_c00307{width:37.510400pt;}
._0_c00307{width:1848.607733pt;}
.fs0_c00307{font-size:64.000000pt;}
.y0_c00307{bottom:0.000000pt;}
.y5_c00307{bottom:3.520000pt;}
.y1_c00307{bottom:16.666667pt;}
.y3_c00307{bottom:33.653360pt;}
.y4_c00307{bottom:46.480027pt;}
.y1e_c00307{bottom:113.013360pt;}
.y1d_c00307{bottom:149.813333pt;}
.y1c_c00307{bottom:186.613333pt;}
.y1b_c00307{bottom:223.413333pt;}
.y1a_c00307{bottom:260.213333pt;}
.y19_c00307{bottom:297.013333pt;}
.y18_c00307{bottom:333.813333pt;}
.y17_c00307{bottom:370.613333pt;}
.y16_c00307{bottom:407.413333pt;}
.y15_c00307{bottom:444.213333pt;}
.y14_c00307{bottom:481.013333pt;}
.y13_c00307{bottom:517.813333pt;}
.y12_c00307{bottom:554.613333pt;}
.y11_c00307{bottom:591.413333pt;}
.y10_c00307{bottom:628.213333pt;}
.yf_c00307{bottom:665.013333pt;}
.ye_c00307{bottom:701.813333pt;}
.yd_c00307{bottom:738.613333pt;}
.yc_c00307{bottom:775.413333pt;}
.yb_c00307{bottom:812.213333pt;}
.ya_c00307{bottom:849.013333pt;}
.y9_c00307{bottom:885.813333pt;}
.y8_c00307{bottom:922.613333pt;}
.y7_c00307{bottom:959.413333pt;}
.y6_c00307{bottom:996.213333pt;}
.y2_c00307{bottom:1043.253333pt;}
.h3_c00307{height:18.240000pt;}
.h4_c00307{height:57.218750pt;}
.h2_c00307{height:57.375000pt;}
.h1_c00307{height:1089.333333pt;}
.h0_c00307{height:1122.666667pt;}
.w2_c00307{width:26.880000pt;}
.w1_c00307{width:760.000000pt;}
.w0_c00307{width:793.333333pt;}
.x0_c00307{left:0.000000pt;}
.x1_c00307{left:16.666667pt;}
.x2_c00307{left:97.279933pt;}
.x5_c00307{left:135.080133pt;}
.x3_c00307{left:390.012933pt;}
.x4_c00307{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5aa051e25cfa400e3391fbf2.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00308;src:url('chunks/assets/font_e4e8a5c99de955e3d7a52a0e.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00308;src:url('chunks/assets/font_100d158a4d8590f47f1ecfb1.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:1.113281;font-style: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;}
.ls3_c00308{letter-spacing:-0.014400px;}
.ls2_c00308{letter-spacing:0.000000px;}
.ls0_c00308{letter-spacing:0.014400px;}
.ls1_c00308{letter-spacing:29.267400px;}
.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;}
}
.ws0_c00308{word-spacing:-20.030400px;}
.ws1_c00308{word-spacing:-20.016000px;}
.ws2_c00308{word-spacing:0.000000px;}
._5_c00308{margin-left:-1.001400px;}
._3_c00308{width:1.108800px;}
._6_c00308{width:2.423400px;}
._2_c00308{width:3.844800px;}
._d_c00308{width:5.335200px;}
._7_c00308{width:10.216800px;}
._1_c00308{width:11.707200px;}
._a_c00308{width:13.550400px;}
._b_c00308{width:15.357600px;}
._9_c00308{width:16.797300px;}
._4_c00308{width:18.676800px;}
._c_c00308{width:25.207200px;}
._8_c00308{width:44.280000px;}
._0_c00308{width:1146.683400px;}
.fc1_c00308{color:transparent;}
.fc0_c00308{color:rgb(0,0,0);}
.fs0_c00308{font-size:72.000000px;}
.y0_c00308{bottom:0.000000px;}
.y4_c00308{bottom:3.960000px;}
.y1_c00308{bottom:18.750000px;}
.y2_c00308{bottom:37.860030px;}
.y3_c00308{bottom:52.290030px;}
.y1d_c00308{bottom:127.140030px;}
.y1c_c00308{bottom:168.540000px;}
.y1b_c00308{bottom:209.940000px;}
.y1a_c00308{bottom:251.340000px;}
.y19_c00308{bottom:292.740000px;}
.y18_c00308{bottom:334.140000px;}
.y17_c00308{bottom:375.540000px;}
.y16_c00308{bottom:416.940000px;}
.y15_c00308{bottom:458.340000px;}
.y14_c00308{bottom:499.740000px;}
.y13_c00308{bottom:541.140000px;}
.y12_c00308{bottom:582.540000px;}
.y11_c00308{bottom:623.940000px;}
.y10_c00308{bottom:665.340000px;}
.yf_c00308{bottom:706.740000px;}
.ye_c00308{bottom:748.140000px;}
.yd_c00308{bottom:789.540000px;}
.yc_c00308{bottom:830.940000px;}
.yb_c00308{bottom:872.340000px;}
.ya_c00308{bottom:913.740000px;}
.y9_c00308{bottom:955.140000px;}
.y8_c00308{bottom:996.540000px;}
.y7_c00308{bottom:1037.940000px;}
.y6_c00308{bottom:1079.340000px;}
.y5_c00308{bottom:1120.740000px;}
.h3_c00308{height:20.520000px;}
.h2_c00308{height:64.546875px;}
.h4_c00308{height:65.003906px;}
.h1_c00308{height:1225.500000px;}
.h0_c00308{height:1263.000000px;}
.w2_c00308{width:30.240000px;}
.w1_c00308{width:855.000000px;}
.w0_c00308{width:892.500000px;}
.x0_c00308{left:0.000000px;}
.x1_c00308{left:18.750000px;}
.x4_c00308{left:109.439925px;}
.x3_c00308{left:128.190000px;}
.x2_c00308{left:136.440000px;}
.x5_c00308{left:151.965150px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls3_c00308{letter-spacing:-0.012800pt;}
.ls2_c00308{letter-spacing:0.000000pt;}
.ls0_c00308{letter-spacing:0.012800pt;}
.ls1_c00308{letter-spacing:26.015467pt;}
.ws0_c00308{word-spacing:-17.804800pt;}
.ws1_c00308{word-spacing:-17.792000pt;}
.ws2_c00308{word-spacing:0.000000pt;}
._5_c00308{margin-left:-0.890133pt;}
._3_c00308{width:0.985600pt;}
._6_c00308{width:2.154133pt;}
._2_c00308{width:3.417600pt;}
._d_c00308{width:4.742400pt;}
._7_c00308{width:9.081600pt;}
._1_c00308{width:10.406400pt;}
._a_c00308{width:12.044800pt;}
._b_c00308{width:13.651200pt;}
._9_c00308{width:14.930933pt;}
._4_c00308{width:16.601600pt;}
._c_c00308{width:22.406400pt;}
._8_c00308{width:39.360000pt;}
._0_c00308{width:1019.274133pt;}
.fs0_c00308{font-size:64.000000pt;}
.y0_c00308{bottom:0.000000pt;}
.y4_c00308{bottom:3.520000pt;}
.y1_c00308{bottom:16.666667pt;}
.y2_c00308{bottom:33.653360pt;}
.y3_c00308{bottom:46.480027pt;}
.y1d_c00308{bottom:113.013360pt;}
.y1c_c00308{bottom:149.813333pt;}
.y1b_c00308{bottom:186.613333pt;}
.y1a_c00308{bottom:223.413333pt;}
.y19_c00308{bottom:260.213333pt;}
.y18_c00308{bottom:297.013333pt;}
.y17_c00308{bottom:333.813333pt;}
.y16_c00308{bottom:370.613333pt;}
.y15_c00308{bottom:407.413333pt;}
.y14_c00308{bottom:444.213333pt;}
.y13_c00308{bottom:481.013333pt;}
.y12_c00308{bottom:517.813333pt;}
.y11_c00308{bottom:554.613333pt;}
.y10_c00308{bottom:591.413333pt;}
.yf_c00308{bottom:628.213333pt;}
.ye_c00308{bottom:665.013333pt;}
.yd_c00308{bottom:701.813333pt;}
.yc_c00308{bottom:738.613333pt;}
.yb_c00308{bottom:775.413333pt;}
.ya_c00308{bottom:812.213333pt;}
.y9_c00308{bottom:849.013333pt;}
.y8_c00308{bottom:885.813333pt;}
.y7_c00308{bottom:922.613333pt;}
.y6_c00308{bottom:959.413333pt;}
.y5_c00308{bottom:996.213333pt;}
.h3_c00308{height:18.240000pt;}
.h2_c00308{height:57.375000pt;}
.h4_c00308{height:57.781250pt;}
.h1_c00308{height:1089.333333pt;}
.h0_c00308{height:1122.666667pt;}
.w2_c00308{width:26.880000pt;}
.w1_c00308{width:760.000000pt;}
.w0_c00308{width:793.333333pt;}
.x0_c00308{left:0.000000pt;}
.x1_c00308{left:16.666667pt;}
.x4_c00308{left:97.279933pt;}
.x3_c00308{left:113.946667pt;}
.x2_c00308{left:121.280000pt;}
.x5_c00308{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2f1930dc1d4c5a7a921b916.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00309;src:url('chunks/assets/font_397fb72160b57edbcbae5c26.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00309;src:url('chunks/assets/font_a9dabc8b124509670edd5f32.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00309;src:url('chunks/assets/font_42af9113080a4e55a2d66baa.woff2')format("woff");}.ff4_c00309{font-family:ff4_c00309;line-height:0.869629;font-style: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;}
.ls2_c00309{letter-spacing:-0.014400px;}
.ls3_c00309{letter-spacing:-0.012000px;}
.ls1_c00309{letter-spacing:0.000000px;}
.ls4_c00309{letter-spacing:0.012000px;}
.ls0_c00309{letter-spacing:0.014400px;}
.sc__c00309{text-shadow:none;}
.sc0_c00309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00309{-webkit-text-stroke:0px transparent;}
.sc0_c00309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00309{word-spacing:-20.030400px;}
.ws2_c00309{word-spacing:-20.016000px;}
.ws3_c00309{word-spacing:-20.001600px;}
.ws6_c00309{word-spacing:-0.036000px;}
.ws0_c00309{word-spacing:-0.028800px;}
.ws5_c00309{word-spacing:-0.012000px;}
.ws4_c00309{word-spacing:0.000000px;}
.ws7_c00309{word-spacing:40.032000px;}
._2_c00309{width:4.003200px;}
._1_c00309{width:5.270400px;}
._6_c00309{width:7.610400px;}
._5_c00309{width:11.124000px;}
._8_c00309{width:12.333600px;}
._0_c00309{width:16.012800px;}
._a_c00309{width:18.374400px;}
._c_c00309{width:26.424000px;}
._7_c00309{width:29.224800px;}
._3_c00309{width:37.836000px;}
._b_c00309{width:39.996000px;}
._4_c00309{width:43.257600px;}
._9_c00309{width:44.352000px;}
.fc1_c00309{color:transparent;}
.fc0_c00309{color:rgb(0,0,0);}
.fs0_c00309{font-size:72.000000px;}
.y0_c00309{bottom:0.000000px;}
.y2_c00309{bottom:3.960000px;}
.y3_c00309{bottom:18.750000px;}
.y1_c00309{bottom:52.290000px;}
.y1c_c00309{bottom:109.140000px;}
.y1b_c00309{bottom:171.399000px;}
.y1a_c00309{bottom:212.799000px;}
.y19_c00309{bottom:254.199000px;}
.y18_c00309{bottom:274.740000px;}
.y17_c00309{bottom:316.140000px;}
.y16_c00309{bottom:357.540000px;}
.y15_c00309{bottom:398.940000px;}
.y14_c00309{bottom:440.340000px;}
.y13_c00309{bottom:481.740000px;}
.y12_c00309{bottom:523.140000px;}
.y11_c00309{bottom:564.540000px;}
.y10_c00309{bottom:605.940000px;}
.yf_c00309{bottom:647.340000px;}
.ye_c00309{bottom:706.740000px;}
.yd_c00309{bottom:748.140000px;}
.yc_c00309{bottom:789.540000px;}
.yb_c00309{bottom:830.940000px;}
.ya_c00309{bottom:872.340000px;}
.y9_c00309{bottom:913.740000px;}
.y8_c00309{bottom:955.140000px;}
.y7_c00309{bottom:996.540000px;}
.y6_c00309{bottom:1037.940000px;}
.y5_c00309{bottom:1079.340000px;}
.y4_c00309{bottom:1120.740000px;}
.h1_c00309{height:20.520000px;}
.h2_c00309{height:64.546875px;}
.h4_c00309{height:65.003906px;}
.h3_c00309{height:1225.500000px;}
.h0_c00309{height:1263.000000px;}
.w1_c00309{width:30.240000px;}
.w2_c00309{width:855.000000px;}
.w0_c00309{width:892.500000px;}
.x0_c00309{left:0.000000px;}
.x2_c00309{left:18.750000px;}
.x3_c00309{left:109.440000px;}
.x6_c00309{left:128.190000px;}
.x4_c00309{left:151.956000px;}
.x5_c00309{left:170.715000px;}
.x1_c00309{left:735.510000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls2_c00309{letter-spacing:-0.012800pt;}
.ls3_c00309{letter-spacing:-0.010667pt;}
.ls1_c00309{letter-spacing:0.000000pt;}
.ls4_c00309{letter-spacing:0.010667pt;}
.ls0_c00309{letter-spacing:0.012800pt;}
.ws1_c00309{word-spacing:-17.804800pt;}
.ws2_c00309{word-spacing:-17.792000pt;}
.ws3_c00309{word-spacing:-17.779200pt;}
.ws6_c00309{word-spacing:-0.032000pt;}
.ws0_c00309{word-spacing:-0.025600pt;}
.ws5_c00309{word-spacing:-0.010667pt;}
.ws4_c00309{word-spacing:0.000000pt;}
.ws7_c00309{word-spacing:35.584000pt;}
._2_c00309{width:3.558400pt;}
._1_c00309{width:4.684800pt;}
._6_c00309{width:6.764800pt;}
._5_c00309{width:9.888000pt;}
._8_c00309{width:10.963200pt;}
._0_c00309{width:14.233600pt;}
._a_c00309{width:16.332800pt;}
._c_c00309{width:23.488000pt;}
._7_c00309{width:25.977600pt;}
._3_c00309{width:33.632000pt;}
._b_c00309{width:35.552000pt;}
._4_c00309{width:38.451200pt;}
._9_c00309{width:39.424000pt;}
.fs0_c00309{font-size:64.000000pt;}
.y0_c00309{bottom:0.000000pt;}
.y2_c00309{bottom:3.520000pt;}
.y3_c00309{bottom:16.666667pt;}
.y1_c00309{bottom:46.480000pt;}
.y1c_c00309{bottom:97.013333pt;}
.y1b_c00309{bottom:152.354667pt;}
.y1a_c00309{bottom:189.154667pt;}
.y19_c00309{bottom:225.954667pt;}
.y18_c00309{bottom:244.213333pt;}
.y17_c00309{bottom:281.013333pt;}
.y16_c00309{bottom:317.813333pt;}
.y15_c00309{bottom:354.613333pt;}
.y14_c00309{bottom:391.413333pt;}
.y13_c00309{bottom:428.213333pt;}
.y12_c00309{bottom:465.013333pt;}
.y11_c00309{bottom:501.813333pt;}
.y10_c00309{bottom:538.613333pt;}
.yf_c00309{bottom:575.413333pt;}
.ye_c00309{bottom:628.213333pt;}
.yd_c00309{bottom:665.013333pt;}
.yc_c00309{bottom:701.813333pt;}
.yb_c00309{bottom:738.613333pt;}
.ya_c00309{bottom:775.413333pt;}
.y9_c00309{bottom:812.213333pt;}
.y8_c00309{bottom:849.013333pt;}
.y7_c00309{bottom:885.813333pt;}
.y6_c00309{bottom:922.613333pt;}
.y5_c00309{bottom:959.413333pt;}
.y4_c00309{bottom:996.213333pt;}
.h1_c00309{height:18.240000pt;}
.h2_c00309{height:57.375000pt;}
.h4_c00309{height:57.781250pt;}
.h3_c00309{height:1089.333333pt;}
.h0_c00309{height:1122.666667pt;}
.w1_c00309{width:26.880000pt;}
.w2_c00309{width:760.000000pt;}
.w0_c00309{width:793.333333pt;}
.x0_c00309{left:0.000000pt;}
.x2_c00309{left:16.666667pt;}
.x3_c00309{left:97.280000pt;}
.x6_c00309{left:113.946667pt;}
.x4_c00309{left:135.072000pt;}
.x5_c00309{left:151.746667pt;}
.x1_c00309{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_bd6b419de9994143d11ae951.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00310;src:url('chunks/assets/font_9439f3a57a4659804504a813.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.ls3_c00310{letter-spacing:-0.014400px;}
.ls2_c00310{letter-spacing:0.000000px;}
.ls1_c00310{letter-spacing:0.000600px;}
.ls0_c00310{letter-spacing:0.014400px;}
.ls4_c00310{letter-spacing:0.036000px;}
.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:-20.030400px;}
.ws1_c00310{word-spacing:0.000000px;}
._1_c00310{width:1.044000px;}
._4_c00310{width:2.131200px;}
._a_c00310{width:5.349600px;}
._8_c00310{width:6.436800px;}
._3_c00310{width:11.664000px;}
._7_c00310{width:12.858900px;}
._5_c00310{width:14.378400px;}
._6_c00310{width:16.510200px;}
._9_c00310{width:17.760600px;}
._2_c00310{width:19.022400px;}
._0_c00310{width:1146.683400px;}
.fc1_c00310{color:transparent;}
.fc0_c00310{color:rgb(0,0,0);}
.fs0_c00310{font-size:72.000000px;}
.y0_c00310{bottom:0.000000px;}
.y4_c00310{bottom:3.960000px;}
.y1_c00310{bottom:18.750000px;}
.y2_c00310{bottom:37.860030px;}
.y3_c00310{bottom:52.290030px;}
.y1c_c00310{bottom:168.540000px;}
.y1b_c00310{bottom:209.940000px;}
.y1a_c00310{bottom:251.340000px;}
.y19_c00310{bottom:292.740000px;}
.y18_c00310{bottom:334.140000px;}
.y17_c00310{bottom:375.540000px;}
.y16_c00310{bottom:416.940000px;}
.y15_c00310{bottom:458.340000px;}
.y14_c00310{bottom:499.740000px;}
.y13_c00310{bottom:541.140000px;}
.y12_c00310{bottom:582.540000px;}
.y11_c00310{bottom:623.940000px;}
.y10_c00310{bottom:665.340000px;}
.yf_c00310{bottom:706.740000px;}
.ye_c00310{bottom:748.140000px;}
.yd_c00310{bottom:789.540000px;}
.yc_c00310{bottom:830.940000px;}
.yb_c00310{bottom:872.340000px;}
.ya_c00310{bottom:913.740000px;}
.y9_c00310{bottom:955.140000px;}
.y8_c00310{bottom:996.540000px;}
.y7_c00310{bottom:1037.940000px;}
.y6_c00310{bottom:1079.340000px;}
.y5_c00310{bottom:1120.740000px;}
.h3_c00310{height:20.520000px;}
.h2_c00310{height:64.546875px;}
.h1_c00310{height:1225.500000px;}
.h0_c00310{height:1263.000000px;}
.w2_c00310{width:30.240000px;}
.w1_c00310{width:855.000000px;}
.w0_c00310{width:892.500000px;}
.x0_c00310{left:0.000000px;}
.x1_c00310{left:18.750000px;}
.x5_c00310{left:109.439925px;}
.x3_c00310{left:128.190000px;}
.x2_c00310{left:136.440000px;}
.x4_c00310{left:151.965150px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls3_c00310{letter-spacing:-0.012800pt;}
.ls2_c00310{letter-spacing:0.000000pt;}
.ls1_c00310{letter-spacing:0.000533pt;}
.ls0_c00310{letter-spacing:0.012800pt;}
.ls4_c00310{letter-spacing:0.032000pt;}
.ws0_c00310{word-spacing:-17.804800pt;}
.ws1_c00310{word-spacing:0.000000pt;}
._1_c00310{width:0.928000pt;}
._4_c00310{width:1.894400pt;}
._a_c00310{width:4.755200pt;}
._8_c00310{width:5.721600pt;}
._3_c00310{width:10.368000pt;}
._7_c00310{width:11.430133pt;}
._5_c00310{width:12.780800pt;}
._6_c00310{width:14.675733pt;}
._9_c00310{width:15.787200pt;}
._2_c00310{width:16.908800pt;}
._0_c00310{width:1019.274133pt;}
.fs0_c00310{font-size:64.000000pt;}
.y0_c00310{bottom:0.000000pt;}
.y4_c00310{bottom:3.520000pt;}
.y1_c00310{bottom:16.666667pt;}
.y2_c00310{bottom:33.653360pt;}
.y3_c00310{bottom:46.480027pt;}
.y1c_c00310{bottom:149.813333pt;}
.y1b_c00310{bottom:186.613333pt;}
.y1a_c00310{bottom:223.413333pt;}
.y19_c00310{bottom:260.213333pt;}
.y18_c00310{bottom:297.013333pt;}
.y17_c00310{bottom:333.813333pt;}
.y16_c00310{bottom:370.613333pt;}
.y15_c00310{bottom:407.413333pt;}
.y14_c00310{bottom:444.213333pt;}
.y13_c00310{bottom:481.013333pt;}
.y12_c00310{bottom:517.813333pt;}
.y11_c00310{bottom:554.613333pt;}
.y10_c00310{bottom:591.413333pt;}
.yf_c00310{bottom:628.213333pt;}
.ye_c00310{bottom:665.013333pt;}
.yd_c00310{bottom:701.813333pt;}
.yc_c00310{bottom:738.613333pt;}
.yb_c00310{bottom:775.413333pt;}
.ya_c00310{bottom:812.213333pt;}
.y9_c00310{bottom:849.013333pt;}
.y8_c00310{bottom:885.813333pt;}
.y7_c00310{bottom:922.613333pt;}
.y6_c00310{bottom:959.413333pt;}
.y5_c00310{bottom:996.213333pt;}
.h3_c00310{height:18.240000pt;}
.h2_c00310{height:57.375000pt;}
.h1_c00310{height:1089.333333pt;}
.h0_c00310{height:1122.666667pt;}
.w2_c00310{width:26.880000pt;}
.w1_c00310{width:760.000000pt;}
.w0_c00310{width:793.333333pt;}
.x0_c00310{left:0.000000pt;}
.x1_c00310{left:16.666667pt;}
.x5_c00310{left:97.279933pt;}
.x3_c00310{left:113.946667pt;}
.x2_c00310{left:121.280000pt;}
.x4_c00310{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_455cc02d73e650172df2c956.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00311;src:url('chunks/assets/font_bdefc68e72ab7f55cc1d36aa.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.104492;font-style: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;}
.ls4_c00311{letter-spacing:-0.014400px;}
.ls3_c00311{letter-spacing:0.000000px;}
.ls1_c00311{letter-spacing:0.000600px;}
.ls0_c00311{letter-spacing:0.014400px;}
.ls2_c00311{letter-spacing:0.036000px;}
.sc__c00311{text-shadow:none;}
.sc0_c00311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00311{-webkit-text-stroke:0px transparent;}
.sc0_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00311{word-spacing:-20.052000px;}
.ws0_c00311{word-spacing:-20.030400px;}
.ws2_c00311{word-spacing:-20.016000px;}
.ws1_c00311{word-spacing:-20.001600px;}
.ws4_c00311{word-spacing:0.000000px;}
._1_c00311{width:1.346400px;}
._9_c00311{width:2.383500px;}
._7_c00311{width:4.082400px;}
._3_c00311{width:5.464800px;}
._8_c00311{width:14.241600px;}
._4_c00311{width:16.826400px;}
._5_c00311{width:21.144300px;}
._6_c00311{width:22.305600px;}
._a_c00311{width:27.943200px;}
._2_c00311{width:35.114400px;}
._0_c00311{width:2079.683700px;}
.fc1_c00311{color:transparent;}
.fc0_c00311{color:rgb(0,0,0);}
.fs0_c00311{font-size:72.000000px;}
.y0_c00311{bottom:0.000000px;}
.y5_c00311{bottom:3.960000px;}
.y1_c00311{bottom:18.750000px;}
.y3_c00311{bottom:37.860030px;}
.y4_c00311{bottom:52.290030px;}
.y1e_c00311{bottom:127.140030px;}
.y1d_c00311{bottom:168.540000px;}
.y1c_c00311{bottom:209.940000px;}
.y1b_c00311{bottom:251.340000px;}
.y1a_c00311{bottom:292.740000px;}
.y19_c00311{bottom:334.140000px;}
.y18_c00311{bottom:375.540000px;}
.y17_c00311{bottom:416.940000px;}
.y16_c00311{bottom:458.340000px;}
.y15_c00311{bottom:499.740000px;}
.y14_c00311{bottom:541.140000px;}
.y13_c00311{bottom:582.540000px;}
.y12_c00311{bottom:623.940000px;}
.y11_c00311{bottom:665.340000px;}
.y10_c00311{bottom:706.740000px;}
.yf_c00311{bottom:748.140000px;}
.ye_c00311{bottom:789.540000px;}
.yd_c00311{bottom:830.940000px;}
.yc_c00311{bottom:872.340000px;}
.yb_c00311{bottom:913.740000px;}
.ya_c00311{bottom:955.140000px;}
.y9_c00311{bottom:996.540000px;}
.y8_c00311{bottom:1037.940000px;}
.y7_c00311{bottom:1079.340000px;}
.y6_c00311{bottom:1120.740000px;}
.y2_c00311{bottom:1173.660000px;}
.h3_c00311{height:20.520000px;}
.h2_c00311{height:64.546875px;}
.h1_c00311{height:1225.500000px;}
.h0_c00311{height:1263.000000px;}
.w2_c00311{width:30.240000px;}
.w1_c00311{width:855.000000px;}
.w0_c00311{width:892.500000px;}
.x0_c00311{left:0.000000px;}
.x1_c00311{left:18.750000px;}
.x2_c00311{left:109.439925px;}
.x5_c00311{left:151.965150px;}
.x3_c00311{left:438.764550px;}
.x4_c00311{left:735.510000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls4_c00311{letter-spacing:-0.012800pt;}
.ls3_c00311{letter-spacing:0.000000pt;}
.ls1_c00311{letter-spacing:0.000533pt;}
.ls0_c00311{letter-spacing:0.012800pt;}
.ls2_c00311{letter-spacing:0.032000pt;}
.ws3_c00311{word-spacing:-17.824000pt;}
.ws0_c00311{word-spacing:-17.804800pt;}
.ws2_c00311{word-spacing:-17.792000pt;}
.ws1_c00311{word-spacing:-17.779200pt;}
.ws4_c00311{word-spacing:0.000000pt;}
._1_c00311{width:1.196800pt;}
._9_c00311{width:2.118667pt;}
._7_c00311{width:3.628800pt;}
._3_c00311{width:4.857600pt;}
._8_c00311{width:12.659200pt;}
._4_c00311{width:14.956800pt;}
._5_c00311{width:18.794933pt;}
._6_c00311{width:19.827200pt;}
._a_c00311{width:24.838400pt;}
._2_c00311{width:31.212800pt;}
._0_c00311{width:1848.607733pt;}
.fs0_c00311{font-size:64.000000pt;}
.y0_c00311{bottom:0.000000pt;}
.y5_c00311{bottom:3.520000pt;}
.y1_c00311{bottom:16.666667pt;}
.y3_c00311{bottom:33.653360pt;}
.y4_c00311{bottom:46.480027pt;}
.y1e_c00311{bottom:113.013360pt;}
.y1d_c00311{bottom:149.813333pt;}
.y1c_c00311{bottom:186.613333pt;}
.y1b_c00311{bottom:223.413333pt;}
.y1a_c00311{bottom:260.213333pt;}
.y19_c00311{bottom:297.013333pt;}
.y18_c00311{bottom:333.813333pt;}
.y17_c00311{bottom:370.613333pt;}
.y16_c00311{bottom:407.413333pt;}
.y15_c00311{bottom:444.213333pt;}
.y14_c00311{bottom:481.013333pt;}
.y13_c00311{bottom:517.813333pt;}
.y12_c00311{bottom:554.613333pt;}
.y11_c00311{bottom:591.413333pt;}
.y10_c00311{bottom:628.213333pt;}
.yf_c00311{bottom:665.013333pt;}
.ye_c00311{bottom:701.813333pt;}
.yd_c00311{bottom:738.613333pt;}
.yc_c00311{bottom:775.413333pt;}
.yb_c00311{bottom:812.213333pt;}
.ya_c00311{bottom:849.013333pt;}
.y9_c00311{bottom:885.813333pt;}
.y8_c00311{bottom:922.613333pt;}
.y7_c00311{bottom:959.413333pt;}
.y6_c00311{bottom:996.213333pt;}
.y2_c00311{bottom:1043.253333pt;}
.h3_c00311{height:18.240000pt;}
.h2_c00311{height:57.375000pt;}
.h1_c00311{height:1089.333333pt;}
.h0_c00311{height:1122.666667pt;}
.w2_c00311{width:26.880000pt;}
.w1_c00311{width:760.000000pt;}
.w0_c00311{width:793.333333pt;}
.x0_c00311{left:0.000000pt;}
.x1_c00311{left:16.666667pt;}
.x2_c00311{left:97.279933pt;}
.x5_c00311{left:135.080133pt;}
.x3_c00311{left:390.012933pt;}
.x4_c00311{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a075a5dc893a9b25c96c9bcd.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00312;src:url('chunks/assets/font_503a085e11b64271defdb4c3.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.104492;font-style: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;}
.ls4_c00312{letter-spacing:-0.014400px;}
.ls3_c00312{letter-spacing:0.000000px;}
.ls1_c00312{letter-spacing:0.000600px;}
.ls2_c00312{letter-spacing:0.011400px;}
.ls0_c00312{letter-spacing:0.014400px;}
.sc__c00312{text-shadow:none;}
.sc0_c00312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00312{-webkit-text-stroke:0px transparent;}
.sc0_c00312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00312{word-spacing:-20.030400px;}
.ws1_c00312{word-spacing:0.000000px;}
._7_c00312{width:1.211700px;}
._1_c00312{width:2.239200px;}
._8_c00312{width:3.700800px;}
._5_c00312{width:4.932000px;}
._6_c00312{width:12.045600px;}
._3_c00312{width:16.041600px;}
._2_c00312{width:21.150600px;}
._a_c00312{width:29.109600px;}
._4_c00312{width:30.801600px;}
._9_c00312{width:40.075200px;}
._0_c00312{width:1146.683400px;}
.fc1_c00312{color:transparent;}
.fc0_c00312{color:rgb(0,0,0);}
.fs0_c00312{font-size:72.000000px;}
.y0_c00312{bottom:0.000000px;}
.y4_c00312{bottom:3.960000px;}
.y1_c00312{bottom:18.750000px;}
.y2_c00312{bottom:37.860030px;}
.y3_c00312{bottom:52.290030px;}
.y1c_c00312{bottom:168.540000px;}
.y1b_c00312{bottom:209.940000px;}
.y1a_c00312{bottom:251.340000px;}
.y19_c00312{bottom:292.740000px;}
.y18_c00312{bottom:334.140000px;}
.y17_c00312{bottom:375.540000px;}
.y16_c00312{bottom:416.940000px;}
.y15_c00312{bottom:458.340000px;}
.y14_c00312{bottom:499.740000px;}
.y13_c00312{bottom:541.140000px;}
.y12_c00312{bottom:582.540000px;}
.y11_c00312{bottom:623.940000px;}
.y10_c00312{bottom:665.340000px;}
.yf_c00312{bottom:706.740000px;}
.ye_c00312{bottom:748.140000px;}
.yd_c00312{bottom:789.540000px;}
.yc_c00312{bottom:830.940000px;}
.yb_c00312{bottom:872.340000px;}
.ya_c00312{bottom:913.740000px;}
.y9_c00312{bottom:955.140000px;}
.y8_c00312{bottom:996.540000px;}
.y7_c00312{bottom:1037.940000px;}
.y6_c00312{bottom:1079.340000px;}
.y5_c00312{bottom:1120.740000px;}
.h3_c00312{height:20.520000px;}
.h2_c00312{height:64.546875px;}
.h1_c00312{height:1225.500000px;}
.h0_c00312{height:1263.000000px;}
.w2_c00312{width:30.240000px;}
.w1_c00312{width:855.000000px;}
.w0_c00312{width:892.500000px;}
.x0_c00312{left:0.000000px;}
.x1_c00312{left:18.750000px;}
.x4_c00312{left:109.439925px;}
.x3_c00312{left:128.190000px;}
.x2_c00312{left:136.440000px;}
.x5_c00312{left:151.965150px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls4_c00312{letter-spacing:-0.012800pt;}
.ls3_c00312{letter-spacing:0.000000pt;}
.ls1_c00312{letter-spacing:0.000533pt;}
.ls2_c00312{letter-spacing:0.010133pt;}
.ls0_c00312{letter-spacing:0.012800pt;}
.ws0_c00312{word-spacing:-17.804800pt;}
.ws1_c00312{word-spacing:0.000000pt;}
._7_c00312{width:1.077067pt;}
._1_c00312{width:1.990400pt;}
._8_c00312{width:3.289600pt;}
._5_c00312{width:4.384000pt;}
._6_c00312{width:10.707200pt;}
._3_c00312{width:14.259200pt;}
._2_c00312{width:18.800533pt;}
._a_c00312{width:25.875200pt;}
._4_c00312{width:27.379200pt;}
._9_c00312{width:35.622400pt;}
._0_c00312{width:1019.274133pt;}
.fs0_c00312{font-size:64.000000pt;}
.y0_c00312{bottom:0.000000pt;}
.y4_c00312{bottom:3.520000pt;}
.y1_c00312{bottom:16.666667pt;}
.y2_c00312{bottom:33.653360pt;}
.y3_c00312{bottom:46.480027pt;}
.y1c_c00312{bottom:149.813333pt;}
.y1b_c00312{bottom:186.613333pt;}
.y1a_c00312{bottom:223.413333pt;}
.y19_c00312{bottom:260.213333pt;}
.y18_c00312{bottom:297.013333pt;}
.y17_c00312{bottom:333.813333pt;}
.y16_c00312{bottom:370.613333pt;}
.y15_c00312{bottom:407.413333pt;}
.y14_c00312{bottom:444.213333pt;}
.y13_c00312{bottom:481.013333pt;}
.y12_c00312{bottom:517.813333pt;}
.y11_c00312{bottom:554.613333pt;}
.y10_c00312{bottom:591.413333pt;}
.yf_c00312{bottom:628.213333pt;}
.ye_c00312{bottom:665.013333pt;}
.yd_c00312{bottom:701.813333pt;}
.yc_c00312{bottom:738.613333pt;}
.yb_c00312{bottom:775.413333pt;}
.ya_c00312{bottom:812.213333pt;}
.y9_c00312{bottom:849.013333pt;}
.y8_c00312{bottom:885.813333pt;}
.y7_c00312{bottom:922.613333pt;}
.y6_c00312{bottom:959.413333pt;}
.y5_c00312{bottom:996.213333pt;}
.h3_c00312{height:18.240000pt;}
.h2_c00312{height:57.375000pt;}
.h1_c00312{height:1089.333333pt;}
.h0_c00312{height:1122.666667pt;}
.w2_c00312{width:26.880000pt;}
.w1_c00312{width:760.000000pt;}
.w0_c00312{width:793.333333pt;}
.x0_c00312{left:0.000000pt;}
.x1_c00312{left:16.666667pt;}
.x4_c00312{left:97.279933pt;}
.x3_c00312{left:113.946667pt;}
.x2_c00312{left:121.280000pt;}
.x5_c00312{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2dde561d9e84209b9ba19b9d.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00313;src:url('chunks/assets/font_6e71caaa345861d2ac718ff5.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00313{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00313{vertical-align:0.000000px;}
.ls3_c00313{letter-spacing:-0.014400px;}
.ls2_c00313{letter-spacing:0.000000px;}
.ls1_c00313{letter-spacing:0.000600px;}
.ls0_c00313{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00313{word-spacing:-20.016000px;}
.ws2_c00313{word-spacing:0.000000px;}
._5_c00313{width:1.519200px;}
._a_c00313{width:2.718000px;}
._8_c00313{width:4.046400px;}
._2_c00313{width:6.069600px;}
._3_c00313{width:9.633600px;}
._d_c00313{width:10.742400px;}
._6_c00313{width:11.800800px;}
._b_c00313{width:13.278600px;}
._1_c00313{width:15.696000px;}
._f_c00313{width:18.932700px;}
._4_c00313{width:24.681600px;}
._9_c00313{width:26.013600px;}
._7_c00313{width:35.269800px;}
._e_c00313{width:44.280000px;}
._c_c00313{width:56.908800px;}
._0_c00313{width:2079.683700px;}
.fc1_c00313{color:transparent;}
.fc0_c00313{color:rgb(0,0,0);}
.fs0_c00313{font-size:72.000000px;}
.y0_c00313{bottom:0.000000px;}
.y5_c00313{bottom:3.960000px;}
.y1_c00313{bottom:18.750000px;}
.y3_c00313{bottom:37.860030px;}
.y4_c00313{bottom:52.290030px;}
.y1d_c00313{bottom:168.540000px;}
.y1c_c00313{bottom:209.940000px;}
.y1b_c00313{bottom:251.340000px;}
.y1a_c00313{bottom:292.740000px;}
.y19_c00313{bottom:334.140000px;}
.y18_c00313{bottom:375.540000px;}
.y17_c00313{bottom:416.940000px;}
.y16_c00313{bottom:458.340000px;}
.y15_c00313{bottom:499.740000px;}
.y14_c00313{bottom:541.140000px;}
.y13_c00313{bottom:582.540000px;}
.y12_c00313{bottom:623.940000px;}
.y11_c00313{bottom:665.340000px;}
.y10_c00313{bottom:706.740000px;}
.yf_c00313{bottom:748.140000px;}
.ye_c00313{bottom:789.540000px;}
.yd_c00313{bottom:830.940000px;}
.yc_c00313{bottom:872.340000px;}
.yb_c00313{bottom:913.740000px;}
.ya_c00313{bottom:955.140000px;}
.y9_c00313{bottom:996.540000px;}
.y8_c00313{bottom:1037.940000px;}
.y7_c00313{bottom:1079.340000px;}
.y6_c00313{bottom:1120.740000px;}
.y2_c00313{bottom:1173.660000px;}
.h3_c00313{height:20.520000px;}
.h4_c00313{height:64.371094px;}
.h2_c00313{height:64.546875px;}
.h1_c00313{height:1225.500000px;}
.h0_c00313{height:1263.000000px;}
.w2_c00313{width:30.240000px;}
.w1_c00313{width:855.000000px;}
.w0_c00313{width:892.500000px;}
.x0_c00313{left:0.000000px;}
.x1_c00313{left:18.750000px;}
.x2_c00313{left:109.439925px;}
.x5_c00313{left:151.965150px;}
.x3_c00313{left:438.764550px;}
.x4_c00313{left:735.510000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls3_c00313{letter-spacing:-0.012800pt;}
.ls2_c00313{letter-spacing:0.000000pt;}
.ls1_c00313{letter-spacing:0.000533pt;}
.ls0_c00313{letter-spacing:0.012800pt;}
.ws0_c00313{word-spacing:-17.804800pt;}
.ws1_c00313{word-spacing:-17.792000pt;}
.ws2_c00313{word-spacing:0.000000pt;}
._5_c00313{width:1.350400pt;}
._a_c00313{width:2.416000pt;}
._8_c00313{width:3.596800pt;}
._2_c00313{width:5.395200pt;}
._3_c00313{width:8.563200pt;}
._d_c00313{width:9.548800pt;}
._6_c00313{width:10.489600pt;}
._b_c00313{width:11.803200pt;}
._1_c00313{width:13.952000pt;}
._f_c00313{width:16.829067pt;}
._4_c00313{width:21.939200pt;}
._9_c00313{width:23.123200pt;}
._7_c00313{width:31.350933pt;}
._e_c00313{width:39.360000pt;}
._c_c00313{width:50.585600pt;}
._0_c00313{width:1848.607733pt;}
.fs0_c00313{font-size:64.000000pt;}
.y0_c00313{bottom:0.000000pt;}
.y5_c00313{bottom:3.520000pt;}
.y1_c00313{bottom:16.666667pt;}
.y3_c00313{bottom:33.653360pt;}
.y4_c00313{bottom:46.480027pt;}
.y1d_c00313{bottom:149.813333pt;}
.y1c_c00313{bottom:186.613333pt;}
.y1b_c00313{bottom:223.413333pt;}
.y1a_c00313{bottom:260.213333pt;}
.y19_c00313{bottom:297.013333pt;}
.y18_c00313{bottom:333.813333pt;}
.y17_c00313{bottom:370.613333pt;}
.y16_c00313{bottom:407.413333pt;}
.y15_c00313{bottom:444.213333pt;}
.y14_c00313{bottom:481.013333pt;}
.y13_c00313{bottom:517.813333pt;}
.y12_c00313{bottom:554.613333pt;}
.y11_c00313{bottom:591.413333pt;}
.y10_c00313{bottom:628.213333pt;}
.yf_c00313{bottom:665.013333pt;}
.ye_c00313{bottom:701.813333pt;}
.yd_c00313{bottom:738.613333pt;}
.yc_c00313{bottom:775.413333pt;}
.yb_c00313{bottom:812.213333pt;}
.ya_c00313{bottom:849.013333pt;}
.y9_c00313{bottom:885.813333pt;}
.y8_c00313{bottom:922.613333pt;}
.y7_c00313{bottom:959.413333pt;}
.y6_c00313{bottom:996.213333pt;}
.y2_c00313{bottom:1043.253333pt;}
.h3_c00313{height:18.240000pt;}
.h4_c00313{height:57.218750pt;}
.h2_c00313{height:57.375000pt;}
.h1_c00313{height:1089.333333pt;}
.h0_c00313{height:1122.666667pt;}
.w2_c00313{width:26.880000pt;}
.w1_c00313{width:760.000000pt;}
.w0_c00313{width:793.333333pt;}
.x0_c00313{left:0.000000pt;}
.x1_c00313{left:16.666667pt;}
.x2_c00313{left:97.279933pt;}
.x5_c00313{left:135.080133pt;}
.x3_c00313{left:390.012933pt;}
.x4_c00313{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e579af137e3b830dfa56198d.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00314;src:url('chunks/assets/font_d531c1befd0475ea02ee47e7.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00314;src:url('chunks/assets/font_52f8e39f6d761fbd0b0a8015.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00314;src:url('chunks/assets/font_fb0271847d3eb915bcae5d18.woff2')format("woff");}.ff4_c00314{font-family:ff4_c00314;line-height:0.673828;font-style: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;}
.ls6_c00314{letter-spacing:-0.014400px;}
.ls5_c00314{letter-spacing:0.000000px;}
.ls2_c00314{letter-spacing:0.000600px;}
.ls3_c00314{letter-spacing:0.010800px;}
.ls1_c00314{letter-spacing:0.011400px;}
.ls0_c00314{letter-spacing:0.014400px;}
.ls7_c00314{letter-spacing:0.021600px;}
.ls4_c00314{letter-spacing:15.445200px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00314{word-spacing:-20.037600px;}
.ws0_c00314{word-spacing:-20.030400px;}
.ws1_c00314{word-spacing:-20.016000px;}
.ws4_c00314{word-spacing:-20.001600px;}
.ws3_c00314{word-spacing:-17.985600px;}
.ws5_c00314{word-spacing:0.000000px;}
._7_c00314{width:1.022400px;}
._5_c00314{width:2.937600px;}
._6_c00314{width:7.639200px;}
._2_c00314{width:8.798400px;}
._4_c00314{width:10.677600px;}
._3_c00314{width:12.607200px;}
._a_c00314{width:15.472800px;}
._8_c00314{width:25.012800px;}
._1_c00314{width:26.438400px;}
._9_c00314{width:55.454400px;}
._b_c00314{width:76.908000px;}
._0_c00314{width:1146.683400px;}
.fc1_c00314{color:transparent;}
.fc0_c00314{color:rgb(0,0,0);}
.fs0_c00314{font-size:72.000000px;}
.y0_c00314{bottom:0.000000px;}
.y4_c00314{bottom:3.960000px;}
.y1_c00314{bottom:18.750000px;}
.y2_c00314{bottom:37.860030px;}
.y3_c00314{bottom:52.290030px;}
.y1c_c00314{bottom:150.540000px;}
.y1b_c00314{bottom:191.940000px;}
.y1a_c00314{bottom:233.340000px;}
.y19_c00314{bottom:274.740000px;}
.y18_c00314{bottom:316.140000px;}
.y17_c00314{bottom:357.540000px;}
.y16_c00314{bottom:398.940000px;}
.y15_c00314{bottom:440.340000px;}
.y14_c00314{bottom:481.380000px;}
.y13_c00314{bottom:523.140000px;}
.y12_c00314{bottom:564.540000px;}
.y11_c00314{bottom:605.940000px;}
.y10_c00314{bottom:665.340000px;}
.yf_c00314{bottom:706.740000px;}
.ye_c00314{bottom:748.140000px;}
.yd_c00314{bottom:789.540000px;}
.yc_c00314{bottom:830.940000px;}
.yb_c00314{bottom:872.340000px;}
.ya_c00314{bottom:913.740000px;}
.y9_c00314{bottom:955.140000px;}
.y8_c00314{bottom:996.540000px;}
.y7_c00314{bottom:1037.940000px;}
.y6_c00314{bottom:1079.340000px;}
.y5_c00314{bottom:1120.740000px;}
.h3_c00314{height:20.520000px;}
.h2_c00314{height:64.546875px;}
.h4_c00314{height:65.003906px;}
.h1_c00314{height:1225.500000px;}
.h0_c00314{height:1263.000000px;}
.w2_c00314{width:30.240000px;}
.w1_c00314{width:855.000000px;}
.w0_c00314{width:892.500000px;}
.x0_c00314{left:0.000000px;}
.x1_c00314{left:18.750000px;}
.x5_c00314{left:109.439925px;}
.x3_c00314{left:128.190000px;}
.x2_c00314{left:136.440000px;}
.x4_c00314{left:151.965150px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls6_c00314{letter-spacing:-0.012800pt;}
.ls5_c00314{letter-spacing:0.000000pt;}
.ls2_c00314{letter-spacing:0.000533pt;}
.ls3_c00314{letter-spacing:0.009600pt;}
.ls1_c00314{letter-spacing:0.010133pt;}
.ls0_c00314{letter-spacing:0.012800pt;}
.ls7_c00314{letter-spacing:0.019200pt;}
.ls4_c00314{letter-spacing:13.729067pt;}
.ws2_c00314{word-spacing:-17.811200pt;}
.ws0_c00314{word-spacing:-17.804800pt;}
.ws1_c00314{word-spacing:-17.792000pt;}
.ws4_c00314{word-spacing:-17.779200pt;}
.ws3_c00314{word-spacing:-15.987200pt;}
.ws5_c00314{word-spacing:0.000000pt;}
._7_c00314{width:0.908800pt;}
._5_c00314{width:2.611200pt;}
._6_c00314{width:6.790400pt;}
._2_c00314{width:7.820800pt;}
._4_c00314{width:9.491200pt;}
._3_c00314{width:11.206400pt;}
._a_c00314{width:13.753600pt;}
._8_c00314{width:22.233600pt;}
._1_c00314{width:23.500800pt;}
._9_c00314{width:49.292800pt;}
._b_c00314{width:68.362667pt;}
._0_c00314{width:1019.274133pt;}
.fs0_c00314{font-size:64.000000pt;}
.y0_c00314{bottom:0.000000pt;}
.y4_c00314{bottom:3.520000pt;}
.y1_c00314{bottom:16.666667pt;}
.y2_c00314{bottom:33.653360pt;}
.y3_c00314{bottom:46.480027pt;}
.y1c_c00314{bottom:133.813333pt;}
.y1b_c00314{bottom:170.613333pt;}
.y1a_c00314{bottom:207.413333pt;}
.y19_c00314{bottom:244.213333pt;}
.y18_c00314{bottom:281.013333pt;}
.y17_c00314{bottom:317.813333pt;}
.y16_c00314{bottom:354.613333pt;}
.y15_c00314{bottom:391.413333pt;}
.y14_c00314{bottom:427.893333pt;}
.y13_c00314{bottom:465.013333pt;}
.y12_c00314{bottom:501.813333pt;}
.y11_c00314{bottom:538.613333pt;}
.y10_c00314{bottom:591.413333pt;}
.yf_c00314{bottom:628.213333pt;}
.ye_c00314{bottom:665.013333pt;}
.yd_c00314{bottom:701.813333pt;}
.yc_c00314{bottom:738.613333pt;}
.yb_c00314{bottom:775.413333pt;}
.ya_c00314{bottom:812.213333pt;}
.y9_c00314{bottom:849.013333pt;}
.y8_c00314{bottom:885.813333pt;}
.y7_c00314{bottom:922.613333pt;}
.y6_c00314{bottom:959.413333pt;}
.y5_c00314{bottom:996.213333pt;}
.h3_c00314{height:18.240000pt;}
.h2_c00314{height:57.375000pt;}
.h4_c00314{height:57.781250pt;}
.h1_c00314{height:1089.333333pt;}
.h0_c00314{height:1122.666667pt;}
.w2_c00314{width:26.880000pt;}
.w1_c00314{width:760.000000pt;}
.w0_c00314{width:793.333333pt;}
.x0_c00314{left:0.000000pt;}
.x1_c00314{left:16.666667pt;}
.x5_c00314{left:97.279933pt;}
.x3_c00314{left:113.946667pt;}
.x2_c00314{left:121.280000pt;}
.x4_c00314{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ab18dba5eb5380c28df0e793.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00315;src:url('chunks/assets/font_802d1576c97cb33c5d566c57.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.104492;font-style: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;}
.ls2_c00315{letter-spacing:-0.014400px;}
.ls1_c00315{letter-spacing:0.000000px;}
.ls0_c00315{letter-spacing:0.014400px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00315{word-spacing:-20.030400px;}
.ws2_c00315{word-spacing:-20.016000px;}
.ws1_c00315{word-spacing:-20.001600px;}
.ws3_c00315{word-spacing:0.000000px;}
._5_c00315{width:5.421600px;}
._6_c00315{width:7.164000px;}
._1_c00315{width:12.477600px;}
._7_c00315{width:18.831000px;}
._2_c00315{width:25.912800px;}
._8_c00315{width:31.179300px;}
._3_c00315{width:50.781600px;}
._4_c00315{width:67.334400px;}
._0_c00315{width:2079.683700px;}
.fc1_c00315{color:transparent;}
.fc0_c00315{color:rgb(0,0,0);}
.fs0_c00315{font-size:72.000000px;}
.y0_c00315{bottom:0.000000px;}
.y5_c00315{bottom:3.960000px;}
.y1_c00315{bottom:18.750000px;}
.y3_c00315{bottom:37.860030px;}
.y4_c00315{bottom:52.290030px;}
.y1e_c00315{bottom:127.140030px;}
.y1d_c00315{bottom:168.540000px;}
.y1c_c00315{bottom:209.940000px;}
.y1b_c00315{bottom:251.340000px;}
.y1a_c00315{bottom:292.740000px;}
.y19_c00315{bottom:334.140000px;}
.y18_c00315{bottom:375.540000px;}
.y17_c00315{bottom:416.940000px;}
.y16_c00315{bottom:458.340000px;}
.y15_c00315{bottom:499.740000px;}
.y14_c00315{bottom:541.140000px;}
.y13_c00315{bottom:582.540000px;}
.y12_c00315{bottom:623.940000px;}
.y11_c00315{bottom:665.340000px;}
.y10_c00315{bottom:706.740000px;}
.yf_c00315{bottom:748.140000px;}
.ye_c00315{bottom:789.540000px;}
.yd_c00315{bottom:830.940000px;}
.yc_c00315{bottom:872.340000px;}
.yb_c00315{bottom:913.740000px;}
.ya_c00315{bottom:955.140000px;}
.y9_c00315{bottom:996.540000px;}
.y8_c00315{bottom:1037.940000px;}
.y7_c00315{bottom:1079.340000px;}
.y6_c00315{bottom:1120.740000px;}
.y2_c00315{bottom:1173.660000px;}
.h3_c00315{height:20.520000px;}
.h4_c00315{height:64.371094px;}
.h2_c00315{height:64.546875px;}
.h1_c00315{height:1225.500000px;}
.h0_c00315{height:1263.000000px;}
.w2_c00315{width:30.240000px;}
.w1_c00315{width:855.000000px;}
.w0_c00315{width:892.500000px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:18.750000px;}
.x2_c00315{left:109.439925px;}
.x5_c00315{left:151.965150px;}
.x3_c00315{left:438.764550px;}
.x4_c00315{left:735.510000px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls2_c00315{letter-spacing:-0.012800pt;}
.ls1_c00315{letter-spacing:0.000000pt;}
.ls0_c00315{letter-spacing:0.012800pt;}
.ws0_c00315{word-spacing:-17.804800pt;}
.ws2_c00315{word-spacing:-17.792000pt;}
.ws1_c00315{word-spacing:-17.779200pt;}
.ws3_c00315{word-spacing:0.000000pt;}
._5_c00315{width:4.819200pt;}
._6_c00315{width:6.368000pt;}
._1_c00315{width:11.091200pt;}
._7_c00315{width:16.738667pt;}
._2_c00315{width:23.033600pt;}
._8_c00315{width:27.714933pt;}
._3_c00315{width:45.139200pt;}
._4_c00315{width:59.852800pt;}
._0_c00315{width:1848.607733pt;}
.fs0_c00315{font-size:64.000000pt;}
.y0_c00315{bottom:0.000000pt;}
.y5_c00315{bottom:3.520000pt;}
.y1_c00315{bottom:16.666667pt;}
.y3_c00315{bottom:33.653360pt;}
.y4_c00315{bottom:46.480027pt;}
.y1e_c00315{bottom:113.013360pt;}
.y1d_c00315{bottom:149.813333pt;}
.y1c_c00315{bottom:186.613333pt;}
.y1b_c00315{bottom:223.413333pt;}
.y1a_c00315{bottom:260.213333pt;}
.y19_c00315{bottom:297.013333pt;}
.y18_c00315{bottom:333.813333pt;}
.y17_c00315{bottom:370.613333pt;}
.y16_c00315{bottom:407.413333pt;}
.y15_c00315{bottom:444.213333pt;}
.y14_c00315{bottom:481.013333pt;}
.y13_c00315{bottom:517.813333pt;}
.y12_c00315{bottom:554.613333pt;}
.y11_c00315{bottom:591.413333pt;}
.y10_c00315{bottom:628.213333pt;}
.yf_c00315{bottom:665.013333pt;}
.ye_c00315{bottom:701.813333pt;}
.yd_c00315{bottom:738.613333pt;}
.yc_c00315{bottom:775.413333pt;}
.yb_c00315{bottom:812.213333pt;}
.ya_c00315{bottom:849.013333pt;}
.y9_c00315{bottom:885.813333pt;}
.y8_c00315{bottom:922.613333pt;}
.y7_c00315{bottom:959.413333pt;}
.y6_c00315{bottom:996.213333pt;}
.y2_c00315{bottom:1043.253333pt;}
.h3_c00315{height:18.240000pt;}
.h4_c00315{height:57.218750pt;}
.h2_c00315{height:57.375000pt;}
.h1_c00315{height:1089.333333pt;}
.h0_c00315{height:1122.666667pt;}
.w2_c00315{width:26.880000pt;}
.w1_c00315{width:760.000000pt;}
.w0_c00315{width:793.333333pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:16.666667pt;}
.x2_c00315{left:97.279933pt;}
.x5_c00315{left:135.080133pt;}
.x3_c00315{left:390.012933pt;}
.x4_c00315{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_74d2b73b4e09592e97740946.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00316;src:url('chunks/assets/font_e6b13451c6b0a415613188b5.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.ls5_c00316{letter-spacing:-0.014400px;}
.ls4_c00316{letter-spacing:0.000000px;}
.ls3_c00316{letter-spacing:0.000600px;}
.ls2_c00316{letter-spacing:0.010800px;}
.ls0_c00316{letter-spacing:0.014400px;}
.ls1_c00316{letter-spacing:9.312000px;}
.sc__c00316{text-shadow:none;}
.sc0_c00316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00316{-webkit-text-stroke:0px transparent;}
.sc0_c00316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00316{word-spacing:-20.030400px;}
.ws1_c00316{word-spacing:-20.016000px;}
.ws2_c00316{word-spacing:-20.001600px;}
.ws3_c00316{word-spacing:0.000000px;}
._6_c00316{width:7.884000px;}
._1_c00316{width:9.357900px;}
._3_c00316{width:10.651200px;}
._7_c00316{width:24.501600px;}
._2_c00316{width:29.628000px;}
._5_c00316{width:74.412000px;}
._4_c00316{width:75.686400px;}
._0_c00316{width:1146.683400px;}
.fc1_c00316{color:transparent;}
.fc0_c00316{color:rgb(0,0,0);}
.fs0_c00316{font-size:72.000000px;}
.y0_c00316{bottom:0.000000px;}
.y4_c00316{bottom:3.960000px;}
.y1_c00316{bottom:18.750000px;}
.y2_c00316{bottom:37.860030px;}
.y3_c00316{bottom:52.290030px;}
.y1d_c00316{bottom:127.140030px;}
.y1c_c00316{bottom:168.540000px;}
.y1b_c00316{bottom:209.940000px;}
.y1a_c00316{bottom:251.340000px;}
.y19_c00316{bottom:292.740000px;}
.y18_c00316{bottom:334.140000px;}
.y17_c00316{bottom:375.540000px;}
.y16_c00316{bottom:416.940000px;}
.y15_c00316{bottom:458.340000px;}
.y14_c00316{bottom:499.740000px;}
.y13_c00316{bottom:541.140000px;}
.y12_c00316{bottom:582.540000px;}
.y11_c00316{bottom:623.940000px;}
.y10_c00316{bottom:665.340000px;}
.yf_c00316{bottom:706.740000px;}
.ye_c00316{bottom:748.140000px;}
.yd_c00316{bottom:789.540000px;}
.yc_c00316{bottom:830.940000px;}
.yb_c00316{bottom:872.340000px;}
.ya_c00316{bottom:913.740000px;}
.y9_c00316{bottom:955.140000px;}
.y8_c00316{bottom:996.540000px;}
.y7_c00316{bottom:1037.940000px;}
.y6_c00316{bottom:1079.340000px;}
.y5_c00316{bottom:1120.740000px;}
.h3_c00316{height:20.520000px;}
.h2_c00316{height:64.546875px;}
.h1_c00316{height:1225.500000px;}
.h0_c00316{height:1263.000000px;}
.w2_c00316{width:30.240000px;}
.w1_c00316{width:855.000000px;}
.w0_c00316{width:892.500000px;}
.x0_c00316{left:0.000000px;}
.x1_c00316{left:18.750000px;}
.x4_c00316{left:109.439925px;}
.x3_c00316{left:128.190000px;}
.x2_c00316{left:136.440000px;}
.x5_c00316{left:151.965150px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls5_c00316{letter-spacing:-0.012800pt;}
.ls4_c00316{letter-spacing:0.000000pt;}
.ls3_c00316{letter-spacing:0.000533pt;}
.ls2_c00316{letter-spacing:0.009600pt;}
.ls0_c00316{letter-spacing:0.012800pt;}
.ls1_c00316{letter-spacing:8.277333pt;}
.ws0_c00316{word-spacing:-17.804800pt;}
.ws1_c00316{word-spacing:-17.792000pt;}
.ws2_c00316{word-spacing:-17.779200pt;}
.ws3_c00316{word-spacing:0.000000pt;}
._6_c00316{width:7.008000pt;}
._1_c00316{width:8.318133pt;}
._3_c00316{width:9.467733pt;}
._7_c00316{width:21.779200pt;}
._2_c00316{width:26.336000pt;}
._5_c00316{width:66.144000pt;}
._4_c00316{width:67.276800pt;}
._0_c00316{width:1019.274133pt;}
.fs0_c00316{font-size:64.000000pt;}
.y0_c00316{bottom:0.000000pt;}
.y4_c00316{bottom:3.520000pt;}
.y1_c00316{bottom:16.666667pt;}
.y2_c00316{bottom:33.653360pt;}
.y3_c00316{bottom:46.480027pt;}
.y1d_c00316{bottom:113.013360pt;}
.y1c_c00316{bottom:149.813333pt;}
.y1b_c00316{bottom:186.613333pt;}
.y1a_c00316{bottom:223.413333pt;}
.y19_c00316{bottom:260.213333pt;}
.y18_c00316{bottom:297.013333pt;}
.y17_c00316{bottom:333.813333pt;}
.y16_c00316{bottom:370.613333pt;}
.y15_c00316{bottom:407.413333pt;}
.y14_c00316{bottom:444.213333pt;}
.y13_c00316{bottom:481.013333pt;}
.y12_c00316{bottom:517.813333pt;}
.y11_c00316{bottom:554.613333pt;}
.y10_c00316{bottom:591.413333pt;}
.yf_c00316{bottom:628.213333pt;}
.ye_c00316{bottom:665.013333pt;}
.yd_c00316{bottom:701.813333pt;}
.yc_c00316{bottom:738.613333pt;}
.yb_c00316{bottom:775.413333pt;}
.ya_c00316{bottom:812.213333pt;}
.y9_c00316{bottom:849.013333pt;}
.y8_c00316{bottom:885.813333pt;}
.y7_c00316{bottom:922.613333pt;}
.y6_c00316{bottom:959.413333pt;}
.y5_c00316{bottom:996.213333pt;}
.h3_c00316{height:18.240000pt;}
.h2_c00316{height:57.375000pt;}
.h1_c00316{height:1089.333333pt;}
.h0_c00316{height:1122.666667pt;}
.w2_c00316{width:26.880000pt;}
.w1_c00316{width:760.000000pt;}
.w0_c00316{width:793.333333pt;}
.x0_c00316{left:0.000000pt;}
.x1_c00316{left:16.666667pt;}
.x4_c00316{left:97.279933pt;}
.x3_c00316{left:113.946667pt;}
.x2_c00316{left:121.280000pt;}
.x5_c00316{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e6d8133d345520cf4452403e.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00317;src:url('chunks/assets/font_46c8a5c24a955403538eaa6b.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.104492;font-style: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;}
.ls2_c00317{letter-spacing:-0.014400px;}
.ls1_c00317{letter-spacing:0.000000px;}
.ls0_c00317{letter-spacing:0.014400px;}
.sc__c00317{text-shadow:none;}
.sc0_c00317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00317{-webkit-text-stroke:0px transparent;}
.sc0_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00317{word-spacing:-20.030400px;}
.ws1_c00317{word-spacing:-20.016000px;}
.ws2_c00317{word-spacing:0.000000px;}
._5_c00317{width:5.054400px;}
._4_c00317{width:22.422900px;}
._6_c00317{width:29.822400px;}
._3_c00317{width:33.681600px;}
._1_c00317{width:44.892000px;}
._2_c00317{width:46.123200px;}
._7_c00317{width:843.983700px;}
._0_c00317{width:2079.683700px;}
.fc1_c00317{color:transparent;}
.fc0_c00317{color:rgb(0,0,0);}
.fs0_c00317{font-size:72.000000px;}
.y0_c00317{bottom:0.000000px;}
.y5_c00317{bottom:3.960000px;}
.y1_c00317{bottom:18.750000px;}
.y3_c00317{bottom:37.860030px;}
.y4_c00317{bottom:52.290030px;}
.y17_c00317{bottom:416.940000px;}
.y16_c00317{bottom:458.340000px;}
.y15_c00317{bottom:499.740000px;}
.y14_c00317{bottom:541.140000px;}
.y13_c00317{bottom:582.540000px;}
.y12_c00317{bottom:623.940000px;}
.y11_c00317{bottom:665.340000px;}
.y10_c00317{bottom:706.740000px;}
.yf_c00317{bottom:748.140000px;}
.ye_c00317{bottom:789.540000px;}
.yd_c00317{bottom:830.940000px;}
.yc_c00317{bottom:872.340000px;}
.yb_c00317{bottom:913.740000px;}
.ya_c00317{bottom:955.140000px;}
.y9_c00317{bottom:996.540000px;}
.y8_c00317{bottom:1037.940000px;}
.y7_c00317{bottom:1079.340000px;}
.y6_c00317{bottom:1120.740000px;}
.y2_c00317{bottom:1173.660000px;}
.h3_c00317{height:20.520000px;}
.h4_c00317{height:64.371094px;}
.h2_c00317{height:64.546875px;}
.h1_c00317{height:1225.500000px;}
.h0_c00317{height:1263.000000px;}
.w2_c00317{width:30.240000px;}
.w1_c00317{width:855.000000px;}
.w0_c00317{width:892.500000px;}
.x0_c00317{left:0.000000px;}
.x1_c00317{left:18.750000px;}
.x2_c00317{left:109.439925px;}
.x5_c00317{left:151.965150px;}
.x3_c00317{left:438.764550px;}
.x4_c00317{left:735.510000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls2_c00317{letter-spacing:-0.012800pt;}
.ls1_c00317{letter-spacing:0.000000pt;}
.ls0_c00317{letter-spacing:0.012800pt;}
.ws0_c00317{word-spacing:-17.804800pt;}
.ws1_c00317{word-spacing:-17.792000pt;}
.ws2_c00317{word-spacing:0.000000pt;}
._5_c00317{width:4.492800pt;}
._4_c00317{width:19.931467pt;}
._6_c00317{width:26.508800pt;}
._3_c00317{width:29.939200pt;}
._1_c00317{width:39.904000pt;}
._2_c00317{width:40.998400pt;}
._7_c00317{width:750.207733pt;}
._0_c00317{width:1848.607733pt;}
.fs0_c00317{font-size:64.000000pt;}
.y0_c00317{bottom:0.000000pt;}
.y5_c00317{bottom:3.520000pt;}
.y1_c00317{bottom:16.666667pt;}
.y3_c00317{bottom:33.653360pt;}
.y4_c00317{bottom:46.480027pt;}
.y17_c00317{bottom:370.613333pt;}
.y16_c00317{bottom:407.413333pt;}
.y15_c00317{bottom:444.213333pt;}
.y14_c00317{bottom:481.013333pt;}
.y13_c00317{bottom:517.813333pt;}
.y12_c00317{bottom:554.613333pt;}
.y11_c00317{bottom:591.413333pt;}
.y10_c00317{bottom:628.213333pt;}
.yf_c00317{bottom:665.013333pt;}
.ye_c00317{bottom:701.813333pt;}
.yd_c00317{bottom:738.613333pt;}
.yc_c00317{bottom:775.413333pt;}
.yb_c00317{bottom:812.213333pt;}
.ya_c00317{bottom:849.013333pt;}
.y9_c00317{bottom:885.813333pt;}
.y8_c00317{bottom:922.613333pt;}
.y7_c00317{bottom:959.413333pt;}
.y6_c00317{bottom:996.213333pt;}
.y2_c00317{bottom:1043.253333pt;}
.h3_c00317{height:18.240000pt;}
.h4_c00317{height:57.218750pt;}
.h2_c00317{height:57.375000pt;}
.h1_c00317{height:1089.333333pt;}
.h0_c00317{height:1122.666667pt;}
.w2_c00317{width:26.880000pt;}
.w1_c00317{width:760.000000pt;}
.w0_c00317{width:793.333333pt;}
.x0_c00317{left:0.000000pt;}
.x1_c00317{left:16.666667pt;}
.x2_c00317{left:97.279933pt;}
.x5_c00317{left:135.080133pt;}
.x3_c00317{left:390.012933pt;}
.x4_c00317{left:653.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a334d5368db61d5f5576bd0b.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00318{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.ls1_c00318{letter-spacing:0.000000px;}
.ls0_c00318{letter-spacing:0.014400px;}
.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:-20.030400px;}
.ws1_c00318{word-spacing:0.000000px;}
._0_c00318{width:1146.683400px;}
.fc1_c00318{color:transparent;}
.fc0_c00318{color:rgb(0,0,0);}
.fs0_c00318{font-size:72.000000px;}
.y0_c00318{bottom:0.000000px;}
.y4_c00318{bottom:3.960000px;}
.y1_c00318{bottom:18.750000px;}
.y2_c00318{bottom:37.860030px;}
.y3_c00318{bottom:52.290030px;}
.y6_c00318{bottom:1079.340000px;}
.y5_c00318{bottom:1120.740000px;}
.h3_c00318{height:20.520000px;}
.h2_c00318{height:64.546875px;}
.h1_c00318{height:1225.500000px;}
.h0_c00318{height:1263.000000px;}
.w2_c00318{width:30.240000px;}
.w1_c00318{width:855.000000px;}
.w0_c00318{width:892.500000px;}
.x0_c00318{left:0.000000px;}
.x1_c00318{left:18.750000px;}
.x3_c00318{left:128.190000px;}
.x2_c00318{left:136.440000px;}
.x4_c00318{left:151.965150px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls1_c00318{letter-spacing:0.000000pt;}
.ls0_c00318{letter-spacing:0.012800pt;}
.ws0_c00318{word-spacing:-17.804800pt;}
.ws1_c00318{word-spacing:0.000000pt;}
._0_c00318{width:1019.274133pt;}
.fs0_c00318{font-size:64.000000pt;}
.y0_c00318{bottom:0.000000pt;}
.y4_c00318{bottom:3.520000pt;}
.y1_c00318{bottom:16.666667pt;}
.y2_c00318{bottom:33.653360pt;}
.y3_c00318{bottom:46.480027pt;}
.y6_c00318{bottom:959.413333pt;}
.y5_c00318{bottom:996.213333pt;}
.h3_c00318{height:18.240000pt;}
.h2_c00318{height:57.375000pt;}
.h1_c00318{height:1089.333333pt;}
.h0_c00318{height:1122.666667pt;}
.w2_c00318{width:26.880000pt;}
.w1_c00318{width:760.000000pt;}
.w0_c00318{width:793.333333pt;}
.x0_c00318{left:0.000000pt;}
.x1_c00318{left:16.666667pt;}
.x3_c00318{left:113.946667pt;}
.x2_c00318{left:121.280000pt;}
.x4_c00318{left:135.080133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_53735e4c78b4b61ffa4b9c39.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.113281;font-style: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;}
.ls0_c00319{letter-spacing:0.000000px;}
.sc__c00319{text-shadow:none;}
.sc0_c00319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00319{-webkit-text-stroke:0px transparent;}
.sc0_c00319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00319{word-spacing:0.000000px;}
.fc0_c00319{color:rgb(0,0,0);}
.fs0_c00319{font-size:84.000000px;}
.y0_c00319{bottom:0.000000px;}
.y1_c00319{bottom:106.275000px;}
.y2_c00319{bottom:534.653550px;}
.h2_c00319{height:75.837891px;}
.h1_c00319{height:1055.477400px;}
.h0_c00319{height:1263.000000px;}
.w1_c00319{width:659.835450px;}
.w0_c00319{width:892.500000px;}
.x0_c00319{left:0.000000px;}
.x1_c00319{left:121.709775px;}
.x2_c00319{left:554.529225px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls0_c00319{letter-spacing:0.000000pt;}
.ws0_c00319{word-spacing:0.000000pt;}
.fs0_c00319{font-size:74.666667pt;}
.y0_c00319{bottom:0.000000pt;}
.y1_c00319{bottom:94.466667pt;}
.y2_c00319{bottom:475.247600pt;}
.h2_c00319{height:67.411458pt;}
.h1_c00319{height:938.202133pt;}
.h0_c00319{height:1122.666667pt;}
.w1_c00319{width:586.520400pt;}
.w0_c00319{width:793.333333pt;}
.x0_c00319{left:0.000000pt;}
.x1_c00319{left:108.186467pt;}
.x2_c00319{left:492.914867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00320{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00320{-webkit-text-stroke:0px transparent;}
}
.y0_c00320{bottom:0.000000px;}
.h0_c00320{height:1263.000000px;}
.w0_c00320{width:892.500000px;}
.x0_c00320{left:0.000000px;}
@media print{
.y0_c00320{bottom:0.000000pt;}
.h0_c00320{height:1122.666667pt;}
.w0_c00320{width:793.333333pt;}
.x0_c00320{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_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_449742db1f5e6a5b8d8b9b06.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.113281;font-style:normal;font-weight:normal;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_23e2dfb48a5a9b568302f562.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00321;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00321;src:url('chunks/assets/font_477b71d0df2d26c6349c1ac9.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:1.330566;font-style: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);}
.v1_c00321{vertical-align:-2.880000px;}
.v0_c00321{vertical-align:0.000000px;}
.ls1_c00321{letter-spacing:0.000000px;}
.ls0_c00321{letter-spacing:0.014400px;}
.sc__c00321{text-shadow:none;}
.sc0_c00321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00321{-webkit-text-stroke:0px transparent;}
.sc0_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00321{word-spacing:0.000000px;}
.ws0_c00321{word-spacing:3.628800px;}
._1_c00321{margin-left:-5.342400px;}
._3_c00321{margin-left:-3.960000px;}
._0_c00321{margin-left:-2.685600px;}
._2_c00321{margin-left:-1.310400px;}
._6_c00321{width:1.454400px;}
._7_c00321{width:2.613600px;}
._c_c00321{width:4.262400px;}
._8_c00321{width:5.904000px;}
._4_c00321{width:13.896000px;}
._e_c00321{width:15.264000px;}
._5_c00321{width:22.600800px;}
._a_c00321{width:26.107200px;}
._b_c00321{width:28.742400px;}
._9_c00321{width:30.081600px;}
._d_c00321{width:31.636800px;}
.fc1_c00321{color:transparent;}
.fc0_c00321{color:rgb(0,0,0);}
.fs0_c00321{font-size:72.000000px;}
.y0_c00321{bottom:0.000000px;}
.y1c_c00321{bottom:3.787500px;}
.y1a_c00321{bottom:30.658500px;}
.y1b_c00321{bottom:56.735596px;}
.y19_c00321{bottom:71.158500px;}
.y1_c00321{bottom:104.419500px;}
.y18_c00321{bottom:113.152500px;}
.y17_c00321{bottom:153.652500px;}
.y16_c00321{bottom:195.646500px;}
.y15_c00321{bottom:237.640500px;}
.y14_c00321{bottom:278.140500px;}
.y13_c00321{bottom:320.134500px;}
.y12_c00321{bottom:360.634500px;}
.y11_c00321{bottom:402.628500px;}
.y10_c00321{bottom:444.622500px;}
.yf_c00321{bottom:485.122500px;}
.ye_c00321{bottom:527.116500px;}
.yd_c00321{bottom:567.616500px;}
.yc_c00321{bottom:609.610500px;}
.yb_c00321{bottom:651.604500px;}
.ya_c00321{bottom:692.104500px;}
.y9_c00321{bottom:734.098500px;}
.y8_c00321{bottom:774.598500px;}
.y7_c00321{bottom:816.592500px;}
.y6_c00321{bottom:858.586500px;}
.y5_c00321{bottom:899.086500px;}
.y4_c00321{bottom:941.080500px;}
.y3_c00321{bottom:988.294500px;}
.y2_c00321{bottom:1035.580500px;}
.h4_c00321{height:19.800105px;}
.h3_c00321{height:64.546875px;}
.h2_c00321{height:65.003906px;}
.h5_c00321{height:72.421875px;}
.h1_c00321{height:1057.333500px;}
.h0_c00321{height:1263.000000px;}
.w2_c00321{width:30.031500px;}
.w1_c00321{width:647.404500px;}
.w0_c00321{width:892.500000px;}
.x0_c00321{left:0.000000px;}
.x2_c00321{left:4.953000px;}
.x1_c00321{left:122.547000px;}
.x3_c00321{left:734.908997px;}
@media print{
.v1_c00321{vertical-align:-2.560000pt;}
.v0_c00321{vertical-align:0.000000pt;}
.ls1_c00321{letter-spacing:0.000000pt;}
.ls0_c00321{letter-spacing:0.012800pt;}
.ws1_c00321{word-spacing:0.000000pt;}
.ws0_c00321{word-spacing:3.225600pt;}
._1_c00321{margin-left:-4.748800pt;}
._3_c00321{margin-left:-3.520000pt;}
._0_c00321{margin-left:-2.387200pt;}
._2_c00321{margin-left:-1.164800pt;}
._6_c00321{width:1.292800pt;}
._7_c00321{width:2.323200pt;}
._c_c00321{width:3.788800pt;}
._8_c00321{width:5.248000pt;}
._4_c00321{width:12.352000pt;}
._e_c00321{width:13.568000pt;}
._5_c00321{width:20.089600pt;}
._a_c00321{width:23.206400pt;}
._b_c00321{width:25.548800pt;}
._9_c00321{width:26.739200pt;}
._d_c00321{width:28.121600pt;}
.fs0_c00321{font-size:64.000000pt;}
.y0_c00321{bottom:0.000000pt;}
.y1c_c00321{bottom:3.366667pt;}
.y1a_c00321{bottom:27.252000pt;}
.y1b_c00321{bottom:50.431641pt;}
.y19_c00321{bottom:63.252000pt;}
.y1_c00321{bottom:92.817333pt;}
.y18_c00321{bottom:100.580000pt;}
.y17_c00321{bottom:136.580000pt;}
.y16_c00321{bottom:173.908000pt;}
.y15_c00321{bottom:211.236000pt;}
.y14_c00321{bottom:247.236000pt;}
.y13_c00321{bottom:284.564000pt;}
.y12_c00321{bottom:320.564000pt;}
.y11_c00321{bottom:357.892000pt;}
.y10_c00321{bottom:395.220000pt;}
.yf_c00321{bottom:431.220000pt;}
.ye_c00321{bottom:468.548000pt;}
.yd_c00321{bottom:504.548000pt;}
.yc_c00321{bottom:541.876000pt;}
.yb_c00321{bottom:579.204000pt;}
.ya_c00321{bottom:615.204000pt;}
.y9_c00321{bottom:652.532000pt;}
.y8_c00321{bottom:688.532000pt;}
.y7_c00321{bottom:725.860000pt;}
.y6_c00321{bottom:763.188000pt;}
.y5_c00321{bottom:799.188000pt;}
.y4_c00321{bottom:836.516000pt;}
.y3_c00321{bottom:878.484000pt;}
.y2_c00321{bottom:920.516000pt;}
.h4_c00321{height:17.600093pt;}
.h3_c00321{height:57.375000pt;}
.h2_c00321{height:57.781250pt;}
.h5_c00321{height:64.375000pt;}
.h1_c00321{height:939.852000pt;}
.h0_c00321{height:1122.666667pt;}
.w2_c00321{width:26.694667pt;}
.w1_c00321{width:575.470667pt;}
.w0_c00321{width:793.333333pt;}
.x0_c00321{left:0.000000pt;}
.x2_c00321{left:4.402667pt;}
.x1_c00321{left:108.930667pt;}
.x3_c00321{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba3c4f0692235f9c6feb2b3e.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.113281;font-style:normal;font-weight:normal;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_4988500a897adaa28e861565.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00322;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00322;src:url('chunks/assets/font_8fd4d15e4f9085d8034dd7cf.woff2')format("woff");}.ff4_c00322{font-family:ff4_c00322;line-height:1.330566;font-style: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;}
.ls1_c00322{letter-spacing:-0.014400px;}
.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:0.000000px;}
._a_c00322{margin-left:-5.241600px;}
._1_c00322{margin-left:-3.002400px;}
._5_c00322{margin-left:-1.303200px;}
._0_c00322{width:1.915200px;}
._7_c00322{width:2.937600px;}
._6_c00322{width:4.017600px;}
._3_c00322{width:5.716800px;}
._4_c00322{width:7.358400px;}
._8_c00322{width:8.366400px;}
._9_c00322{width:9.374400px;}
._2_c00322{width:15.703200px;}
._b_c00322{width:16.783200px;}
._f_c00322{width:22.968000px;}
._e_c00322{width:24.127200px;}
._d_c00322{width:33.652800px;}
._c_c00322{width:34.956000px;}
.fc0_c00322{color:rgb(0,0,0);}
.fs0_c00322{font-size:72.000000px;}
.y0_c00322{bottom:0.000000px;}
.y1b_c00322{bottom:3.787500px;}
.y1a_c00322{bottom:56.735596px;}
.y19_c00322{bottom:81.309000px;}
.y1_c00322{bottom:106.275000px;}
.y18_c00322{bottom:123.303000px;}
.y17_c00322{bottom:163.803000px;}
.y16_c00322{bottom:205.797000px;}
.y15_c00322{bottom:247.791000px;}
.y14_c00322{bottom:288.291000px;}
.y13_c00322{bottom:330.285000px;}
.y12_c00322{bottom:370.785000px;}
.y11_c00322{bottom:412.779000px;}
.y10_c00322{bottom:454.773000px;}
.yf_c00322{bottom:495.273000px;}
.ye_c00322{bottom:537.267000px;}
.yd_c00322{bottom:577.767000px;}
.yc_c00322{bottom:619.761000px;}
.yb_c00322{bottom:661.755000px;}
.ya_c00322{bottom:702.255000px;}
.y9_c00322{bottom:744.249000px;}
.y8_c00322{bottom:784.749000px;}
.y7_c00322{bottom:826.743000px;}
.y6_c00322{bottom:868.737000px;}
.y5_c00322{bottom:909.237000px;}
.y4_c00322{bottom:951.231000px;}
.y3_c00322{bottom:991.731000px;}
.y2_c00322{bottom:1033.725000px;}
.h4_c00322{height:19.800105px;}
.h3_c00322{height:64.546875px;}
.h2_c00322{height:65.003906px;}
.h5_c00322{height:72.421875px;}
.h1_c00322{height:1055.478000px;}
.h0_c00322{height:1263.000000px;}
.w2_c00322{width:30.033000px;}
.w1_c00322{width:647.404500px;}
.w0_c00322{width:892.500000px;}
.x0_c00322{left:0.000000px;}
.x2_c00322{left:4.953000px;}
.x1_c00322{left:122.547000px;}
.x3_c00322{left:127.559509px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls1_c00322{letter-spacing:-0.012800pt;}
.ls0_c00322{letter-spacing:0.000000pt;}
.ws0_c00322{word-spacing:0.000000pt;}
._a_c00322{margin-left:-4.659200pt;}
._1_c00322{margin-left:-2.668800pt;}
._5_c00322{margin-left:-1.158400pt;}
._0_c00322{width:1.702400pt;}
._7_c00322{width:2.611200pt;}
._6_c00322{width:3.571200pt;}
._3_c00322{width:5.081600pt;}
._4_c00322{width:6.540800pt;}
._8_c00322{width:7.436800pt;}
._9_c00322{width:8.332800pt;}
._2_c00322{width:13.958400pt;}
._b_c00322{width:14.918400pt;}
._f_c00322{width:20.416000pt;}
._e_c00322{width:21.446400pt;}
._d_c00322{width:29.913600pt;}
._c_c00322{width:31.072000pt;}
.fs0_c00322{font-size:64.000000pt;}
.y0_c00322{bottom:0.000000pt;}
.y1b_c00322{bottom:3.366667pt;}
.y1a_c00322{bottom:50.431641pt;}
.y19_c00322{bottom:72.274667pt;}
.y1_c00322{bottom:94.466667pt;}
.y18_c00322{bottom:109.602667pt;}
.y17_c00322{bottom:145.602667pt;}
.y16_c00322{bottom:182.930667pt;}
.y15_c00322{bottom:220.258667pt;}
.y14_c00322{bottom:256.258667pt;}
.y13_c00322{bottom:293.586667pt;}
.y12_c00322{bottom:329.586667pt;}
.y11_c00322{bottom:366.914667pt;}
.y10_c00322{bottom:404.242667pt;}
.yf_c00322{bottom:440.242667pt;}
.ye_c00322{bottom:477.570667pt;}
.yd_c00322{bottom:513.570667pt;}
.yc_c00322{bottom:550.898667pt;}
.yb_c00322{bottom:588.226667pt;}
.ya_c00322{bottom:624.226667pt;}
.y9_c00322{bottom:661.554667pt;}
.y8_c00322{bottom:697.554667pt;}
.y7_c00322{bottom:734.882667pt;}
.y6_c00322{bottom:772.210667pt;}
.y5_c00322{bottom:808.210667pt;}
.y4_c00322{bottom:845.538667pt;}
.y3_c00322{bottom:881.538667pt;}
.y2_c00322{bottom:918.866667pt;}
.h4_c00322{height:17.600093pt;}
.h3_c00322{height:57.375000pt;}
.h2_c00322{height:57.781250pt;}
.h5_c00322{height:64.375000pt;}
.h1_c00322{height:938.202667pt;}
.h0_c00322{height:1122.666667pt;}
.w2_c00322{width:26.696000pt;}
.w1_c00322{width:575.470667pt;}
.w0_c00322{width:793.333333pt;}
.x0_c00322{left:0.000000pt;}
.x2_c00322{left:4.402667pt;}
.x1_c00322{left:108.930667pt;}
.x3_c00322{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7579cb0a59f2113e768759f3.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00323;src:url('chunks/assets/font_cdfaed0363b665d6a07afd37.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00323;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00323;src:url('chunks/assets/font_e0f413b1c3227223c0e51a8b.woff2')format("woff");}.ff4_c00323{font-family:ff4_c00323;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00323{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.ls2_c00323{letter-spacing:-0.014400px;}
.ls1_c00323{letter-spacing:0.000000px;}
.ls0_c00323{letter-spacing:0.532800px;}
.sc__c00323{text-shadow:none;}
.sc0_c00323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00323{-webkit-text-stroke:0px transparent;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00323{word-spacing:0.000000px;}
._7_c00323{margin-left:-5.140800px;}
._a_c00323{margin-left:-3.960000px;}
._3_c00323{width:1.670400px;}
._2_c00323{width:3.276000px;}
._b_c00323{width:4.485600px;}
._c_c00323{width:6.609600px;}
._0_c00323{width:8.359200px;}
._6_c00323{width:9.900000px;}
._1_c00323{width:11.131200px;}
._5_c00323{width:12.988800px;}
._4_c00323{width:14.760000px;}
._9_c00323{width:29.649600px;}
._8_c00323{width:35.136000px;}
.fc0_c00323{color:rgb(0,0,0);}
.fs0_c00323{font-size:72.000000px;}
.y0_c00323{bottom:0.000000px;}
.y1a_c00323{bottom:3.787500px;}
.y19_c00323{bottom:56.735596px;}
.y1_c00323{bottom:106.275000px;}
.y18_c00323{bottom:123.303000px;}
.y17_c00323{bottom:163.803000px;}
.y16_c00323{bottom:205.797000px;}
.y15_c00323{bottom:247.791000px;}
.y14_c00323{bottom:288.291000px;}
.y13_c00323{bottom:330.285000px;}
.y12_c00323{bottom:370.785000px;}
.y11_c00323{bottom:412.779000px;}
.y10_c00323{bottom:454.773000px;}
.yf_c00323{bottom:495.273000px;}
.ye_c00323{bottom:537.267000px;}
.yd_c00323{bottom:577.767000px;}
.yc_c00323{bottom:619.761000px;}
.yb_c00323{bottom:661.755000px;}
.ya_c00323{bottom:702.255000px;}
.y9_c00323{bottom:744.249000px;}
.y8_c00323{bottom:784.749000px;}
.y7_c00323{bottom:826.743000px;}
.y6_c00323{bottom:868.737000px;}
.y5_c00323{bottom:909.237000px;}
.y4_c00323{bottom:951.231000px;}
.y3_c00323{bottom:991.731000px;}
.y2_c00323{bottom:1033.725000px;}
.h3_c00323{height:19.800105px;}
.h2_c00323{height:65.003906px;}
.h4_c00323{height:72.421875px;}
.h1_c00323{height:1055.478000px;}
.h0_c00323{height:1263.000000px;}
.w2_c00323{width:30.031500px;}
.w1_c00323{width:647.404500px;}
.w0_c00323{width:892.500000px;}
.x0_c00323{left:0.000000px;}
.x2_c00323{left:4.953000px;}
.x1_c00323{left:122.547000px;}
.x3_c00323{left:734.908997px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls2_c00323{letter-spacing:-0.012800pt;}
.ls1_c00323{letter-spacing:0.000000pt;}
.ls0_c00323{letter-spacing:0.473600pt;}
.ws0_c00323{word-spacing:0.000000pt;}
._7_c00323{margin-left:-4.569600pt;}
._a_c00323{margin-left:-3.520000pt;}
._3_c00323{width:1.484800pt;}
._2_c00323{width:2.912000pt;}
._b_c00323{width:3.987200pt;}
._c_c00323{width:5.875200pt;}
._0_c00323{width:7.430400pt;}
._6_c00323{width:8.800000pt;}
._1_c00323{width:9.894400pt;}
._5_c00323{width:11.545600pt;}
._4_c00323{width:13.120000pt;}
._9_c00323{width:26.355200pt;}
._8_c00323{width:31.232000pt;}
.fs0_c00323{font-size:64.000000pt;}
.y0_c00323{bottom:0.000000pt;}
.y1a_c00323{bottom:3.366667pt;}
.y19_c00323{bottom:50.431641pt;}
.y1_c00323{bottom:94.466667pt;}
.y18_c00323{bottom:109.602667pt;}
.y17_c00323{bottom:145.602667pt;}
.y16_c00323{bottom:182.930667pt;}
.y15_c00323{bottom:220.258667pt;}
.y14_c00323{bottom:256.258667pt;}
.y13_c00323{bottom:293.586667pt;}
.y12_c00323{bottom:329.586667pt;}
.y11_c00323{bottom:366.914667pt;}
.y10_c00323{bottom:404.242667pt;}
.yf_c00323{bottom:440.242667pt;}
.ye_c00323{bottom:477.570667pt;}
.yd_c00323{bottom:513.570667pt;}
.yc_c00323{bottom:550.898667pt;}
.yb_c00323{bottom:588.226667pt;}
.ya_c00323{bottom:624.226667pt;}
.y9_c00323{bottom:661.554667pt;}
.y8_c00323{bottom:697.554667pt;}
.y7_c00323{bottom:734.882667pt;}
.y6_c00323{bottom:772.210667pt;}
.y5_c00323{bottom:808.210667pt;}
.y4_c00323{bottom:845.538667pt;}
.y3_c00323{bottom:881.538667pt;}
.y2_c00323{bottom:918.866667pt;}
.h3_c00323{height:17.600093pt;}
.h2_c00323{height:57.781250pt;}
.h4_c00323{height:64.375000pt;}
.h1_c00323{height:938.202667pt;}
.h0_c00323{height:1122.666667pt;}
.w2_c00323{width:26.694667pt;}
.w1_c00323{width:575.470667pt;}
.w0_c00323{width:793.333333pt;}
.x0_c00323{left:0.000000pt;}
.x2_c00323{left:4.402667pt;}
.x1_c00323{left:108.930667pt;}
.x3_c00323{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7579cb0a59f2113e768759f3.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00324;src:url('chunks/assets/font_172c2fa4cfea05497589f54a.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00324;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00324;src:url('chunks/assets/font_652f15e800f8dc5580cdfc70.woff2')format("woff");}.ff4_c00324{font-family:ff4_c00324;line-height:1.330566;font-style: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;}
.ls0_c00324{letter-spacing:0.000000px;}
.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:0.000000px;}
._11_c00324{margin-left:-5.335200px;}
._5_c00324{margin-left:-3.960000px;}
._0_c00324{width:1.915200px;}
._1_c00324{width:2.937600px;}
._2_c00324{width:5.176800px;}
._d_c00324{width:6.602400px;}
._e_c00324{width:7.898400px;}
._13_c00324{width:9.021600px;}
._b_c00324{width:10.216800px;}
._f_c00324{width:11.239200px;}
._9_c00324{width:13.118400px;}
._3_c00324{width:14.184000px;}
._8_c00324{width:15.271200px;}
._c_c00324{width:16.308000px;}
._12_c00324{width:17.560800px;}
._10_c00324{width:18.864000px;}
._6_c00324{width:26.280000px;}
._4_c00324{width:29.066400px;}
._a_c00324{width:30.722400px;}
._7_c00324{width:32.529600px;}
.fc0_c00324{color:rgb(0,0,0);}
.fs0_c00324{font-size:72.000000px;}
.y0_c00324{bottom:0.000000px;}
.y1c_c00324{bottom:3.787500px;}
.y1a_c00324{bottom:40.809000px;}
.y1b_c00324{bottom:56.735596px;}
.y19_c00324{bottom:81.309000px;}
.y1_c00324{bottom:106.275000px;}
.y18_c00324{bottom:123.303000px;}
.y17_c00324{bottom:163.803000px;}
.y16_c00324{bottom:205.797000px;}
.y15_c00324{bottom:247.791000px;}
.y14_c00324{bottom:288.291000px;}
.y13_c00324{bottom:330.285000px;}
.y12_c00324{bottom:370.785000px;}
.y11_c00324{bottom:412.779000px;}
.y10_c00324{bottom:454.773000px;}
.yf_c00324{bottom:495.273000px;}
.ye_c00324{bottom:537.267000px;}
.yd_c00324{bottom:577.767000px;}
.yc_c00324{bottom:619.761000px;}
.yb_c00324{bottom:661.755000px;}
.ya_c00324{bottom:702.255000px;}
.y9_c00324{bottom:744.249000px;}
.y8_c00324{bottom:784.749000px;}
.y7_c00324{bottom:826.743000px;}
.y6_c00324{bottom:868.737000px;}
.y5_c00324{bottom:909.237000px;}
.y4_c00324{bottom:951.231000px;}
.y3_c00324{bottom:991.731000px;}
.y2_c00324{bottom:1033.725000px;}
.h3_c00324{height:19.800105px;}
.h2_c00324{height:65.003906px;}
.h4_c00324{height:72.421875px;}
.h1_c00324{height:1055.478000px;}
.h0_c00324{height:1263.000000px;}
.w2_c00324{width:30.033000px;}
.w1_c00324{width:647.404500px;}
.w0_c00324{width:892.500000px;}
.x0_c00324{left:0.000000px;}
.x2_c00324{left:4.953000px;}
.x1_c00324{left:122.547000px;}
.x3_c00324{left:127.559509px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls0_c00324{letter-spacing:0.000000pt;}
.ws0_c00324{word-spacing:0.000000pt;}
._11_c00324{margin-left:-4.742400pt;}
._5_c00324{margin-left:-3.520000pt;}
._0_c00324{width:1.702400pt;}
._1_c00324{width:2.611200pt;}
._2_c00324{width:4.601600pt;}
._d_c00324{width:5.868800pt;}
._e_c00324{width:7.020800pt;}
._13_c00324{width:8.019200pt;}
._b_c00324{width:9.081600pt;}
._f_c00324{width:9.990400pt;}
._9_c00324{width:11.660800pt;}
._3_c00324{width:12.608000pt;}
._8_c00324{width:13.574400pt;}
._c_c00324{width:14.496000pt;}
._12_c00324{width:15.609600pt;}
._10_c00324{width:16.768000pt;}
._6_c00324{width:23.360000pt;}
._4_c00324{width:25.836800pt;}
._a_c00324{width:27.308800pt;}
._7_c00324{width:28.915200pt;}
.fs0_c00324{font-size:64.000000pt;}
.y0_c00324{bottom:0.000000pt;}
.y1c_c00324{bottom:3.366667pt;}
.y1a_c00324{bottom:36.274667pt;}
.y1b_c00324{bottom:50.431641pt;}
.y19_c00324{bottom:72.274667pt;}
.y1_c00324{bottom:94.466667pt;}
.y18_c00324{bottom:109.602667pt;}
.y17_c00324{bottom:145.602667pt;}
.y16_c00324{bottom:182.930667pt;}
.y15_c00324{bottom:220.258667pt;}
.y14_c00324{bottom:256.258667pt;}
.y13_c00324{bottom:293.586667pt;}
.y12_c00324{bottom:329.586667pt;}
.y11_c00324{bottom:366.914667pt;}
.y10_c00324{bottom:404.242667pt;}
.yf_c00324{bottom:440.242667pt;}
.ye_c00324{bottom:477.570667pt;}
.yd_c00324{bottom:513.570667pt;}
.yc_c00324{bottom:550.898667pt;}
.yb_c00324{bottom:588.226667pt;}
.ya_c00324{bottom:624.226667pt;}
.y9_c00324{bottom:661.554667pt;}
.y8_c00324{bottom:697.554667pt;}
.y7_c00324{bottom:734.882667pt;}
.y6_c00324{bottom:772.210667pt;}
.y5_c00324{bottom:808.210667pt;}
.y4_c00324{bottom:845.538667pt;}
.y3_c00324{bottom:881.538667pt;}
.y2_c00324{bottom:918.866667pt;}
.h3_c00324{height:17.600093pt;}
.h2_c00324{height:57.781250pt;}
.h4_c00324{height:64.375000pt;}
.h1_c00324{height:938.202667pt;}
.h0_c00324{height:1122.666667pt;}
.w2_c00324{width:26.696000pt;}
.w1_c00324{width:575.470667pt;}
.w0_c00324{width:793.333333pt;}
.x0_c00324{left:0.000000pt;}
.x2_c00324{left:4.402667pt;}
.x1_c00324{left:108.930667pt;}
.x3_c00324{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ff7f1a8fa1e2358e5ea7905.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00325;src:url('chunks/assets/font_959aad25929ecab5c8b799cb.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00325;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00325;src:url('chunks/assets/font_a0444919fb9bfd53694b0944.woff2')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:1.330566;font-style: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;}
.ls2_c00325{letter-spacing:-0.014400px;}
.ls1_c00325{letter-spacing:0.000000px;}
.ls0_c00325{letter-spacing:0.014400px;}
.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:0.000000px;}
._e_c00325{margin-left:-5.342400px;}
._0_c00325{margin-left:-3.974400px;}
._2_c00325{margin-left:-2.656800px;}
._1_c00325{margin-left:-1.317600px;}
._7_c00325{width:1.324800px;}
._6_c00325{width:2.534400px;}
._c_c00325{width:3.679200px;}
._4_c00325{width:4.766400px;}
._5_c00325{width:5.846400px;}
._a_c00325{width:6.926400px;}
._3_c00325{width:8.640000px;}
._d_c00325{width:12.031200px;}
._f_c00325{width:13.068000px;}
._8_c00325{width:14.407200px;}
._b_c00325{width:15.530400px;}
._9_c00325{width:17.726400px;}
.fc0_c00325{color:rgb(0,0,0);}
.fs0_c00325{font-size:72.000000px;}
.y0_c00325{bottom:0.000000px;}
.y1a_c00325{bottom:3.787500px;}
.y19_c00325{bottom:56.735596px;}
.y1_c00325{bottom:106.275000px;}
.y18_c00325{bottom:123.303000px;}
.y17_c00325{bottom:163.803000px;}
.y16_c00325{bottom:205.797000px;}
.y15_c00325{bottom:247.791000px;}
.y14_c00325{bottom:288.291000px;}
.y13_c00325{bottom:330.285000px;}
.y12_c00325{bottom:370.785000px;}
.y11_c00325{bottom:412.779000px;}
.y10_c00325{bottom:454.773000px;}
.yf_c00325{bottom:495.273000px;}
.ye_c00325{bottom:537.267000px;}
.yd_c00325{bottom:577.767000px;}
.yc_c00325{bottom:619.761000px;}
.yb_c00325{bottom:661.755000px;}
.ya_c00325{bottom:702.255000px;}
.y9_c00325{bottom:744.249000px;}
.y8_c00325{bottom:784.749000px;}
.y7_c00325{bottom:826.743000px;}
.y6_c00325{bottom:868.737000px;}
.y5_c00325{bottom:909.237000px;}
.y4_c00325{bottom:951.231000px;}
.y3_c00325{bottom:991.731000px;}
.y2_c00325{bottom:1033.725000px;}
.h4_c00325{height:19.800105px;}
.h2_c00325{height:64.546875px;}
.h3_c00325{height:65.003906px;}
.h5_c00325{height:72.421875px;}
.h1_c00325{height:1055.478000px;}
.h0_c00325{height:1263.000000px;}
.w2_c00325{width:30.031500px;}
.w1_c00325{width:649.657500px;}
.w0_c00325{width:892.500000px;}
.x0_c00325{left:0.000000px;}
.x2_c00325{left:4.953000px;}
.x1_c00325{left:122.547000px;}
.x3_c00325{left:734.908997px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls2_c00325{letter-spacing:-0.012800pt;}
.ls1_c00325{letter-spacing:0.000000pt;}
.ls0_c00325{letter-spacing:0.012800pt;}
.ws0_c00325{word-spacing:0.000000pt;}
._e_c00325{margin-left:-4.748800pt;}
._0_c00325{margin-left:-3.532800pt;}
._2_c00325{margin-left:-2.361600pt;}
._1_c00325{margin-left:-1.171200pt;}
._7_c00325{width:1.177600pt;}
._6_c00325{width:2.252800pt;}
._c_c00325{width:3.270400pt;}
._4_c00325{width:4.236800pt;}
._5_c00325{width:5.196800pt;}
._a_c00325{width:6.156800pt;}
._3_c00325{width:7.680000pt;}
._d_c00325{width:10.694400pt;}
._f_c00325{width:11.616000pt;}
._8_c00325{width:12.806400pt;}
._b_c00325{width:13.804800pt;}
._9_c00325{width:15.756800pt;}
.fs0_c00325{font-size:64.000000pt;}
.y0_c00325{bottom:0.000000pt;}
.y1a_c00325{bottom:3.366667pt;}
.y19_c00325{bottom:50.431641pt;}
.y1_c00325{bottom:94.466667pt;}
.y18_c00325{bottom:109.602667pt;}
.y17_c00325{bottom:145.602667pt;}
.y16_c00325{bottom:182.930667pt;}
.y15_c00325{bottom:220.258667pt;}
.y14_c00325{bottom:256.258667pt;}
.y13_c00325{bottom:293.586667pt;}
.y12_c00325{bottom:329.586667pt;}
.y11_c00325{bottom:366.914667pt;}
.y10_c00325{bottom:404.242667pt;}
.yf_c00325{bottom:440.242667pt;}
.ye_c00325{bottom:477.570667pt;}
.yd_c00325{bottom:513.570667pt;}
.yc_c00325{bottom:550.898667pt;}
.yb_c00325{bottom:588.226667pt;}
.ya_c00325{bottom:624.226667pt;}
.y9_c00325{bottom:661.554667pt;}
.y8_c00325{bottom:697.554667pt;}
.y7_c00325{bottom:734.882667pt;}
.y6_c00325{bottom:772.210667pt;}
.y5_c00325{bottom:808.210667pt;}
.y4_c00325{bottom:845.538667pt;}
.y3_c00325{bottom:881.538667pt;}
.y2_c00325{bottom:918.866667pt;}
.h4_c00325{height:17.600093pt;}
.h2_c00325{height:57.375000pt;}
.h3_c00325{height:57.781250pt;}
.h5_c00325{height:64.375000pt;}
.h1_c00325{height:938.202667pt;}
.h0_c00325{height:1122.666667pt;}
.w2_c00325{width:26.694667pt;}
.w1_c00325{width:577.473333pt;}
.w0_c00325{width:793.333333pt;}
.x0_c00325{left:0.000000pt;}
.x2_c00325{left:4.402667pt;}
.x1_c00325{left:108.930667pt;}
.x3_c00325{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccfecbb78ca3584a33916099.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00326;src:url('chunks/assets/font_ded2b8e9e626284792d72d83.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00326;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00326;src:url('chunks/assets/font_233149584eb6e42b43e4f018.woff2')format("woff");}.ff4_c00326{font-family:ff4_c00326;line-height:1.330566;font-style: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);}
.v0_c00326{vertical-align:0.000000px;}
.ls2_c00326{letter-spacing:0.000000px;}
.ls1_c00326{letter-spacing:1.569600px;}
.ls0_c00326{letter-spacing:1.584000px;}
.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:-21.600000px;}
.ws1_c00326{word-spacing:0.000000px;}
._d_c00326{margin-left:-6.148800px;}
._8_c00326{margin-left:-3.960000px;}
._a_c00326{margin-left:-1.584000px;}
._4_c00326{width:1.123200px;}
._0_c00326{width:2.440800px;}
._3_c00326{width:4.334400px;}
._10_c00326{width:5.457600px;}
._7_c00326{width:9.864000px;}
._9_c00326{width:10.965600px;}
._2_c00326{width:12.427200px;}
._c_c00326{width:13.485600px;}
._f_c00326{width:14.580000px;}
._1_c00326{width:16.466400px;}
._6_c00326{width:22.687200px;}
._5_c00326{width:24.544800px;}
._e_c00326{width:26.726400px;}
._b_c00326{width:35.208000px;}
.fc0_c00326{color:rgb(0,0,0);}
.fs0_c00326{font-size:72.000000px;}
.y0_c00326{bottom:0.000000px;}
.y1c_c00326{bottom:3.787500px;}
.y1a_c00326{bottom:40.809000px;}
.y1b_c00326{bottom:56.735596px;}
.y19_c00326{bottom:81.309000px;}
.y1_c00326{bottom:106.275000px;}
.y18_c00326{bottom:123.303000px;}
.y17_c00326{bottom:163.803000px;}
.y16_c00326{bottom:205.797000px;}
.y15_c00326{bottom:247.791000px;}
.y14_c00326{bottom:288.291000px;}
.y13_c00326{bottom:330.285000px;}
.y12_c00326{bottom:370.785000px;}
.y11_c00326{bottom:412.779000px;}
.y10_c00326{bottom:454.773000px;}
.yf_c00326{bottom:495.273000px;}
.ye_c00326{bottom:537.267000px;}
.yd_c00326{bottom:577.767000px;}
.yc_c00326{bottom:619.761000px;}
.yb_c00326{bottom:661.755000px;}
.ya_c00326{bottom:702.255000px;}
.y9_c00326{bottom:744.249000px;}
.y8_c00326{bottom:784.749000px;}
.y7_c00326{bottom:826.743000px;}
.y6_c00326{bottom:868.737000px;}
.y5_c00326{bottom:909.237000px;}
.y4_c00326{bottom:951.231000px;}
.y3_c00326{bottom:991.731000px;}
.y2_c00326{bottom:1033.725000px;}
.h4_c00326{height:19.800105px;}
.h3_c00326{height:64.546875px;}
.h2_c00326{height:65.003906px;}
.h5_c00326{height:72.421875px;}
.h1_c00326{height:1055.478000px;}
.h0_c00326{height:1263.000000px;}
.w2_c00326{width:30.033000px;}
.w1_c00326{width:647.404500px;}
.w0_c00326{width:892.500000px;}
.x0_c00326{left:0.000000px;}
.x2_c00326{left:4.953000px;}
.x1_c00326{left:122.547000px;}
.x3_c00326{left:127.559509px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls2_c00326{letter-spacing:0.000000pt;}
.ls1_c00326{letter-spacing:1.395200pt;}
.ls0_c00326{letter-spacing:1.408000pt;}
.ws0_c00326{word-spacing:-19.200000pt;}
.ws1_c00326{word-spacing:0.000000pt;}
._d_c00326{margin-left:-5.465600pt;}
._8_c00326{margin-left:-3.520000pt;}
._a_c00326{margin-left:-1.408000pt;}
._4_c00326{width:0.998400pt;}
._0_c00326{width:2.169600pt;}
._3_c00326{width:3.852800pt;}
._10_c00326{width:4.851200pt;}
._7_c00326{width:8.768000pt;}
._9_c00326{width:9.747200pt;}
._2_c00326{width:11.046400pt;}
._c_c00326{width:11.987200pt;}
._f_c00326{width:12.960000pt;}
._1_c00326{width:14.636800pt;}
._6_c00326{width:20.166400pt;}
._5_c00326{width:21.817600pt;}
._e_c00326{width:23.756800pt;}
._b_c00326{width:31.296000pt;}
.fs0_c00326{font-size:64.000000pt;}
.y0_c00326{bottom:0.000000pt;}
.y1c_c00326{bottom:3.366667pt;}
.y1a_c00326{bottom:36.274667pt;}
.y1b_c00326{bottom:50.431641pt;}
.y19_c00326{bottom:72.274667pt;}
.y1_c00326{bottom:94.466667pt;}
.y18_c00326{bottom:109.602667pt;}
.y17_c00326{bottom:145.602667pt;}
.y16_c00326{bottom:182.930667pt;}
.y15_c00326{bottom:220.258667pt;}
.y14_c00326{bottom:256.258667pt;}
.y13_c00326{bottom:293.586667pt;}
.y12_c00326{bottom:329.586667pt;}
.y11_c00326{bottom:366.914667pt;}
.y10_c00326{bottom:404.242667pt;}
.yf_c00326{bottom:440.242667pt;}
.ye_c00326{bottom:477.570667pt;}
.yd_c00326{bottom:513.570667pt;}
.yc_c00326{bottom:550.898667pt;}
.yb_c00326{bottom:588.226667pt;}
.ya_c00326{bottom:624.226667pt;}
.y9_c00326{bottom:661.554667pt;}
.y8_c00326{bottom:697.554667pt;}
.y7_c00326{bottom:734.882667pt;}
.y6_c00326{bottom:772.210667pt;}
.y5_c00326{bottom:808.210667pt;}
.y4_c00326{bottom:845.538667pt;}
.y3_c00326{bottom:881.538667pt;}
.y2_c00326{bottom:918.866667pt;}
.h4_c00326{height:17.600093pt;}
.h3_c00326{height:57.375000pt;}
.h2_c00326{height:57.781250pt;}
.h5_c00326{height:64.375000pt;}
.h1_c00326{height:938.202667pt;}
.h0_c00326{height:1122.666667pt;}
.w2_c00326{width:26.696000pt;}
.w1_c00326{width:575.470667pt;}
.w0_c00326{width:793.333333pt;}
.x0_c00326{left:0.000000pt;}
.x2_c00326{left:4.402667pt;}
.x1_c00326{left:108.930667pt;}
.x3_c00326{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c8158e7d54f1fbfb3b92bbe2.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.113281;font-style:normal;font-weight:normal;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_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00327;src:url('chunks/assets/font_64b4e880b4d2f1323c40cacd.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00327;src:url('chunks/assets/font_5524ebe15336aefbacca31f8.woff2')format("woff");}.ff4_c00327{font-family:ff4_c00327;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00327{vertical-align:0.000000px;}
.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;}
}
.ws0_c00327{word-spacing:0.000000px;}
._4_c00327{margin-left:-3.614400px;}
._7_c00327{width:1.936800px;}
._0_c00327{width:3.031200px;}
._2_c00327{width:4.068000px;}
._1_c00327{width:6.040800px;}
._3_c00327{width:7.106400px;}
._6_c00327{width:8.200800px;}
._9_c00327{width:9.972000px;}
._a_c00327{width:10.972800px;}
._5_c00327{width:12.340800px;}
._8_c00327{width:16.063200px;}
.fc0_c00327{color:rgb(0,0,0);}
.fs0_c00327{font-size:72.000000px;}
.y0_c00327{bottom:0.000000px;}
.y1a_c00327{bottom:3.787500px;}
.y19_c00327{bottom:56.735596px;}
.y1_c00327{bottom:106.275000px;}
.y18_c00327{bottom:123.303000px;}
.y17_c00327{bottom:163.803000px;}
.y16_c00327{bottom:205.797000px;}
.y15_c00327{bottom:247.791000px;}
.y14_c00327{bottom:288.291000px;}
.y13_c00327{bottom:330.285000px;}
.y12_c00327{bottom:370.785000px;}
.y11_c00327{bottom:412.779000px;}
.y10_c00327{bottom:454.773000px;}
.yf_c00327{bottom:495.273000px;}
.ye_c00327{bottom:537.267000px;}
.yd_c00327{bottom:577.767000px;}
.yc_c00327{bottom:619.761000px;}
.yb_c00327{bottom:661.755000px;}
.ya_c00327{bottom:702.255000px;}
.y9_c00327{bottom:744.249000px;}
.y8_c00327{bottom:784.749000px;}
.y7_c00327{bottom:826.743000px;}
.y6_c00327{bottom:868.737000px;}
.y5_c00327{bottom:909.237000px;}
.y4_c00327{bottom:951.231000px;}
.y3_c00327{bottom:991.731000px;}
.y2_c00327{bottom:1033.725000px;}
.h3_c00327{height:19.800105px;}
.h2_c00327{height:65.003906px;}
.h4_c00327{height:72.421875px;}
.h1_c00327{height:1055.478000px;}
.h0_c00327{height:1263.000000px;}
.w2_c00327{width:30.031500px;}
.w1_c00327{width:647.404500px;}
.w0_c00327{width:892.500000px;}
.x0_c00327{left:0.000000px;}
.x2_c00327{left:4.953000px;}
.x1_c00327{left:122.547000px;}
.x3_c00327{left:734.908997px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls0_c00327{letter-spacing:0.000000pt;}
.ws0_c00327{word-spacing:0.000000pt;}
._4_c00327{margin-left:-3.212800pt;}
._7_c00327{width:1.721600pt;}
._0_c00327{width:2.694400pt;}
._2_c00327{width:3.616000pt;}
._1_c00327{width:5.369600pt;}
._3_c00327{width:6.316800pt;}
._6_c00327{width:7.289600pt;}
._9_c00327{width:8.864000pt;}
._a_c00327{width:9.753600pt;}
._5_c00327{width:10.969600pt;}
._8_c00327{width:14.278400pt;}
.fs0_c00327{font-size:64.000000pt;}
.y0_c00327{bottom:0.000000pt;}
.y1a_c00327{bottom:3.366667pt;}
.y19_c00327{bottom:50.431641pt;}
.y1_c00327{bottom:94.466667pt;}
.y18_c00327{bottom:109.602667pt;}
.y17_c00327{bottom:145.602667pt;}
.y16_c00327{bottom:182.930667pt;}
.y15_c00327{bottom:220.258667pt;}
.y14_c00327{bottom:256.258667pt;}
.y13_c00327{bottom:293.586667pt;}
.y12_c00327{bottom:329.586667pt;}
.y11_c00327{bottom:366.914667pt;}
.y10_c00327{bottom:404.242667pt;}
.yf_c00327{bottom:440.242667pt;}
.ye_c00327{bottom:477.570667pt;}
.yd_c00327{bottom:513.570667pt;}
.yc_c00327{bottom:550.898667pt;}
.yb_c00327{bottom:588.226667pt;}
.ya_c00327{bottom:624.226667pt;}
.y9_c00327{bottom:661.554667pt;}
.y8_c00327{bottom:697.554667pt;}
.y7_c00327{bottom:734.882667pt;}
.y6_c00327{bottom:772.210667pt;}
.y5_c00327{bottom:808.210667pt;}
.y4_c00327{bottom:845.538667pt;}
.y3_c00327{bottom:881.538667pt;}
.y2_c00327{bottom:918.866667pt;}
.h3_c00327{height:17.600093pt;}
.h2_c00327{height:57.781250pt;}
.h4_c00327{height:64.375000pt;}
.h1_c00327{height:938.202667pt;}
.h0_c00327{height:1122.666667pt;}
.w2_c00327{width:26.694667pt;}
.w1_c00327{width:575.470667pt;}
.w0_c00327{width:793.333333pt;}
.x0_c00327{left:0.000000pt;}
.x2_c00327{left:4.402667pt;}
.x1_c00327{left:108.930667pt;}
.x3_c00327{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d636a620d77b6f6a68b79351.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00328;src:url('chunks/assets/font_542e15864b361f521c93c099.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00328;src:url('chunks/assets/font_aabac316113cda4d4b624c7e.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00328{vertical-align:0.000000px;}
.ls2_c00328{letter-spacing:-0.014400px;}
.ls1_c00328{letter-spacing:0.000000px;}
.ls0_c00328{letter-spacing:5.392800px;}
.sc__c00328{text-shadow:none;}
.sc0_c00328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00328{-webkit-text-stroke:0px transparent;}
.sc0_c00328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00328{word-spacing:0.000000px;}
._9_c00328{margin-left:-5.400000px;}
._2_c00328{margin-left:-4.190400px;}
._4_c00328{margin-left:-2.649600px;}
._3_c00328{margin-left:-1.303200px;}
._0_c00328{width:1.166400px;}
._c_c00328{width:2.210400px;}
._7_c00328{width:3.283200px;}
._f_c00328{width:4.356000px;}
._6_c00328{width:5.954400px;}
._5_c00328{width:7.257600px;}
._d_c00328{width:10.159200px;}
._11_c00328{width:12.038400px;}
._12_c00328{width:14.587200px;}
._10_c00328{width:16.041600px;}
._e_c00328{width:17.870400px;}
._b_c00328{width:23.616000px;}
._8_c00328{width:27.360000px;}
._a_c00328{width:33.264000px;}
._1_c00328{width:36.568800px;}
.fc0_c00328{color:rgb(0,0,0);}
.fs0_c00328{font-size:72.000000px;}
.y0_c00328{bottom:0.000000px;}
.y1c_c00328{bottom:3.787500px;}
.y1a_c00328{bottom:40.809000px;}
.y1b_c00328{bottom:56.735596px;}
.y19_c00328{bottom:81.309000px;}
.y1_c00328{bottom:106.275000px;}
.y18_c00328{bottom:123.303000px;}
.y17_c00328{bottom:163.803000px;}
.y16_c00328{bottom:205.797000px;}
.y15_c00328{bottom:247.791000px;}
.y14_c00328{bottom:288.291000px;}
.y13_c00328{bottom:330.285000px;}
.y12_c00328{bottom:370.785000px;}
.y11_c00328{bottom:412.779000px;}
.y10_c00328{bottom:454.773000px;}
.yf_c00328{bottom:495.273000px;}
.ye_c00328{bottom:537.267000px;}
.yd_c00328{bottom:577.767000px;}
.yc_c00328{bottom:619.761000px;}
.yb_c00328{bottom:661.755000px;}
.ya_c00328{bottom:702.255000px;}
.y9_c00328{bottom:744.249000px;}
.y8_c00328{bottom:784.749000px;}
.y7_c00328{bottom:826.743000px;}
.y6_c00328{bottom:868.737000px;}
.y5_c00328{bottom:909.237000px;}
.y4_c00328{bottom:951.231000px;}
.y3_c00328{bottom:991.731000px;}
.y2_c00328{bottom:1033.725000px;}
.h4_c00328{height:19.800105px;}
.h2_c00328{height:64.546875px;}
.h3_c00328{height:65.003906px;}
.h5_c00328{height:72.421875px;}
.h1_c00328{height:1055.478000px;}
.h0_c00328{height:1263.000000px;}
.w2_c00328{width:30.033000px;}
.w1_c00328{width:647.404500px;}
.w0_c00328{width:892.500000px;}
.x0_c00328{left:0.000000px;}
.x2_c00328{left:4.953000px;}
.x1_c00328{left:122.547000px;}
.x3_c00328{left:127.559509px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls2_c00328{letter-spacing:-0.012800pt;}
.ls1_c00328{letter-spacing:0.000000pt;}
.ls0_c00328{letter-spacing:4.793600pt;}
.ws0_c00328{word-spacing:0.000000pt;}
._9_c00328{margin-left:-4.800000pt;}
._2_c00328{margin-left:-3.724800pt;}
._4_c00328{margin-left:-2.355200pt;}
._3_c00328{margin-left:-1.158400pt;}
._0_c00328{width:1.036800pt;}
._c_c00328{width:1.964800pt;}
._7_c00328{width:2.918400pt;}
._f_c00328{width:3.872000pt;}
._6_c00328{width:5.292800pt;}
._5_c00328{width:6.451200pt;}
._d_c00328{width:9.030400pt;}
._11_c00328{width:10.700800pt;}
._12_c00328{width:12.966400pt;}
._10_c00328{width:14.259200pt;}
._e_c00328{width:15.884800pt;}
._b_c00328{width:20.992000pt;}
._8_c00328{width:24.320000pt;}
._a_c00328{width:29.568000pt;}
._1_c00328{width:32.505600pt;}
.fs0_c00328{font-size:64.000000pt;}
.y0_c00328{bottom:0.000000pt;}
.y1c_c00328{bottom:3.366667pt;}
.y1a_c00328{bottom:36.274667pt;}
.y1b_c00328{bottom:50.431641pt;}
.y19_c00328{bottom:72.274667pt;}
.y1_c00328{bottom:94.466667pt;}
.y18_c00328{bottom:109.602667pt;}
.y17_c00328{bottom:145.602667pt;}
.y16_c00328{bottom:182.930667pt;}
.y15_c00328{bottom:220.258667pt;}
.y14_c00328{bottom:256.258667pt;}
.y13_c00328{bottom:293.586667pt;}
.y12_c00328{bottom:329.586667pt;}
.y11_c00328{bottom:366.914667pt;}
.y10_c00328{bottom:404.242667pt;}
.yf_c00328{bottom:440.242667pt;}
.ye_c00328{bottom:477.570667pt;}
.yd_c00328{bottom:513.570667pt;}
.yc_c00328{bottom:550.898667pt;}
.yb_c00328{bottom:588.226667pt;}
.ya_c00328{bottom:624.226667pt;}
.y9_c00328{bottom:661.554667pt;}
.y8_c00328{bottom:697.554667pt;}
.y7_c00328{bottom:734.882667pt;}
.y6_c00328{bottom:772.210667pt;}
.y5_c00328{bottom:808.210667pt;}
.y4_c00328{bottom:845.538667pt;}
.y3_c00328{bottom:881.538667pt;}
.y2_c00328{bottom:918.866667pt;}
.h4_c00328{height:17.600093pt;}
.h2_c00328{height:57.375000pt;}
.h3_c00328{height:57.781250pt;}
.h5_c00328{height:64.375000pt;}
.h1_c00328{height:938.202667pt;}
.h0_c00328{height:1122.666667pt;}
.w2_c00328{width:26.696000pt;}
.w1_c00328{width:575.470667pt;}
.w0_c00328{width:793.333333pt;}
.x0_c00328{left:0.000000pt;}
.x2_c00328{left:4.402667pt;}
.x1_c00328{left:108.930667pt;}
.x3_c00328{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce28841d4e73a998acb48eda.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.113281;font-style:normal;font-weight:normal;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_d74d7c544aa848e34e8bbe12.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00329;src:url('chunks/assets/font_5524ebe15336aefbacca31f8.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.ls1_c00329{letter-spacing:0.000000px;}
.ls0_c00329{letter-spacing:0.014400px;}
.sc__c00329{text-shadow:none;}
.sc0_c00329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00329{-webkit-text-stroke:0px transparent;}
.sc0_c00329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00329{word-spacing:0.000000px;}
._6_c00329{margin-left:-5.616000px;}
._9_c00329{margin-left:-3.960000px;}
._a_c00329{margin-left:-2.685600px;}
._e_c00329{margin-left:-1.288800px;}
._3_c00329{width:1.677600px;}
._1_c00329{width:3.391200px;}
._4_c00329{width:5.263200px;}
._7_c00329{width:7.459200px;}
._5_c00329{width:8.611200px;}
._8_c00329{width:9.792000px;}
._2_c00329{width:10.843200px;}
._b_c00329{width:12.463200px;}
._0_c00329{width:13.586400px;}
._d_c00329{width:25.639200px;}
._f_c00329{width:27.727200px;}
._c_c00329{width:29.138400px;}
.fc0_c00329{color:rgb(0,0,0);}
.fs0_c00329{font-size:72.000000px;}
.y0_c00329{bottom:0.000000px;}
.y1c_c00329{bottom:3.787500px;}
.y1a_c00329{bottom:40.809000px;}
.y1b_c00329{bottom:56.735596px;}
.y19_c00329{bottom:81.309000px;}
.y1_c00329{bottom:106.275000px;}
.y18_c00329{bottom:123.303000px;}
.y17_c00329{bottom:163.803000px;}
.y16_c00329{bottom:205.797000px;}
.y15_c00329{bottom:247.791000px;}
.y14_c00329{bottom:288.291000px;}
.y13_c00329{bottom:330.285000px;}
.y12_c00329{bottom:370.785000px;}
.y11_c00329{bottom:412.779000px;}
.y10_c00329{bottom:454.773000px;}
.yf_c00329{bottom:495.273000px;}
.ye_c00329{bottom:537.267000px;}
.yd_c00329{bottom:577.767000px;}
.yc_c00329{bottom:619.761000px;}
.yb_c00329{bottom:661.755000px;}
.ya_c00329{bottom:702.255000px;}
.y9_c00329{bottom:744.249000px;}
.y8_c00329{bottom:784.749000px;}
.y7_c00329{bottom:826.743000px;}
.y6_c00329{bottom:868.737000px;}
.y5_c00329{bottom:909.237000px;}
.y4_c00329{bottom:951.231000px;}
.y3_c00329{bottom:991.731000px;}
.y2_c00329{bottom:1033.725000px;}
.h4_c00329{height:19.800105px;}
.h3_c00329{height:64.546875px;}
.h2_c00329{height:65.003906px;}
.h5_c00329{height:72.421875px;}
.h1_c00329{height:1055.478000px;}
.h0_c00329{height:1263.000000px;}
.w2_c00329{width:30.031500px;}
.w1_c00329{width:647.404500px;}
.w0_c00329{width:892.500000px;}
.x0_c00329{left:0.000000px;}
.x2_c00329{left:4.953000px;}
.x1_c00329{left:122.547000px;}
.x3_c00329{left:734.908997px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls1_c00329{letter-spacing:0.000000pt;}
.ls0_c00329{letter-spacing:0.012800pt;}
.ws0_c00329{word-spacing:0.000000pt;}
._6_c00329{margin-left:-4.992000pt;}
._9_c00329{margin-left:-3.520000pt;}
._a_c00329{margin-left:-2.387200pt;}
._e_c00329{margin-left:-1.145600pt;}
._3_c00329{width:1.491200pt;}
._1_c00329{width:3.014400pt;}
._4_c00329{width:4.678400pt;}
._7_c00329{width:6.630400pt;}
._5_c00329{width:7.654400pt;}
._8_c00329{width:8.704000pt;}
._2_c00329{width:9.638400pt;}
._b_c00329{width:11.078400pt;}
._0_c00329{width:12.076800pt;}
._d_c00329{width:22.790400pt;}
._f_c00329{width:24.646400pt;}
._c_c00329{width:25.900800pt;}
.fs0_c00329{font-size:64.000000pt;}
.y0_c00329{bottom:0.000000pt;}
.y1c_c00329{bottom:3.366667pt;}
.y1a_c00329{bottom:36.274667pt;}
.y1b_c00329{bottom:50.431641pt;}
.y19_c00329{bottom:72.274667pt;}
.y1_c00329{bottom:94.466667pt;}
.y18_c00329{bottom:109.602667pt;}
.y17_c00329{bottom:145.602667pt;}
.y16_c00329{bottom:182.930667pt;}
.y15_c00329{bottom:220.258667pt;}
.y14_c00329{bottom:256.258667pt;}
.y13_c00329{bottom:293.586667pt;}
.y12_c00329{bottom:329.586667pt;}
.y11_c00329{bottom:366.914667pt;}
.y10_c00329{bottom:404.242667pt;}
.yf_c00329{bottom:440.242667pt;}
.ye_c00329{bottom:477.570667pt;}
.yd_c00329{bottom:513.570667pt;}
.yc_c00329{bottom:550.898667pt;}
.yb_c00329{bottom:588.226667pt;}
.ya_c00329{bottom:624.226667pt;}
.y9_c00329{bottom:661.554667pt;}
.y8_c00329{bottom:697.554667pt;}
.y7_c00329{bottom:734.882667pt;}
.y6_c00329{bottom:772.210667pt;}
.y5_c00329{bottom:808.210667pt;}
.y4_c00329{bottom:845.538667pt;}
.y3_c00329{bottom:881.538667pt;}
.y2_c00329{bottom:918.866667pt;}
.h4_c00329{height:17.600093pt;}
.h3_c00329{height:57.375000pt;}
.h2_c00329{height:57.781250pt;}
.h5_c00329{height:64.375000pt;}
.h1_c00329{height:938.202667pt;}
.h0_c00329{height:1122.666667pt;}
.w2_c00329{width:26.694667pt;}
.w1_c00329{width:575.470667pt;}
.w0_c00329{width:793.333333pt;}
.x0_c00329{left:0.000000pt;}
.x2_c00329{left:4.402667pt;}
.x1_c00329{left:108.930667pt;}
.x3_c00329{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4a64048dc5a25cd356ff99ac.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00330;src:url('chunks/assets/font_107b84c5c4f3996267c8c2ca.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00330;src:url('chunks/assets/font_47f9b38f1da376d05be4f60f.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00330{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00330{vertical-align:0.000000px;}
.ls1_c00330{letter-spacing:-0.014400px;}
.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:0.000000px;}
._1_c00330{margin-left:-5.364000px;}
._0_c00330{margin-left:-3.974400px;}
._e_c00330{margin-left:-1.288800px;}
._5_c00330{width:2.052000px;}
._4_c00330{width:3.736800px;}
._7_c00330{width:4.932000px;}
._b_c00330{width:6.804000px;}
._2_c00330{width:8.668800px;}
._6_c00330{width:10.368000px;}
._11_c00330{width:11.779200px;}
._a_c00330{width:13.046400px;}
._3_c00330{width:15.271200px;}
._9_c00330{width:16.423200px;}
._8_c00330{width:21.470400px;}
._f_c00330{width:27.432000px;}
._10_c00330{width:31.665600px;}
._d_c00330{width:34.466400px;}
._c_c00330{width:37.562400px;}
.fc0_c00330{color:rgb(0,0,0);}
.fs0_c00330{font-size:72.000000px;}
.y0_c00330{bottom:0.000000px;}
.y1c_c00330{bottom:3.787500px;}
.y1a_c00330{bottom:40.809000px;}
.y1b_c00330{bottom:56.735596px;}
.y19_c00330{bottom:81.309000px;}
.y1_c00330{bottom:106.275000px;}
.y18_c00330{bottom:123.303000px;}
.y17_c00330{bottom:163.803000px;}
.y16_c00330{bottom:205.797000px;}
.y15_c00330{bottom:247.791000px;}
.y14_c00330{bottom:288.291000px;}
.y13_c00330{bottom:330.285000px;}
.y12_c00330{bottom:370.785000px;}
.y11_c00330{bottom:412.779000px;}
.y10_c00330{bottom:454.773000px;}
.yf_c00330{bottom:495.273000px;}
.ye_c00330{bottom:537.267000px;}
.yd_c00330{bottom:577.767000px;}
.yc_c00330{bottom:619.761000px;}
.yb_c00330{bottom:661.755000px;}
.ya_c00330{bottom:702.255000px;}
.y9_c00330{bottom:744.249000px;}
.y8_c00330{bottom:784.749000px;}
.y7_c00330{bottom:826.743000px;}
.y6_c00330{bottom:868.737000px;}
.y5_c00330{bottom:909.237000px;}
.y4_c00330{bottom:951.231000px;}
.y3_c00330{bottom:991.731000px;}
.y2_c00330{bottom:1033.725000px;}
.h4_c00330{height:19.800105px;}
.h2_c00330{height:64.546875px;}
.h3_c00330{height:65.003906px;}
.h5_c00330{height:72.421875px;}
.h1_c00330{height:1055.478000px;}
.h0_c00330{height:1263.000000px;}
.w2_c00330{width:30.033000px;}
.w1_c00330{width:647.404500px;}
.w0_c00330{width:892.500000px;}
.x0_c00330{left:0.000000px;}
.x2_c00330{left:4.953000px;}
.x1_c00330{left:122.547000px;}
.x3_c00330{left:127.559509px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls1_c00330{letter-spacing:-0.012800pt;}
.ls0_c00330{letter-spacing:0.000000pt;}
.ws0_c00330{word-spacing:0.000000pt;}
._1_c00330{margin-left:-4.768000pt;}
._0_c00330{margin-left:-3.532800pt;}
._e_c00330{margin-left:-1.145600pt;}
._5_c00330{width:1.824000pt;}
._4_c00330{width:3.321600pt;}
._7_c00330{width:4.384000pt;}
._b_c00330{width:6.048000pt;}
._2_c00330{width:7.705600pt;}
._6_c00330{width:9.216000pt;}
._11_c00330{width:10.470400pt;}
._a_c00330{width:11.596800pt;}
._3_c00330{width:13.574400pt;}
._9_c00330{width:14.598400pt;}
._8_c00330{width:19.084800pt;}
._f_c00330{width:24.384000pt;}
._10_c00330{width:28.147200pt;}
._d_c00330{width:30.636800pt;}
._c_c00330{width:33.388800pt;}
.fs0_c00330{font-size:64.000000pt;}
.y0_c00330{bottom:0.000000pt;}
.y1c_c00330{bottom:3.366667pt;}
.y1a_c00330{bottom:36.274667pt;}
.y1b_c00330{bottom:50.431641pt;}
.y19_c00330{bottom:72.274667pt;}
.y1_c00330{bottom:94.466667pt;}
.y18_c00330{bottom:109.602667pt;}
.y17_c00330{bottom:145.602667pt;}
.y16_c00330{bottom:182.930667pt;}
.y15_c00330{bottom:220.258667pt;}
.y14_c00330{bottom:256.258667pt;}
.y13_c00330{bottom:293.586667pt;}
.y12_c00330{bottom:329.586667pt;}
.y11_c00330{bottom:366.914667pt;}
.y10_c00330{bottom:404.242667pt;}
.yf_c00330{bottom:440.242667pt;}
.ye_c00330{bottom:477.570667pt;}
.yd_c00330{bottom:513.570667pt;}
.yc_c00330{bottom:550.898667pt;}
.yb_c00330{bottom:588.226667pt;}
.ya_c00330{bottom:624.226667pt;}
.y9_c00330{bottom:661.554667pt;}
.y8_c00330{bottom:697.554667pt;}
.y7_c00330{bottom:734.882667pt;}
.y6_c00330{bottom:772.210667pt;}
.y5_c00330{bottom:808.210667pt;}
.y4_c00330{bottom:845.538667pt;}
.y3_c00330{bottom:881.538667pt;}
.y2_c00330{bottom:918.866667pt;}
.h4_c00330{height:17.600093pt;}
.h2_c00330{height:57.375000pt;}
.h3_c00330{height:57.781250pt;}
.h5_c00330{height:64.375000pt;}
.h1_c00330{height:938.202667pt;}
.h0_c00330{height:1122.666667pt;}
.w2_c00330{width:26.696000pt;}
.w1_c00330{width:575.470667pt;}
.w0_c00330{width:793.333333pt;}
.x0_c00330{left:0.000000pt;}
.x2_c00330{left:4.402667pt;}
.x1_c00330{left:108.930667pt;}
.x3_c00330{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d400b8632f22f19702d35720.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.113281;font-style:normal;font-weight:normal;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_e4dcaf3b8cff9bc5c9c6410f.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00331;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00331;src:url('chunks/assets/font_43ac1fa6344ed1734a33ef6b.woff2')format("woff");}.ff4_c00331{font-family:ff4_c00331;line-height:1.330566;font-style: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;}
.ls2_c00331{letter-spacing:-0.014400px;}
.ls1_c00331{letter-spacing:0.000000px;}
.ls0_c00331{letter-spacing:35.784000px;}
.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:0.000000px;}
._9_c00331{margin-left:-5.342400px;}
._5_c00331{margin-left:-3.960000px;}
._d_c00331{margin-left:-2.664000px;}
._f_c00331{margin-left:-1.324800px;}
._10_c00331{width:1.526400px;}
._a_c00331{width:3.240000px;}
._b_c00331{width:4.795200px;}
._12_c00331{width:6.026400px;}
._0_c00331{width:7.056000px;}
._11_c00331{width:8.258400px;}
._3_c00331{width:9.266400px;}
._4_c00331{width:10.375200px;}
._1_c00331{width:18.432000px;}
._e_c00331{width:21.492000px;}
._2_c00331{width:24.408000px;}
._c_c00331{width:25.466400px;}
._14_c00331{width:26.697600px;}
._13_c00331{width:28.980000px;}
._6_c00331{width:31.816800px;}
._7_c00331{width:34.473600px;}
._8_c00331{width:35.791200px;}
.fc0_c00331{color:rgb(0,0,0);}
.fs0_c00331{font-size:72.000000px;}
.y0_c00331{bottom:0.000000px;}
.y1c_c00331{bottom:3.787500px;}
.y1a_c00331{bottom:40.809000px;}
.y1b_c00331{bottom:56.735596px;}
.y19_c00331{bottom:81.309000px;}
.y1_c00331{bottom:106.275000px;}
.y18_c00331{bottom:123.303000px;}
.y17_c00331{bottom:163.803000px;}
.y16_c00331{bottom:205.797000px;}
.y15_c00331{bottom:247.791000px;}
.y14_c00331{bottom:288.291000px;}
.y13_c00331{bottom:330.285000px;}
.y12_c00331{bottom:370.785000px;}
.y11_c00331{bottom:412.779000px;}
.y10_c00331{bottom:454.773000px;}
.yf_c00331{bottom:495.273000px;}
.ye_c00331{bottom:537.267000px;}
.yd_c00331{bottom:577.767000px;}
.yc_c00331{bottom:619.761000px;}
.yb_c00331{bottom:661.755000px;}
.ya_c00331{bottom:702.255000px;}
.y9_c00331{bottom:744.249000px;}
.y8_c00331{bottom:784.749000px;}
.y7_c00331{bottom:826.743000px;}
.y6_c00331{bottom:868.737000px;}
.y5_c00331{bottom:909.237000px;}
.y4_c00331{bottom:951.231000px;}
.y3_c00331{bottom:991.731000px;}
.y2_c00331{bottom:1033.725000px;}
.h4_c00331{height:19.800105px;}
.h3_c00331{height:64.546875px;}
.h2_c00331{height:65.003906px;}
.h5_c00331{height:72.421875px;}
.h1_c00331{height:1055.478000px;}
.h0_c00331{height:1263.000000px;}
.w2_c00331{width:30.031500px;}
.w1_c00331{width:651.934500px;}
.w0_c00331{width:892.500000px;}
.x0_c00331{left:0.000000px;}
.x2_c00331{left:4.953000px;}
.x1_c00331{left:122.547000px;}
.x3_c00331{left:734.908997px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls2_c00331{letter-spacing:-0.012800pt;}
.ls1_c00331{letter-spacing:0.000000pt;}
.ls0_c00331{letter-spacing:31.808000pt;}
.ws0_c00331{word-spacing:0.000000pt;}
._9_c00331{margin-left:-4.748800pt;}
._5_c00331{margin-left:-3.520000pt;}
._d_c00331{margin-left:-2.368000pt;}
._f_c00331{margin-left:-1.177600pt;}
._10_c00331{width:1.356800pt;}
._a_c00331{width:2.880000pt;}
._b_c00331{width:4.262400pt;}
._12_c00331{width:5.356800pt;}
._0_c00331{width:6.272000pt;}
._11_c00331{width:7.340800pt;}
._3_c00331{width:8.236800pt;}
._4_c00331{width:9.222400pt;}
._1_c00331{width:16.384000pt;}
._e_c00331{width:19.104000pt;}
._2_c00331{width:21.696000pt;}
._c_c00331{width:22.636800pt;}
._14_c00331{width:23.731200pt;}
._13_c00331{width:25.760000pt;}
._6_c00331{width:28.281600pt;}
._7_c00331{width:30.643200pt;}
._8_c00331{width:31.814400pt;}
.fs0_c00331{font-size:64.000000pt;}
.y0_c00331{bottom:0.000000pt;}
.y1c_c00331{bottom:3.366667pt;}
.y1a_c00331{bottom:36.274667pt;}
.y1b_c00331{bottom:50.431641pt;}
.y19_c00331{bottom:72.274667pt;}
.y1_c00331{bottom:94.466667pt;}
.y18_c00331{bottom:109.602667pt;}
.y17_c00331{bottom:145.602667pt;}
.y16_c00331{bottom:182.930667pt;}
.y15_c00331{bottom:220.258667pt;}
.y14_c00331{bottom:256.258667pt;}
.y13_c00331{bottom:293.586667pt;}
.y12_c00331{bottom:329.586667pt;}
.y11_c00331{bottom:366.914667pt;}
.y10_c00331{bottom:404.242667pt;}
.yf_c00331{bottom:440.242667pt;}
.ye_c00331{bottom:477.570667pt;}
.yd_c00331{bottom:513.570667pt;}
.yc_c00331{bottom:550.898667pt;}
.yb_c00331{bottom:588.226667pt;}
.ya_c00331{bottom:624.226667pt;}
.y9_c00331{bottom:661.554667pt;}
.y8_c00331{bottom:697.554667pt;}
.y7_c00331{bottom:734.882667pt;}
.y6_c00331{bottom:772.210667pt;}
.y5_c00331{bottom:808.210667pt;}
.y4_c00331{bottom:845.538667pt;}
.y3_c00331{bottom:881.538667pt;}
.y2_c00331{bottom:918.866667pt;}
.h4_c00331{height:17.600093pt;}
.h3_c00331{height:57.375000pt;}
.h2_c00331{height:57.781250pt;}
.h5_c00331{height:64.375000pt;}
.h1_c00331{height:938.202667pt;}
.h0_c00331{height:1122.666667pt;}
.w2_c00331{width:26.694667pt;}
.w1_c00331{width:579.497333pt;}
.w0_c00331{width:793.333333pt;}
.x0_c00331{left:0.000000pt;}
.x2_c00331{left:4.402667pt;}
.x1_c00331{left:108.930667pt;}
.x3_c00331{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7579cb0a59f2113e768759f3.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00332;src:url('chunks/assets/font_1351d46c7671aaf4b2f80d79.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00332;src:url('chunks/assets/font_e76c43a96db20e7c274c4e82.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.ls1_c00332{letter-spacing:-0.014400px;}
.ls0_c00332{letter-spacing:0.000000px;}
.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:0.000000px;}
._3_c00332{margin-left:-3.960000px;}
._a_c00332{width:1.425600px;}
._9_c00332{width:2.700000px;}
._2_c00332{width:4.039200px;}
._4_c00332{width:5.853600px;}
._c_c00332{width:7.005600px;}
._8_c00332{width:8.042400px;}
._e_c00332{width:9.079200px;}
._1_c00332{width:10.375200px;}
._6_c00332{width:11.527200px;}
._0_c00332{width:15.271200px;}
._7_c00332{width:17.848800px;}
._10_c00332{width:21.052800px;}
._5_c00332{width:22.204800px;}
._f_c00332{width:25.596000px;}
._d_c00332{width:26.740800px;}
._b_c00332{width:29.275200px;}
.fc0_c00332{color:rgb(0,0,0);}
.fs0_c00332{font-size:72.000000px;}
.y0_c00332{bottom:0.000000px;}
.y19_c00332{bottom:3.787500px;}
.y18_c00332{bottom:56.735596px;}
.y1_c00332{bottom:106.275000px;}
.y17_c00332{bottom:163.803000px;}
.y16_c00332{bottom:205.797000px;}
.y15_c00332{bottom:247.791000px;}
.y14_c00332{bottom:288.291000px;}
.y13_c00332{bottom:330.285000px;}
.y12_c00332{bottom:370.785000px;}
.y11_c00332{bottom:412.779000px;}
.y10_c00332{bottom:454.773000px;}
.yf_c00332{bottom:495.273000px;}
.ye_c00332{bottom:537.267000px;}
.yd_c00332{bottom:577.767000px;}
.yc_c00332{bottom:619.761000px;}
.yb_c00332{bottom:661.755000px;}
.ya_c00332{bottom:702.255000px;}
.y9_c00332{bottom:744.249000px;}
.y8_c00332{bottom:784.749000px;}
.y7_c00332{bottom:826.743000px;}
.y6_c00332{bottom:868.737000px;}
.y5_c00332{bottom:909.237000px;}
.y4_c00332{bottom:951.231000px;}
.y3_c00332{bottom:991.731000px;}
.y2_c00332{bottom:1033.725000px;}
.h3_c00332{height:19.800105px;}
.h2_c00332{height:65.003906px;}
.h4_c00332{height:72.421875px;}
.h1_c00332{height:1055.478000px;}
.h0_c00332{height:1263.000000px;}
.w2_c00332{width:30.033000px;}
.w1_c00332{width:647.404500px;}
.w0_c00332{width:892.500000px;}
.x0_c00332{left:0.000000px;}
.x2_c00332{left:4.953000px;}
.x1_c00332{left:122.547000px;}
.x3_c00332{left:127.559509px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls1_c00332{letter-spacing:-0.012800pt;}
.ls0_c00332{letter-spacing:0.000000pt;}
.ws0_c00332{word-spacing:0.000000pt;}
._3_c00332{margin-left:-3.520000pt;}
._a_c00332{width:1.267200pt;}
._9_c00332{width:2.400000pt;}
._2_c00332{width:3.590400pt;}
._4_c00332{width:5.203200pt;}
._c_c00332{width:6.227200pt;}
._8_c00332{width:7.148800pt;}
._e_c00332{width:8.070400pt;}
._1_c00332{width:9.222400pt;}
._6_c00332{width:10.246400pt;}
._0_c00332{width:13.574400pt;}
._7_c00332{width:15.865600pt;}
._10_c00332{width:18.713600pt;}
._5_c00332{width:19.737600pt;}
._f_c00332{width:22.752000pt;}
._d_c00332{width:23.769600pt;}
._b_c00332{width:26.022400pt;}
.fs0_c00332{font-size:64.000000pt;}
.y0_c00332{bottom:0.000000pt;}
.y19_c00332{bottom:3.366667pt;}
.y18_c00332{bottom:50.431641pt;}
.y1_c00332{bottom:94.466667pt;}
.y17_c00332{bottom:145.602667pt;}
.y16_c00332{bottom:182.930667pt;}
.y15_c00332{bottom:220.258667pt;}
.y14_c00332{bottom:256.258667pt;}
.y13_c00332{bottom:293.586667pt;}
.y12_c00332{bottom:329.586667pt;}
.y11_c00332{bottom:366.914667pt;}
.y10_c00332{bottom:404.242667pt;}
.yf_c00332{bottom:440.242667pt;}
.ye_c00332{bottom:477.570667pt;}
.yd_c00332{bottom:513.570667pt;}
.yc_c00332{bottom:550.898667pt;}
.yb_c00332{bottom:588.226667pt;}
.ya_c00332{bottom:624.226667pt;}
.y9_c00332{bottom:661.554667pt;}
.y8_c00332{bottom:697.554667pt;}
.y7_c00332{bottom:734.882667pt;}
.y6_c00332{bottom:772.210667pt;}
.y5_c00332{bottom:808.210667pt;}
.y4_c00332{bottom:845.538667pt;}
.y3_c00332{bottom:881.538667pt;}
.y2_c00332{bottom:918.866667pt;}
.h3_c00332{height:17.600093pt;}
.h2_c00332{height:57.781250pt;}
.h4_c00332{height:64.375000pt;}
.h1_c00332{height:938.202667pt;}
.h0_c00332{height:1122.666667pt;}
.w2_c00332{width:26.696000pt;}
.w1_c00332{width:575.470667pt;}
.w0_c00332{width:793.333333pt;}
.x0_c00332{left:0.000000pt;}
.x2_c00332{left:4.402667pt;}
.x1_c00332{left:108.930667pt;}
.x3_c00332{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5ca9e39a721d4b973fc729e5.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00333;src:url('chunks/assets/font_26d5265810e8867390e566ea.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00333;src:url('chunks/assets/font_ee50cd3a15d24baf803beabf.woff2')format("woff");}.ff3_c00333{font-family:ff3_c00333;line-height:1.330566;font-style: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;}
}
.ws0_c00333{word-spacing:0.000000px;}
._3_c00333{margin-left:-4.795200px;}
._2_c00333{margin-left:-2.664000px;}
._1_c00333{margin-left:-1.159200px;}
._5_c00333{width:2.505600px;}
._0_c00333{width:4.104000px;}
._4_c00333{width:5.112000px;}
._6_c00333{width:6.328800px;}
._7_c00333{width:8.042400px;}
._c_c00333{width:9.144000px;}
._9_c00333{width:10.749600px;}
._b_c00333{width:12.276000px;}
._a_c00333{width:13.802400px;}
._8_c00333{width:14.839200px;}
._d_c00333{width:21.268800px;}
.fc0_c00333{color:rgb(0,0,0);}
.fs0_c00333{font-size:72.000000px;}
.y0_c00333{bottom:0.000000px;}
.y1c_c00333{bottom:3.787500px;}
.y1a_c00333{bottom:40.809000px;}
.y1b_c00333{bottom:56.735596px;}
.y19_c00333{bottom:81.309000px;}
.y1_c00333{bottom:106.275000px;}
.y18_c00333{bottom:123.303000px;}
.y17_c00333{bottom:163.803000px;}
.y16_c00333{bottom:205.797000px;}
.y15_c00333{bottom:247.791000px;}
.y14_c00333{bottom:288.291000px;}
.y13_c00333{bottom:330.285000px;}
.y12_c00333{bottom:370.785000px;}
.y11_c00333{bottom:412.779000px;}
.y10_c00333{bottom:454.773000px;}
.yf_c00333{bottom:495.273000px;}
.ye_c00333{bottom:537.267000px;}
.yd_c00333{bottom:577.767000px;}
.yc_c00333{bottom:619.761000px;}
.yb_c00333{bottom:661.755000px;}
.ya_c00333{bottom:702.255000px;}
.y9_c00333{bottom:744.249000px;}
.y8_c00333{bottom:784.749000px;}
.y7_c00333{bottom:826.743000px;}
.y6_c00333{bottom:868.737000px;}
.y5_c00333{bottom:909.237000px;}
.y4_c00333{bottom:951.231000px;}
.y3_c00333{bottom:991.731000px;}
.y2_c00333{bottom:1033.725000px;}
.h4_c00333{height:19.800105px;}
.h2_c00333{height:64.546875px;}
.h3_c00333{height:65.003906px;}
.h5_c00333{height:72.421875px;}
.h1_c00333{height:1055.478000px;}
.h0_c00333{height:1263.000000px;}
.w2_c00333{width:30.031500px;}
.w1_c00333{width:647.404500px;}
.w0_c00333{width:892.500000px;}
.x0_c00333{left:0.000000px;}
.x2_c00333{left:4.953000px;}
.x1_c00333{left:122.547000px;}
.x3_c00333{left:734.908997px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls0_c00333{letter-spacing:0.000000pt;}
.ws0_c00333{word-spacing:0.000000pt;}
._3_c00333{margin-left:-4.262400pt;}
._2_c00333{margin-left:-2.368000pt;}
._1_c00333{margin-left:-1.030400pt;}
._5_c00333{width:2.227200pt;}
._0_c00333{width:3.648000pt;}
._4_c00333{width:4.544000pt;}
._6_c00333{width:5.625600pt;}
._7_c00333{width:7.148800pt;}
._c_c00333{width:8.128000pt;}
._9_c00333{width:9.555200pt;}
._b_c00333{width:10.912000pt;}
._a_c00333{width:12.268800pt;}
._8_c00333{width:13.190400pt;}
._d_c00333{width:18.905600pt;}
.fs0_c00333{font-size:64.000000pt;}
.y0_c00333{bottom:0.000000pt;}
.y1c_c00333{bottom:3.366667pt;}
.y1a_c00333{bottom:36.274667pt;}
.y1b_c00333{bottom:50.431641pt;}
.y19_c00333{bottom:72.274667pt;}
.y1_c00333{bottom:94.466667pt;}
.y18_c00333{bottom:109.602667pt;}
.y17_c00333{bottom:145.602667pt;}
.y16_c00333{bottom:182.930667pt;}
.y15_c00333{bottom:220.258667pt;}
.y14_c00333{bottom:256.258667pt;}
.y13_c00333{bottom:293.586667pt;}
.y12_c00333{bottom:329.586667pt;}
.y11_c00333{bottom:366.914667pt;}
.y10_c00333{bottom:404.242667pt;}
.yf_c00333{bottom:440.242667pt;}
.ye_c00333{bottom:477.570667pt;}
.yd_c00333{bottom:513.570667pt;}
.yc_c00333{bottom:550.898667pt;}
.yb_c00333{bottom:588.226667pt;}
.ya_c00333{bottom:624.226667pt;}
.y9_c00333{bottom:661.554667pt;}
.y8_c00333{bottom:697.554667pt;}
.y7_c00333{bottom:734.882667pt;}
.y6_c00333{bottom:772.210667pt;}
.y5_c00333{bottom:808.210667pt;}
.y4_c00333{bottom:845.538667pt;}
.y3_c00333{bottom:881.538667pt;}
.y2_c00333{bottom:918.866667pt;}
.h4_c00333{height:17.600093pt;}
.h2_c00333{height:57.375000pt;}
.h3_c00333{height:57.781250pt;}
.h5_c00333{height:64.375000pt;}
.h1_c00333{height:938.202667pt;}
.h0_c00333{height:1122.666667pt;}
.w2_c00333{width:26.694667pt;}
.w1_c00333{width:575.470667pt;}
.w0_c00333{width:793.333333pt;}
.x0_c00333{left:0.000000pt;}
.x2_c00333{left:4.402667pt;}
.x1_c00333{left:108.930667pt;}
.x3_c00333{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_577e6e18fbe645b8f1015cdc.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.113281;font-style:normal;font-weight:normal;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_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00334;src:url('chunks/assets/font_7579cb0a59f2113e768759f3.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00334;src:url('chunks/assets/font_57850c39ba1d5f3a4ec5e120.woff2')format("woff");}.ff4_c00334{font-family:ff4_c00334;line-height:1.330566;font-style: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.014400px;}
.ls0_c00334{letter-spacing:0.000000px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00334{word-spacing:0.000000px;}
._4_c00334{margin-left:-3.960000px;}
._8_c00334{width:1.756800px;}
._7_c00334{width:2.966400px;}
._c_c00334{width:4.327200px;}
._b_c00334{width:5.644800px;}
._3_c00334{width:7.372800px;}
._e_c00334{width:8.402400px;}
._2_c00334{width:10.605600px;}
._d_c00334{width:11.685600px;}
._f_c00334{width:12.722400px;}
._5_c00334{width:13.860000px;}
._6_c00334{width:16.732800px;}
._0_c00334{width:17.856000px;}
._1_c00334{width:23.320800px;}
._a_c00334{width:24.818400px;}
._9_c00334{width:27.259200px;}
.fc0_c00334{color:rgb(0,0,0);}
.fs0_c00334{font-size:72.000000px;}
.y0_c00334{bottom:0.000000px;}
.y1c_c00334{bottom:3.787500px;}
.y1a_c00334{bottom:40.809000px;}
.y1b_c00334{bottom:56.735596px;}
.y19_c00334{bottom:81.309000px;}
.y1_c00334{bottom:106.275000px;}
.y18_c00334{bottom:123.303000px;}
.y17_c00334{bottom:163.803000px;}
.y16_c00334{bottom:205.797000px;}
.y15_c00334{bottom:247.791000px;}
.y14_c00334{bottom:288.291000px;}
.y13_c00334{bottom:330.285000px;}
.y12_c00334{bottom:370.785000px;}
.y11_c00334{bottom:412.779000px;}
.y10_c00334{bottom:454.773000px;}
.yf_c00334{bottom:495.273000px;}
.ye_c00334{bottom:537.267000px;}
.yd_c00334{bottom:577.767000px;}
.yc_c00334{bottom:619.761000px;}
.yb_c00334{bottom:661.755000px;}
.ya_c00334{bottom:702.255000px;}
.y9_c00334{bottom:744.249000px;}
.y8_c00334{bottom:784.749000px;}
.y7_c00334{bottom:826.743000px;}
.y6_c00334{bottom:868.737000px;}
.y5_c00334{bottom:909.237000px;}
.y4_c00334{bottom:951.231000px;}
.y3_c00334{bottom:991.731000px;}
.y2_c00334{bottom:1033.725000px;}
.h3_c00334{height:19.800105px;}
.h2_c00334{height:65.003906px;}
.h4_c00334{height:72.421875px;}
.h1_c00334{height:1055.478000px;}
.h0_c00334{height:1263.000000px;}
.w2_c00334{width:30.033000px;}
.w1_c00334{width:647.404500px;}
.w0_c00334{width:892.500000px;}
.x0_c00334{left:0.000000px;}
.x2_c00334{left:4.953000px;}
.x1_c00334{left:122.547000px;}
.x3_c00334{left:127.559509px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls1_c00334{letter-spacing:-0.012800pt;}
.ls0_c00334{letter-spacing:0.000000pt;}
.ws0_c00334{word-spacing:0.000000pt;}
._4_c00334{margin-left:-3.520000pt;}
._8_c00334{width:1.561600pt;}
._7_c00334{width:2.636800pt;}
._c_c00334{width:3.846400pt;}
._b_c00334{width:5.017600pt;}
._3_c00334{width:6.553600pt;}
._e_c00334{width:7.468800pt;}
._2_c00334{width:9.427200pt;}
._d_c00334{width:10.387200pt;}
._f_c00334{width:11.308800pt;}
._5_c00334{width:12.320000pt;}
._6_c00334{width:14.873600pt;}
._0_c00334{width:15.872000pt;}
._1_c00334{width:20.729600pt;}
._a_c00334{width:22.060800pt;}
._9_c00334{width:24.230400pt;}
.fs0_c00334{font-size:64.000000pt;}
.y0_c00334{bottom:0.000000pt;}
.y1c_c00334{bottom:3.366667pt;}
.y1a_c00334{bottom:36.274667pt;}
.y1b_c00334{bottom:50.431641pt;}
.y19_c00334{bottom:72.274667pt;}
.y1_c00334{bottom:94.466667pt;}
.y18_c00334{bottom:109.602667pt;}
.y17_c00334{bottom:145.602667pt;}
.y16_c00334{bottom:182.930667pt;}
.y15_c00334{bottom:220.258667pt;}
.y14_c00334{bottom:256.258667pt;}
.y13_c00334{bottom:293.586667pt;}
.y12_c00334{bottom:329.586667pt;}
.y11_c00334{bottom:366.914667pt;}
.y10_c00334{bottom:404.242667pt;}
.yf_c00334{bottom:440.242667pt;}
.ye_c00334{bottom:477.570667pt;}
.yd_c00334{bottom:513.570667pt;}
.yc_c00334{bottom:550.898667pt;}
.yb_c00334{bottom:588.226667pt;}
.ya_c00334{bottom:624.226667pt;}
.y9_c00334{bottom:661.554667pt;}
.y8_c00334{bottom:697.554667pt;}
.y7_c00334{bottom:734.882667pt;}
.y6_c00334{bottom:772.210667pt;}
.y5_c00334{bottom:808.210667pt;}
.y4_c00334{bottom:845.538667pt;}
.y3_c00334{bottom:881.538667pt;}
.y2_c00334{bottom:918.866667pt;}
.h3_c00334{height:17.600093pt;}
.h2_c00334{height:57.781250pt;}
.h4_c00334{height:64.375000pt;}
.h1_c00334{height:938.202667pt;}
.h0_c00334{height:1122.666667pt;}
.w2_c00334{width:26.696000pt;}
.w1_c00334{width:575.470667pt;}
.w0_c00334{width:793.333333pt;}
.x0_c00334{left:0.000000pt;}
.x2_c00334{left:4.402667pt;}
.x1_c00334{left:108.930667pt;}
.x3_c00334{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_975a82fceea123d0a5c2da47.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.113281;font-style:normal;font-weight:normal;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_7579cb0a59f2113e768759f3.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00335;src:url('chunks/assets/font_03118a257ca858e277d0a635.woff2')format("woff");}.ff3_c00335{font-family:ff3_c00335;line-height:1.330566;font-style: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:0.014400px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00335{word-spacing:0.000000px;}
._f_c00335{margin-left:-19.864800px;}
._c_c00335{margin-left:-2.419200px;}
._a_c00335{margin-left:-1.346400px;}
._5_c00335{width:2.059200px;}
._e_c00335{width:3.268800px;}
._9_c00335{width:4.392000px;}
._4_c00335{width:5.868000px;}
._10_c00335{width:7.034400px;}
._7_c00335{width:8.056800px;}
._1_c00335{width:10.224000px;}
._6_c00335{width:11.736000px;}
._2_c00335{width:14.378400px;}
._11_c00335{width:15.912000px;}
._0_c00335{width:17.280000px;}
._3_c00335{width:23.256000px;}
._d_c00335{width:24.926400px;}
._8_c00335{width:27.093600px;}
._b_c00335{width:30.002400px;}
.fc0_c00335{color:rgb(0,0,0);}
.fs0_c00335{font-size:72.000000px;}
.y0_c00335{bottom:0.000000px;}
.y19_c00335{bottom:3.787500px;}
.y18_c00335{bottom:56.735596px;}
.y1_c00335{bottom:106.275000px;}
.y17_c00335{bottom:163.803000px;}
.y16_c00335{bottom:205.797000px;}
.y15_c00335{bottom:247.791000px;}
.y14_c00335{bottom:288.291000px;}
.y13_c00335{bottom:330.285000px;}
.y12_c00335{bottom:370.785000px;}
.y11_c00335{bottom:412.779000px;}
.y10_c00335{bottom:454.773000px;}
.yf_c00335{bottom:495.273000px;}
.ye_c00335{bottom:537.267000px;}
.yd_c00335{bottom:577.767000px;}
.yc_c00335{bottom:619.761000px;}
.yb_c00335{bottom:661.755000px;}
.ya_c00335{bottom:702.255000px;}
.y9_c00335{bottom:744.249000px;}
.y8_c00335{bottom:784.749000px;}
.y7_c00335{bottom:826.743000px;}
.y6_c00335{bottom:868.737000px;}
.y5_c00335{bottom:909.237000px;}
.y4_c00335{bottom:951.231000px;}
.y3_c00335{bottom:991.731000px;}
.y2_c00335{bottom:1033.725000px;}
.h3_c00335{height:19.800105px;}
.h2_c00335{height:65.003906px;}
.h4_c00335{height:72.421875px;}
.h1_c00335{height:1055.478000px;}
.h0_c00335{height:1263.000000px;}
.w2_c00335{width:30.031500px;}
.w1_c00335{width:647.404500px;}
.w0_c00335{width:892.500000px;}
.x0_c00335{left:0.000000px;}
.x2_c00335{left:4.953000px;}
.x1_c00335{left:122.547000px;}
.x3_c00335{left:734.908997px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls1_c00335{letter-spacing:0.000000pt;}
.ls0_c00335{letter-spacing:0.012800pt;}
.ws0_c00335{word-spacing:0.000000pt;}
._f_c00335{margin-left:-17.657600pt;}
._c_c00335{margin-left:-2.150400pt;}
._a_c00335{margin-left:-1.196800pt;}
._5_c00335{width:1.830400pt;}
._e_c00335{width:2.905600pt;}
._9_c00335{width:3.904000pt;}
._4_c00335{width:5.216000pt;}
._10_c00335{width:6.252800pt;}
._7_c00335{width:7.161600pt;}
._1_c00335{width:9.088000pt;}
._6_c00335{width:10.432000pt;}
._2_c00335{width:12.780800pt;}
._11_c00335{width:14.144000pt;}
._0_c00335{width:15.360000pt;}
._3_c00335{width:20.672000pt;}
._d_c00335{width:22.156800pt;}
._8_c00335{width:24.083200pt;}
._b_c00335{width:26.668800pt;}
.fs0_c00335{font-size:64.000000pt;}
.y0_c00335{bottom:0.000000pt;}
.y19_c00335{bottom:3.366667pt;}
.y18_c00335{bottom:50.431641pt;}
.y1_c00335{bottom:94.466667pt;}
.y17_c00335{bottom:145.602667pt;}
.y16_c00335{bottom:182.930667pt;}
.y15_c00335{bottom:220.258667pt;}
.y14_c00335{bottom:256.258667pt;}
.y13_c00335{bottom:293.586667pt;}
.y12_c00335{bottom:329.586667pt;}
.y11_c00335{bottom:366.914667pt;}
.y10_c00335{bottom:404.242667pt;}
.yf_c00335{bottom:440.242667pt;}
.ye_c00335{bottom:477.570667pt;}
.yd_c00335{bottom:513.570667pt;}
.yc_c00335{bottom:550.898667pt;}
.yb_c00335{bottom:588.226667pt;}
.ya_c00335{bottom:624.226667pt;}
.y9_c00335{bottom:661.554667pt;}
.y8_c00335{bottom:697.554667pt;}
.y7_c00335{bottom:734.882667pt;}
.y6_c00335{bottom:772.210667pt;}
.y5_c00335{bottom:808.210667pt;}
.y4_c00335{bottom:845.538667pt;}
.y3_c00335{bottom:881.538667pt;}
.y2_c00335{bottom:918.866667pt;}
.h3_c00335{height:17.600093pt;}
.h2_c00335{height:57.781250pt;}
.h4_c00335{height:64.375000pt;}
.h1_c00335{height:938.202667pt;}
.h0_c00335{height:1122.666667pt;}
.w2_c00335{width:26.694667pt;}
.w1_c00335{width:575.470667pt;}
.w0_c00335{width:793.333333pt;}
.x0_c00335{left:0.000000pt;}
.x2_c00335{left:4.402667pt;}
.x1_c00335{left:108.930667pt;}
.x3_c00335{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8146a124d23e8ef09a8b1809.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00336;src:url('chunks/assets/font_310eaed39d0fc4e666fcc5b4.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00336;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00336;src:url('chunks/assets/font_5edc34239be65144536a3e22.woff2')format("woff");}.ff4_c00336{font-family:ff4_c00336;line-height:1.330566;font-style: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;}
.ls2_c00336{letter-spacing:-0.014400px;}
.ls1_c00336{letter-spacing:0.000000px;}
.ls0_c00336{letter-spacing:0.014400px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00336{word-spacing:0.000000px;}
._12_c00336{margin-left:-5.371200px;}
._8_c00336{margin-left:-3.960000px;}
._4_c00336{margin-left:-2.664000px;}
._7_c00336{margin-left:-1.447200px;}
._d_c00336{width:1.123200px;}
._6_c00336{width:2.606400px;}
._2_c00336{width:3.902400px;}
._1_c00336{width:5.076000px;}
._0_c00336{width:6.372000px;}
._c_c00336{width:7.380000px;}
._9_c00336{width:9.288000px;}
._b_c00336{width:10.425600px;}
._f_c00336{width:11.721600px;}
._e_c00336{width:14.457600px;}
._10_c00336{width:16.992000px;}
._a_c00336{width:18.720000px;}
._14_c00336{width:21.124800px;}
._13_c00336{width:25.149600px;}
._11_c00336{width:29.138400px;}
._3_c00336{width:33.984000px;}
._5_c00336{width:37.944000px;}
.fc0_c00336{color:rgb(0,0,0);}
.fs0_c00336{font-size:72.000000px;}
.y0_c00336{bottom:0.000000px;}
.y1c_c00336{bottom:3.787500px;}
.y1a_c00336{bottom:40.809000px;}
.y1b_c00336{bottom:56.735596px;}
.y19_c00336{bottom:81.309000px;}
.y1_c00336{bottom:106.275000px;}
.y18_c00336{bottom:123.303000px;}
.y17_c00336{bottom:163.803000px;}
.y16_c00336{bottom:205.797000px;}
.y15_c00336{bottom:247.791000px;}
.y14_c00336{bottom:288.291000px;}
.y13_c00336{bottom:330.285000px;}
.y12_c00336{bottom:370.785000px;}
.y11_c00336{bottom:412.779000px;}
.y10_c00336{bottom:454.773000px;}
.yf_c00336{bottom:495.273000px;}
.ye_c00336{bottom:537.267000px;}
.yd_c00336{bottom:577.767000px;}
.yc_c00336{bottom:619.761000px;}
.yb_c00336{bottom:661.755000px;}
.ya_c00336{bottom:702.255000px;}
.y9_c00336{bottom:744.249000px;}
.y8_c00336{bottom:784.749000px;}
.y7_c00336{bottom:826.743000px;}
.y6_c00336{bottom:868.737000px;}
.y5_c00336{bottom:909.237000px;}
.y4_c00336{bottom:951.231000px;}
.y3_c00336{bottom:991.731000px;}
.y2_c00336{bottom:1033.725000px;}
.h4_c00336{height:19.800105px;}
.h2_c00336{height:64.546875px;}
.h3_c00336{height:65.003906px;}
.h5_c00336{height:72.421875px;}
.h1_c00336{height:1055.478000px;}
.h0_c00336{height:1263.000000px;}
.w2_c00336{width:30.033000px;}
.w1_c00336{width:647.404500px;}
.w0_c00336{width:892.500000px;}
.x0_c00336{left:0.000000px;}
.x2_c00336{left:4.953000px;}
.x1_c00336{left:122.547000px;}
.x3_c00336{left:127.559509px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls2_c00336{letter-spacing:-0.012800pt;}
.ls1_c00336{letter-spacing:0.000000pt;}
.ls0_c00336{letter-spacing:0.012800pt;}
.ws0_c00336{word-spacing:0.000000pt;}
._12_c00336{margin-left:-4.774400pt;}
._8_c00336{margin-left:-3.520000pt;}
._4_c00336{margin-left:-2.368000pt;}
._7_c00336{margin-left:-1.286400pt;}
._d_c00336{width:0.998400pt;}
._6_c00336{width:2.316800pt;}
._2_c00336{width:3.468800pt;}
._1_c00336{width:4.512000pt;}
._0_c00336{width:5.664000pt;}
._c_c00336{width:6.560000pt;}
._9_c00336{width:8.256000pt;}
._b_c00336{width:9.267200pt;}
._f_c00336{width:10.419200pt;}
._e_c00336{width:12.851200pt;}
._10_c00336{width:15.104000pt;}
._a_c00336{width:16.640000pt;}
._14_c00336{width:18.777600pt;}
._13_c00336{width:22.355200pt;}
._11_c00336{width:25.900800pt;}
._3_c00336{width:30.208000pt;}
._5_c00336{width:33.728000pt;}
.fs0_c00336{font-size:64.000000pt;}
.y0_c00336{bottom:0.000000pt;}
.y1c_c00336{bottom:3.366667pt;}
.y1a_c00336{bottom:36.274667pt;}
.y1b_c00336{bottom:50.431641pt;}
.y19_c00336{bottom:72.274667pt;}
.y1_c00336{bottom:94.466667pt;}
.y18_c00336{bottom:109.602667pt;}
.y17_c00336{bottom:145.602667pt;}
.y16_c00336{bottom:182.930667pt;}
.y15_c00336{bottom:220.258667pt;}
.y14_c00336{bottom:256.258667pt;}
.y13_c00336{bottom:293.586667pt;}
.y12_c00336{bottom:329.586667pt;}
.y11_c00336{bottom:366.914667pt;}
.y10_c00336{bottom:404.242667pt;}
.yf_c00336{bottom:440.242667pt;}
.ye_c00336{bottom:477.570667pt;}
.yd_c00336{bottom:513.570667pt;}
.yc_c00336{bottom:550.898667pt;}
.yb_c00336{bottom:588.226667pt;}
.ya_c00336{bottom:624.226667pt;}
.y9_c00336{bottom:661.554667pt;}
.y8_c00336{bottom:697.554667pt;}
.y7_c00336{bottom:734.882667pt;}
.y6_c00336{bottom:772.210667pt;}
.y5_c00336{bottom:808.210667pt;}
.y4_c00336{bottom:845.538667pt;}
.y3_c00336{bottom:881.538667pt;}
.y2_c00336{bottom:918.866667pt;}
.h4_c00336{height:17.600093pt;}
.h2_c00336{height:57.375000pt;}
.h3_c00336{height:57.781250pt;}
.h5_c00336{height:64.375000pt;}
.h1_c00336{height:938.202667pt;}
.h0_c00336{height:1122.666667pt;}
.w2_c00336{width:26.696000pt;}
.w1_c00336{width:575.470667pt;}
.w0_c00336{width:793.333333pt;}
.x0_c00336{left:0.000000pt;}
.x2_c00336{left:4.402667pt;}
.x1_c00336{left:108.930667pt;}
.x3_c00336{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6fc54fe419669b9420ced0d7.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.113281;font-style:normal;font-weight:normal;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_84a3fcf82ab4f3b793c25da1.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00337;src:url('chunks/assets/font_7579cb0a59f2113e768759f3.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00337;src:url('chunks/assets/font_aabac316113cda4d4b624c7e.woff2')format("woff");}.ff4_c00337{font-family:ff4_c00337;line-height:1.330566;font-style: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:0.014400px;}
.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:-20.030400px;}
.ws1_c00337{word-spacing:0.000000px;}
._a_c00337{margin-left:-4.305600px;}
._9_c00337{width:1.202400px;}
._e_c00337{width:2.311200px;}
._3_c00337{width:3.715200px;}
._2_c00337{width:5.580000px;}
._f_c00337{width:6.948000px;}
._7_c00337{width:8.056800px;}
._6_c00337{width:9.828000px;}
._1_c00337{width:11.678400px;}
._0_c00337{width:13.075200px;}
._4_c00337{width:14.385600px;}
._c_c00337{width:17.517600px;}
._b_c00337{width:21.240000px;}
._d_c00337{width:22.881600px;}
._10_c00337{width:26.596800px;}
._5_c00337{width:35.280000px;}
._8_c00337{width:36.792000px;}
.fc0_c00337{color:rgb(0,0,0);}
.fs0_c00337{font-size:72.000000px;}
.y0_c00337{bottom:0.000000px;}
.y1c_c00337{bottom:3.787500px;}
.y1a_c00337{bottom:40.809000px;}
.y1b_c00337{bottom:56.735596px;}
.y19_c00337{bottom:81.309000px;}
.y1_c00337{bottom:106.275000px;}
.y18_c00337{bottom:123.303000px;}
.y17_c00337{bottom:163.803000px;}
.y16_c00337{bottom:205.797000px;}
.y15_c00337{bottom:247.791000px;}
.y14_c00337{bottom:288.291000px;}
.y13_c00337{bottom:330.285000px;}
.y12_c00337{bottom:370.785000px;}
.y11_c00337{bottom:412.779000px;}
.y10_c00337{bottom:454.773000px;}
.yf_c00337{bottom:495.273000px;}
.ye_c00337{bottom:537.267000px;}
.yd_c00337{bottom:577.767000px;}
.yc_c00337{bottom:619.761000px;}
.yb_c00337{bottom:661.755000px;}
.ya_c00337{bottom:702.255000px;}
.y9_c00337{bottom:744.249000px;}
.y8_c00337{bottom:784.749000px;}
.y7_c00337{bottom:826.743000px;}
.y6_c00337{bottom:868.737000px;}
.y5_c00337{bottom:909.237000px;}
.y4_c00337{bottom:951.231000px;}
.y3_c00337{bottom:991.731000px;}
.y2_c00337{bottom:1033.725000px;}
.h3_c00337{height:19.800105px;}
.h2_c00337{height:65.003906px;}
.h4_c00337{height:72.421875px;}
.h1_c00337{height:1055.478000px;}
.h0_c00337{height:1263.000000px;}
.w2_c00337{width:30.031500px;}
.w1_c00337{width:647.404500px;}
.w0_c00337{width:892.500000px;}
.x0_c00337{left:0.000000px;}
.x2_c00337{left:4.953000px;}
.x1_c00337{left:122.547000px;}
.x3_c00337{left:734.908997px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls1_c00337{letter-spacing:0.000000pt;}
.ls0_c00337{letter-spacing:0.012800pt;}
.ws0_c00337{word-spacing:-17.804800pt;}
.ws1_c00337{word-spacing:0.000000pt;}
._a_c00337{margin-left:-3.827200pt;}
._9_c00337{width:1.068800pt;}
._e_c00337{width:2.054400pt;}
._3_c00337{width:3.302400pt;}
._2_c00337{width:4.960000pt;}
._f_c00337{width:6.176000pt;}
._7_c00337{width:7.161600pt;}
._6_c00337{width:8.736000pt;}
._1_c00337{width:10.380800pt;}
._0_c00337{width:11.622400pt;}
._4_c00337{width:12.787200pt;}
._c_c00337{width:15.571200pt;}
._b_c00337{width:18.880000pt;}
._d_c00337{width:20.339200pt;}
._10_c00337{width:23.641600pt;}
._5_c00337{width:31.360000pt;}
._8_c00337{width:32.704000pt;}
.fs0_c00337{font-size:64.000000pt;}
.y0_c00337{bottom:0.000000pt;}
.y1c_c00337{bottom:3.366667pt;}
.y1a_c00337{bottom:36.274667pt;}
.y1b_c00337{bottom:50.431641pt;}
.y19_c00337{bottom:72.274667pt;}
.y1_c00337{bottom:94.466667pt;}
.y18_c00337{bottom:109.602667pt;}
.y17_c00337{bottom:145.602667pt;}
.y16_c00337{bottom:182.930667pt;}
.y15_c00337{bottom:220.258667pt;}
.y14_c00337{bottom:256.258667pt;}
.y13_c00337{bottom:293.586667pt;}
.y12_c00337{bottom:329.586667pt;}
.y11_c00337{bottom:366.914667pt;}
.y10_c00337{bottom:404.242667pt;}
.yf_c00337{bottom:440.242667pt;}
.ye_c00337{bottom:477.570667pt;}
.yd_c00337{bottom:513.570667pt;}
.yc_c00337{bottom:550.898667pt;}
.yb_c00337{bottom:588.226667pt;}
.ya_c00337{bottom:624.226667pt;}
.y9_c00337{bottom:661.554667pt;}
.y8_c00337{bottom:697.554667pt;}
.y7_c00337{bottom:734.882667pt;}
.y6_c00337{bottom:772.210667pt;}
.y5_c00337{bottom:808.210667pt;}
.y4_c00337{bottom:845.538667pt;}
.y3_c00337{bottom:881.538667pt;}
.y2_c00337{bottom:918.866667pt;}
.h3_c00337{height:17.600093pt;}
.h2_c00337{height:57.781250pt;}
.h4_c00337{height:64.375000pt;}
.h1_c00337{height:938.202667pt;}
.h0_c00337{height:1122.666667pt;}
.w2_c00337{width:26.694667pt;}
.w1_c00337{width:575.470667pt;}
.w0_c00337{width:793.333333pt;}
.x0_c00337{left:0.000000pt;}
.x2_c00337{left:4.402667pt;}
.x1_c00337{left:108.930667pt;}
.x3_c00337{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7e97dbe7d02f7c05a4cba347.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.113281;font-style:normal;font-weight:normal;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_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00338;src:url('chunks/assets/font_7579cb0a59f2113e768759f3.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00338;src:url('chunks/assets/font_352693f3037471264b5c0e04.woff2')format("woff");}.ff4_c00338{font-family:ff4_c00338;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00338;src:url('chunks/assets/font_63b60da8997a0d266527bd72.woff2')format("woff");}.ff5_c00338{font-family:ff5_c00338;line-height:1.330566;font-style: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.014400px;}
.ls0_c00338{letter-spacing:0.000000px;}
.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:-20.001600px;}
.ws1_c00338{word-spacing:0.000000px;}
._e_c00338{margin-left:-3.960000px;}
._5_c00338{width:1.404000px;}
._4_c00338{width:2.505600px;}
._9_c00338{width:3.506400px;}
._1_c00338{width:4.543200px;}
._b_c00338{width:5.544000px;}
._d_c00338{width:6.804000px;}
._0_c00338{width:8.078400px;}
._3_c00338{width:10.051200px;}
._a_c00338{width:11.642400px;}
._f_c00338{width:14.724000px;}
._c_c00338{width:16.048800px;}
._6_c00338{width:17.481600px;}
._2_c00338{width:28.094400px;}
._8_c00338{width:29.628000px;}
._7_c00338{width:32.299200px;}
._10_c00338{width:35.582400px;}
.fc0_c00338{color:rgb(0,0,0);}
.fs0_c00338{font-size:72.000000px;}
.y0_c00338{bottom:0.000000px;}
.y1b_c00338{bottom:3.787500px;}
.y1a_c00338{bottom:56.735596px;}
.y19_c00338{bottom:81.309000px;}
.y1_c00338{bottom:106.275000px;}
.y18_c00338{bottom:123.303000px;}
.y17_c00338{bottom:163.803000px;}
.y16_c00338{bottom:205.797000px;}
.y15_c00338{bottom:247.791000px;}
.y14_c00338{bottom:288.291000px;}
.y13_c00338{bottom:330.285000px;}
.y12_c00338{bottom:370.785000px;}
.y11_c00338{bottom:412.779000px;}
.y10_c00338{bottom:454.773000px;}
.yf_c00338{bottom:495.273000px;}
.ye_c00338{bottom:537.267000px;}
.yd_c00338{bottom:577.767000px;}
.yc_c00338{bottom:619.761000px;}
.yb_c00338{bottom:661.755000px;}
.ya_c00338{bottom:702.255000px;}
.y9_c00338{bottom:744.249000px;}
.y8_c00338{bottom:784.749000px;}
.y7_c00338{bottom:826.743000px;}
.y6_c00338{bottom:868.737000px;}
.y5_c00338{bottom:909.237000px;}
.y4_c00338{bottom:951.231000px;}
.y3_c00338{bottom:991.731000px;}
.y2_c00338{bottom:1033.725000px;}
.h3_c00338{height:19.800105px;}
.h2_c00338{height:65.003906px;}
.h4_c00338{height:72.421875px;}
.h1_c00338{height:1055.478000px;}
.h0_c00338{height:1263.000000px;}
.w2_c00338{width:30.033000px;}
.w1_c00338{width:647.404500px;}
.w0_c00338{width:892.500000px;}
.x0_c00338{left:0.000000px;}
.x2_c00338{left:4.953000px;}
.x1_c00338{left:122.547000px;}
.x3_c00338{left:127.559509px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls1_c00338{letter-spacing:-0.012800pt;}
.ls0_c00338{letter-spacing:0.000000pt;}
.ws0_c00338{word-spacing:-17.779200pt;}
.ws1_c00338{word-spacing:0.000000pt;}
._e_c00338{margin-left:-3.520000pt;}
._5_c00338{width:1.248000pt;}
._4_c00338{width:2.227200pt;}
._9_c00338{width:3.116800pt;}
._1_c00338{width:4.038400pt;}
._b_c00338{width:4.928000pt;}
._d_c00338{width:6.048000pt;}
._0_c00338{width:7.180800pt;}
._3_c00338{width:8.934400pt;}
._a_c00338{width:10.348800pt;}
._f_c00338{width:13.088000pt;}
._c_c00338{width:14.265600pt;}
._6_c00338{width:15.539200pt;}
._2_c00338{width:24.972800pt;}
._8_c00338{width:26.336000pt;}
._7_c00338{width:28.710400pt;}
._10_c00338{width:31.628800pt;}
.fs0_c00338{font-size:64.000000pt;}
.y0_c00338{bottom:0.000000pt;}
.y1b_c00338{bottom:3.366667pt;}
.y1a_c00338{bottom:50.431641pt;}
.y19_c00338{bottom:72.274667pt;}
.y1_c00338{bottom:94.466667pt;}
.y18_c00338{bottom:109.602667pt;}
.y17_c00338{bottom:145.602667pt;}
.y16_c00338{bottom:182.930667pt;}
.y15_c00338{bottom:220.258667pt;}
.y14_c00338{bottom:256.258667pt;}
.y13_c00338{bottom:293.586667pt;}
.y12_c00338{bottom:329.586667pt;}
.y11_c00338{bottom:366.914667pt;}
.y10_c00338{bottom:404.242667pt;}
.yf_c00338{bottom:440.242667pt;}
.ye_c00338{bottom:477.570667pt;}
.yd_c00338{bottom:513.570667pt;}
.yc_c00338{bottom:550.898667pt;}
.yb_c00338{bottom:588.226667pt;}
.ya_c00338{bottom:624.226667pt;}
.y9_c00338{bottom:661.554667pt;}
.y8_c00338{bottom:697.554667pt;}
.y7_c00338{bottom:734.882667pt;}
.y6_c00338{bottom:772.210667pt;}
.y5_c00338{bottom:808.210667pt;}
.y4_c00338{bottom:845.538667pt;}
.y3_c00338{bottom:881.538667pt;}
.y2_c00338{bottom:918.866667pt;}
.h3_c00338{height:17.600093pt;}
.h2_c00338{height:57.781250pt;}
.h4_c00338{height:64.375000pt;}
.h1_c00338{height:938.202667pt;}
.h0_c00338{height:1122.666667pt;}
.w2_c00338{width:26.696000pt;}
.w1_c00338{width:575.470667pt;}
.w0_c00338{width:793.333333pt;}
.x0_c00338{left:0.000000pt;}
.x2_c00338{left:4.402667pt;}
.x1_c00338{left:108.930667pt;}
.x3_c00338{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7579cb0a59f2113e768759f3.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00339;src:url('chunks/assets/font_9d8679d6fca67251912582d4.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00339;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00339;src:url('chunks/assets/font_b6c24af5a3a3aa7d588ff066.woff2')format("woff");}.ff4_c00339{font-family:ff4_c00339;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00339;src:url('chunks/assets/font_63b60da8997a0d266527bd72.woff2')format("woff");}.ff5_c00339{font-family:ff5_c00339;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.ls4_c00339{letter-spacing:-0.014400px;}
.ls3_c00339{letter-spacing:0.000000px;}
.ls0_c00339{letter-spacing:0.007200px;}
.ls2_c00339{letter-spacing:0.014400px;}
.ls1_c00339{letter-spacing:1.454400px;}
.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:-20.030400px;}
.ws1_c00339{word-spacing:0.000000px;}
._e_c00339{margin-left:-4.543200px;}
._2_c00339{margin-left:-1.440000px;}
._6_c00339{width:1.656000px;}
._10_c00339{width:2.894400px;}
._11_c00339{width:4.010400px;}
._1_c00339{width:5.040000px;}
._a_c00339{width:6.336000px;}
._d_c00339{width:8.481600px;}
._5_c00339{width:10.929600px;}
._8_c00339{width:12.081600px;}
._9_c00339{width:13.514400px;}
._f_c00339{width:15.667200px;}
._0_c00339{width:16.848000px;}
._7_c00339{width:18.345600px;}
._c_c00339{width:21.686400px;}
._4_c00339{width:22.744800px;}
._13_c00339{width:23.781600px;}
._12_c00339{width:24.883200px;}
._b_c00339{width:27.432000px;}
._3_c00339{width:35.280000px;}
.fc0_c00339{color:rgb(0,0,0);}
.fs0_c00339{font-size:72.000000px;}
.y0_c00339{bottom:0.000000px;}
.y1c_c00339{bottom:3.787500px;}
.y1a_c00339{bottom:40.809000px;}
.y1b_c00339{bottom:56.735596px;}
.y19_c00339{bottom:81.309000px;}
.y1_c00339{bottom:106.275000px;}
.y18_c00339{bottom:123.303000px;}
.y17_c00339{bottom:163.803000px;}
.y16_c00339{bottom:205.797000px;}
.y15_c00339{bottom:247.791000px;}
.y14_c00339{bottom:288.291000px;}
.y13_c00339{bottom:330.285000px;}
.y12_c00339{bottom:370.785000px;}
.y11_c00339{bottom:412.779000px;}
.y10_c00339{bottom:454.773000px;}
.yf_c00339{bottom:495.273000px;}
.ye_c00339{bottom:537.267000px;}
.yd_c00339{bottom:577.767000px;}
.yc_c00339{bottom:619.761000px;}
.yb_c00339{bottom:661.755000px;}
.ya_c00339{bottom:702.255000px;}
.y9_c00339{bottom:744.249000px;}
.y8_c00339{bottom:784.749000px;}
.y7_c00339{bottom:826.743000px;}
.y6_c00339{bottom:868.737000px;}
.y5_c00339{bottom:909.237000px;}
.y4_c00339{bottom:951.231000px;}
.y3_c00339{bottom:991.731000px;}
.y2_c00339{bottom:1033.725000px;}
.h3_c00339{height:19.800105px;}
.h2_c00339{height:65.003906px;}
.h4_c00339{height:72.421875px;}
.h1_c00339{height:1055.478000px;}
.h0_c00339{height:1263.000000px;}
.w2_c00339{width:30.031500px;}
.w1_c00339{width:647.404500px;}
.w0_c00339{width:892.500000px;}
.x0_c00339{left:0.000000px;}
.x2_c00339{left:4.953000px;}
.x1_c00339{left:122.547000px;}
.x3_c00339{left:734.908997px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls4_c00339{letter-spacing:-0.012800pt;}
.ls3_c00339{letter-spacing:0.000000pt;}
.ls0_c00339{letter-spacing:0.006400pt;}
.ls2_c00339{letter-spacing:0.012800pt;}
.ls1_c00339{letter-spacing:1.292800pt;}
.ws0_c00339{word-spacing:-17.804800pt;}
.ws1_c00339{word-spacing:0.000000pt;}
._e_c00339{margin-left:-4.038400pt;}
._2_c00339{margin-left:-1.280000pt;}
._6_c00339{width:1.472000pt;}
._10_c00339{width:2.572800pt;}
._11_c00339{width:3.564800pt;}
._1_c00339{width:4.480000pt;}
._a_c00339{width:5.632000pt;}
._d_c00339{width:7.539200pt;}
._5_c00339{width:9.715200pt;}
._8_c00339{width:10.739200pt;}
._9_c00339{width:12.012800pt;}
._f_c00339{width:13.926400pt;}
._0_c00339{width:14.976000pt;}
._7_c00339{width:16.307200pt;}
._c_c00339{width:19.276800pt;}
._4_c00339{width:20.217600pt;}
._13_c00339{width:21.139200pt;}
._12_c00339{width:22.118400pt;}
._b_c00339{width:24.384000pt;}
._3_c00339{width:31.360000pt;}
.fs0_c00339{font-size:64.000000pt;}
.y0_c00339{bottom:0.000000pt;}
.y1c_c00339{bottom:3.366667pt;}
.y1a_c00339{bottom:36.274667pt;}
.y1b_c00339{bottom:50.431641pt;}
.y19_c00339{bottom:72.274667pt;}
.y1_c00339{bottom:94.466667pt;}
.y18_c00339{bottom:109.602667pt;}
.y17_c00339{bottom:145.602667pt;}
.y16_c00339{bottom:182.930667pt;}
.y15_c00339{bottom:220.258667pt;}
.y14_c00339{bottom:256.258667pt;}
.y13_c00339{bottom:293.586667pt;}
.y12_c00339{bottom:329.586667pt;}
.y11_c00339{bottom:366.914667pt;}
.y10_c00339{bottom:404.242667pt;}
.yf_c00339{bottom:440.242667pt;}
.ye_c00339{bottom:477.570667pt;}
.yd_c00339{bottom:513.570667pt;}
.yc_c00339{bottom:550.898667pt;}
.yb_c00339{bottom:588.226667pt;}
.ya_c00339{bottom:624.226667pt;}
.y9_c00339{bottom:661.554667pt;}
.y8_c00339{bottom:697.554667pt;}
.y7_c00339{bottom:734.882667pt;}
.y6_c00339{bottom:772.210667pt;}
.y5_c00339{bottom:808.210667pt;}
.y4_c00339{bottom:845.538667pt;}
.y3_c00339{bottom:881.538667pt;}
.y2_c00339{bottom:918.866667pt;}
.h3_c00339{height:17.600093pt;}
.h2_c00339{height:57.781250pt;}
.h4_c00339{height:64.375000pt;}
.h1_c00339{height:938.202667pt;}
.h0_c00339{height:1122.666667pt;}
.w2_c00339{width:26.694667pt;}
.w1_c00339{width:575.470667pt;}
.w0_c00339{width:793.333333pt;}
.x0_c00339{left:0.000000pt;}
.x2_c00339{left:4.402667pt;}
.x1_c00339{left:108.930667pt;}
.x3_c00339{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b65a57bdf236d9feee7aa9e0.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.113281;font-style:normal;font-weight:normal;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_509f4f7d074d1ebe54f54522.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.330566;font-style: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;}
.ls1_c00340{letter-spacing:-0.014400px;}
.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;}
}
.ws0_c00340{word-spacing:0.000000px;}
._4_c00340{margin-left:-1.303200px;}
._3_c00340{width:4.788000px;}
._5_c00340{width:6.091200px;}
._2_c00340{width:7.704000px;}
._0_c00340{width:13.586400px;}
._1_c00340{width:29.736000px;}
.fc0_c00340{color:rgb(0,0,0);}
.fs0_c00340{font-size:72.000000px;}
.y0_c00340{bottom:0.000000px;}
.y8_c00340{bottom:3.787500px;}
.y7_c00340{bottom:56.735596px;}
.y1_c00340{bottom:106.275000px;}
.y6_c00340{bottom:868.737000px;}
.y5_c00340{bottom:909.237000px;}
.y4_c00340{bottom:951.231000px;}
.y3_c00340{bottom:991.731000px;}
.y2_c00340{bottom:1033.725000px;}
.h3_c00340{height:19.800105px;}
.h2_c00340{height:65.003906px;}
.h4_c00340{height:72.421875px;}
.h1_c00340{height:1055.478000px;}
.h0_c00340{height:1263.000000px;}
.w2_c00340{width:30.033000px;}
.w1_c00340{width:647.404500px;}
.w0_c00340{width:892.500000px;}
.x0_c00340{left:0.000000px;}
.x2_c00340{left:4.953000px;}
.x1_c00340{left:122.547000px;}
.x3_c00340{left:127.559509px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls1_c00340{letter-spacing:-0.012800pt;}
.ls0_c00340{letter-spacing:0.000000pt;}
.ws0_c00340{word-spacing:0.000000pt;}
._4_c00340{margin-left:-1.158400pt;}
._3_c00340{width:4.256000pt;}
._5_c00340{width:5.414400pt;}
._2_c00340{width:6.848000pt;}
._0_c00340{width:12.076800pt;}
._1_c00340{width:26.432000pt;}
.fs0_c00340{font-size:64.000000pt;}
.y0_c00340{bottom:0.000000pt;}
.y8_c00340{bottom:3.366667pt;}
.y7_c00340{bottom:50.431641pt;}
.y1_c00340{bottom:94.466667pt;}
.y6_c00340{bottom:772.210667pt;}
.y5_c00340{bottom:808.210667pt;}
.y4_c00340{bottom:845.538667pt;}
.y3_c00340{bottom:881.538667pt;}
.y2_c00340{bottom:918.866667pt;}
.h3_c00340{height:17.600093pt;}
.h2_c00340{height:57.781250pt;}
.h4_c00340{height:64.375000pt;}
.h1_c00340{height:938.202667pt;}
.h0_c00340{height:1122.666667pt;}
.w2_c00340{width:26.696000pt;}
.w1_c00340{width:575.470667pt;}
.w0_c00340{width:793.333333pt;}
.x0_c00340{left:0.000000pt;}
.x2_c00340{left:4.402667pt;}
.x1_c00340{left:108.930667pt;}
.x3_c00340{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e8bbc5a07f845330e4c0a3a.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.113281;font-style:normal;font-weight:normal;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_9e136fafa859c49d04d7ac65.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00341;src:url('chunks/assets/font_4c46f576804e71e0fdb80074.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.330566;font-style: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;}
.ls1_c00341{letter-spacing:0.000000px;}
.ls0_c00341{letter-spacing:31.737600px;}
.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:0.000000px;}
._1_c00341{margin-left:-5.342400px;}
._4_c00341{margin-left:-3.974400px;}
._0_c00341{margin-left:-2.685600px;}
._2_c00341{margin-left:-1.310400px;}
._3_c00341{width:1.454400px;}
._7_c00341{width:2.563200px;}
._e_c00341{width:4.744800px;}
._8_c00341{width:6.696000px;}
._5_c00341{width:8.676000px;}
._d_c00341{width:10.368000px;}
._f_c00341{width:12.744000px;}
._9_c00341{width:17.517600px;}
._c_c00341{width:26.107200px;}
._a_c00341{width:28.202400px;}
._b_c00341{width:30.081600px;}
._6_c00341{width:31.780800px;}
.fc1_c00341{color:transparent;}
.fc0_c00341{color:rgb(0,0,0);}
.fs0_c00341{font-size:72.000000px;}
.y0_c00341{bottom:0.000000px;}
.y1c_c00341{bottom:3.787500px;}
.y1a_c00341{bottom:40.809000px;}
.y1b_c00341{bottom:56.735596px;}
.y19_c00341{bottom:81.309000px;}
.y1_c00341{bottom:106.275000px;}
.y18_c00341{bottom:123.303000px;}
.y17_c00341{bottom:163.803000px;}
.y16_c00341{bottom:205.797000px;}
.y15_c00341{bottom:247.791000px;}
.y14_c00341{bottom:288.291000px;}
.y13_c00341{bottom:330.285000px;}
.y12_c00341{bottom:370.785000px;}
.y11_c00341{bottom:412.779000px;}
.y10_c00341{bottom:454.773000px;}
.yf_c00341{bottom:495.273000px;}
.ye_c00341{bottom:537.267000px;}
.yd_c00341{bottom:577.767000px;}
.yc_c00341{bottom:619.761000px;}
.yb_c00341{bottom:661.755000px;}
.ya_c00341{bottom:702.255000px;}
.y9_c00341{bottom:744.249000px;}
.y8_c00341{bottom:784.749000px;}
.y7_c00341{bottom:826.743000px;}
.y6_c00341{bottom:868.737000px;}
.y5_c00341{bottom:909.237000px;}
.y4_c00341{bottom:951.231000px;}
.y3_c00341{bottom:991.731000px;}
.y2_c00341{bottom:1033.725000px;}
.h4_c00341{height:19.800105px;}
.h3_c00341{height:64.546875px;}
.h2_c00341{height:65.003906px;}
.h5_c00341{height:72.421875px;}
.h1_c00341{height:1055.478000px;}
.h0_c00341{height:1263.000000px;}
.w2_c00341{width:30.031500px;}
.w1_c00341{width:647.404500px;}
.w0_c00341{width:892.500000px;}
.x0_c00341{left:0.000000px;}
.x2_c00341{left:4.953000px;}
.x1_c00341{left:122.547000px;}
.x3_c00341{left:734.908997px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls1_c00341{letter-spacing:0.000000pt;}
.ls0_c00341{letter-spacing:28.211200pt;}
.ws0_c00341{word-spacing:0.000000pt;}
._1_c00341{margin-left:-4.748800pt;}
._4_c00341{margin-left:-3.532800pt;}
._0_c00341{margin-left:-2.387200pt;}
._2_c00341{margin-left:-1.164800pt;}
._3_c00341{width:1.292800pt;}
._7_c00341{width:2.278400pt;}
._e_c00341{width:4.217600pt;}
._8_c00341{width:5.952000pt;}
._5_c00341{width:7.712000pt;}
._d_c00341{width:9.216000pt;}
._f_c00341{width:11.328000pt;}
._9_c00341{width:15.571200pt;}
._c_c00341{width:23.206400pt;}
._a_c00341{width:25.068800pt;}
._b_c00341{width:26.739200pt;}
._6_c00341{width:28.249600pt;}
.fs0_c00341{font-size:64.000000pt;}
.y0_c00341{bottom:0.000000pt;}
.y1c_c00341{bottom:3.366667pt;}
.y1a_c00341{bottom:36.274667pt;}
.y1b_c00341{bottom:50.431641pt;}
.y19_c00341{bottom:72.274667pt;}
.y1_c00341{bottom:94.466667pt;}
.y18_c00341{bottom:109.602667pt;}
.y17_c00341{bottom:145.602667pt;}
.y16_c00341{bottom:182.930667pt;}
.y15_c00341{bottom:220.258667pt;}
.y14_c00341{bottom:256.258667pt;}
.y13_c00341{bottom:293.586667pt;}
.y12_c00341{bottom:329.586667pt;}
.y11_c00341{bottom:366.914667pt;}
.y10_c00341{bottom:404.242667pt;}
.yf_c00341{bottom:440.242667pt;}
.ye_c00341{bottom:477.570667pt;}
.yd_c00341{bottom:513.570667pt;}
.yc_c00341{bottom:550.898667pt;}
.yb_c00341{bottom:588.226667pt;}
.ya_c00341{bottom:624.226667pt;}
.y9_c00341{bottom:661.554667pt;}
.y8_c00341{bottom:697.554667pt;}
.y7_c00341{bottom:734.882667pt;}
.y6_c00341{bottom:772.210667pt;}
.y5_c00341{bottom:808.210667pt;}
.y4_c00341{bottom:845.538667pt;}
.y3_c00341{bottom:881.538667pt;}
.y2_c00341{bottom:918.866667pt;}
.h4_c00341{height:17.600093pt;}
.h3_c00341{height:57.375000pt;}
.h2_c00341{height:57.781250pt;}
.h5_c00341{height:64.375000pt;}
.h1_c00341{height:938.202667pt;}
.h0_c00341{height:1122.666667pt;}
.w2_c00341{width:26.694667pt;}
.w1_c00341{width:575.470667pt;}
.w0_c00341{width:793.333333pt;}
.x0_c00341{left:0.000000pt;}
.x2_c00341{left:4.402667pt;}
.x1_c00341{left:108.930667pt;}
.x3_c00341{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5329cceaa747a7d8ff630de5.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.113281;font-style:normal;font-weight:normal;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_459f3735259a54df68dc3795.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00342;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00342;src:url('chunks/assets/font_91b9f64110cd388f072f1561.woff2')format("woff");}.ff4_c00342{font-family:ff4_c00342;line-height:1.330566;font-style: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.014400px;}
.ls1_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:0.000000px;}
._5_c00342{margin-left:-5.342400px;}
._3_c00342{margin-left:-3.974400px;}
._b_c00342{margin-left:-2.671200px;}
._2_c00342{margin-left:-1.310400px;}
._0_c00342{width:1.872000px;}
._1_c00342{width:3.124800px;}
._c_c00342{width:5.011200px;}
._10_c00342{width:7.401600px;}
._8_c00342{width:8.928000px;}
._a_c00342{width:10.468800px;}
._d_c00342{width:12.621600px;}
._4_c00342{width:13.680000px;}
._e_c00342{width:14.688000px;}
._6_c00342{width:15.739200px;}
._7_c00342{width:18.043200px;}
._11_c00342{width:22.226400px;}
._f_c00342{width:24.328800px;}
._9_c00342{width:29.354400px;}
.fc0_c00342{color:rgb(0,0,0);}
.fs0_c00342{font-size:72.000000px;}
.y0_c00342{bottom:0.000000px;}
.y1c_c00342{bottom:3.787500px;}
.y1a_c00342{bottom:40.809000px;}
.y1b_c00342{bottom:56.735596px;}
.y19_c00342{bottom:81.309000px;}
.y1_c00342{bottom:106.275000px;}
.y18_c00342{bottom:123.303000px;}
.y17_c00342{bottom:163.803000px;}
.y16_c00342{bottom:205.797000px;}
.y15_c00342{bottom:247.791000px;}
.y14_c00342{bottom:288.291000px;}
.y13_c00342{bottom:330.285000px;}
.y12_c00342{bottom:370.785000px;}
.y11_c00342{bottom:412.779000px;}
.y10_c00342{bottom:454.773000px;}
.yf_c00342{bottom:495.273000px;}
.ye_c00342{bottom:537.267000px;}
.yd_c00342{bottom:577.767000px;}
.yc_c00342{bottom:619.761000px;}
.yb_c00342{bottom:661.755000px;}
.ya_c00342{bottom:702.255000px;}
.y9_c00342{bottom:744.249000px;}
.y8_c00342{bottom:784.749000px;}
.y7_c00342{bottom:826.743000px;}
.y6_c00342{bottom:868.737000px;}
.y5_c00342{bottom:909.237000px;}
.y4_c00342{bottom:951.231000px;}
.y3_c00342{bottom:991.731000px;}
.y2_c00342{bottom:1033.725000px;}
.h4_c00342{height:19.800105px;}
.h3_c00342{height:64.546875px;}
.h2_c00342{height:65.003906px;}
.h5_c00342{height:72.421875px;}
.h1_c00342{height:1055.478000px;}
.h0_c00342{height:1263.000000px;}
.w2_c00342{width:30.033000px;}
.w1_c00342{width:649.657500px;}
.w0_c00342{width:892.500000px;}
.x0_c00342{left:0.000000px;}
.x2_c00342{left:4.953000px;}
.x1_c00342{left:122.547000px;}
.x3_c00342{left:127.559509px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls0_c00342{letter-spacing:-0.012800pt;}
.ls1_c00342{letter-spacing:0.000000pt;}
.ws0_c00342{word-spacing:0.000000pt;}
._5_c00342{margin-left:-4.748800pt;}
._3_c00342{margin-left:-3.532800pt;}
._b_c00342{margin-left:-2.374400pt;}
._2_c00342{margin-left:-1.164800pt;}
._0_c00342{width:1.664000pt;}
._1_c00342{width:2.777600pt;}
._c_c00342{width:4.454400pt;}
._10_c00342{width:6.579200pt;}
._8_c00342{width:7.936000pt;}
._a_c00342{width:9.305600pt;}
._d_c00342{width:11.219200pt;}
._4_c00342{width:12.160000pt;}
._e_c00342{width:13.056000pt;}
._6_c00342{width:13.990400pt;}
._7_c00342{width:16.038400pt;}
._11_c00342{width:19.756800pt;}
._f_c00342{width:21.625600pt;}
._9_c00342{width:26.092800pt;}
.fs0_c00342{font-size:64.000000pt;}
.y0_c00342{bottom:0.000000pt;}
.y1c_c00342{bottom:3.366667pt;}
.y1a_c00342{bottom:36.274667pt;}
.y1b_c00342{bottom:50.431641pt;}
.y19_c00342{bottom:72.274667pt;}
.y1_c00342{bottom:94.466667pt;}
.y18_c00342{bottom:109.602667pt;}
.y17_c00342{bottom:145.602667pt;}
.y16_c00342{bottom:182.930667pt;}
.y15_c00342{bottom:220.258667pt;}
.y14_c00342{bottom:256.258667pt;}
.y13_c00342{bottom:293.586667pt;}
.y12_c00342{bottom:329.586667pt;}
.y11_c00342{bottom:366.914667pt;}
.y10_c00342{bottom:404.242667pt;}
.yf_c00342{bottom:440.242667pt;}
.ye_c00342{bottom:477.570667pt;}
.yd_c00342{bottom:513.570667pt;}
.yc_c00342{bottom:550.898667pt;}
.yb_c00342{bottom:588.226667pt;}
.ya_c00342{bottom:624.226667pt;}
.y9_c00342{bottom:661.554667pt;}
.y8_c00342{bottom:697.554667pt;}
.y7_c00342{bottom:734.882667pt;}
.y6_c00342{bottom:772.210667pt;}
.y5_c00342{bottom:808.210667pt;}
.y4_c00342{bottom:845.538667pt;}
.y3_c00342{bottom:881.538667pt;}
.y2_c00342{bottom:918.866667pt;}
.h4_c00342{height:17.600093pt;}
.h3_c00342{height:57.375000pt;}
.h2_c00342{height:57.781250pt;}
.h5_c00342{height:64.375000pt;}
.h1_c00342{height:938.202667pt;}
.h0_c00342{height:1122.666667pt;}
.w2_c00342{width:26.696000pt;}
.w1_c00342{width:577.473333pt;}
.w0_c00342{width:793.333333pt;}
.x0_c00342{left:0.000000pt;}
.x2_c00342{left:4.402667pt;}
.x1_c00342{left:108.930667pt;}
.x3_c00342{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6f5f14787d98a97b6024a6b.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00343;src:url('chunks/assets/font_c2b61c25a457608fd5cb459e.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00343;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00343;src:url('chunks/assets/font_447436225c455c979a13d272.woff2')format("woff");}.ff4_c00343{font-family:ff4_c00343;line-height:1.330566;font-style: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.014400px;}
.ls0_c00343{letter-spacing:0.000000px;}
.ls2_c00343{letter-spacing:0.014400px;}
.sc__c00343{text-shadow:none;}
.sc0_c00343{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00343{-webkit-text-stroke:0px transparent;}
.sc0_c00343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00343{word-spacing:0.000000px;}
._0_c00343{margin-left:-5.342400px;}
._1_c00343{margin-left:-3.974400px;}
._c_c00343{margin-left:-1.303200px;}
._2_c00343{width:1.130400px;}
._4_c00343{width:2.584800px;}
._d_c00343{width:4.831200px;}
._5_c00343{width:6.501600px;}
._11_c00343{width:7.927200px;}
._b_c00343{width:9.828000px;}
._a_c00343{width:11.124000px;}
._10_c00343{width:12.369600px;}
._3_c00343{width:13.377600px;}
._e_c00343{width:14.616000px;}
._f_c00343{width:18.907200px;}
._7_c00343{width:24.652800px;}
._6_c00343{width:25.848000px;}
._9_c00343{width:27.648000px;}
._8_c00343{width:35.992800px;}
.fc0_c00343{color:rgb(0,0,0);}
.fs0_c00343{font-size:72.000000px;}
.y0_c00343{bottom:0.000000px;}
.y1c_c00343{bottom:3.787500px;}
.y1a_c00343{bottom:40.809000px;}
.y1b_c00343{bottom:56.735596px;}
.y19_c00343{bottom:81.309000px;}
.y1_c00343{bottom:106.275000px;}
.y18_c00343{bottom:123.303000px;}
.y17_c00343{bottom:163.803000px;}
.y16_c00343{bottom:205.797000px;}
.y15_c00343{bottom:247.791000px;}
.y14_c00343{bottom:288.291000px;}
.y13_c00343{bottom:330.285000px;}
.y12_c00343{bottom:370.785000px;}
.y11_c00343{bottom:412.779000px;}
.y10_c00343{bottom:454.773000px;}
.yf_c00343{bottom:495.273000px;}
.ye_c00343{bottom:537.267000px;}
.yd_c00343{bottom:577.767000px;}
.yc_c00343{bottom:619.761000px;}
.yb_c00343{bottom:661.755000px;}
.ya_c00343{bottom:702.255000px;}
.y9_c00343{bottom:744.249000px;}
.y8_c00343{bottom:784.749000px;}
.y7_c00343{bottom:826.743000px;}
.y6_c00343{bottom:868.737000px;}
.y5_c00343{bottom:909.237000px;}
.y4_c00343{bottom:951.231000px;}
.y3_c00343{bottom:991.731000px;}
.y2_c00343{bottom:1033.725000px;}
.h4_c00343{height:19.800105px;}
.h3_c00343{height:64.546875px;}
.h2_c00343{height:65.003906px;}
.h5_c00343{height:72.421875px;}
.h1_c00343{height:1055.478000px;}
.h0_c00343{height:1263.000000px;}
.w2_c00343{width:30.031500px;}
.w1_c00343{width:647.404500px;}
.w0_c00343{width:892.500000px;}
.x0_c00343{left:0.000000px;}
.x2_c00343{left:4.953000px;}
.x1_c00343{left:122.547000px;}
.x3_c00343{left:734.908997px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls1_c00343{letter-spacing:-0.012800pt;}
.ls0_c00343{letter-spacing:0.000000pt;}
.ls2_c00343{letter-spacing:0.012800pt;}
.ws0_c00343{word-spacing:0.000000pt;}
._0_c00343{margin-left:-4.748800pt;}
._1_c00343{margin-left:-3.532800pt;}
._c_c00343{margin-left:-1.158400pt;}
._2_c00343{width:1.004800pt;}
._4_c00343{width:2.297600pt;}
._d_c00343{width:4.294400pt;}
._5_c00343{width:5.779200pt;}
._11_c00343{width:7.046400pt;}
._b_c00343{width:8.736000pt;}
._a_c00343{width:9.888000pt;}
._10_c00343{width:10.995200pt;}
._3_c00343{width:11.891200pt;}
._e_c00343{width:12.992000pt;}
._f_c00343{width:16.806400pt;}
._7_c00343{width:21.913600pt;}
._6_c00343{width:22.976000pt;}
._9_c00343{width:24.576000pt;}
._8_c00343{width:31.993600pt;}
.fs0_c00343{font-size:64.000000pt;}
.y0_c00343{bottom:0.000000pt;}
.y1c_c00343{bottom:3.366667pt;}
.y1a_c00343{bottom:36.274667pt;}
.y1b_c00343{bottom:50.431641pt;}
.y19_c00343{bottom:72.274667pt;}
.y1_c00343{bottom:94.466667pt;}
.y18_c00343{bottom:109.602667pt;}
.y17_c00343{bottom:145.602667pt;}
.y16_c00343{bottom:182.930667pt;}
.y15_c00343{bottom:220.258667pt;}
.y14_c00343{bottom:256.258667pt;}
.y13_c00343{bottom:293.586667pt;}
.y12_c00343{bottom:329.586667pt;}
.y11_c00343{bottom:366.914667pt;}
.y10_c00343{bottom:404.242667pt;}
.yf_c00343{bottom:440.242667pt;}
.ye_c00343{bottom:477.570667pt;}
.yd_c00343{bottom:513.570667pt;}
.yc_c00343{bottom:550.898667pt;}
.yb_c00343{bottom:588.226667pt;}
.ya_c00343{bottom:624.226667pt;}
.y9_c00343{bottom:661.554667pt;}
.y8_c00343{bottom:697.554667pt;}
.y7_c00343{bottom:734.882667pt;}
.y6_c00343{bottom:772.210667pt;}
.y5_c00343{bottom:808.210667pt;}
.y4_c00343{bottom:845.538667pt;}
.y3_c00343{bottom:881.538667pt;}
.y2_c00343{bottom:918.866667pt;}
.h4_c00343{height:17.600093pt;}
.h3_c00343{height:57.375000pt;}
.h2_c00343{height:57.781250pt;}
.h5_c00343{height:64.375000pt;}
.h1_c00343{height:938.202667pt;}
.h0_c00343{height:1122.666667pt;}
.w2_c00343{width:26.694667pt;}
.w1_c00343{width:575.470667pt;}
.w0_c00343{width:793.333333pt;}
.x0_c00343{left:0.000000pt;}
.x2_c00343{left:4.402667pt;}
.x1_c00343{left:108.930667pt;}
.x3_c00343{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3b018e69ccc78a574e328a2d.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.113281;font-style:normal;font-weight:normal;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_6409f267cc48cd38c18d700c.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00344;src:url('chunks/assets/font_0f64a0b76b5e88d9ae6f2269.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:1.330566;font-style: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;}
}
.ws0_c00344{word-spacing:0.000000px;}
._1_c00344{margin-left:-3.960000px;}
._5_c00344{margin-left:-1.353600px;}
._b_c00344{width:1.166400px;}
._2_c00344{width:2.232000px;}
._6_c00344{width:5.364000px;}
._f_c00344{width:6.696000px;}
._e_c00344{width:10.346400px;}
._d_c00344{width:11.592000px;}
._7_c00344{width:12.708000px;}
._4_c00344{width:14.479200px;}
._3_c00344{width:15.717600px;}
._a_c00344{width:18.590400px;}
._9_c00344{width:21.247200px;}
._0_c00344{width:24.357600px;}
._8_c00344{width:33.480000px;}
._c_c00344{width:36.568800px;}
.fc0_c00344{color:rgb(0,0,0);}
.fs0_c00344{font-size:72.000000px;}
.y0_c00344{bottom:0.000000px;}
.y1c_c00344{bottom:3.787500px;}
.y1a_c00344{bottom:40.809000px;}
.y1b_c00344{bottom:56.735596px;}
.y19_c00344{bottom:81.309000px;}
.y1_c00344{bottom:106.275000px;}
.y18_c00344{bottom:123.303000px;}
.y17_c00344{bottom:163.803000px;}
.y16_c00344{bottom:205.797000px;}
.y15_c00344{bottom:247.791000px;}
.y14_c00344{bottom:288.291000px;}
.y13_c00344{bottom:330.285000px;}
.y12_c00344{bottom:370.785000px;}
.y11_c00344{bottom:412.779000px;}
.y10_c00344{bottom:454.773000px;}
.yf_c00344{bottom:495.273000px;}
.ye_c00344{bottom:537.267000px;}
.yd_c00344{bottom:577.767000px;}
.yc_c00344{bottom:619.761000px;}
.yb_c00344{bottom:661.755000px;}
.ya_c00344{bottom:702.255000px;}
.y9_c00344{bottom:744.249000px;}
.y8_c00344{bottom:784.749000px;}
.y7_c00344{bottom:826.743000px;}
.y6_c00344{bottom:868.737000px;}
.y5_c00344{bottom:909.237000px;}
.y4_c00344{bottom:951.231000px;}
.y3_c00344{bottom:991.731000px;}
.y2_c00344{bottom:1033.725000px;}
.h4_c00344{height:19.800105px;}
.h3_c00344{height:64.546875px;}
.h2_c00344{height:65.003906px;}
.h5_c00344{height:72.421875px;}
.h1_c00344{height:1055.478000px;}
.h0_c00344{height:1263.000000px;}
.w2_c00344{width:30.033000px;}
.w1_c00344{width:647.404500px;}
.w0_c00344{width:892.500000px;}
.x0_c00344{left:0.000000px;}
.x2_c00344{left:4.953000px;}
.x1_c00344{left:122.547000px;}
.x3_c00344{left:127.559509px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls0_c00344{letter-spacing:0.000000pt;}
.ws0_c00344{word-spacing:0.000000pt;}
._1_c00344{margin-left:-3.520000pt;}
._5_c00344{margin-left:-1.203200pt;}
._b_c00344{width:1.036800pt;}
._2_c00344{width:1.984000pt;}
._6_c00344{width:4.768000pt;}
._f_c00344{width:5.952000pt;}
._e_c00344{width:9.196800pt;}
._d_c00344{width:10.304000pt;}
._7_c00344{width:11.296000pt;}
._4_c00344{width:12.870400pt;}
._3_c00344{width:13.971200pt;}
._a_c00344{width:16.524800pt;}
._9_c00344{width:18.886400pt;}
._0_c00344{width:21.651200pt;}
._8_c00344{width:29.760000pt;}
._c_c00344{width:32.505600pt;}
.fs0_c00344{font-size:64.000000pt;}
.y0_c00344{bottom:0.000000pt;}
.y1c_c00344{bottom:3.366667pt;}
.y1a_c00344{bottom:36.274667pt;}
.y1b_c00344{bottom:50.431641pt;}
.y19_c00344{bottom:72.274667pt;}
.y1_c00344{bottom:94.466667pt;}
.y18_c00344{bottom:109.602667pt;}
.y17_c00344{bottom:145.602667pt;}
.y16_c00344{bottom:182.930667pt;}
.y15_c00344{bottom:220.258667pt;}
.y14_c00344{bottom:256.258667pt;}
.y13_c00344{bottom:293.586667pt;}
.y12_c00344{bottom:329.586667pt;}
.y11_c00344{bottom:366.914667pt;}
.y10_c00344{bottom:404.242667pt;}
.yf_c00344{bottom:440.242667pt;}
.ye_c00344{bottom:477.570667pt;}
.yd_c00344{bottom:513.570667pt;}
.yc_c00344{bottom:550.898667pt;}
.yb_c00344{bottom:588.226667pt;}
.ya_c00344{bottom:624.226667pt;}
.y9_c00344{bottom:661.554667pt;}
.y8_c00344{bottom:697.554667pt;}
.y7_c00344{bottom:734.882667pt;}
.y6_c00344{bottom:772.210667pt;}
.y5_c00344{bottom:808.210667pt;}
.y4_c00344{bottom:845.538667pt;}
.y3_c00344{bottom:881.538667pt;}
.y2_c00344{bottom:918.866667pt;}
.h4_c00344{height:17.600093pt;}
.h3_c00344{height:57.375000pt;}
.h2_c00344{height:57.781250pt;}
.h5_c00344{height:64.375000pt;}
.h1_c00344{height:938.202667pt;}
.h0_c00344{height:1122.666667pt;}
.w2_c00344{width:26.696000pt;}
.w1_c00344{width:575.470667pt;}
.w0_c00344{width:793.333333pt;}
.x0_c00344{left:0.000000pt;}
.x2_c00344{left:4.402667pt;}
.x1_c00344{left:108.930667pt;}
.x3_c00344{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9491e1d8aa2d1ba8f39c2091.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.113281;font-style:normal;font-weight:normal;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_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00345;src:url('chunks/assets/font_c054b05d47909242b57dfbe9.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00345;src:url('chunks/assets/font_d5efccd5febd2ebc8efbc1a5.woff2')format("woff");}.ff4_c00345{font-family:ff4_c00345;line-height:1.330566;font-style: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;}
.ls1_c00345{letter-spacing:0.000000px;}
.ls2_c00345{letter-spacing:0.014400px;}
.ls0_c00345{letter-spacing:25.128000px;}
.sc__c00345{text-shadow:none;}
.sc0_c00345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00345{-webkit-text-stroke:0px transparent;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00345{word-spacing:0.000000px;}
._11_c00345{margin-left:-5.364000px;}
._9_c00345{margin-left:-3.974400px;}
._6_c00345{margin-left:-2.664000px;}
._5_c00345{margin-left:-1.288800px;}
._2_c00345{width:1.728000px;}
._c_c00345{width:4.852800px;}
._a_c00345{width:6.422400px;}
._3_c00345{width:8.323200px;}
._10_c00345{width:9.583200px;}
._e_c00345{width:11.376000px;}
._0_c00345{width:12.384000px;}
._d_c00345{width:14.248800px;}
._12_c00345{width:15.660000px;}
._b_c00345{width:18.216000px;}
._8_c00345{width:21.139200px;}
._7_c00345{width:23.810400px;}
._4_c00345{width:25.113600px;}
._f_c00345{width:28.634400px;}
._1_c00345{width:35.236800px;}
.fc0_c00345{color:rgb(0,0,0);}
.fs0_c00345{font-size:72.000000px;}
.y0_c00345{bottom:0.000000px;}
.y1a_c00345{bottom:3.787500px;}
.y19_c00345{bottom:56.735596px;}
.y1_c00345{bottom:106.275000px;}
.y18_c00345{bottom:123.303000px;}
.y17_c00345{bottom:163.803000px;}
.y16_c00345{bottom:205.797000px;}
.y15_c00345{bottom:247.791000px;}
.y14_c00345{bottom:288.291000px;}
.y13_c00345{bottom:330.285000px;}
.y12_c00345{bottom:370.785000px;}
.y11_c00345{bottom:412.779000px;}
.y10_c00345{bottom:454.773000px;}
.yf_c00345{bottom:495.273000px;}
.ye_c00345{bottom:537.267000px;}
.yd_c00345{bottom:577.767000px;}
.yc_c00345{bottom:619.761000px;}
.yb_c00345{bottom:661.755000px;}
.ya_c00345{bottom:702.255000px;}
.y9_c00345{bottom:744.249000px;}
.y8_c00345{bottom:784.749000px;}
.y7_c00345{bottom:826.743000px;}
.y6_c00345{bottom:868.737000px;}
.y5_c00345{bottom:909.237000px;}
.y4_c00345{bottom:951.231000px;}
.y3_c00345{bottom:991.731000px;}
.y2_c00345{bottom:1033.725000px;}
.h4_c00345{height:19.800105px;}
.h3_c00345{height:64.546875px;}
.h2_c00345{height:65.003906px;}
.h5_c00345{height:72.421875px;}
.h1_c00345{height:1055.478000px;}
.h0_c00345{height:1263.000000px;}
.w2_c00345{width:30.031500px;}
.w1_c00345{width:647.404500px;}
.w0_c00345{width:892.500000px;}
.x0_c00345{left:0.000000px;}
.x2_c00345{left:4.953000px;}
.x1_c00345{left:122.547000px;}
.x3_c00345{left:734.908997px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls1_c00345{letter-spacing:0.000000pt;}
.ls2_c00345{letter-spacing:0.012800pt;}
.ls0_c00345{letter-spacing:22.336000pt;}
.ws0_c00345{word-spacing:0.000000pt;}
._11_c00345{margin-left:-4.768000pt;}
._9_c00345{margin-left:-3.532800pt;}
._6_c00345{margin-left:-2.368000pt;}
._5_c00345{margin-left:-1.145600pt;}
._2_c00345{width:1.536000pt;}
._c_c00345{width:4.313600pt;}
._a_c00345{width:5.708800pt;}
._3_c00345{width:7.398400pt;}
._10_c00345{width:8.518400pt;}
._e_c00345{width:10.112000pt;}
._0_c00345{width:11.008000pt;}
._d_c00345{width:12.665600pt;}
._12_c00345{width:13.920000pt;}
._b_c00345{width:16.192000pt;}
._8_c00345{width:18.790400pt;}
._7_c00345{width:21.164800pt;}
._4_c00345{width:22.323200pt;}
._f_c00345{width:25.452800pt;}
._1_c00345{width:31.321600pt;}
.fs0_c00345{font-size:64.000000pt;}
.y0_c00345{bottom:0.000000pt;}
.y1a_c00345{bottom:3.366667pt;}
.y19_c00345{bottom:50.431641pt;}
.y1_c00345{bottom:94.466667pt;}
.y18_c00345{bottom:109.602667pt;}
.y17_c00345{bottom:145.602667pt;}
.y16_c00345{bottom:182.930667pt;}
.y15_c00345{bottom:220.258667pt;}
.y14_c00345{bottom:256.258667pt;}
.y13_c00345{bottom:293.586667pt;}
.y12_c00345{bottom:329.586667pt;}
.y11_c00345{bottom:366.914667pt;}
.y10_c00345{bottom:404.242667pt;}
.yf_c00345{bottom:440.242667pt;}
.ye_c00345{bottom:477.570667pt;}
.yd_c00345{bottom:513.570667pt;}
.yc_c00345{bottom:550.898667pt;}
.yb_c00345{bottom:588.226667pt;}
.ya_c00345{bottom:624.226667pt;}
.y9_c00345{bottom:661.554667pt;}
.y8_c00345{bottom:697.554667pt;}
.y7_c00345{bottom:734.882667pt;}
.y6_c00345{bottom:772.210667pt;}
.y5_c00345{bottom:808.210667pt;}
.y4_c00345{bottom:845.538667pt;}
.y3_c00345{bottom:881.538667pt;}
.y2_c00345{bottom:918.866667pt;}
.h4_c00345{height:17.600093pt;}
.h3_c00345{height:57.375000pt;}
.h2_c00345{height:57.781250pt;}
.h5_c00345{height:64.375000pt;}
.h1_c00345{height:938.202667pt;}
.h0_c00345{height:1122.666667pt;}
.w2_c00345{width:26.694667pt;}
.w1_c00345{width:575.470667pt;}
.w0_c00345{width:793.333333pt;}
.x0_c00345{left:0.000000pt;}
.x2_c00345{left:4.402667pt;}
.x1_c00345{left:108.930667pt;}
.x3_c00345{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e192a393a1bbe84583baa8c7.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00346;src:url('chunks/assets/font_9073bd30e63255416e751d83.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00346;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00346;src:url('chunks/assets/font_11ea2ea2363a9d14337c1108.woff2')format("woff");}.ff4_c00346{font-family:ff4_c00346;line-height:1.330566;font-style: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;}
}
.ws0_c00346{word-spacing:0.000000px;}
._9_c00346{margin-left:-8.071200px;}
._1_c00346{margin-left:-5.356800px;}
._0_c00346{margin-left:-3.981600px;}
._d_c00346{margin-left:-2.664000px;}
._c_c00346{margin-left:-1.288800px;}
._6_c00346{width:1.274400px;}
._3_c00346{width:2.361600px;}
._f_c00346{width:3.542400px;}
._e_c00346{width:4.608000px;}
._2_c00346{width:6.249600px;}
._4_c00346{width:7.286400px;}
._8_c00346{width:8.409600px;}
._5_c00346{width:9.619200px;}
._7_c00346{width:11.383200px;}
._12_c00346{width:18.604800px;}
._b_c00346{width:25.207200px;}
._a_c00346{width:29.138400px;}
._11_c00346{width:34.725600px;}
._10_c00346{width:37.756800px;}
.fc0_c00346{color:rgb(0,0,0);}
.fs0_c00346{font-size:72.000000px;}
.y0_c00346{bottom:0.000000px;}
.y1a_c00346{bottom:3.787500px;}
.y19_c00346{bottom:56.735596px;}
.y1_c00346{bottom:106.275000px;}
.y18_c00346{bottom:123.303000px;}
.y17_c00346{bottom:163.803000px;}
.y16_c00346{bottom:205.797000px;}
.y15_c00346{bottom:247.791000px;}
.y14_c00346{bottom:288.291000px;}
.y13_c00346{bottom:330.285000px;}
.y12_c00346{bottom:370.785000px;}
.y11_c00346{bottom:412.779000px;}
.y10_c00346{bottom:454.773000px;}
.yf_c00346{bottom:495.273000px;}
.ye_c00346{bottom:537.267000px;}
.yd_c00346{bottom:577.767000px;}
.yc_c00346{bottom:619.761000px;}
.yb_c00346{bottom:661.755000px;}
.ya_c00346{bottom:702.255000px;}
.y9_c00346{bottom:744.249000px;}
.y8_c00346{bottom:784.749000px;}
.y7_c00346{bottom:826.743000px;}
.y6_c00346{bottom:868.737000px;}
.y5_c00346{bottom:909.237000px;}
.y4_c00346{bottom:951.231000px;}
.y3_c00346{bottom:991.731000px;}
.y2_c00346{bottom:1033.725000px;}
.h4_c00346{height:19.800105px;}
.h2_c00346{height:64.546875px;}
.h3_c00346{height:65.003906px;}
.h5_c00346{height:72.421875px;}
.h1_c00346{height:1055.478000px;}
.h0_c00346{height:1263.000000px;}
.w2_c00346{width:30.033000px;}
.w1_c00346{width:647.404500px;}
.w0_c00346{width:892.500000px;}
.x0_c00346{left:0.000000px;}
.x2_c00346{left:4.953000px;}
.x1_c00346{left:122.547000px;}
.x3_c00346{left:127.559509px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls0_c00346{letter-spacing:0.000000pt;}
.ws0_c00346{word-spacing:0.000000pt;}
._9_c00346{margin-left:-7.174400pt;}
._1_c00346{margin-left:-4.761600pt;}
._0_c00346{margin-left:-3.539200pt;}
._d_c00346{margin-left:-2.368000pt;}
._c_c00346{margin-left:-1.145600pt;}
._6_c00346{width:1.132800pt;}
._3_c00346{width:2.099200pt;}
._f_c00346{width:3.148800pt;}
._e_c00346{width:4.096000pt;}
._2_c00346{width:5.555200pt;}
._4_c00346{width:6.476800pt;}
._8_c00346{width:7.475200pt;}
._5_c00346{width:8.550400pt;}
._7_c00346{width:10.118400pt;}
._12_c00346{width:16.537600pt;}
._b_c00346{width:22.406400pt;}
._a_c00346{width:25.900800pt;}
._11_c00346{width:30.867200pt;}
._10_c00346{width:33.561600pt;}
.fs0_c00346{font-size:64.000000pt;}
.y0_c00346{bottom:0.000000pt;}
.y1a_c00346{bottom:3.366667pt;}
.y19_c00346{bottom:50.431641pt;}
.y1_c00346{bottom:94.466667pt;}
.y18_c00346{bottom:109.602667pt;}
.y17_c00346{bottom:145.602667pt;}
.y16_c00346{bottom:182.930667pt;}
.y15_c00346{bottom:220.258667pt;}
.y14_c00346{bottom:256.258667pt;}
.y13_c00346{bottom:293.586667pt;}
.y12_c00346{bottom:329.586667pt;}
.y11_c00346{bottom:366.914667pt;}
.y10_c00346{bottom:404.242667pt;}
.yf_c00346{bottom:440.242667pt;}
.ye_c00346{bottom:477.570667pt;}
.yd_c00346{bottom:513.570667pt;}
.yc_c00346{bottom:550.898667pt;}
.yb_c00346{bottom:588.226667pt;}
.ya_c00346{bottom:624.226667pt;}
.y9_c00346{bottom:661.554667pt;}
.y8_c00346{bottom:697.554667pt;}
.y7_c00346{bottom:734.882667pt;}
.y6_c00346{bottom:772.210667pt;}
.y5_c00346{bottom:808.210667pt;}
.y4_c00346{bottom:845.538667pt;}
.y3_c00346{bottom:881.538667pt;}
.y2_c00346{bottom:918.866667pt;}
.h4_c00346{height:17.600093pt;}
.h2_c00346{height:57.375000pt;}
.h3_c00346{height:57.781250pt;}
.h5_c00346{height:64.375000pt;}
.h1_c00346{height:938.202667pt;}
.h0_c00346{height:1122.666667pt;}
.w2_c00346{width:26.696000pt;}
.w1_c00346{width:575.470667pt;}
.w0_c00346{width:793.333333pt;}
.x0_c00346{left:0.000000pt;}
.x2_c00346{left:4.402667pt;}
.x1_c00346{left:108.930667pt;}
.x3_c00346{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce6bcc3e47e5c94b27c240e3.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00347;src:url('chunks/assets/font_750635edbc77f1ab60194ccb.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00347;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00347;src:url('chunks/assets/font_5524ebe15336aefbacca31f8.woff2')format("woff");}.ff4_c00347{font-family:ff4_c00347;line-height:1.330566;font-style: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;}
.ls2_c00347{letter-spacing:0.000000px;}
.ls1_c00347{letter-spacing:1.720800px;}
.ls0_c00347{letter-spacing:35.784000px;}
.sc__c00347{text-shadow:none;}
.sc0_c00347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00347{-webkit-text-stroke:0px transparent;}
.sc0_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00347{word-spacing:0.000000px;}
._4_c00347{margin-left:-5.342400px;}
._1_c00347{margin-left:-3.974400px;}
._6_c00347{margin-left:-1.728000px;}
._11_c00347{width:1.296000px;}
._d_c00347{width:2.815200px;}
._a_c00347{width:4.701600px;}
._7_c00347{width:5.882400px;}
._e_c00347{width:8.064000px;}
._f_c00347{width:10.584000px;}
._12_c00347{width:12.052800px;}
._8_c00347{width:14.133600px;}
._5_c00347{width:15.624000px;}
._14_c00347{width:17.179200px;}
._10_c00347{width:18.432000px;}
._c_c00347{width:22.032000px;}
._13_c00347{width:23.385600px;}
._b_c00347{width:25.466400px;}
._9_c00347{width:30.758400px;}
._0_c00347{width:31.816800px;}
._2_c00347{width:34.488000px;}
._3_c00347{width:35.791200px;}
.fc0_c00347{color:rgb(0,0,0);}
.fs0_c00347{font-size:72.000000px;}
.y0_c00347{bottom:0.000000px;}
.y1b_c00347{bottom:3.787500px;}
.y1a_c00347{bottom:56.735596px;}
.y19_c00347{bottom:81.309000px;}
.y1_c00347{bottom:106.275000px;}
.y18_c00347{bottom:123.303000px;}
.y17_c00347{bottom:163.803000px;}
.y16_c00347{bottom:205.797000px;}
.y15_c00347{bottom:247.791000px;}
.y14_c00347{bottom:288.291000px;}
.y13_c00347{bottom:330.285000px;}
.y12_c00347{bottom:370.785000px;}
.y11_c00347{bottom:412.779000px;}
.y10_c00347{bottom:454.773000px;}
.yf_c00347{bottom:495.273000px;}
.ye_c00347{bottom:537.267000px;}
.yd_c00347{bottom:577.767000px;}
.yc_c00347{bottom:619.761000px;}
.yb_c00347{bottom:661.755000px;}
.ya_c00347{bottom:702.255000px;}
.y9_c00347{bottom:744.249000px;}
.y8_c00347{bottom:784.749000px;}
.y7_c00347{bottom:826.743000px;}
.y6_c00347{bottom:868.737000px;}
.y5_c00347{bottom:909.237000px;}
.y4_c00347{bottom:951.231000px;}
.y3_c00347{bottom:991.731000px;}
.y2_c00347{bottom:1033.725000px;}
.h4_c00347{height:19.800105px;}
.h3_c00347{height:64.546875px;}
.h2_c00347{height:65.003906px;}
.h5_c00347{height:72.421875px;}
.h1_c00347{height:1055.478000px;}
.h0_c00347{height:1263.000000px;}
.w2_c00347{width:30.031500px;}
.w1_c00347{width:647.404500px;}
.w0_c00347{width:892.500000px;}
.x0_c00347{left:0.000000px;}
.x2_c00347{left:4.953000px;}
.x1_c00347{left:122.547000px;}
.x3_c00347{left:734.908997px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls2_c00347{letter-spacing:0.000000pt;}
.ls1_c00347{letter-spacing:1.529600pt;}
.ls0_c00347{letter-spacing:31.808000pt;}
.ws0_c00347{word-spacing:0.000000pt;}
._4_c00347{margin-left:-4.748800pt;}
._1_c00347{margin-left:-3.532800pt;}
._6_c00347{margin-left:-1.536000pt;}
._11_c00347{width:1.152000pt;}
._d_c00347{width:2.502400pt;}
._a_c00347{width:4.179200pt;}
._7_c00347{width:5.228800pt;}
._e_c00347{width:7.168000pt;}
._f_c00347{width:9.408000pt;}
._12_c00347{width:10.713600pt;}
._8_c00347{width:12.563200pt;}
._5_c00347{width:13.888000pt;}
._14_c00347{width:15.270400pt;}
._10_c00347{width:16.384000pt;}
._c_c00347{width:19.584000pt;}
._13_c00347{width:20.787200pt;}
._b_c00347{width:22.636800pt;}
._9_c00347{width:27.340800pt;}
._0_c00347{width:28.281600pt;}
._2_c00347{width:30.656000pt;}
._3_c00347{width:31.814400pt;}
.fs0_c00347{font-size:64.000000pt;}
.y0_c00347{bottom:0.000000pt;}
.y1b_c00347{bottom:3.366667pt;}
.y1a_c00347{bottom:50.431641pt;}
.y19_c00347{bottom:72.274667pt;}
.y1_c00347{bottom:94.466667pt;}
.y18_c00347{bottom:109.602667pt;}
.y17_c00347{bottom:145.602667pt;}
.y16_c00347{bottom:182.930667pt;}
.y15_c00347{bottom:220.258667pt;}
.y14_c00347{bottom:256.258667pt;}
.y13_c00347{bottom:293.586667pt;}
.y12_c00347{bottom:329.586667pt;}
.y11_c00347{bottom:366.914667pt;}
.y10_c00347{bottom:404.242667pt;}
.yf_c00347{bottom:440.242667pt;}
.ye_c00347{bottom:477.570667pt;}
.yd_c00347{bottom:513.570667pt;}
.yc_c00347{bottom:550.898667pt;}
.yb_c00347{bottom:588.226667pt;}
.ya_c00347{bottom:624.226667pt;}
.y9_c00347{bottom:661.554667pt;}
.y8_c00347{bottom:697.554667pt;}
.y7_c00347{bottom:734.882667pt;}
.y6_c00347{bottom:772.210667pt;}
.y5_c00347{bottom:808.210667pt;}
.y4_c00347{bottom:845.538667pt;}
.y3_c00347{bottom:881.538667pt;}
.y2_c00347{bottom:918.866667pt;}
.h4_c00347{height:17.600093pt;}
.h3_c00347{height:57.375000pt;}
.h2_c00347{height:57.781250pt;}
.h5_c00347{height:64.375000pt;}
.h1_c00347{height:938.202667pt;}
.h0_c00347{height:1122.666667pt;}
.w2_c00347{width:26.694667pt;}
.w1_c00347{width:575.470667pt;}
.w0_c00347{width:793.333333pt;}
.x0_c00347{left:0.000000pt;}
.x2_c00347{left:4.402667pt;}
.x1_c00347{left:108.930667pt;}
.x3_c00347{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_884a864471ce342923b53c58.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.113281;font-style:normal;font-weight:normal;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_1275616d97c550d968f3baaf.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00348;src:url('chunks/assets/font_63b60da8997a0d266527bd72.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:1.330566;font-style: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;}
.ls1_c00348{letter-spacing:-0.014400px;}
.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;}
}
.ws0_c00348{word-spacing:0.000000px;}
._e_c00348{margin-left:-5.580000px;}
._9_c00348{margin-left:-3.045600px;}
._d_c00348{margin-left:-1.843200px;}
._1_c00348{width:1.036800px;}
._c_c00348{width:2.736000px;}
._f_c00348{width:3.837600px;}
._8_c00348{width:4.845600px;}
._5_c00348{width:6.854400px;}
._a_c00348{width:8.316000px;}
._b_c00348{width:9.475200px;}
._6_c00348{width:12.412800px;}
._7_c00348{width:15.962400px;}
._0_c00348{width:17.388000px;}
._3_c00348{width:21.650400px;}
._2_c00348{width:24.033600px;}
._4_c00348{width:34.250400px;}
.fc0_c00348{color:rgb(0,0,0);}
.fs0_c00348{font-size:72.000000px;}
.y0_c00348{bottom:0.000000px;}
.y1a_c00348{bottom:3.787500px;}
.y19_c00348{bottom:56.735596px;}
.y1_c00348{bottom:106.275000px;}
.y18_c00348{bottom:123.303000px;}
.y17_c00348{bottom:163.803000px;}
.y16_c00348{bottom:205.797000px;}
.y15_c00348{bottom:247.791000px;}
.y14_c00348{bottom:288.291000px;}
.y13_c00348{bottom:330.285000px;}
.y12_c00348{bottom:370.785000px;}
.y11_c00348{bottom:412.779000px;}
.y10_c00348{bottom:454.773000px;}
.yf_c00348{bottom:495.273000px;}
.ye_c00348{bottom:537.267000px;}
.yd_c00348{bottom:577.767000px;}
.yc_c00348{bottom:619.761000px;}
.yb_c00348{bottom:661.755000px;}
.ya_c00348{bottom:702.255000px;}
.y9_c00348{bottom:744.249000px;}
.y8_c00348{bottom:784.749000px;}
.y7_c00348{bottom:826.743000px;}
.y6_c00348{bottom:868.737000px;}
.y5_c00348{bottom:909.237000px;}
.y4_c00348{bottom:951.231000px;}
.y3_c00348{bottom:991.731000px;}
.y2_c00348{bottom:1033.725000px;}
.h4_c00348{height:19.800105px;}
.h3_c00348{height:64.546875px;}
.h2_c00348{height:65.003906px;}
.h5_c00348{height:72.421875px;}
.h1_c00348{height:1055.478000px;}
.h0_c00348{height:1263.000000px;}
.w2_c00348{width:30.033000px;}
.w1_c00348{width:647.404500px;}
.w0_c00348{width:892.500000px;}
.x0_c00348{left:0.000000px;}
.x2_c00348{left:4.953000px;}
.x1_c00348{left:122.547000px;}
.x3_c00348{left:127.559509px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls1_c00348{letter-spacing:-0.012800pt;}
.ls0_c00348{letter-spacing:0.000000pt;}
.ws0_c00348{word-spacing:0.000000pt;}
._e_c00348{margin-left:-4.960000pt;}
._9_c00348{margin-left:-2.707200pt;}
._d_c00348{margin-left:-1.638400pt;}
._1_c00348{width:0.921600pt;}
._c_c00348{width:2.432000pt;}
._f_c00348{width:3.411200pt;}
._8_c00348{width:4.307200pt;}
._5_c00348{width:6.092800pt;}
._a_c00348{width:7.392000pt;}
._b_c00348{width:8.422400pt;}
._6_c00348{width:11.033600pt;}
._7_c00348{width:14.188800pt;}
._0_c00348{width:15.456000pt;}
._3_c00348{width:19.244800pt;}
._2_c00348{width:21.363200pt;}
._4_c00348{width:30.444800pt;}
.fs0_c00348{font-size:64.000000pt;}
.y0_c00348{bottom:0.000000pt;}
.y1a_c00348{bottom:3.366667pt;}
.y19_c00348{bottom:50.431641pt;}
.y1_c00348{bottom:94.466667pt;}
.y18_c00348{bottom:109.602667pt;}
.y17_c00348{bottom:145.602667pt;}
.y16_c00348{bottom:182.930667pt;}
.y15_c00348{bottom:220.258667pt;}
.y14_c00348{bottom:256.258667pt;}
.y13_c00348{bottom:293.586667pt;}
.y12_c00348{bottom:329.586667pt;}
.y11_c00348{bottom:366.914667pt;}
.y10_c00348{bottom:404.242667pt;}
.yf_c00348{bottom:440.242667pt;}
.ye_c00348{bottom:477.570667pt;}
.yd_c00348{bottom:513.570667pt;}
.yc_c00348{bottom:550.898667pt;}
.yb_c00348{bottom:588.226667pt;}
.ya_c00348{bottom:624.226667pt;}
.y9_c00348{bottom:661.554667pt;}
.y8_c00348{bottom:697.554667pt;}
.y7_c00348{bottom:734.882667pt;}
.y6_c00348{bottom:772.210667pt;}
.y5_c00348{bottom:808.210667pt;}
.y4_c00348{bottom:845.538667pt;}
.y3_c00348{bottom:881.538667pt;}
.y2_c00348{bottom:918.866667pt;}
.h4_c00348{height:17.600093pt;}
.h3_c00348{height:57.375000pt;}
.h2_c00348{height:57.781250pt;}
.h5_c00348{height:64.375000pt;}
.h1_c00348{height:938.202667pt;}
.h0_c00348{height:1122.666667pt;}
.w2_c00348{width:26.696000pt;}
.w1_c00348{width:575.470667pt;}
.w0_c00348{width:793.333333pt;}
.x0_c00348{left:0.000000pt;}
.x2_c00348{left:4.402667pt;}
.x1_c00348{left:108.930667pt;}
.x3_c00348{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a5df2144053679d511df56d.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00349;src:url('chunks/assets/font_b968ffe2f6d8b75290117802.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00349;src:url('chunks/assets/font_2d6d181782913305825ba545.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:1.330566;font-style: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;}
.ls1_c00349{letter-spacing:0.000000px;}
.ls0_c00349{letter-spacing:0.014400px;}
.sc__c00349{text-shadow:none;}
.sc0_c00349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00349{-webkit-text-stroke:0px transparent;}
.sc0_c00349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00349{word-spacing:0.000000px;}
._a_c00349{margin-left:-5.630400px;}
._0_c00349{margin-left:-4.521600px;}
._9_c00349{margin-left:-3.427200px;}
._3_c00349{margin-left:-2.390400px;}
._7_c00349{margin-left:-1.044000px;}
._5_c00349{width:5.616000px;}
._6_c00349{width:7.272000px;}
._1_c00349{width:16.315200px;}
._4_c00349{width:18.777600px;}
._2_c00349{width:21.110400px;}
._c_c00349{width:23.040000px;}
._b_c00349{width:25.711200px;}
._8_c00349{width:29.138400px;}
.fc0_c00349{color:rgb(0,0,0);}
.fs0_c00349{font-size:72.000000px;}
.y0_c00349{bottom:0.000000px;}
.y12_c00349{bottom:3.787500px;}
.y11_c00349{bottom:56.735596px;}
.y1_c00349{bottom:106.275000px;}
.y10_c00349{bottom:454.773000px;}
.yf_c00349{bottom:495.273000px;}
.ye_c00349{bottom:537.267000px;}
.yd_c00349{bottom:577.767000px;}
.yc_c00349{bottom:619.761000px;}
.yb_c00349{bottom:661.755000px;}
.ya_c00349{bottom:702.255000px;}
.y9_c00349{bottom:744.249000px;}
.y8_c00349{bottom:784.749000px;}
.y7_c00349{bottom:826.743000px;}
.y6_c00349{bottom:868.737000px;}
.y5_c00349{bottom:909.237000px;}
.y4_c00349{bottom:951.231000px;}
.y3_c00349{bottom:991.731000px;}
.y2_c00349{bottom:1033.725000px;}
.h4_c00349{height:19.800105px;}
.h2_c00349{height:64.546875px;}
.h3_c00349{height:65.003906px;}
.h5_c00349{height:72.421875px;}
.h1_c00349{height:1055.478000px;}
.h0_c00349{height:1263.000000px;}
.w2_c00349{width:30.031500px;}
.w1_c00349{width:647.404500px;}
.w0_c00349{width:892.500000px;}
.x0_c00349{left:0.000000px;}
.x2_c00349{left:4.953000px;}
.x1_c00349{left:122.547000px;}
.x3_c00349{left:734.908997px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls1_c00349{letter-spacing:0.000000pt;}
.ls0_c00349{letter-spacing:0.012800pt;}
.ws0_c00349{word-spacing:0.000000pt;}
._a_c00349{margin-left:-5.004800pt;}
._0_c00349{margin-left:-4.019200pt;}
._9_c00349{margin-left:-3.046400pt;}
._3_c00349{margin-left:-2.124800pt;}
._7_c00349{margin-left:-0.928000pt;}
._5_c00349{width:4.992000pt;}
._6_c00349{width:6.464000pt;}
._1_c00349{width:14.502400pt;}
._4_c00349{width:16.691200pt;}
._2_c00349{width:18.764800pt;}
._c_c00349{width:20.480000pt;}
._b_c00349{width:22.854400pt;}
._8_c00349{width:25.900800pt;}
.fs0_c00349{font-size:64.000000pt;}
.y0_c00349{bottom:0.000000pt;}
.y12_c00349{bottom:3.366667pt;}
.y11_c00349{bottom:50.431641pt;}
.y1_c00349{bottom:94.466667pt;}
.y10_c00349{bottom:404.242667pt;}
.yf_c00349{bottom:440.242667pt;}
.ye_c00349{bottom:477.570667pt;}
.yd_c00349{bottom:513.570667pt;}
.yc_c00349{bottom:550.898667pt;}
.yb_c00349{bottom:588.226667pt;}
.ya_c00349{bottom:624.226667pt;}
.y9_c00349{bottom:661.554667pt;}
.y8_c00349{bottom:697.554667pt;}
.y7_c00349{bottom:734.882667pt;}
.y6_c00349{bottom:772.210667pt;}
.y5_c00349{bottom:808.210667pt;}
.y4_c00349{bottom:845.538667pt;}
.y3_c00349{bottom:881.538667pt;}
.y2_c00349{bottom:918.866667pt;}
.h4_c00349{height:17.600093pt;}
.h2_c00349{height:57.375000pt;}
.h3_c00349{height:57.781250pt;}
.h5_c00349{height:64.375000pt;}
.h1_c00349{height:938.202667pt;}
.h0_c00349{height:1122.666667pt;}
.w2_c00349{width:26.694667pt;}
.w1_c00349{width:575.470667pt;}
.w0_c00349{width:793.333333pt;}
.x0_c00349{left:0.000000pt;}
.x2_c00349{left:4.402667pt;}
.x1_c00349{left:108.930667pt;}
.x3_c00349{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c96e75b742478435260bb877.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.113281;font-style:normal;font-weight:normal;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_503459685ad84835fe41bbe9.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00350;src:url('chunks/assets/font_1ec5f0441c314458361d6012.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:1.330566;font-style: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;}
.ls1_c00350{letter-spacing:-0.014400px;}
.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:0.000000px;}
._8_c00350{margin-left:-5.342400px;}
._7_c00350{margin-left:-3.974400px;}
._0_c00350{margin-left:-2.664000px;}
._1_c00350{margin-left:-1.310400px;}
._a_c00350{width:1.339200px;}
._5_c00350{width:3.355200px;}
._3_c00350{width:4.528800px;}
._d_c00350{width:12.103200px;}
._9_c00350{width:13.305600px;}
._b_c00350{width:15.984000px;}
._6_c00350{width:17.258400px;}
._4_c00350{width:21.268800px;}
._c_c00350{width:23.637600px;}
._2_c00350{width:26.064000px;}
.fc1_c00350{color:transparent;}
.fc0_c00350{color:rgb(0,0,0);}
.fs0_c00350{font-size:72.000000px;}
.y0_c00350{bottom:0.000000px;}
.y1c_c00350{bottom:3.787500px;}
.y1a_c00350{bottom:40.809000px;}
.y1b_c00350{bottom:56.735596px;}
.y19_c00350{bottom:81.309000px;}
.y1_c00350{bottom:106.275000px;}
.y18_c00350{bottom:123.303000px;}
.y17_c00350{bottom:163.803000px;}
.y16_c00350{bottom:205.797000px;}
.y15_c00350{bottom:247.791000px;}
.y14_c00350{bottom:288.291000px;}
.y13_c00350{bottom:330.285000px;}
.y12_c00350{bottom:370.785000px;}
.y11_c00350{bottom:412.779000px;}
.y10_c00350{bottom:454.773000px;}
.yf_c00350{bottom:495.273000px;}
.ye_c00350{bottom:537.267000px;}
.yd_c00350{bottom:577.767000px;}
.yc_c00350{bottom:619.761000px;}
.yb_c00350{bottom:661.755000px;}
.ya_c00350{bottom:702.255000px;}
.y9_c00350{bottom:744.249000px;}
.y8_c00350{bottom:784.749000px;}
.y7_c00350{bottom:826.743000px;}
.y6_c00350{bottom:868.737000px;}
.y5_c00350{bottom:909.237000px;}
.y4_c00350{bottom:951.231000px;}
.y3_c00350{bottom:991.731000px;}
.y2_c00350{bottom:1033.725000px;}
.h4_c00350{height:19.800105px;}
.h3_c00350{height:64.546875px;}
.h2_c00350{height:65.003906px;}
.h5_c00350{height:72.421875px;}
.h1_c00350{height:1055.478000px;}
.h0_c00350{height:1263.000000px;}
.w2_c00350{width:30.033000px;}
.w1_c00350{width:647.404500px;}
.w0_c00350{width:892.500000px;}
.x0_c00350{left:0.000000px;}
.x2_c00350{left:4.953000px;}
.x1_c00350{left:122.547000px;}
.x3_c00350{left:127.559509px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls1_c00350{letter-spacing:-0.012800pt;}
.ls0_c00350{letter-spacing:0.000000pt;}
.ws0_c00350{word-spacing:0.000000pt;}
._8_c00350{margin-left:-4.748800pt;}
._7_c00350{margin-left:-3.532800pt;}
._0_c00350{margin-left:-2.368000pt;}
._1_c00350{margin-left:-1.164800pt;}
._a_c00350{width:1.190400pt;}
._5_c00350{width:2.982400pt;}
._3_c00350{width:4.025600pt;}
._d_c00350{width:10.758400pt;}
._9_c00350{width:11.827200pt;}
._b_c00350{width:14.208000pt;}
._6_c00350{width:15.340800pt;}
._4_c00350{width:18.905600pt;}
._c_c00350{width:21.011200pt;}
._2_c00350{width:23.168000pt;}
.fs0_c00350{font-size:64.000000pt;}
.y0_c00350{bottom:0.000000pt;}
.y1c_c00350{bottom:3.366667pt;}
.y1a_c00350{bottom:36.274667pt;}
.y1b_c00350{bottom:50.431641pt;}
.y19_c00350{bottom:72.274667pt;}
.y1_c00350{bottom:94.466667pt;}
.y18_c00350{bottom:109.602667pt;}
.y17_c00350{bottom:145.602667pt;}
.y16_c00350{bottom:182.930667pt;}
.y15_c00350{bottom:220.258667pt;}
.y14_c00350{bottom:256.258667pt;}
.y13_c00350{bottom:293.586667pt;}
.y12_c00350{bottom:329.586667pt;}
.y11_c00350{bottom:366.914667pt;}
.y10_c00350{bottom:404.242667pt;}
.yf_c00350{bottom:440.242667pt;}
.ye_c00350{bottom:477.570667pt;}
.yd_c00350{bottom:513.570667pt;}
.yc_c00350{bottom:550.898667pt;}
.yb_c00350{bottom:588.226667pt;}
.ya_c00350{bottom:624.226667pt;}
.y9_c00350{bottom:661.554667pt;}
.y8_c00350{bottom:697.554667pt;}
.y7_c00350{bottom:734.882667pt;}
.y6_c00350{bottom:772.210667pt;}
.y5_c00350{bottom:808.210667pt;}
.y4_c00350{bottom:845.538667pt;}
.y3_c00350{bottom:881.538667pt;}
.y2_c00350{bottom:918.866667pt;}
.h4_c00350{height:17.600093pt;}
.h3_c00350{height:57.375000pt;}
.h2_c00350{height:57.781250pt;}
.h5_c00350{height:64.375000pt;}
.h1_c00350{height:938.202667pt;}
.h0_c00350{height:1122.666667pt;}
.w2_c00350{width:26.696000pt;}
.w1_c00350{width:575.470667pt;}
.w0_c00350{width:793.333333pt;}
.x0_c00350{left:0.000000pt;}
.x2_c00350{left:4.402667pt;}
.x1_c00350{left:108.930667pt;}
.x3_c00350{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6af7146133f665980dae8749.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00351;src:url('chunks/assets/font_f2891ce6031ae89516aff5da.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00351;src:url('chunks/assets/font_cf39b128982dcc2399167595.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:1.330566;font-style: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;}
.ls2_c00351{letter-spacing:0.000000px;}
.ls0_c00351{letter-spacing:2.289600px;}
.ls1_c00351{letter-spacing:2.469600px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00351{word-spacing:0.000000px;}
._7_c00351{margin-left:-4.644000px;}
._2_c00351{margin-left:-3.304800px;}
._a_c00351{margin-left:-2.289600px;}
._8_c00351{margin-left:-1.288800px;}
._1_c00351{width:1.310400px;}
._b_c00351{width:3.427200px;}
._9_c00351{width:5.040000px;}
._c_c00351{width:6.451200px;}
._3_c00351{width:8.748000px;}
._6_c00351{width:13.284000px;}
._0_c00351{width:14.472000px;}
._10_c00351{width:15.775200px;}
._5_c00351{width:17.258400px;}
._11_c00351{width:18.712800px;}
._4_c00351{width:25.380000px;}
._f_c00351{width:26.452800px;}
._12_c00351{width:29.505600px;}
._e_c00351{width:30.873600px;}
._d_c00351{width:34.833600px;}
.fc0_c00351{color:rgb(0,0,0);}
.fs0_c00351{font-size:72.000000px;}
.y0_c00351{bottom:0.000000px;}
.y1b_c00351{bottom:3.787500px;}
.y1a_c00351{bottom:56.735596px;}
.y19_c00351{bottom:81.309000px;}
.y1_c00351{bottom:106.275000px;}
.y18_c00351{bottom:123.303000px;}
.y17_c00351{bottom:163.803000px;}
.y16_c00351{bottom:205.797000px;}
.y15_c00351{bottom:247.791000px;}
.y14_c00351{bottom:288.291000px;}
.y13_c00351{bottom:330.285000px;}
.y12_c00351{bottom:370.785000px;}
.y11_c00351{bottom:412.779000px;}
.y10_c00351{bottom:454.773000px;}
.yf_c00351{bottom:495.273000px;}
.ye_c00351{bottom:537.267000px;}
.yd_c00351{bottom:577.767000px;}
.yc_c00351{bottom:619.761000px;}
.yb_c00351{bottom:661.755000px;}
.ya_c00351{bottom:702.255000px;}
.y9_c00351{bottom:744.249000px;}
.y8_c00351{bottom:784.749000px;}
.y7_c00351{bottom:826.743000px;}
.y6_c00351{bottom:868.737000px;}
.y5_c00351{bottom:909.237000px;}
.y4_c00351{bottom:951.231000px;}
.y3_c00351{bottom:991.731000px;}
.y2_c00351{bottom:1033.725000px;}
.h4_c00351{height:19.800105px;}
.h3_c00351{height:64.546875px;}
.h2_c00351{height:65.003906px;}
.h5_c00351{height:72.421875px;}
.h1_c00351{height:1055.478000px;}
.h0_c00351{height:1263.000000px;}
.w2_c00351{width:30.031500px;}
.w1_c00351{width:647.404500px;}
.w0_c00351{width:892.500000px;}
.x0_c00351{left:0.000000px;}
.x2_c00351{left:4.953000px;}
.x1_c00351{left:122.547000px;}
.x3_c00351{left:734.908997px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls2_c00351{letter-spacing:0.000000pt;}
.ls0_c00351{letter-spacing:2.035200pt;}
.ls1_c00351{letter-spacing:2.195200pt;}
.ws0_c00351{word-spacing:0.000000pt;}
._7_c00351{margin-left:-4.128000pt;}
._2_c00351{margin-left:-2.937600pt;}
._a_c00351{margin-left:-2.035200pt;}
._8_c00351{margin-left:-1.145600pt;}
._1_c00351{width:1.164800pt;}
._b_c00351{width:3.046400pt;}
._9_c00351{width:4.480000pt;}
._c_c00351{width:5.734400pt;}
._3_c00351{width:7.776000pt;}
._6_c00351{width:11.808000pt;}
._0_c00351{width:12.864000pt;}
._10_c00351{width:14.022400pt;}
._5_c00351{width:15.340800pt;}
._11_c00351{width:16.633600pt;}
._4_c00351{width:22.560000pt;}
._f_c00351{width:23.513600pt;}
._12_c00351{width:26.227200pt;}
._e_c00351{width:27.443200pt;}
._d_c00351{width:30.963200pt;}
.fs0_c00351{font-size:64.000000pt;}
.y0_c00351{bottom:0.000000pt;}
.y1b_c00351{bottom:3.366667pt;}
.y1a_c00351{bottom:50.431641pt;}
.y19_c00351{bottom:72.274667pt;}
.y1_c00351{bottom:94.466667pt;}
.y18_c00351{bottom:109.602667pt;}
.y17_c00351{bottom:145.602667pt;}
.y16_c00351{bottom:182.930667pt;}
.y15_c00351{bottom:220.258667pt;}
.y14_c00351{bottom:256.258667pt;}
.y13_c00351{bottom:293.586667pt;}
.y12_c00351{bottom:329.586667pt;}
.y11_c00351{bottom:366.914667pt;}
.y10_c00351{bottom:404.242667pt;}
.yf_c00351{bottom:440.242667pt;}
.ye_c00351{bottom:477.570667pt;}
.yd_c00351{bottom:513.570667pt;}
.yc_c00351{bottom:550.898667pt;}
.yb_c00351{bottom:588.226667pt;}
.ya_c00351{bottom:624.226667pt;}
.y9_c00351{bottom:661.554667pt;}
.y8_c00351{bottom:697.554667pt;}
.y7_c00351{bottom:734.882667pt;}
.y6_c00351{bottom:772.210667pt;}
.y5_c00351{bottom:808.210667pt;}
.y4_c00351{bottom:845.538667pt;}
.y3_c00351{bottom:881.538667pt;}
.y2_c00351{bottom:918.866667pt;}
.h4_c00351{height:17.600093pt;}
.h3_c00351{height:57.375000pt;}
.h2_c00351{height:57.781250pt;}
.h5_c00351{height:64.375000pt;}
.h1_c00351{height:938.202667pt;}
.h0_c00351{height:1122.666667pt;}
.w2_c00351{width:26.694667pt;}
.w1_c00351{width:575.470667pt;}
.w0_c00351{width:793.333333pt;}
.x0_c00351{left:0.000000pt;}
.x2_c00351{left:4.402667pt;}
.x1_c00351{left:108.930667pt;}
.x3_c00351{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_705832efa2211ddfed5bb1a2.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.113281;font-style:normal;font-weight:normal;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_1d79254e52bcee33b2e9bb63.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00352;src:url('chunks/assets/font_2e26e216cfc6b582ef04b069.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:1.330566;font-style: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;}
.ls0_c00352{letter-spacing:0.000000px;}
.sc__c00352{text-shadow:none;}
.sc0_c00352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00352{-webkit-text-stroke:0px transparent;}
.sc0_c00352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00352{word-spacing:0.000000px;}
._3_c00352{margin-left:-5.342400px;}
._e_c00352{margin-left:-3.873600px;}
._2_c00352{margin-left:-2.656800px;}
._b_c00352{width:1.857600px;}
._f_c00352{width:3.319200px;}
._9_c00352{width:4.420800px;}
._10_c00352{width:5.796000px;}
._11_c00352{width:6.998400px;}
._12_c00352{width:8.409600px;}
._6_c00352{width:10.375200px;}
._5_c00352{width:12.420000px;}
._7_c00352{width:13.464000px;}
._1_c00352{width:15.019200px;}
._4_c00352{width:16.264800px;}
._0_c00352{width:17.690400px;}
._c_c00352{width:18.979200px;}
._d_c00352{width:24.472800px;}
._a_c00352{width:26.294400px;}
._8_c00352{width:28.065600px;}
._13_c00352{width:35.049600px;}
.fc0_c00352{color:rgb(0,0,0);}
.fs0_c00352{font-size:72.000000px;}
.y0_c00352{bottom:0.000000px;}
.y1b_c00352{bottom:3.787500px;}
.y1a_c00352{bottom:56.735596px;}
.y19_c00352{bottom:81.309000px;}
.y1_c00352{bottom:106.275000px;}
.y18_c00352{bottom:123.303000px;}
.y17_c00352{bottom:163.803000px;}
.y16_c00352{bottom:205.797000px;}
.y15_c00352{bottom:247.791000px;}
.y14_c00352{bottom:288.291000px;}
.y13_c00352{bottom:330.285000px;}
.y12_c00352{bottom:370.785000px;}
.y11_c00352{bottom:412.779000px;}
.y10_c00352{bottom:454.773000px;}
.yf_c00352{bottom:495.273000px;}
.ye_c00352{bottom:537.267000px;}
.yd_c00352{bottom:577.767000px;}
.yc_c00352{bottom:619.761000px;}
.yb_c00352{bottom:661.755000px;}
.ya_c00352{bottom:702.255000px;}
.y9_c00352{bottom:744.249000px;}
.y8_c00352{bottom:784.749000px;}
.y7_c00352{bottom:826.743000px;}
.y6_c00352{bottom:868.737000px;}
.y5_c00352{bottom:909.237000px;}
.y4_c00352{bottom:951.231000px;}
.y3_c00352{bottom:991.731000px;}
.y2_c00352{bottom:1033.725000px;}
.h4_c00352{height:19.800105px;}
.h3_c00352{height:64.546875px;}
.h2_c00352{height:65.003906px;}
.h5_c00352{height:72.421875px;}
.h1_c00352{height:1055.478000px;}
.h0_c00352{height:1263.000000px;}
.w2_c00352{width:30.033000px;}
.w1_c00352{width:647.404500px;}
.w0_c00352{width:892.500000px;}
.x0_c00352{left:0.000000px;}
.x2_c00352{left:4.953000px;}
.x1_c00352{left:122.547000px;}
.x3_c00352{left:127.559509px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls0_c00352{letter-spacing:0.000000pt;}
.ws0_c00352{word-spacing:0.000000pt;}
._3_c00352{margin-left:-4.748800pt;}
._e_c00352{margin-left:-3.443200pt;}
._2_c00352{margin-left:-2.361600pt;}
._b_c00352{width:1.651200pt;}
._f_c00352{width:2.950400pt;}
._9_c00352{width:3.929600pt;}
._10_c00352{width:5.152000pt;}
._11_c00352{width:6.220800pt;}
._12_c00352{width:7.475200pt;}
._6_c00352{width:9.222400pt;}
._5_c00352{width:11.040000pt;}
._7_c00352{width:11.968000pt;}
._1_c00352{width:13.350400pt;}
._4_c00352{width:14.457600pt;}
._0_c00352{width:15.724800pt;}
._c_c00352{width:16.870400pt;}
._d_c00352{width:21.753600pt;}
._a_c00352{width:23.372800pt;}
._8_c00352{width:24.947200pt;}
._13_c00352{width:31.155200pt;}
.fs0_c00352{font-size:64.000000pt;}
.y0_c00352{bottom:0.000000pt;}
.y1b_c00352{bottom:3.366667pt;}
.y1a_c00352{bottom:50.431641pt;}
.y19_c00352{bottom:72.274667pt;}
.y1_c00352{bottom:94.466667pt;}
.y18_c00352{bottom:109.602667pt;}
.y17_c00352{bottom:145.602667pt;}
.y16_c00352{bottom:182.930667pt;}
.y15_c00352{bottom:220.258667pt;}
.y14_c00352{bottom:256.258667pt;}
.y13_c00352{bottom:293.586667pt;}
.y12_c00352{bottom:329.586667pt;}
.y11_c00352{bottom:366.914667pt;}
.y10_c00352{bottom:404.242667pt;}
.yf_c00352{bottom:440.242667pt;}
.ye_c00352{bottom:477.570667pt;}
.yd_c00352{bottom:513.570667pt;}
.yc_c00352{bottom:550.898667pt;}
.yb_c00352{bottom:588.226667pt;}
.ya_c00352{bottom:624.226667pt;}
.y9_c00352{bottom:661.554667pt;}
.y8_c00352{bottom:697.554667pt;}
.y7_c00352{bottom:734.882667pt;}
.y6_c00352{bottom:772.210667pt;}
.y5_c00352{bottom:808.210667pt;}
.y4_c00352{bottom:845.538667pt;}
.y3_c00352{bottom:881.538667pt;}
.y2_c00352{bottom:918.866667pt;}
.h4_c00352{height:17.600093pt;}
.h3_c00352{height:57.375000pt;}
.h2_c00352{height:57.781250pt;}
.h5_c00352{height:64.375000pt;}
.h1_c00352{height:938.202667pt;}
.h0_c00352{height:1122.666667pt;}
.w2_c00352{width:26.696000pt;}
.w1_c00352{width:575.470667pt;}
.w0_c00352{width:793.333333pt;}
.x0_c00352{left:0.000000pt;}
.x2_c00352{left:4.402667pt;}
.x1_c00352{left:108.930667pt;}
.x3_c00352{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3951af8e30497437f48f4140.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00353;src:url('chunks/assets/font_f9eb300a5aa971c5ade1b2be.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00353;src:url('chunks/assets/font_0811f59859ac6ca01cefbefb.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:1.330566;font-style: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;}
.ls2_c00353{letter-spacing:0.000000px;}
.ls0_c00353{letter-spacing:0.180000px;}
.ls1_c00353{letter-spacing:3.132000px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00353{word-spacing:0.000000px;}
._4_c00353{margin-left:-5.342400px;}
._5_c00353{margin-left:-3.981600px;}
._3_c00353{margin-left:-2.664000px;}
._2_c00353{margin-left:-1.288800px;}
._6_c00353{width:1.008000px;}
._11_c00353{width:2.844000px;}
._12_c00353{width:4.068000px;}
._f_c00353{width:6.249600px;}
._13_c00353{width:9.129600px;}
._a_c00353{width:10.699200px;}
._10_c00353{width:12.031200px;}
._e_c00353{width:13.039200px;}
._c_c00353{width:18.331200px;}
._1_c00353{width:21.686400px;}
._b_c00353{width:23.112000px;}
._0_c00353{width:24.818400px;}
._d_c00353{width:26.064000px;}
._14_c00353{width:28.432800px;}
._7_c00353{width:32.940000px;}
._8_c00353{width:34.056000px;}
._9_c00353{width:35.712000px;}
.fc0_c00353{color:rgb(0,0,0);}
.fs0_c00353{font-size:72.000000px;}
.y0_c00353{bottom:0.000000px;}
.y1c_c00353{bottom:3.787500px;}
.y1a_c00353{bottom:40.809000px;}
.y1b_c00353{bottom:56.735596px;}
.y19_c00353{bottom:81.309000px;}
.y1_c00353{bottom:106.275000px;}
.y18_c00353{bottom:123.303000px;}
.y17_c00353{bottom:163.803000px;}
.y16_c00353{bottom:205.797000px;}
.y15_c00353{bottom:247.791000px;}
.y14_c00353{bottom:288.291000px;}
.y13_c00353{bottom:330.285000px;}
.y12_c00353{bottom:370.785000px;}
.y11_c00353{bottom:412.779000px;}
.y10_c00353{bottom:454.773000px;}
.yf_c00353{bottom:495.273000px;}
.ye_c00353{bottom:537.267000px;}
.yd_c00353{bottom:577.767000px;}
.yc_c00353{bottom:619.761000px;}
.yb_c00353{bottom:661.755000px;}
.ya_c00353{bottom:702.255000px;}
.y9_c00353{bottom:744.249000px;}
.y8_c00353{bottom:784.749000px;}
.y7_c00353{bottom:826.743000px;}
.y6_c00353{bottom:868.737000px;}
.y5_c00353{bottom:909.237000px;}
.y4_c00353{bottom:951.231000px;}
.y3_c00353{bottom:991.731000px;}
.y2_c00353{bottom:1033.725000px;}
.h4_c00353{height:19.800105px;}
.h2_c00353{height:64.546875px;}
.h3_c00353{height:65.003906px;}
.h5_c00353{height:72.421875px;}
.h1_c00353{height:1055.478000px;}
.h0_c00353{height:1263.000000px;}
.w2_c00353{width:30.031500px;}
.w1_c00353{width:647.404500px;}
.w0_c00353{width:892.500000px;}
.x0_c00353{left:0.000000px;}
.x2_c00353{left:4.953000px;}
.x1_c00353{left:122.547000px;}
.x3_c00353{left:734.908997px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls2_c00353{letter-spacing:0.000000pt;}
.ls0_c00353{letter-spacing:0.160000pt;}
.ls1_c00353{letter-spacing:2.784000pt;}
.ws0_c00353{word-spacing:0.000000pt;}
._4_c00353{margin-left:-4.748800pt;}
._5_c00353{margin-left:-3.539200pt;}
._3_c00353{margin-left:-2.368000pt;}
._2_c00353{margin-left:-1.145600pt;}
._6_c00353{width:0.896000pt;}
._11_c00353{width:2.528000pt;}
._12_c00353{width:3.616000pt;}
._f_c00353{width:5.555200pt;}
._13_c00353{width:8.115200pt;}
._a_c00353{width:9.510400pt;}
._10_c00353{width:10.694400pt;}
._e_c00353{width:11.590400pt;}
._c_c00353{width:16.294400pt;}
._1_c00353{width:19.276800pt;}
._b_c00353{width:20.544000pt;}
._0_c00353{width:22.060800pt;}
._d_c00353{width:23.168000pt;}
._14_c00353{width:25.273600pt;}
._7_c00353{width:29.280000pt;}
._8_c00353{width:30.272000pt;}
._9_c00353{width:31.744000pt;}
.fs0_c00353{font-size:64.000000pt;}
.y0_c00353{bottom:0.000000pt;}
.y1c_c00353{bottom:3.366667pt;}
.y1a_c00353{bottom:36.274667pt;}
.y1b_c00353{bottom:50.431641pt;}
.y19_c00353{bottom:72.274667pt;}
.y1_c00353{bottom:94.466667pt;}
.y18_c00353{bottom:109.602667pt;}
.y17_c00353{bottom:145.602667pt;}
.y16_c00353{bottom:182.930667pt;}
.y15_c00353{bottom:220.258667pt;}
.y14_c00353{bottom:256.258667pt;}
.y13_c00353{bottom:293.586667pt;}
.y12_c00353{bottom:329.586667pt;}
.y11_c00353{bottom:366.914667pt;}
.y10_c00353{bottom:404.242667pt;}
.yf_c00353{bottom:440.242667pt;}
.ye_c00353{bottom:477.570667pt;}
.yd_c00353{bottom:513.570667pt;}
.yc_c00353{bottom:550.898667pt;}
.yb_c00353{bottom:588.226667pt;}
.ya_c00353{bottom:624.226667pt;}
.y9_c00353{bottom:661.554667pt;}
.y8_c00353{bottom:697.554667pt;}
.y7_c00353{bottom:734.882667pt;}
.y6_c00353{bottom:772.210667pt;}
.y5_c00353{bottom:808.210667pt;}
.y4_c00353{bottom:845.538667pt;}
.y3_c00353{bottom:881.538667pt;}
.y2_c00353{bottom:918.866667pt;}
.h4_c00353{height:17.600093pt;}
.h2_c00353{height:57.375000pt;}
.h3_c00353{height:57.781250pt;}
.h5_c00353{height:64.375000pt;}
.h1_c00353{height:938.202667pt;}
.h0_c00353{height:1122.666667pt;}
.w2_c00353{width:26.694667pt;}
.w1_c00353{width:575.470667pt;}
.w0_c00353{width:793.333333pt;}
.x0_c00353{left:0.000000pt;}
.x2_c00353{left:4.402667pt;}
.x1_c00353{left:108.930667pt;}
.x3_c00353{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_93d63b6c774d793c55a6ddf6.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.113281;font-style:normal;font-weight:normal;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_d7fc6bc4c03aefa39dd737ff.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00354;src:url('chunks/assets/font_0f18e37cae6f9c08912aa2d6.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:1.330566;font-style: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;}
.ls2_c00354{letter-spacing:-0.014400px;}
.ls1_c00354{letter-spacing:0.000000px;}
.ls0_c00354{letter-spacing:5.270400px;}
.sc__c00354{text-shadow:none;}
.sc0_c00354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00354{-webkit-text-stroke:0px transparent;}
.sc0_c00354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00354{word-spacing:0.000000px;}
._8_c00354{margin-left:-5.356800px;}
._b_c00354{margin-left:-3.960000px;}
._4_c00354{width:1.339200px;}
._7_c00354{width:2.995200px;}
._13_c00354{width:5.112000px;}
._0_c00354{width:7.250400px;}
._5_c00354{width:8.834400px;}
._e_c00354{width:10.188000px;}
._9_c00354{width:11.664000px;}
._6_c00354{width:12.844800px;}
._11_c00354{width:16.048800px;}
._a_c00354{width:18.590400px;}
._c_c00354{width:21.484800px;}
._3_c00354{width:24.069600px;}
._d_c00354{width:25.848000px;}
._12_c00354{width:27.612000px;}
._10_c00354{width:29.880000px;}
._1_c00354{width:31.183200px;}
._2_c00354{width:32.731200px;}
._f_c00354{width:34.718400px;}
.fc0_c00354{color:rgb(0,0,0);}
.fs0_c00354{font-size:72.000000px;}
.y0_c00354{bottom:0.000000px;}
.y1c_c00354{bottom:3.787500px;}
.y1a_c00354{bottom:40.809000px;}
.y1b_c00354{bottom:56.735596px;}
.y19_c00354{bottom:81.309000px;}
.y1_c00354{bottom:106.275000px;}
.y18_c00354{bottom:123.303000px;}
.y17_c00354{bottom:163.803000px;}
.y16_c00354{bottom:205.797000px;}
.y15_c00354{bottom:247.791000px;}
.y14_c00354{bottom:288.291000px;}
.y13_c00354{bottom:330.285000px;}
.y12_c00354{bottom:370.785000px;}
.y11_c00354{bottom:412.779000px;}
.y10_c00354{bottom:454.773000px;}
.yf_c00354{bottom:495.273000px;}
.ye_c00354{bottom:537.267000px;}
.yd_c00354{bottom:577.767000px;}
.yc_c00354{bottom:619.761000px;}
.yb_c00354{bottom:661.755000px;}
.ya_c00354{bottom:702.255000px;}
.y9_c00354{bottom:744.249000px;}
.y8_c00354{bottom:784.749000px;}
.y7_c00354{bottom:826.743000px;}
.y6_c00354{bottom:868.737000px;}
.y5_c00354{bottom:909.237000px;}
.y4_c00354{bottom:951.231000px;}
.y3_c00354{bottom:991.731000px;}
.y2_c00354{bottom:1033.725000px;}
.h3_c00354{height:19.800105px;}
.h2_c00354{height:65.003906px;}
.h4_c00354{height:72.421875px;}
.h1_c00354{height:1055.478000px;}
.h0_c00354{height:1263.000000px;}
.w2_c00354{width:30.033000px;}
.w1_c00354{width:655.977000px;}
.w0_c00354{width:892.500000px;}
.x0_c00354{left:0.000000px;}
.x2_c00354{left:4.953000px;}
.x1_c00354{left:122.547000px;}
.x3_c00354{left:127.559509px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls2_c00354{letter-spacing:-0.012800pt;}
.ls1_c00354{letter-spacing:0.000000pt;}
.ls0_c00354{letter-spacing:4.684800pt;}
.ws0_c00354{word-spacing:0.000000pt;}
._8_c00354{margin-left:-4.761600pt;}
._b_c00354{margin-left:-3.520000pt;}
._4_c00354{width:1.190400pt;}
._7_c00354{width:2.662400pt;}
._13_c00354{width:4.544000pt;}
._0_c00354{width:6.444800pt;}
._5_c00354{width:7.852800pt;}
._e_c00354{width:9.056000pt;}
._9_c00354{width:10.368000pt;}
._6_c00354{width:11.417600pt;}
._11_c00354{width:14.265600pt;}
._a_c00354{width:16.524800pt;}
._c_c00354{width:19.097600pt;}
._3_c00354{width:21.395200pt;}
._d_c00354{width:22.976000pt;}
._12_c00354{width:24.544000pt;}
._10_c00354{width:26.560000pt;}
._1_c00354{width:27.718400pt;}
._2_c00354{width:29.094400pt;}
._f_c00354{width:30.860800pt;}
.fs0_c00354{font-size:64.000000pt;}
.y0_c00354{bottom:0.000000pt;}
.y1c_c00354{bottom:3.366667pt;}
.y1a_c00354{bottom:36.274667pt;}
.y1b_c00354{bottom:50.431641pt;}
.y19_c00354{bottom:72.274667pt;}
.y1_c00354{bottom:94.466667pt;}
.y18_c00354{bottom:109.602667pt;}
.y17_c00354{bottom:145.602667pt;}
.y16_c00354{bottom:182.930667pt;}
.y15_c00354{bottom:220.258667pt;}
.y14_c00354{bottom:256.258667pt;}
.y13_c00354{bottom:293.586667pt;}
.y12_c00354{bottom:329.586667pt;}
.y11_c00354{bottom:366.914667pt;}
.y10_c00354{bottom:404.242667pt;}
.yf_c00354{bottom:440.242667pt;}
.ye_c00354{bottom:477.570667pt;}
.yd_c00354{bottom:513.570667pt;}
.yc_c00354{bottom:550.898667pt;}
.yb_c00354{bottom:588.226667pt;}
.ya_c00354{bottom:624.226667pt;}
.y9_c00354{bottom:661.554667pt;}
.y8_c00354{bottom:697.554667pt;}
.y7_c00354{bottom:734.882667pt;}
.y6_c00354{bottom:772.210667pt;}
.y5_c00354{bottom:808.210667pt;}
.y4_c00354{bottom:845.538667pt;}
.y3_c00354{bottom:881.538667pt;}
.y2_c00354{bottom:918.866667pt;}
.h3_c00354{height:17.600093pt;}
.h2_c00354{height:57.781250pt;}
.h4_c00354{height:64.375000pt;}
.h1_c00354{height:938.202667pt;}
.h0_c00354{height:1122.666667pt;}
.w2_c00354{width:26.696000pt;}
.w1_c00354{width:583.090667pt;}
.w0_c00354{width:793.333333pt;}
.x0_c00354{left:0.000000pt;}
.x2_c00354{left:4.402667pt;}
.x1_c00354{left:108.930667pt;}
.x3_c00354{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6cbd07c3960dc6aa6f99bd3d.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.113281;font-style:normal;font-weight:normal;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_031c7c3b3a3ff517188ae72d.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00355;src:url('chunks/assets/font_89b852315df0d3543c9405d4.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00355{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.ls3_c00355{letter-spacing:-0.014400px;}
.ls2_c00355{letter-spacing:0.000000px;}
.ls0_c00355{letter-spacing:6.048000px;}
.ls1_c00355{letter-spacing:39.024000px;}
.sc__c00355{text-shadow:none;}
.sc0_c00355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00355{-webkit-text-stroke:0px transparent;}
.sc0_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00355{word-spacing:0.000000px;}
._c_c00355{margin-left:-6.048000px;}
._0_c00355{margin-left:-3.960000px;}
._8_c00355{width:1.209600px;}
._6_c00355{width:2.944800px;}
._a_c00355{width:4.363200px;}
._f_c00355{width:6.868800px;}
._3_c00355{width:8.078400px;}
._1_c00355{width:9.151200px;}
._b_c00355{width:10.231200px;}
._7_c00355{width:12.650400px;}
._10_c00355{width:14.119200px;}
._2_c00355{width:16.891200px;}
._e_c00355{width:18.878400px;}
._4_c00355{width:21.484800px;}
._5_c00355{width:25.387200px;}
._9_c00355{width:28.411200px;}
._d_c00355{width:32.976000px;}
.fc0_c00355{color:rgb(0,0,0);}
.fs0_c00355{font-size:72.000000px;}
.y0_c00355{bottom:0.000000px;}
.y1b_c00355{bottom:3.787500px;}
.y1a_c00355{bottom:56.735596px;}
.y19_c00355{bottom:81.309000px;}
.y1_c00355{bottom:106.275000px;}
.y18_c00355{bottom:123.303000px;}
.y17_c00355{bottom:163.803000px;}
.y16_c00355{bottom:205.797000px;}
.y15_c00355{bottom:247.791000px;}
.y14_c00355{bottom:288.291000px;}
.y13_c00355{bottom:330.285000px;}
.y12_c00355{bottom:370.785000px;}
.y11_c00355{bottom:412.779000px;}
.y10_c00355{bottom:454.773000px;}
.yf_c00355{bottom:495.273000px;}
.ye_c00355{bottom:537.267000px;}
.yd_c00355{bottom:577.767000px;}
.yc_c00355{bottom:619.761000px;}
.yb_c00355{bottom:661.755000px;}
.ya_c00355{bottom:702.255000px;}
.y9_c00355{bottom:744.249000px;}
.y8_c00355{bottom:784.749000px;}
.y7_c00355{bottom:826.743000px;}
.y6_c00355{bottom:868.737000px;}
.y5_c00355{bottom:909.237000px;}
.y4_c00355{bottom:951.231000px;}
.y3_c00355{bottom:991.731000px;}
.y2_c00355{bottom:1033.725000px;}
.h3_c00355{height:19.800105px;}
.h2_c00355{height:65.003906px;}
.h4_c00355{height:72.421875px;}
.h1_c00355{height:1055.478000px;}
.h0_c00355{height:1263.000000px;}
.w2_c00355{width:30.031500px;}
.w1_c00355{width:647.404500px;}
.w0_c00355{width:892.500000px;}
.x0_c00355{left:0.000000px;}
.x2_c00355{left:4.953000px;}
.x1_c00355{left:122.547000px;}
.x3_c00355{left:734.908997px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls3_c00355{letter-spacing:-0.012800pt;}
.ls2_c00355{letter-spacing:0.000000pt;}
.ls0_c00355{letter-spacing:5.376000pt;}
.ls1_c00355{letter-spacing:34.688000pt;}
.ws0_c00355{word-spacing:0.000000pt;}
._c_c00355{margin-left:-5.376000pt;}
._0_c00355{margin-left:-3.520000pt;}
._8_c00355{width:1.075200pt;}
._6_c00355{width:2.617600pt;}
._a_c00355{width:3.878400pt;}
._f_c00355{width:6.105600pt;}
._3_c00355{width:7.180800pt;}
._1_c00355{width:8.134400pt;}
._b_c00355{width:9.094400pt;}
._7_c00355{width:11.244800pt;}
._10_c00355{width:12.550400pt;}
._2_c00355{width:15.014400pt;}
._e_c00355{width:16.780800pt;}
._4_c00355{width:19.097600pt;}
._5_c00355{width:22.566400pt;}
._9_c00355{width:25.254400pt;}
._d_c00355{width:29.312000pt;}
.fs0_c00355{font-size:64.000000pt;}
.y0_c00355{bottom:0.000000pt;}
.y1b_c00355{bottom:3.366667pt;}
.y1a_c00355{bottom:50.431641pt;}
.y19_c00355{bottom:72.274667pt;}
.y1_c00355{bottom:94.466667pt;}
.y18_c00355{bottom:109.602667pt;}
.y17_c00355{bottom:145.602667pt;}
.y16_c00355{bottom:182.930667pt;}
.y15_c00355{bottom:220.258667pt;}
.y14_c00355{bottom:256.258667pt;}
.y13_c00355{bottom:293.586667pt;}
.y12_c00355{bottom:329.586667pt;}
.y11_c00355{bottom:366.914667pt;}
.y10_c00355{bottom:404.242667pt;}
.yf_c00355{bottom:440.242667pt;}
.ye_c00355{bottom:477.570667pt;}
.yd_c00355{bottom:513.570667pt;}
.yc_c00355{bottom:550.898667pt;}
.yb_c00355{bottom:588.226667pt;}
.ya_c00355{bottom:624.226667pt;}
.y9_c00355{bottom:661.554667pt;}
.y8_c00355{bottom:697.554667pt;}
.y7_c00355{bottom:734.882667pt;}
.y6_c00355{bottom:772.210667pt;}
.y5_c00355{bottom:808.210667pt;}
.y4_c00355{bottom:845.538667pt;}
.y3_c00355{bottom:881.538667pt;}
.y2_c00355{bottom:918.866667pt;}
.h3_c00355{height:17.600093pt;}
.h2_c00355{height:57.781250pt;}
.h4_c00355{height:64.375000pt;}
.h1_c00355{height:938.202667pt;}
.h0_c00355{height:1122.666667pt;}
.w2_c00355{width:26.694667pt;}
.w1_c00355{width:575.470667pt;}
.w0_c00355{width:793.333333pt;}
.x0_c00355{left:0.000000pt;}
.x2_c00355{left:4.402667pt;}
.x1_c00355{left:108.930667pt;}
.x3_c00355{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9a7d6ad5daa1e1200d27e2ff.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.113281;font-style:normal;font-weight:normal;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_1394b2cbbdcea0636821b66c.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00356;src:url('chunks/assets/font_15cc599b027087639839c4bc.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;line-height:1.330566;font-style: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;}
.ls2_c00356{letter-spacing:0.000000px;}
.ls1_c00356{letter-spacing:0.093600px;}
.ls3_c00356{letter-spacing:0.108000px;}
.ls0_c00356{letter-spacing:3.823200px;}
.sc__c00356{text-shadow:none;}
.sc0_c00356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00356{-webkit-text-stroke:0px transparent;}
.sc0_c00356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00356{word-spacing:0.000000px;}
._d_c00356{margin-left:-7.776000px;}
._1_c00356{margin-left:-5.342400px;}
._9_c00356{margin-left:-4.082400px;}
._8_c00356{margin-left:-2.412000px;}
._b_c00356{margin-left:-1.296000px;}
._6_c00356{width:1.051200px;}
._0_c00356{width:2.462400px;}
._5_c00356{width:3.628800px;}
._2_c00356{width:5.853600px;}
._4_c00356{width:7.480800px;}
._7_c00356{width:9.367200px;}
._11_c00356{width:10.533600px;}
._10_c00356{width:12.369600px;}
._13_c00356{width:15.084000px;}
._3_c00356{width:17.409600px;}
._f_c00356{width:22.564800px;}
._e_c00356{width:24.336000px;}
._a_c00356{width:30.362400px;}
._c_c00356{width:34.322400px;}
._12_c00356{width:35.856000px;}
.fc0_c00356{color:rgb(0,0,0);}
.fs0_c00356{font-size:72.000000px;}
.y0_c00356{bottom:0.000000px;}
.y1b_c00356{bottom:3.787500px;}
.y1a_c00356{bottom:56.735596px;}
.y19_c00356{bottom:81.309000px;}
.y1_c00356{bottom:106.275000px;}
.y18_c00356{bottom:123.303000px;}
.y17_c00356{bottom:163.803000px;}
.y16_c00356{bottom:205.797000px;}
.y15_c00356{bottom:247.791000px;}
.y14_c00356{bottom:288.291000px;}
.y13_c00356{bottom:330.285000px;}
.y12_c00356{bottom:370.785000px;}
.y11_c00356{bottom:412.779000px;}
.y10_c00356{bottom:454.773000px;}
.yf_c00356{bottom:495.273000px;}
.ye_c00356{bottom:537.267000px;}
.yd_c00356{bottom:577.767000px;}
.yc_c00356{bottom:619.761000px;}
.yb_c00356{bottom:661.755000px;}
.ya_c00356{bottom:702.255000px;}
.y9_c00356{bottom:744.249000px;}
.y8_c00356{bottom:784.749000px;}
.y7_c00356{bottom:826.743000px;}
.y6_c00356{bottom:868.737000px;}
.y5_c00356{bottom:909.237000px;}
.y4_c00356{bottom:951.231000px;}
.y3_c00356{bottom:991.731000px;}
.y2_c00356{bottom:1033.725000px;}
.h4_c00356{height:19.800105px;}
.h3_c00356{height:64.546875px;}
.h2_c00356{height:65.003906px;}
.h5_c00356{height:72.421875px;}
.h1_c00356{height:1055.478000px;}
.h0_c00356{height:1263.000000px;}
.w2_c00356{width:30.033000px;}
.w1_c00356{width:647.404500px;}
.w0_c00356{width:892.500000px;}
.x0_c00356{left:0.000000px;}
.x2_c00356{left:4.953000px;}
.x1_c00356{left:122.547000px;}
.x3_c00356{left:127.559509px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls2_c00356{letter-spacing:0.000000pt;}
.ls1_c00356{letter-spacing:0.083200pt;}
.ls3_c00356{letter-spacing:0.096000pt;}
.ls0_c00356{letter-spacing:3.398400pt;}
.ws0_c00356{word-spacing:0.000000pt;}
._d_c00356{margin-left:-6.912000pt;}
._1_c00356{margin-left:-4.748800pt;}
._9_c00356{margin-left:-3.628800pt;}
._8_c00356{margin-left:-2.144000pt;}
._b_c00356{margin-left:-1.152000pt;}
._6_c00356{width:0.934400pt;}
._0_c00356{width:2.188800pt;}
._5_c00356{width:3.225600pt;}
._2_c00356{width:5.203200pt;}
._4_c00356{width:6.649600pt;}
._7_c00356{width:8.326400pt;}
._11_c00356{width:9.363200pt;}
._10_c00356{width:10.995200pt;}
._13_c00356{width:13.408000pt;}
._3_c00356{width:15.475200pt;}
._f_c00356{width:20.057600pt;}
._e_c00356{width:21.632000pt;}
._a_c00356{width:26.988800pt;}
._c_c00356{width:30.508800pt;}
._12_c00356{width:31.872000pt;}
.fs0_c00356{font-size:64.000000pt;}
.y0_c00356{bottom:0.000000pt;}
.y1b_c00356{bottom:3.366667pt;}
.y1a_c00356{bottom:50.431641pt;}
.y19_c00356{bottom:72.274667pt;}
.y1_c00356{bottom:94.466667pt;}
.y18_c00356{bottom:109.602667pt;}
.y17_c00356{bottom:145.602667pt;}
.y16_c00356{bottom:182.930667pt;}
.y15_c00356{bottom:220.258667pt;}
.y14_c00356{bottom:256.258667pt;}
.y13_c00356{bottom:293.586667pt;}
.y12_c00356{bottom:329.586667pt;}
.y11_c00356{bottom:366.914667pt;}
.y10_c00356{bottom:404.242667pt;}
.yf_c00356{bottom:440.242667pt;}
.ye_c00356{bottom:477.570667pt;}
.yd_c00356{bottom:513.570667pt;}
.yc_c00356{bottom:550.898667pt;}
.yb_c00356{bottom:588.226667pt;}
.ya_c00356{bottom:624.226667pt;}
.y9_c00356{bottom:661.554667pt;}
.y8_c00356{bottom:697.554667pt;}
.y7_c00356{bottom:734.882667pt;}
.y6_c00356{bottom:772.210667pt;}
.y5_c00356{bottom:808.210667pt;}
.y4_c00356{bottom:845.538667pt;}
.y3_c00356{bottom:881.538667pt;}
.y2_c00356{bottom:918.866667pt;}
.h4_c00356{height:17.600093pt;}
.h3_c00356{height:57.375000pt;}
.h2_c00356{height:57.781250pt;}
.h5_c00356{height:64.375000pt;}
.h1_c00356{height:938.202667pt;}
.h0_c00356{height:1122.666667pt;}
.w2_c00356{width:26.696000pt;}
.w1_c00356{width:575.470667pt;}
.w0_c00356{width:793.333333pt;}
.x0_c00356{left:0.000000pt;}
.x2_c00356{left:4.402667pt;}
.x1_c00356{left:108.930667pt;}
.x3_c00356{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e2e81dde64bb67ef31e3e167.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.113281;font-style:normal;font-weight:normal;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_3b0a484dfc9f9ce7c7b88b58.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00357;src:url('chunks/assets/font_47f9b38f1da376d05be4f60f.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:1.330566;font-style: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;}
.ls0_c00357{letter-spacing:0.000000px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00357{word-spacing:0.000000px;}
._3_c00357{margin-left:-5.342400px;}
._2_c00357{margin-left:-3.974400px;}
._6_c00357{margin-left:-2.664000px;}
._5_c00357{margin-left:-1.288800px;}
._0_c00357{width:1.584000px;}
._7_c00357{width:5.112000px;}
._4_c00357{width:25.149600px;}
._1_c00357{width:29.138400px;}
.fc0_c00357{color:rgb(0,0,0);}
.fs0_c00357{font-size:72.000000px;}
.y0_c00357{bottom:0.000000px;}
.ya_c00357{bottom:3.787500px;}
.y9_c00357{bottom:56.735596px;}
.y1_c00357{bottom:106.275000px;}
.y8_c00357{bottom:784.749000px;}
.y7_c00357{bottom:826.743000px;}
.y6_c00357{bottom:868.737000px;}
.y5_c00357{bottom:909.237000px;}
.y4_c00357{bottom:951.231000px;}
.y3_c00357{bottom:991.731000px;}
.y2_c00357{bottom:1033.725000px;}
.h4_c00357{height:19.800105px;}
.h3_c00357{height:64.546875px;}
.h2_c00357{height:65.003906px;}
.h5_c00357{height:72.421875px;}
.h1_c00357{height:1055.478000px;}
.h0_c00357{height:1263.000000px;}
.w2_c00357{width:30.031500px;}
.w1_c00357{width:647.404500px;}
.w0_c00357{width:892.500000px;}
.x0_c00357{left:0.000000px;}
.x2_c00357{left:4.953000px;}
.x1_c00357{left:122.547000px;}
.x3_c00357{left:734.908997px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls0_c00357{letter-spacing:0.000000pt;}
.ws0_c00357{word-spacing:0.000000pt;}
._3_c00357{margin-left:-4.748800pt;}
._2_c00357{margin-left:-3.532800pt;}
._6_c00357{margin-left:-2.368000pt;}
._5_c00357{margin-left:-1.145600pt;}
._0_c00357{width:1.408000pt;}
._7_c00357{width:4.544000pt;}
._4_c00357{width:22.355200pt;}
._1_c00357{width:25.900800pt;}
.fs0_c00357{font-size:64.000000pt;}
.y0_c00357{bottom:0.000000pt;}
.ya_c00357{bottom:3.366667pt;}
.y9_c00357{bottom:50.431641pt;}
.y1_c00357{bottom:94.466667pt;}
.y8_c00357{bottom:697.554667pt;}
.y7_c00357{bottom:734.882667pt;}
.y6_c00357{bottom:772.210667pt;}
.y5_c00357{bottom:808.210667pt;}
.y4_c00357{bottom:845.538667pt;}
.y3_c00357{bottom:881.538667pt;}
.y2_c00357{bottom:918.866667pt;}
.h4_c00357{height:17.600093pt;}
.h3_c00357{height:57.375000pt;}
.h2_c00357{height:57.781250pt;}
.h5_c00357{height:64.375000pt;}
.h1_c00357{height:938.202667pt;}
.h0_c00357{height:1122.666667pt;}
.w2_c00357{width:26.694667pt;}
.w1_c00357{width:575.470667pt;}
.w0_c00357{width:793.333333pt;}
.x0_c00357{left:0.000000pt;}
.x2_c00357{left:4.402667pt;}
.x1_c00357{left:108.930667pt;}
.x3_c00357{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b9b5aefd570d70a491d3b48.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.113281;font-style:normal;font-weight:normal;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_2be8175e19388ba54b3dab84.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00358;src:url('chunks/assets/font_509f4f7d074d1ebe54f54522.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:1.330566;font-style: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.014400px;}
.ls0_c00358{letter-spacing:0.000000px;}
.ls1_c00358{letter-spacing:0.014400px;}
.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:0.000000px;}
._6_c00358{margin-left:-5.342400px;}
._5_c00358{margin-left:-3.974400px;}
._0_c00358{margin-left:-2.664000px;}
._1_c00358{margin-left:-1.310400px;}
._b_c00358{width:1.224000px;}
._d_c00358{width:2.260800px;}
._c_c00358{width:3.290400px;}
._a_c00358{width:4.586400px;}
._2_c00358{width:6.840000px;}
._e_c00358{width:8.416800px;}
._3_c00358{width:12.074400px;}
._7_c00358{width:13.305600px;}
._9_c00358{width:14.457600px;}
._8_c00358{width:15.588000px;}
._4_c00358{width:17.258400px;}
.fc1_c00358{color:transparent;}
.fc0_c00358{color:rgb(0,0,0);}
.fs0_c00358{font-size:72.000000px;}
.y0_c00358{bottom:0.000000px;}
.y1c_c00358{bottom:3.787500px;}
.y1a_c00358{bottom:40.809000px;}
.y1b_c00358{bottom:56.735596px;}
.y19_c00358{bottom:81.309000px;}
.y1_c00358{bottom:106.275000px;}
.y18_c00358{bottom:123.303000px;}
.y17_c00358{bottom:163.803000px;}
.y16_c00358{bottom:205.797000px;}
.y15_c00358{bottom:247.791000px;}
.y14_c00358{bottom:288.291000px;}
.y13_c00358{bottom:330.285000px;}
.y12_c00358{bottom:370.785000px;}
.y11_c00358{bottom:412.779000px;}
.y10_c00358{bottom:454.773000px;}
.yf_c00358{bottom:495.273000px;}
.ye_c00358{bottom:537.267000px;}
.yd_c00358{bottom:577.767000px;}
.yc_c00358{bottom:619.761000px;}
.yb_c00358{bottom:661.755000px;}
.ya_c00358{bottom:702.255000px;}
.y9_c00358{bottom:744.249000px;}
.y8_c00358{bottom:784.749000px;}
.y7_c00358{bottom:826.743000px;}
.y6_c00358{bottom:868.737000px;}
.y5_c00358{bottom:909.237000px;}
.y4_c00358{bottom:951.231000px;}
.y3_c00358{bottom:991.731000px;}
.y2_c00358{bottom:1033.725000px;}
.h4_c00358{height:19.800105px;}
.h3_c00358{height:64.546875px;}
.h2_c00358{height:65.003906px;}
.h5_c00358{height:72.421875px;}
.h1_c00358{height:1055.478000px;}
.h0_c00358{height:1263.000000px;}
.w2_c00358{width:30.033000px;}
.w1_c00358{width:647.404500px;}
.w0_c00358{width:892.500000px;}
.x0_c00358{left:0.000000px;}
.x2_c00358{left:4.953000px;}
.x1_c00358{left:122.547000px;}
.x3_c00358{left:127.559509px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls2_c00358{letter-spacing:-0.012800pt;}
.ls0_c00358{letter-spacing:0.000000pt;}
.ls1_c00358{letter-spacing:0.012800pt;}
.ws0_c00358{word-spacing:0.000000pt;}
._6_c00358{margin-left:-4.748800pt;}
._5_c00358{margin-left:-3.532800pt;}
._0_c00358{margin-left:-2.368000pt;}
._1_c00358{margin-left:-1.164800pt;}
._b_c00358{width:1.088000pt;}
._d_c00358{width:2.009600pt;}
._c_c00358{width:2.924800pt;}
._a_c00358{width:4.076800pt;}
._2_c00358{width:6.080000pt;}
._e_c00358{width:7.481600pt;}
._3_c00358{width:10.732800pt;}
._7_c00358{width:11.827200pt;}
._9_c00358{width:12.851200pt;}
._8_c00358{width:13.856000pt;}
._4_c00358{width:15.340800pt;}
.fs0_c00358{font-size:64.000000pt;}
.y0_c00358{bottom:0.000000pt;}
.y1c_c00358{bottom:3.366667pt;}
.y1a_c00358{bottom:36.274667pt;}
.y1b_c00358{bottom:50.431641pt;}
.y19_c00358{bottom:72.274667pt;}
.y1_c00358{bottom:94.466667pt;}
.y18_c00358{bottom:109.602667pt;}
.y17_c00358{bottom:145.602667pt;}
.y16_c00358{bottom:182.930667pt;}
.y15_c00358{bottom:220.258667pt;}
.y14_c00358{bottom:256.258667pt;}
.y13_c00358{bottom:293.586667pt;}
.y12_c00358{bottom:329.586667pt;}
.y11_c00358{bottom:366.914667pt;}
.y10_c00358{bottom:404.242667pt;}
.yf_c00358{bottom:440.242667pt;}
.ye_c00358{bottom:477.570667pt;}
.yd_c00358{bottom:513.570667pt;}
.yc_c00358{bottom:550.898667pt;}
.yb_c00358{bottom:588.226667pt;}
.ya_c00358{bottom:624.226667pt;}
.y9_c00358{bottom:661.554667pt;}
.y8_c00358{bottom:697.554667pt;}
.y7_c00358{bottom:734.882667pt;}
.y6_c00358{bottom:772.210667pt;}
.y5_c00358{bottom:808.210667pt;}
.y4_c00358{bottom:845.538667pt;}
.y3_c00358{bottom:881.538667pt;}
.y2_c00358{bottom:918.866667pt;}
.h4_c00358{height:17.600093pt;}
.h3_c00358{height:57.375000pt;}
.h2_c00358{height:57.781250pt;}
.h5_c00358{height:64.375000pt;}
.h1_c00358{height:938.202667pt;}
.h0_c00358{height:1122.666667pt;}
.w2_c00358{width:26.696000pt;}
.w1_c00358{width:575.470667pt;}
.w0_c00358{width:793.333333pt;}
.x0_c00358{left:0.000000pt;}
.x2_c00358{left:4.402667pt;}
.x1_c00358{left:108.930667pt;}
.x3_c00358{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1136cd9ea797a04043473fd7.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.113281;font-style:normal;font-weight:normal;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_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00359;src:url('chunks/assets/font_21ed60efed3608a9a4aa80cc.woff2')format("woff");}.ff3_c00359{font-family:ff3_c00359;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00359;src:url('chunks/assets/font_1ec5f0441c314458361d6012.woff2')format("woff");}.ff4_c00359{font-family:ff4_c00359;line-height:1.330566;font-style: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;}
.ls2_c00359{letter-spacing:-0.014400px;}
.ls1_c00359{letter-spacing:0.000000px;}
.ls0_c00359{letter-spacing:2.289600px;}
.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;}
}
.ws0_c00359{word-spacing:0.000000px;}
._9_c00359{margin-left:-6.264000px;}
._4_c00359{margin-left:-2.304000px;}
._7_c00359{margin-left:-1.296000px;}
._10_c00359{width:1.288800px;}
._e_c00359{width:2.440800px;}
._0_c00359{width:4.032000px;}
._c_c00359{width:5.832000px;}
._11_c00359{width:6.897600px;}
._2_c00359{width:8.042400px;}
._1_c00359{width:9.273600px;}
._13_c00359{width:10.800000px;}
._a_c00359{width:13.392000px;}
._12_c00359{width:14.724000px;}
._d_c00359{width:17.251200px;}
._b_c00359{width:18.820800px;}
._f_c00359{width:21.585600px;}
._3_c00359{width:28.411200px;}
._6_c00359{width:30.888000px;}
._8_c00359{width:33.552000px;}
._5_c00359{width:34.848000px;}
.fc0_c00359{color:rgb(0,0,0);}
.fs0_c00359{font-size:72.000000px;}
.y0_c00359{bottom:0.000000px;}
.y1c_c00359{bottom:3.787500px;}
.y1a_c00359{bottom:40.809000px;}
.y1b_c00359{bottom:56.735596px;}
.y19_c00359{bottom:81.309000px;}
.y1_c00359{bottom:106.275000px;}
.y18_c00359{bottom:123.303000px;}
.y17_c00359{bottom:163.803000px;}
.y16_c00359{bottom:205.797000px;}
.y15_c00359{bottom:247.791000px;}
.y14_c00359{bottom:288.291000px;}
.y13_c00359{bottom:330.285000px;}
.y12_c00359{bottom:370.785000px;}
.y11_c00359{bottom:412.779000px;}
.y10_c00359{bottom:454.773000px;}
.yf_c00359{bottom:495.273000px;}
.ye_c00359{bottom:537.267000px;}
.yd_c00359{bottom:577.767000px;}
.yc_c00359{bottom:619.761000px;}
.yb_c00359{bottom:661.755000px;}
.ya_c00359{bottom:702.255000px;}
.y9_c00359{bottom:744.249000px;}
.y8_c00359{bottom:784.749000px;}
.y7_c00359{bottom:826.743000px;}
.y6_c00359{bottom:868.737000px;}
.y5_c00359{bottom:909.237000px;}
.y4_c00359{bottom:951.231000px;}
.y3_c00359{bottom:991.731000px;}
.y2_c00359{bottom:1033.725000px;}
.h4_c00359{height:19.800105px;}
.h3_c00359{height:64.546875px;}
.h2_c00359{height:65.003906px;}
.h5_c00359{height:72.421875px;}
.h1_c00359{height:1055.478000px;}
.h0_c00359{height:1263.000000px;}
.w2_c00359{width:30.031500px;}
.w1_c00359{width:647.404500px;}
.w0_c00359{width:892.500000px;}
.x0_c00359{left:0.000000px;}
.x2_c00359{left:4.953000px;}
.x1_c00359{left:122.547000px;}
.x3_c00359{left:734.908997px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls2_c00359{letter-spacing:-0.012800pt;}
.ls1_c00359{letter-spacing:0.000000pt;}
.ls0_c00359{letter-spacing:2.035200pt;}
.ws0_c00359{word-spacing:0.000000pt;}
._9_c00359{margin-left:-5.568000pt;}
._4_c00359{margin-left:-2.048000pt;}
._7_c00359{margin-left:-1.152000pt;}
._10_c00359{width:1.145600pt;}
._e_c00359{width:2.169600pt;}
._0_c00359{width:3.584000pt;}
._c_c00359{width:5.184000pt;}
._11_c00359{width:6.131200pt;}
._2_c00359{width:7.148800pt;}
._1_c00359{width:8.243200pt;}
._13_c00359{width:9.600000pt;}
._a_c00359{width:11.904000pt;}
._12_c00359{width:13.088000pt;}
._d_c00359{width:15.334400pt;}
._b_c00359{width:16.729600pt;}
._f_c00359{width:19.187200pt;}
._3_c00359{width:25.254400pt;}
._6_c00359{width:27.456000pt;}
._8_c00359{width:29.824000pt;}
._5_c00359{width:30.976000pt;}
.fs0_c00359{font-size:64.000000pt;}
.y0_c00359{bottom:0.000000pt;}
.y1c_c00359{bottom:3.366667pt;}
.y1a_c00359{bottom:36.274667pt;}
.y1b_c00359{bottom:50.431641pt;}
.y19_c00359{bottom:72.274667pt;}
.y1_c00359{bottom:94.466667pt;}
.y18_c00359{bottom:109.602667pt;}
.y17_c00359{bottom:145.602667pt;}
.y16_c00359{bottom:182.930667pt;}
.y15_c00359{bottom:220.258667pt;}
.y14_c00359{bottom:256.258667pt;}
.y13_c00359{bottom:293.586667pt;}
.y12_c00359{bottom:329.586667pt;}
.y11_c00359{bottom:366.914667pt;}
.y10_c00359{bottom:404.242667pt;}
.yf_c00359{bottom:440.242667pt;}
.ye_c00359{bottom:477.570667pt;}
.yd_c00359{bottom:513.570667pt;}
.yc_c00359{bottom:550.898667pt;}
.yb_c00359{bottom:588.226667pt;}
.ya_c00359{bottom:624.226667pt;}
.y9_c00359{bottom:661.554667pt;}
.y8_c00359{bottom:697.554667pt;}
.y7_c00359{bottom:734.882667pt;}
.y6_c00359{bottom:772.210667pt;}
.y5_c00359{bottom:808.210667pt;}
.y4_c00359{bottom:845.538667pt;}
.y3_c00359{bottom:881.538667pt;}
.y2_c00359{bottom:918.866667pt;}
.h4_c00359{height:17.600093pt;}
.h3_c00359{height:57.375000pt;}
.h2_c00359{height:57.781250pt;}
.h5_c00359{height:64.375000pt;}
.h1_c00359{height:938.202667pt;}
.h0_c00359{height:1122.666667pt;}
.w2_c00359{width:26.694667pt;}
.w1_c00359{width:575.470667pt;}
.w0_c00359{width:793.333333pt;}
.x0_c00359{left:0.000000pt;}
.x2_c00359{left:4.402667pt;}
.x1_c00359{left:108.930667pt;}
.x3_c00359{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_156755c5bb8159e0e889f26d.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00360;src:url('chunks/assets/font_8140b8d7811458e0305cccd5.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00360;src:url('chunks/assets/font_1ec5f0441c314458361d6012.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:1.330566;font-style: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;}
.ls1_c00360{letter-spacing:0.000000px;}
.ls0_c00360{letter-spacing:2.412000px;}
.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:0.000000px;}
._6_c00360{margin-left:-6.192000px;}
._1_c00360{margin-left:-4.507200px;}
._11_c00360{margin-left:-3.110400px;}
._5_c00360{margin-left:-1.620000px;}
._8_c00360{width:1.821600px;}
._10_c00360{width:3.124800px;}
._7_c00360{width:4.176000px;}
._3_c00360{width:6.048000px;}
._12_c00360{width:7.214400px;}
._4_c00360{width:8.424000px;}
._9_c00360{width:9.820800px;}
._c_c00360{width:13.644000px;}
._0_c00360{width:17.920800px;}
._2_c00360{width:18.979200px;}
._b_c00360{width:21.686400px;}
._a_c00360{width:24.818400px;}
._e_c00360{width:32.724000px;}
._d_c00360{width:33.948000px;}
._f_c00360{width:34.956000px;}
.fc0_c00360{color:rgb(0,0,0);}
.fs0_c00360{font-size:72.000000px;}
.y0_c00360{bottom:0.000000px;}
.y1c_c00360{bottom:3.787500px;}
.y1a_c00360{bottom:40.809000px;}
.y1b_c00360{bottom:56.735596px;}
.y19_c00360{bottom:81.309000px;}
.y1_c00360{bottom:106.275000px;}
.y18_c00360{bottom:123.303000px;}
.y17_c00360{bottom:163.803000px;}
.y16_c00360{bottom:205.797000px;}
.y15_c00360{bottom:247.791000px;}
.y14_c00360{bottom:288.291000px;}
.y13_c00360{bottom:330.285000px;}
.y12_c00360{bottom:370.785000px;}
.y11_c00360{bottom:412.779000px;}
.y10_c00360{bottom:454.773000px;}
.yf_c00360{bottom:495.273000px;}
.ye_c00360{bottom:537.267000px;}
.yd_c00360{bottom:577.767000px;}
.yc_c00360{bottom:619.761000px;}
.yb_c00360{bottom:661.755000px;}
.ya_c00360{bottom:702.255000px;}
.y9_c00360{bottom:744.249000px;}
.y8_c00360{bottom:784.749000px;}
.y7_c00360{bottom:826.743000px;}
.y6_c00360{bottom:868.737000px;}
.y5_c00360{bottom:909.237000px;}
.y4_c00360{bottom:951.231000px;}
.y3_c00360{bottom:991.731000px;}
.y2_c00360{bottom:1033.725000px;}
.h4_c00360{height:19.800105px;}
.h2_c00360{height:64.546875px;}
.h3_c00360{height:65.003906px;}
.h5_c00360{height:72.421875px;}
.h1_c00360{height:1055.478000px;}
.h0_c00360{height:1263.000000px;}
.w2_c00360{width:30.033000px;}
.w1_c00360{width:647.404500px;}
.w0_c00360{width:892.500000px;}
.x0_c00360{left:0.000000px;}
.x2_c00360{left:4.953000px;}
.x1_c00360{left:122.547000px;}
.x3_c00360{left:127.559509px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls1_c00360{letter-spacing:0.000000pt;}
.ls0_c00360{letter-spacing:2.144000pt;}
.ws0_c00360{word-spacing:0.000000pt;}
._6_c00360{margin-left:-5.504000pt;}
._1_c00360{margin-left:-4.006400pt;}
._11_c00360{margin-left:-2.764800pt;}
._5_c00360{margin-left:-1.440000pt;}
._8_c00360{width:1.619200pt;}
._10_c00360{width:2.777600pt;}
._7_c00360{width:3.712000pt;}
._3_c00360{width:5.376000pt;}
._12_c00360{width:6.412800pt;}
._4_c00360{width:7.488000pt;}
._9_c00360{width:8.729600pt;}
._c_c00360{width:12.128000pt;}
._0_c00360{width:15.929600pt;}
._2_c00360{width:16.870400pt;}
._b_c00360{width:19.276800pt;}
._a_c00360{width:22.060800pt;}
._e_c00360{width:29.088000pt;}
._d_c00360{width:30.176000pt;}
._f_c00360{width:31.072000pt;}
.fs0_c00360{font-size:64.000000pt;}
.y0_c00360{bottom:0.000000pt;}
.y1c_c00360{bottom:3.366667pt;}
.y1a_c00360{bottom:36.274667pt;}
.y1b_c00360{bottom:50.431641pt;}
.y19_c00360{bottom:72.274667pt;}
.y1_c00360{bottom:94.466667pt;}
.y18_c00360{bottom:109.602667pt;}
.y17_c00360{bottom:145.602667pt;}
.y16_c00360{bottom:182.930667pt;}
.y15_c00360{bottom:220.258667pt;}
.y14_c00360{bottom:256.258667pt;}
.y13_c00360{bottom:293.586667pt;}
.y12_c00360{bottom:329.586667pt;}
.y11_c00360{bottom:366.914667pt;}
.y10_c00360{bottom:404.242667pt;}
.yf_c00360{bottom:440.242667pt;}
.ye_c00360{bottom:477.570667pt;}
.yd_c00360{bottom:513.570667pt;}
.yc_c00360{bottom:550.898667pt;}
.yb_c00360{bottom:588.226667pt;}
.ya_c00360{bottom:624.226667pt;}
.y9_c00360{bottom:661.554667pt;}
.y8_c00360{bottom:697.554667pt;}
.y7_c00360{bottom:734.882667pt;}
.y6_c00360{bottom:772.210667pt;}
.y5_c00360{bottom:808.210667pt;}
.y4_c00360{bottom:845.538667pt;}
.y3_c00360{bottom:881.538667pt;}
.y2_c00360{bottom:918.866667pt;}
.h4_c00360{height:17.600093pt;}
.h2_c00360{height:57.375000pt;}
.h3_c00360{height:57.781250pt;}
.h5_c00360{height:64.375000pt;}
.h1_c00360{height:938.202667pt;}
.h0_c00360{height:1122.666667pt;}
.w2_c00360{width:26.696000pt;}
.w1_c00360{width:575.470667pt;}
.w0_c00360{width:793.333333pt;}
.x0_c00360{left:0.000000pt;}
.x2_c00360{left:4.402667pt;}
.x1_c00360{left:108.930667pt;}
.x3_c00360{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b0776db99ea6347793e0fb3c.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.113281;font-style:normal;font-weight:normal;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_27bb129c5f1b1c232fe7a681.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00361;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00361;src:url('chunks/assets/font_c2da5fabfbc25faa86de17d5.woff2')format("woff");}.ff4_c00361{font-family:ff4_c00361;line-height:1.330566;font-style: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;}
.ls0_c00361{letter-spacing:0.000000px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00361{word-spacing:0.000000px;}
._c_c00361{margin-left:-5.356800px;}
._b_c00361{margin-left:-3.981600px;}
._3_c00361{width:1.555200px;}
._1_c00361{width:2.980800px;}
._9_c00361{width:4.039200px;}
._d_c00361{width:5.544000px;}
._7_c00361{width:6.926400px;}
._0_c00361{width:8.848800px;}
._6_c00361{width:10.339200px;}
._8_c00361{width:11.361600px;}
._2_c00361{width:12.628800px;}
._e_c00361{width:13.860000px;}
._5_c00361{width:16.927200px;}
._4_c00361{width:18.691200px;}
._a_c00361{width:30.484800px;}
.fc0_c00361{color:rgb(0,0,0);}
.fs0_c00361{font-size:72.000000px;}
.y0_c00361{bottom:0.000000px;}
.y1b_c00361{bottom:3.787500px;}
.y1a_c00361{bottom:56.735596px;}
.y19_c00361{bottom:81.309000px;}
.y1_c00361{bottom:106.275000px;}
.y18_c00361{bottom:123.303000px;}
.y17_c00361{bottom:163.803000px;}
.y16_c00361{bottom:205.797000px;}
.y15_c00361{bottom:247.791000px;}
.y14_c00361{bottom:288.291000px;}
.y13_c00361{bottom:330.285000px;}
.y12_c00361{bottom:370.785000px;}
.y11_c00361{bottom:412.779000px;}
.y10_c00361{bottom:454.773000px;}
.yf_c00361{bottom:495.273000px;}
.ye_c00361{bottom:537.267000px;}
.yd_c00361{bottom:577.767000px;}
.yc_c00361{bottom:619.761000px;}
.yb_c00361{bottom:661.755000px;}
.ya_c00361{bottom:702.255000px;}
.y9_c00361{bottom:744.249000px;}
.y8_c00361{bottom:784.749000px;}
.y7_c00361{bottom:826.743000px;}
.y6_c00361{bottom:868.737000px;}
.y5_c00361{bottom:909.237000px;}
.y4_c00361{bottom:951.231000px;}
.y3_c00361{bottom:991.731000px;}
.y2_c00361{bottom:1033.725000px;}
.h4_c00361{height:19.800105px;}
.h3_c00361{height:64.546875px;}
.h2_c00361{height:65.003906px;}
.h5_c00361{height:72.421875px;}
.h1_c00361{height:1055.478000px;}
.h0_c00361{height:1263.000000px;}
.w2_c00361{width:30.031500px;}
.w1_c00361{width:647.404500px;}
.w0_c00361{width:892.500000px;}
.x0_c00361{left:0.000000px;}
.x2_c00361{left:4.953000px;}
.x1_c00361{left:122.547000px;}
.x3_c00361{left:734.908997px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls0_c00361{letter-spacing:0.000000pt;}
.ws0_c00361{word-spacing:0.000000pt;}
._c_c00361{margin-left:-4.761600pt;}
._b_c00361{margin-left:-3.539200pt;}
._3_c00361{width:1.382400pt;}
._1_c00361{width:2.649600pt;}
._9_c00361{width:3.590400pt;}
._d_c00361{width:4.928000pt;}
._7_c00361{width:6.156800pt;}
._0_c00361{width:7.865600pt;}
._6_c00361{width:9.190400pt;}
._8_c00361{width:10.099200pt;}
._2_c00361{width:11.225600pt;}
._e_c00361{width:12.320000pt;}
._5_c00361{width:15.046400pt;}
._4_c00361{width:16.614400pt;}
._a_c00361{width:27.097600pt;}
.fs0_c00361{font-size:64.000000pt;}
.y0_c00361{bottom:0.000000pt;}
.y1b_c00361{bottom:3.366667pt;}
.y1a_c00361{bottom:50.431641pt;}
.y19_c00361{bottom:72.274667pt;}
.y1_c00361{bottom:94.466667pt;}
.y18_c00361{bottom:109.602667pt;}
.y17_c00361{bottom:145.602667pt;}
.y16_c00361{bottom:182.930667pt;}
.y15_c00361{bottom:220.258667pt;}
.y14_c00361{bottom:256.258667pt;}
.y13_c00361{bottom:293.586667pt;}
.y12_c00361{bottom:329.586667pt;}
.y11_c00361{bottom:366.914667pt;}
.y10_c00361{bottom:404.242667pt;}
.yf_c00361{bottom:440.242667pt;}
.ye_c00361{bottom:477.570667pt;}
.yd_c00361{bottom:513.570667pt;}
.yc_c00361{bottom:550.898667pt;}
.yb_c00361{bottom:588.226667pt;}
.ya_c00361{bottom:624.226667pt;}
.y9_c00361{bottom:661.554667pt;}
.y8_c00361{bottom:697.554667pt;}
.y7_c00361{bottom:734.882667pt;}
.y6_c00361{bottom:772.210667pt;}
.y5_c00361{bottom:808.210667pt;}
.y4_c00361{bottom:845.538667pt;}
.y3_c00361{bottom:881.538667pt;}
.y2_c00361{bottom:918.866667pt;}
.h4_c00361{height:17.600093pt;}
.h3_c00361{height:57.375000pt;}
.h2_c00361{height:57.781250pt;}
.h5_c00361{height:64.375000pt;}
.h1_c00361{height:938.202667pt;}
.h0_c00361{height:1122.666667pt;}
.w2_c00361{width:26.694667pt;}
.w1_c00361{width:575.470667pt;}
.w0_c00361{width:793.333333pt;}
.x0_c00361{left:0.000000pt;}
.x2_c00361{left:4.402667pt;}
.x1_c00361{left:108.930667pt;}
.x3_c00361{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e14b88c126635c37b020a669.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.113281;font-style:normal;font-weight:normal;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_3c75d658a65fd57400a9d077.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00362;src:url('chunks/assets/font_81330e392053145cf4f862d5.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:1.330566;font-style: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;}
.ls3_c00362{letter-spacing:-0.014400px;}
.ls2_c00362{letter-spacing:0.000000px;}
.ls0_c00362{letter-spacing:0.374400px;}
.ls1_c00362{letter-spacing:3.823200px;}
.sc__c00362{text-shadow:none;}
.sc0_c00362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00362{-webkit-text-stroke:0px transparent;}
.sc0_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00362{word-spacing:0.000000px;}
._a_c00362{margin-left:-7.776000px;}
._6_c00362{margin-left:-4.478400px;}
._4_c00362{margin-left:-2.412000px;}
._8_c00362{margin-left:-1.296000px;}
._5_c00362{width:1.562400px;}
._11_c00362{width:3.182400px;}
._3_c00362{width:4.464000px;}
._14_c00362{width:5.508000px;}
._2_c00362{width:7.135200px;}
._1_c00362{width:8.438400px;}
._10_c00362{width:10.008000px;}
._f_c00362{width:11.275200px;}
._e_c00362{width:12.369600px;}
._12_c00362{width:14.284800px;}
._c_c00362{width:22.168800px;}
._d_c00362{width:23.724000px;}
._b_c00362{width:24.732000px;}
._13_c00362{width:27.288000px;}
._7_c00362{width:30.758400px;}
._9_c00362{width:34.012800px;}
._0_c00362{width:35.424000px;}
.fc0_c00362{color:rgb(0,0,0);}
.fs0_c00362{font-size:72.000000px;}
.y0_c00362{bottom:0.000000px;}
.y1c_c00362{bottom:3.787500px;}
.y1a_c00362{bottom:40.809000px;}
.y1b_c00362{bottom:56.735596px;}
.y19_c00362{bottom:81.309000px;}
.y1_c00362{bottom:106.275000px;}
.y18_c00362{bottom:123.303000px;}
.y17_c00362{bottom:163.803000px;}
.y16_c00362{bottom:205.797000px;}
.y15_c00362{bottom:247.791000px;}
.y14_c00362{bottom:288.291000px;}
.y13_c00362{bottom:330.285000px;}
.y12_c00362{bottom:370.785000px;}
.y11_c00362{bottom:412.779000px;}
.y10_c00362{bottom:454.773000px;}
.yf_c00362{bottom:495.273000px;}
.ye_c00362{bottom:537.267000px;}
.yd_c00362{bottom:577.767000px;}
.yc_c00362{bottom:619.761000px;}
.yb_c00362{bottom:661.755000px;}
.ya_c00362{bottom:702.255000px;}
.y9_c00362{bottom:744.249000px;}
.y8_c00362{bottom:784.749000px;}
.y7_c00362{bottom:826.743000px;}
.y6_c00362{bottom:868.737000px;}
.y5_c00362{bottom:909.237000px;}
.y4_c00362{bottom:951.231000px;}
.y3_c00362{bottom:991.731000px;}
.y2_c00362{bottom:1033.725000px;}
.h4_c00362{height:19.800105px;}
.h3_c00362{height:64.546875px;}
.h2_c00362{height:65.003906px;}
.h5_c00362{height:72.421875px;}
.h1_c00362{height:1055.478000px;}
.h0_c00362{height:1263.000000px;}
.w2_c00362{width:30.033000px;}
.w1_c00362{width:647.404500px;}
.w0_c00362{width:892.500000px;}
.x0_c00362{left:0.000000px;}
.x2_c00362{left:4.953000px;}
.x1_c00362{left:122.547000px;}
.x3_c00362{left:127.559509px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls3_c00362{letter-spacing:-0.012800pt;}
.ls2_c00362{letter-spacing:0.000000pt;}
.ls0_c00362{letter-spacing:0.332800pt;}
.ls1_c00362{letter-spacing:3.398400pt;}
.ws0_c00362{word-spacing:0.000000pt;}
._a_c00362{margin-left:-6.912000pt;}
._6_c00362{margin-left:-3.980800pt;}
._4_c00362{margin-left:-2.144000pt;}
._8_c00362{margin-left:-1.152000pt;}
._5_c00362{width:1.388800pt;}
._11_c00362{width:2.828800pt;}
._3_c00362{width:3.968000pt;}
._14_c00362{width:4.896000pt;}
._2_c00362{width:6.342400pt;}
._1_c00362{width:7.500800pt;}
._10_c00362{width:8.896000pt;}
._f_c00362{width:10.022400pt;}
._e_c00362{width:10.995200pt;}
._12_c00362{width:12.697600pt;}
._c_c00362{width:19.705600pt;}
._d_c00362{width:21.088000pt;}
._b_c00362{width:21.984000pt;}
._13_c00362{width:24.256000pt;}
._7_c00362{width:27.340800pt;}
._9_c00362{width:30.233600pt;}
._0_c00362{width:31.488000pt;}
.fs0_c00362{font-size:64.000000pt;}
.y0_c00362{bottom:0.000000pt;}
.y1c_c00362{bottom:3.366667pt;}
.y1a_c00362{bottom:36.274667pt;}
.y1b_c00362{bottom:50.431641pt;}
.y19_c00362{bottom:72.274667pt;}
.y1_c00362{bottom:94.466667pt;}
.y18_c00362{bottom:109.602667pt;}
.y17_c00362{bottom:145.602667pt;}
.y16_c00362{bottom:182.930667pt;}
.y15_c00362{bottom:220.258667pt;}
.y14_c00362{bottom:256.258667pt;}
.y13_c00362{bottom:293.586667pt;}
.y12_c00362{bottom:329.586667pt;}
.y11_c00362{bottom:366.914667pt;}
.y10_c00362{bottom:404.242667pt;}
.yf_c00362{bottom:440.242667pt;}
.ye_c00362{bottom:477.570667pt;}
.yd_c00362{bottom:513.570667pt;}
.yc_c00362{bottom:550.898667pt;}
.yb_c00362{bottom:588.226667pt;}
.ya_c00362{bottom:624.226667pt;}
.y9_c00362{bottom:661.554667pt;}
.y8_c00362{bottom:697.554667pt;}
.y7_c00362{bottom:734.882667pt;}
.y6_c00362{bottom:772.210667pt;}
.y5_c00362{bottom:808.210667pt;}
.y4_c00362{bottom:845.538667pt;}
.y3_c00362{bottom:881.538667pt;}
.y2_c00362{bottom:918.866667pt;}
.h4_c00362{height:17.600093pt;}
.h3_c00362{height:57.375000pt;}
.h2_c00362{height:57.781250pt;}
.h5_c00362{height:64.375000pt;}
.h1_c00362{height:938.202667pt;}
.h0_c00362{height:1122.666667pt;}
.w2_c00362{width:26.696000pt;}
.w1_c00362{width:575.470667pt;}
.w0_c00362{width:793.333333pt;}
.x0_c00362{left:0.000000pt;}
.x2_c00362{left:4.402667pt;}
.x1_c00362{left:108.930667pt;}
.x3_c00362{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00363;src:url('chunks/assets/font_cf70d71e0e3be7a463bbe5b3.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00363;src:url('chunks/assets/font_b785f167aa2133337dbb5a5c.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00363;src:url('chunks/assets/font_21be95662bfb70c1fa03cd7e.woff2')format("woff");}.ff4_c00363{font-family:ff4_c00363;line-height:1.330566;font-style: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;}
.ls1_c00363{letter-spacing:0.000000px;}
.ls0_c00363{letter-spacing:2549.376000px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00363{word-spacing:0.000000px;}
._8_c00363{margin-left:-2.995200px;}
._6_c00363{width:1.274400px;}
._3_c00363{width:3.117600px;}
._2_c00363{width:6.465600px;}
._7_c00363{width:8.251200px;}
._0_c00363{width:9.856800px;}
._1_c00363{width:11.599200px;}
._4_c00363{width:16.070400px;}
._5_c00363{width:18.057600px;}
.fc1_c00363{color:transparent;}
.fc0_c00363{color:rgb(0,0,0);}
.fs0_c00363{font-size:72.000000px;}
.y0_c00363{bottom:0.000000px;}
.yf_c00363{bottom:3.787500px;}
.yd_c00363{bottom:30.172500px;}
.ye_c00363{bottom:56.735596px;}
.yc_c00363{bottom:70.672500px;}
.y1_c00363{bottom:80.863500px;}
.yb_c00363{bottom:112.666500px;}
.ya_c00363{bottom:154.660500px;}
.y9_c00363{bottom:195.160500px;}
.y8_c00363{bottom:237.154500px;}
.y7_c00363{bottom:277.654500px;}
.y6_c00363{bottom:319.648500px;}
.y5_c00363{bottom:361.642500px;}
.y4_c00363{bottom:402.142500px;}
.y3_c00363{bottom:444.136500px;}
.y2_c00363{bottom:484.636500px;}
.h3_c00363{height:19.800105px;}
.h2_c00363{height:65.003906px;}
.h4_c00363{height:72.421875px;}
.h1_c00363{height:1080.888000px;}
.h0_c00363{height:1263.000000px;}
.w3_c00363{width:30.031500px;}
.w1_c00363{width:637.350000px;}
.w2_c00363{width:658.159500px;}
.w0_c00363{width:892.500000px;}
.x0_c00363{left:0.000000px;}
.x3_c00363{left:4.953000px;}
.x2_c00363{left:122.547000px;}
.x1_c00363{left:127.575000px;}
.x4_c00363{left:734.908997px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls1_c00363{letter-spacing:0.000000pt;}
.ls0_c00363{letter-spacing:2266.112000pt;}
.ws0_c00363{word-spacing:0.000000pt;}
._8_c00363{margin-left:-2.662400pt;}
._6_c00363{width:1.132800pt;}
._3_c00363{width:2.771200pt;}
._2_c00363{width:5.747200pt;}
._7_c00363{width:7.334400pt;}
._0_c00363{width:8.761600pt;}
._1_c00363{width:10.310400pt;}
._4_c00363{width:14.284800pt;}
._5_c00363{width:16.051200pt;}
.fs0_c00363{font-size:64.000000pt;}
.y0_c00363{bottom:0.000000pt;}
.yf_c00363{bottom:3.366667pt;}
.yd_c00363{bottom:26.820000pt;}
.ye_c00363{bottom:50.431641pt;}
.yc_c00363{bottom:62.820000pt;}
.y1_c00363{bottom:71.878667pt;}
.yb_c00363{bottom:100.148000pt;}
.ya_c00363{bottom:137.476000pt;}
.y9_c00363{bottom:173.476000pt;}
.y8_c00363{bottom:210.804000pt;}
.y7_c00363{bottom:246.804000pt;}
.y6_c00363{bottom:284.132000pt;}
.y5_c00363{bottom:321.460000pt;}
.y4_c00363{bottom:357.460000pt;}
.y3_c00363{bottom:394.788000pt;}
.y2_c00363{bottom:430.788000pt;}
.h3_c00363{height:17.600093pt;}
.h2_c00363{height:57.781250pt;}
.h4_c00363{height:64.375000pt;}
.h1_c00363{height:960.789333pt;}
.h0_c00363{height:1122.666667pt;}
.w3_c00363{width:26.694667pt;}
.w1_c00363{width:566.533333pt;}
.w2_c00363{width:585.030667pt;}
.w0_c00363{width:793.333333pt;}
.x0_c00363{left:0.000000pt;}
.x3_c00363{left:4.402667pt;}
.x2_c00363{left:108.930667pt;}
.x1_c00363{left:113.400000pt;}
.x4_c00363{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c1c84939f97f8f0ecf619a72.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00364;src:url('chunks/assets/font_64a17b93a7d230c85ddbabc2.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00364;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00364;src:url('chunks/assets/font_92c3097b088fb9275f4ef7f8.woff2')format("woff");}.ff4_c00364{font-family:ff4_c00364;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00364{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00364{vertical-align:0.000000px;}
.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;}
}
.ws0_c00364{word-spacing:0.000000px;}
._a_c00364{margin-left:-5.342400px;}
._2_c00364{margin-left:-3.960000px;}
._e_c00364{margin-left:-2.642400px;}
._b_c00364{margin-left:-1.310400px;}
._5_c00364{width:1.778400px;}
._4_c00364{width:2.894400px;}
._1_c00364{width:4.017600px;}
._0_c00364{width:5.904000px;}
._7_c00364{width:7.164000px;}
._3_c00364{width:8.452800px;}
._9_c00364{width:10.389600px;}
._6_c00364{width:17.064000px;}
._8_c00364{width:18.115200px;}
._d_c00364{width:25.092000px;}
._c_c00364{width:29.138400px;}
.fc0_c00364{color:rgb(0,0,0);}
.fs0_c00364{font-size:72.000000px;}
.y0_c00364{bottom:0.000000px;}
.y1b_c00364{bottom:3.787500px;}
.y1a_c00364{bottom:56.735596px;}
.y19_c00364{bottom:81.309000px;}
.y1_c00364{bottom:106.275000px;}
.y18_c00364{bottom:123.303000px;}
.y17_c00364{bottom:163.803000px;}
.y16_c00364{bottom:205.797000px;}
.y15_c00364{bottom:247.791000px;}
.y14_c00364{bottom:288.291000px;}
.y13_c00364{bottom:330.285000px;}
.y12_c00364{bottom:370.785000px;}
.y11_c00364{bottom:412.779000px;}
.y10_c00364{bottom:454.773000px;}
.yf_c00364{bottom:495.273000px;}
.ye_c00364{bottom:537.267000px;}
.yd_c00364{bottom:577.767000px;}
.yc_c00364{bottom:619.761000px;}
.yb_c00364{bottom:661.755000px;}
.ya_c00364{bottom:702.255000px;}
.y9_c00364{bottom:744.249000px;}
.y8_c00364{bottom:784.749000px;}
.y7_c00364{bottom:826.743000px;}
.y6_c00364{bottom:868.737000px;}
.y5_c00364{bottom:909.237000px;}
.y4_c00364{bottom:951.231000px;}
.y3_c00364{bottom:991.731000px;}
.y2_c00364{bottom:1033.725000px;}
.h4_c00364{height:19.800105px;}
.h3_c00364{height:64.546875px;}
.h2_c00364{height:65.003906px;}
.h5_c00364{height:72.421875px;}
.h1_c00364{height:1055.478000px;}
.h0_c00364{height:1263.000000px;}
.w2_c00364{width:30.033000px;}
.w1_c00364{width:647.404500px;}
.w0_c00364{width:892.500000px;}
.x0_c00364{left:0.000000px;}
.x2_c00364{left:4.953000px;}
.x1_c00364{left:122.547000px;}
.x3_c00364{left:127.559509px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls0_c00364{letter-spacing:0.000000pt;}
.ws0_c00364{word-spacing:0.000000pt;}
._a_c00364{margin-left:-4.748800pt;}
._2_c00364{margin-left:-3.520000pt;}
._e_c00364{margin-left:-2.348800pt;}
._b_c00364{margin-left:-1.164800pt;}
._5_c00364{width:1.580800pt;}
._4_c00364{width:2.572800pt;}
._1_c00364{width:3.571200pt;}
._0_c00364{width:5.248000pt;}
._7_c00364{width:6.368000pt;}
._3_c00364{width:7.513600pt;}
._9_c00364{width:9.235200pt;}
._6_c00364{width:15.168000pt;}
._8_c00364{width:16.102400pt;}
._d_c00364{width:22.304000pt;}
._c_c00364{width:25.900800pt;}
.fs0_c00364{font-size:64.000000pt;}
.y0_c00364{bottom:0.000000pt;}
.y1b_c00364{bottom:3.366667pt;}
.y1a_c00364{bottom:50.431641pt;}
.y19_c00364{bottom:72.274667pt;}
.y1_c00364{bottom:94.466667pt;}
.y18_c00364{bottom:109.602667pt;}
.y17_c00364{bottom:145.602667pt;}
.y16_c00364{bottom:182.930667pt;}
.y15_c00364{bottom:220.258667pt;}
.y14_c00364{bottom:256.258667pt;}
.y13_c00364{bottom:293.586667pt;}
.y12_c00364{bottom:329.586667pt;}
.y11_c00364{bottom:366.914667pt;}
.y10_c00364{bottom:404.242667pt;}
.yf_c00364{bottom:440.242667pt;}
.ye_c00364{bottom:477.570667pt;}
.yd_c00364{bottom:513.570667pt;}
.yc_c00364{bottom:550.898667pt;}
.yb_c00364{bottom:588.226667pt;}
.ya_c00364{bottom:624.226667pt;}
.y9_c00364{bottom:661.554667pt;}
.y8_c00364{bottom:697.554667pt;}
.y7_c00364{bottom:734.882667pt;}
.y6_c00364{bottom:772.210667pt;}
.y5_c00364{bottom:808.210667pt;}
.y4_c00364{bottom:845.538667pt;}
.y3_c00364{bottom:881.538667pt;}
.y2_c00364{bottom:918.866667pt;}
.h4_c00364{height:17.600093pt;}
.h3_c00364{height:57.375000pt;}
.h2_c00364{height:57.781250pt;}
.h5_c00364{height:64.375000pt;}
.h1_c00364{height:938.202667pt;}
.h0_c00364{height:1122.666667pt;}
.w2_c00364{width:26.696000pt;}
.w1_c00364{width:575.470667pt;}
.w0_c00364{width:793.333333pt;}
.x0_c00364{left:0.000000pt;}
.x2_c00364{left:4.402667pt;}
.x1_c00364{left:108.930667pt;}
.x3_c00364{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc26102af00e5914906964fa.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.113281;font-style:normal;font-weight:normal;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_ce5d12bc4f2ed9d717deba7f.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00365;src:url('chunks/assets/font_6ec6450c2414c1b978f07e76.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:1.330566;font-style: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;}
.ls3_c00365{letter-spacing:-0.014400px;}
.ls1_c00365{letter-spacing:0.000000px;}
.ls2_c00365{letter-spacing:0.014400px;}
.ls0_c00365{letter-spacing:2.289600px;}
.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;}
}
.ws0_c00365{word-spacing:0.000000px;}
._7_c00365{margin-left:-5.342400px;}
._6_c00365{margin-left:-3.974400px;}
._0_c00365{margin-left:-2.664000px;}
._1_c00365{margin-left:-1.310400px;}
._4_c00365{width:1.108800px;}
._9_c00365{width:3.405600px;}
._8_c00365{width:4.586400px;}
._a_c00365{width:6.840000px;}
._b_c00365{width:9.216000px;}
._3_c00365{width:11.116800px;}
._2_c00365{width:13.680000px;}
._f_c00365{width:15.400800px;}
._5_c00365{width:17.258400px;}
._d_c00365{width:31.248000px;}
._e_c00365{width:33.926400px;}
._c_c00365{width:35.208000px;}
.fc1_c00365{color:transparent;}
.fc0_c00365{color:rgb(0,0,0);}
.fs0_c00365{font-size:72.000000px;}
.y0_c00365{bottom:0.000000px;}
.y1b_c00365{bottom:3.787500px;}
.y1a_c00365{bottom:56.735596px;}
.y19_c00365{bottom:81.309000px;}
.y1_c00365{bottom:106.275000px;}
.y18_c00365{bottom:123.303000px;}
.y17_c00365{bottom:163.803000px;}
.y16_c00365{bottom:205.797000px;}
.y15_c00365{bottom:247.791000px;}
.y14_c00365{bottom:288.291000px;}
.y13_c00365{bottom:330.285000px;}
.y12_c00365{bottom:370.785000px;}
.y11_c00365{bottom:412.779000px;}
.y10_c00365{bottom:454.773000px;}
.yf_c00365{bottom:495.273000px;}
.ye_c00365{bottom:537.267000px;}
.yd_c00365{bottom:577.767000px;}
.yc_c00365{bottom:619.761000px;}
.yb_c00365{bottom:661.755000px;}
.ya_c00365{bottom:702.255000px;}
.y9_c00365{bottom:744.249000px;}
.y8_c00365{bottom:784.749000px;}
.y7_c00365{bottom:826.743000px;}
.y6_c00365{bottom:868.737000px;}
.y5_c00365{bottom:909.237000px;}
.y4_c00365{bottom:951.231000px;}
.y3_c00365{bottom:991.731000px;}
.y2_c00365{bottom:1033.725000px;}
.h4_c00365{height:19.800105px;}
.h3_c00365{height:64.546875px;}
.h2_c00365{height:65.003906px;}
.h5_c00365{height:72.421875px;}
.h1_c00365{height:1055.478000px;}
.h0_c00365{height:1263.000000px;}
.w2_c00365{width:30.031500px;}
.w1_c00365{width:647.404500px;}
.w0_c00365{width:892.500000px;}
.x0_c00365{left:0.000000px;}
.x2_c00365{left:4.953000px;}
.x1_c00365{left:122.547000px;}
.x3_c00365{left:734.908997px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls3_c00365{letter-spacing:-0.012800pt;}
.ls1_c00365{letter-spacing:0.000000pt;}
.ls2_c00365{letter-spacing:0.012800pt;}
.ls0_c00365{letter-spacing:2.035200pt;}
.ws0_c00365{word-spacing:0.000000pt;}
._7_c00365{margin-left:-4.748800pt;}
._6_c00365{margin-left:-3.532800pt;}
._0_c00365{margin-left:-2.368000pt;}
._1_c00365{margin-left:-1.164800pt;}
._4_c00365{width:0.985600pt;}
._9_c00365{width:3.027200pt;}
._8_c00365{width:4.076800pt;}
._a_c00365{width:6.080000pt;}
._b_c00365{width:8.192000pt;}
._3_c00365{width:9.881600pt;}
._2_c00365{width:12.160000pt;}
._f_c00365{width:13.689600pt;}
._5_c00365{width:15.340800pt;}
._d_c00365{width:27.776000pt;}
._e_c00365{width:30.156800pt;}
._c_c00365{width:31.296000pt;}
.fs0_c00365{font-size:64.000000pt;}
.y0_c00365{bottom:0.000000pt;}
.y1b_c00365{bottom:3.366667pt;}
.y1a_c00365{bottom:50.431641pt;}
.y19_c00365{bottom:72.274667pt;}
.y1_c00365{bottom:94.466667pt;}
.y18_c00365{bottom:109.602667pt;}
.y17_c00365{bottom:145.602667pt;}
.y16_c00365{bottom:182.930667pt;}
.y15_c00365{bottom:220.258667pt;}
.y14_c00365{bottom:256.258667pt;}
.y13_c00365{bottom:293.586667pt;}
.y12_c00365{bottom:329.586667pt;}
.y11_c00365{bottom:366.914667pt;}
.y10_c00365{bottom:404.242667pt;}
.yf_c00365{bottom:440.242667pt;}
.ye_c00365{bottom:477.570667pt;}
.yd_c00365{bottom:513.570667pt;}
.yc_c00365{bottom:550.898667pt;}
.yb_c00365{bottom:588.226667pt;}
.ya_c00365{bottom:624.226667pt;}
.y9_c00365{bottom:661.554667pt;}
.y8_c00365{bottom:697.554667pt;}
.y7_c00365{bottom:734.882667pt;}
.y6_c00365{bottom:772.210667pt;}
.y5_c00365{bottom:808.210667pt;}
.y4_c00365{bottom:845.538667pt;}
.y3_c00365{bottom:881.538667pt;}
.y2_c00365{bottom:918.866667pt;}
.h4_c00365{height:17.600093pt;}
.h3_c00365{height:57.375000pt;}
.h2_c00365{height:57.781250pt;}
.h5_c00365{height:64.375000pt;}
.h1_c00365{height:938.202667pt;}
.h0_c00365{height:1122.666667pt;}
.w2_c00365{width:26.694667pt;}
.w1_c00365{width:575.470667pt;}
.w0_c00365{width:793.333333pt;}
.x0_c00365{left:0.000000pt;}
.x2_c00365{left:4.402667pt;}
.x1_c00365{left:108.930667pt;}
.x3_c00365{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10752c48b952bdc7641b49eb.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.113281;font-style:normal;font-weight:normal;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_0d9a2a9a3d487d85e903bd71.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00366;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00366;src:url('chunks/assets/font_41b3774a7f629335f579a3c4.woff2')format("woff");}.ff4_c00366{font-family:ff4_c00366;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00366;src:url('chunks/assets/font_477b71d0df2d26c6349c1ac9.woff2')format("woff");}.ff5_c00366{font-family:ff5_c00366;line-height:1.330566;font-style: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;}
.ls3_c00366{letter-spacing:-0.014400px;}
.ls2_c00366{letter-spacing:0.000000px;}
.ls1_c00366{letter-spacing:0.014400px;}
.ls0_c00366{letter-spacing:0.446400px;}
.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;}
}
.ws0_c00366{word-spacing:0.000000px;}
._0_c00366{margin-left:-5.356800px;}
._4_c00366{margin-left:-3.981600px;}
._8_c00366{margin-left:-2.016000px;}
._2_c00366{width:1.886400px;}
._6_c00366{width:3.009600px;}
._1_c00366{width:5.263200px;}
._5_c00366{width:14.896800px;}
._7_c00366{width:17.920800px;}
._a_c00366{width:21.686400px;}
._9_c00366{width:24.818400px;}
._3_c00366{width:35.352000px;}
.fc0_c00366{color:rgb(0,0,0);}
.fs0_c00366{font-size:72.000000px;}
.fs1_c00366{font-size:84.000000px;}
.y0_c00366{bottom:0.000000px;}
.y1b_c00366{bottom:3.787500px;}
.y1a_c00366{bottom:56.735596px;}
.y19_c00366{bottom:75.237000px;}
.y1_c00366{bottom:106.275000px;}
.y18_c00366{bottom:117.231000px;}
.y17_c00366{bottom:159.225000px;}
.y16_c00366{bottom:199.725000px;}
.y15_c00366{bottom:244.785000px;}
.y14_c00366{bottom:288.291000px;}
.y13_c00366{bottom:330.285000px;}
.y12_c00366{bottom:370.785000px;}
.y11_c00366{bottom:412.779000px;}
.y10_c00366{bottom:454.773000px;}
.yf_c00366{bottom:495.273000px;}
.ye_c00366{bottom:537.267000px;}
.yd_c00366{bottom:577.767000px;}
.yc_c00366{bottom:619.761000px;}
.yb_c00366{bottom:661.755000px;}
.ya_c00366{bottom:702.255000px;}
.y9_c00366{bottom:744.249000px;}
.y8_c00366{bottom:784.749000px;}
.y7_c00366{bottom:826.743000px;}
.y6_c00366{bottom:868.737000px;}
.y5_c00366{bottom:909.237000px;}
.y4_c00366{bottom:951.231000px;}
.y3_c00366{bottom:991.731000px;}
.y2_c00366{bottom:1033.725000px;}
.h4_c00366{height:19.800105px;}
.h3_c00366{height:64.546875px;}
.h2_c00366{height:65.003906px;}
.h5_c00366{height:72.421875px;}
.h1_c00366{height:1055.478000px;}
.h0_c00366{height:1263.000000px;}
.w2_c00366{width:30.033000px;}
.w1_c00366{width:648.978000px;}
.w0_c00366{width:892.500000px;}
.x0_c00366{left:0.000000px;}
.x2_c00366{left:5.739000px;}
.x1_c00366{left:121.761000px;}
.x3_c00366{left:127.559509px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls3_c00366{letter-spacing:-0.012800pt;}
.ls2_c00366{letter-spacing:0.000000pt;}
.ls1_c00366{letter-spacing:0.012800pt;}
.ls0_c00366{letter-spacing:0.396800pt;}
.ws0_c00366{word-spacing:0.000000pt;}
._0_c00366{margin-left:-4.761600pt;}
._4_c00366{margin-left:-3.539200pt;}
._8_c00366{margin-left:-1.792000pt;}
._2_c00366{width:1.676800pt;}
._6_c00366{width:2.675200pt;}
._1_c00366{width:4.678400pt;}
._5_c00366{width:13.241600pt;}
._7_c00366{width:15.929600pt;}
._a_c00366{width:19.276800pt;}
._9_c00366{width:22.060800pt;}
._3_c00366{width:31.424000pt;}
.fs0_c00366{font-size:64.000000pt;}
.fs1_c00366{font-size:74.666667pt;}
.y0_c00366{bottom:0.000000pt;}
.y1b_c00366{bottom:3.366667pt;}
.y1a_c00366{bottom:50.431641pt;}
.y19_c00366{bottom:66.877333pt;}
.y1_c00366{bottom:94.466667pt;}
.y18_c00366{bottom:104.205333pt;}
.y17_c00366{bottom:141.533333pt;}
.y16_c00366{bottom:177.533333pt;}
.y15_c00366{bottom:217.586667pt;}
.y14_c00366{bottom:256.258667pt;}
.y13_c00366{bottom:293.586667pt;}
.y12_c00366{bottom:329.586667pt;}
.y11_c00366{bottom:366.914667pt;}
.y10_c00366{bottom:404.242667pt;}
.yf_c00366{bottom:440.242667pt;}
.ye_c00366{bottom:477.570667pt;}
.yd_c00366{bottom:513.570667pt;}
.yc_c00366{bottom:550.898667pt;}
.yb_c00366{bottom:588.226667pt;}
.ya_c00366{bottom:624.226667pt;}
.y9_c00366{bottom:661.554667pt;}
.y8_c00366{bottom:697.554667pt;}
.y7_c00366{bottom:734.882667pt;}
.y6_c00366{bottom:772.210667pt;}
.y5_c00366{bottom:808.210667pt;}
.y4_c00366{bottom:845.538667pt;}
.y3_c00366{bottom:881.538667pt;}
.y2_c00366{bottom:918.866667pt;}
.h4_c00366{height:17.600093pt;}
.h3_c00366{height:57.375000pt;}
.h2_c00366{height:57.781250pt;}
.h5_c00366{height:64.375000pt;}
.h1_c00366{height:938.202667pt;}
.h0_c00366{height:1122.666667pt;}
.w2_c00366{width:26.696000pt;}
.w1_c00366{width:576.869333pt;}
.w0_c00366{width:793.333333pt;}
.x0_c00366{left:0.000000pt;}
.x2_c00366{left:5.101333pt;}
.x1_c00366{left:108.232000pt;}
.x3_c00366{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_951513d373256481f50e216d.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00367;src:url('chunks/assets/font_54f08209aefc61accc4eb969.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00367;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00367;src:url('chunks/assets/font_41b3774a7f629335f579a3c4.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00367;src:url('chunks/assets/font_43ac1fa6344ed1734a33ef6b.woff2')format("woff");}.ff5_c00367{font-family:ff5_c00367;line-height:1.330566;font-style: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;}
.ls3_c00367{letter-spacing:-0.014400px;}
.ls1_c00367{letter-spacing:0.000000px;}
.ls2_c00367{letter-spacing:0.014400px;}
.ls0_c00367{letter-spacing:2.635200px;}
.sc__c00367{text-shadow:none;}
.sc0_c00367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00367{-webkit-text-stroke:0px transparent;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00367{word-spacing:0.000000px;}
._9_c00367{margin-left:-5.335200px;}
._1_c00367{margin-left:-3.981600px;}
._4_c00367{margin-left:-2.664000px;}
._0_c00367{margin-left:-1.310400px;}
._3_c00367{width:1.108800px;}
._e_c00367{width:6.984000px;}
._2_c00367{width:8.064000px;}
._5_c00367{width:9.360000px;}
._d_c00367{width:12.384000px;}
._a_c00367{width:17.128800px;}
._b_c00367{width:18.252000px;}
._8_c00367{width:21.492000px;}
._7_c00367{width:25.466400px;}
._c_c00367{width:29.138400px;}
._6_c00367{width:34.632000px;}
.fc0_c00367{color:rgb(0,0,0);}
.fs0_c00367{font-size:72.000000px;}
.fs1_c00367{font-size:84.000000px;}
.y0_c00367{bottom:0.000000px;}
.y1c_c00367{bottom:3.787500px;}
.y1a_c00367{bottom:43.791000px;}
.y1b_c00367{bottom:56.735596px;}
.y19_c00367{bottom:85.785000px;}
.y1_c00367{bottom:106.275000px;}
.y18_c00367{bottom:126.285000px;}
.y17_c00367{bottom:168.279000px;}
.y16_c00367{bottom:208.779000px;}
.y15_c00367{bottom:250.773000px;}
.y14_c00367{bottom:292.767000px;}
.y13_c00367{bottom:333.267000px;}
.y12_c00367{bottom:375.261000px;}
.y11_c00367{bottom:415.761000px;}
.y10_c00367{bottom:457.755000px;}
.yf_c00367{bottom:499.749000px;}
.ye_c00367{bottom:540.249000px;}
.yd_c00367{bottom:582.243000px;}
.yc_c00367{bottom:622.743000px;}
.yb_c00367{bottom:664.737000px;}
.ya_c00367{bottom:706.731000px;}
.y9_c00367{bottom:747.231000px;}
.y8_c00367{bottom:789.225000px;}
.y7_c00367{bottom:829.725000px;}
.y6_c00367{bottom:865.731000px;}
.y5_c00367{bottom:909.237000px;}
.y4_c00367{bottom:951.231000px;}
.y3_c00367{bottom:991.731000px;}
.y2_c00367{bottom:1033.725000px;}
.h4_c00367{height:19.800105px;}
.h2_c00367{height:64.546875px;}
.h3_c00367{height:65.003906px;}
.h5_c00367{height:72.421875px;}
.h1_c00367{height:1055.478000px;}
.h0_c00367{height:1263.000000px;}
.w2_c00367{width:30.031500px;}
.w1_c00367{width:648.978000px;}
.w0_c00367{width:892.500000px;}
.x0_c00367{left:0.000000px;}
.x2_c00367{left:5.739000px;}
.x1_c00367{left:121.761000px;}
.x3_c00367{left:734.908997px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls3_c00367{letter-spacing:-0.012800pt;}
.ls1_c00367{letter-spacing:0.000000pt;}
.ls2_c00367{letter-spacing:0.012800pt;}
.ls0_c00367{letter-spacing:2.342400pt;}
.ws0_c00367{word-spacing:0.000000pt;}
._9_c00367{margin-left:-4.742400pt;}
._1_c00367{margin-left:-3.539200pt;}
._4_c00367{margin-left:-2.368000pt;}
._0_c00367{margin-left:-1.164800pt;}
._3_c00367{width:0.985600pt;}
._e_c00367{width:6.208000pt;}
._2_c00367{width:7.168000pt;}
._5_c00367{width:8.320000pt;}
._d_c00367{width:11.008000pt;}
._a_c00367{width:15.225600pt;}
._b_c00367{width:16.224000pt;}
._8_c00367{width:19.104000pt;}
._7_c00367{width:22.636800pt;}
._c_c00367{width:25.900800pt;}
._6_c00367{width:30.784000pt;}
.fs0_c00367{font-size:64.000000pt;}
.fs1_c00367{font-size:74.666667pt;}
.y0_c00367{bottom:0.000000pt;}
.y1c_c00367{bottom:3.366667pt;}
.y1a_c00367{bottom:38.925333pt;}
.y1b_c00367{bottom:50.431641pt;}
.y19_c00367{bottom:76.253333pt;}
.y1_c00367{bottom:94.466667pt;}
.y18_c00367{bottom:112.253333pt;}
.y17_c00367{bottom:149.581333pt;}
.y16_c00367{bottom:185.581333pt;}
.y15_c00367{bottom:222.909333pt;}
.y14_c00367{bottom:260.237333pt;}
.y13_c00367{bottom:296.237333pt;}
.y12_c00367{bottom:333.565333pt;}
.y11_c00367{bottom:369.565333pt;}
.y10_c00367{bottom:406.893333pt;}
.yf_c00367{bottom:444.221333pt;}
.ye_c00367{bottom:480.221333pt;}
.yd_c00367{bottom:517.549333pt;}
.yc_c00367{bottom:553.549333pt;}
.yb_c00367{bottom:590.877333pt;}
.ya_c00367{bottom:628.205333pt;}
.y9_c00367{bottom:664.205333pt;}
.y8_c00367{bottom:701.533333pt;}
.y7_c00367{bottom:737.533333pt;}
.y6_c00367{bottom:769.538667pt;}
.y5_c00367{bottom:808.210667pt;}
.y4_c00367{bottom:845.538667pt;}
.y3_c00367{bottom:881.538667pt;}
.y2_c00367{bottom:918.866667pt;}
.h4_c00367{height:17.600093pt;}
.h2_c00367{height:57.375000pt;}
.h3_c00367{height:57.781250pt;}
.h5_c00367{height:64.375000pt;}
.h1_c00367{height:938.202667pt;}
.h0_c00367{height:1122.666667pt;}
.w2_c00367{width:26.694667pt;}
.w1_c00367{width:576.869333pt;}
.w0_c00367{width:793.333333pt;}
.x0_c00367{left:0.000000pt;}
.x2_c00367{left:5.101333pt;}
.x1_c00367{left:108.232000pt;}
.x3_c00367{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_594f4487ee527823d2545ffa.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.113281;font-style:normal;font-weight:normal;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_4c46f576804e71e0fdb80074.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.330566;font-style: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;}
}
.ws0_c00368{word-spacing:0.000000px;}
._0_c00368{width:15.710400px;}
.fc0_c00368{color:rgb(0,0,0);}
.fs0_c00368{font-size:72.000000px;}
.y0_c00368{bottom:0.000000px;}
.y5_c00368{bottom:3.787500px;}
.y4_c00368{bottom:56.735596px;}
.y1_c00368{bottom:106.275000px;}
.y3_c00368{bottom:991.731000px;}
.y2_c00368{bottom:1033.725000px;}
.h3_c00368{height:19.800105px;}
.h2_c00368{height:65.003906px;}
.h4_c00368{height:72.421875px;}
.h1_c00368{height:1055.478000px;}
.h0_c00368{height:1263.000000px;}
.w2_c00368{width:30.033000px;}
.w1_c00368{width:647.404500px;}
.w0_c00368{width:892.500000px;}
.x0_c00368{left:0.000000px;}
.x2_c00368{left:4.953000px;}
.x1_c00368{left:122.547000px;}
.x3_c00368{left:127.559509px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls0_c00368{letter-spacing:0.000000pt;}
.ws0_c00368{word-spacing:0.000000pt;}
._0_c00368{width:13.964800pt;}
.fs0_c00368{font-size:64.000000pt;}
.y0_c00368{bottom:0.000000pt;}
.y5_c00368{bottom:3.366667pt;}
.y4_c00368{bottom:50.431641pt;}
.y1_c00368{bottom:94.466667pt;}
.y3_c00368{bottom:881.538667pt;}
.y2_c00368{bottom:918.866667pt;}
.h3_c00368{height:17.600093pt;}
.h2_c00368{height:57.781250pt;}
.h4_c00368{height:64.375000pt;}
.h1_c00368{height:938.202667pt;}
.h0_c00368{height:1122.666667pt;}
.w2_c00368{width:26.696000pt;}
.w1_c00368{width:575.470667pt;}
.w0_c00368{width:793.333333pt;}
.x0_c00368{left:0.000000pt;}
.x2_c00368{left:4.402667pt;}
.x1_c00368{left:108.930667pt;}
.x3_c00368{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_17a4e8ae293b042fbc9b1af6.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.113281;font-style:normal;font-weight:normal;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_827dc3695210a4c84fc5de4f.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00369;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00369;src:url('chunks/assets/font_cf39b128982dcc2399167595.woff2')format("woff");}.ff4_c00369{font-family:ff4_c00369;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00369{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.ls5_c00369{letter-spacing:-0.014400px;}
.ls2_c00369{letter-spacing:0.000000px;}
.ls3_c00369{letter-spacing:0.014400px;}
.ls1_c00369{letter-spacing:1.922400px;}
.ls4_c00369{letter-spacing:2.419200px;}
.ls0_c00369{letter-spacing:2.433600px;}
.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:0.000000px;}
._7_c00369{margin-left:-5.342400px;}
._6_c00369{margin-left:-3.974400px;}
._0_c00369{margin-left:-2.664000px;}
._1_c00369{margin-left:-1.310400px;}
._a_c00369{width:1.224000px;}
._b_c00369{width:3.290400px;}
._9_c00369{width:4.586400px;}
._d_c00369{width:7.048800px;}
._e_c00369{width:8.107200px;}
._8_c00369{width:13.305600px;}
._c_c00369{width:15.552000px;}
._5_c00369{width:17.258400px;}
._3_c00369{width:32.198400px;}
._4_c00369{width:33.739200px;}
._2_c00369{width:35.035200px;}
.fc1_c00369{color:transparent;}
.fc0_c00369{color:rgb(0,0,0);}
.fs0_c00369{font-size:72.000000px;}
.y0_c00369{bottom:0.000000px;}
.y1a_c00369{bottom:3.787500px;}
.y19_c00369{bottom:56.735596px;}
.y1_c00369{bottom:106.275000px;}
.y18_c00369{bottom:123.303000px;}
.y17_c00369{bottom:163.803000px;}
.y16_c00369{bottom:205.797000px;}
.y15_c00369{bottom:247.791000px;}
.y14_c00369{bottom:288.291000px;}
.y13_c00369{bottom:330.285000px;}
.y12_c00369{bottom:370.785000px;}
.y11_c00369{bottom:412.779000px;}
.y10_c00369{bottom:454.773000px;}
.yf_c00369{bottom:495.273000px;}
.ye_c00369{bottom:537.267000px;}
.yd_c00369{bottom:577.767000px;}
.yc_c00369{bottom:619.761000px;}
.yb_c00369{bottom:661.755000px;}
.ya_c00369{bottom:702.255000px;}
.y9_c00369{bottom:744.249000px;}
.y8_c00369{bottom:784.749000px;}
.y7_c00369{bottom:826.743000px;}
.y6_c00369{bottom:868.737000px;}
.y5_c00369{bottom:909.237000px;}
.y4_c00369{bottom:951.231000px;}
.y3_c00369{bottom:991.731000px;}
.y2_c00369{bottom:1033.725000px;}
.h4_c00369{height:19.800105px;}
.h3_c00369{height:64.546875px;}
.h2_c00369{height:65.003906px;}
.h5_c00369{height:72.421875px;}
.h1_c00369{height:1055.478000px;}
.h0_c00369{height:1263.000000px;}
.w2_c00369{width:30.031500px;}
.w1_c00369{width:647.404500px;}
.w0_c00369{width:892.500000px;}
.x0_c00369{left:0.000000px;}
.x2_c00369{left:4.953000px;}
.x1_c00369{left:122.547000px;}
.x3_c00369{left:734.908997px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls5_c00369{letter-spacing:-0.012800pt;}
.ls2_c00369{letter-spacing:0.000000pt;}
.ls3_c00369{letter-spacing:0.012800pt;}
.ls1_c00369{letter-spacing:1.708800pt;}
.ls4_c00369{letter-spacing:2.150400pt;}
.ls0_c00369{letter-spacing:2.163200pt;}
.ws0_c00369{word-spacing:0.000000pt;}
._7_c00369{margin-left:-4.748800pt;}
._6_c00369{margin-left:-3.532800pt;}
._0_c00369{margin-left:-2.368000pt;}
._1_c00369{margin-left:-1.164800pt;}
._a_c00369{width:1.088000pt;}
._b_c00369{width:2.924800pt;}
._9_c00369{width:4.076800pt;}
._d_c00369{width:6.265600pt;}
._e_c00369{width:7.206400pt;}
._8_c00369{width:11.827200pt;}
._c_c00369{width:13.824000pt;}
._5_c00369{width:15.340800pt;}
._3_c00369{width:28.620800pt;}
._4_c00369{width:29.990400pt;}
._2_c00369{width:31.142400pt;}
.fs0_c00369{font-size:64.000000pt;}
.y0_c00369{bottom:0.000000pt;}
.y1a_c00369{bottom:3.366667pt;}
.y19_c00369{bottom:50.431641pt;}
.y1_c00369{bottom:94.466667pt;}
.y18_c00369{bottom:109.602667pt;}
.y17_c00369{bottom:145.602667pt;}
.y16_c00369{bottom:182.930667pt;}
.y15_c00369{bottom:220.258667pt;}
.y14_c00369{bottom:256.258667pt;}
.y13_c00369{bottom:293.586667pt;}
.y12_c00369{bottom:329.586667pt;}
.y11_c00369{bottom:366.914667pt;}
.y10_c00369{bottom:404.242667pt;}
.yf_c00369{bottom:440.242667pt;}
.ye_c00369{bottom:477.570667pt;}
.yd_c00369{bottom:513.570667pt;}
.yc_c00369{bottom:550.898667pt;}
.yb_c00369{bottom:588.226667pt;}
.ya_c00369{bottom:624.226667pt;}
.y9_c00369{bottom:661.554667pt;}
.y8_c00369{bottom:697.554667pt;}
.y7_c00369{bottom:734.882667pt;}
.y6_c00369{bottom:772.210667pt;}
.y5_c00369{bottom:808.210667pt;}
.y4_c00369{bottom:845.538667pt;}
.y3_c00369{bottom:881.538667pt;}
.y2_c00369{bottom:918.866667pt;}
.h4_c00369{height:17.600093pt;}
.h3_c00369{height:57.375000pt;}
.h2_c00369{height:57.781250pt;}
.h5_c00369{height:64.375000pt;}
.h1_c00369{height:938.202667pt;}
.h0_c00369{height:1122.666667pt;}
.w2_c00369{width:26.694667pt;}
.w1_c00369{width:575.470667pt;}
.w0_c00369{width:793.333333pt;}
.x0_c00369{left:0.000000pt;}
.x2_c00369{left:4.402667pt;}
.x1_c00369{left:108.930667pt;}
.x3_c00369{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e3c23178a7a1c3e746defd9.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.113281;font-style:normal;font-weight:normal;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_f72be2594050c38ce973b935.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00370;src:url('chunks/assets/font_41b3774a7f629335f579a3c4.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00370;src:url('chunks/assets/font_c2da5fabfbc25faa86de17d5.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:1.330566;font-style: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;}
.ls1_c00370{letter-spacing:-5.356800px;}
.ls4_c00370{letter-spacing:-0.014400px;}
.ls2_c00370{letter-spacing:0.000000px;}
.ls3_c00370{letter-spacing:0.014400px;}
.ls0_c00370{letter-spacing:2.289600px;}
.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:0.000000px;}
._8_c00370{margin-left:-6.264000px;}
._a_c00370{margin-left:-3.981600px;}
._3_c00370{margin-left:-2.304000px;}
._6_c00370{margin-left:-1.296000px;}
._10_c00370{width:1.044000px;}
._f_c00370{width:2.332800px;}
._0_c00370{width:5.400000px;}
._9_c00370{width:7.632000px;}
._d_c00370{width:10.944000px;}
._2_c00370{width:16.862400px;}
._1_c00370{width:20.232000px;}
._c_c00370{width:21.686400px;}
._b_c00370{width:24.818400px;}
._e_c00370{width:26.856000px;}
._5_c00370{width:30.888000px;}
._7_c00370{width:33.552000px;}
._4_c00370{width:34.848000px;}
.fc0_c00370{color:rgb(0,0,0);}
.fs0_c00370{font-size:72.000000px;}
.fs1_c00370{font-size:84.000000px;}
.y0_c00370{bottom:0.000000px;}
.y1d_c00370{bottom:3.787500px;}
.y1b_c00370{bottom:30.115500px;}
.y1c_c00370{bottom:56.735596px;}
.y1a_c00370{bottom:66.121500px;}
.y1_c00370{bottom:85.384500px;}
.y19_c00370{bottom:109.627500px;}
.y18_c00370{bottom:144.133500px;}
.y17_c00370{bottom:184.633500px;}
.y16_c00370{bottom:226.627500px;}
.y15_c00370{bottom:268.621500px;}
.y14_c00370{bottom:309.121500px;}
.y13_c00370{bottom:351.115500px;}
.y12_c00370{bottom:391.615500px;}
.y11_c00370{bottom:433.669500px;}
.y10_c00370{bottom:475.663500px;}
.yf_c00370{bottom:516.163500px;}
.ye_c00370{bottom:558.157500px;}
.yd_c00370{bottom:598.657500px;}
.yc_c00370{bottom:640.651500px;}
.yb_c00370{bottom:682.645500px;}
.ya_c00370{bottom:723.145500px;}
.y9_c00370{bottom:765.139500px;}
.y8_c00370{bottom:805.639500px;}
.y7_c00370{bottom:847.633500px;}
.y6_c00370{bottom:889.627500px;}
.y5_c00370{bottom:930.127500px;}
.y4_c00370{bottom:972.121500px;}
.y3_c00370{bottom:1012.621500px;}
.y2_c00370{bottom:1054.615500px;}
.h4_c00370{height:19.800105px;}
.h3_c00370{height:64.546875px;}
.h2_c00370{height:65.003906px;}
.h5_c00370{height:72.421875px;}
.h1_c00370{height:1076.367000px;}
.h0_c00370{height:1263.000000px;}
.w2_c00370{width:30.033000px;}
.w1_c00370{width:648.978000px;}
.w0_c00370{width:892.500000px;}
.x0_c00370{left:0.000000px;}
.x2_c00370{left:5.739000px;}
.x1_c00370{left:121.761000px;}
.x3_c00370{left:127.559509px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls1_c00370{letter-spacing:-4.761600pt;}
.ls4_c00370{letter-spacing:-0.012800pt;}
.ls2_c00370{letter-spacing:0.000000pt;}
.ls3_c00370{letter-spacing:0.012800pt;}
.ls0_c00370{letter-spacing:2.035200pt;}
.ws0_c00370{word-spacing:0.000000pt;}
._8_c00370{margin-left:-5.568000pt;}
._a_c00370{margin-left:-3.539200pt;}
._3_c00370{margin-left:-2.048000pt;}
._6_c00370{margin-left:-1.152000pt;}
._10_c00370{width:0.928000pt;}
._f_c00370{width:2.073600pt;}
._0_c00370{width:4.800000pt;}
._9_c00370{width:6.784000pt;}
._d_c00370{width:9.728000pt;}
._2_c00370{width:14.988800pt;}
._1_c00370{width:17.984000pt;}
._c_c00370{width:19.276800pt;}
._b_c00370{width:22.060800pt;}
._e_c00370{width:23.872000pt;}
._5_c00370{width:27.456000pt;}
._7_c00370{width:29.824000pt;}
._4_c00370{width:30.976000pt;}
.fs0_c00370{font-size:64.000000pt;}
.fs1_c00370{font-size:74.666667pt;}
.y0_c00370{bottom:0.000000pt;}
.y1d_c00370{bottom:3.366667pt;}
.y1b_c00370{bottom:26.769333pt;}
.y1c_c00370{bottom:50.431641pt;}
.y1a_c00370{bottom:58.774667pt;}
.y1_c00370{bottom:75.897333pt;}
.y19_c00370{bottom:97.446667pt;}
.y18_c00370{bottom:128.118667pt;}
.y17_c00370{bottom:164.118667pt;}
.y16_c00370{bottom:201.446667pt;}
.y15_c00370{bottom:238.774667pt;}
.y14_c00370{bottom:274.774667pt;}
.y13_c00370{bottom:312.102667pt;}
.y12_c00370{bottom:348.102667pt;}
.y11_c00370{bottom:385.484000pt;}
.y10_c00370{bottom:422.812000pt;}
.yf_c00370{bottom:458.812000pt;}
.ye_c00370{bottom:496.140000pt;}
.yd_c00370{bottom:532.140000pt;}
.yc_c00370{bottom:569.468000pt;}
.yb_c00370{bottom:606.796000pt;}
.ya_c00370{bottom:642.796000pt;}
.y9_c00370{bottom:680.124000pt;}
.y8_c00370{bottom:716.124000pt;}
.y7_c00370{bottom:753.452000pt;}
.y6_c00370{bottom:790.780000pt;}
.y5_c00370{bottom:826.780000pt;}
.y4_c00370{bottom:864.108000pt;}
.y3_c00370{bottom:900.108000pt;}
.y2_c00370{bottom:937.436000pt;}
.h4_c00370{height:17.600093pt;}
.h3_c00370{height:57.375000pt;}
.h2_c00370{height:57.781250pt;}
.h5_c00370{height:64.375000pt;}
.h1_c00370{height:956.770667pt;}
.h0_c00370{height:1122.666667pt;}
.w2_c00370{width:26.696000pt;}
.w1_c00370{width:576.869333pt;}
.w0_c00370{width:793.333333pt;}
.x0_c00370{left:0.000000pt;}
.x2_c00370{left:5.101333pt;}
.x1_c00370{left:108.232000pt;}
.x3_c00370{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_53c33d5316a5023923f2785d.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00371;src:url('chunks/assets/font_62ca89c109e185afe2b0234a.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00371;src:url('chunks/assets/font_cf39b128982dcc2399167595.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:1.330566;font-style: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;}
.ls1_c00371{letter-spacing:0.014400px;}
.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:0.000000px;}
._5_c00371{margin-left:-5.342400px;}
._3_c00371{margin-left:-3.974400px;}
._1_c00371{margin-left:-2.664000px;}
._4_c00371{margin-left:-1.310400px;}
._a_c00371{width:2.721600px;}
._9_c00371{width:6.840000px;}
._6_c00371{width:17.136000px;}
._7_c00371{width:18.230400px;}
._2_c00371{width:21.492000px;}
._0_c00371{width:25.466400px;}
._8_c00371{width:29.138400px;}
.fc0_c00371{color:rgb(0,0,0);}
.fs0_c00371{font-size:72.000000px;}
.y0_c00371{bottom:0.000000px;}
.y15_c00371{bottom:3.787500px;}
.y14_c00371{bottom:56.735596px;}
.y1_c00371{bottom:106.275000px;}
.y13_c00371{bottom:330.285000px;}
.y12_c00371{bottom:370.785000px;}
.y11_c00371{bottom:412.779000px;}
.y10_c00371{bottom:454.773000px;}
.yf_c00371{bottom:495.273000px;}
.ye_c00371{bottom:537.267000px;}
.yd_c00371{bottom:577.767000px;}
.yc_c00371{bottom:619.761000px;}
.yb_c00371{bottom:661.755000px;}
.ya_c00371{bottom:702.255000px;}
.y9_c00371{bottom:744.249000px;}
.y8_c00371{bottom:784.749000px;}
.y7_c00371{bottom:826.743000px;}
.y6_c00371{bottom:868.737000px;}
.y5_c00371{bottom:909.237000px;}
.y4_c00371{bottom:951.231000px;}
.y3_c00371{bottom:991.731000px;}
.y2_c00371{bottom:1033.725000px;}
.h4_c00371{height:19.800105px;}
.h2_c00371{height:64.546875px;}
.h3_c00371{height:65.003906px;}
.h5_c00371{height:72.421875px;}
.h1_c00371{height:1055.478000px;}
.h0_c00371{height:1263.000000px;}
.w2_c00371{width:30.031500px;}
.w1_c00371{width:647.404500px;}
.w0_c00371{width:892.500000px;}
.x0_c00371{left:0.000000px;}
.x2_c00371{left:4.953000px;}
.x1_c00371{left:122.547000px;}
.x3_c00371{left:734.908997px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls0_c00371{letter-spacing:0.000000pt;}
.ls1_c00371{letter-spacing:0.012800pt;}
.ws0_c00371{word-spacing:0.000000pt;}
._5_c00371{margin-left:-4.748800pt;}
._3_c00371{margin-left:-3.532800pt;}
._1_c00371{margin-left:-2.368000pt;}
._4_c00371{margin-left:-1.164800pt;}
._a_c00371{width:2.419200pt;}
._9_c00371{width:6.080000pt;}
._6_c00371{width:15.232000pt;}
._7_c00371{width:16.204800pt;}
._2_c00371{width:19.104000pt;}
._0_c00371{width:22.636800pt;}
._8_c00371{width:25.900800pt;}
.fs0_c00371{font-size:64.000000pt;}
.y0_c00371{bottom:0.000000pt;}
.y15_c00371{bottom:3.366667pt;}
.y14_c00371{bottom:50.431641pt;}
.y1_c00371{bottom:94.466667pt;}
.y13_c00371{bottom:293.586667pt;}
.y12_c00371{bottom:329.586667pt;}
.y11_c00371{bottom:366.914667pt;}
.y10_c00371{bottom:404.242667pt;}
.yf_c00371{bottom:440.242667pt;}
.ye_c00371{bottom:477.570667pt;}
.yd_c00371{bottom:513.570667pt;}
.yc_c00371{bottom:550.898667pt;}
.yb_c00371{bottom:588.226667pt;}
.ya_c00371{bottom:624.226667pt;}
.y9_c00371{bottom:661.554667pt;}
.y8_c00371{bottom:697.554667pt;}
.y7_c00371{bottom:734.882667pt;}
.y6_c00371{bottom:772.210667pt;}
.y5_c00371{bottom:808.210667pt;}
.y4_c00371{bottom:845.538667pt;}
.y3_c00371{bottom:881.538667pt;}
.y2_c00371{bottom:918.866667pt;}
.h4_c00371{height:17.600093pt;}
.h2_c00371{height:57.375000pt;}
.h3_c00371{height:57.781250pt;}
.h5_c00371{height:64.375000pt;}
.h1_c00371{height:938.202667pt;}
.h0_c00371{height:1122.666667pt;}
.w2_c00371{width:26.694667pt;}
.w1_c00371{width:575.470667pt;}
.w0_c00371{width:793.333333pt;}
.x0_c00371{left:0.000000pt;}
.x2_c00371{left:4.402667pt;}
.x1_c00371{left:108.930667pt;}
.x3_c00371{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_52575486da98dd115ef41f67.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.113281;font-style:normal;font-weight:normal;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_46c5c63436b8199f4a047441.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00372;src:url('chunks/assets/font_2fdad322d9a9a478f4f16846.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:1.330566;font-style: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;}
.ls1_c00372{letter-spacing:0.000000px;}
.ls0_c00372{letter-spacing:0.014400px;}
.sc__c00372{text-shadow:none;}
.sc0_c00372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00372{-webkit-text-stroke:0px transparent;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00372{word-spacing:0.000000px;}
._5_c00372{margin-left:-5.342400px;}
._4_c00372{margin-left:-3.974400px;}
._0_c00372{margin-left:-2.664000px;}
._1_c00372{margin-left:-1.310400px;}
._2_c00372{width:1.512000px;}
._8_c00372{width:3.002400px;}
._7_c00372{width:4.586400px;}
._c_c00372{width:6.048000px;}
._e_c00372{width:10.497600px;}
._6_c00372{width:13.305600px;}
._9_c00372{width:14.774400px;}
._b_c00372{width:15.775200px;}
._3_c00372{width:17.258400px;}
._d_c00372{width:18.763200px;}
._a_c00372{width:26.712000px;}
.fc1_c00372{color:transparent;}
.fc0_c00372{color:rgb(0,0,0);}
.fs0_c00372{font-size:72.000000px;}
.y0_c00372{bottom:0.000000px;}
.y1b_c00372{bottom:3.787500px;}
.y1a_c00372{bottom:56.735596px;}
.y19_c00372{bottom:81.309000px;}
.y1_c00372{bottom:106.275000px;}
.y18_c00372{bottom:123.303000px;}
.y17_c00372{bottom:163.803000px;}
.y16_c00372{bottom:205.797000px;}
.y15_c00372{bottom:247.791000px;}
.y14_c00372{bottom:288.291000px;}
.y13_c00372{bottom:330.285000px;}
.y12_c00372{bottom:370.785000px;}
.y11_c00372{bottom:412.779000px;}
.y10_c00372{bottom:454.773000px;}
.yf_c00372{bottom:495.273000px;}
.ye_c00372{bottom:537.267000px;}
.yd_c00372{bottom:577.767000px;}
.yc_c00372{bottom:619.761000px;}
.yb_c00372{bottom:661.755000px;}
.ya_c00372{bottom:702.255000px;}
.y9_c00372{bottom:744.249000px;}
.y8_c00372{bottom:784.749000px;}
.y7_c00372{bottom:826.743000px;}
.y6_c00372{bottom:868.737000px;}
.y5_c00372{bottom:909.237000px;}
.y4_c00372{bottom:951.231000px;}
.y3_c00372{bottom:991.731000px;}
.y2_c00372{bottom:1033.725000px;}
.h4_c00372{height:19.800105px;}
.h3_c00372{height:64.546875px;}
.h2_c00372{height:65.003906px;}
.h5_c00372{height:72.421875px;}
.h1_c00372{height:1055.478000px;}
.h0_c00372{height:1263.000000px;}
.w2_c00372{width:30.033000px;}
.w1_c00372{width:647.404500px;}
.w0_c00372{width:892.500000px;}
.x0_c00372{left:0.000000px;}
.x2_c00372{left:4.953000px;}
.x1_c00372{left:122.547000px;}
.x3_c00372{left:127.559509px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls1_c00372{letter-spacing:0.000000pt;}
.ls0_c00372{letter-spacing:0.012800pt;}
.ws0_c00372{word-spacing:0.000000pt;}
._5_c00372{margin-left:-4.748800pt;}
._4_c00372{margin-left:-3.532800pt;}
._0_c00372{margin-left:-2.368000pt;}
._1_c00372{margin-left:-1.164800pt;}
._2_c00372{width:1.344000pt;}
._8_c00372{width:2.668800pt;}
._7_c00372{width:4.076800pt;}
._c_c00372{width:5.376000pt;}
._e_c00372{width:9.331200pt;}
._6_c00372{width:11.827200pt;}
._9_c00372{width:13.132800pt;}
._b_c00372{width:14.022400pt;}
._3_c00372{width:15.340800pt;}
._d_c00372{width:16.678400pt;}
._a_c00372{width:23.744000pt;}
.fs0_c00372{font-size:64.000000pt;}
.y0_c00372{bottom:0.000000pt;}
.y1b_c00372{bottom:3.366667pt;}
.y1a_c00372{bottom:50.431641pt;}
.y19_c00372{bottom:72.274667pt;}
.y1_c00372{bottom:94.466667pt;}
.y18_c00372{bottom:109.602667pt;}
.y17_c00372{bottom:145.602667pt;}
.y16_c00372{bottom:182.930667pt;}
.y15_c00372{bottom:220.258667pt;}
.y14_c00372{bottom:256.258667pt;}
.y13_c00372{bottom:293.586667pt;}
.y12_c00372{bottom:329.586667pt;}
.y11_c00372{bottom:366.914667pt;}
.y10_c00372{bottom:404.242667pt;}
.yf_c00372{bottom:440.242667pt;}
.ye_c00372{bottom:477.570667pt;}
.yd_c00372{bottom:513.570667pt;}
.yc_c00372{bottom:550.898667pt;}
.yb_c00372{bottom:588.226667pt;}
.ya_c00372{bottom:624.226667pt;}
.y9_c00372{bottom:661.554667pt;}
.y8_c00372{bottom:697.554667pt;}
.y7_c00372{bottom:734.882667pt;}
.y6_c00372{bottom:772.210667pt;}
.y5_c00372{bottom:808.210667pt;}
.y4_c00372{bottom:845.538667pt;}
.y3_c00372{bottom:881.538667pt;}
.y2_c00372{bottom:918.866667pt;}
.h4_c00372{height:17.600093pt;}
.h3_c00372{height:57.375000pt;}
.h2_c00372{height:57.781250pt;}
.h5_c00372{height:64.375000pt;}
.h1_c00372{height:938.202667pt;}
.h0_c00372{height:1122.666667pt;}
.w2_c00372{width:26.696000pt;}
.w1_c00372{width:575.470667pt;}
.w0_c00372{width:793.333333pt;}
.x0_c00372{left:0.000000pt;}
.x2_c00372{left:4.402667pt;}
.x1_c00372{left:108.930667pt;}
.x3_c00372{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2050981c5b39531132d68d28.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00373;src:url('chunks/assets/font_80617fee2ad3c0e75aa6f14f.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00373;src:url('chunks/assets/font_1a0f688aa3abda82b93e46a5.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:1.330566;font-style: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;}
.ls2_c00373{letter-spacing:-0.014400px;}
.ls1_c00373{letter-spacing:0.000000px;}
.ls0_c00373{letter-spacing:0.014400px;}
.sc__c00373{text-shadow:none;}
.sc0_c00373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00373{-webkit-text-stroke:0px transparent;}
.sc0_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00373{word-spacing:0.000000px;}
._4_c00373{margin-left:-9.280800px;}
._5_c00373{margin-left:-5.335200px;}
._b_c00373{width:1.108800px;}
._c_c00373{width:3.722400px;}
._e_c00373{width:5.119200px;}
._1_c00373{width:7.704000px;}
._6_c00373{width:8.798400px;}
._2_c00373{width:12.052800px;}
._8_c00373{width:13.118400px;}
._7_c00373{width:15.480000px;}
._9_c00373{width:16.704000px;}
._a_c00373{width:22.298400px;}
._0_c00373{width:24.480000px;}
._3_c00373{width:25.790400px;}
._d_c00373{width:27.115200px;}
.fc0_c00373{color:rgb(0,0,0);}
.fs0_c00373{font-size:72.000000px;}
.y0_c00373{bottom:0.000000px;}
.y1c_c00373{bottom:3.787500px;}
.y1a_c00373{bottom:40.809000px;}
.y1b_c00373{bottom:56.735596px;}
.y19_c00373{bottom:81.309000px;}
.y1_c00373{bottom:106.275000px;}
.y18_c00373{bottom:123.303000px;}
.y17_c00373{bottom:163.803000px;}
.y16_c00373{bottom:205.797000px;}
.y15_c00373{bottom:247.791000px;}
.y14_c00373{bottom:288.291000px;}
.y13_c00373{bottom:330.285000px;}
.y12_c00373{bottom:370.785000px;}
.y11_c00373{bottom:412.779000px;}
.y10_c00373{bottom:454.773000px;}
.yf_c00373{bottom:495.273000px;}
.ye_c00373{bottom:537.267000px;}
.yd_c00373{bottom:577.767000px;}
.yc_c00373{bottom:619.761000px;}
.yb_c00373{bottom:661.755000px;}
.ya_c00373{bottom:702.255000px;}
.y9_c00373{bottom:744.249000px;}
.y8_c00373{bottom:784.749000px;}
.y7_c00373{bottom:826.743000px;}
.y6_c00373{bottom:868.737000px;}
.y5_c00373{bottom:909.237000px;}
.y4_c00373{bottom:951.231000px;}
.y3_c00373{bottom:991.731000px;}
.y2_c00373{bottom:1033.725000px;}
.h3_c00373{height:19.800105px;}
.h2_c00373{height:65.003906px;}
.h4_c00373{height:72.421875px;}
.h1_c00373{height:1055.478000px;}
.h0_c00373{height:1263.000000px;}
.w2_c00373{width:30.031500px;}
.w1_c00373{width:647.404500px;}
.w0_c00373{width:892.500000px;}
.x0_c00373{left:0.000000px;}
.x2_c00373{left:4.953000px;}
.x1_c00373{left:122.547000px;}
.x3_c00373{left:734.908997px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls2_c00373{letter-spacing:-0.012800pt;}
.ls1_c00373{letter-spacing:0.000000pt;}
.ls0_c00373{letter-spacing:0.012800pt;}
.ws0_c00373{word-spacing:0.000000pt;}
._4_c00373{margin-left:-8.249600pt;}
._5_c00373{margin-left:-4.742400pt;}
._b_c00373{width:0.985600pt;}
._c_c00373{width:3.308800pt;}
._e_c00373{width:4.550400pt;}
._1_c00373{width:6.848000pt;}
._6_c00373{width:7.820800pt;}
._2_c00373{width:10.713600pt;}
._8_c00373{width:11.660800pt;}
._7_c00373{width:13.760000pt;}
._9_c00373{width:14.848000pt;}
._a_c00373{width:19.820800pt;}
._0_c00373{width:21.760000pt;}
._3_c00373{width:22.924800pt;}
._d_c00373{width:24.102400pt;}
.fs0_c00373{font-size:64.000000pt;}
.y0_c00373{bottom:0.000000pt;}
.y1c_c00373{bottom:3.366667pt;}
.y1a_c00373{bottom:36.274667pt;}
.y1b_c00373{bottom:50.431641pt;}
.y19_c00373{bottom:72.274667pt;}
.y1_c00373{bottom:94.466667pt;}
.y18_c00373{bottom:109.602667pt;}
.y17_c00373{bottom:145.602667pt;}
.y16_c00373{bottom:182.930667pt;}
.y15_c00373{bottom:220.258667pt;}
.y14_c00373{bottom:256.258667pt;}
.y13_c00373{bottom:293.586667pt;}
.y12_c00373{bottom:329.586667pt;}
.y11_c00373{bottom:366.914667pt;}
.y10_c00373{bottom:404.242667pt;}
.yf_c00373{bottom:440.242667pt;}
.ye_c00373{bottom:477.570667pt;}
.yd_c00373{bottom:513.570667pt;}
.yc_c00373{bottom:550.898667pt;}
.yb_c00373{bottom:588.226667pt;}
.ya_c00373{bottom:624.226667pt;}
.y9_c00373{bottom:661.554667pt;}
.y8_c00373{bottom:697.554667pt;}
.y7_c00373{bottom:734.882667pt;}
.y6_c00373{bottom:772.210667pt;}
.y5_c00373{bottom:808.210667pt;}
.y4_c00373{bottom:845.538667pt;}
.y3_c00373{bottom:881.538667pt;}
.y2_c00373{bottom:918.866667pt;}
.h3_c00373{height:17.600093pt;}
.h2_c00373{height:57.781250pt;}
.h4_c00373{height:64.375000pt;}
.h1_c00373{height:938.202667pt;}
.h0_c00373{height:1122.666667pt;}
.w2_c00373{width:26.694667pt;}
.w1_c00373{width:575.470667pt;}
.w0_c00373{width:793.333333pt;}
.x0_c00373{left:0.000000pt;}
.x2_c00373{left:4.402667pt;}
.x1_c00373{left:108.930667pt;}
.x3_c00373{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c77d97419da7859707e44405.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.113281;font-style:normal;font-weight:normal;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_334c766923d2d7ad70cd3fac.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00374;src:url('chunks/assets/font_845788b2db5d910939b5674c.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:1.330566;font-style: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;}
.ls2_c00374{letter-spacing:-0.014400px;}
.ls1_c00374{letter-spacing:0.000000px;}
.ls3_c00374{letter-spacing:0.014400px;}
.ls0_c00374{letter-spacing:2.289600px;}
.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;}
}
.ws0_c00374{word-spacing:-20.001600px;}
.ws1_c00374{word-spacing:0.000000px;}
._2_c00374{margin-left:-5.335200px;}
._e_c00374{margin-left:-3.981600px;}
._6_c00374{margin-left:-2.304000px;}
._9_c00374{margin-left:-1.296000px;}
._12_c00374{width:1.656000px;}
._0_c00374{width:4.039200px;}
._4_c00374{width:9.871200px;}
._10_c00374{width:11.858400px;}
._c_c00374{width:13.514400px;}
._1_c00374{width:15.847200px;}
._11_c00374{width:17.920800px;}
._b_c00374{width:21.016800px;}
._3_c00374{width:22.780800px;}
._f_c00374{width:24.818400px;}
._5_c00374{width:30.261600px;}
._8_c00374{width:31.514400px;}
._a_c00374{width:33.552000px;}
._7_c00374{width:34.848000px;}
._d_c00374{width:36.777600px;}
.fc0_c00374{color:rgb(0,0,0);}
.fs0_c00374{font-size:72.000000px;}
.y0_c00374{bottom:0.000000px;}
.y1c_c00374{bottom:3.787500px;}
.y1a_c00374{bottom:40.809000px;}
.y1b_c00374{bottom:56.735596px;}
.y19_c00374{bottom:81.309000px;}
.y1_c00374{bottom:106.275000px;}
.y18_c00374{bottom:123.303000px;}
.y17_c00374{bottom:163.803000px;}
.y16_c00374{bottom:205.797000px;}
.y15_c00374{bottom:247.791000px;}
.y14_c00374{bottom:288.291000px;}
.y13_c00374{bottom:330.285000px;}
.y12_c00374{bottom:370.785000px;}
.y11_c00374{bottom:412.779000px;}
.y10_c00374{bottom:454.773000px;}
.yf_c00374{bottom:495.273000px;}
.ye_c00374{bottom:537.267000px;}
.yd_c00374{bottom:577.767000px;}
.yc_c00374{bottom:619.761000px;}
.yb_c00374{bottom:661.755000px;}
.ya_c00374{bottom:702.255000px;}
.y9_c00374{bottom:744.249000px;}
.y8_c00374{bottom:784.749000px;}
.y7_c00374{bottom:826.743000px;}
.y6_c00374{bottom:868.737000px;}
.y5_c00374{bottom:909.237000px;}
.y4_c00374{bottom:951.231000px;}
.y3_c00374{bottom:991.731000px;}
.y2_c00374{bottom:1033.725000px;}
.h4_c00374{height:19.800105px;}
.h3_c00374{height:64.546875px;}
.h2_c00374{height:65.003906px;}
.h5_c00374{height:72.421875px;}
.h1_c00374{height:1055.478000px;}
.h0_c00374{height:1263.000000px;}
.w2_c00374{width:30.033000px;}
.w1_c00374{width:647.404500px;}
.w0_c00374{width:892.500000px;}
.x0_c00374{left:0.000000px;}
.x2_c00374{left:4.953000px;}
.x1_c00374{left:122.547000px;}
.x3_c00374{left:127.559509px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls2_c00374{letter-spacing:-0.012800pt;}
.ls1_c00374{letter-spacing:0.000000pt;}
.ls3_c00374{letter-spacing:0.012800pt;}
.ls0_c00374{letter-spacing:2.035200pt;}
.ws0_c00374{word-spacing:-17.779200pt;}
.ws1_c00374{word-spacing:0.000000pt;}
._2_c00374{margin-left:-4.742400pt;}
._e_c00374{margin-left:-3.539200pt;}
._6_c00374{margin-left:-2.048000pt;}
._9_c00374{margin-left:-1.152000pt;}
._12_c00374{width:1.472000pt;}
._0_c00374{width:3.590400pt;}
._4_c00374{width:8.774400pt;}
._10_c00374{width:10.540800pt;}
._c_c00374{width:12.012800pt;}
._1_c00374{width:14.086400pt;}
._11_c00374{width:15.929600pt;}
._b_c00374{width:18.681600pt;}
._3_c00374{width:20.249600pt;}
._f_c00374{width:22.060800pt;}
._5_c00374{width:26.899200pt;}
._8_c00374{width:28.012800pt;}
._a_c00374{width:29.824000pt;}
._7_c00374{width:30.976000pt;}
._d_c00374{width:32.691200pt;}
.fs0_c00374{font-size:64.000000pt;}
.y0_c00374{bottom:0.000000pt;}
.y1c_c00374{bottom:3.366667pt;}
.y1a_c00374{bottom:36.274667pt;}
.y1b_c00374{bottom:50.431641pt;}
.y19_c00374{bottom:72.274667pt;}
.y1_c00374{bottom:94.466667pt;}
.y18_c00374{bottom:109.602667pt;}
.y17_c00374{bottom:145.602667pt;}
.y16_c00374{bottom:182.930667pt;}
.y15_c00374{bottom:220.258667pt;}
.y14_c00374{bottom:256.258667pt;}
.y13_c00374{bottom:293.586667pt;}
.y12_c00374{bottom:329.586667pt;}
.y11_c00374{bottom:366.914667pt;}
.y10_c00374{bottom:404.242667pt;}
.yf_c00374{bottom:440.242667pt;}
.ye_c00374{bottom:477.570667pt;}
.yd_c00374{bottom:513.570667pt;}
.yc_c00374{bottom:550.898667pt;}
.yb_c00374{bottom:588.226667pt;}
.ya_c00374{bottom:624.226667pt;}
.y9_c00374{bottom:661.554667pt;}
.y8_c00374{bottom:697.554667pt;}
.y7_c00374{bottom:734.882667pt;}
.y6_c00374{bottom:772.210667pt;}
.y5_c00374{bottom:808.210667pt;}
.y4_c00374{bottom:845.538667pt;}
.y3_c00374{bottom:881.538667pt;}
.y2_c00374{bottom:918.866667pt;}
.h4_c00374{height:17.600093pt;}
.h3_c00374{height:57.375000pt;}
.h2_c00374{height:57.781250pt;}
.h5_c00374{height:64.375000pt;}
.h1_c00374{height:938.202667pt;}
.h0_c00374{height:1122.666667pt;}
.w2_c00374{width:26.696000pt;}
.w1_c00374{width:575.470667pt;}
.w0_c00374{width:793.333333pt;}
.x0_c00374{left:0.000000pt;}
.x2_c00374{left:4.402667pt;}
.x1_c00374{left:108.930667pt;}
.x3_c00374{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b5d55a54befb9ae87638b8e0.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00375;src:url('chunks/assets/font_59ecf7febacfe67f012dadb9.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00375;src:url('chunks/assets/font_41b3774a7f629335f579a3c4.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00375;src:url('chunks/assets/font_28a5b4f1884b984f295efd14.woff2')format("woff");}.ff4_c00375{font-family:ff4_c00375;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00375{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.ls1_c00375{letter-spacing:-0.014400px;}
.ls0_c00375{letter-spacing:0.000000px;}
.ls2_c00375{letter-spacing:0.014400px;}
.sc__c00375{text-shadow:none;}
.sc0_c00375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00375{-webkit-text-stroke:0px transparent;}
.sc0_c00375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00375{word-spacing:0.000000px;}
._6_c00375{margin-left:-5.342400px;}
._5_c00375{margin-left:-3.981600px;}
._c_c00375{margin-left:-2.664000px;}
._7_c00375{margin-left:-1.288800px;}
._3_c00375{width:1.540800px;}
._0_c00375{width:2.836800px;}
._d_c00375{width:4.420800px;}
._8_c00375{width:5.803200px;}
._b_c00375{width:6.955200px;}
._a_c00375{width:16.056000px;}
._10_c00375{width:18.036000px;}
._f_c00375{width:21.492000px;}
._e_c00375{width:25.466400px;}
._9_c00375{width:27.662400px;}
._2_c00375{width:33.415200px;}
._4_c00375{width:36.115200px;}
._1_c00375{width:37.404000px;}
.fc0_c00375{color:rgb(0,0,0);}
.fs0_c00375{font-size:72.000000px;}
.fs1_c00375{font-size:84.000000px;}
.y0_c00375{bottom:0.000000px;}
.y19_c00375{bottom:3.787500px;}
.y18_c00375{bottom:56.735596px;}
.y1_c00375{bottom:106.275000px;}
.y17_c00375{bottom:153.255000px;}
.y16_c00375{bottom:193.755000px;}
.y15_c00375{bottom:235.749000px;}
.y14_c00375{bottom:277.743000px;}
.y13_c00375{bottom:318.243000px;}
.y12_c00375{bottom:360.237000px;}
.y11_c00375{bottom:400.737000px;}
.y10_c00375{bottom:442.731000px;}
.yf_c00375{bottom:484.725000px;}
.ye_c00375{bottom:529.731000px;}
.yd_c00375{bottom:573.237000px;}
.yc_c00375{bottom:613.737000px;}
.yb_c00375{bottom:655.731000px;}
.ya_c00375{bottom:696.231000px;}
.y9_c00375{bottom:738.225000px;}
.y8_c00375{bottom:783.237000px;}
.y7_c00375{bottom:826.743000px;}
.y6_c00375{bottom:868.737000px;}
.y5_c00375{bottom:909.237000px;}
.y4_c00375{bottom:951.231000px;}
.y3_c00375{bottom:991.731000px;}
.y2_c00375{bottom:1033.725000px;}
.h4_c00375{height:19.800105px;}
.h2_c00375{height:64.546875px;}
.h3_c00375{height:65.003906px;}
.h5_c00375{height:72.421875px;}
.h1_c00375{height:1055.478000px;}
.h0_c00375{height:1263.000000px;}
.w2_c00375{width:30.031500px;}
.w1_c00375{width:648.978000px;}
.w0_c00375{width:892.500000px;}
.x0_c00375{left:0.000000px;}
.x2_c00375{left:5.739000px;}
.x1_c00375{left:121.761000px;}
.x3_c00375{left:734.908997px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls1_c00375{letter-spacing:-0.012800pt;}
.ls0_c00375{letter-spacing:0.000000pt;}
.ls2_c00375{letter-spacing:0.012800pt;}
.ws0_c00375{word-spacing:0.000000pt;}
._6_c00375{margin-left:-4.748800pt;}
._5_c00375{margin-left:-3.539200pt;}
._c_c00375{margin-left:-2.368000pt;}
._7_c00375{margin-left:-1.145600pt;}
._3_c00375{width:1.369600pt;}
._0_c00375{width:2.521600pt;}
._d_c00375{width:3.929600pt;}
._8_c00375{width:5.158400pt;}
._b_c00375{width:6.182400pt;}
._a_c00375{width:14.272000pt;}
._10_c00375{width:16.032000pt;}
._f_c00375{width:19.104000pt;}
._e_c00375{width:22.636800pt;}
._9_c00375{width:24.588800pt;}
._2_c00375{width:29.702400pt;}
._4_c00375{width:32.102400pt;}
._1_c00375{width:33.248000pt;}
.fs0_c00375{font-size:64.000000pt;}
.fs1_c00375{font-size:74.666667pt;}
.y0_c00375{bottom:0.000000pt;}
.y19_c00375{bottom:3.366667pt;}
.y18_c00375{bottom:50.431641pt;}
.y1_c00375{bottom:94.466667pt;}
.y17_c00375{bottom:136.226667pt;}
.y16_c00375{bottom:172.226667pt;}
.y15_c00375{bottom:209.554667pt;}
.y14_c00375{bottom:246.882667pt;}
.y13_c00375{bottom:282.882667pt;}
.y12_c00375{bottom:320.210667pt;}
.y11_c00375{bottom:356.210667pt;}
.y10_c00375{bottom:393.538667pt;}
.yf_c00375{bottom:430.866667pt;}
.ye_c00375{bottom:470.872000pt;}
.yd_c00375{bottom:509.544000pt;}
.yc_c00375{bottom:545.544000pt;}
.yb_c00375{bottom:582.872000pt;}
.ya_c00375{bottom:618.872000pt;}
.y9_c00375{bottom:656.200000pt;}
.y8_c00375{bottom:696.210667pt;}
.y7_c00375{bottom:734.882667pt;}
.y6_c00375{bottom:772.210667pt;}
.y5_c00375{bottom:808.210667pt;}
.y4_c00375{bottom:845.538667pt;}
.y3_c00375{bottom:881.538667pt;}
.y2_c00375{bottom:918.866667pt;}
.h4_c00375{height:17.600093pt;}
.h2_c00375{height:57.375000pt;}
.h3_c00375{height:57.781250pt;}
.h5_c00375{height:64.375000pt;}
.h1_c00375{height:938.202667pt;}
.h0_c00375{height:1122.666667pt;}
.w2_c00375{width:26.694667pt;}
.w1_c00375{width:576.869333pt;}
.w0_c00375{width:793.333333pt;}
.x0_c00375{left:0.000000pt;}
.x2_c00375{left:5.101333pt;}
.x1_c00375{left:108.232000pt;}
.x3_c00375{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec5d5ae6b8c470ea7e682a54.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00376;src:url('chunks/assets/font_559b32b7389dc8a345dda9fa.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00376;src:url('chunks/assets/font_8fd4d15e4f9085d8034dd7cf.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.330566;font-style: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;}
.ls1_c00376{letter-spacing:0.000000px;}
.ls0_c00376{letter-spacing:0.014400px;}
.sc__c00376{text-shadow:none;}
.sc0_c00376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00376{-webkit-text-stroke:0px transparent;}
.sc0_c00376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00376{word-spacing:0.000000px;}
._5_c00376{margin-left:-5.342400px;}
._3_c00376{margin-left:-3.974400px;}
._1_c00376{margin-left:-2.664000px;}
._4_c00376{margin-left:-1.310400px;}
._a_c00376{width:3.031200px;}
._9_c00376{width:4.140000px;}
._7_c00376{width:16.272000px;}
._2_c00376{width:21.492000px;}
._8_c00376{width:23.040000px;}
._6_c00376{width:24.408000px;}
._0_c00376{width:25.466400px;}
.fc0_c00376{color:rgb(0,0,0);}
.fs0_c00376{font-size:72.000000px;}
.y0_c00376{bottom:0.000000px;}
.yd_c00376{bottom:3.787500px;}
.yc_c00376{bottom:56.735596px;}
.y1_c00376{bottom:106.275000px;}
.yb_c00376{bottom:661.755000px;}
.ya_c00376{bottom:702.255000px;}
.y9_c00376{bottom:744.249000px;}
.y8_c00376{bottom:784.749000px;}
.y7_c00376{bottom:826.743000px;}
.y6_c00376{bottom:868.737000px;}
.y5_c00376{bottom:909.237000px;}
.y4_c00376{bottom:951.231000px;}
.y3_c00376{bottom:991.731000px;}
.y2_c00376{bottom:1033.725000px;}
.h4_c00376{height:19.800105px;}
.h2_c00376{height:64.546875px;}
.h3_c00376{height:65.003906px;}
.h5_c00376{height:72.421875px;}
.h1_c00376{height:1055.478000px;}
.h0_c00376{height:1263.000000px;}
.w2_c00376{width:30.033000px;}
.w1_c00376{width:647.404500px;}
.w0_c00376{width:892.500000px;}
.x0_c00376{left:0.000000px;}
.x2_c00376{left:4.953000px;}
.x1_c00376{left:122.547000px;}
.x3_c00376{left:127.559509px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls1_c00376{letter-spacing:0.000000pt;}
.ls0_c00376{letter-spacing:0.012800pt;}
.ws0_c00376{word-spacing:0.000000pt;}
._5_c00376{margin-left:-4.748800pt;}
._3_c00376{margin-left:-3.532800pt;}
._1_c00376{margin-left:-2.368000pt;}
._4_c00376{margin-left:-1.164800pt;}
._a_c00376{width:2.694400pt;}
._9_c00376{width:3.680000pt;}
._7_c00376{width:14.464000pt;}
._2_c00376{width:19.104000pt;}
._8_c00376{width:20.480000pt;}
._6_c00376{width:21.696000pt;}
._0_c00376{width:22.636800pt;}
.fs0_c00376{font-size:64.000000pt;}
.y0_c00376{bottom:0.000000pt;}
.yd_c00376{bottom:3.366667pt;}
.yc_c00376{bottom:50.431641pt;}
.y1_c00376{bottom:94.466667pt;}
.yb_c00376{bottom:588.226667pt;}
.ya_c00376{bottom:624.226667pt;}
.y9_c00376{bottom:661.554667pt;}
.y8_c00376{bottom:697.554667pt;}
.y7_c00376{bottom:734.882667pt;}
.y6_c00376{bottom:772.210667pt;}
.y5_c00376{bottom:808.210667pt;}
.y4_c00376{bottom:845.538667pt;}
.y3_c00376{bottom:881.538667pt;}
.y2_c00376{bottom:918.866667pt;}
.h4_c00376{height:17.600093pt;}
.h2_c00376{height:57.375000pt;}
.h3_c00376{height:57.781250pt;}
.h5_c00376{height:64.375000pt;}
.h1_c00376{height:938.202667pt;}
.h0_c00376{height:1122.666667pt;}
.w2_c00376{width:26.696000pt;}
.w1_c00376{width:575.470667pt;}
.w0_c00376{width:793.333333pt;}
.x0_c00376{left:0.000000pt;}
.x2_c00376{left:4.402667pt;}
.x1_c00376{left:108.930667pt;}
.x3_c00376{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc48f766e83121d1f84232a0.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.113281;font-style:normal;font-weight:normal;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_503459685ad84835fe41bbe9.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00377;src:url('chunks/assets/font_e76c43a96db20e7c274c4e82.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:1.330566;font-style: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;}
.ls3_c00377{letter-spacing:-0.014400px;}
.ls2_c00377{letter-spacing:0.000000px;}
.ls0_c00377{letter-spacing:0.014400px;}
.ls1_c00377{letter-spacing:2.289600px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00377{word-spacing:0.000000px;}
._4_c00377{margin-left:-5.342400px;}
._3_c00377{margin-left:-3.974400px;}
._0_c00377{margin-left:-2.664000px;}
._1_c00377{margin-left:-1.310400px;}
._7_c00377{width:1.224000px;}
._8_c00377{width:3.290400px;}
._6_c00377{width:4.586400px;}
._b_c00377{width:6.883200px;}
._9_c00377{width:12.254400px;}
._5_c00377{width:13.305600px;}
._2_c00377{width:17.258400px;}
._a_c00377{width:18.856800px;}
._f_c00377{width:28.022400px;}
._10_c00377{width:29.793600px;}
._d_c00377{width:31.248000px;}
._e_c00377{width:33.926400px;}
._c_c00377{width:35.208000px;}
.fc1_c00377{color:transparent;}
.fc0_c00377{color:rgb(0,0,0);}
.fs0_c00377{font-size:72.000000px;}
.y0_c00377{bottom:0.000000px;}
.y1b_c00377{bottom:3.787500px;}
.y1a_c00377{bottom:56.735596px;}
.y19_c00377{bottom:81.309000px;}
.y1_c00377{bottom:106.275000px;}
.y18_c00377{bottom:123.303000px;}
.y17_c00377{bottom:163.803000px;}
.y16_c00377{bottom:205.797000px;}
.y15_c00377{bottom:247.791000px;}
.y14_c00377{bottom:288.291000px;}
.y13_c00377{bottom:330.285000px;}
.y12_c00377{bottom:370.785000px;}
.y11_c00377{bottom:412.779000px;}
.y10_c00377{bottom:454.773000px;}
.yf_c00377{bottom:495.273000px;}
.ye_c00377{bottom:537.267000px;}
.yd_c00377{bottom:577.767000px;}
.yc_c00377{bottom:619.761000px;}
.yb_c00377{bottom:661.755000px;}
.ya_c00377{bottom:702.255000px;}
.y9_c00377{bottom:744.249000px;}
.y8_c00377{bottom:784.749000px;}
.y7_c00377{bottom:826.743000px;}
.y6_c00377{bottom:868.737000px;}
.y5_c00377{bottom:909.237000px;}
.y4_c00377{bottom:951.231000px;}
.y3_c00377{bottom:991.731000px;}
.y2_c00377{bottom:1033.725000px;}
.h4_c00377{height:19.800105px;}
.h3_c00377{height:64.546875px;}
.h2_c00377{height:65.003906px;}
.h5_c00377{height:72.421875px;}
.h1_c00377{height:1055.478000px;}
.h0_c00377{height:1263.000000px;}
.w2_c00377{width:30.031500px;}
.w1_c00377{width:647.404500px;}
.w0_c00377{width:892.500000px;}
.x0_c00377{left:0.000000px;}
.x2_c00377{left:4.953000px;}
.x1_c00377{left:122.547000px;}
.x3_c00377{left:734.908997px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls3_c00377{letter-spacing:-0.012800pt;}
.ls2_c00377{letter-spacing:0.000000pt;}
.ls0_c00377{letter-spacing:0.012800pt;}
.ls1_c00377{letter-spacing:2.035200pt;}
.ws0_c00377{word-spacing:0.000000pt;}
._4_c00377{margin-left:-4.748800pt;}
._3_c00377{margin-left:-3.532800pt;}
._0_c00377{margin-left:-2.368000pt;}
._1_c00377{margin-left:-1.164800pt;}
._7_c00377{width:1.088000pt;}
._8_c00377{width:2.924800pt;}
._6_c00377{width:4.076800pt;}
._b_c00377{width:6.118400pt;}
._9_c00377{width:10.892800pt;}
._5_c00377{width:11.827200pt;}
._2_c00377{width:15.340800pt;}
._a_c00377{width:16.761600pt;}
._f_c00377{width:24.908800pt;}
._10_c00377{width:26.483200pt;}
._d_c00377{width:27.776000pt;}
._e_c00377{width:30.156800pt;}
._c_c00377{width:31.296000pt;}
.fs0_c00377{font-size:64.000000pt;}
.y0_c00377{bottom:0.000000pt;}
.y1b_c00377{bottom:3.366667pt;}
.y1a_c00377{bottom:50.431641pt;}
.y19_c00377{bottom:72.274667pt;}
.y1_c00377{bottom:94.466667pt;}
.y18_c00377{bottom:109.602667pt;}
.y17_c00377{bottom:145.602667pt;}
.y16_c00377{bottom:182.930667pt;}
.y15_c00377{bottom:220.258667pt;}
.y14_c00377{bottom:256.258667pt;}
.y13_c00377{bottom:293.586667pt;}
.y12_c00377{bottom:329.586667pt;}
.y11_c00377{bottom:366.914667pt;}
.y10_c00377{bottom:404.242667pt;}
.yf_c00377{bottom:440.242667pt;}
.ye_c00377{bottom:477.570667pt;}
.yd_c00377{bottom:513.570667pt;}
.yc_c00377{bottom:550.898667pt;}
.yb_c00377{bottom:588.226667pt;}
.ya_c00377{bottom:624.226667pt;}
.y9_c00377{bottom:661.554667pt;}
.y8_c00377{bottom:697.554667pt;}
.y7_c00377{bottom:734.882667pt;}
.y6_c00377{bottom:772.210667pt;}
.y5_c00377{bottom:808.210667pt;}
.y4_c00377{bottom:845.538667pt;}
.y3_c00377{bottom:881.538667pt;}
.y2_c00377{bottom:918.866667pt;}
.h4_c00377{height:17.600093pt;}
.h3_c00377{height:57.375000pt;}
.h2_c00377{height:57.781250pt;}
.h5_c00377{height:64.375000pt;}
.h1_c00377{height:938.202667pt;}
.h0_c00377{height:1122.666667pt;}
.w2_c00377{width:26.694667pt;}
.w1_c00377{width:575.470667pt;}
.w0_c00377{width:793.333333pt;}
.x0_c00377{left:0.000000pt;}
.x2_c00377{left:4.402667pt;}
.x1_c00377{left:108.930667pt;}
.x3_c00377{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7bc835110123832ce0fef672.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.113281;font-style:normal;font-weight:normal;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_19bcea19b75937aae26b9ec8.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00378;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00378;src:url('chunks/assets/font_91b9f64110cd388f072f1561.woff2')format("woff");}.ff4_c00378{font-family:ff4_c00378;line-height:1.330566;font-style: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;}
.ls1_c00378{letter-spacing:0.000000px;}
.ls0_c00378{letter-spacing:0.014400px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00378{word-spacing:-20.030400px;}
.ws1_c00378{word-spacing:0.000000px;}
._3_c00378{margin-left:-5.378400px;}
._1_c00378{margin-left:-3.960000px;}
._f_c00378{margin-left:-2.642400px;}
._9_c00378{margin-left:-1.310400px;}
._5_c00378{width:1.058400px;}
._4_c00378{width:12.816000px;}
._7_c00378{width:14.472000px;}
._d_c00378{width:15.530400px;}
._c_c00378{width:17.143200px;}
._a_c00378{width:18.230400px;}
._e_c00378{width:21.067200px;}
._2_c00378{width:22.593600px;}
._8_c00378{width:24.156000px;}
._0_c00378{width:25.264800px;}
._6_c00378{width:26.409600px;}
._b_c00378{width:28.872000px;}
.fc0_c00378{color:rgb(0,0,0);}
.fs0_c00378{font-size:72.000000px;}
.y0_c00378{bottom:0.000000px;}
.y1a_c00378{bottom:3.787500px;}
.y19_c00378{bottom:56.735596px;}
.y1_c00378{bottom:106.275000px;}
.y18_c00378{bottom:123.303000px;}
.y17_c00378{bottom:163.803000px;}
.y16_c00378{bottom:205.797000px;}
.y15_c00378{bottom:247.791000px;}
.y14_c00378{bottom:288.291000px;}
.y13_c00378{bottom:330.285000px;}
.y12_c00378{bottom:370.785000px;}
.y11_c00378{bottom:412.779000px;}
.y10_c00378{bottom:454.773000px;}
.yf_c00378{bottom:495.273000px;}
.ye_c00378{bottom:537.267000px;}
.yd_c00378{bottom:577.767000px;}
.yc_c00378{bottom:619.761000px;}
.yb_c00378{bottom:661.755000px;}
.ya_c00378{bottom:702.255000px;}
.y9_c00378{bottom:744.249000px;}
.y8_c00378{bottom:784.749000px;}
.y7_c00378{bottom:826.743000px;}
.y6_c00378{bottom:868.737000px;}
.y5_c00378{bottom:909.237000px;}
.y4_c00378{bottom:951.231000px;}
.y3_c00378{bottom:991.731000px;}
.y2_c00378{bottom:1033.725000px;}
.h4_c00378{height:19.800105px;}
.h3_c00378{height:64.546875px;}
.h2_c00378{height:65.003906px;}
.h5_c00378{height:72.421875px;}
.h1_c00378{height:1055.478000px;}
.h0_c00378{height:1263.000000px;}
.w2_c00378{width:30.033000px;}
.w1_c00378{width:647.404500px;}
.w0_c00378{width:892.500000px;}
.x0_c00378{left:0.000000px;}
.x2_c00378{left:4.953000px;}
.x1_c00378{left:122.547000px;}
.x3_c00378{left:127.559509px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls1_c00378{letter-spacing:0.000000pt;}
.ls0_c00378{letter-spacing:0.012800pt;}
.ws0_c00378{word-spacing:-17.804800pt;}
.ws1_c00378{word-spacing:0.000000pt;}
._3_c00378{margin-left:-4.780800pt;}
._1_c00378{margin-left:-3.520000pt;}
._f_c00378{margin-left:-2.348800pt;}
._9_c00378{margin-left:-1.164800pt;}
._5_c00378{width:0.940800pt;}
._4_c00378{width:11.392000pt;}
._7_c00378{width:12.864000pt;}
._d_c00378{width:13.804800pt;}
._c_c00378{width:15.238400pt;}
._a_c00378{width:16.204800pt;}
._e_c00378{width:18.726400pt;}
._2_c00378{width:20.083200pt;}
._8_c00378{width:21.472000pt;}
._0_c00378{width:22.457600pt;}
._6_c00378{width:23.475200pt;}
._b_c00378{width:25.664000pt;}
.fs0_c00378{font-size:64.000000pt;}
.y0_c00378{bottom:0.000000pt;}
.y1a_c00378{bottom:3.366667pt;}
.y19_c00378{bottom:50.431641pt;}
.y1_c00378{bottom:94.466667pt;}
.y18_c00378{bottom:109.602667pt;}
.y17_c00378{bottom:145.602667pt;}
.y16_c00378{bottom:182.930667pt;}
.y15_c00378{bottom:220.258667pt;}
.y14_c00378{bottom:256.258667pt;}
.y13_c00378{bottom:293.586667pt;}
.y12_c00378{bottom:329.586667pt;}
.y11_c00378{bottom:366.914667pt;}
.y10_c00378{bottom:404.242667pt;}
.yf_c00378{bottom:440.242667pt;}
.ye_c00378{bottom:477.570667pt;}
.yd_c00378{bottom:513.570667pt;}
.yc_c00378{bottom:550.898667pt;}
.yb_c00378{bottom:588.226667pt;}
.ya_c00378{bottom:624.226667pt;}
.y9_c00378{bottom:661.554667pt;}
.y8_c00378{bottom:697.554667pt;}
.y7_c00378{bottom:734.882667pt;}
.y6_c00378{bottom:772.210667pt;}
.y5_c00378{bottom:808.210667pt;}
.y4_c00378{bottom:845.538667pt;}
.y3_c00378{bottom:881.538667pt;}
.y2_c00378{bottom:918.866667pt;}
.h4_c00378{height:17.600093pt;}
.h3_c00378{height:57.375000pt;}
.h2_c00378{height:57.781250pt;}
.h5_c00378{height:64.375000pt;}
.h1_c00378{height:938.202667pt;}
.h0_c00378{height:1122.666667pt;}
.w2_c00378{width:26.696000pt;}
.w1_c00378{width:575.470667pt;}
.w0_c00378{width:793.333333pt;}
.x0_c00378{left:0.000000pt;}
.x2_c00378{left:4.402667pt;}
.x1_c00378{left:108.930667pt;}
.x3_c00378{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_27afe5ce7e70da76f68bb8f6.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00379;src:url('chunks/assets/font_63fabf3dfb91ea6f8339c042.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00379;src:url('chunks/assets/font_41b3774a7f629335f579a3c4.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00379;src:url('chunks/assets/font_af30c89d4f76b90c4fdf84d3.woff2')format("woff");}.ff4_c00379{font-family:ff4_c00379;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00379;src:url('chunks/assets/font_2e26e216cfc6b582ef04b069.woff2')format("woff");}.ff5_c00379{font-family:ff5_c00379;line-height:1.330566;font-style: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;}
.ls2_c00379{letter-spacing:0.000000px;}
.ls0_c00379{letter-spacing:0.014400px;}
.ls1_c00379{letter-spacing:2.563200px;}
.ls3_c00379{letter-spacing:2.577600px;}
.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:-20.030400px;}
.ws1_c00379{word-spacing:0.000000px;}
._3_c00379{margin-left:-5.364000px;}
._1_c00379{margin-left:-3.974400px;}
._4_c00379{margin-left:-2.592000px;}
._6_c00379{margin-left:-1.324800px;}
._f_c00379{width:1.375200px;}
._7_c00379{width:2.606400px;}
._c_c00379{width:3.628800px;}
._b_c00379{width:4.665600px;}
._12_c00379{width:6.213600px;}
._2_c00379{width:11.246400px;}
._0_c00379{width:12.549600px;}
._15_c00379{width:17.870400px;}
._a_c00379{width:23.623200px;}
._e_c00379{width:25.192800px;}
._d_c00379{width:29.138400px;}
._9_c00379{width:30.247200px;}
._8_c00379{width:31.543200px;}
._11_c00379{width:32.688000px;}
._5_c00379{width:34.689600px;}
._10_c00379{width:36.676800px;}
._14_c00379{width:37.814400px;}
._13_c00379{width:39.096000px;}
.fc0_c00379{color:rgb(0,0,0);}
.fs0_c00379{font-size:72.000000px;}
.fs1_c00379{font-size:84.000000px;}
.y0_c00379{bottom:0.000000px;}
.y1c_c00379{bottom:3.787500px;}
.y1a_c00379{bottom:45.249000px;}
.y1b_c00379{bottom:56.735596px;}
.y19_c00379{bottom:85.749000px;}
.y1_c00379{bottom:106.275000px;}
.y18_c00379{bottom:127.743000px;}
.y17_c00379{bottom:168.243000px;}
.y16_c00379{bottom:210.237000px;}
.y15_c00379{bottom:252.231000px;}
.y14_c00379{bottom:292.731000px;}
.y13_c00379{bottom:334.725000px;}
.y12_c00379{bottom:375.225000px;}
.y11_c00379{bottom:417.219000px;}
.y10_c00379{bottom:451.725000px;}
.yf_c00379{bottom:487.749000px;}
.ye_c00379{bottom:531.255000px;}
.yd_c00379{bottom:573.249000px;}
.yc_c00379{bottom:613.749000px;}
.yb_c00379{bottom:655.743000px;}
.ya_c00379{bottom:696.243000px;}
.y9_c00379{bottom:738.237000px;}
.y8_c00379{bottom:780.231000px;}
.y7_c00379{bottom:820.731000px;}
.y6_c00379{bottom:862.725000px;}
.y5_c00379{bottom:907.725000px;}
.y4_c00379{bottom:951.231000px;}
.y3_c00379{bottom:991.731000px;}
.y2_c00379{bottom:1033.725000px;}
.h4_c00379{height:19.800105px;}
.h2_c00379{height:64.546875px;}
.h3_c00379{height:65.003906px;}
.h5_c00379{height:72.421875px;}
.h1_c00379{height:1055.478000px;}
.h0_c00379{height:1263.000000px;}
.w2_c00379{width:30.031500px;}
.w1_c00379{width:648.978000px;}
.w0_c00379{width:892.500000px;}
.x0_c00379{left:0.000000px;}
.x2_c00379{left:5.739000px;}
.x1_c00379{left:121.761000px;}
.x3_c00379{left:734.908997px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls2_c00379{letter-spacing:0.000000pt;}
.ls0_c00379{letter-spacing:0.012800pt;}
.ls1_c00379{letter-spacing:2.278400pt;}
.ls3_c00379{letter-spacing:2.291200pt;}
.ws0_c00379{word-spacing:-17.804800pt;}
.ws1_c00379{word-spacing:0.000000pt;}
._3_c00379{margin-left:-4.768000pt;}
._1_c00379{margin-left:-3.532800pt;}
._4_c00379{margin-left:-2.304000pt;}
._6_c00379{margin-left:-1.177600pt;}
._f_c00379{width:1.222400pt;}
._7_c00379{width:2.316800pt;}
._c_c00379{width:3.225600pt;}
._b_c00379{width:4.147200pt;}
._12_c00379{width:5.523200pt;}
._2_c00379{width:9.996800pt;}
._0_c00379{width:11.155200pt;}
._15_c00379{width:15.884800pt;}
._a_c00379{width:20.998400pt;}
._e_c00379{width:22.393600pt;}
._d_c00379{width:25.900800pt;}
._9_c00379{width:26.886400pt;}
._8_c00379{width:28.038400pt;}
._11_c00379{width:29.056000pt;}
._5_c00379{width:30.835200pt;}
._10_c00379{width:32.601600pt;}
._14_c00379{width:33.612800pt;}
._13_c00379{width:34.752000pt;}
.fs0_c00379{font-size:64.000000pt;}
.fs1_c00379{font-size:74.666667pt;}
.y0_c00379{bottom:0.000000pt;}
.y1c_c00379{bottom:3.366667pt;}
.y1a_c00379{bottom:40.221333pt;}
.y1b_c00379{bottom:50.431641pt;}
.y19_c00379{bottom:76.221333pt;}
.y1_c00379{bottom:94.466667pt;}
.y18_c00379{bottom:113.549333pt;}
.y17_c00379{bottom:149.549333pt;}
.y16_c00379{bottom:186.877333pt;}
.y15_c00379{bottom:224.205333pt;}
.y14_c00379{bottom:260.205333pt;}
.y13_c00379{bottom:297.533333pt;}
.y12_c00379{bottom:333.533333pt;}
.y11_c00379{bottom:370.861333pt;}
.y10_c00379{bottom:401.533333pt;}
.yf_c00379{bottom:433.554667pt;}
.ye_c00379{bottom:472.226667pt;}
.yd_c00379{bottom:509.554667pt;}
.yc_c00379{bottom:545.554667pt;}
.yb_c00379{bottom:582.882667pt;}
.ya_c00379{bottom:618.882667pt;}
.y9_c00379{bottom:656.210667pt;}
.y8_c00379{bottom:693.538667pt;}
.y7_c00379{bottom:729.538667pt;}
.y6_c00379{bottom:766.866667pt;}
.y5_c00379{bottom:806.866667pt;}
.y4_c00379{bottom:845.538667pt;}
.y3_c00379{bottom:881.538667pt;}
.y2_c00379{bottom:918.866667pt;}
.h4_c00379{height:17.600093pt;}
.h2_c00379{height:57.375000pt;}
.h3_c00379{height:57.781250pt;}
.h5_c00379{height:64.375000pt;}
.h1_c00379{height:938.202667pt;}
.h0_c00379{height:1122.666667pt;}
.w2_c00379{width:26.694667pt;}
.w1_c00379{width:576.869333pt;}
.w0_c00379{width:793.333333pt;}
.x0_c00379{left:0.000000pt;}
.x2_c00379{left:5.101333pt;}
.x1_c00379{left:108.232000pt;}
.x3_c00379{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eeed4901056a63de462bb535.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00380;src:url('chunks/assets/font_fd8941b2258ce53068bb370c.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00380;src:url('chunks/assets/font_81330e392053145cf4f862d5.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:1.330566;font-style: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;}
.ls2_c00380{letter-spacing:-0.014400px;}
.ls1_c00380{letter-spacing:0.000000px;}
.ls0_c00380{letter-spacing:0.014400px;}
.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;}
}
.ws0_c00380{word-spacing:0.000000px;}
._0_c00380{margin-left:-4.521600px;}
._3_c00380{margin-left:-2.390400px;}
._6_c00380{margin-left:-1.044000px;}
._5_c00380{width:1.454400px;}
._7_c00380{width:3.110400px;}
._1_c00380{width:16.315200px;}
._4_c00380{width:18.777600px;}
._2_c00380{width:21.110400px;}
.fc0_c00380{color:rgb(0,0,0);}
.fs0_c00380{font-size:72.000000px;}
.y0_c00380{bottom:0.000000px;}
.yb_c00380{bottom:3.787500px;}
.ya_c00380{bottom:56.735596px;}
.y1_c00380{bottom:106.275000px;}
.y9_c00380{bottom:744.249000px;}
.y8_c00380{bottom:784.749000px;}
.y7_c00380{bottom:826.743000px;}
.y6_c00380{bottom:868.737000px;}
.y5_c00380{bottom:909.237000px;}
.y4_c00380{bottom:951.231000px;}
.y3_c00380{bottom:991.731000px;}
.y2_c00380{bottom:1033.725000px;}
.h4_c00380{height:19.800105px;}
.h2_c00380{height:64.546875px;}
.h3_c00380{height:65.003906px;}
.h5_c00380{height:72.421875px;}
.h1_c00380{height:1055.478000px;}
.h0_c00380{height:1263.000000px;}
.w2_c00380{width:30.033000px;}
.w1_c00380{width:647.404500px;}
.w0_c00380{width:892.500000px;}
.x0_c00380{left:0.000000px;}
.x2_c00380{left:4.953000px;}
.x1_c00380{left:122.547000px;}
.x3_c00380{left:127.559509px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls2_c00380{letter-spacing:-0.012800pt;}
.ls1_c00380{letter-spacing:0.000000pt;}
.ls0_c00380{letter-spacing:0.012800pt;}
.ws0_c00380{word-spacing:0.000000pt;}
._0_c00380{margin-left:-4.019200pt;}
._3_c00380{margin-left:-2.124800pt;}
._6_c00380{margin-left:-0.928000pt;}
._5_c00380{width:1.292800pt;}
._7_c00380{width:2.764800pt;}
._1_c00380{width:14.502400pt;}
._4_c00380{width:16.691200pt;}
._2_c00380{width:18.764800pt;}
.fs0_c00380{font-size:64.000000pt;}
.y0_c00380{bottom:0.000000pt;}
.yb_c00380{bottom:3.366667pt;}
.ya_c00380{bottom:50.431641pt;}
.y1_c00380{bottom:94.466667pt;}
.y9_c00380{bottom:661.554667pt;}
.y8_c00380{bottom:697.554667pt;}
.y7_c00380{bottom:734.882667pt;}
.y6_c00380{bottom:772.210667pt;}
.y5_c00380{bottom:808.210667pt;}
.y4_c00380{bottom:845.538667pt;}
.y3_c00380{bottom:881.538667pt;}
.y2_c00380{bottom:918.866667pt;}
.h4_c00380{height:17.600093pt;}
.h2_c00380{height:57.375000pt;}
.h3_c00380{height:57.781250pt;}
.h5_c00380{height:64.375000pt;}
.h1_c00380{height:938.202667pt;}
.h0_c00380{height:1122.666667pt;}
.w2_c00380{width:26.696000pt;}
.w1_c00380{width:575.470667pt;}
.w0_c00380{width:793.333333pt;}
.x0_c00380{left:0.000000pt;}
.x2_c00380{left:4.402667pt;}
.x1_c00380{left:108.930667pt;}
.x3_c00380{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f22ec3f90cdd4dd913b5adec.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.113281;font-style:normal;font-weight:normal;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_2be8175e19388ba54b3dab84.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00381;src:url('chunks/assets/font_2fdad322d9a9a478f4f16846.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:1.330566;font-style: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;}
.ls3_c00381{letter-spacing:-2.685600px;}
.ls2_c00381{letter-spacing:0.000000px;}
.ls0_c00381{letter-spacing:0.014400px;}
.ls1_c00381{letter-spacing:2.289600px;}
.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:-20.030400px;}
.ws1_c00381{word-spacing:0.000000px;}
._4_c00381{margin-left:-5.342400px;}
._3_c00381{margin-left:-3.974400px;}
._0_c00381{margin-left:-2.664000px;}
._1_c00381{margin-left:-1.310400px;}
._7_c00381{width:1.224000px;}
._8_c00381{width:3.290400px;}
._6_c00381{width:4.586400px;}
._c_c00381{width:10.166400px;}
._5_c00381{width:13.305600px;}
._2_c00381{width:17.258400px;}
._a_c00381{width:31.248000px;}
._b_c00381{width:33.926400px;}
._9_c00381{width:35.208000px;}
.fc1_c00381{color:transparent;}
.fc0_c00381{color:rgb(0,0,0);}
.fs0_c00381{font-size:72.000000px;}
.y0_c00381{bottom:0.000000px;}
.y1b_c00381{bottom:3.787500px;}
.y1a_c00381{bottom:56.735596px;}
.y19_c00381{bottom:81.309000px;}
.y1_c00381{bottom:106.275000px;}
.y18_c00381{bottom:123.303000px;}
.y17_c00381{bottom:163.803000px;}
.y16_c00381{bottom:205.797000px;}
.y15_c00381{bottom:247.791000px;}
.y14_c00381{bottom:288.291000px;}
.y13_c00381{bottom:330.285000px;}
.y12_c00381{bottom:370.785000px;}
.y11_c00381{bottom:412.779000px;}
.y10_c00381{bottom:454.773000px;}
.yf_c00381{bottom:495.273000px;}
.ye_c00381{bottom:537.267000px;}
.yd_c00381{bottom:577.767000px;}
.yc_c00381{bottom:619.761000px;}
.yb_c00381{bottom:661.755000px;}
.ya_c00381{bottom:702.255000px;}
.y9_c00381{bottom:744.249000px;}
.y8_c00381{bottom:784.749000px;}
.y7_c00381{bottom:826.743000px;}
.y6_c00381{bottom:868.737000px;}
.y5_c00381{bottom:909.237000px;}
.y4_c00381{bottom:951.231000px;}
.y3_c00381{bottom:991.731000px;}
.y2_c00381{bottom:1033.725000px;}
.h4_c00381{height:19.800105px;}
.h3_c00381{height:64.546875px;}
.h2_c00381{height:65.003906px;}
.h5_c00381{height:72.421875px;}
.h1_c00381{height:1055.478000px;}
.h0_c00381{height:1263.000000px;}
.w2_c00381{width:30.031500px;}
.w1_c00381{width:647.404500px;}
.w0_c00381{width:892.500000px;}
.x0_c00381{left:0.000000px;}
.x2_c00381{left:4.953000px;}
.x1_c00381{left:122.547000px;}
.x3_c00381{left:734.908997px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls3_c00381{letter-spacing:-2.387200pt;}
.ls2_c00381{letter-spacing:0.000000pt;}
.ls0_c00381{letter-spacing:0.012800pt;}
.ls1_c00381{letter-spacing:2.035200pt;}
.ws0_c00381{word-spacing:-17.804800pt;}
.ws1_c00381{word-spacing:0.000000pt;}
._4_c00381{margin-left:-4.748800pt;}
._3_c00381{margin-left:-3.532800pt;}
._0_c00381{margin-left:-2.368000pt;}
._1_c00381{margin-left:-1.164800pt;}
._7_c00381{width:1.088000pt;}
._8_c00381{width:2.924800pt;}
._6_c00381{width:4.076800pt;}
._c_c00381{width:9.036800pt;}
._5_c00381{width:11.827200pt;}
._2_c00381{width:15.340800pt;}
._a_c00381{width:27.776000pt;}
._b_c00381{width:30.156800pt;}
._9_c00381{width:31.296000pt;}
.fs0_c00381{font-size:64.000000pt;}
.y0_c00381{bottom:0.000000pt;}
.y1b_c00381{bottom:3.366667pt;}
.y1a_c00381{bottom:50.431641pt;}
.y19_c00381{bottom:72.274667pt;}
.y1_c00381{bottom:94.466667pt;}
.y18_c00381{bottom:109.602667pt;}
.y17_c00381{bottom:145.602667pt;}
.y16_c00381{bottom:182.930667pt;}
.y15_c00381{bottom:220.258667pt;}
.y14_c00381{bottom:256.258667pt;}
.y13_c00381{bottom:293.586667pt;}
.y12_c00381{bottom:329.586667pt;}
.y11_c00381{bottom:366.914667pt;}
.y10_c00381{bottom:404.242667pt;}
.yf_c00381{bottom:440.242667pt;}
.ye_c00381{bottom:477.570667pt;}
.yd_c00381{bottom:513.570667pt;}
.yc_c00381{bottom:550.898667pt;}
.yb_c00381{bottom:588.226667pt;}
.ya_c00381{bottom:624.226667pt;}
.y9_c00381{bottom:661.554667pt;}
.y8_c00381{bottom:697.554667pt;}
.y7_c00381{bottom:734.882667pt;}
.y6_c00381{bottom:772.210667pt;}
.y5_c00381{bottom:808.210667pt;}
.y4_c00381{bottom:845.538667pt;}
.y3_c00381{bottom:881.538667pt;}
.y2_c00381{bottom:918.866667pt;}
.h4_c00381{height:17.600093pt;}
.h3_c00381{height:57.375000pt;}
.h2_c00381{height:57.781250pt;}
.h5_c00381{height:64.375000pt;}
.h1_c00381{height:938.202667pt;}
.h0_c00381{height:1122.666667pt;}
.w2_c00381{width:26.694667pt;}
.w1_c00381{width:575.470667pt;}
.w0_c00381{width:793.333333pt;}
.x0_c00381{left:0.000000pt;}
.x2_c00381{left:4.402667pt;}
.x1_c00381{left:108.930667pt;}
.x3_c00381{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38fcec4c22e3a006a445967e.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00382;src:url('chunks/assets/font_c7f77380a84fb97f61f194de.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00382;src:url('chunks/assets/font_41b3774a7f629335f579a3c4.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00382;src:url('chunks/assets/font_2e26e216cfc6b582ef04b069.woff2')format("woff");}.ff4_c00382{font-family:ff4_c00382;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00382{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.ls1_c00382{letter-spacing:0.000000px;}
.ls0_c00382{letter-spacing:0.014400px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00382{word-spacing:-20.030400px;}
.ws1_c00382{word-spacing:0.000000px;}
._5_c00382{margin-left:-5.342400px;}
._4_c00382{margin-left:-3.981600px;}
._3_c00382{margin-left:-2.664000px;}
._2_c00382{margin-left:-1.288800px;}
._9_c00382{width:1.375200px;}
._d_c00382{width:6.213600px;}
._7_c00382{width:11.260800px;}
._6_c00382{width:12.549600px;}
._1_c00382{width:21.686400px;}
._0_c00382{width:24.818400px;}
._8_c00382{width:29.138400px;}
._b_c00382{width:32.688000px;}
._c_c00382{width:35.460000px;}
._a_c00382{width:36.676800px;}
._f_c00382{width:37.828800px;}
._e_c00382{width:39.096000px;}
.fc0_c00382{color:rgb(0,0,0);}
.fs0_c00382{font-size:72.000000px;}
.fs1_c00382{font-size:84.000000px;}
.y0_c00382{bottom:0.000000px;}
.y1a_c00382{bottom:3.787500px;}
.y19_c00382{bottom:56.735596px;}
.y1_c00382{bottom:106.275000px;}
.y18_c00382{bottom:127.749000px;}
.y17_c00382{bottom:168.249000px;}
.y16_c00382{bottom:210.243000px;}
.y15_c00382{bottom:252.237000px;}
.y14_c00382{bottom:292.737000px;}
.y13_c00382{bottom:334.731000px;}
.y12_c00382{bottom:375.231000px;}
.y11_c00382{bottom:417.225000px;}
.y10_c00382{bottom:459.219000px;}
.yf_c00382{bottom:493.725000px;}
.ye_c00382{bottom:529.725000px;}
.yd_c00382{bottom:573.231000px;}
.yc_c00382{bottom:613.731000px;}
.yb_c00382{bottom:655.725000px;}
.ya_c00382{bottom:700.743000px;}
.y9_c00382{bottom:744.249000px;}
.y8_c00382{bottom:784.749000px;}
.y7_c00382{bottom:826.743000px;}
.y6_c00382{bottom:868.737000px;}
.y5_c00382{bottom:909.237000px;}
.y4_c00382{bottom:951.231000px;}
.y3_c00382{bottom:991.731000px;}
.y2_c00382{bottom:1033.725000px;}
.h4_c00382{height:19.800105px;}
.h2_c00382{height:64.546875px;}
.h3_c00382{height:65.003906px;}
.h5_c00382{height:72.421875px;}
.h1_c00382{height:1055.478000px;}
.h0_c00382{height:1263.000000px;}
.w2_c00382{width:30.033000px;}
.w1_c00382{width:648.978000px;}
.w0_c00382{width:892.500000px;}
.x0_c00382{left:0.000000px;}
.x2_c00382{left:5.739000px;}
.x1_c00382{left:121.761000px;}
.x3_c00382{left:127.559509px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls1_c00382{letter-spacing:0.000000pt;}
.ls0_c00382{letter-spacing:0.012800pt;}
.ws0_c00382{word-spacing:-17.804800pt;}
.ws1_c00382{word-spacing:0.000000pt;}
._5_c00382{margin-left:-4.748800pt;}
._4_c00382{margin-left:-3.539200pt;}
._3_c00382{margin-left:-2.368000pt;}
._2_c00382{margin-left:-1.145600pt;}
._9_c00382{width:1.222400pt;}
._d_c00382{width:5.523200pt;}
._7_c00382{width:10.009600pt;}
._6_c00382{width:11.155200pt;}
._1_c00382{width:19.276800pt;}
._0_c00382{width:22.060800pt;}
._8_c00382{width:25.900800pt;}
._b_c00382{width:29.056000pt;}
._c_c00382{width:31.520000pt;}
._a_c00382{width:32.601600pt;}
._f_c00382{width:33.625600pt;}
._e_c00382{width:34.752000pt;}
.fs0_c00382{font-size:64.000000pt;}
.fs1_c00382{font-size:74.666667pt;}
.y0_c00382{bottom:0.000000pt;}
.y1a_c00382{bottom:3.366667pt;}
.y19_c00382{bottom:50.431641pt;}
.y1_c00382{bottom:94.466667pt;}
.y18_c00382{bottom:113.554667pt;}
.y17_c00382{bottom:149.554667pt;}
.y16_c00382{bottom:186.882667pt;}
.y15_c00382{bottom:224.210667pt;}
.y14_c00382{bottom:260.210667pt;}
.y13_c00382{bottom:297.538667pt;}
.y12_c00382{bottom:333.538667pt;}
.y11_c00382{bottom:370.866667pt;}
.y10_c00382{bottom:408.194667pt;}
.yf_c00382{bottom:438.866667pt;}
.ye_c00382{bottom:470.866667pt;}
.yd_c00382{bottom:509.538667pt;}
.yc_c00382{bottom:545.538667pt;}
.yb_c00382{bottom:582.866667pt;}
.ya_c00382{bottom:622.882667pt;}
.y9_c00382{bottom:661.554667pt;}
.y8_c00382{bottom:697.554667pt;}
.y7_c00382{bottom:734.882667pt;}
.y6_c00382{bottom:772.210667pt;}
.y5_c00382{bottom:808.210667pt;}
.y4_c00382{bottom:845.538667pt;}
.y3_c00382{bottom:881.538667pt;}
.y2_c00382{bottom:918.866667pt;}
.h4_c00382{height:17.600093pt;}
.h2_c00382{height:57.375000pt;}
.h3_c00382{height:57.781250pt;}
.h5_c00382{height:64.375000pt;}
.h1_c00382{height:938.202667pt;}
.h0_c00382{height:1122.666667pt;}
.w2_c00382{width:26.696000pt;}
.w1_c00382{width:576.869333pt;}
.w0_c00382{width:793.333333pt;}
.x0_c00382{left:0.000000pt;}
.x2_c00382{left:5.101333pt;}
.x1_c00382{left:108.232000pt;}
.x3_c00382{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d0939354af92316374d6eb43.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00383;src:url('chunks/assets/font_3c97e9b2c9a581ca1d3dc0d6.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00383;src:url('chunks/assets/font_f890fd3856b3042cc6655c25.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:1.330566;font-style: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;}
.ls1_c00383{letter-spacing:0.000000px;}
.ls0_c00383{letter-spacing:0.014400px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00383{word-spacing:0.000000px;}
._0_c00383{margin-left:-4.521600px;}
._3_c00383{margin-left:-2.390400px;}
._5_c00383{margin-left:-1.044000px;}
._6_c00383{width:14.342400px;}
._1_c00383{width:16.315200px;}
._4_c00383{width:18.777600px;}
._2_c00383{width:21.110400px;}
.fc0_c00383{color:rgb(0,0,0);}
.fs0_c00383{font-size:72.000000px;}
.y0_c00383{bottom:0.000000px;}
.y9_c00383{bottom:3.787500px;}
.y8_c00383{bottom:56.735596px;}
.y1_c00383{bottom:106.275000px;}
.y7_c00383{bottom:826.743000px;}
.y6_c00383{bottom:868.737000px;}
.y5_c00383{bottom:909.237000px;}
.y4_c00383{bottom:951.231000px;}
.y3_c00383{bottom:991.731000px;}
.y2_c00383{bottom:1033.725000px;}
.h4_c00383{height:19.800105px;}
.h2_c00383{height:64.546875px;}
.h3_c00383{height:65.003906px;}
.h5_c00383{height:72.421875px;}
.h1_c00383{height:1055.478000px;}
.h0_c00383{height:1263.000000px;}
.w2_c00383{width:30.031500px;}
.w1_c00383{width:647.404500px;}
.w0_c00383{width:892.500000px;}
.x0_c00383{left:0.000000px;}
.x2_c00383{left:4.953000px;}
.x1_c00383{left:122.547000px;}
.x3_c00383{left:734.908997px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls1_c00383{letter-spacing:0.000000pt;}
.ls0_c00383{letter-spacing:0.012800pt;}
.ws0_c00383{word-spacing:0.000000pt;}
._0_c00383{margin-left:-4.019200pt;}
._3_c00383{margin-left:-2.124800pt;}
._5_c00383{margin-left:-0.928000pt;}
._6_c00383{width:12.748800pt;}
._1_c00383{width:14.502400pt;}
._4_c00383{width:16.691200pt;}
._2_c00383{width:18.764800pt;}
.fs0_c00383{font-size:64.000000pt;}
.y0_c00383{bottom:0.000000pt;}
.y9_c00383{bottom:3.366667pt;}
.y8_c00383{bottom:50.431641pt;}
.y1_c00383{bottom:94.466667pt;}
.y7_c00383{bottom:734.882667pt;}
.y6_c00383{bottom:772.210667pt;}
.y5_c00383{bottom:808.210667pt;}
.y4_c00383{bottom:845.538667pt;}
.y3_c00383{bottom:881.538667pt;}
.y2_c00383{bottom:918.866667pt;}
.h4_c00383{height:17.600093pt;}
.h2_c00383{height:57.375000pt;}
.h3_c00383{height:57.781250pt;}
.h5_c00383{height:64.375000pt;}
.h1_c00383{height:938.202667pt;}
.h0_c00383{height:1122.666667pt;}
.w2_c00383{width:26.694667pt;}
.w1_c00383{width:575.470667pt;}
.w0_c00383{width:793.333333pt;}
.x0_c00383{left:0.000000pt;}
.x2_c00383{left:4.402667pt;}
.x1_c00383{left:108.930667pt;}
.x3_c00383{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e832ccf6296f88d14ab2d05d.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.113281;font-style:normal;font-weight:normal;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_ce5d12bc4f2ed9d717deba7f.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00384;src:url('chunks/assets/font_c6bd7b78707b7cd307ddaee9.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:1.330566;font-style: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;}
.ls3_c00384{letter-spacing:-0.014400px;}
.ls2_c00384{letter-spacing:0.000000px;}
.ls0_c00384{letter-spacing:0.014400px;}
.ls1_c00384{letter-spacing:2.289600px;}
.sc__c00384{text-shadow:none;}
.sc0_c00384{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00384{-webkit-text-stroke:0px transparent;}
.sc0_c00384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00384{word-spacing:0.000000px;}
._7_c00384{margin-left:-5.342400px;}
._6_c00384{margin-left:-3.974400px;}
._0_c00384{margin-left:-2.664000px;}
._1_c00384{margin-left:-1.310400px;}
._2_c00384{width:1.094400px;}
._a_c00384{width:3.420000px;}
._9_c00384{width:4.586400px;}
._3_c00384{width:5.680800px;}
._c_c00384{width:8.150400px;}
._8_c00384{width:13.305600px;}
._4_c00384{width:14.702400px;}
._b_c00384{width:15.868800px;}
._5_c00384{width:17.258400px;}
._e_c00384{width:31.248000px;}
._f_c00384{width:33.926400px;}
._d_c00384{width:35.208000px;}
.fc1_c00384{color:transparent;}
.fc0_c00384{color:rgb(0,0,0);}
.fs0_c00384{font-size:72.000000px;}
.y0_c00384{bottom:0.000000px;}
.y1c_c00384{bottom:3.787500px;}
.y1a_c00384{bottom:40.809000px;}
.y1b_c00384{bottom:56.735596px;}
.y19_c00384{bottom:81.309000px;}
.y1_c00384{bottom:106.275000px;}
.y18_c00384{bottom:123.303000px;}
.y17_c00384{bottom:163.803000px;}
.y16_c00384{bottom:205.797000px;}
.y15_c00384{bottom:247.791000px;}
.y14_c00384{bottom:288.291000px;}
.y13_c00384{bottom:330.285000px;}
.y12_c00384{bottom:370.785000px;}
.y11_c00384{bottom:412.779000px;}
.y10_c00384{bottom:454.773000px;}
.yf_c00384{bottom:495.273000px;}
.ye_c00384{bottom:537.267000px;}
.yd_c00384{bottom:577.767000px;}
.yc_c00384{bottom:619.761000px;}
.yb_c00384{bottom:661.755000px;}
.ya_c00384{bottom:702.255000px;}
.y9_c00384{bottom:744.249000px;}
.y8_c00384{bottom:784.749000px;}
.y7_c00384{bottom:826.743000px;}
.y6_c00384{bottom:868.737000px;}
.y5_c00384{bottom:909.237000px;}
.y4_c00384{bottom:951.231000px;}
.y3_c00384{bottom:991.731000px;}
.y2_c00384{bottom:1033.725000px;}
.h4_c00384{height:19.800105px;}
.h3_c00384{height:64.546875px;}
.h2_c00384{height:65.003906px;}
.h5_c00384{height:72.421875px;}
.h1_c00384{height:1055.478000px;}
.h0_c00384{height:1263.000000px;}
.w2_c00384{width:30.033000px;}
.w1_c00384{width:647.404500px;}
.w0_c00384{width:892.500000px;}
.x0_c00384{left:0.000000px;}
.x2_c00384{left:4.953000px;}
.x1_c00384{left:122.547000px;}
.x3_c00384{left:127.559509px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls3_c00384{letter-spacing:-0.012800pt;}
.ls2_c00384{letter-spacing:0.000000pt;}
.ls0_c00384{letter-spacing:0.012800pt;}
.ls1_c00384{letter-spacing:2.035200pt;}
.ws0_c00384{word-spacing:0.000000pt;}
._7_c00384{margin-left:-4.748800pt;}
._6_c00384{margin-left:-3.532800pt;}
._0_c00384{margin-left:-2.368000pt;}
._1_c00384{margin-left:-1.164800pt;}
._2_c00384{width:0.972800pt;}
._a_c00384{width:3.040000pt;}
._9_c00384{width:4.076800pt;}
._3_c00384{width:5.049600pt;}
._c_c00384{width:7.244800pt;}
._8_c00384{width:11.827200pt;}
._4_c00384{width:13.068800pt;}
._b_c00384{width:14.105600pt;}
._5_c00384{width:15.340800pt;}
._e_c00384{width:27.776000pt;}
._f_c00384{width:30.156800pt;}
._d_c00384{width:31.296000pt;}
.fs0_c00384{font-size:64.000000pt;}
.y0_c00384{bottom:0.000000pt;}
.y1c_c00384{bottom:3.366667pt;}
.y1a_c00384{bottom:36.274667pt;}
.y1b_c00384{bottom:50.431641pt;}
.y19_c00384{bottom:72.274667pt;}
.y1_c00384{bottom:94.466667pt;}
.y18_c00384{bottom:109.602667pt;}
.y17_c00384{bottom:145.602667pt;}
.y16_c00384{bottom:182.930667pt;}
.y15_c00384{bottom:220.258667pt;}
.y14_c00384{bottom:256.258667pt;}
.y13_c00384{bottom:293.586667pt;}
.y12_c00384{bottom:329.586667pt;}
.y11_c00384{bottom:366.914667pt;}
.y10_c00384{bottom:404.242667pt;}
.yf_c00384{bottom:440.242667pt;}
.ye_c00384{bottom:477.570667pt;}
.yd_c00384{bottom:513.570667pt;}
.yc_c00384{bottom:550.898667pt;}
.yb_c00384{bottom:588.226667pt;}
.ya_c00384{bottom:624.226667pt;}
.y9_c00384{bottom:661.554667pt;}
.y8_c00384{bottom:697.554667pt;}
.y7_c00384{bottom:734.882667pt;}
.y6_c00384{bottom:772.210667pt;}
.y5_c00384{bottom:808.210667pt;}
.y4_c00384{bottom:845.538667pt;}
.y3_c00384{bottom:881.538667pt;}
.y2_c00384{bottom:918.866667pt;}
.h4_c00384{height:17.600093pt;}
.h3_c00384{height:57.375000pt;}
.h2_c00384{height:57.781250pt;}
.h5_c00384{height:64.375000pt;}
.h1_c00384{height:938.202667pt;}
.h0_c00384{height:1122.666667pt;}
.w2_c00384{width:26.696000pt;}
.w1_c00384{width:575.470667pt;}
.w0_c00384{width:793.333333pt;}
.x0_c00384{left:0.000000pt;}
.x2_c00384{left:4.402667pt;}
.x1_c00384{left:108.930667pt;}
.x3_c00384{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f69781311dab6e069b7dd880.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00385;src:url('chunks/assets/font_c7f70c524d47c0bcff724d43.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00385;src:url('chunks/assets/font_41b3774a7f629335f579a3c4.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00385;src:url('chunks/assets/font_1580beed3e7cd43812fad1cb.woff2')format("woff");}.ff4_c00385{font-family:ff4_c00385;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00385{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.ls3_c00385{letter-spacing:-0.014400px;}
.ls2_c00385{letter-spacing:0.000000px;}
.ls0_c00385{letter-spacing:0.014400px;}
.ls1_c00385{letter-spacing:0.806400px;}
.ls4_c00385{letter-spacing:0.813600px;}
.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:-20.030400px;}
.ws1_c00385{word-spacing:0.000000px;}
._1_c00385{margin-left:-5.356800px;}
._0_c00385{margin-left:-3.981600px;}
._9_c00385{margin-left:-2.642400px;}
._5_c00385{margin-left:-1.310400px;}
._2_c00385{width:1.548000px;}
._3_c00385{width:3.520800px;}
._4_c00385{width:7.063200px;}
._e_c00385{width:8.978400px;}
._d_c00385{width:11.260800px;}
._c_c00385{width:12.549600px;}
._6_c00385{width:15.062400px;}
._f_c00385{width:17.028000px;}
._8_c00385{width:21.686400px;}
._7_c00385{width:24.818400px;}
._b_c00385{width:32.112000px;}
._a_c00385{width:34.761600px;}
.fc0_c00385{color:rgb(0,0,0);}
.fs0_c00385{font-size:72.000000px;}
.fs1_c00385{font-size:84.000000px;}
.y0_c00385{bottom:0.000000px;}
.y1a_c00385{bottom:3.787500px;}
.y19_c00385{bottom:56.735596px;}
.y1_c00385{bottom:101.697000px;}
.y18_c00385{bottom:121.821000px;}
.y17_c00385{bottom:163.815000px;}
.y16_c00385{bottom:204.315000px;}
.y15_c00385{bottom:246.309000px;}
.y14_c00385{bottom:286.809000px;}
.y13_c00385{bottom:328.803000px;}
.y12_c00385{bottom:373.851000px;}
.y11_c00385{bottom:417.357000px;}
.y10_c00385{bottom:459.351000px;}
.yf_c00385{bottom:499.851000px;}
.ye_c00385{bottom:541.845000px;}
.yd_c00385{bottom:582.345000px;}
.yc_c00385{bottom:624.339000px;}
.yb_c00385{bottom:666.333000px;}
.ya_c00385{bottom:706.833000px;}
.y9_c00385{bottom:748.827000px;}
.y8_c00385{bottom:789.327000px;}
.y7_c00385{bottom:831.321000px;}
.y6_c00385{bottom:873.315000px;}
.y5_c00385{bottom:913.815000px;}
.y4_c00385{bottom:955.809000px;}
.y3_c00385{bottom:996.309000px;}
.y2_c00385{bottom:1038.303000px;}
.h4_c00385{height:19.800105px;}
.h2_c00385{height:64.546875px;}
.h3_c00385{height:65.003906px;}
.h5_c00385{height:72.421875px;}
.h1_c00385{height:1060.054500px;}
.h0_c00385{height:1263.000000px;}
.w2_c00385{width:30.031500px;}
.w1_c00385{width:649.803000px;}
.w0_c00385{width:892.500000px;}
.x0_c00385{left:0.000000px;}
.x2_c00385{left:5.739000px;}
.x1_c00385{left:121.761000px;}
.x3_c00385{left:734.908997px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls3_c00385{letter-spacing:-0.012800pt;}
.ls2_c00385{letter-spacing:0.000000pt;}
.ls0_c00385{letter-spacing:0.012800pt;}
.ls1_c00385{letter-spacing:0.716800pt;}
.ls4_c00385{letter-spacing:0.723200pt;}
.ws0_c00385{word-spacing:-17.804800pt;}
.ws1_c00385{word-spacing:0.000000pt;}
._1_c00385{margin-left:-4.761600pt;}
._0_c00385{margin-left:-3.539200pt;}
._9_c00385{margin-left:-2.348800pt;}
._5_c00385{margin-left:-1.164800pt;}
._2_c00385{width:1.376000pt;}
._3_c00385{width:3.129600pt;}
._4_c00385{width:6.278400pt;}
._e_c00385{width:7.980800pt;}
._d_c00385{width:10.009600pt;}
._c_c00385{width:11.155200pt;}
._6_c00385{width:13.388800pt;}
._f_c00385{width:15.136000pt;}
._8_c00385{width:19.276800pt;}
._7_c00385{width:22.060800pt;}
._b_c00385{width:28.544000pt;}
._a_c00385{width:30.899200pt;}
.fs0_c00385{font-size:64.000000pt;}
.fs1_c00385{font-size:74.666667pt;}
.y0_c00385{bottom:0.000000pt;}
.y1a_c00385{bottom:3.366667pt;}
.y19_c00385{bottom:50.431641pt;}
.y1_c00385{bottom:90.397333pt;}
.y18_c00385{bottom:108.285333pt;}
.y17_c00385{bottom:145.613333pt;}
.y16_c00385{bottom:181.613333pt;}
.y15_c00385{bottom:218.941333pt;}
.y14_c00385{bottom:254.941333pt;}
.y13_c00385{bottom:292.269333pt;}
.y12_c00385{bottom:332.312000pt;}
.y11_c00385{bottom:370.984000pt;}
.y10_c00385{bottom:408.312000pt;}
.yf_c00385{bottom:444.312000pt;}
.ye_c00385{bottom:481.640000pt;}
.yd_c00385{bottom:517.640000pt;}
.yc_c00385{bottom:554.968000pt;}
.yb_c00385{bottom:592.296000pt;}
.ya_c00385{bottom:628.296000pt;}
.y9_c00385{bottom:665.624000pt;}
.y8_c00385{bottom:701.624000pt;}
.y7_c00385{bottom:738.952000pt;}
.y6_c00385{bottom:776.280000pt;}
.y5_c00385{bottom:812.280000pt;}
.y4_c00385{bottom:849.608000pt;}
.y3_c00385{bottom:885.608000pt;}
.y2_c00385{bottom:922.936000pt;}
.h4_c00385{height:17.600093pt;}
.h2_c00385{height:57.375000pt;}
.h3_c00385{height:57.781250pt;}
.h5_c00385{height:64.375000pt;}
.h1_c00385{height:942.270667pt;}
.h0_c00385{height:1122.666667pt;}
.w2_c00385{width:26.694667pt;}
.w1_c00385{width:577.602667pt;}
.w0_c00385{width:793.333333pt;}
.x0_c00385{left:0.000000pt;}
.x2_c00385{left:5.101333pt;}
.x1_c00385{left:108.232000pt;}
.x3_c00385{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef3540ee55afbb05fa89d5bc.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00386;src:url('chunks/assets/font_41b3774a7f629335f579a3c4.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00386;src:url('chunks/assets/font_662749d47d0e9c8ec1b1066f.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00386;src:url('chunks/assets/font_e0f413b1c3227223c0e51a8b.woff2')format("woff");}.ff4_c00386{font-family:ff4_c00386;line-height:1.330566;font-style: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;}
.ls3_c00386{letter-spacing:-0.014400px;}
.ls2_c00386{letter-spacing:0.000000px;}
.ls0_c00386{letter-spacing:0.014400px;}
.ls1_c00386{letter-spacing:0.115200px;}
.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:-20.030400px;}
.ws1_c00386{word-spacing:0.000000px;}
._7_c00386{margin-left:-5.335200px;}
._0_c00386{margin-left:-3.981600px;}
._4_c00386{margin-left:-2.664000px;}
._6_c00386{margin-left:-1.303200px;}
._8_c00386{width:1.375200px;}
._1_c00386{width:5.832000px;}
._c_c00386{width:6.962400px;}
._d_c00386{width:17.128800px;}
._e_c00386{width:18.252000px;}
._5_c00386{width:21.492000px;}
._3_c00386{width:25.466400px;}
._f_c00386{width:29.138400px;}
._a_c00386{width:32.709600px;}
._2_c00386{width:35.784000px;}
._9_c00386{width:37.548000px;}
._b_c00386{width:39.477600px;}
.fc0_c00386{color:rgb(0,0,0);}
.fs0_c00386{font-size:72.000000px;}
.fs1_c00386{font-size:84.000000px;}
.y0_c00386{bottom:0.000000px;}
.y19_c00386{bottom:3.787500px;}
.y18_c00386{bottom:56.735596px;}
.y1_c00386{bottom:106.275000px;}
.y17_c00386{bottom:168.297000px;}
.y16_c00386{bottom:208.797000px;}
.y15_c00386{bottom:250.791000px;}
.y14_c00386{bottom:292.785000px;}
.y13_c00386{bottom:333.285000px;}
.y12_c00386{bottom:375.279000px;}
.y11_c00386{bottom:415.779000px;}
.y10_c00386{bottom:457.773000px;}
.yf_c00386{bottom:499.767000px;}
.ye_c00386{bottom:540.267000px;}
.yd_c00386{bottom:582.261000px;}
.yc_c00386{bottom:622.761000px;}
.yb_c00386{bottom:664.755000px;}
.ya_c00386{bottom:706.749000px;}
.y9_c00386{bottom:747.249000px;}
.y8_c00386{bottom:789.243000px;}
.y7_c00386{bottom:829.743000px;}
.y6_c00386{bottom:871.737000px;}
.y5_c00386{bottom:913.731000px;}
.y4_c00386{bottom:954.231000px;}
.y3_c00386{bottom:996.225000px;}
.y2_c00386{bottom:1032.225000px;}
.h4_c00386{height:19.800105px;}
.h2_c00386{height:64.546875px;}
.h3_c00386{height:65.003906px;}
.h5_c00386{height:72.421875px;}
.h1_c00386{height:1056.264000px;}
.h0_c00386{height:1263.000000px;}
.w2_c00386{width:30.033000px;}
.w1_c00386{width:648.978000px;}
.w0_c00386{width:892.500000px;}
.x0_c00386{left:0.000000px;}
.x2_c00386{left:5.739000px;}
.x1_c00386{left:121.761000px;}
.x3_c00386{left:127.559509px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls3_c00386{letter-spacing:-0.012800pt;}
.ls2_c00386{letter-spacing:0.000000pt;}
.ls0_c00386{letter-spacing:0.012800pt;}
.ls1_c00386{letter-spacing:0.102400pt;}
.ws0_c00386{word-spacing:-17.804800pt;}
.ws1_c00386{word-spacing:0.000000pt;}
._7_c00386{margin-left:-4.742400pt;}
._0_c00386{margin-left:-3.539200pt;}
._4_c00386{margin-left:-2.368000pt;}
._6_c00386{margin-left:-1.158400pt;}
._8_c00386{width:1.222400pt;}
._1_c00386{width:5.184000pt;}
._c_c00386{width:6.188800pt;}
._d_c00386{width:15.225600pt;}
._e_c00386{width:16.224000pt;}
._5_c00386{width:19.104000pt;}
._3_c00386{width:22.636800pt;}
._f_c00386{width:25.900800pt;}
._a_c00386{width:29.075200pt;}
._2_c00386{width:31.808000pt;}
._9_c00386{width:33.376000pt;}
._b_c00386{width:35.091200pt;}
.fs0_c00386{font-size:64.000000pt;}
.fs1_c00386{font-size:74.666667pt;}
.y0_c00386{bottom:0.000000pt;}
.y19_c00386{bottom:3.366667pt;}
.y18_c00386{bottom:50.431641pt;}
.y1_c00386{bottom:94.466667pt;}
.y17_c00386{bottom:149.597333pt;}
.y16_c00386{bottom:185.597333pt;}
.y15_c00386{bottom:222.925333pt;}
.y14_c00386{bottom:260.253333pt;}
.y13_c00386{bottom:296.253333pt;}
.y12_c00386{bottom:333.581333pt;}
.y11_c00386{bottom:369.581333pt;}
.y10_c00386{bottom:406.909333pt;}
.yf_c00386{bottom:444.237333pt;}
.ye_c00386{bottom:480.237333pt;}
.yd_c00386{bottom:517.565333pt;}
.yc_c00386{bottom:553.565333pt;}
.yb_c00386{bottom:590.893333pt;}
.ya_c00386{bottom:628.221333pt;}
.y9_c00386{bottom:664.221333pt;}
.y8_c00386{bottom:701.549333pt;}
.y7_c00386{bottom:737.549333pt;}
.y6_c00386{bottom:774.877333pt;}
.y5_c00386{bottom:812.205333pt;}
.y4_c00386{bottom:848.205333pt;}
.y3_c00386{bottom:885.533333pt;}
.y2_c00386{bottom:917.533333pt;}
.h4_c00386{height:17.600093pt;}
.h2_c00386{height:57.375000pt;}
.h3_c00386{height:57.781250pt;}
.h5_c00386{height:64.375000pt;}
.h1_c00386{height:938.901333pt;}
.h0_c00386{height:1122.666667pt;}
.w2_c00386{width:26.696000pt;}
.w1_c00386{width:576.869333pt;}
.w0_c00386{width:793.333333pt;}
.x0_c00386{left:0.000000pt;}
.x2_c00386{left:5.101333pt;}
.x1_c00386{left:108.232000pt;}
.x3_c00386{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ebad4633f6c80a1d71c3cca0.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.113281;font-style:normal;font-weight:normal;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_1cf920fb4174c938d02cb578.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00387;src:url('chunks/assets/font_ee50cd3a15d24baf803beabf.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:1.330566;font-style: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;}
.ls3_c00387{letter-spacing:-0.014400px;}
.ls2_c00387{letter-spacing:0.000000px;}
.ls0_c00387{letter-spacing:0.014400px;}
.ls1_c00387{letter-spacing:2.289600px;}
.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;}
}
.ws0_c00387{word-spacing:-20.030400px;}
.ws1_c00387{word-spacing:0.000000px;}
._4_c00387{margin-left:-5.342400px;}
._3_c00387{margin-left:-3.974400px;}
._0_c00387{margin-left:-2.664000px;}
._1_c00387{margin-left:-1.310400px;}
._7_c00387{width:1.224000px;}
._8_c00387{width:3.290400px;}
._6_c00387{width:4.586400px;}
._5_c00387{width:13.305600px;}
._2_c00387{width:17.258400px;}
._a_c00387{width:31.248000px;}
._b_c00387{width:33.926400px;}
._9_c00387{width:35.208000px;}
.fc1_c00387{color:transparent;}
.fc0_c00387{color:rgb(0,0,0);}
.fs0_c00387{font-size:72.000000px;}
.y0_c00387{bottom:0.000000px;}
.y19_c00387{bottom:3.787500px;}
.y18_c00387{bottom:56.735596px;}
.y1_c00387{bottom:106.275000px;}
.y17_c00387{bottom:163.803000px;}
.y16_c00387{bottom:205.797000px;}
.y15_c00387{bottom:247.791000px;}
.y14_c00387{bottom:288.291000px;}
.y13_c00387{bottom:330.285000px;}
.y12_c00387{bottom:370.785000px;}
.y11_c00387{bottom:412.779000px;}
.y10_c00387{bottom:454.773000px;}
.yf_c00387{bottom:495.273000px;}
.ye_c00387{bottom:537.267000px;}
.yd_c00387{bottom:577.767000px;}
.yc_c00387{bottom:619.761000px;}
.yb_c00387{bottom:661.755000px;}
.ya_c00387{bottom:702.255000px;}
.y9_c00387{bottom:744.249000px;}
.y8_c00387{bottom:784.749000px;}
.y7_c00387{bottom:826.743000px;}
.y6_c00387{bottom:868.737000px;}
.y5_c00387{bottom:909.237000px;}
.y4_c00387{bottom:951.231000px;}
.y3_c00387{bottom:991.731000px;}
.y2_c00387{bottom:1033.725000px;}
.h4_c00387{height:19.800105px;}
.h3_c00387{height:64.546875px;}
.h2_c00387{height:65.003906px;}
.h5_c00387{height:72.421875px;}
.h1_c00387{height:1055.478000px;}
.h0_c00387{height:1263.000000px;}
.w2_c00387{width:30.031500px;}
.w1_c00387{width:647.404500px;}
.w0_c00387{width:892.500000px;}
.x0_c00387{left:0.000000px;}
.x2_c00387{left:4.953000px;}
.x1_c00387{left:122.547000px;}
.x3_c00387{left:734.908997px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls3_c00387{letter-spacing:-0.012800pt;}
.ls2_c00387{letter-spacing:0.000000pt;}
.ls0_c00387{letter-spacing:0.012800pt;}
.ls1_c00387{letter-spacing:2.035200pt;}
.ws0_c00387{word-spacing:-17.804800pt;}
.ws1_c00387{word-spacing:0.000000pt;}
._4_c00387{margin-left:-4.748800pt;}
._3_c00387{margin-left:-3.532800pt;}
._0_c00387{margin-left:-2.368000pt;}
._1_c00387{margin-left:-1.164800pt;}
._7_c00387{width:1.088000pt;}
._8_c00387{width:2.924800pt;}
._6_c00387{width:4.076800pt;}
._5_c00387{width:11.827200pt;}
._2_c00387{width:15.340800pt;}
._a_c00387{width:27.776000pt;}
._b_c00387{width:30.156800pt;}
._9_c00387{width:31.296000pt;}
.fs0_c00387{font-size:64.000000pt;}
.y0_c00387{bottom:0.000000pt;}
.y19_c00387{bottom:3.366667pt;}
.y18_c00387{bottom:50.431641pt;}
.y1_c00387{bottom:94.466667pt;}
.y17_c00387{bottom:145.602667pt;}
.y16_c00387{bottom:182.930667pt;}
.y15_c00387{bottom:220.258667pt;}
.y14_c00387{bottom:256.258667pt;}
.y13_c00387{bottom:293.586667pt;}
.y12_c00387{bottom:329.586667pt;}
.y11_c00387{bottom:366.914667pt;}
.y10_c00387{bottom:404.242667pt;}
.yf_c00387{bottom:440.242667pt;}
.ye_c00387{bottom:477.570667pt;}
.yd_c00387{bottom:513.570667pt;}
.yc_c00387{bottom:550.898667pt;}
.yb_c00387{bottom:588.226667pt;}
.ya_c00387{bottom:624.226667pt;}
.y9_c00387{bottom:661.554667pt;}
.y8_c00387{bottom:697.554667pt;}
.y7_c00387{bottom:734.882667pt;}
.y6_c00387{bottom:772.210667pt;}
.y5_c00387{bottom:808.210667pt;}
.y4_c00387{bottom:845.538667pt;}
.y3_c00387{bottom:881.538667pt;}
.y2_c00387{bottom:918.866667pt;}
.h4_c00387{height:17.600093pt;}
.h3_c00387{height:57.375000pt;}
.h2_c00387{height:57.781250pt;}
.h5_c00387{height:64.375000pt;}
.h1_c00387{height:938.202667pt;}
.h0_c00387{height:1122.666667pt;}
.w2_c00387{width:26.694667pt;}
.w1_c00387{width:575.470667pt;}
.w0_c00387{width:793.333333pt;}
.x0_c00387{left:0.000000pt;}
.x2_c00387{left:4.402667pt;}
.x1_c00387{left:108.930667pt;}
.x3_c00387{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f72be2594050c38ce973b935.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00388;src:url('chunks/assets/font_e2f2b21c05743975303c6b29.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00388;src:url('chunks/assets/font_41b3774a7f629335f579a3c4.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00388;src:url('chunks/assets/font_447436225c455c979a13d272.woff2')format("woff");}.ff4_c00388{font-family:ff4_c00388;line-height:1.330566;font-style: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;}
.ls1_c00388{letter-spacing:0.000000px;}
.ls0_c00388{letter-spacing:0.014400px;}
.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;}
}
.ws0_c00388{word-spacing:-20.030400px;}
.ws1_c00388{word-spacing:0.000000px;}
._5_c00388{margin-left:-5.342400px;}
._4_c00388{margin-left:-3.981600px;}
._3_c00388{margin-left:-2.664000px;}
._2_c00388{margin-left:-1.288800px;}
._9_c00388{width:1.375200px;}
._d_c00388{width:6.213600px;}
._7_c00388{width:11.260800px;}
._6_c00388{width:12.549600px;}
._1_c00388{width:21.686400px;}
._0_c00388{width:24.818400px;}
._8_c00388{width:26.114400px;}
._b_c00388{width:32.688000px;}
._c_c00388{width:35.460000px;}
._a_c00388{width:36.676800px;}
._f_c00388{width:37.828800px;}
._e_c00388{width:39.096000px;}
.fc0_c00388{color:rgb(0,0,0);}
.fs0_c00388{font-size:72.000000px;}
.fs1_c00388{font-size:84.000000px;}
.y0_c00388{bottom:0.000000px;}
.y1a_c00388{bottom:3.787500px;}
.y19_c00388{bottom:56.735596px;}
.y1_c00388{bottom:106.275000px;}
.y18_c00388{bottom:111.261000px;}
.y17_c00388{bottom:153.255000px;}
.y16_c00388{bottom:193.755000px;}
.y15_c00388{bottom:235.749000px;}
.y14_c00388{bottom:277.743000px;}
.y13_c00388{bottom:318.243000px;}
.y12_c00388{bottom:360.237000px;}
.y11_c00388{bottom:400.737000px;}
.y10_c00388{bottom:442.731000px;}
.yf_c00388{bottom:484.725000px;}
.ye_c00388{bottom:529.725000px;}
.yd_c00388{bottom:573.231000px;}
.yc_c00388{bottom:613.731000px;}
.yb_c00388{bottom:655.725000px;}
.ya_c00388{bottom:700.743000px;}
.y9_c00388{bottom:744.249000px;}
.y8_c00388{bottom:784.749000px;}
.y7_c00388{bottom:826.743000px;}
.y6_c00388{bottom:868.737000px;}
.y5_c00388{bottom:909.237000px;}
.y4_c00388{bottom:951.231000px;}
.y3_c00388{bottom:991.731000px;}
.y2_c00388{bottom:1033.725000px;}
.h4_c00388{height:19.800105px;}
.h2_c00388{height:64.546875px;}
.h3_c00388{height:65.003906px;}
.h5_c00388{height:72.421875px;}
.h1_c00388{height:1055.478000px;}
.h0_c00388{height:1263.000000px;}
.w2_c00388{width:30.033000px;}
.w1_c00388{width:648.978000px;}
.w0_c00388{width:892.500000px;}
.x0_c00388{left:0.000000px;}
.x2_c00388{left:5.739000px;}
.x1_c00388{left:121.761000px;}
.x3_c00388{left:127.559509px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls1_c00388{letter-spacing:0.000000pt;}
.ls0_c00388{letter-spacing:0.012800pt;}
.ws0_c00388{word-spacing:-17.804800pt;}
.ws1_c00388{word-spacing:0.000000pt;}
._5_c00388{margin-left:-4.748800pt;}
._4_c00388{margin-left:-3.539200pt;}
._3_c00388{margin-left:-2.368000pt;}
._2_c00388{margin-left:-1.145600pt;}
._9_c00388{width:1.222400pt;}
._d_c00388{width:5.523200pt;}
._7_c00388{width:10.009600pt;}
._6_c00388{width:11.155200pt;}
._1_c00388{width:19.276800pt;}
._0_c00388{width:22.060800pt;}
._8_c00388{width:23.212800pt;}
._b_c00388{width:29.056000pt;}
._c_c00388{width:31.520000pt;}
._a_c00388{width:32.601600pt;}
._f_c00388{width:33.625600pt;}
._e_c00388{width:34.752000pt;}
.fs0_c00388{font-size:64.000000pt;}
.fs1_c00388{font-size:74.666667pt;}
.y0_c00388{bottom:0.000000pt;}
.y1a_c00388{bottom:3.366667pt;}
.y19_c00388{bottom:50.431641pt;}
.y1_c00388{bottom:94.466667pt;}
.y18_c00388{bottom:98.898667pt;}
.y17_c00388{bottom:136.226667pt;}
.y16_c00388{bottom:172.226667pt;}
.y15_c00388{bottom:209.554667pt;}
.y14_c00388{bottom:246.882667pt;}
.y13_c00388{bottom:282.882667pt;}
.y12_c00388{bottom:320.210667pt;}
.y11_c00388{bottom:356.210667pt;}
.y10_c00388{bottom:393.538667pt;}
.yf_c00388{bottom:430.866667pt;}
.ye_c00388{bottom:470.866667pt;}
.yd_c00388{bottom:509.538667pt;}
.yc_c00388{bottom:545.538667pt;}
.yb_c00388{bottom:582.866667pt;}
.ya_c00388{bottom:622.882667pt;}
.y9_c00388{bottom:661.554667pt;}
.y8_c00388{bottom:697.554667pt;}
.y7_c00388{bottom:734.882667pt;}
.y6_c00388{bottom:772.210667pt;}
.y5_c00388{bottom:808.210667pt;}
.y4_c00388{bottom:845.538667pt;}
.y3_c00388{bottom:881.538667pt;}
.y2_c00388{bottom:918.866667pt;}
.h4_c00388{height:17.600093pt;}
.h2_c00388{height:57.375000pt;}
.h3_c00388{height:57.781250pt;}
.h5_c00388{height:64.375000pt;}
.h1_c00388{height:938.202667pt;}
.h0_c00388{height:1122.666667pt;}
.w2_c00388{width:26.696000pt;}
.w1_c00388{width:576.869333pt;}
.w0_c00388{width:793.333333pt;}
.x0_c00388{left:0.000000pt;}
.x2_c00388{left:5.101333pt;}
.x1_c00388{left:108.232000pt;}
.x3_c00388{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_39bd84d8a8dd1926fb08cb75.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00389;src:url('chunks/assets/font_2713f2ce57f166853a4fa3a7.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00389;src:url('chunks/assets/font_0811f59859ac6ca01cefbefb.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00389{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00389{vertical-align:0.000000px;}
.ls1_c00389{letter-spacing:0.000000px;}
.ls0_c00389{letter-spacing:0.014400px;}
.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:0.000000px;}
._8_c00389{margin-left:-5.630400px;}
._0_c00389{margin-left:-4.521600px;}
._7_c00389{margin-left:-3.427200px;}
._3_c00389{margin-left:-2.390400px;}
._5_c00389{margin-left:-1.044000px;}
._1_c00389{width:16.315200px;}
._4_c00389{width:18.777600px;}
._2_c00389{width:21.110400px;}
._9_c00389{width:25.711200px;}
._6_c00389{width:29.138400px;}
.fc0_c00389{color:rgb(0,0,0);}
.fs0_c00389{font-size:72.000000px;}
.y0_c00389{bottom:0.000000px;}
.yb_c00389{bottom:3.787500px;}
.ya_c00389{bottom:56.735596px;}
.y1_c00389{bottom:97.725000px;}
.y9_c00389{bottom:752.799000px;}
.y8_c00389{bottom:793.299000px;}
.y7_c00389{bottom:835.293000px;}
.y6_c00389{bottom:877.287000px;}
.y5_c00389{bottom:917.787000px;}
.y4_c00389{bottom:959.781000px;}
.y3_c00389{bottom:1000.281000px;}
.y2_c00389{bottom:1042.275000px;}
.h4_c00389{height:19.800105px;}
.h2_c00389{height:64.546875px;}
.h3_c00389{height:65.003906px;}
.h5_c00389{height:72.421875px;}
.h1_c00389{height:1064.028000px;}
.h0_c00389{height:1263.000000px;}
.w2_c00389{width:30.031500px;}
.w1_c00389{width:647.404500px;}
.w0_c00389{width:892.500000px;}
.x0_c00389{left:0.000000px;}
.x2_c00389{left:4.953000px;}
.x1_c00389{left:122.547000px;}
.x3_c00389{left:734.908997px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls1_c00389{letter-spacing:0.000000pt;}
.ls0_c00389{letter-spacing:0.012800pt;}
.ws0_c00389{word-spacing:0.000000pt;}
._8_c00389{margin-left:-5.004800pt;}
._0_c00389{margin-left:-4.019200pt;}
._7_c00389{margin-left:-3.046400pt;}
._3_c00389{margin-left:-2.124800pt;}
._5_c00389{margin-left:-0.928000pt;}
._1_c00389{width:14.502400pt;}
._4_c00389{width:16.691200pt;}
._2_c00389{width:18.764800pt;}
._9_c00389{width:22.854400pt;}
._6_c00389{width:25.900800pt;}
.fs0_c00389{font-size:64.000000pt;}
.y0_c00389{bottom:0.000000pt;}
.yb_c00389{bottom:3.366667pt;}
.ya_c00389{bottom:50.431641pt;}
.y1_c00389{bottom:86.866667pt;}
.y9_c00389{bottom:669.154667pt;}
.y8_c00389{bottom:705.154667pt;}
.y7_c00389{bottom:742.482667pt;}
.y6_c00389{bottom:779.810667pt;}
.y5_c00389{bottom:815.810667pt;}
.y4_c00389{bottom:853.138667pt;}
.y3_c00389{bottom:889.138667pt;}
.y2_c00389{bottom:926.466667pt;}
.h4_c00389{height:17.600093pt;}
.h2_c00389{height:57.375000pt;}
.h3_c00389{height:57.781250pt;}
.h5_c00389{height:64.375000pt;}
.h1_c00389{height:945.802667pt;}
.h0_c00389{height:1122.666667pt;}
.w2_c00389{width:26.694667pt;}
.w1_c00389{width:575.470667pt;}
.w0_c00389{width:793.333333pt;}
.x0_c00389{left:0.000000pt;}
.x2_c00389{left:4.402667pt;}
.x1_c00389{left:108.930667pt;}
.x3_c00389{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2d0cef8eef028697ad69275.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.113281;font-style:normal;font-weight:normal;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_76021604729e4756a48b992f.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00390;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00390;src:url('chunks/assets/font_a1fd7f5a721ae866fd5bd572.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00390;src:url('chunks/assets/font_21be95662bfb70c1fa03cd7e.woff2')format("woff");}.ff5_c00390{font-family:ff5_c00390;line-height:1.330566;font-style: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(0.344856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344856,0.000000,0.000000,0.250000,0,0);}
.v0_c00390{vertical-align:0.000000px;}
.ls2_c00390{letter-spacing:0.000000px;}
.ls1_c00390{letter-spacing:0.014400px;}
.ls0_c00390{letter-spacing:2045.808000px;}
.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:0.000000px;}
.ws0_c00390{word-spacing:27.604800px;}
._3_c00390{margin-left:-3.974400px;}
._1_c00390{width:4.377600px;}
._4_c00390{width:7.225200px;}
._2_c00390{width:12.340800px;}
._0_c00390{width:27.885600px;}
.fc1_c00390{color:transparent;}
.fc0_c00390{color:rgb(0,0,0);}
.fs1_c00390{font-size:54.000000px;}
.fs0_c00390{font-size:72.000000px;}
.fs2_c00390{font-size:78.064800px;}
.yc_c00390{bottom:-17.889900px;}
.y0_c00390{bottom:0.000000px;}
.ye_c00390{bottom:3.787500px;}
.ya_c00390{bottom:10.726500px;}
.y9_c00390{bottom:25.725000px;}
.y8_c00390{bottom:40.739250px;}
.yd_c00390{bottom:56.735596px;}
.y1_c00390{bottom:106.275000px;}
.yb_c00390{bottom:148.500000px;}
.y7_c00390{bottom:820.733250px;}
.y6_c00390{bottom:862.727250px;}
.y5_c00390{bottom:903.227250px;}
.y4_c00390{bottom:945.221250px;}
.y3_c00390{bottom:985.721250px;}
.y2_c00390{bottom:1033.853250px;}
.h7_c00390{height:19.800105px;}
.h4_c00390{height:48.410156px;}
.h6_c00390{height:52.030494px;}
.h3_c00390{height:64.546875px;}
.h2_c00390{height:65.003906px;}
.h8_c00390{height:72.421875px;}
.h5_c00390{height:753.000000px;}
.h1_c00390{height:1055.478000px;}
.h0_c00390{height:1263.000000px;}
.w3_c00390{width:30.033000px;}
.w2_c00390{width:511.459500px;}
.w1_c00390{width:647.404500px;}
.w0_c00390{width:892.500000px;}
.x0_c00390{left:0.000000px;}
.x2_c00390{left:5.028000px;}
.x3_c00390{left:25.962000px;}
.x4_c00390{left:67.956000px;}
.x5_c00390{left:69.453000px;}
.x1_c00390{left:122.547000px;}
.x7_c00390{left:127.559509px;}
.x6_c00390{left:190.519500px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls2_c00390{letter-spacing:0.000000pt;}
.ls1_c00390{letter-spacing:0.012800pt;}
.ls0_c00390{letter-spacing:1818.496000pt;}
.ws1_c00390{word-spacing:0.000000pt;}
.ws0_c00390{word-spacing:24.537600pt;}
._3_c00390{margin-left:-3.532800pt;}
._1_c00390{width:3.891200pt;}
._4_c00390{width:6.422400pt;}
._2_c00390{width:10.969600pt;}
._0_c00390{width:24.787200pt;}
.fs1_c00390{font-size:48.000000pt;}
.fs0_c00390{font-size:64.000000pt;}
.fs2_c00390{font-size:69.390933pt;}
.yc_c00390{bottom:-15.902133pt;}
.y0_c00390{bottom:0.000000pt;}
.ye_c00390{bottom:3.366667pt;}
.ya_c00390{bottom:9.534667pt;}
.y9_c00390{bottom:22.866667pt;}
.y8_c00390{bottom:36.212667pt;}
.yd_c00390{bottom:50.431641pt;}
.y1_c00390{bottom:94.466667pt;}
.yb_c00390{bottom:132.000000pt;}
.y7_c00390{bottom:729.540667pt;}
.y6_c00390{bottom:766.868667pt;}
.y5_c00390{bottom:802.868667pt;}
.y4_c00390{bottom:840.196667pt;}
.y3_c00390{bottom:876.196667pt;}
.y2_c00390{bottom:918.980667pt;}
.h7_c00390{height:17.600093pt;}
.h4_c00390{height:43.031250pt;}
.h6_c00390{height:46.249328pt;}
.h3_c00390{height:57.375000pt;}
.h2_c00390{height:57.781250pt;}
.h8_c00390{height:64.375000pt;}
.h5_c00390{height:669.333333pt;}
.h1_c00390{height:938.202667pt;}
.h0_c00390{height:1122.666667pt;}
.w3_c00390{width:26.696000pt;}
.w2_c00390{width:454.630667pt;}
.w1_c00390{width:575.470667pt;}
.w0_c00390{width:793.333333pt;}
.x0_c00390{left:0.000000pt;}
.x2_c00390{left:4.469333pt;}
.x3_c00390{left:23.077333pt;}
.x4_c00390{left:60.405333pt;}
.x5_c00390{left:61.736000pt;}
.x1_c00390{left:108.930667pt;}
.x7_c00390{left:113.386231pt;}
.x6_c00390{left:169.350667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00391;src:url('chunks/assets/font_b0bf6ce749d7957832d68a39.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00391;src:url('chunks/assets/font_5c3992fffbda0014984348fc.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00391;src:url('chunks/assets/font_1a0f688aa3abda82b93e46a5.woff2')format("woff");}.ff4_c00391{font-family:ff4_c00391;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00391{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.ls1_c00391{letter-spacing:0.000000px;}
.ls0_c00391{letter-spacing:2549.394000px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00391{word-spacing:0.000000px;}
._1_c00391{margin-left:-2.980800px;}
._0_c00391{width:9.617400px;}
.fc1_c00391{color:transparent;}
.fc0_c00391{color:rgb(0,0,0);}
.fs0_c00391{font-size:54.000000px;}
.fs1_c00391{font-size:72.000000px;}
.y0_c00391{bottom:0.000000px;}
.y7_c00391{bottom:3.787500px;}
.y2_c00391{bottom:36.367500px;}
.y5_c00391{bottom:49.290000px;}
.y6_c00391{bottom:56.735596px;}
.y4_c00391{bottom:64.288500px;}
.y3_c00391{bottom:91.711500px;}
.y1_c00391{bottom:134.632500px;}
.h4_c00391{height:19.800105px;}
.h2_c00391{height:48.410156px;}
.h5_c00391{height:72.421875px;}
.h1_c00391{height:1025.863500px;}
.h3_c00391{height:1068.784500px;}
.h0_c00391{height:1263.000000px;}
.w3_c00391{width:30.031500px;}
.w1_c00391{width:637.350000px;}
.w2_c00391{width:656.902500px;}
.w0_c00391{width:892.500000px;}
.x0_c00391{left:0.000000px;}
.x3_c00391{left:4.953000px;}
.x2_c00391{left:122.547000px;}
.x1_c00391{left:127.575000px;}
.x4_c00391{left:734.908997px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls1_c00391{letter-spacing:0.000000pt;}
.ls0_c00391{letter-spacing:2266.128000pt;}
.ws0_c00391{word-spacing:0.000000pt;}
._1_c00391{margin-left:-2.649600pt;}
._0_c00391{width:8.548800pt;}
.fs0_c00391{font-size:48.000000pt;}
.fs1_c00391{font-size:64.000000pt;}
.y0_c00391{bottom:0.000000pt;}
.y7_c00391{bottom:3.366667pt;}
.y2_c00391{bottom:32.326667pt;}
.y5_c00391{bottom:43.813333pt;}
.y6_c00391{bottom:50.431641pt;}
.y4_c00391{bottom:57.145333pt;}
.y3_c00391{bottom:81.521333pt;}
.y1_c00391{bottom:119.673333pt;}
.h4_c00391{height:17.600093pt;}
.h2_c00391{height:43.031250pt;}
.h5_c00391{height:64.375000pt;}
.h1_c00391{height:911.878667pt;}
.h3_c00391{height:950.030667pt;}
.h0_c00391{height:1122.666667pt;}
.w3_c00391{width:26.694667pt;}
.w1_c00391{width:566.533333pt;}
.w2_c00391{width:583.913333pt;}
.w0_c00391{width:793.333333pt;}
.x0_c00391{left:0.000000pt;}
.x3_c00391{left:4.402667pt;}
.x2_c00391{left:108.930667pt;}
.x1_c00391{left:113.400000pt;}
.x4_c00391{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b851bef0ff744d37022829b5.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.113281;font-style:normal;font-weight:normal;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_bccf0322e08fc165ab3af67b.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00392;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00392;src:url('chunks/assets/font_f890fd3856b3042cc6655c25.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00392{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00392{vertical-align:0.000000px;}
.ls2_c00392{letter-spacing:-0.010800px;}
.ls1_c00392{letter-spacing:0.000000px;}
.ls0_c00392{letter-spacing:2549.376000px;}
.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:0.000000px;}
._1_c00392{width:1.987200px;}
._0_c00392{width:18.266400px;}
._3_c00392{width:33.141600px;}
._2_c00392{width:36.993600px;}
.fc1_c00392{color:transparent;}
.fc0_c00392{color:rgb(0,0,0);}
.fs1_c00392{font-size:54.000000px;}
.fs0_c00392{font-size:72.000000px;}
.y0_c00392{bottom:0.000000px;}
.y9_c00392{bottom:3.787500px;}
.y7_c00392{bottom:7.759500px;}
.y6_c00392{bottom:22.771500px;}
.y8_c00392{bottom:56.735596px;}
.y1_c00392{bottom:106.240500px;}
.y5_c00392{bottom:909.271500px;}
.y4_c00392{bottom:951.265500px;}
.y3_c00392{bottom:991.765500px;}
.y2_c00392{bottom:1033.759500px;}
.h5_c00392{height:19.800105px;}
.h4_c00392{height:48.410156px;}
.h3_c00392{height:64.546875px;}
.h2_c00392{height:65.003906px;}
.h6_c00392{height:72.421875px;}
.h1_c00392{height:1055.511000px;}
.h0_c00392{height:1263.000000px;}
.w2_c00392{width:30.033000px;}
.w1_c00392{width:658.159500px;}
.w0_c00392{width:892.500000px;}
.x0_c00392{left:0.000000px;}
.x2_c00392{left:4.953000px;}
.x3_c00392{left:46.947000px;}
.x1_c00392{left:122.547000px;}
.x5_c00392{left:127.559509px;}
.x4_c00392{left:138.453000px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls2_c00392{letter-spacing:-0.009600pt;}
.ls1_c00392{letter-spacing:0.000000pt;}
.ls0_c00392{letter-spacing:2266.112000pt;}
.ws0_c00392{word-spacing:0.000000pt;}
._1_c00392{width:1.766400pt;}
._0_c00392{width:16.236800pt;}
._3_c00392{width:29.459200pt;}
._2_c00392{width:32.883200pt;}
.fs1_c00392{font-size:48.000000pt;}
.fs0_c00392{font-size:64.000000pt;}
.y0_c00392{bottom:0.000000pt;}
.y9_c00392{bottom:3.366667pt;}
.y7_c00392{bottom:6.897333pt;}
.y6_c00392{bottom:20.241333pt;}
.y8_c00392{bottom:50.431641pt;}
.y1_c00392{bottom:94.436000pt;}
.y5_c00392{bottom:808.241333pt;}
.y4_c00392{bottom:845.569333pt;}
.y3_c00392{bottom:881.569333pt;}
.y2_c00392{bottom:918.897333pt;}
.h5_c00392{height:17.600093pt;}
.h4_c00392{height:43.031250pt;}
.h3_c00392{height:57.375000pt;}
.h2_c00392{height:57.781250pt;}
.h6_c00392{height:64.375000pt;}
.h1_c00392{height:938.232000pt;}
.h0_c00392{height:1122.666667pt;}
.w2_c00392{width:26.696000pt;}
.w1_c00392{width:585.030667pt;}
.w0_c00392{width:793.333333pt;}
.x0_c00392{left:0.000000pt;}
.x2_c00392{left:4.402667pt;}
.x3_c00392{left:41.730667pt;}
.x1_c00392{left:108.930667pt;}
.x5_c00392{left:113.386231pt;}
.x4_c00392{left:123.069333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_21028ec28186bc27e6cbc794.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00393;src:url('chunks/assets/font_97aa7410d0ecc1b25a962736.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00393;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00393;src:url('chunks/assets/font_0811f59859ac6ca01cefbefb.woff2')format("woff");}.ff4_c00393{font-family:ff4_c00393;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00393{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.ls2_c00393{letter-spacing:0.000000px;}
.ls3_c00393{letter-spacing:2.685600px;}
.ls0_c00393{letter-spacing:2.692800px;}
.ls1_c00393{letter-spacing:2549.376000px;}
.sc__c00393{text-shadow:none;}
.sc0_c00393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00393{-webkit-text-stroke:0px transparent;}
.sc0_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00393{word-spacing:0.000000px;}
._2_c00393{margin-left:-2.664000px;}
._0_c00393{width:1.252800px;}
._4_c00393{width:2.685600px;}
._1_c00393{width:16.372800px;}
._3_c00393{width:34.617600px;}
._5_c00393{width:37.317600px;}
.fc1_c00393{color:transparent;}
.fc0_c00393{color:rgb(0,0,0);}
.fs1_c00393{font-size:54.000000px;}
.fs0_c00393{font-size:72.000000px;}
.y0_c00393{bottom:0.000000px;}
.yc_c00393{bottom:3.787500px;}
.ya_c00393{bottom:6.766500px;}
.y9_c00393{bottom:23.266500px;}
.yb_c00393{bottom:56.735596px;}
.y1_c00393{bottom:104.233500px;}
.y8_c00393{bottom:786.790500px;}
.y7_c00393{bottom:828.784500px;}
.y6_c00393{bottom:870.778500px;}
.y5_c00393{bottom:911.278500px;}
.y4_c00393{bottom:953.272500px;}
.y3_c00393{bottom:993.772500px;}
.y2_c00393{bottom:1035.766500px;}
.h4_c00393{height:19.800105px;}
.h3_c00393{height:48.410156px;}
.h2_c00393{height:64.546875px;}
.h5_c00393{height:72.421875px;}
.h1_c00393{height:1057.518000px;}
.h0_c00393{height:1263.000000px;}
.w3_c00393{width:30.031500px;}
.w2_c00393{width:637.350000px;}
.w1_c00393{width:658.159500px;}
.w0_c00393{width:892.500000px;}
.x0_c00393{left:0.000000px;}
.x3_c00393{left:4.947000px;}
.x2_c00393{left:25.953000px;}
.x5_c00393{left:66.453000px;}
.x1_c00393{left:122.547000px;}
.x4_c00393{left:127.575000px;}
.x6_c00393{left:734.908997px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls2_c00393{letter-spacing:0.000000pt;}
.ls3_c00393{letter-spacing:2.387200pt;}
.ls0_c00393{letter-spacing:2.393600pt;}
.ls1_c00393{letter-spacing:2266.112000pt;}
.ws0_c00393{word-spacing:0.000000pt;}
._2_c00393{margin-left:-2.368000pt;}
._0_c00393{width:1.113600pt;}
._4_c00393{width:2.387200pt;}
._1_c00393{width:14.553600pt;}
._3_c00393{width:30.771200pt;}
._5_c00393{width:33.171200pt;}
.fs1_c00393{font-size:48.000000pt;}
.fs0_c00393{font-size:64.000000pt;}
.y0_c00393{bottom:0.000000pt;}
.yc_c00393{bottom:3.366667pt;}
.ya_c00393{bottom:6.014667pt;}
.y9_c00393{bottom:20.681333pt;}
.yb_c00393{bottom:50.431641pt;}
.y1_c00393{bottom:92.652000pt;}
.y8_c00393{bottom:699.369333pt;}
.y7_c00393{bottom:736.697333pt;}
.y6_c00393{bottom:774.025333pt;}
.y5_c00393{bottom:810.025333pt;}
.y4_c00393{bottom:847.353333pt;}
.y3_c00393{bottom:883.353333pt;}
.y2_c00393{bottom:920.681333pt;}
.h4_c00393{height:17.600093pt;}
.h3_c00393{height:43.031250pt;}
.h2_c00393{height:57.375000pt;}
.h5_c00393{height:64.375000pt;}
.h1_c00393{height:940.016000pt;}
.h0_c00393{height:1122.666667pt;}
.w3_c00393{width:26.694667pt;}
.w2_c00393{width:566.533333pt;}
.w1_c00393{width:585.030667pt;}
.w0_c00393{width:793.333333pt;}
.x0_c00393{left:0.000000pt;}
.x3_c00393{left:4.397333pt;}
.x2_c00393{left:23.069333pt;}
.x5_c00393{left:59.069333pt;}
.x1_c00393{left:108.930667pt;}
.x4_c00393{left:113.400000pt;}
.x6_c00393{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00394;src:url('chunks/assets/font_65e3490fa8b7dd0c15760ca3.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00394;src:url('chunks/assets/font_88740fe752509819a91d97f8.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00394{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.ls2_c00394{letter-spacing:-0.010800px;}
.ls1_c00394{letter-spacing:0.000000px;}
.ls0_c00394{letter-spacing:2549.394000px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00394{word-spacing:0.000000px;}
.fc1_c00394{color:transparent;}
.fc0_c00394{color:rgb(0,0,0);}
.fs0_c00394{font-size:54.000000px;}
.fs1_c00394{font-size:72.000000px;}
.y0_c00394{bottom:0.000000px;}
.y5_c00394{bottom:3.787500px;}
.y3_c00394{bottom:35.970000px;}
.y2_c00394{bottom:50.970000px;}
.y4_c00394{bottom:56.735596px;}
.y1_c00394{bottom:94.530000px;}
.h3_c00394{height:19.800105px;}
.h2_c00394{height:48.410156px;}
.h4_c00394{height:72.421875px;}
.h1_c00394{height:1065.964500px;}
.h0_c00394{height:1263.000000px;}
.w3_c00394{width:30.033000px;}
.w1_c00394{width:637.350000px;}
.w2_c00394{width:655.645500px;}
.w0_c00394{width:892.500000px;}
.x0_c00394{left:0.000000px;}
.x2_c00394{left:123.804000px;}
.x1_c00394{left:127.575000px;}
.x3_c00394{left:137.196000px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls2_c00394{letter-spacing:-0.009600pt;}
.ls1_c00394{letter-spacing:0.000000pt;}
.ls0_c00394{letter-spacing:2266.128000pt;}
.ws0_c00394{word-spacing:0.000000pt;}
.fs0_c00394{font-size:48.000000pt;}
.fs1_c00394{font-size:64.000000pt;}
.y0_c00394{bottom:0.000000pt;}
.y5_c00394{bottom:3.366667pt;}
.y3_c00394{bottom:31.973333pt;}
.y2_c00394{bottom:45.306667pt;}
.y4_c00394{bottom:50.431641pt;}
.y1_c00394{bottom:84.026667pt;}
.h3_c00394{height:17.600093pt;}
.h2_c00394{height:43.031250pt;}
.h4_c00394{height:64.375000pt;}
.h1_c00394{height:947.524000pt;}
.h0_c00394{height:1122.666667pt;}
.w3_c00394{width:26.696000pt;}
.w1_c00394{width:566.533333pt;}
.w2_c00394{width:582.796000pt;}
.w0_c00394{width:793.333333pt;}
.x0_c00394{left:0.000000pt;}
.x2_c00394{left:110.048000pt;}
.x1_c00394{left:113.400000pt;}
.x3_c00394{left:121.952000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00395;src:url('chunks/assets/font_e1ad73d8ea6359adde1e0488.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00395;src:url('chunks/assets/font_6a982a1978ad246faa175336.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00395{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00395{vertical-align:0.000000px;}
.ls1_c00395{letter-spacing:0.000000px;}
.ls0_c00395{letter-spacing:2549.394000px;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00395{word-spacing:0.000000px;}
.fc1_c00395{color:transparent;}
.fc0_c00395{color:rgb(0,0,0);}
.fs0_c00395{font-size:54.000000px;}
.fs1_c00395{font-size:72.000000px;}
.y0_c00395{bottom:0.000000px;}
.y6_c00395{bottom:3.787500px;}
.y4_c00395{bottom:36.564000px;}
.y3_c00395{bottom:51.562500px;}
.y5_c00395{bottom:56.735596px;}
.y2_c00395{bottom:66.562500px;}
.y1_c00395{bottom:89.437500px;}
.h3_c00395{height:19.800105px;}
.h2_c00395{height:48.410156px;}
.h4_c00395{height:72.421875px;}
.h1_c00395{height:1071.057000px;}
.h0_c00395{height:1263.000000px;}
.w3_c00395{width:30.031500px;}
.w1_c00395{width:637.350000px;}
.w2_c00395{width:655.645500px;}
.w0_c00395{width:892.500000px;}
.x0_c00395{left:0.000000px;}
.x3_c00395{left:3.696000px;}
.x2_c00395{left:123.804000px;}
.x1_c00395{left:127.575000px;}
.x4_c00395{left:734.908997px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls1_c00395{letter-spacing:0.000000pt;}
.ls0_c00395{letter-spacing:2266.128000pt;}
.ws0_c00395{word-spacing:0.000000pt;}
.fs0_c00395{font-size:48.000000pt;}
.fs1_c00395{font-size:64.000000pt;}
.y0_c00395{bottom:0.000000pt;}
.y6_c00395{bottom:3.366667pt;}
.y4_c00395{bottom:32.501333pt;}
.y3_c00395{bottom:45.833333pt;}
.y5_c00395{bottom:50.431641pt;}
.y2_c00395{bottom:59.166667pt;}
.y1_c00395{bottom:79.500000pt;}
.h3_c00395{height:17.600093pt;}
.h2_c00395{height:43.031250pt;}
.h4_c00395{height:64.375000pt;}
.h1_c00395{height:952.050667pt;}
.h0_c00395{height:1122.666667pt;}
.w3_c00395{width:26.694667pt;}
.w1_c00395{width:566.533333pt;}
.w2_c00395{width:582.796000pt;}
.w0_c00395{width:793.333333pt;}
.x0_c00395{left:0.000000pt;}
.x3_c00395{left:3.285333pt;}
.x2_c00395{left:110.048000pt;}
.x1_c00395{left:113.400000pt;}
.x4_c00395{left:653.252441pt;}
}





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

.ir_c00396:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00396{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00396;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00396;src:url('chunks/assets/font_a5973dc734212dce6aaf83bb.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00396;src:url('chunks/assets/font_b3bd4e300ae12e858165d0f8.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00396;src:url('chunks/assets/font_652f15e800f8dc5580cdfc70.woff2')format("woff");}.ff4_c00396{font-family:ff4_c00396;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.ls2_c00396{letter-spacing:-0.014400px;}
.ls1_c00396{letter-spacing:0.000000px;}
.ls0_c00396{letter-spacing:2549.394000px;}
.sc__c00396{text-shadow:none;}
.sc0_c00396{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00396{-webkit-text-stroke:0px transparent;}
.sc0_c00396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00396{word-spacing:0.000000px;}
._0_c00396{margin-left:-6.960600px;}
._7_c00396{margin-left:-3.974400px;}
._9_c00396{margin-left:-2.052000px;}
._1_c00396{width:1.980000px;}
._a_c00396{width:3.045600px;}
._6_c00396{width:4.075200px;}
._3_c00396{width:5.356800px;}
._b_c00396{width:7.200000px;}
._4_c00396{width:9.835200px;}
._5_c00396{width:15.271200px;}
._8_c00396{width:16.999200px;}
._2_c00396{width:23.205600px;}
.fc1_c00396{color:transparent;}
.fc0_c00396{color:rgb(0,0,0);}
.fs0_c00396{font-size:54.000000px;}
.fs1_c00396{font-size:72.000000px;}
.y0_c00396{bottom:0.000000px;}
.y15_c00396{bottom:3.787500px;}
.y14_c00396{bottom:56.735596px;}
.y13_c00396{bottom:66.279000px;}
.y3_c00396{bottom:106.275000px;}
.y1_c00396{bottom:106.725000px;}
.y12_c00396{bottom:108.273000px;}
.y11_c00396{bottom:150.267000px;}
.y10_c00396{bottom:190.767000px;}
.yf_c00396{bottom:232.761000px;}
.ye_c00396{bottom:273.261000px;}
.yd_c00396{bottom:315.255000px;}
.yc_c00396{bottom:357.249000px;}
.yb_c00396{bottom:397.749000px;}
.ya_c00396{bottom:439.743000px;}
.y9_c00396{bottom:480.243000px;}
.y8_c00396{bottom:522.237000px;}
.y7_c00396{bottom:564.231000px;}
.y6_c00396{bottom:604.731000px;}
.y5_c00396{bottom:646.725000px;}
.y4_c00396{bottom:708.225000px;}
.y2_c00396{bottom:722.775000px;}
.h6_c00396{height:19.800105px;}
.h2_c00396{height:48.410156px;}
.h5_c00396{height:64.546875px;}
.h4_c00396{height:65.003906px;}
.h7_c00396{height:72.421875px;}
.h1_c00396{height:1053.771000px;}
.h3_c00396{height:1054.221000px;}
.h0_c00396{height:1263.000000px;}
.w3_c00396{width:30.033000px;}
.w1_c00396{width:637.350000px;}
.w2_c00396{width:656.902500px;}
.w0_c00396{width:892.500000px;}
.x0_c00396{left:0.000000px;}
.x4_c00396{left:4.953000px;}
.x5_c00396{left:46.947000px;}
.x3_c00396{left:67.953000px;}
.x2_c00396{left:122.547000px;}
.x1_c00396{left:127.575000px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls2_c00396{letter-spacing:-0.012800pt;}
.ls1_c00396{letter-spacing:0.000000pt;}
.ls0_c00396{letter-spacing:2266.128000pt;}
.ws0_c00396{word-spacing:0.000000pt;}
._0_c00396{margin-left:-6.187200pt;}
._7_c00396{margin-left:-3.532800pt;}
._9_c00396{margin-left:-1.824000pt;}
._1_c00396{width:1.760000pt;}
._a_c00396{width:2.707200pt;}
._6_c00396{width:3.622400pt;}
._3_c00396{width:4.761600pt;}
._b_c00396{width:6.400000pt;}
._4_c00396{width:8.742400pt;}
._5_c00396{width:13.574400pt;}
._8_c00396{width:15.110400pt;}
._2_c00396{width:20.627200pt;}
.fs0_c00396{font-size:48.000000pt;}
.fs1_c00396{font-size:64.000000pt;}
.y0_c00396{bottom:0.000000pt;}
.y15_c00396{bottom:3.366667pt;}
.y14_c00396{bottom:50.431641pt;}
.y13_c00396{bottom:58.914667pt;}
.y3_c00396{bottom:94.466667pt;}
.y1_c00396{bottom:94.866667pt;}
.y12_c00396{bottom:96.242667pt;}
.y11_c00396{bottom:133.570667pt;}
.y10_c00396{bottom:169.570667pt;}
.yf_c00396{bottom:206.898667pt;}
.ye_c00396{bottom:242.898667pt;}
.yd_c00396{bottom:280.226667pt;}
.yc_c00396{bottom:317.554667pt;}
.yb_c00396{bottom:353.554667pt;}
.ya_c00396{bottom:390.882667pt;}
.y9_c00396{bottom:426.882667pt;}
.y8_c00396{bottom:464.210667pt;}
.y7_c00396{bottom:501.538667pt;}
.y6_c00396{bottom:537.538667pt;}
.y5_c00396{bottom:574.866667pt;}
.y4_c00396{bottom:629.533333pt;}
.y2_c00396{bottom:642.466667pt;}
.h6_c00396{height:17.600093pt;}
.h2_c00396{height:43.031250pt;}
.h5_c00396{height:57.375000pt;}
.h4_c00396{height:57.781250pt;}
.h7_c00396{height:64.375000pt;}
.h1_c00396{height:936.685333pt;}
.h3_c00396{height:937.085333pt;}
.h0_c00396{height:1122.666667pt;}
.w3_c00396{width:26.696000pt;}
.w1_c00396{width:566.533333pt;}
.w2_c00396{width:583.913333pt;}
.w0_c00396{width:793.333333pt;}
.x0_c00396{left:0.000000pt;}
.x4_c00396{left:4.402667pt;}
.x5_c00396{left:41.730667pt;}
.x3_c00396{left:60.402667pt;}
.x2_c00396{left:108.930667pt;}
.x1_c00396{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00397;src:url('chunks/assets/font_c11e1d86ab18d191a625e6f1.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00397;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00397;src:url('chunks/assets/font_57850c39ba1d5f3a4ec5e120.woff2')format("woff");}.ff4_c00397{font-family:ff4_c00397;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00397{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.ls2_c00397{letter-spacing:-0.010800px;}
.ls1_c00397{letter-spacing:0.000000px;}
.ls0_c00397{letter-spacing:2549.394000px;}
.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;}
}
.ws0_c00397{word-spacing:0.000000px;}
.fc1_c00397{color:transparent;}
.fc0_c00397{color:rgb(0,0,0);}
.fs1_c00397{font-size:54.000000px;}
.fs0_c00397{font-size:72.000000px;}
.y0_c00397{bottom:0.000000px;}
.y7_c00397{bottom:3.787500px;}
.y6_c00397{bottom:56.735596px;}
.y5_c00397{bottom:70.294500px;}
.y4_c00397{bottom:85.294500px;}
.y1_c00397{bottom:88.705500px;}
.y3_c00397{bottom:541.294500px;}
.y2_c00397{bottom:557.794500px;}
.h4_c00397{height:19.800105px;}
.h2_c00397{height:47.988281px;}
.h3_c00397{height:48.410156px;}
.h5_c00397{height:72.421875px;}
.h1_c00397{height:1073.046000px;}
.h0_c00397{height:1263.000000px;}
.w3_c00397{width:30.031500px;}
.w2_c00397{width:637.350000px;}
.w1_c00397{width:656.902500px;}
.w0_c00397{width:892.500000px;}
.x0_c00397{left:0.000000px;}
.x2_c00397{left:4.953000px;}
.x1_c00397{left:122.547000px;}
.x4_c00397{left:127.575000px;}
.x5_c00397{left:175.953000px;}
.x3_c00397{left:196.953000px;}
.x6_c00397{left:734.908997px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls2_c00397{letter-spacing:-0.009600pt;}
.ls1_c00397{letter-spacing:0.000000pt;}
.ls0_c00397{letter-spacing:2266.128000pt;}
.ws0_c00397{word-spacing:0.000000pt;}
.fs1_c00397{font-size:48.000000pt;}
.fs0_c00397{font-size:64.000000pt;}
.y0_c00397{bottom:0.000000pt;}
.y7_c00397{bottom:3.366667pt;}
.y6_c00397{bottom:50.431641pt;}
.y5_c00397{bottom:62.484000pt;}
.y4_c00397{bottom:75.817333pt;}
.y1_c00397{bottom:78.849333pt;}
.y3_c00397{bottom:481.150667pt;}
.y2_c00397{bottom:495.817333pt;}
.h4_c00397{height:17.600093pt;}
.h2_c00397{height:42.656250pt;}
.h3_c00397{height:43.031250pt;}
.h5_c00397{height:64.375000pt;}
.h1_c00397{height:953.818667pt;}
.h0_c00397{height:1122.666667pt;}
.w3_c00397{width:26.694667pt;}
.w2_c00397{width:566.533333pt;}
.w1_c00397{width:583.913333pt;}
.w0_c00397{width:793.333333pt;}
.x0_c00397{left:0.000000pt;}
.x2_c00397{left:4.402667pt;}
.x1_c00397{left:108.930667pt;}
.x4_c00397{left:113.400000pt;}
.x5_c00397{left:156.402667pt;}
.x3_c00397{left:175.069333pt;}
.x6_c00397{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00398;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00398;src:url('chunks/assets/font_1d090598d30ec865becfa4d2.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00398;src:url('chunks/assets/font_0f64a0b76b5e88d9ae6f2269.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;line-height:1.330566;font-style: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;}
.ls1_c00398{letter-spacing:0.000000px;}
.ls0_c00398{letter-spacing:2549.376000px;}
.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:0.000000px;}
.fc1_c00398{color:transparent;}
.fc0_c00398{color:rgb(0,0,0);}
.fs1_c00398{font-size:54.000000px;}
.fs0_c00398{font-size:72.000000px;}
.y0_c00398{bottom:0.000000px;}
.y5_c00398{bottom:3.787500px;}
.y3_c00398{bottom:37.596000px;}
.y2_c00398{bottom:54.096000px;}
.y4_c00398{bottom:56.735596px;}
.y1_c00398{bottom:104.904000px;}
.h4_c00398{height:19.800105px;}
.h3_c00398{height:48.410156px;}
.h2_c00398{height:65.003906px;}
.h5_c00398{height:72.421875px;}
.h1_c00398{height:1056.847500px;}
.h0_c00398{height:1263.000000px;}
.w3_c00398{width:30.033000px;}
.w1_c00398{width:637.350000px;}
.w2_c00398{width:658.159500px;}
.w0_c00398{width:892.500000px;}
.x0_c00398{left:0.000000px;}
.x2_c00398{left:122.547000px;}
.x1_c00398{left:127.575000px;}
.x3_c00398{left:136.953000px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls1_c00398{letter-spacing:0.000000pt;}
.ls0_c00398{letter-spacing:2266.112000pt;}
.ws0_c00398{word-spacing:0.000000pt;}
.fs1_c00398{font-size:48.000000pt;}
.fs0_c00398{font-size:64.000000pt;}
.y0_c00398{bottom:0.000000pt;}
.y5_c00398{bottom:3.366667pt;}
.y3_c00398{bottom:33.418667pt;}
.y2_c00398{bottom:48.085333pt;}
.y4_c00398{bottom:50.431641pt;}
.y1_c00398{bottom:93.248000pt;}
.h4_c00398{height:17.600093pt;}
.h3_c00398{height:43.031250pt;}
.h2_c00398{height:57.781250pt;}
.h5_c00398{height:64.375000pt;}
.h1_c00398{height:939.420000pt;}
.h0_c00398{height:1122.666667pt;}
.w3_c00398{width:26.696000pt;}
.w1_c00398{width:566.533333pt;}
.w2_c00398{width:585.030667pt;}
.w0_c00398{width:793.333333pt;}
.x0_c00398{left:0.000000pt;}
.x2_c00398{left:108.930667pt;}
.x1_c00398{left:113.400000pt;}
.x3_c00398{left:121.736000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00399;src:url('chunks/assets/font_9db1b05eb360d763d8ddf4f3.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00399;src:url('chunks/assets/font_0f18e37cae6f9c08912aa2d6.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00399{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00399{vertical-align:0.000000px;}
.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;}
}
.ws0_c00399{word-spacing:0.000000px;}
.fc1_c00399{color:transparent;}
.fc0_c00399{color:rgb(0,0,0);}
.fs0_c00399{font-size:54.000000px;}
.fs1_c00399{font-size:72.000000px;}
.y0_c00399{bottom:0.000000px;}
.y5_c00399{bottom:3.787500px;}
.y3_c00399{bottom:14.572200px;}
.y2_c00399{bottom:29.570700px;}
.y4_c00399{bottom:56.735596px;}
.y1_c00399{bottom:106.275000px;}
.h4_c00399{height:19.800105px;}
.h2_c00399{height:35.991211px;}
.h3_c00399{height:48.410156px;}
.h5_c00399{height:72.421875px;}
.h1_c00399{height:1054.221000px;}
.h0_c00399{height:1263.000000px;}
.w2_c00399{width:30.031500px;}
.w1_c00399{width:655.645500px;}
.w0_c00399{width:892.500000px;}
.x0_c00399{left:0.000000px;}
.x2_c00399{left:3.771000px;}
.x1_c00399{left:123.804000px;}
.x3_c00399{left:451.971000px;}
.x4_c00399{left:734.908997px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls0_c00399{letter-spacing:0.000000pt;}
.ws0_c00399{word-spacing:0.000000pt;}
.fs0_c00399{font-size:48.000000pt;}
.fs1_c00399{font-size:64.000000pt;}
.y0_c00399{bottom:0.000000pt;}
.y5_c00399{bottom:3.366667pt;}
.y3_c00399{bottom:12.953067pt;}
.y2_c00399{bottom:26.285067pt;}
.y4_c00399{bottom:50.431641pt;}
.y1_c00399{bottom:94.466667pt;}
.h4_c00399{height:17.600093pt;}
.h2_c00399{height:31.992188pt;}
.h3_c00399{height:43.031250pt;}
.h5_c00399{height:64.375000pt;}
.h1_c00399{height:937.085333pt;}
.h0_c00399{height:1122.666667pt;}
.w2_c00399{width:26.694667pt;}
.w1_c00399{width:582.796000pt;}
.w0_c00399{width:793.333333pt;}
.x0_c00399{left:0.000000pt;}
.x2_c00399{left:3.352000pt;}
.x1_c00399{left:110.048000pt;}
.x3_c00399{left:401.752000pt;}
.x4_c00399{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00400;src:url('chunks/assets/font_6eff3c7b278252175b511cae.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00400;src:url('chunks/assets/font_92c3097b088fb9275f4ef7f8.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00400{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00400{vertical-align:0.000000px;}
.ls1_c00400{letter-spacing:0.000000px;}
.ls0_c00400{letter-spacing:2549.394000px;}
.sc__c00400{text-shadow:none;}
.sc0_c00400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00400{-webkit-text-stroke:0px transparent;}
.sc0_c00400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00400{word-spacing:0.000000px;}
.fc1_c00400{color:transparent;}
.fc0_c00400{color:rgb(0,0,0);}
.fs0_c00400{font-size:54.000000px;}
.fs1_c00400{font-size:72.000000px;}
.y0_c00400{bottom:0.000000px;}
.y5_c00400{bottom:3.787500px;}
.y3_c00400{bottom:21.330000px;}
.y2_c00400{bottom:36.330000px;}
.y4_c00400{bottom:56.735596px;}
.y1_c00400{bottom:104.670000px;}
.h3_c00400{height:19.800105px;}
.h2_c00400{height:48.410156px;}
.h4_c00400{height:72.421875px;}
.h1_c00400{height:1055.826000px;}
.h0_c00400{height:1263.000000px;}
.w3_c00400{width:30.033000px;}
.w1_c00400{width:637.350000px;}
.w2_c00400{width:655.645500px;}
.w0_c00400{width:892.500000px;}
.x0_c00400{left:0.000000px;}
.x2_c00400{left:123.804000px;}
.x1_c00400{left:127.575000px;}
.x3_c00400{left:165.696000px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls1_c00400{letter-spacing:0.000000pt;}
.ls0_c00400{letter-spacing:2266.128000pt;}
.ws0_c00400{word-spacing:0.000000pt;}
.fs0_c00400{font-size:48.000000pt;}
.fs1_c00400{font-size:64.000000pt;}
.y0_c00400{bottom:0.000000pt;}
.y5_c00400{bottom:3.366667pt;}
.y3_c00400{bottom:18.960000pt;}
.y2_c00400{bottom:32.293333pt;}
.y4_c00400{bottom:50.431641pt;}
.y1_c00400{bottom:93.040000pt;}
.h3_c00400{height:17.600093pt;}
.h2_c00400{height:43.031250pt;}
.h4_c00400{height:64.375000pt;}
.h1_c00400{height:938.512000pt;}
.h0_c00400{height:1122.666667pt;}
.w3_c00400{width:26.696000pt;}
.w1_c00400{width:566.533333pt;}
.w2_c00400{width:582.796000pt;}
.w0_c00400{width:793.333333pt;}
.x0_c00400{left:0.000000pt;}
.x2_c00400{left:110.048000pt;}
.x1_c00400{left:113.400000pt;}
.x3_c00400{left:147.285333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_181d1e7e9abb28698210c5f0.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.113281;font-style:normal;font-weight:normal;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_e438fea961f3c5ddbb59dcc9.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00401;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00401;src:url('chunks/assets/font_845788b2db5d910939b5674c.woff2')format("woff");}.ff4_c00401{font-family:ff4_c00401;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00401{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.ls1_c00401{letter-spacing:0.000000px;}
.ls0_c00401{letter-spacing:2549.376000px;}
.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:0.000000px;}
._8_c00401{margin-left:-6.971400px;}
._1_c00401{width:2.095200px;}
._0_c00401{width:3.175200px;}
._4_c00401{width:5.544000px;}
._2_c00401{width:8.056800px;}
._7_c00401{width:11.232000px;}
._6_c00401{width:15.069600px;}
._5_c00401{width:38.772000px;}
._3_c00401{width:40.017600px;}
.fc1_c00401{color:transparent;}
.fc0_c00401{color:rgb(0,0,0);}
.fs1_c00401{font-size:54.000000px;}
.fs0_c00401{font-size:72.000000px;}
.y0_c00401{bottom:0.000000px;}
.ye_c00401{bottom:3.787500px;}
.yd_c00401{bottom:56.735596px;}
.yc_c00401{bottom:85.726500px;}
.yb_c00401{bottom:100.725000px;}
.y1_c00401{bottom:106.275000px;}
.y9_c00401{bottom:106.725000px;}
.ya_c00401{bottom:116.775000px;}
.y8_c00401{bottom:784.749000px;}
.y7_c00401{bottom:826.743000px;}
.y6_c00401{bottom:868.737000px;}
.y5_c00401{bottom:909.237000px;}
.y4_c00401{bottom:951.231000px;}
.y3_c00401{bottom:991.731000px;}
.y2_c00401{bottom:1033.725000px;}
.h6_c00401{height:19.800105px;}
.h5_c00401{height:48.410156px;}
.h3_c00401{height:64.546875px;}
.h2_c00401{height:65.003906px;}
.h7_c00401{height:72.421875px;}
.h4_c00401{height:1055.028000px;}
.h1_c00401{height:1055.478000px;}
.h0_c00401{height:1263.000000px;}
.w3_c00401{width:30.031500px;}
.w2_c00401{width:637.350000px;}
.w1_c00401{width:658.159500px;}
.w0_c00401{width:892.500000px;}
.x0_c00401{left:0.000000px;}
.x2_c00401{left:4.953000px;}
.x3_c00401{left:46.947000px;}
.x1_c00401{left:122.547000px;}
.x4_c00401{left:127.575000px;}
.x5_c00401{left:734.908997px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls1_c00401{letter-spacing:0.000000pt;}
.ls0_c00401{letter-spacing:2266.112000pt;}
.ws0_c00401{word-spacing:0.000000pt;}
._8_c00401{margin-left:-6.196800pt;}
._1_c00401{width:1.862400pt;}
._0_c00401{width:2.822400pt;}
._4_c00401{width:4.928000pt;}
._2_c00401{width:7.161600pt;}
._7_c00401{width:9.984000pt;}
._6_c00401{width:13.395200pt;}
._5_c00401{width:34.464000pt;}
._3_c00401{width:35.571200pt;}
.fs1_c00401{font-size:48.000000pt;}
.fs0_c00401{font-size:64.000000pt;}
.y0_c00401{bottom:0.000000pt;}
.ye_c00401{bottom:3.366667pt;}
.yd_c00401{bottom:50.431641pt;}
.yc_c00401{bottom:76.201333pt;}
.yb_c00401{bottom:89.533333pt;}
.y1_c00401{bottom:94.466667pt;}
.y9_c00401{bottom:94.866667pt;}
.ya_c00401{bottom:103.800000pt;}
.y8_c00401{bottom:697.554667pt;}
.y7_c00401{bottom:734.882667pt;}
.y6_c00401{bottom:772.210667pt;}
.y5_c00401{bottom:808.210667pt;}
.y4_c00401{bottom:845.538667pt;}
.y3_c00401{bottom:881.538667pt;}
.y2_c00401{bottom:918.866667pt;}
.h6_c00401{height:17.600093pt;}
.h5_c00401{height:43.031250pt;}
.h3_c00401{height:57.375000pt;}
.h2_c00401{height:57.781250pt;}
.h7_c00401{height:64.375000pt;}
.h4_c00401{height:937.802667pt;}
.h1_c00401{height:938.202667pt;}
.h0_c00401{height:1122.666667pt;}
.w3_c00401{width:26.694667pt;}
.w2_c00401{width:566.533333pt;}
.w1_c00401{width:585.030667pt;}
.w0_c00401{width:793.333333pt;}
.x0_c00401{left:0.000000pt;}
.x2_c00401{left:4.402667pt;}
.x3_c00401{left:41.730667pt;}
.x1_c00401{left:108.930667pt;}
.x4_c00401{left:113.400000pt;}
.x5_c00401{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00402;src:url('chunks/assets/font_6869e86ecc50a94f7ac01a11.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00402;src:url('chunks/assets/font_c6bd7b78707b7cd307ddaee9.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00402{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.ls1_c00402{letter-spacing:0.000000px;}
.ls0_c00402{letter-spacing:2549.376000px;}
.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:0.000000px;}
._0_c00402{margin-left:-2.932200px;}
.fc1_c00402{color:transparent;}
.fc0_c00402{color:rgb(0,0,0);}
.fs1_c00402{font-size:54.000000px;}
.fs0_c00402{font-size:72.000000px;}
.y0_c00402{bottom:0.000000px;}
.y6_c00402{bottom:3.787500px;}
.y4_c00402{bottom:19.725000px;}
.y2_c00402{bottom:35.775000px;}
.y5_c00402{bottom:56.735596px;}
.y3_c00402{bottom:106.275000px;}
.y1_c00402{bottom:106.725000px;}
.h5_c00402{height:19.800105px;}
.h4_c00402{height:48.410156px;}
.h2_c00402{height:64.546875px;}
.h6_c00402{height:72.421875px;}
.h1_c00402{height:1055.028000px;}
.h3_c00402{height:1055.478000px;}
.h0_c00402{height:1263.000000px;}
.w3_c00402{width:30.033000px;}
.w1_c00402{width:637.350000px;}
.w2_c00402{width:658.159500px;}
.w0_c00402{width:892.500000px;}
.x0_c00402{left:0.000000px;}
.x3_c00402{left:60.453000px;}
.x2_c00402{left:122.547000px;}
.x1_c00402{left:127.575000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls1_c00402{letter-spacing:0.000000pt;}
.ls0_c00402{letter-spacing:2266.112000pt;}
.ws0_c00402{word-spacing:0.000000pt;}
._0_c00402{margin-left:-2.606400pt;}
.fs1_c00402{font-size:48.000000pt;}
.fs0_c00402{font-size:64.000000pt;}
.y0_c00402{bottom:0.000000pt;}
.y6_c00402{bottom:3.366667pt;}
.y4_c00402{bottom:17.533333pt;}
.y2_c00402{bottom:31.800000pt;}
.y5_c00402{bottom:50.431641pt;}
.y3_c00402{bottom:94.466667pt;}
.y1_c00402{bottom:94.866667pt;}
.h5_c00402{height:17.600093pt;}
.h4_c00402{height:43.031250pt;}
.h2_c00402{height:57.375000pt;}
.h6_c00402{height:64.375000pt;}
.h1_c00402{height:937.802667pt;}
.h3_c00402{height:938.202667pt;}
.h0_c00402{height:1122.666667pt;}
.w3_c00402{width:26.696000pt;}
.w1_c00402{width:566.533333pt;}
.w2_c00402{width:585.030667pt;}
.w0_c00402{width:793.333333pt;}
.x0_c00402{left:0.000000pt;}
.x3_c00402{left:53.736000pt;}
.x2_c00402{left:108.930667pt;}
.x1_c00402{left:113.400000pt;}
}





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

.ir_c00403:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00403{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00403;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00403;src:url('chunks/assets/font_a1aa1359dc2ceeb9f11b66c5.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00403;src:url('chunks/assets/font_88740fe752509819a91d97f8.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00403{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.ls1_c00403{letter-spacing:0.000000px;}
.ls0_c00403{letter-spacing:1682.568000px;}
.sc__c00403{text-shadow:none;}
.sc0_c00403{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00403{-webkit-text-stroke:0px transparent;}
.sc0_c00403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00403{word-spacing:0.000000px;}
._2_c00403{margin-left:-14.315400px;}
._1_c00403{margin-left:-1.587600px;}
._0_c00403{width:1.393200px;}
.fc0_c00403{color:rgb(0,0,0);}
.fs1_c00403{font-size:54.000000px;}
.fs0_c00403{font-size:72.000000px;}
.y0_c00403{bottom:0.000000px;}
.y6_c00403{bottom:3.787500px;}
.y4_c00403{bottom:20.776500px;}
.y3_c00403{bottom:35.775000px;}
.y2_c00403{bottom:52.275000px;}
.y5_c00403{bottom:56.735596px;}
.y1_c00403{bottom:97.725000px;}
.h5_c00403{height:19.800105px;}
.h3_c00403{height:48.410156px;}
.h4_c00403{height:64.540875px;}
.h2_c00403{height:64.546875px;}
.h6_c00403{height:72.421875px;}
.h1_c00403{height:1064.028000px;}
.h0_c00403{height:1263.000000px;}
.w2_c00403{width:30.031500px;}
.w1_c00403{width:647.404500px;}
.w0_c00403{width:892.500000px;}
.x0_c00403{left:0.000000px;}
.x3_c00403{left:111.453000px;}
.x2_c00403{left:112.953000px;}
.x1_c00403{left:122.547000px;}
.x4_c00403{left:734.908997px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls1_c00403{letter-spacing:0.000000pt;}
.ls0_c00403{letter-spacing:1495.616000pt;}
.ws0_c00403{word-spacing:0.000000pt;}
._2_c00403{margin-left:-12.724800pt;}
._1_c00403{margin-left:-1.411200pt;}
._0_c00403{width:1.238400pt;}
.fs1_c00403{font-size:48.000000pt;}
.fs0_c00403{font-size:64.000000pt;}
.y0_c00403{bottom:0.000000pt;}
.y6_c00403{bottom:3.366667pt;}
.y4_c00403{bottom:18.468000pt;}
.y3_c00403{bottom:31.800000pt;}
.y2_c00403{bottom:46.466667pt;}
.y5_c00403{bottom:50.431641pt;}
.y1_c00403{bottom:86.866667pt;}
.h5_c00403{height:17.600093pt;}
.h3_c00403{height:43.031250pt;}
.h4_c00403{height:57.369667pt;}
.h2_c00403{height:57.375000pt;}
.h6_c00403{height:64.375000pt;}
.h1_c00403{height:945.802667pt;}
.h0_c00403{height:1122.666667pt;}
.w2_c00403{width:26.694667pt;}
.w1_c00403{width:575.470667pt;}
.w0_c00403{width:793.333333pt;}
.x0_c00403{left:0.000000pt;}
.x3_c00403{left:99.069333pt;}
.x2_c00403{left:100.402667pt;}
.x1_c00403{left:108.930667pt;}
.x4_c00403{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ca7ccb8d7dff3045283a630.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.113281;font-style:normal;font-weight:normal;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_8db58d94f156a6e839377410.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00404;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00404;src:url('chunks/assets/font_0f18e37cae6f9c08912aa2d6.woff2')format("woff");}.ff4_c00404{font-family:ff4_c00404;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00404{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00404{vertical-align:0.000000px;}
.ls3_c00404{letter-spacing:-0.014400px;}
.ls2_c00404{letter-spacing:0.000000px;}
.ls1_c00404{letter-spacing:0.014400px;}
.ls0_c00404{letter-spacing:2549.376000px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00404{word-spacing:0.000000px;}
.ws0_c00404{word-spacing:3.628800px;}
._5_c00404{margin-left:-7.992000px;}
._6_c00404{margin-left:-2.878200px;}
._0_c00404{width:3.758400px;}
._4_c00404{width:9.612000px;}
._3_c00404{width:10.915200px;}
._1_c00404{width:15.616800px;}
._2_c00404{width:22.809600px;}
.fc2_c00404{color:transparent;}
.fc1_c00404{color:rgb(255,0,0);}
.fc0_c00404{color:rgb(0,0,0);}
.fs1_c00404{font-size:54.000000px;}
.fs0_c00404{font-size:72.000000px;}
.y0_c00404{bottom:0.000000px;}
.yd_c00404{bottom:3.787500px;}
.yc_c00404{bottom:56.735596px;}
.y1_c00404{bottom:106.275000px;}
.y9_c00404{bottom:106.725000px;}
.yb_c00404{bottom:180.225000px;}
.ya_c00404{bottom:196.275000px;}
.y8_c00404{bottom:738.239250px;}
.y7_c00404{bottom:778.739250px;}
.y6_c00404{bottom:820.733250px;}
.y5_c00404{bottom:862.727250px;}
.y4_c00404{bottom:903.227250px;}
.y3_c00404{bottom:945.221250px;}
.y2_c00404{bottom:1033.853250px;}
.h6_c00404{height:19.800105px;}
.h5_c00404{height:48.410156px;}
.h3_c00404{height:64.546875px;}
.h2_c00404{height:65.003906px;}
.h7_c00404{height:72.421875px;}
.h4_c00404{height:1055.028000px;}
.h1_c00404{height:1055.478000px;}
.h0_c00404{height:1263.000000px;}
.w3_c00404{width:30.033000px;}
.w2_c00404{width:637.350000px;}
.w1_c00404{width:658.159500px;}
.w0_c00404{width:892.500000px;}
.x0_c00404{left:0.000000px;}
.x2_c00404{left:5.028000px;}
.x5_c00404{left:40.953000px;}
.x3_c00404{left:46.950000px;}
.x1_c00404{left:122.547000px;}
.x4_c00404{left:127.575000px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls3_c00404{letter-spacing:-0.012800pt;}
.ls2_c00404{letter-spacing:0.000000pt;}
.ls1_c00404{letter-spacing:0.012800pt;}
.ls0_c00404{letter-spacing:2266.112000pt;}
.ws1_c00404{word-spacing:0.000000pt;}
.ws0_c00404{word-spacing:3.225600pt;}
._5_c00404{margin-left:-7.104000pt;}
._6_c00404{margin-left:-2.558400pt;}
._0_c00404{width:3.340800pt;}
._4_c00404{width:8.544000pt;}
._3_c00404{width:9.702400pt;}
._1_c00404{width:13.881600pt;}
._2_c00404{width:20.275200pt;}
.fs1_c00404{font-size:48.000000pt;}
.fs0_c00404{font-size:64.000000pt;}
.y0_c00404{bottom:0.000000pt;}
.yd_c00404{bottom:3.366667pt;}
.yc_c00404{bottom:50.431641pt;}
.y1_c00404{bottom:94.466667pt;}
.y9_c00404{bottom:94.866667pt;}
.yb_c00404{bottom:160.200000pt;}
.ya_c00404{bottom:174.466667pt;}
.y8_c00404{bottom:656.212667pt;}
.y7_c00404{bottom:692.212667pt;}
.y6_c00404{bottom:729.540667pt;}
.y5_c00404{bottom:766.868667pt;}
.y4_c00404{bottom:802.868667pt;}
.y3_c00404{bottom:840.196667pt;}
.y2_c00404{bottom:918.980667pt;}
.h6_c00404{height:17.600093pt;}
.h5_c00404{height:43.031250pt;}
.h3_c00404{height:57.375000pt;}
.h2_c00404{height:57.781250pt;}
.h7_c00404{height:64.375000pt;}
.h4_c00404{height:937.802667pt;}
.h1_c00404{height:938.202667pt;}
.h0_c00404{height:1122.666667pt;}
.w3_c00404{width:26.696000pt;}
.w2_c00404{width:566.533333pt;}
.w1_c00404{width:585.030667pt;}
.w0_c00404{width:793.333333pt;}
.x0_c00404{left:0.000000pt;}
.x2_c00404{left:4.469333pt;}
.x5_c00404{left:36.402667pt;}
.x3_c00404{left:41.733333pt;}
.x1_c00404{left:108.930667pt;}
.x4_c00404{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00405;src:url('chunks/assets/font_fff042a95c4412c7403ea7e9.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00405;src:url('chunks/assets/font_d073b8e78115818afb528c6b.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00405{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.ls3_c00405{letter-spacing:-0.010800px;}
.ls2_c00405{letter-spacing:0.000000px;}
.ls0_c00405{letter-spacing:2544.591000px;}
.ls1_c00405{letter-spacing:2549.400000px;}
.sc__c00405{text-shadow:none;}
.sc0_c00405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00405{-webkit-text-stroke:0px transparent;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00405{word-spacing:0.000000px;}
.fc1_c00405{color:transparent;}
.fc0_c00405{color:rgb(0,0,0);}
.fs0_c00405{font-size:54.000000px;}
.fs1_c00405{font-size:72.000000px;}
.y0_c00405{bottom:0.000000px;}
.y8_c00405{bottom:3.787500px;}
.y6_c00405{bottom:52.725000px;}
.y7_c00405{bottom:56.735596px;}
.y5_c00405{bottom:67.275000px;}
.y3_c00405{bottom:106.275000px;}
.y1_c00405{bottom:106.725000px;}
.y4_c00405{bottom:579.225000px;}
.y2_c00405{bottom:593.775000px;}
.h5_c00405{height:19.800105px;}
.h4_c00405{height:48.410156px;}
.h2_c00405{height:64.546875px;}
.h6_c00405{height:72.421875px;}
.h1_c00405{height:1055.028000px;}
.h3_c00405{height:1055.478000px;}
.h0_c00405{height:1263.000000px;}
.w3_c00405{width:30.031500px;}
.w1_c00405{width:637.350000px;}
.w2_c00405{width:656.902500px;}
.w0_c00405{width:892.500000px;}
.x0_c00405{left:0.000000px;}
.x2_c00405{left:122.547000px;}
.x1_c00405{left:127.575000px;}
.x3_c00405{left:139.953000px;}
.x4_c00405{left:734.908997px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls3_c00405{letter-spacing:-0.009600pt;}
.ls2_c00405{letter-spacing:0.000000pt;}
.ls0_c00405{letter-spacing:2261.858667pt;}
.ls1_c00405{letter-spacing:2266.133333pt;}
.ws0_c00405{word-spacing:0.000000pt;}
.fs0_c00405{font-size:48.000000pt;}
.fs1_c00405{font-size:64.000000pt;}
.y0_c00405{bottom:0.000000pt;}
.y8_c00405{bottom:3.366667pt;}
.y6_c00405{bottom:46.866667pt;}
.y7_c00405{bottom:50.431641pt;}
.y5_c00405{bottom:59.800000pt;}
.y3_c00405{bottom:94.466667pt;}
.y1_c00405{bottom:94.866667pt;}
.y4_c00405{bottom:514.866667pt;}
.y2_c00405{bottom:527.800000pt;}
.h5_c00405{height:17.600093pt;}
.h4_c00405{height:43.031250pt;}
.h2_c00405{height:57.375000pt;}
.h6_c00405{height:64.375000pt;}
.h1_c00405{height:937.802667pt;}
.h3_c00405{height:938.202667pt;}
.h0_c00405{height:1122.666667pt;}
.w3_c00405{width:26.694667pt;}
.w1_c00405{width:566.533333pt;}
.w2_c00405{width:583.913333pt;}
.w0_c00405{width:793.333333pt;}
.x0_c00405{left:0.000000pt;}
.x2_c00405{left:108.930667pt;}
.x1_c00405{left:113.400000pt;}
.x3_c00405{left:124.402667pt;}
.x4_c00405{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00406;src:url('chunks/assets/font_a31735ab122f64e43f35e91a.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00406;src:url('chunks/assets/font_a0444919fb9bfd53694b0944.woff2')format("woff");}.ff3_c00406{font-family:ff3_c00406;line-height:1.330566;font-style: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;}
.ls2_c00406{letter-spacing:0.000000px;}
.ls0_c00406{letter-spacing:2539.080000px;}
.ls1_c00406{letter-spacing:2549.394000px;}
.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:0.000000px;}
.fc1_c00406{color:transparent;}
.fc0_c00406{color:rgb(0,0,0);}
.fs0_c00406{font-size:54.000000px;}
.fs1_c00406{font-size:72.000000px;}
.y0_c00406{bottom:0.000000px;}
.y8_c00406{bottom:3.787500px;}
.y6_c00406{bottom:43.725000px;}
.y7_c00406{bottom:56.735596px;}
.y5_c00406{bottom:58.275000px;}
.y3_c00406{bottom:106.275000px;}
.y1_c00406{bottom:106.725000px;}
.y4_c00406{bottom:573.225000px;}
.y2_c00406{bottom:587.775000px;}
.h4_c00406{height:19.800105px;}
.h2_c00406{height:48.410156px;}
.h5_c00406{height:72.421875px;}
.h1_c00406{height:1053.771000px;}
.h3_c00406{height:1054.221000px;}
.h0_c00406{height:1263.000000px;}
.w3_c00406{width:30.033000px;}
.w1_c00406{width:637.350000px;}
.w2_c00406{width:656.902500px;}
.w0_c00406{width:892.500000px;}
.x0_c00406{left:0.000000px;}
.x2_c00406{left:1.425000px;}
.x3_c00406{left:122.547000px;}
.x1_c00406{left:127.575000px;}
.x4_c00406{left:145.953000px;}
.x5_c00406{left:150.453000px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls2_c00406{letter-spacing:0.000000pt;}
.ls0_c00406{letter-spacing:2256.960000pt;}
.ls1_c00406{letter-spacing:2266.128000pt;}
.ws0_c00406{word-spacing:0.000000pt;}
.fs0_c00406{font-size:48.000000pt;}
.fs1_c00406{font-size:64.000000pt;}
.y0_c00406{bottom:0.000000pt;}
.y8_c00406{bottom:3.366667pt;}
.y6_c00406{bottom:38.866667pt;}
.y7_c00406{bottom:50.431641pt;}
.y5_c00406{bottom:51.800000pt;}
.y3_c00406{bottom:94.466667pt;}
.y1_c00406{bottom:94.866667pt;}
.y4_c00406{bottom:509.533333pt;}
.y2_c00406{bottom:522.466667pt;}
.h4_c00406{height:17.600093pt;}
.h2_c00406{height:43.031250pt;}
.h5_c00406{height:64.375000pt;}
.h1_c00406{height:936.685333pt;}
.h3_c00406{height:937.085333pt;}
.h0_c00406{height:1122.666667pt;}
.w3_c00406{width:26.696000pt;}
.w1_c00406{width:566.533333pt;}
.w2_c00406{width:583.913333pt;}
.w0_c00406{width:793.333333pt;}
.x0_c00406{left:0.000000pt;}
.x2_c00406{left:1.266667pt;}
.x3_c00406{left:108.930667pt;}
.x1_c00406{left:113.400000pt;}
.x4_c00406{left:129.736000pt;}
.x5_c00406{left:133.736000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00407;src:url('chunks/assets/font_cec8d227cea89b4ce39e78ae.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00407;src:url('chunks/assets/font_03118a257ca858e277d0a635.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:1.330566;font-style: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;}
.ls2_c00407{letter-spacing:-0.010800px;}
.ls1_c00407{letter-spacing:0.000000px;}
.ls0_c00407{letter-spacing:2549.394000px;}
.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:0.000000px;}
.fc1_c00407{color:transparent;}
.fc0_c00407{color:rgb(0,0,0);}
.fs1_c00407{font-size:54.000000px;}
.fs0_c00407{font-size:72.000000px;}
.y0_c00407{bottom:0.000000px;}
.y8_c00407{bottom:3.787500px;}
.y7_c00407{bottom:56.735596px;}
.y6_c00407{bottom:57.225000px;}
.y5_c00407{bottom:71.775000px;}
.y1_c00407{bottom:106.275000px;}
.y4_c00407{bottom:106.725000px;}
.y3_c00407{bottom:580.725000px;}
.y2_c00407{bottom:597.225000px;}
.h5_c00407{height:19.800105px;}
.h2_c00407{height:47.988281px;}
.h3_c00407{height:48.410156px;}
.h6_c00407{height:72.421875px;}
.h4_c00407{height:1055.028000px;}
.h1_c00407{height:1055.478000px;}
.h0_c00407{height:1263.000000px;}
.w3_c00407{width:30.031500px;}
.w2_c00407{width:637.350000px;}
.w1_c00407{width:656.902500px;}
.w0_c00407{width:892.500000px;}
.x0_c00407{left:0.000000px;}
.x2_c00407{left:4.953000px;}
.x1_c00407{left:122.547000px;}
.x4_c00407{left:127.575000px;}
.x5_c00407{left:168.453000px;}
.x3_c00407{left:174.453000px;}
.x6_c00407{left:734.908997px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls2_c00407{letter-spacing:-0.009600pt;}
.ls1_c00407{letter-spacing:0.000000pt;}
.ls0_c00407{letter-spacing:2266.128000pt;}
.ws0_c00407{word-spacing:0.000000pt;}
.fs1_c00407{font-size:48.000000pt;}
.fs0_c00407{font-size:64.000000pt;}
.y0_c00407{bottom:0.000000pt;}
.y8_c00407{bottom:3.366667pt;}
.y7_c00407{bottom:50.431641pt;}
.y6_c00407{bottom:50.866667pt;}
.y5_c00407{bottom:63.800000pt;}
.y1_c00407{bottom:94.466667pt;}
.y4_c00407{bottom:94.866667pt;}
.y3_c00407{bottom:516.200000pt;}
.y2_c00407{bottom:530.866667pt;}
.h5_c00407{height:17.600093pt;}
.h2_c00407{height:42.656250pt;}
.h3_c00407{height:43.031250pt;}
.h6_c00407{height:64.375000pt;}
.h4_c00407{height:937.802667pt;}
.h1_c00407{height:938.202667pt;}
.h0_c00407{height:1122.666667pt;}
.w3_c00407{width:26.694667pt;}
.w2_c00407{width:566.533333pt;}
.w1_c00407{width:583.913333pt;}
.w0_c00407{width:793.333333pt;}
.x0_c00407{left:0.000000pt;}
.x2_c00407{left:4.402667pt;}
.x1_c00407{left:108.930667pt;}
.x4_c00407{left:113.400000pt;}
.x5_c00407{left:149.736000pt;}
.x3_c00407{left:155.069333pt;}
.x6_c00407{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00408;src:url('chunks/assets/font_799863c8373b613e4f284f95.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00408;src:url('chunks/assets/font_d5efccd5febd2ebc8efbc1a5.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00408{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.ls3_c00408{letter-spacing:-0.010800px;}
.ls2_c00408{letter-spacing:0.000000px;}
.ls1_c00408{letter-spacing:2549.394000px;}
.ls0_c00408{letter-spacing:2549.400000px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00408{word-spacing:0.000000px;}
.fc1_c00408{color:transparent;}
.fc0_c00408{color:rgb(0,0,0);}
.fs0_c00408{font-size:54.000000px;}
.fs1_c00408{font-size:72.000000px;}
.y0_c00408{bottom:0.000000px;}
.y8_c00408{bottom:3.787500px;}
.y6_c00408{bottom:12.225000px;}
.y5_c00408{bottom:26.775000px;}
.y7_c00408{bottom:56.735596px;}
.y3_c00408{bottom:106.275000px;}
.y1_c00408{bottom:106.725000px;}
.y4_c00408{bottom:547.725000px;}
.y2_c00408{bottom:562.275000px;}
.h5_c00408{height:19.800105px;}
.h4_c00408{height:48.410156px;}
.h2_c00408{height:64.546875px;}
.h6_c00408{height:72.421875px;}
.h1_c00408{height:1053.771000px;}
.h3_c00408{height:1054.221000px;}
.h0_c00408{height:1263.000000px;}
.w3_c00408{width:30.033000px;}
.w1_c00408{width:637.350000px;}
.w2_c00408{width:655.645500px;}
.w0_c00408{width:892.500000px;}
.x0_c00408{left:0.000000px;}
.x2_c00408{left:123.804000px;}
.x1_c00408{left:127.575000px;}
.x4_c00408{left:197.196000px;}
.x3_c00408{left:239.196000px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls3_c00408{letter-spacing:-0.009600pt;}
.ls2_c00408{letter-spacing:0.000000pt;}
.ls1_c00408{letter-spacing:2266.128000pt;}
.ls0_c00408{letter-spacing:2266.133333pt;}
.ws0_c00408{word-spacing:0.000000pt;}
.fs0_c00408{font-size:48.000000pt;}
.fs1_c00408{font-size:64.000000pt;}
.y0_c00408{bottom:0.000000pt;}
.y8_c00408{bottom:3.366667pt;}
.y6_c00408{bottom:10.866667pt;}
.y5_c00408{bottom:23.800000pt;}
.y7_c00408{bottom:50.431641pt;}
.y3_c00408{bottom:94.466667pt;}
.y1_c00408{bottom:94.866667pt;}
.y4_c00408{bottom:486.866667pt;}
.y2_c00408{bottom:499.800000pt;}
.h5_c00408{height:17.600093pt;}
.h4_c00408{height:43.031250pt;}
.h2_c00408{height:57.375000pt;}
.h6_c00408{height:64.375000pt;}
.h1_c00408{height:936.685333pt;}
.h3_c00408{height:937.085333pt;}
.h0_c00408{height:1122.666667pt;}
.w3_c00408{width:26.696000pt;}
.w1_c00408{width:566.533333pt;}
.w2_c00408{width:582.796000pt;}
.w0_c00408{width:793.333333pt;}
.x0_c00408{left:0.000000pt;}
.x2_c00408{left:110.048000pt;}
.x1_c00408{left:113.400000pt;}
.x4_c00408{left:175.285333pt;}
.x3_c00408{left:212.618667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00409;src:url('chunks/assets/font_41ce9ffdbcfa961a60b9f17a.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00409;src:url('chunks/assets/font_89b852315df0d3543c9405d4.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.330566;font-style: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;}
.ls2_c00409{letter-spacing:-0.010800px;}
.ls1_c00409{letter-spacing:0.000000px;}
.ls0_c00409{letter-spacing:2549.394000px;}
.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:0.000000px;}
.fc1_c00409{color:transparent;}
.fc0_c00409{color:rgb(0,0,0);}
.fs0_c00409{font-size:54.000000px;}
.fs1_c00409{font-size:72.000000px;}
.y0_c00409{bottom:0.000000px;}
.y8_c00409{bottom:3.787500px;}
.y6_c00409{bottom:30.225000px;}
.y5_c00409{bottom:44.775000px;}
.y7_c00409{bottom:56.735596px;}
.y3_c00409{bottom:106.275000px;}
.y1_c00409{bottom:106.725000px;}
.y4_c00409{bottom:580.725000px;}
.y2_c00409{bottom:595.275000px;}
.h4_c00409{height:19.800105px;}
.h2_c00409{height:48.410156px;}
.h5_c00409{height:72.421875px;}
.h1_c00409{height:1053.771000px;}
.h3_c00409{height:1054.221000px;}
.h0_c00409{height:1263.000000px;}
.w3_c00409{width:30.031500px;}
.w1_c00409{width:637.350000px;}
.w2_c00409{width:655.645500px;}
.w0_c00409{width:892.500000px;}
.x0_c00409{left:0.000000px;}
.x4_c00409{left:53.196000px;}
.x3_c00409{left:102.696000px;}
.x2_c00409{left:123.804000px;}
.x1_c00409{left:127.575000px;}
.x5_c00409{left:734.908997px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls2_c00409{letter-spacing:-0.009600pt;}
.ls1_c00409{letter-spacing:0.000000pt;}
.ls0_c00409{letter-spacing:2266.128000pt;}
.ws0_c00409{word-spacing:0.000000pt;}
.fs0_c00409{font-size:48.000000pt;}
.fs1_c00409{font-size:64.000000pt;}
.y0_c00409{bottom:0.000000pt;}
.y8_c00409{bottom:3.366667pt;}
.y6_c00409{bottom:26.866667pt;}
.y5_c00409{bottom:39.800000pt;}
.y7_c00409{bottom:50.431641pt;}
.y3_c00409{bottom:94.466667pt;}
.y1_c00409{bottom:94.866667pt;}
.y4_c00409{bottom:516.200000pt;}
.y2_c00409{bottom:529.133333pt;}
.h4_c00409{height:17.600093pt;}
.h2_c00409{height:43.031250pt;}
.h5_c00409{height:64.375000pt;}
.h1_c00409{height:936.685333pt;}
.h3_c00409{height:937.085333pt;}
.h0_c00409{height:1122.666667pt;}
.w3_c00409{width:26.694667pt;}
.w1_c00409{width:566.533333pt;}
.w2_c00409{width:582.796000pt;}
.w0_c00409{width:793.333333pt;}
.x0_c00409{left:0.000000pt;}
.x4_c00409{left:47.285333pt;}
.x3_c00409{left:91.285333pt;}
.x2_c00409{left:110.048000pt;}
.x1_c00409{left:113.400000pt;}
.x5_c00409{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00410;src:url('chunks/assets/font_236e9afeafa51586c8388313.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00410;src:url('chunks/assets/font_9a0bc661d0df87b2d8c74a79.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00410;src:url('chunks/assets/font_6ec6450c2414c1b978f07e76.woff2')format("woff");}.ff4_c00410{font-family:ff4_c00410;line-height:1.330566;font-style: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;}
.ls3_c00410{letter-spacing:-0.014400px;}
.ls2_c00410{letter-spacing:-0.010800px;}
.ls1_c00410{letter-spacing:0.000000px;}
.ls0_c00410{letter-spacing:2383.344000px;}
.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:0.000000px;}
._2_c00410{width:6.796800px;}
._0_c00410{width:10.591200px;}
._1_c00410{width:30.182400px;}
.fc2_c00410{color:transparent;}
.fc1_c00410{color:rgb(0,0,0);}
.fc0_c00410{color:rgb(255,0,0);}
.fs1_c00410{font-size:54.000000px;}
.fs0_c00410{font-size:72.000000px;}
.y0_c00410{bottom:0.000000px;}
.y9_c00410{bottom:3.787500px;}
.y7_c00410{bottom:30.178500px;}
.y8_c00410{bottom:56.735596px;}
.y6_c00410{bottom:70.678500px;}
.y1_c00410{bottom:85.333500px;}
.y5_c00410{bottom:112.672500px;}
.y4_c00410{bottom:154.666500px;}
.y3_c00410{bottom:204.166500px;}
.y2_c00410{bottom:219.166500px;}
.h5_c00410{height:19.800105px;}
.h3_c00410{height:48.410156px;}
.h4_c00410{height:64.546875px;}
.h2_c00410{height:65.003906px;}
.h6_c00410{height:72.421875px;}
.h1_c00410{height:1076.419500px;}
.h0_c00410{height:1263.000000px;}
.w2_c00410{width:30.033000px;}
.w1_c00410{width:647.404500px;}
.w0_c00410{width:892.500000px;}
.x0_c00410{left:0.000000px;}
.x4_c00410{left:4.953000px;}
.x2_c00410{left:25.953000px;}
.x5_c00410{left:46.947000px;}
.x1_c00410{left:122.547000px;}
.x6_c00410{left:127.559509px;}
.x3_c00410{left:183.453000px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls3_c00410{letter-spacing:-0.012800pt;}
.ls2_c00410{letter-spacing:-0.009600pt;}
.ls1_c00410{letter-spacing:0.000000pt;}
.ls0_c00410{letter-spacing:2118.528000pt;}
.ws0_c00410{word-spacing:0.000000pt;}
._2_c00410{width:6.041600pt;}
._0_c00410{width:9.414400pt;}
._1_c00410{width:26.828800pt;}
.fs1_c00410{font-size:48.000000pt;}
.fs0_c00410{font-size:64.000000pt;}
.y0_c00410{bottom:0.000000pt;}
.y9_c00410{bottom:3.366667pt;}
.y7_c00410{bottom:26.825333pt;}
.y8_c00410{bottom:50.431641pt;}
.y6_c00410{bottom:62.825333pt;}
.y1_c00410{bottom:75.852000pt;}
.y5_c00410{bottom:100.153333pt;}
.y4_c00410{bottom:137.481333pt;}
.y3_c00410{bottom:181.481333pt;}
.y2_c00410{bottom:194.814667pt;}
.h5_c00410{height:17.600093pt;}
.h3_c00410{height:43.031250pt;}
.h4_c00410{height:57.375000pt;}
.h2_c00410{height:57.781250pt;}
.h6_c00410{height:64.375000pt;}
.h1_c00410{height:956.817333pt;}
.h0_c00410{height:1122.666667pt;}
.w2_c00410{width:26.696000pt;}
.w1_c00410{width:575.470667pt;}
.w0_c00410{width:793.333333pt;}
.x0_c00410{left:0.000000pt;}
.x4_c00410{left:4.402667pt;}
.x2_c00410{left:23.069333pt;}
.x5_c00410{left:41.730667pt;}
.x1_c00410{left:108.930667pt;}
.x6_c00410{left:113.386231pt;}
.x3_c00410{left:163.069333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_64a4c7db9d9715886fd9d156.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00411;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00411;src:url('chunks/assets/font_28a5b4f1884b984f295efd14.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:1.330566;font-style: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;}
.ls3_c00411{letter-spacing:-0.010800px;}
.ls2_c00411{letter-spacing:0.000000px;}
.ls0_c00411{letter-spacing:2544.480000px;}
.ls1_c00411{letter-spacing:2549.400000px;}
.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:0.000000px;}
._1_c00411{margin-left:-2.754000px;}
._0_c00411{width:16.005600px;}
.fc1_c00411{color:transparent;}
.fc0_c00411{color:rgb(0,0,0);}
.fs1_c00411{font-size:54.000000px;}
.fs0_c00411{font-size:72.000000px;}
.y0_c00411{bottom:0.000000px;}
.ya_c00411{bottom:3.787500px;}
.y8_c00411{bottom:30.225000px;}
.y7_c00411{bottom:44.775000px;}
.y9_c00411{bottom:56.735596px;}
.y1_c00411{bottom:106.275000px;}
.y4_c00411{bottom:106.725000px;}
.y6_c00411{bottom:511.725000px;}
.y5_c00411{bottom:526.275000px;}
.y3_c00411{bottom:991.731000px;}
.y2_c00411{bottom:1033.725000px;}
.h5_c00411{height:19.800105px;}
.h4_c00411{height:48.410156px;}
.h2_c00411{height:64.546875px;}
.h6_c00411{height:72.421875px;}
.h3_c00411{height:1055.028000px;}
.h1_c00411{height:1055.478000px;}
.h0_c00411{height:1263.000000px;}
.w3_c00411{width:30.031500px;}
.w2_c00411{width:637.350000px;}
.w1_c00411{width:657.544500px;}
.w0_c00411{width:892.500000px;}
.x0_c00411{left:0.000000px;}
.x2_c00411{left:4.953000px;}
.x5_c00411{left:111.453000px;}
.x1_c00411{left:122.547000px;}
.x3_c00411{left:127.575000px;}
.x4_c00411{left:160.953000px;}
.x6_c00411{left:734.908997px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls3_c00411{letter-spacing:-0.009600pt;}
.ls2_c00411{letter-spacing:0.000000pt;}
.ls0_c00411{letter-spacing:2261.760000pt;}
.ls1_c00411{letter-spacing:2266.133333pt;}
.ws0_c00411{word-spacing:0.000000pt;}
._1_c00411{margin-left:-2.448000pt;}
._0_c00411{width:14.227200pt;}
.fs1_c00411{font-size:48.000000pt;}
.fs0_c00411{font-size:64.000000pt;}
.y0_c00411{bottom:0.000000pt;}
.ya_c00411{bottom:3.366667pt;}
.y8_c00411{bottom:26.866667pt;}
.y7_c00411{bottom:39.800000pt;}
.y9_c00411{bottom:50.431641pt;}
.y1_c00411{bottom:94.466667pt;}
.y4_c00411{bottom:94.866667pt;}
.y6_c00411{bottom:454.866667pt;}
.y5_c00411{bottom:467.800000pt;}
.y3_c00411{bottom:881.538667pt;}
.y2_c00411{bottom:918.866667pt;}
.h5_c00411{height:17.600093pt;}
.h4_c00411{height:43.031250pt;}
.h2_c00411{height:57.375000pt;}
.h6_c00411{height:64.375000pt;}
.h3_c00411{height:937.802667pt;}
.h1_c00411{height:938.202667pt;}
.h0_c00411{height:1122.666667pt;}
.w3_c00411{width:26.694667pt;}
.w2_c00411{width:566.533333pt;}
.w1_c00411{width:584.484000pt;}
.w0_c00411{width:793.333333pt;}
.x0_c00411{left:0.000000pt;}
.x2_c00411{left:4.402667pt;}
.x5_c00411{left:99.069333pt;}
.x1_c00411{left:108.930667pt;}
.x3_c00411{left:113.400000pt;}
.x4_c00411{left:143.069333pt;}
.x6_c00411{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00412;src:url('chunks/assets/font_591fe6a2825885130b6ce851.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00412;src:url('chunks/assets/font_1580beed3e7cd43812fad1cb.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.ls2_c00412{letter-spacing:0.000000px;}
.ls0_c00412{letter-spacing:2541.672000px;}
.ls1_c00412{letter-spacing:2549.376000px;}
.sc__c00412{text-shadow:none;}
.sc0_c00412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00412{-webkit-text-stroke:0px transparent;}
.sc0_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00412{word-spacing:0.000000px;}
.fc1_c00412{color:transparent;}
.fc0_c00412{color:rgb(0,0,0);}
.fs1_c00412{font-size:54.000000px;}
.fs0_c00412{font-size:72.000000px;}
.y0_c00412{bottom:0.000000px;}
.y8_c00412{bottom:3.787500px;}
.y7_c00412{bottom:56.735596px;}
.y6_c00412{bottom:75.225000px;}
.y5_c00412{bottom:91.275000px;}
.y3_c00412{bottom:106.275000px;}
.y1_c00412{bottom:106.725000px;}
.y4_c00412{bottom:582.225000px;}
.y2_c00412{bottom:598.275000px;}
.h5_c00412{height:19.800105px;}
.h4_c00412{height:48.410156px;}
.h2_c00412{height:64.546875px;}
.h6_c00412{height:72.421875px;}
.h1_c00412{height:1055.028000px;}
.h3_c00412{height:1055.478000px;}
.h0_c00412{height:1263.000000px;}
.w3_c00412{width:30.033000px;}
.w1_c00412{width:637.350000px;}
.w2_c00412{width:658.159500px;}
.w0_c00412{width:892.500000px;}
.x0_c00412{left:0.000000px;}
.x2_c00412{left:1.425000px;}
.x3_c00412{left:122.547000px;}
.x1_c00412{left:127.575000px;}
.x4_c00412{left:165.453000px;}
.x5_c00412{left:174.453000px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls2_c00412{letter-spacing:0.000000pt;}
.ls0_c00412{letter-spacing:2259.264000pt;}
.ls1_c00412{letter-spacing:2266.112000pt;}
.ws0_c00412{word-spacing:0.000000pt;}
.fs1_c00412{font-size:48.000000pt;}
.fs0_c00412{font-size:64.000000pt;}
.y0_c00412{bottom:0.000000pt;}
.y8_c00412{bottom:3.366667pt;}
.y7_c00412{bottom:50.431641pt;}
.y6_c00412{bottom:66.866667pt;}
.y5_c00412{bottom:81.133333pt;}
.y3_c00412{bottom:94.466667pt;}
.y1_c00412{bottom:94.866667pt;}
.y4_c00412{bottom:517.533333pt;}
.y2_c00412{bottom:531.800000pt;}
.h5_c00412{height:17.600093pt;}
.h4_c00412{height:43.031250pt;}
.h2_c00412{height:57.375000pt;}
.h6_c00412{height:64.375000pt;}
.h1_c00412{height:937.802667pt;}
.h3_c00412{height:938.202667pt;}
.h0_c00412{height:1122.666667pt;}
.w3_c00412{width:26.696000pt;}
.w1_c00412{width:566.533333pt;}
.w2_c00412{width:585.030667pt;}
.w0_c00412{width:793.333333pt;}
.x0_c00412{left:0.000000pt;}
.x2_c00412{left:1.266667pt;}
.x3_c00412{left:108.930667pt;}
.x1_c00412{left:113.400000pt;}
.x4_c00412{left:147.069333pt;}
.x5_c00412{left:155.069333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00413;src:url('chunks/assets/font_76085076757aaf55776ca82f.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00413;src:url('chunks/assets/font_64d2ad1d211ed09bba1e04a7.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00413;src:url('chunks/assets/font_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00413;src:url('chunks/assets/font_6a982a1978ad246faa175336.woff2')format("woff");}.ff5_c00413{font-family:ff5_c00413;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00413{vertical-align:0.000000px;}
.ls4_c00413{letter-spacing:-0.014400px;}
.ls3_c00413{letter-spacing:-0.010800px;}
.ls2_c00413{letter-spacing:0.000000px;}
.ls0_c00413{letter-spacing:2520.432000px;}
.ls1_c00413{letter-spacing:2549.376000px;}
.sc__c00413{text-shadow:none;}
.sc0_c00413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00413{-webkit-text-stroke:0px transparent;}
.sc0_c00413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00413{word-spacing:0.000000px;}
._2_c00413{width:1.821600px;}
._1_c00413{width:5.796000px;}
._0_c00413{width:12.751200px;}
._3_c00413{width:14.198400px;}
.fc1_c00413{color:transparent;}
.fc0_c00413{color:rgb(0,0,0);}
.fs1_c00413{font-size:54.000000px;}
.fs0_c00413{font-size:72.000000px;}
.y0_c00413{bottom:0.000000px;}
.yc_c00413{bottom:3.787500px;}
.ya_c00413{bottom:21.546000px;}
.y9_c00413{bottom:38.046000px;}
.yb_c00413{bottom:56.735596px;}
.y1_c00413{bottom:89.454000px;}
.y8_c00413{bottom:407.058000px;}
.y7_c00413{bottom:447.558000px;}
.y6_c00413{bottom:489.552000px;}
.y5_c00413{bottom:531.546000px;}
.y4_c00413{bottom:572.046000px;}
.y3_c00413{bottom:612.546000px;}
.y2_c00413{bottom:629.046000px;}
.h6_c00413{height:19.800105px;}
.h3_c00413{height:48.410156px;}
.h5_c00413{height:48.752930px;}
.h2_c00413{height:64.546875px;}
.h4_c00413{height:65.003906px;}
.h7_c00413{height:72.421875px;}
.h1_c00413{height:1072.299000px;}
.h0_c00413{height:1263.000000px;}
.w3_c00413{width:30.031500px;}
.w1_c00413{width:637.350000px;}
.w2_c00413{width:658.159500px;}
.w0_c00413{width:892.500000px;}
.x0_c00413{left:0.000000px;}
.x2_c00413{left:2.925000px;}
.x4_c00413{left:4.953000px;}
.x5_c00413{left:46.947000px;}
.x3_c00413{left:122.547000px;}
.x1_c00413{left:127.575000px;}
.x6_c00413{left:175.953000px;}
.x7_c00413{left:734.908997px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls4_c00413{letter-spacing:-0.012800pt;}
.ls3_c00413{letter-spacing:-0.009600pt;}
.ls2_c00413{letter-spacing:0.000000pt;}
.ls0_c00413{letter-spacing:2240.384000pt;}
.ls1_c00413{letter-spacing:2266.112000pt;}
.ws0_c00413{word-spacing:0.000000pt;}
._2_c00413{width:1.619200pt;}
._1_c00413{width:5.152000pt;}
._0_c00413{width:11.334400pt;}
._3_c00413{width:12.620800pt;}
.fs1_c00413{font-size:48.000000pt;}
.fs0_c00413{font-size:64.000000pt;}
.y0_c00413{bottom:0.000000pt;}
.yc_c00413{bottom:3.366667pt;}
.ya_c00413{bottom:19.152000pt;}
.y9_c00413{bottom:33.818667pt;}
.yb_c00413{bottom:50.431641pt;}
.y1_c00413{bottom:79.514667pt;}
.y8_c00413{bottom:361.829333pt;}
.y7_c00413{bottom:397.829333pt;}
.y6_c00413{bottom:435.157333pt;}
.y5_c00413{bottom:472.485333pt;}
.y4_c00413{bottom:508.485333pt;}
.y3_c00413{bottom:544.485333pt;}
.y2_c00413{bottom:559.152000pt;}
.h6_c00413{height:17.600093pt;}
.h3_c00413{height:43.031250pt;}
.h5_c00413{height:43.335938pt;}
.h2_c00413{height:57.375000pt;}
.h4_c00413{height:57.781250pt;}
.h7_c00413{height:64.375000pt;}
.h1_c00413{height:953.154667pt;}
.h0_c00413{height:1122.666667pt;}
.w3_c00413{width:26.694667pt;}
.w1_c00413{width:566.533333pt;}
.w2_c00413{width:585.030667pt;}
.w0_c00413{width:793.333333pt;}
.x0_c00413{left:0.000000pt;}
.x2_c00413{left:2.600000pt;}
.x4_c00413{left:4.402667pt;}
.x5_c00413{left:41.730667pt;}
.x3_c00413{left:108.930667pt;}
.x1_c00413{left:113.400000pt;}
.x6_c00413{left:156.402667pt;}
.x7_c00413{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_832c23d4ad2dd6136640c2ab.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00414;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00414;src:url('chunks/assets/font_d073b8e78115818afb528c6b.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00414{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.ls2_c00414{letter-spacing:-0.010800px;}
.ls1_c00414{letter-spacing:0.000000px;}
.ls0_c00414{letter-spacing:2530.512000px;}
.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;}
}
.ws0_c00414{word-spacing:0.000000px;}
._6_c00414{margin-left:-3.974400px;}
._4_c00414{margin-left:-2.685600px;}
._1_c00414{margin-left:-1.303200px;}
._5_c00414{width:1.332000px;}
._10_c00414{width:2.433600px;}
._8_c00414{width:3.686400px;}
._f_c00414{width:6.156000px;}
._0_c00414{width:8.164800px;}
._9_c00414{width:10.008000px;}
._e_c00414{width:11.268000px;}
._d_c00414{width:14.601600px;}
._a_c00414{width:15.883200px;}
._3_c00414{width:16.999200px;}
._2_c00414{width:18.302400px;}
._c_c00414{width:21.916800px;}
._b_c00414{width:22.996800px;}
._7_c00414{width:34.207200px;}
.fc1_c00414{color:transparent;}
.fc0_c00414{color:rgb(0,0,0);}
.fs1_c00414{font-size:54.000000px;}
.fs0_c00414{font-size:72.000000px;}
.y0_c00414{bottom:0.000000px;}
.y15_c00414{bottom:3.787500px;}
.y13_c00414{bottom:43.755000px;}
.y14_c00414{bottom:56.735596px;}
.y12_c00414{bottom:84.255000px;}
.y1_c00414{bottom:106.275000px;}
.y8_c00414{bottom:106.725000px;}
.y11_c00414{bottom:126.249000px;}
.y10_c00414{bottom:168.243000px;}
.yf_c00414{bottom:208.743000px;}
.ye_c00414{bottom:250.737000px;}
.yd_c00414{bottom:291.237000px;}
.yc_c00414{bottom:333.231000px;}
.yb_c00414{bottom:375.225000px;}
.ya_c00414{bottom:409.725000px;}
.y9_c00414{bottom:424.275000px;}
.y7_c00414{bottom:826.743000px;}
.y6_c00414{bottom:868.737000px;}
.y5_c00414{bottom:909.237000px;}
.y4_c00414{bottom:951.231000px;}
.y3_c00414{bottom:991.731000px;}
.y2_c00414{bottom:1033.725000px;}
.h5_c00414{height:19.800105px;}
.h4_c00414{height:48.410156px;}
.h2_c00414{height:64.546875px;}
.h6_c00414{height:72.421875px;}
.h3_c00414{height:1055.028000px;}
.h1_c00414{height:1055.478000px;}
.h0_c00414{height:1263.000000px;}
.w3_c00414{width:30.033000px;}
.w2_c00414{width:637.350000px;}
.w1_c00414{width:655.798500px;}
.w0_c00414{width:892.500000px;}
.x0_c00414{left:0.000000px;}
.x5_c00414{left:2.925000px;}
.x3_c00414{left:4.959000px;}
.x2_c00414{left:46.953000px;}
.x6_c00414{left:85.953000px;}
.x1_c00414{left:122.547000px;}
.x4_c00414{left:127.575000px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls2_c00414{letter-spacing:-0.009600pt;}
.ls1_c00414{letter-spacing:0.000000pt;}
.ls0_c00414{letter-spacing:2249.344000pt;}
.ws0_c00414{word-spacing:0.000000pt;}
._6_c00414{margin-left:-3.532800pt;}
._4_c00414{margin-left:-2.387200pt;}
._1_c00414{margin-left:-1.158400pt;}
._5_c00414{width:1.184000pt;}
._10_c00414{width:2.163200pt;}
._8_c00414{width:3.276800pt;}
._f_c00414{width:5.472000pt;}
._0_c00414{width:7.257600pt;}
._9_c00414{width:8.896000pt;}
._e_c00414{width:10.016000pt;}
._d_c00414{width:12.979200pt;}
._a_c00414{width:14.118400pt;}
._3_c00414{width:15.110400pt;}
._2_c00414{width:16.268800pt;}
._c_c00414{width:19.481600pt;}
._b_c00414{width:20.441600pt;}
._7_c00414{width:30.406400pt;}
.fs1_c00414{font-size:48.000000pt;}
.fs0_c00414{font-size:64.000000pt;}
.y0_c00414{bottom:0.000000pt;}
.y15_c00414{bottom:3.366667pt;}
.y13_c00414{bottom:38.893333pt;}
.y14_c00414{bottom:50.431641pt;}
.y12_c00414{bottom:74.893333pt;}
.y1_c00414{bottom:94.466667pt;}
.y8_c00414{bottom:94.866667pt;}
.y11_c00414{bottom:112.221333pt;}
.y10_c00414{bottom:149.549333pt;}
.yf_c00414{bottom:185.549333pt;}
.ye_c00414{bottom:222.877333pt;}
.yd_c00414{bottom:258.877333pt;}
.yc_c00414{bottom:296.205333pt;}
.yb_c00414{bottom:333.533333pt;}
.ya_c00414{bottom:364.200000pt;}
.y9_c00414{bottom:377.133333pt;}
.y7_c00414{bottom:734.882667pt;}
.y6_c00414{bottom:772.210667pt;}
.y5_c00414{bottom:808.210667pt;}
.y4_c00414{bottom:845.538667pt;}
.y3_c00414{bottom:881.538667pt;}
.y2_c00414{bottom:918.866667pt;}
.h5_c00414{height:17.600093pt;}
.h4_c00414{height:43.031250pt;}
.h2_c00414{height:57.375000pt;}
.h6_c00414{height:64.375000pt;}
.h3_c00414{height:937.802667pt;}
.h1_c00414{height:938.202667pt;}
.h0_c00414{height:1122.666667pt;}
.w3_c00414{width:26.696000pt;}
.w2_c00414{width:566.533333pt;}
.w1_c00414{width:582.932000pt;}
.w0_c00414{width:793.333333pt;}
.x0_c00414{left:0.000000pt;}
.x5_c00414{left:2.600000pt;}
.x3_c00414{left:4.408000pt;}
.x2_c00414{left:41.736000pt;}
.x6_c00414{left:76.402667pt;}
.x1_c00414{left:108.930667pt;}
.x4_c00414{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4e6534e9952116660d3e7438.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00415;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00415;src:url('chunks/assets/font_89b852315df0d3543c9405d4.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00415{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.ls2_c00415{letter-spacing:-0.014400px;}
.ls1_c00415{letter-spacing:0.000000px;}
.ls0_c00415{letter-spacing:2549.376000px;}
.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:0.000000px;}
._7_c00415{margin-left:-3.974400px;}
._f_c00415{margin-left:-1.998000px;}
._c_c00415{width:1.137600px;}
._0_c00415{width:2.628000px;}
._b_c00415{width:3.708000px;}
._1_c00415{width:5.328000px;}
._a_c00415{width:7.632000px;}
._8_c00415{width:9.216000px;}
._2_c00415{width:10.915200px;}
._5_c00415{width:16.732800px;}
._6_c00415{width:17.992800px;}
._4_c00415{width:25.041600px;}
._e_c00415{width:27.835200px;}
._3_c00415{width:29.016000px;}
._9_c00415{width:32.688000px;}
._d_c00415{width:36.079200px;}
.fc1_c00415{color:transparent;}
.fc0_c00415{color:rgb(0,0,0);}
.fs1_c00415{font-size:54.000000px;}
.fs0_c00415{font-size:72.000000px;}
.y0_c00415{bottom:0.000000px;}
.y14_c00415{bottom:3.787500px;}
.y12_c00415{bottom:6.735000px;}
.y11_c00415{bottom:23.235000px;}
.y13_c00415{bottom:56.735596px;}
.y1_c00415{bottom:102.765000px;}
.y10_c00415{bottom:458.283000px;}
.yf_c00415{bottom:498.783000px;}
.ye_c00415{bottom:540.777000px;}
.yd_c00415{bottom:581.277000px;}
.yc_c00415{bottom:623.271000px;}
.yb_c00415{bottom:665.265000px;}
.ya_c00415{bottom:705.765000px;}
.y9_c00415{bottom:747.759000px;}
.y8_c00415{bottom:788.259000px;}
.y7_c00415{bottom:830.253000px;}
.y6_c00415{bottom:872.247000px;}
.y5_c00415{bottom:912.747000px;}
.y4_c00415{bottom:954.741000px;}
.y3_c00415{bottom:995.241000px;}
.y2_c00415{bottom:1037.235000px;}
.h4_c00415{height:19.800105px;}
.h3_c00415{height:48.410156px;}
.h2_c00415{height:64.546875px;}
.h5_c00415{height:72.421875px;}
.h1_c00415{height:1058.986500px;}
.h0_c00415{height:1263.000000px;}
.w3_c00415{width:30.031500px;}
.w2_c00415{width:637.350000px;}
.w1_c00415{width:658.159500px;}
.w0_c00415{width:892.500000px;}
.x0_c00415{left:0.000000px;}
.x2_c00415{left:4.953000px;}
.x5_c00415{left:6.453000px;}
.x3_c00415{left:46.947000px;}
.x1_c00415{left:122.547000px;}
.x4_c00415{left:127.575000px;}
.x6_c00415{left:734.908997px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls2_c00415{letter-spacing:-0.012800pt;}
.ls1_c00415{letter-spacing:0.000000pt;}
.ls0_c00415{letter-spacing:2266.112000pt;}
.ws0_c00415{word-spacing:0.000000pt;}
._7_c00415{margin-left:-3.532800pt;}
._f_c00415{margin-left:-1.776000pt;}
._c_c00415{width:1.011200pt;}
._0_c00415{width:2.336000pt;}
._b_c00415{width:3.296000pt;}
._1_c00415{width:4.736000pt;}
._a_c00415{width:6.784000pt;}
._8_c00415{width:8.192000pt;}
._2_c00415{width:9.702400pt;}
._5_c00415{width:14.873600pt;}
._6_c00415{width:15.993600pt;}
._4_c00415{width:22.259200pt;}
._e_c00415{width:24.742400pt;}
._3_c00415{width:25.792000pt;}
._9_c00415{width:29.056000pt;}
._d_c00415{width:32.070400pt;}
.fs1_c00415{font-size:48.000000pt;}
.fs0_c00415{font-size:64.000000pt;}
.y0_c00415{bottom:0.000000pt;}
.y14_c00415{bottom:3.366667pt;}
.y12_c00415{bottom:5.986667pt;}
.y11_c00415{bottom:20.653333pt;}
.y13_c00415{bottom:50.431641pt;}
.y1_c00415{bottom:91.346667pt;}
.y10_c00415{bottom:407.362667pt;}
.yf_c00415{bottom:443.362667pt;}
.ye_c00415{bottom:480.690667pt;}
.yd_c00415{bottom:516.690667pt;}
.yc_c00415{bottom:554.018667pt;}
.yb_c00415{bottom:591.346667pt;}
.ya_c00415{bottom:627.346667pt;}
.y9_c00415{bottom:664.674667pt;}
.y8_c00415{bottom:700.674667pt;}
.y7_c00415{bottom:738.002667pt;}
.y6_c00415{bottom:775.330667pt;}
.y5_c00415{bottom:811.330667pt;}
.y4_c00415{bottom:848.658667pt;}
.y3_c00415{bottom:884.658667pt;}
.y2_c00415{bottom:921.986667pt;}
.h4_c00415{height:17.600093pt;}
.h3_c00415{height:43.031250pt;}
.h2_c00415{height:57.375000pt;}
.h5_c00415{height:64.375000pt;}
.h1_c00415{height:941.321333pt;}
.h0_c00415{height:1122.666667pt;}
.w3_c00415{width:26.694667pt;}
.w2_c00415{width:566.533333pt;}
.w1_c00415{width:585.030667pt;}
.w0_c00415{width:793.333333pt;}
.x0_c00415{left:0.000000pt;}
.x2_c00415{left:4.402667pt;}
.x5_c00415{left:5.736000pt;}
.x3_c00415{left:41.730667pt;}
.x1_c00415{left:108.930667pt;}
.x4_c00415{left:113.400000pt;}
.x6_c00415{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00416;src:url('chunks/assets/font_5e7f11f8fa92cfec9904d9ab.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00416;src:url('chunks/assets/font_780a5c480820a13d3b3211b7.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:1.330566;font-style: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;}
.ls1_c00416{letter-spacing:0.000000px;}
.ls0_c00416{letter-spacing:2549.394000px;}
.sc__c00416{text-shadow:none;}
.sc0_c00416{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00416{-webkit-text-stroke:0px transparent;}
.sc0_c00416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00416{word-spacing:0.000000px;}
._0_c00416{margin-left:-2.986200px;}
._2_c00416{margin-left:-1.765800px;}
._1_c00416{width:1.220400px;}
.fc1_c00416{color:transparent;}
.fc0_c00416{color:rgb(0,0,0);}
.fs0_c00416{font-size:54.000000px;}
.fs1_c00416{font-size:72.000000px;}
.y0_c00416{bottom:0.000000px;}
.y9_c00416{bottom:3.787500px;}
.y7_c00416{bottom:45.226500px;}
.y8_c00416{bottom:56.735596px;}
.y6_c00416{bottom:60.225000px;}
.y5_c00416{bottom:74.775000px;}
.y3_c00416{bottom:106.275000px;}
.y1_c00416{bottom:106.725000px;}
.y4_c00416{bottom:556.725000px;}
.y2_c00416{bottom:571.275000px;}
.h4_c00416{height:19.800105px;}
.h2_c00416{height:48.410156px;}
.h5_c00416{height:72.421875px;}
.h1_c00416{height:1053.771000px;}
.h3_c00416{height:1054.221000px;}
.h0_c00416{height:1263.000000px;}
.w3_c00416{width:30.033000px;}
.w1_c00416{width:637.350000px;}
.w2_c00416{width:655.645500px;}
.w0_c00416{width:892.500000px;}
.x0_c00416{left:0.000000px;}
.x4_c00416{left:3.696000px;}
.x3_c00416{left:41.196000px;}
.x2_c00416{left:123.804000px;}
.x1_c00416{left:127.575000px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls1_c00416{letter-spacing:0.000000pt;}
.ls0_c00416{letter-spacing:2266.128000pt;}
.ws0_c00416{word-spacing:0.000000pt;}
._0_c00416{margin-left:-2.654400pt;}
._2_c00416{margin-left:-1.569600pt;}
._1_c00416{width:1.084800pt;}
.fs0_c00416{font-size:48.000000pt;}
.fs1_c00416{font-size:64.000000pt;}
.y0_c00416{bottom:0.000000pt;}
.y9_c00416{bottom:3.366667pt;}
.y7_c00416{bottom:40.201333pt;}
.y8_c00416{bottom:50.431641pt;}
.y6_c00416{bottom:53.533333pt;}
.y5_c00416{bottom:66.466667pt;}
.y3_c00416{bottom:94.466667pt;}
.y1_c00416{bottom:94.866667pt;}
.y4_c00416{bottom:494.866667pt;}
.y2_c00416{bottom:507.800000pt;}
.h4_c00416{height:17.600093pt;}
.h2_c00416{height:43.031250pt;}
.h5_c00416{height:64.375000pt;}
.h1_c00416{height:936.685333pt;}
.h3_c00416{height:937.085333pt;}
.h0_c00416{height:1122.666667pt;}
.w3_c00416{width:26.696000pt;}
.w1_c00416{width:566.533333pt;}
.w2_c00416{width:582.796000pt;}
.w0_c00416{width:793.333333pt;}
.x0_c00416{left:0.000000pt;}
.x4_c00416{left:3.285333pt;}
.x3_c00416{left:36.618667pt;}
.x2_c00416{left:110.048000pt;}
.x1_c00416{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_c7ce4885389e56b3a5fe495c.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00417;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00417;src:url('chunks/assets/font_fae8e93385e696dc962fe0bd.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00417;src:url('chunks/assets/font_8254711a2a8c43c981d871d8.woff2')format("woff");}.ff4_c00417{font-family:ff4_c00417;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00417{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00417{vertical-align:0.000000px;}
.ls3_c00417{letter-spacing:-0.010800px;}
.ls2_c00417{letter-spacing:0.000000px;}
.ls0_c00417{letter-spacing:2549.376000px;}
.ls1_c00417{letter-spacing:2549.394000px;}
.sc__c00417{text-shadow:none;}
.sc0_c00417{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00417{-webkit-text-stroke:0px transparent;}
.sc0_c00417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00417{word-spacing:0.000000px;}
._3_c00417{margin-left:-5.342400px;}
._4_c00417{margin-left:-3.607200px;}
._5_c00417{width:1.101600px;}
._2_c00417{width:4.478400px;}
._1_c00417{width:17.611200px;}
._0_c00417{width:31.363200px;}
.fc1_c00417{color:transparent;}
.fc0_c00417{color:rgb(0,0,0);}
.fs1_c00417{font-size:54.000000px;}
.fs0_c00417{font-size:72.000000px;}
.y0_c00417{bottom:0.000000px;}
.yc_c00417{bottom:3.787500px;}
.ya_c00417{bottom:9.219000px;}
.y9_c00417{bottom:21.219000px;}
.yb_c00417{bottom:56.735596px;}
.y1_c00417{bottom:103.281000px;}
.y8_c00417{bottom:439.719000px;}
.y7_c00417{bottom:451.719000px;}
.y6_c00417{bottom:871.731000px;}
.y5_c00417{bottom:912.231000px;}
.y4_c00417{bottom:954.225000px;}
.y3_c00417{bottom:994.725000px;}
.y2_c00417{bottom:1036.719000px;}
.h4_c00417{height:19.800105px;}
.h3_c00417{height:48.410156px;}
.h2_c00417{height:64.546875px;}
.h5_c00417{height:72.421875px;}
.h1_c00417{height:1058.470500px;}
.h0_c00417{height:1263.000000px;}
.w3_c00417{width:30.031500px;}
.w2_c00417{width:637.350000px;}
.w1_c00417{width:658.159500px;}
.w0_c00417{width:892.500000px;}
.x0_c00417{left:0.000000px;}
.x3_c00417{left:4.959000px;}
.x2_c00417{left:46.953000px;}
.x1_c00417{left:122.547000px;}
.x4_c00417{left:127.575000px;}
.x5_c00417{left:132.453000px;}
.x6_c00417{left:144.453000px;}
.x7_c00417{left:734.908997px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls3_c00417{letter-spacing:-0.009600pt;}
.ls2_c00417{letter-spacing:0.000000pt;}
.ls0_c00417{letter-spacing:2266.112000pt;}
.ls1_c00417{letter-spacing:2266.128000pt;}
.ws0_c00417{word-spacing:0.000000pt;}
._3_c00417{margin-left:-4.748800pt;}
._4_c00417{margin-left:-3.206400pt;}
._5_c00417{width:0.979200pt;}
._2_c00417{width:3.980800pt;}
._1_c00417{width:15.654400pt;}
._0_c00417{width:27.878400pt;}
.fs1_c00417{font-size:48.000000pt;}
.fs0_c00417{font-size:64.000000pt;}
.y0_c00417{bottom:0.000000pt;}
.yc_c00417{bottom:3.366667pt;}
.ya_c00417{bottom:8.194667pt;}
.y9_c00417{bottom:18.861333pt;}
.yb_c00417{bottom:50.431641pt;}
.y1_c00417{bottom:91.805333pt;}
.y8_c00417{bottom:390.861333pt;}
.y7_c00417{bottom:401.528000pt;}
.y6_c00417{bottom:774.872000pt;}
.y5_c00417{bottom:810.872000pt;}
.y4_c00417{bottom:848.200000pt;}
.y3_c00417{bottom:884.200000pt;}
.y2_c00417{bottom:921.528000pt;}
.h4_c00417{height:17.600093pt;}
.h3_c00417{height:43.031250pt;}
.h2_c00417{height:57.375000pt;}
.h5_c00417{height:64.375000pt;}
.h1_c00417{height:940.862667pt;}
.h0_c00417{height:1122.666667pt;}
.w3_c00417{width:26.694667pt;}
.w2_c00417{width:566.533333pt;}
.w1_c00417{width:585.030667pt;}
.w0_c00417{width:793.333333pt;}
.x0_c00417{left:0.000000pt;}
.x3_c00417{left:4.408000pt;}
.x2_c00417{left:41.736000pt;}
.x1_c00417{left:108.930667pt;}
.x4_c00417{left:113.400000pt;}
.x5_c00417{left:117.736000pt;}
.x6_c00417{left:128.402667pt;}
.x7_c00417{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00418;src:url('chunks/assets/font_669d9cbc9d44fbc0ba6ed9de.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00418;src:url('chunks/assets/font_ce93c2d33d7caf8e1730dbd5.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:1.330566;font-style: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;}
.ls2_c00418{letter-spacing:-0.010800px;}
.ls1_c00418{letter-spacing:0.000000px;}
.ls0_c00418{letter-spacing:2549.394000px;}
.sc__c00418{text-shadow:none;}
.sc0_c00418{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00418{-webkit-text-stroke:0px transparent;}
.sc0_c00418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00418{word-spacing:0.000000px;}
.fc1_c00418{color:transparent;}
.fc0_c00418{color:rgb(0,0,0);}
.fs0_c00418{font-size:54.000000px;}
.fs1_c00418{font-size:72.000000px;}
.y0_c00418{bottom:0.000000px;}
.y8_c00418{bottom:3.787500px;}
.y6_c00418{bottom:52.725000px;}
.y7_c00418{bottom:56.735596px;}
.y5_c00418{bottom:67.275000px;}
.y3_c00418{bottom:106.275000px;}
.y1_c00418{bottom:106.725000px;}
.y4_c00418{bottom:576.225000px;}
.y2_c00418{bottom:590.775000px;}
.h4_c00418{height:19.800105px;}
.h2_c00418{height:48.410156px;}
.h5_c00418{height:72.421875px;}
.h1_c00418{height:1053.771000px;}
.h3_c00418{height:1054.221000px;}
.h0_c00418{height:1263.000000px;}
.w3_c00418{width:30.033000px;}
.w1_c00418{width:637.350000px;}
.w2_c00418{width:655.645500px;}
.w0_c00418{width:892.500000px;}
.x0_c00418{left:0.000000px;}
.x2_c00418{left:123.804000px;}
.x1_c00418{left:127.575000px;}
.x4_c00418{left:132.696000px;}
.x3_c00418{left:192.696000px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls2_c00418{letter-spacing:-0.009600pt;}
.ls1_c00418{letter-spacing:0.000000pt;}
.ls0_c00418{letter-spacing:2266.128000pt;}
.ws0_c00418{word-spacing:0.000000pt;}
.fs0_c00418{font-size:48.000000pt;}
.fs1_c00418{font-size:64.000000pt;}
.y0_c00418{bottom:0.000000pt;}
.y8_c00418{bottom:3.366667pt;}
.y6_c00418{bottom:46.866667pt;}
.y7_c00418{bottom:50.431641pt;}
.y5_c00418{bottom:59.800000pt;}
.y3_c00418{bottom:94.466667pt;}
.y1_c00418{bottom:94.866667pt;}
.y4_c00418{bottom:512.200000pt;}
.y2_c00418{bottom:525.133333pt;}
.h4_c00418{height:17.600093pt;}
.h2_c00418{height:43.031250pt;}
.h5_c00418{height:64.375000pt;}
.h1_c00418{height:936.685333pt;}
.h3_c00418{height:937.085333pt;}
.h0_c00418{height:1122.666667pt;}
.w3_c00418{width:26.696000pt;}
.w1_c00418{width:566.533333pt;}
.w2_c00418{width:582.796000pt;}
.w0_c00418{width:793.333333pt;}
.x0_c00418{left:0.000000pt;}
.x2_c00418{left:110.048000pt;}
.x1_c00418{left:113.400000pt;}
.x4_c00418{left:117.952000pt;}
.x3_c00418{left:171.285333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00419;src:url('chunks/assets/font_12688bb4d448a906fe46b2c1.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00419;src:url('chunks/assets/font_15cc599b027087639839c4bc.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00419{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.ls2_c00419{letter-spacing:-0.010800px;}
.ls1_c00419{letter-spacing:0.000000px;}
.ls0_c00419{letter-spacing:2549.394000px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00419{word-spacing:0.000000px;}
._0_c00419{margin-left:-2.980800px;}
.fc1_c00419{color:transparent;}
.fc0_c00419{color:rgb(0,0,0);}
.fs0_c00419{font-size:54.000000px;}
.fs1_c00419{font-size:72.000000px;}
.y0_c00419{bottom:0.000000px;}
.y8_c00419{bottom:3.787500px;}
.y6_c00419{bottom:51.225000px;}
.y7_c00419{bottom:56.735596px;}
.y5_c00419{bottom:65.775000px;}
.y3_c00419{bottom:106.275000px;}
.y1_c00419{bottom:106.725000px;}
.y4_c00419{bottom:588.225000px;}
.y2_c00419{bottom:602.775000px;}
.h4_c00419{height:19.800105px;}
.h2_c00419{height:48.410156px;}
.h5_c00419{height:72.421875px;}
.h1_c00419{height:1053.771000px;}
.h3_c00419{height:1054.221000px;}
.h0_c00419{height:1263.000000px;}
.w3_c00419{width:30.031500px;}
.w1_c00419{width:637.350000px;}
.w2_c00419{width:655.645500px;}
.w0_c00419{width:892.500000px;}
.x0_c00419{left:0.000000px;}
.x2_c00419{left:123.804000px;}
.x1_c00419{left:127.575000px;}
.x3_c00419{left:167.196000px;}
.x4_c00419{left:734.908997px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls2_c00419{letter-spacing:-0.009600pt;}
.ls1_c00419{letter-spacing:0.000000pt;}
.ls0_c00419{letter-spacing:2266.128000pt;}
.ws0_c00419{word-spacing:0.000000pt;}
._0_c00419{margin-left:-2.649600pt;}
.fs0_c00419{font-size:48.000000pt;}
.fs1_c00419{font-size:64.000000pt;}
.y0_c00419{bottom:0.000000pt;}
.y8_c00419{bottom:3.366667pt;}
.y6_c00419{bottom:45.533333pt;}
.y7_c00419{bottom:50.431641pt;}
.y5_c00419{bottom:58.466667pt;}
.y3_c00419{bottom:94.466667pt;}
.y1_c00419{bottom:94.866667pt;}
.y4_c00419{bottom:522.866667pt;}
.y2_c00419{bottom:535.800000pt;}
.h4_c00419{height:17.600093pt;}
.h2_c00419{height:43.031250pt;}
.h5_c00419{height:64.375000pt;}
.h1_c00419{height:936.685333pt;}
.h3_c00419{height:937.085333pt;}
.h0_c00419{height:1122.666667pt;}
.w3_c00419{width:26.694667pt;}
.w1_c00419{width:566.533333pt;}
.w2_c00419{width:582.796000pt;}
.w0_c00419{width:793.333333pt;}
.x0_c00419{left:0.000000pt;}
.x2_c00419{left:110.048000pt;}
.x1_c00419{left:113.400000pt;}
.x3_c00419{left:148.618667pt;}
.x4_c00419{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00420;src:url('chunks/assets/font_c1ef6eb0fc02e4242aca9188.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00420;src:url('chunks/assets/font_780a5c480820a13d3b3211b7.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.ls2_c00420{letter-spacing:-0.010800px;}
.ls1_c00420{letter-spacing:0.000000px;}
.ls0_c00420{letter-spacing:2549.394000px;}
.sc__c00420{text-shadow:none;}
.sc0_c00420{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00420{-webkit-text-stroke:0px transparent;}
.sc0_c00420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00420{word-spacing:0.000000px;}
.fc1_c00420{color:transparent;}
.fc0_c00420{color:rgb(0,0,0);}
.fs0_c00420{font-size:54.000000px;}
.fs1_c00420{font-size:72.000000px;}
.y0_c00420{bottom:0.000000px;}
.y8_c00420{bottom:3.787500px;}
.y7_c00420{bottom:56.735596px;}
.y6_c00420{bottom:63.225000px;}
.y5_c00420{bottom:77.775000px;}
.y3_c00420{bottom:106.275000px;}
.y1_c00420{bottom:106.725000px;}
.y4_c00420{bottom:598.725000px;}
.y2_c00420{bottom:613.275000px;}
.h4_c00420{height:19.800105px;}
.h2_c00420{height:48.410156px;}
.h5_c00420{height:72.421875px;}
.h1_c00420{height:1053.771000px;}
.h3_c00420{height:1054.221000px;}
.h0_c00420{height:1263.000000px;}
.w3_c00420{width:30.033000px;}
.w1_c00420{width:637.350000px;}
.w2_c00420{width:655.645500px;}
.w0_c00420{width:892.500000px;}
.x0_c00420{left:0.000000px;}
.x2_c00420{left:123.804000px;}
.x1_c00420{left:127.575000px;}
.x3_c00420{left:141.696000px;}
.x4_c00420{left:170.196000px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls2_c00420{letter-spacing:-0.009600pt;}
.ls1_c00420{letter-spacing:0.000000pt;}
.ls0_c00420{letter-spacing:2266.128000pt;}
.ws0_c00420{word-spacing:0.000000pt;}
.fs0_c00420{font-size:48.000000pt;}
.fs1_c00420{font-size:64.000000pt;}
.y0_c00420{bottom:0.000000pt;}
.y8_c00420{bottom:3.366667pt;}
.y7_c00420{bottom:50.431641pt;}
.y6_c00420{bottom:56.200000pt;}
.y5_c00420{bottom:69.133333pt;}
.y3_c00420{bottom:94.466667pt;}
.y1_c00420{bottom:94.866667pt;}
.y4_c00420{bottom:532.200000pt;}
.y2_c00420{bottom:545.133333pt;}
.h4_c00420{height:17.600093pt;}
.h2_c00420{height:43.031250pt;}
.h5_c00420{height:64.375000pt;}
.h1_c00420{height:936.685333pt;}
.h3_c00420{height:937.085333pt;}
.h0_c00420{height:1122.666667pt;}
.w3_c00420{width:26.696000pt;}
.w1_c00420{width:566.533333pt;}
.w2_c00420{width:582.796000pt;}
.w0_c00420{width:793.333333pt;}
.x0_c00420{left:0.000000pt;}
.x2_c00420{left:110.048000pt;}
.x1_c00420{left:113.400000pt;}
.x3_c00420{left:125.952000pt;}
.x4_c00420{left:151.285333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0313ad1eaa442348c7d59d6.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.113281;font-style:normal;font-weight:normal;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_0026c0cfdf5346ba441e7c87.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00421;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00421;src:url('chunks/assets/font_a2a5398a4f04426b34562361.woff2')format("woff");}.ff4_c00421{font-family:ff4_c00421;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00421{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.ls2_c00421{letter-spacing:-0.010800px;}
.ls1_c00421{letter-spacing:0.000000px;}
.ls0_c00421{letter-spacing:2340.036000px;}
.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:0.000000px;}
._3_c00421{margin-left:-2.980800px;}
._1_c00421{margin-left:-1.303200px;}
._2_c00421{width:1.987200px;}
._0_c00421{width:5.695200px;}
._4_c00421{width:18.410400px;}
.fc1_c00421{color:rgb(3,3,3);}
.fc0_c00421{color:rgb(0,0,0);}
.fs1_c00421{font-size:54.000000px;}
.fs0_c00421{font-size:72.000000px;}
.y0_c00421{bottom:0.000000px;}
.ya_c00421{bottom:3.787500px;}
.y8_c00421{bottom:10.726500px;}
.y7_c00421{bottom:25.725000px;}
.y9_c00421{bottom:56.735596px;}
.y1_c00421{bottom:106.275000px;}
.y6_c00421{bottom:868.737000px;}
.y5_c00421{bottom:909.237000px;}
.y4_c00421{bottom:951.231000px;}
.y3_c00421{bottom:991.731000px;}
.y2_c00421{bottom:1033.725000px;}
.h5_c00421{height:19.800105px;}
.h4_c00421{height:48.410156px;}
.h3_c00421{height:64.546875px;}
.h2_c00421{height:65.003906px;}
.h6_c00421{height:72.421875px;}
.h1_c00421{height:1055.478000px;}
.h0_c00421{height:1263.000000px;}
.w2_c00421{width:30.031500px;}
.w1_c00421{width:647.404500px;}
.w0_c00421{width:892.500000px;}
.x0_c00421{left:0.000000px;}
.x2_c00421{left:4.953000px;}
.x4_c00421{left:30.453000px;}
.x3_c00421{left:46.947000px;}
.x1_c00421{left:122.547000px;}
.x5_c00421{left:127.950000px;}
.x6_c00421{left:734.908997px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls2_c00421{letter-spacing:-0.009600pt;}
.ls1_c00421{letter-spacing:0.000000pt;}
.ls0_c00421{letter-spacing:2080.032000pt;}
.ws0_c00421{word-spacing:0.000000pt;}
._3_c00421{margin-left:-2.649600pt;}
._1_c00421{margin-left:-1.158400pt;}
._2_c00421{width:1.766400pt;}
._0_c00421{width:5.062400pt;}
._4_c00421{width:16.364800pt;}
.fs1_c00421{font-size:48.000000pt;}
.fs0_c00421{font-size:64.000000pt;}
.y0_c00421{bottom:0.000000pt;}
.ya_c00421{bottom:3.366667pt;}
.y8_c00421{bottom:9.534667pt;}
.y7_c00421{bottom:22.866667pt;}
.y9_c00421{bottom:50.431641pt;}
.y1_c00421{bottom:94.466667pt;}
.y6_c00421{bottom:772.210667pt;}
.y5_c00421{bottom:808.210667pt;}
.y4_c00421{bottom:845.538667pt;}
.y3_c00421{bottom:881.538667pt;}
.y2_c00421{bottom:918.866667pt;}
.h5_c00421{height:17.600093pt;}
.h4_c00421{height:43.031250pt;}
.h3_c00421{height:57.375000pt;}
.h2_c00421{height:57.781250pt;}
.h6_c00421{height:64.375000pt;}
.h1_c00421{height:938.202667pt;}
.h0_c00421{height:1122.666667pt;}
.w2_c00421{width:26.694667pt;}
.w1_c00421{width:575.470667pt;}
.w0_c00421{width:793.333333pt;}
.x0_c00421{left:0.000000pt;}
.x2_c00421{left:4.402667pt;}
.x4_c00421{left:27.069333pt;}
.x3_c00421{left:41.730667pt;}
.x1_c00421{left:108.930667pt;}
.x5_c00421{left:113.733333pt;}
.x6_c00421{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00422;src:url('chunks/assets/font_de123dac831aa158b2db158c.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00422;src:url('chunks/assets/font_776d0ff3b746116e8b0c86df.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00422{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.ls2_c00422{letter-spacing:-0.010800px;}
.ls1_c00422{letter-spacing:0.000000px;}
.ls0_c00422{letter-spacing:2549.394000px;}
.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;}
}
.ws0_c00422{word-spacing:0.000000px;}
._1_c00422{width:2.824200px;}
._0_c00422{width:6.782400px;}
._2_c00422{width:8.283600px;}
.fc1_c00422{color:transparent;}
.fc0_c00422{color:rgb(0,0,0);}
.fs0_c00422{font-size:54.000000px;}
.fs1_c00422{font-size:72.000000px;}
.y0_c00422{bottom:0.000000px;}
.ya_c00422{bottom:3.787500px;}
.y8_c00422{bottom:25.726500px;}
.y7_c00422{bottom:40.725000px;}
.y6_c00422{bottom:55.275000px;}
.y9_c00422{bottom:56.735596px;}
.y3_c00422{bottom:106.275000px;}
.y1_c00422{bottom:106.725000px;}
.y5_c00422{bottom:577.726500px;}
.y4_c00422{bottom:592.725000px;}
.y2_c00422{bottom:607.275000px;}
.h4_c00422{height:19.800105px;}
.h2_c00422{height:48.410156px;}
.h5_c00422{height:72.421875px;}
.h1_c00422{height:1053.771000px;}
.h3_c00422{height:1054.221000px;}
.h0_c00422{height:1263.000000px;}
.w3_c00422{width:30.033000px;}
.w1_c00422{width:637.350000px;}
.w2_c00422{width:655.645500px;}
.w0_c00422{width:892.500000px;}
.x0_c00422{left:0.000000px;}
.x3_c00422{left:3.696000px;}
.x2_c00422{left:123.804000px;}
.x1_c00422{left:127.575000px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls2_c00422{letter-spacing:-0.009600pt;}
.ls1_c00422{letter-spacing:0.000000pt;}
.ls0_c00422{letter-spacing:2266.128000pt;}
.ws0_c00422{word-spacing:0.000000pt;}
._1_c00422{width:2.510400pt;}
._0_c00422{width:6.028800pt;}
._2_c00422{width:7.363200pt;}
.fs0_c00422{font-size:48.000000pt;}
.fs1_c00422{font-size:64.000000pt;}
.y0_c00422{bottom:0.000000pt;}
.ya_c00422{bottom:3.366667pt;}
.y8_c00422{bottom:22.868000pt;}
.y7_c00422{bottom:36.200000pt;}
.y6_c00422{bottom:49.133333pt;}
.y9_c00422{bottom:50.431641pt;}
.y3_c00422{bottom:94.466667pt;}
.y1_c00422{bottom:94.866667pt;}
.y5_c00422{bottom:513.534667pt;}
.y4_c00422{bottom:526.866667pt;}
.y2_c00422{bottom:539.800000pt;}
.h4_c00422{height:17.600093pt;}
.h2_c00422{height:43.031250pt;}
.h5_c00422{height:64.375000pt;}
.h1_c00422{height:936.685333pt;}
.h3_c00422{height:937.085333pt;}
.h0_c00422{height:1122.666667pt;}
.w3_c00422{width:26.696000pt;}
.w1_c00422{width:566.533333pt;}
.w2_c00422{width:582.796000pt;}
.w0_c00422{width:793.333333pt;}
.x0_c00422{left:0.000000pt;}
.x3_c00422{left:3.285333pt;}
.x2_c00422{left:110.048000pt;}
.x1_c00422{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00423;src:url('chunks/assets/font_4afc9eceaa4fede84c891188.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00423;src:url('chunks/assets/font_a07546cdf0621ec947ae7759.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:1.330566;font-style: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;}
.ls2_c00423{letter-spacing:-0.010800px;}
.ls1_c00423{letter-spacing:0.000000px;}
.ls0_c00423{letter-spacing:2549.400000px;}
.sc__c00423{text-shadow:none;}
.sc0_c00423{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00423{-webkit-text-stroke:0px transparent;}
.sc0_c00423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00423{word-spacing:0.000000px;}
.fc2_c00423{color:transparent;}
.fc1_c00423{color:rgb(255,0,0);}
.fc0_c00423{color:rgb(0,0,0);}
.fs0_c00423{font-size:54.000000px;}
.fs1_c00423{font-size:72.000000px;}
.y0_c00423{bottom:0.000000px;}
.y8_c00423{bottom:3.787500px;}
.y6_c00423{bottom:34.725000px;}
.y5_c00423{bottom:49.275000px;}
.y7_c00423{bottom:56.735596px;}
.y1_c00423{bottom:106.275000px;}
.y4_c00423{bottom:106.725000px;}
.y3_c00423{bottom:574.726500px;}
.y2_c00423{bottom:589.725000px;}
.h6_c00423{height:19.800105px;}
.h2_c00423{height:35.991211px;}
.h3_c00423{height:48.410156px;}
.h5_c00423{height:64.546875px;}
.h7_c00423{height:72.421875px;}
.h4_c00423{height:1053.771000px;}
.h1_c00423{height:1054.221000px;}
.h0_c00423{height:1263.000000px;}
.w3_c00423{width:30.031500px;}
.w2_c00423{width:637.350000px;}
.w1_c00423{width:655.645500px;}
.w0_c00423{width:892.500000px;}
.x0_c00423{left:0.000000px;}
.x2_c00423{left:3.696000px;}
.x5_c00423{left:30.696000px;}
.x1_c00423{left:123.804000px;}
.x4_c00423{left:127.575000px;}
.x3_c00423{left:168.693000px;}
.x6_c00423{left:734.908997px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls2_c00423{letter-spacing:-0.009600pt;}
.ls1_c00423{letter-spacing:0.000000pt;}
.ls0_c00423{letter-spacing:2266.133333pt;}
.ws0_c00423{word-spacing:0.000000pt;}
.fs0_c00423{font-size:48.000000pt;}
.fs1_c00423{font-size:64.000000pt;}
.y0_c00423{bottom:0.000000pt;}
.y8_c00423{bottom:3.366667pt;}
.y6_c00423{bottom:30.866667pt;}
.y5_c00423{bottom:43.800000pt;}
.y7_c00423{bottom:50.431641pt;}
.y1_c00423{bottom:94.466667pt;}
.y4_c00423{bottom:94.866667pt;}
.y3_c00423{bottom:510.868000pt;}
.y2_c00423{bottom:524.200000pt;}
.h6_c00423{height:17.600093pt;}
.h2_c00423{height:31.992188pt;}
.h3_c00423{height:43.031250pt;}
.h5_c00423{height:57.375000pt;}
.h7_c00423{height:64.375000pt;}
.h4_c00423{height:936.685333pt;}
.h1_c00423{height:937.085333pt;}
.h0_c00423{height:1122.666667pt;}
.w3_c00423{width:26.694667pt;}
.w2_c00423{width:566.533333pt;}
.w1_c00423{width:582.796000pt;}
.w0_c00423{width:793.333333pt;}
.x0_c00423{left:0.000000pt;}
.x2_c00423{left:3.285333pt;}
.x5_c00423{left:27.285333pt;}
.x1_c00423{left:110.048000pt;}
.x4_c00423{left:113.400000pt;}
.x3_c00423{left:149.949333pt;}
.x6_c00423{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00424;src:url('chunks/assets/font_7ae594a6bd355137684686b4.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00424;src:url('chunks/assets/font_9ffcec59209cfc264c910dbb.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:1.330566;font-style: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;}
.ls3_c00424{letter-spacing:-0.010800px;}
.ls2_c00424{letter-spacing:0.000000px;}
.ls1_c00424{letter-spacing:2549.394000px;}
.ls0_c00424{letter-spacing:2549.400000px;}
.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:0.000000px;}
.fc2_c00424{color:transparent;}
.fc1_c00424{color:rgb(255,0,0);}
.fc0_c00424{color:rgb(0,0,0);}
.fs0_c00424{font-size:54.000000px;}
.fs1_c00424{font-size:72.000000px;}
.y0_c00424{bottom:0.000000px;}
.y8_c00424{bottom:3.787500px;}
.y6_c00424{bottom:28.725000px;}
.y5_c00424{bottom:43.275000px;}
.y7_c00424{bottom:56.735596px;}
.y3_c00424{bottom:106.275000px;}
.y1_c00424{bottom:106.725000px;}
.y4_c00424{bottom:547.725000px;}
.y2_c00424{bottom:562.275000px;}
.h5_c00424{height:19.800105px;}
.h4_c00424{height:48.410156px;}
.h2_c00424{height:64.546875px;}
.h6_c00424{height:72.421875px;}
.h1_c00424{height:1053.771000px;}
.h3_c00424{height:1054.221000px;}
.h0_c00424{height:1263.000000px;}
.w3_c00424{width:30.033000px;}
.w1_c00424{width:637.350000px;}
.w2_c00424{width:655.645500px;}
.w0_c00424{width:892.500000px;}
.x0_c00424{left:0.000000px;}
.x4_c00424{left:29.196000px;}
.x3_c00424{left:98.196000px;}
.x2_c00424{left:123.804000px;}
.x1_c00424{left:127.575000px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls3_c00424{letter-spacing:-0.009600pt;}
.ls2_c00424{letter-spacing:0.000000pt;}
.ls1_c00424{letter-spacing:2266.128000pt;}
.ls0_c00424{letter-spacing:2266.133333pt;}
.ws0_c00424{word-spacing:0.000000pt;}
.fs0_c00424{font-size:48.000000pt;}
.fs1_c00424{font-size:64.000000pt;}
.y0_c00424{bottom:0.000000pt;}
.y8_c00424{bottom:3.366667pt;}
.y6_c00424{bottom:25.533333pt;}
.y5_c00424{bottom:38.466667pt;}
.y7_c00424{bottom:50.431641pt;}
.y3_c00424{bottom:94.466667pt;}
.y1_c00424{bottom:94.866667pt;}
.y4_c00424{bottom:486.866667pt;}
.y2_c00424{bottom:499.800000pt;}
.h5_c00424{height:17.600093pt;}
.h4_c00424{height:43.031250pt;}
.h2_c00424{height:57.375000pt;}
.h6_c00424{height:64.375000pt;}
.h1_c00424{height:936.685333pt;}
.h3_c00424{height:937.085333pt;}
.h0_c00424{height:1122.666667pt;}
.w3_c00424{width:26.696000pt;}
.w1_c00424{width:566.533333pt;}
.w2_c00424{width:582.796000pt;}
.w0_c00424{width:793.333333pt;}
.x0_c00424{left:0.000000pt;}
.x4_c00424{left:25.952000pt;}
.x3_c00424{left:87.285333pt;}
.x2_c00424{left:110.048000pt;}
.x1_c00424{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_5e0b8572ce5977632a589361.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.113281;font-style:normal;font-weight:normal;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_f908570017be05b7dcf4a634.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00425;src:url('chunks/assets/font_674efd195bd11844f9477b08.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00425;src:url('chunks/assets/font_bffa4ba677c62548d93089fc.woff2')format("woff");}.ff4_c00425{font-family:ff4_c00425;line-height:1.330566;font-style: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;}
.ls1_c00425{letter-spacing:-0.014400px;}
.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;}
}
.ws0_c00425{word-spacing:0.000000px;}
._b_c00425{margin-left:-4.053600px;}
._0_c00425{margin-left:-2.685600px;}
._1_c00425{margin-left:-1.303200px;}
._4_c00425{width:2.001600px;}
._9_c00425{width:3.816000px;}
._8_c00425{width:5.529600px;}
._7_c00425{width:6.883200px;}
._5_c00425{width:8.020800px;}
._a_c00425{width:9.338400px;}
._2_c00425{width:16.120800px;}
._c_c00425{width:17.496000px;}
._6_c00425{width:18.504000px;}
._3_c00425{width:25.344000px;}
._e_c00425{width:35.373600px;}
._d_c00425{width:36.986400px;}
.fc0_c00425{color:rgb(0,0,0);}
.fs0_c00425{font-size:72.000000px;}
.y0_c00425{bottom:0.000000px;}
.y1b_c00425{bottom:3.787500px;}
.y1a_c00425{bottom:56.735596px;}
.y19_c00425{bottom:81.309000px;}
.y1_c00425{bottom:106.275000px;}
.y18_c00425{bottom:123.303000px;}
.y17_c00425{bottom:163.803000px;}
.y16_c00425{bottom:205.797000px;}
.y15_c00425{bottom:247.791000px;}
.y14_c00425{bottom:288.291000px;}
.y13_c00425{bottom:330.285000px;}
.y12_c00425{bottom:370.785000px;}
.y11_c00425{bottom:412.779000px;}
.y10_c00425{bottom:454.773000px;}
.yf_c00425{bottom:495.273000px;}
.ye_c00425{bottom:537.267000px;}
.yd_c00425{bottom:577.767000px;}
.yc_c00425{bottom:619.761000px;}
.yb_c00425{bottom:661.755000px;}
.ya_c00425{bottom:702.255000px;}
.y9_c00425{bottom:744.249000px;}
.y8_c00425{bottom:784.749000px;}
.y7_c00425{bottom:826.743000px;}
.y6_c00425{bottom:868.737000px;}
.y5_c00425{bottom:909.237000px;}
.y4_c00425{bottom:951.231000px;}
.y3_c00425{bottom:991.731000px;}
.y2_c00425{bottom:1033.725000px;}
.h5_c00425{height:19.800105px;}
.h4_c00425{height:52.417969px;}
.h3_c00425{height:64.546875px;}
.h2_c00425{height:65.003906px;}
.h6_c00425{height:72.421875px;}
.h1_c00425{height:1055.478000px;}
.h0_c00425{height:1263.000000px;}
.w2_c00425{width:30.031500px;}
.w1_c00425{width:647.404500px;}
.w0_c00425{width:892.500000px;}
.x0_c00425{left:0.000000px;}
.x2_c00425{left:4.953000px;}
.x3_c00425{left:46.947000px;}
.x1_c00425{left:122.547000px;}
.x4_c00425{left:734.908997px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls1_c00425{letter-spacing:-0.012800pt;}
.ls0_c00425{letter-spacing:0.000000pt;}
.ws0_c00425{word-spacing:0.000000pt;}
._b_c00425{margin-left:-3.603200pt;}
._0_c00425{margin-left:-2.387200pt;}
._1_c00425{margin-left:-1.158400pt;}
._4_c00425{width:1.779200pt;}
._9_c00425{width:3.392000pt;}
._8_c00425{width:4.915200pt;}
._7_c00425{width:6.118400pt;}
._5_c00425{width:7.129600pt;}
._a_c00425{width:8.300800pt;}
._2_c00425{width:14.329600pt;}
._c_c00425{width:15.552000pt;}
._6_c00425{width:16.448000pt;}
._3_c00425{width:22.528000pt;}
._e_c00425{width:31.443200pt;}
._d_c00425{width:32.876800pt;}
.fs0_c00425{font-size:64.000000pt;}
.y0_c00425{bottom:0.000000pt;}
.y1b_c00425{bottom:3.366667pt;}
.y1a_c00425{bottom:50.431641pt;}
.y19_c00425{bottom:72.274667pt;}
.y1_c00425{bottom:94.466667pt;}
.y18_c00425{bottom:109.602667pt;}
.y17_c00425{bottom:145.602667pt;}
.y16_c00425{bottom:182.930667pt;}
.y15_c00425{bottom:220.258667pt;}
.y14_c00425{bottom:256.258667pt;}
.y13_c00425{bottom:293.586667pt;}
.y12_c00425{bottom:329.586667pt;}
.y11_c00425{bottom:366.914667pt;}
.y10_c00425{bottom:404.242667pt;}
.yf_c00425{bottom:440.242667pt;}
.ye_c00425{bottom:477.570667pt;}
.yd_c00425{bottom:513.570667pt;}
.yc_c00425{bottom:550.898667pt;}
.yb_c00425{bottom:588.226667pt;}
.ya_c00425{bottom:624.226667pt;}
.y9_c00425{bottom:661.554667pt;}
.y8_c00425{bottom:697.554667pt;}
.y7_c00425{bottom:734.882667pt;}
.y6_c00425{bottom:772.210667pt;}
.y5_c00425{bottom:808.210667pt;}
.y4_c00425{bottom:845.538667pt;}
.y3_c00425{bottom:881.538667pt;}
.y2_c00425{bottom:918.866667pt;}
.h5_c00425{height:17.600093pt;}
.h4_c00425{height:46.593750pt;}
.h3_c00425{height:57.375000pt;}
.h2_c00425{height:57.781250pt;}
.h6_c00425{height:64.375000pt;}
.h1_c00425{height:938.202667pt;}
.h0_c00425{height:1122.666667pt;}
.w2_c00425{width:26.694667pt;}
.w1_c00425{width:575.470667pt;}
.w0_c00425{width:793.333333pt;}
.x0_c00425{left:0.000000pt;}
.x2_c00425{left:4.402667pt;}
.x3_c00425{left:41.730667pt;}
.x1_c00425{left:108.930667pt;}
.x4_c00425{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63fbb8a8ead840a9883972e1.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00426;src:url('chunks/assets/font_5b8d27199857302ccd544aff.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00426;src:url('chunks/assets/font_8254711a2a8c43c981d871d8.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.330566;font-style: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;}
.ls3_c00426{letter-spacing:-0.014400px;}
.ls2_c00426{letter-spacing:0.000000px;}
.ls0_c00426{letter-spacing:0.014400px;}
.ls1_c00426{letter-spacing:27.216000px;}
.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:0.000000px;}
._e_c00426{margin-left:-8.136000px;}
._d_c00426{margin-left:-7.113600px;}
._1_c00426{margin-left:-3.974400px;}
._3_c00426{margin-left:-1.166400px;}
._10_c00426{width:1.130400px;}
._8_c00426{width:2.635200px;}
._7_c00426{width:4.384800px;}
._2_c00426{width:5.788800px;}
._5_c00426{width:7.646400px;}
._6_c00426{width:8.827200px;}
._4_c00426{width:9.892800px;}
._a_c00426{width:11.253600px;}
._9_c00426{width:12.355200px;}
._12_c00426{width:13.622400px;}
._0_c00426{width:15.206400px;}
._13_c00426{width:16.934400px;}
._b_c00426{width:18.223200px;}
._c_c00426{width:22.197600px;}
._f_c00426{width:26.726400px;}
._11_c00426{width:28.216800px;}
.fc0_c00426{color:rgb(0,0,0);}
.fs0_c00426{font-size:72.000000px;}
.y0_c00426{bottom:0.000000px;}
.y1c_c00426{bottom:3.787500px;}
.y1a_c00426{bottom:40.809000px;}
.y1b_c00426{bottom:56.735596px;}
.y19_c00426{bottom:81.309000px;}
.y1_c00426{bottom:106.275000px;}
.y18_c00426{bottom:123.303000px;}
.y17_c00426{bottom:163.803000px;}
.y16_c00426{bottom:205.797000px;}
.y15_c00426{bottom:247.791000px;}
.y14_c00426{bottom:288.291000px;}
.y13_c00426{bottom:330.285000px;}
.y12_c00426{bottom:370.785000px;}
.y11_c00426{bottom:412.779000px;}
.y10_c00426{bottom:454.773000px;}
.yf_c00426{bottom:495.273000px;}
.ye_c00426{bottom:537.267000px;}
.yd_c00426{bottom:577.767000px;}
.yc_c00426{bottom:619.761000px;}
.yb_c00426{bottom:661.755000px;}
.ya_c00426{bottom:702.255000px;}
.y9_c00426{bottom:744.249000px;}
.y8_c00426{bottom:784.749000px;}
.y7_c00426{bottom:826.743000px;}
.y6_c00426{bottom:868.737000px;}
.y5_c00426{bottom:909.237000px;}
.y4_c00426{bottom:951.231000px;}
.y3_c00426{bottom:991.731000px;}
.y2_c00426{bottom:1033.725000px;}
.h3_c00426{height:19.800105px;}
.h2_c00426{height:64.546875px;}
.h4_c00426{height:72.421875px;}
.h1_c00426{height:1055.478000px;}
.h0_c00426{height:1263.000000px;}
.w2_c00426{width:30.033000px;}
.w1_c00426{width:647.404500px;}
.w0_c00426{width:892.500000px;}
.x0_c00426{left:0.000000px;}
.x3_c00426{left:4.959000px;}
.x2_c00426{left:46.953000px;}
.x1_c00426{left:122.547000px;}
.x4_c00426{left:127.559509px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls3_c00426{letter-spacing:-0.012800pt;}
.ls2_c00426{letter-spacing:0.000000pt;}
.ls0_c00426{letter-spacing:0.012800pt;}
.ls1_c00426{letter-spacing:24.192000pt;}
.ws0_c00426{word-spacing:0.000000pt;}
._e_c00426{margin-left:-7.232000pt;}
._d_c00426{margin-left:-6.323200pt;}
._1_c00426{margin-left:-3.532800pt;}
._3_c00426{margin-left:-1.036800pt;}
._10_c00426{width:1.004800pt;}
._8_c00426{width:2.342400pt;}
._7_c00426{width:3.897600pt;}
._2_c00426{width:5.145600pt;}
._5_c00426{width:6.796800pt;}
._6_c00426{width:7.846400pt;}
._4_c00426{width:8.793600pt;}
._a_c00426{width:10.003200pt;}
._9_c00426{width:10.982400pt;}
._12_c00426{width:12.108800pt;}
._0_c00426{width:13.516800pt;}
._13_c00426{width:15.052800pt;}
._b_c00426{width:16.198400pt;}
._c_c00426{width:19.731200pt;}
._f_c00426{width:23.756800pt;}
._11_c00426{width:25.081600pt;}
.fs0_c00426{font-size:64.000000pt;}
.y0_c00426{bottom:0.000000pt;}
.y1c_c00426{bottom:3.366667pt;}
.y1a_c00426{bottom:36.274667pt;}
.y1b_c00426{bottom:50.431641pt;}
.y19_c00426{bottom:72.274667pt;}
.y1_c00426{bottom:94.466667pt;}
.y18_c00426{bottom:109.602667pt;}
.y17_c00426{bottom:145.602667pt;}
.y16_c00426{bottom:182.930667pt;}
.y15_c00426{bottom:220.258667pt;}
.y14_c00426{bottom:256.258667pt;}
.y13_c00426{bottom:293.586667pt;}
.y12_c00426{bottom:329.586667pt;}
.y11_c00426{bottom:366.914667pt;}
.y10_c00426{bottom:404.242667pt;}
.yf_c00426{bottom:440.242667pt;}
.ye_c00426{bottom:477.570667pt;}
.yd_c00426{bottom:513.570667pt;}
.yc_c00426{bottom:550.898667pt;}
.yb_c00426{bottom:588.226667pt;}
.ya_c00426{bottom:624.226667pt;}
.y9_c00426{bottom:661.554667pt;}
.y8_c00426{bottom:697.554667pt;}
.y7_c00426{bottom:734.882667pt;}
.y6_c00426{bottom:772.210667pt;}
.y5_c00426{bottom:808.210667pt;}
.y4_c00426{bottom:845.538667pt;}
.y3_c00426{bottom:881.538667pt;}
.y2_c00426{bottom:918.866667pt;}
.h3_c00426{height:17.600093pt;}
.h2_c00426{height:57.375000pt;}
.h4_c00426{height:64.375000pt;}
.h1_c00426{height:938.202667pt;}
.h0_c00426{height:1122.666667pt;}
.w2_c00426{width:26.696000pt;}
.w1_c00426{width:575.470667pt;}
.w0_c00426{width:793.333333pt;}
.x0_c00426{left:0.000000pt;}
.x3_c00426{left:4.408000pt;}
.x2_c00426{left:41.736000pt;}
.x1_c00426{left:108.930667pt;}
.x4_c00426{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4cde8523dce37191cfa84621.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00427;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00427;src:url('chunks/assets/font_a726f8a901aac1f3c719a79a.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:1.330566;font-style: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;}
.ls2_c00427{letter-spacing:-0.010800px;}
.ls1_c00427{letter-spacing:0.000000px;}
.ls0_c00427{letter-spacing:1400.400000px;}
.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:0.000000px;}
._5_c00427{margin-left:-3.974400px;}
._2_c00427{width:1.015200px;}
._8_c00427{width:2.138400px;}
._3_c00427{width:3.679200px;}
._a_c00427{width:4.867200px;}
._9_c00427{width:6.904800px;}
._1_c00427{width:7.999200px;}
._7_c00427{width:12.398400px;}
._4_c00427{width:18.223200px;}
._0_c00427{width:21.585600px;}
._6_c00427{width:29.995200px;}
.fc1_c00427{color:transparent;}
.fc0_c00427{color:rgb(0,0,0);}
.fs1_c00427{font-size:54.000000px;}
.fs0_c00427{font-size:72.000000px;}
.y0_c00427{bottom:0.000000px;}
.y12_c00427{bottom:3.787500px;}
.y10_c00427{bottom:22.350000px;}
.yf_c00427{bottom:37.386000px;}
.y11_c00427{bottom:56.735596px;}
.y1_c00427{bottom:90.150000px;}
.ye_c00427{bottom:553.392000px;}
.yd_c00427{bottom:593.892000px;}
.yc_c00427{bottom:635.886000px;}
.yb_c00427{bottom:677.880000px;}
.ya_c00427{bottom:718.380000px;}
.y9_c00427{bottom:760.374000px;}
.y8_c00427{bottom:800.874000px;}
.y7_c00427{bottom:842.868000px;}
.y6_c00427{bottom:884.862000px;}
.y5_c00427{bottom:925.362000px;}
.y4_c00427{bottom:967.356000px;}
.y3_c00427{bottom:1007.856000px;}
.y2_c00427{bottom:1049.850000px;}
.h4_c00427{height:19.800105px;}
.h3_c00427{height:48.410156px;}
.h2_c00427{height:64.546875px;}
.h5_c00427{height:72.421875px;}
.h1_c00427{height:1071.603000px;}
.h0_c00427{height:1263.000000px;}
.w2_c00427{width:30.031500px;}
.w1_c00427{width:647.404500px;}
.w0_c00427{width:892.500000px;}
.x0_c00427{left:0.000000px;}
.x2_c00427{left:4.953000px;}
.x3_c00427{left:46.947000px;}
.x1_c00427{left:122.547000px;}
.x4_c00427{left:148.953000px;}
.x5_c00427{left:240.453000px;}
.x6_c00427{left:734.908997px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls2_c00427{letter-spacing:-0.009600pt;}
.ls1_c00427{letter-spacing:0.000000pt;}
.ls0_c00427{letter-spacing:1244.800000pt;}
.ws0_c00427{word-spacing:0.000000pt;}
._5_c00427{margin-left:-3.532800pt;}
._2_c00427{width:0.902400pt;}
._8_c00427{width:1.900800pt;}
._3_c00427{width:3.270400pt;}
._a_c00427{width:4.326400pt;}
._9_c00427{width:6.137600pt;}
._1_c00427{width:7.110400pt;}
._7_c00427{width:11.020800pt;}
._4_c00427{width:16.198400pt;}
._0_c00427{width:19.187200pt;}
._6_c00427{width:26.662400pt;}
.fs1_c00427{font-size:48.000000pt;}
.fs0_c00427{font-size:64.000000pt;}
.y0_c00427{bottom:0.000000pt;}
.y12_c00427{bottom:3.366667pt;}
.y10_c00427{bottom:19.866667pt;}
.yf_c00427{bottom:33.232000pt;}
.y11_c00427{bottom:50.431641pt;}
.y1_c00427{bottom:80.133333pt;}
.ye_c00427{bottom:491.904000pt;}
.yd_c00427{bottom:527.904000pt;}
.yc_c00427{bottom:565.232000pt;}
.yb_c00427{bottom:602.560000pt;}
.ya_c00427{bottom:638.560000pt;}
.y9_c00427{bottom:675.888000pt;}
.y8_c00427{bottom:711.888000pt;}
.y7_c00427{bottom:749.216000pt;}
.y6_c00427{bottom:786.544000pt;}
.y5_c00427{bottom:822.544000pt;}
.y4_c00427{bottom:859.872000pt;}
.y3_c00427{bottom:895.872000pt;}
.y2_c00427{bottom:933.200000pt;}
.h4_c00427{height:17.600093pt;}
.h3_c00427{height:43.031250pt;}
.h2_c00427{height:57.375000pt;}
.h5_c00427{height:64.375000pt;}
.h1_c00427{height:952.536000pt;}
.h0_c00427{height:1122.666667pt;}
.w2_c00427{width:26.694667pt;}
.w1_c00427{width:575.470667pt;}
.w0_c00427{width:793.333333pt;}
.x0_c00427{left:0.000000pt;}
.x2_c00427{left:4.402667pt;}
.x3_c00427{left:41.730667pt;}
.x1_c00427{left:108.930667pt;}
.x4_c00427{left:132.402667pt;}
.x5_c00427{left:213.736000pt;}
.x6_c00427{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76171b615384b05db9f3b2b7.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00428;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00428;src:url('chunks/assets/font_297cedf33f8ac8a7079fc23f.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:1.330566;font-style: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;}
.ls6_c00428{letter-spacing:-0.010800px;}
.ls5_c00428{letter-spacing:0.000000px;}
.ls3_c00428{letter-spacing:0.766800px;}
.ls4_c00428{letter-spacing:0.977400px;}
.ls2_c00428{letter-spacing:13.186800px;}
.ls0_c00428{letter-spacing:1734.804000px;}
.ls1_c00428{letter-spacing:1739.286000px;}
.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:0.000000px;}
._0_c00428{margin-left:-13.176000px;}
._4_c00428{margin-left:-2.619000px;}
._b_c00428{margin-left:-1.339200px;}
._5_c00428{width:1.085400px;}
._2_c00428{width:2.516400px;}
._c_c00428{width:8.569800px;}
._9_c00428{width:10.605600px;}
._7_c00428{width:12.511800px;}
._6_c00428{width:17.528400px;}
._1_c00428{width:20.412000px;}
._3_c00428{width:23.252400px;}
._8_c00428{width:25.866000px;}
._d_c00428{width:30.283200px;}
._a_c00428{width:32.292000px;}
.fc1_c00428{color:transparent;}
.fc0_c00428{color:rgb(0,0,0);}
.fs0_c00428{font-size:54.000000px;}
.fs1_c00428{font-size:72.000000px;}
.y0_c00428{bottom:0.000000px;}
.y17_c00428{bottom:3.787500px;}
.y5_c00428{bottom:7.588500px;}
.y15_c00428{bottom:9.222000px;}
.y14_c00428{bottom:24.220500px;}
.y13_c00428{bottom:39.219000px;}
.y12_c00428{bottom:54.217500px;}
.yf_c00428{bottom:55.645500px;}
.y16_c00428{bottom:56.735596px;}
.y6_c00428{bottom:59.866500px;}
.y11_c00428{bottom:69.216000px;}
.ye_c00428{bottom:70.644000px;}
.yd_c00428{bottom:85.642500px;}
.yc_c00428{bottom:100.641000px;}
.y1_c00428{bottom:104.904000px;}
.yb_c00428{bottom:115.639500px;}
.ya_c00428{bottom:130.638000px;}
.y9_c00428{bottom:145.636500px;}
.y8_c00428{bottom:160.635000px;}
.y7_c00428{bottom:175.633500px;}
.y4_c00428{bottom:663.094500px;}
.y3_c00428{bottom:678.093000px;}
.y10_c00428{bottom:776.784000px;}
.y2_c00428{bottom:1039.596000px;}
.h5_c00428{height:19.800105px;}
.h2_c00428{height:48.410156px;}
.h6_c00428{height:72.421875px;}
.h4_c00428{height:85.693500px;}
.h3_c00428{height:192.000000px;}
.h1_c00428{height:1055.590500px;}
.h0_c00428{height:1263.000000px;}
.w3_c00428{width:30.033000px;}
.w2_c00428{width:143.265000px;}
.w1_c00428{width:644.890500px;}
.w0_c00428{width:892.500000px;}
.x0_c00428{left:0.000000px;}
.x5_c00428{left:5.823000px;}
.x3_c00428{left:105.697500px;}
.x1_c00428{left:123.804000px;}
.x6_c00428{left:127.559509px;}
.x2_c00428{left:323.196000px;}
.x4_c00428{left:666.177000px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls6_c00428{letter-spacing:-0.009600pt;}
.ls5_c00428{letter-spacing:0.000000pt;}
.ls3_c00428{letter-spacing:0.681600pt;}
.ls4_c00428{letter-spacing:0.868800pt;}
.ls2_c00428{letter-spacing:11.721600pt;}
.ls0_c00428{letter-spacing:1542.048000pt;}
.ls1_c00428{letter-spacing:1546.032000pt;}
.ws0_c00428{word-spacing:0.000000pt;}
._0_c00428{margin-left:-11.712000pt;}
._4_c00428{margin-left:-2.328000pt;}
._b_c00428{margin-left:-1.190400pt;}
._5_c00428{width:0.964800pt;}
._2_c00428{width:2.236800pt;}
._c_c00428{width:7.617600pt;}
._9_c00428{width:9.427200pt;}
._7_c00428{width:11.121600pt;}
._6_c00428{width:15.580800pt;}
._1_c00428{width:18.144000pt;}
._3_c00428{width:20.668800pt;}
._8_c00428{width:22.992000pt;}
._d_c00428{width:26.918400pt;}
._a_c00428{width:28.704000pt;}
.fs0_c00428{font-size:48.000000pt;}
.fs1_c00428{font-size:64.000000pt;}
.y0_c00428{bottom:0.000000pt;}
.y17_c00428{bottom:3.366667pt;}
.y5_c00428{bottom:6.745333pt;}
.y15_c00428{bottom:8.197333pt;}
.y14_c00428{bottom:21.529333pt;}
.y13_c00428{bottom:34.861333pt;}
.y12_c00428{bottom:48.193333pt;}
.yf_c00428{bottom:49.462667pt;}
.y16_c00428{bottom:50.431641pt;}
.y6_c00428{bottom:53.214667pt;}
.y11_c00428{bottom:61.525333pt;}
.ye_c00428{bottom:62.794667pt;}
.yd_c00428{bottom:76.126667pt;}
.yc_c00428{bottom:89.458667pt;}
.y1_c00428{bottom:93.248000pt;}
.yb_c00428{bottom:102.790667pt;}
.ya_c00428{bottom:116.122667pt;}
.y9_c00428{bottom:129.454667pt;}
.y8_c00428{bottom:142.786667pt;}
.y7_c00428{bottom:156.118667pt;}
.y4_c00428{bottom:589.417333pt;}
.y3_c00428{bottom:602.749333pt;}
.y10_c00428{bottom:690.474667pt;}
.y2_c00428{bottom:924.085333pt;}
.h5_c00428{height:17.600093pt;}
.h2_c00428{height:43.031250pt;}
.h6_c00428{height:64.375000pt;}
.h4_c00428{height:76.172000pt;}
.h3_c00428{height:170.666667pt;}
.h1_c00428{height:938.302667pt;}
.h0_c00428{height:1122.666667pt;}
.w3_c00428{width:26.696000pt;}
.w2_c00428{width:127.346667pt;}
.w1_c00428{width:573.236000pt;}
.w0_c00428{width:793.333333pt;}
.x0_c00428{left:0.000000pt;}
.x5_c00428{left:5.176000pt;}
.x3_c00428{left:93.953333pt;}
.x1_c00428{left:110.048000pt;}
.x6_c00428{left:113.386231pt;}
.x2_c00428{left:287.285333pt;}
.x4_c00428{left:592.157333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00429;src:url('chunks/assets/font_541ffa7b09a70ec0e5fbc570.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00429;src:url('chunks/assets/font_47f9b38f1da376d05be4f60f.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00429{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.ls2_c00429{letter-spacing:-0.010800px;}
.ls1_c00429{letter-spacing:0.000000px;}
.ls0_c00429{letter-spacing:2381.076000px;}
.sc__c00429{text-shadow:none;}
.sc0_c00429{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00429{-webkit-text-stroke:0px transparent;}
.sc0_c00429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00429{word-spacing:0.000000px;}
._2_c00429{margin-left:-1.674000px;}
._1_c00429{width:1.198800px;}
._0_c00429{width:4.060800px;}
.fc0_c00429{color:rgb(0,0,0);}
.fs0_c00429{font-size:54.000000px;}
.fs1_c00429{font-size:72.000000px;}
.y0_c00429{bottom:0.000000px;}
.y9_c00429{bottom:3.787500px;}
.y7_c00429{bottom:12.231000px;}
.y6_c00429{bottom:27.229500px;}
.y5_c00429{bottom:42.228000px;}
.y8_c00429{bottom:56.735596px;}
.y1_c00429{bottom:106.275000px;}
.y4_c00429{bottom:541.728000px;}
.y3_c00429{bottom:556.726500px;}
.y2_c00429{bottom:571.725000px;}
.h3_c00429{height:19.800105px;}
.h2_c00429{height:48.410156px;}
.h4_c00429{height:72.421875px;}
.h1_c00429{height:1054.221000px;}
.h0_c00429{height:1263.000000px;}
.w2_c00429{width:30.031500px;}
.w1_c00429{width:644.890500px;}
.w0_c00429{width:892.500000px;}
.x0_c00429{left:0.000000px;}
.x2_c00429{left:24.696000px;}
.x1_c00429{left:123.804000px;}
.x3_c00429{left:734.908997px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls2_c00429{letter-spacing:-0.009600pt;}
.ls1_c00429{letter-spacing:0.000000pt;}
.ls0_c00429{letter-spacing:2116.512000pt;}
.ws0_c00429{word-spacing:0.000000pt;}
._2_c00429{margin-left:-1.488000pt;}
._1_c00429{width:1.065600pt;}
._0_c00429{width:3.609600pt;}
.fs0_c00429{font-size:48.000000pt;}
.fs1_c00429{font-size:64.000000pt;}
.y0_c00429{bottom:0.000000pt;}
.y9_c00429{bottom:3.366667pt;}
.y7_c00429{bottom:10.872000pt;}
.y6_c00429{bottom:24.204000pt;}
.y5_c00429{bottom:37.536000pt;}
.y8_c00429{bottom:50.431641pt;}
.y1_c00429{bottom:94.466667pt;}
.y4_c00429{bottom:481.536000pt;}
.y3_c00429{bottom:494.868000pt;}
.y2_c00429{bottom:508.200000pt;}
.h3_c00429{height:17.600093pt;}
.h2_c00429{height:43.031250pt;}
.h4_c00429{height:64.375000pt;}
.h1_c00429{height:937.085333pt;}
.h0_c00429{height:1122.666667pt;}
.w2_c00429{width:26.694667pt;}
.w1_c00429{width:573.236000pt;}
.w0_c00429{width:793.333333pt;}
.x0_c00429{left:0.000000pt;}
.x2_c00429{left:21.952000pt;}
.x1_c00429{left:110.048000pt;}
.x3_c00429{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f1425519bbb81b802772d012.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00430;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00430;src:url('chunks/assets/font_a726f8a901aac1f3c719a79a.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:1.330566;font-style: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;}
.ls5_c00430{letter-spacing:0.000000px;}
.ls3_c00430{letter-spacing:3.364200px;}
.ls2_c00430{letter-spacing:7.003800px;}
.ls6_c00430{letter-spacing:7.014600px;}
.ls4_c00430{letter-spacing:8.964000px;}
.ls7_c00430{letter-spacing:15.616800px;}
.ls0_c00430{letter-spacing:1590.786000px;}
.ls1_c00430{letter-spacing:2215.512000px;}
.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;}
}
.ws0_c00430{word-spacing:0.000000px;}
._4_c00430{margin-left:-15.606000px;}
._8_c00430{margin-left:-8.964000px;}
._1_c00430{margin-left:-7.020000px;}
._6_c00430{margin-left:-3.348000px;}
._0_c00430{width:3.223800px;}
._a_c00430{width:6.814800px;}
._3_c00430{width:17.404200px;}
._9_c00430{width:21.546000px;}
._2_c00430{width:23.490000px;}
._7_c00430{width:25.326000px;}
._5_c00430{width:40.986000px;}
.fc1_c00430{color:transparent;}
.fc0_c00430{color:rgb(0,0,0);}
.fs0_c00430{font-size:54.000000px;}
.fs1_c00430{font-size:72.000000px;}
.y0_c00430{bottom:0.000000px;}
.y10_c00430{bottom:3.787500px;}
.y6_c00430{bottom:6.699000px;}
.ye_c00430{bottom:14.238000px;}
.y5_c00430{bottom:21.697500px;}
.yd_c00430{bottom:29.236500px;}
.y4_c00430{bottom:36.696000px;}
.yc_c00430{bottom:44.235000px;}
.yf_c00430{bottom:56.735596px;}
.yb_c00430{bottom:59.233500px;}
.ya_c00430{bottom:74.232000px;}
.y9_c00430{bottom:89.230500px;}
.y8_c00430{bottom:104.229000px;}
.y1_c00430{bottom:104.308500px;}
.y3_c00430{bottom:486.691500px;}
.y7_c00430{bottom:579.771000px;}
.y2_c00430{bottom:1040.191500px;}
.h4_c00430{height:19.800105px;}
.h2_c00430{height:48.410156px;}
.h5_c00430{height:72.421875px;}
.h3_c00430{height:121.858500px;}
.h1_c00430{height:1056.187500px;}
.h0_c00430{height:1263.000000px;}
.w3_c00430{width:30.033000px;}
.w2_c00430{width:153.990000px;}
.w1_c00430{width:644.890500px;}
.w0_c00430{width:892.500000px;}
.x0_c00430{left:0.000000px;}
.x6_c00430{left:5.244000px;}
.x3_c00430{left:44.191500px;}
.x4_c00430{left:45.690000px;}
.x1_c00430{left:123.804000px;}
.x7_c00430{left:127.559509px;}
.x2_c00430{left:323.196000px;}
.x5_c00430{left:656.256000px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls5_c00430{letter-spacing:0.000000pt;}
.ls3_c00430{letter-spacing:2.990400pt;}
.ls2_c00430{letter-spacing:6.225600pt;}
.ls6_c00430{letter-spacing:6.235200pt;}
.ls4_c00430{letter-spacing:7.968000pt;}
.ls7_c00430{letter-spacing:13.881600pt;}
.ls0_c00430{letter-spacing:1414.032000pt;}
.ls1_c00430{letter-spacing:1969.344000pt;}
.ws0_c00430{word-spacing:0.000000pt;}
._4_c00430{margin-left:-13.872000pt;}
._8_c00430{margin-left:-7.968000pt;}
._1_c00430{margin-left:-6.240000pt;}
._6_c00430{margin-left:-2.976000pt;}
._0_c00430{width:2.865600pt;}
._a_c00430{width:6.057600pt;}
._3_c00430{width:15.470400pt;}
._9_c00430{width:19.152000pt;}
._2_c00430{width:20.880000pt;}
._7_c00430{width:22.512000pt;}
._5_c00430{width:36.432000pt;}
.fs0_c00430{font-size:48.000000pt;}
.fs1_c00430{font-size:64.000000pt;}
.y0_c00430{bottom:0.000000pt;}
.y10_c00430{bottom:3.366667pt;}
.y6_c00430{bottom:5.954667pt;}
.ye_c00430{bottom:12.656000pt;}
.y5_c00430{bottom:19.286667pt;}
.yd_c00430{bottom:25.988000pt;}
.y4_c00430{bottom:32.618667pt;}
.yc_c00430{bottom:39.320000pt;}
.yf_c00430{bottom:50.431641pt;}
.yb_c00430{bottom:52.652000pt;}
.ya_c00430{bottom:65.984000pt;}
.y9_c00430{bottom:79.316000pt;}
.y8_c00430{bottom:92.648000pt;}
.y1_c00430{bottom:92.718667pt;}
.y3_c00430{bottom:432.614667pt;}
.y7_c00430{bottom:515.352000pt;}
.y2_c00430{bottom:924.614667pt;}
.h4_c00430{height:17.600093pt;}
.h2_c00430{height:43.031250pt;}
.h5_c00430{height:64.375000pt;}
.h3_c00430{height:108.318667pt;}
.h1_c00430{height:938.833333pt;}
.h0_c00430{height:1122.666667pt;}
.w3_c00430{width:26.696000pt;}
.w2_c00430{width:136.880000pt;}
.w1_c00430{width:573.236000pt;}
.w0_c00430{width:793.333333pt;}
.x0_c00430{left:0.000000pt;}
.x6_c00430{left:4.661333pt;}
.x3_c00430{left:39.281333pt;}
.x4_c00430{left:40.613333pt;}
.x1_c00430{left:110.048000pt;}
.x7_c00430{left:113.386231pt;}
.x2_c00430{left:287.285333pt;}
.x5_c00430{left:583.338667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00431;src:url('chunks/assets/font_e3f98911137e12d58594c1c3.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00431;src:url('chunks/assets/font_8ea1c52e1b71305b4882c965.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:1.330566;font-style: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;}
.ls2_c00431{letter-spacing:0.000000px;}
.ls1_c00431{letter-spacing:1998.378000px;}
.ls0_c00431{letter-spacing:2381.076000px;}
.sc__c00431{text-shadow:none;}
.sc0_c00431{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00431{-webkit-text-stroke:0px transparent;}
.sc0_c00431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00431{word-spacing:0.000000px;}
.fc0_c00431{color:rgb(0,0,0);}
.fs0_c00431{font-size:54.000000px;}
.fs1_c00431{font-size:72.000000px;}
.y0_c00431{bottom:0.000000px;}
.y7_c00431{bottom:3.787500px;}
.y5_c00431{bottom:10.723500px;}
.y4_c00431{bottom:25.722000px;}
.y6_c00431{bottom:56.735596px;}
.y1_c00431{bottom:106.275000px;}
.y3_c00431{bottom:574.726500px;}
.y2_c00431{bottom:589.725000px;}
.h3_c00431{height:19.800105px;}
.h2_c00431{height:48.410156px;}
.h4_c00431{height:72.421875px;}
.h1_c00431{height:1054.221000px;}
.h0_c00431{height:1263.000000px;}
.w2_c00431{width:30.031500px;}
.w1_c00431{width:644.890500px;}
.w0_c00431{width:892.500000px;}
.x0_c00431{left:0.000000px;}
.x2_c00431{left:24.696000px;}
.x4_c00431{left:72.688500px;}
.x3_c00431{left:111.690000px;}
.x1_c00431{left:123.804000px;}
.x5_c00431{left:159.682500px;}
.x6_c00431{left:734.908997px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls2_c00431{letter-spacing:0.000000pt;}
.ls1_c00431{letter-spacing:1776.336000pt;}
.ls0_c00431{letter-spacing:2116.512000pt;}
.ws0_c00431{word-spacing:0.000000pt;}
.fs0_c00431{font-size:48.000000pt;}
.fs1_c00431{font-size:64.000000pt;}
.y0_c00431{bottom:0.000000pt;}
.y7_c00431{bottom:3.366667pt;}
.y5_c00431{bottom:9.532000pt;}
.y4_c00431{bottom:22.864000pt;}
.y6_c00431{bottom:50.431641pt;}
.y1_c00431{bottom:94.466667pt;}
.y3_c00431{bottom:510.868000pt;}
.y2_c00431{bottom:524.200000pt;}
.h3_c00431{height:17.600093pt;}
.h2_c00431{height:43.031250pt;}
.h4_c00431{height:64.375000pt;}
.h1_c00431{height:937.085333pt;}
.h0_c00431{height:1122.666667pt;}
.w2_c00431{width:26.694667pt;}
.w1_c00431{width:573.236000pt;}
.w0_c00431{width:793.333333pt;}
.x0_c00431{left:0.000000pt;}
.x2_c00431{left:21.952000pt;}
.x4_c00431{left:64.612000pt;}
.x3_c00431{left:99.280000pt;}
.x1_c00431{left:110.048000pt;}
.x5_c00431{left:141.940000pt;}
.x6_c00431{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b46bb82f2d044d8b908916f7.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.113281;font-style:normal;font-weight:normal;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_f6f3b58eea195a72a6128e14.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00432;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00432;src:url('chunks/assets/font_7d4f9e4969e5ec4ca8739c41.woff2')format("woff");}.ff4_c00432{font-family:ff4_c00432;line-height:1.330566;font-style: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;}
.ls3_c00432{letter-spacing:-0.010800px;}
.ls2_c00432{letter-spacing:0.000000px;}
.ls0_c00432{letter-spacing:2211.048000px;}
.ls1_c00432{letter-spacing:2215.512000px;}
.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:0.000000px;}
._0_c00432{width:9.792000px;}
._1_c00432{width:18.331200px;}
.fc1_c00432{color:transparent;}
.fc0_c00432{color:rgb(0,0,0);}
.fs1_c00432{font-size:54.000000px;}
.fs0_c00432{font-size:72.000000px;}
.y0_c00432{bottom:0.000000px;}
.yb_c00432{bottom:3.787500px;}
.y9_c00432{bottom:42.232500px;}
.ya_c00432{bottom:56.735596px;}
.y8_c00432{bottom:57.231000px;}
.y1_c00432{bottom:106.275000px;}
.y7_c00432{bottom:427.725000px;}
.y6_c00432{bottom:442.725000px;}
.y5_c00432{bottom:891.231000px;}
.y4_c00432{bottom:933.225000px;}
.y3_c00432{bottom:973.725000px;}
.y2_c00432{bottom:1033.725000px;}
.h5_c00432{height:19.800105px;}
.h4_c00432{height:48.410156px;}
.h3_c00432{height:64.546875px;}
.h2_c00432{height:65.003906px;}
.h6_c00432{height:72.421875px;}
.h1_c00432{height:1055.478000px;}
.h0_c00432{height:1263.000000px;}
.w2_c00432{width:30.033000px;}
.w1_c00432{width:647.404500px;}
.w0_c00432{width:892.500000px;}
.x0_c00432{left:0.000000px;}
.x2_c00432{left:4.953000px;}
.x3_c00432{left:46.953000px;}
.x5_c00432{left:49.948500px;}
.x1_c00432{left:122.547000px;}
.x6_c00432{left:127.559509px;}
.x4_c00432{left:261.453000px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls3_c00432{letter-spacing:-0.009600pt;}
.ls2_c00432{letter-spacing:0.000000pt;}
.ls0_c00432{letter-spacing:1965.376000pt;}
.ls1_c00432{letter-spacing:1969.344000pt;}
.ws0_c00432{word-spacing:0.000000pt;}
._0_c00432{width:8.704000pt;}
._1_c00432{width:16.294400pt;}
.fs1_c00432{font-size:48.000000pt;}
.fs0_c00432{font-size:64.000000pt;}
.y0_c00432{bottom:0.000000pt;}
.yb_c00432{bottom:3.366667pt;}
.y9_c00432{bottom:37.540000pt;}
.ya_c00432{bottom:50.431641pt;}
.y8_c00432{bottom:50.872000pt;}
.y1_c00432{bottom:94.466667pt;}
.y7_c00432{bottom:380.200000pt;}
.y6_c00432{bottom:393.533333pt;}
.y5_c00432{bottom:792.205333pt;}
.y4_c00432{bottom:829.533333pt;}
.y3_c00432{bottom:865.533333pt;}
.y2_c00432{bottom:918.866667pt;}
.h5_c00432{height:17.600093pt;}
.h4_c00432{height:43.031250pt;}
.h3_c00432{height:57.375000pt;}
.h2_c00432{height:57.781250pt;}
.h6_c00432{height:64.375000pt;}
.h1_c00432{height:938.202667pt;}
.h0_c00432{height:1122.666667pt;}
.w2_c00432{width:26.696000pt;}
.w1_c00432{width:575.470667pt;}
.w0_c00432{width:793.333333pt;}
.x0_c00432{left:0.000000pt;}
.x2_c00432{left:4.402667pt;}
.x3_c00432{left:41.736000pt;}
.x5_c00432{left:44.398667pt;}
.x1_c00432{left:108.930667pt;}
.x6_c00432{left:113.386231pt;}
.x4_c00432{left:232.402667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00433;src:url('chunks/assets/font_768393202982b87fe74cb73c.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00433;src:url('chunks/assets/font_78a84473deca33453ab6b603.woff2')format("woff");}.ff3_c00433{font-family:ff3_c00433;line-height:1.330566;font-style: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;}
.ls3_c00433{letter-spacing:-0.010800px;}
.ls2_c00433{letter-spacing:0.000000px;}
.ls0_c00433{letter-spacing:1360.638000px;}
.ls1_c00433{letter-spacing:2549.394000px;}
.sc__c00433{text-shadow:none;}
.sc0_c00433{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00433{-webkit-text-stroke:0px transparent;}
.sc0_c00433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00433{word-spacing:0.000000px;}
._1_c00433{margin-left:-2.808000px;}
._0_c00433{width:4.757400px;}
.fc1_c00433{color:transparent;}
.fc0_c00433{color:rgb(0,0,0);}
.fs0_c00433{font-size:54.000000px;}
.fs1_c00433{font-size:72.000000px;}
.y0_c00433{bottom:0.000000px;}
.y8_c00433{bottom:3.787500px;}
.y6_c00433{bottom:21.226500px;}
.y5_c00433{bottom:36.226500px;}
.y7_c00433{bottom:56.735596px;}
.y1_c00433{bottom:101.773500px;}
.y4_c00433{bottom:546.229500px;}
.y3_c00433{bottom:561.228000px;}
.y2_c00433{bottom:576.226500px;}
.h3_c00433{height:19.800105px;}
.h2_c00433{height:48.410156px;}
.h4_c00433{height:72.421875px;}
.h1_c00433{height:1058.722500px;}
.h0_c00433{height:1263.000000px;}
.w3_c00433{width:30.031500px;}
.w2_c00433{width:637.350000px;}
.w1_c00433{width:655.645500px;}
.w0_c00433{width:892.500000px;}
.x0_c00433{left:0.000000px;}
.x1_c00433{left:123.804000px;}
.x3_c00433{left:127.575000px;}
.x4_c00433{left:150.696000px;}
.x2_c00433{left:152.196000px;}
.x5_c00433{left:734.908997px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls3_c00433{letter-spacing:-0.009600pt;}
.ls2_c00433{letter-spacing:0.000000pt;}
.ls0_c00433{letter-spacing:1209.456000pt;}
.ls1_c00433{letter-spacing:2266.128000pt;}
.ws0_c00433{word-spacing:0.000000pt;}
._1_c00433{margin-left:-2.496000pt;}
._0_c00433{width:4.228800pt;}
.fs0_c00433{font-size:48.000000pt;}
.fs1_c00433{font-size:64.000000pt;}
.y0_c00433{bottom:0.000000pt;}
.y8_c00433{bottom:3.366667pt;}
.y6_c00433{bottom:18.868000pt;}
.y5_c00433{bottom:32.201333pt;}
.y7_c00433{bottom:50.431641pt;}
.y1_c00433{bottom:90.465333pt;}
.y4_c00433{bottom:485.537333pt;}
.y3_c00433{bottom:498.869333pt;}
.y2_c00433{bottom:512.201333pt;}
.h3_c00433{height:17.600093pt;}
.h2_c00433{height:43.031250pt;}
.h4_c00433{height:64.375000pt;}
.h1_c00433{height:941.086667pt;}
.h0_c00433{height:1122.666667pt;}
.w3_c00433{width:26.694667pt;}
.w2_c00433{width:566.533333pt;}
.w1_c00433{width:582.796000pt;}
.w0_c00433{width:793.333333pt;}
.x0_c00433{left:0.000000pt;}
.x1_c00433{left:110.048000pt;}
.x3_c00433{left:113.400000pt;}
.x4_c00433{left:133.952000pt;}
.x2_c00433{left:135.285333pt;}
.x5_c00433{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00434;src:url('chunks/assets/font_f6c30f94243d600ea84c0cfa.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00434;src:url('chunks/assets/font_3a120e7b29c106fc20654fa9.woff2')format("woff");}.ff3_c00434{font-family:ff3_c00434;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00434{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls2_c00434{letter-spacing:-0.010800px;}
.ls1_c00434{letter-spacing:0.000000px;}
.ls0_c00434{letter-spacing:2549.376000px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00434{word-spacing:0.000000px;}
.fc1_c00434{color:transparent;}
.fc0_c00434{color:rgb(0,0,0);}
.fs1_c00434{font-size:54.000000px;}
.fs0_c00434{font-size:72.000000px;}
.y0_c00434{bottom:0.000000px;}
.y5_c00434{bottom:3.787500px;}
.y4_c00434{bottom:56.735596px;}
.y1_c00434{bottom:97.725000px;}
.y3_c00434{bottom:485.775000px;}
.y2_c00434{bottom:502.275000px;}
.h4_c00434{height:19.800105px;}
.h3_c00434{height:48.410156px;}
.h2_c00434{height:64.546875px;}
.h5_c00434{height:72.421875px;}
.h1_c00434{height:1062.771000px;}
.h0_c00434{height:1263.000000px;}
.w3_c00434{width:30.033000px;}
.w1_c00434{width:637.350000px;}
.w2_c00434{width:658.159500px;}
.w0_c00434{width:892.500000px;}
.x0_c00434{left:0.000000px;}
.x2_c00434{left:122.547000px;}
.x1_c00434{left:127.575000px;}
.x3_c00434{left:202.953000px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls2_c00434{letter-spacing:-0.009600pt;}
.ls1_c00434{letter-spacing:0.000000pt;}
.ls0_c00434{letter-spacing:2266.112000pt;}
.ws0_c00434{word-spacing:0.000000pt;}
.fs1_c00434{font-size:48.000000pt;}
.fs0_c00434{font-size:64.000000pt;}
.y0_c00434{bottom:0.000000pt;}
.y5_c00434{bottom:3.366667pt;}
.y4_c00434{bottom:50.431641pt;}
.y1_c00434{bottom:86.866667pt;}
.y3_c00434{bottom:431.800000pt;}
.y2_c00434{bottom:446.466667pt;}
.h4_c00434{height:17.600093pt;}
.h3_c00434{height:43.031250pt;}
.h2_c00434{height:57.375000pt;}
.h5_c00434{height:64.375000pt;}
.h1_c00434{height:944.685333pt;}
.h0_c00434{height:1122.666667pt;}
.w3_c00434{width:26.696000pt;}
.w1_c00434{width:566.533333pt;}
.w2_c00434{width:585.030667pt;}
.w0_c00434{width:793.333333pt;}
.x0_c00434{left:0.000000pt;}
.x2_c00434{left:108.930667pt;}
.x1_c00434{left:113.400000pt;}
.x3_c00434{left:180.402667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3519e0ee71350ed3ef6adf13.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.113281;font-style:normal;font-weight:normal;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_38a1c5563d9c5fc7324b899a.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00435;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff3_c00435{font-family:ff3_c00435;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00435;src:url('chunks/assets/font_9f92801756ed87e0a9432a09.woff2')format("woff");}.ff4_c00435{font-family:ff4_c00435;line-height:1.330566;font-style: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;}
.ls3_c00435{letter-spacing:0.000000px;}
.ls2_c00435{letter-spacing:0.014400px;}
.ls0_c00435{letter-spacing:2549.376000px;}
.ls1_c00435{letter-spacing:2549.400000px;}
.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:0.000000px;}
.ws0_c00435{word-spacing:3.628800px;}
._1_c00435{width:3.763800px;}
._3_c00435{width:5.632200px;}
._2_c00435{width:6.993000px;}
._0_c00435{width:23.119200px;}
.fc1_c00435{color:transparent;}
.fc0_c00435{color:rgb(0,0,0);}
.fs1_c00435{font-size:54.000000px;}
.fs0_c00435{font-size:72.000000px;}
.y0_c00435{bottom:0.000000px;}
.ye_c00435{bottom:3.787500px;}
.yc_c00435{bottom:40.729500px;}
.yb_c00435{bottom:55.728000px;}
.yd_c00435{bottom:56.735596px;}
.ya_c00435{bottom:70.726500px;}
.y9_c00435{bottom:85.725000px;}
.y8_c00435{bottom:101.775000px;}
.y1_c00435{bottom:106.275000px;}
.y6_c00435{bottom:106.725000px;}
.y7_c00435{bottom:461.775000px;}
.y5_c00435{bottom:903.227250px;}
.y4_c00435{bottom:945.221250px;}
.y3_c00435{bottom:985.721250px;}
.y2_c00435{bottom:1033.853250px;}
.h6_c00435{height:19.800105px;}
.h5_c00435{height:48.410156px;}
.h3_c00435{height:64.546875px;}
.h2_c00435{height:65.003906px;}
.h7_c00435{height:72.421875px;}
.h4_c00435{height:1055.028000px;}
.h1_c00435{height:1055.478000px;}
.h0_c00435{height:1263.000000px;}
.w3_c00435{width:30.031500px;}
.w2_c00435{width:637.350000px;}
.w1_c00435{width:658.159500px;}
.w0_c00435{width:892.500000px;}
.x0_c00435{left:0.000000px;}
.x2_c00435{left:5.028000px;}
.x3_c00435{left:46.950000px;}
.x1_c00435{left:122.547000px;}
.x4_c00435{left:127.575000px;}
.x5_c00435{left:734.908997px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls3_c00435{letter-spacing:0.000000pt;}
.ls2_c00435{letter-spacing:0.012800pt;}
.ls0_c00435{letter-spacing:2266.112000pt;}
.ls1_c00435{letter-spacing:2266.133333pt;}
.ws1_c00435{word-spacing:0.000000pt;}
.ws0_c00435{word-spacing:3.225600pt;}
._1_c00435{width:3.345600pt;}
._3_c00435{width:5.006400pt;}
._2_c00435{width:6.216000pt;}
._0_c00435{width:20.550400pt;}
.fs1_c00435{font-size:48.000000pt;}
.fs0_c00435{font-size:64.000000pt;}
.y0_c00435{bottom:0.000000pt;}
.ye_c00435{bottom:3.366667pt;}
.yc_c00435{bottom:36.204000pt;}
.yb_c00435{bottom:49.536000pt;}
.yd_c00435{bottom:50.431641pt;}
.ya_c00435{bottom:62.868000pt;}
.y9_c00435{bottom:76.200000pt;}
.y8_c00435{bottom:90.466667pt;}
.y1_c00435{bottom:94.466667pt;}
.y6_c00435{bottom:94.866667pt;}
.y7_c00435{bottom:410.466667pt;}
.y5_c00435{bottom:802.868667pt;}
.y4_c00435{bottom:840.196667pt;}
.y3_c00435{bottom:876.196667pt;}
.y2_c00435{bottom:918.980667pt;}
.h6_c00435{height:17.600093pt;}
.h5_c00435{height:43.031250pt;}
.h3_c00435{height:57.375000pt;}
.h2_c00435{height:57.781250pt;}
.h7_c00435{height:64.375000pt;}
.h4_c00435{height:937.802667pt;}
.h1_c00435{height:938.202667pt;}
.h0_c00435{height:1122.666667pt;}
.w3_c00435{width:26.694667pt;}
.w2_c00435{width:566.533333pt;}
.w1_c00435{width:585.030667pt;}
.w0_c00435{width:793.333333pt;}
.x0_c00435{left:0.000000pt;}
.x2_c00435{left:4.469333pt;}
.x3_c00435{left:41.733333pt;}
.x1_c00435{left:108.930667pt;}
.x4_c00435{left:113.400000pt;}
.x5_c00435{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00436;src:url('chunks/assets/font_1c8bc2fa4233d68a4e7d596d.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00436;src:url('chunks/assets/font_ce93c2d33d7caf8e1730dbd5.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;line-height:1.330566;font-style: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;}
.ls2_c00436{letter-spacing:-0.010800px;}
.ls1_c00436{letter-spacing:0.000000px;}
.ls0_c00436{letter-spacing:2549.394000px;}
.sc__c00436{text-shadow:none;}
.sc0_c00436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00436{-webkit-text-stroke:0px transparent;}
.sc0_c00436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00436{word-spacing:0.000000px;}
._0_c00436{width:22.933800px;}
.fc1_c00436{color:transparent;}
.fc0_c00436{color:rgb(0,0,0);}
.fs0_c00436{font-size:54.000000px;}
.fs1_c00436{font-size:72.000000px;}
.y0_c00436{bottom:0.000000px;}
.y7_c00436{bottom:3.787500px;}
.y5_c00436{bottom:10.726500px;}
.y4_c00436{bottom:25.725000px;}
.y2_c00436{bottom:40.275000px;}
.y6_c00436{bottom:56.735596px;}
.y3_c00436{bottom:106.275000px;}
.y1_c00436{bottom:106.725000px;}
.h4_c00436{height:19.800105px;}
.h2_c00436{height:48.410156px;}
.h5_c00436{height:72.421875px;}
.h1_c00436{height:1053.771000px;}
.h3_c00436{height:1054.221000px;}
.h0_c00436{height:1263.000000px;}
.w3_c00436{width:30.033000px;}
.w1_c00436{width:637.350000px;}
.w2_c00436{width:655.645500px;}
.w0_c00436{width:892.500000px;}
.x0_c00436{left:0.000000px;}
.x3_c00436{left:3.696000px;}
.x2_c00436{left:123.804000px;}
.x1_c00436{left:127.575000px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls2_c00436{letter-spacing:-0.009600pt;}
.ls1_c00436{letter-spacing:0.000000pt;}
.ls0_c00436{letter-spacing:2266.128000pt;}
.ws0_c00436{word-spacing:0.000000pt;}
._0_c00436{width:20.385600pt;}
.fs0_c00436{font-size:48.000000pt;}
.fs1_c00436{font-size:64.000000pt;}
.y0_c00436{bottom:0.000000pt;}
.y7_c00436{bottom:3.366667pt;}
.y5_c00436{bottom:9.534667pt;}
.y4_c00436{bottom:22.866667pt;}
.y2_c00436{bottom:35.800000pt;}
.y6_c00436{bottom:50.431641pt;}
.y3_c00436{bottom:94.466667pt;}
.y1_c00436{bottom:94.866667pt;}
.h4_c00436{height:17.600093pt;}
.h2_c00436{height:43.031250pt;}
.h5_c00436{height:64.375000pt;}
.h1_c00436{height:936.685333pt;}
.h3_c00436{height:937.085333pt;}
.h0_c00436{height:1122.666667pt;}
.w3_c00436{width:26.696000pt;}
.w1_c00436{width:566.533333pt;}
.w2_c00436{width:582.796000pt;}
.w0_c00436{width:793.333333pt;}
.x0_c00436{left:0.000000pt;}
.x3_c00436{left:3.285333pt;}
.x2_c00436{left:110.048000pt;}
.x1_c00436{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00437;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00437;src:url('chunks/assets/font_16ed8dbc60ada76debdee047.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00437;src:url('chunks/assets/font_8ed3182db4d6226e25d14a9d.woff2')format("woff");}.ff4_c00437{font-family:ff4_c00437;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00437;src:url('chunks/assets/font_297cedf33f8ac8a7079fc23f.woff2')format("woff");}.ff5_c00437{font-family:ff5_c00437;line-height:1.330566;font-style: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;}
.ls1_c00437{letter-spacing:0.000000px;}
.ls0_c00437{letter-spacing:2549.233200px;}
.sc__c00437{text-shadow:none;}
.sc0_c00437{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00437{-webkit-text-stroke:0px transparent;}
.sc0_c00437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00437{word-spacing:0.000000px;}
._1_c00437{margin-left:-6.885000px;}
._0_c00437{width:4.438800px;}
.fc1_c00437{color:transparent;}
.fc0_c00437{color:rgb(0,0,0);}
.fs0_c00437{font-size:54.000000px;}
.fs1_c00437{font-size:72.000000px;}
.y0_c00437{bottom:0.000000px;}
.y7_c00437{bottom:3.787500px;}
.y5_c00437{bottom:54.226500px;}
.y6_c00437{bottom:56.735596px;}
.y4_c00437{bottom:69.225000px;}
.y2_c00437{bottom:83.775000px;}
.y3_c00437{bottom:106.275000px;}
.y1_c00437{bottom:106.725000px;}
.h5_c00437{height:19.800105px;}
.h4_c00437{height:48.410156px;}
.h2_c00437{height:65.003906px;}
.h6_c00437{height:72.421875px;}
.h1_c00437{height:1053.771000px;}
.h3_c00437{height:1054.221000px;}
.h0_c00437{height:1263.000000px;}
.w3_c00437{width:30.031500px;}
.w1_c00437{width:637.350000px;}
.w2_c00437{width:656.860500px;}
.w0_c00437{width:892.500000px;}
.x0_c00437{left:0.000000px;}
.x3_c00437{left:4.953000px;}
.x2_c00437{left:122.547000px;}
.x1_c00437{left:127.575000px;}
.x4_c00437{left:734.908997px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls1_c00437{letter-spacing:0.000000pt;}
.ls0_c00437{letter-spacing:2265.985067pt;}
.ws0_c00437{word-spacing:0.000000pt;}
._1_c00437{margin-left:-6.120000pt;}
._0_c00437{width:3.945600pt;}
.fs0_c00437{font-size:48.000000pt;}
.fs1_c00437{font-size:64.000000pt;}
.y0_c00437{bottom:0.000000pt;}
.y7_c00437{bottom:3.366667pt;}
.y5_c00437{bottom:48.201333pt;}
.y6_c00437{bottom:50.431641pt;}
.y4_c00437{bottom:61.533333pt;}
.y2_c00437{bottom:74.466667pt;}
.y3_c00437{bottom:94.466667pt;}
.y1_c00437{bottom:94.866667pt;}
.h5_c00437{height:17.600093pt;}
.h4_c00437{height:43.031250pt;}
.h2_c00437{height:57.781250pt;}
.h6_c00437{height:64.375000pt;}
.h1_c00437{height:936.685333pt;}
.h3_c00437{height:937.085333pt;}
.h0_c00437{height:1122.666667pt;}
.w3_c00437{width:26.694667pt;}
.w1_c00437{width:566.533333pt;}
.w2_c00437{width:583.876000pt;}
.w0_c00437{width:793.333333pt;}
.x0_c00437{left:0.000000pt;}
.x3_c00437{left:4.402667pt;}
.x2_c00437{left:108.930667pt;}
.x1_c00437{left:113.400000pt;}
.x4_c00437{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00438;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00438;src:url('chunks/assets/font_a56b195e4e10142d7acc2b28.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00438;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff4_c00438{font-family:ff4_c00438;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00438;src:url('chunks/assets/font_c4fdc3fe33a2e422312d53f3.woff2')format("woff");}.ff5_c00438{font-family:ff5_c00438;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00438{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.ls3_c00438{letter-spacing:-0.010800px;}
.ls2_c00438{letter-spacing:0.000000px;}
.ls0_c00438{letter-spacing:2549.376000px;}
.ls1_c00438{letter-spacing:2549.394000px;}
.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;}
}
.ws0_c00438{word-spacing:0.000000px;}
.fc1_c00438{color:transparent;}
.fc0_c00438{color:rgb(0,0,0);}
.fs1_c00438{font-size:54.000000px;}
.fs0_c00438{font-size:72.000000px;}
.y0_c00438{bottom:0.000000px;}
.y8_c00438{bottom:3.787500px;}
.y7_c00438{bottom:56.735596px;}
.y6_c00438{bottom:63.225000px;}
.y5_c00438{bottom:77.775000px;}
.y3_c00438{bottom:106.275000px;}
.y1_c00438{bottom:106.725000px;}
.y4_c00438{bottom:580.725000px;}
.y2_c00438{bottom:595.275000px;}
.h5_c00438{height:19.800105px;}
.h4_c00438{height:48.410156px;}
.h2_c00438{height:65.003906px;}
.h6_c00438{height:72.421875px;}
.h1_c00438{height:1055.028000px;}
.h3_c00438{height:1055.478000px;}
.h0_c00438{height:1263.000000px;}
.w3_c00438{width:30.033000px;}
.w1_c00438{width:637.350000px;}
.w2_c00438{width:658.159500px;}
.w0_c00438{width:892.500000px;}
.x0_c00438{left:0.000000px;}
.x3_c00438{left:36.453000px;}
.x4_c00438{left:54.453000px;}
.x2_c00438{left:122.547000px;}
.x1_c00438{left:127.575000px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls3_c00438{letter-spacing:-0.009600pt;}
.ls2_c00438{letter-spacing:0.000000pt;}
.ls0_c00438{letter-spacing:2266.112000pt;}
.ls1_c00438{letter-spacing:2266.128000pt;}
.ws0_c00438{word-spacing:0.000000pt;}
.fs1_c00438{font-size:48.000000pt;}
.fs0_c00438{font-size:64.000000pt;}
.y0_c00438{bottom:0.000000pt;}
.y8_c00438{bottom:3.366667pt;}
.y7_c00438{bottom:50.431641pt;}
.y6_c00438{bottom:56.200000pt;}
.y5_c00438{bottom:69.133333pt;}
.y3_c00438{bottom:94.466667pt;}
.y1_c00438{bottom:94.866667pt;}
.y4_c00438{bottom:516.200000pt;}
.y2_c00438{bottom:529.133333pt;}
.h5_c00438{height:17.600093pt;}
.h4_c00438{height:43.031250pt;}
.h2_c00438{height:57.781250pt;}
.h6_c00438{height:64.375000pt;}
.h1_c00438{height:937.802667pt;}
.h3_c00438{height:938.202667pt;}
.h0_c00438{height:1122.666667pt;}
.w3_c00438{width:26.696000pt;}
.w1_c00438{width:566.533333pt;}
.w2_c00438{width:585.030667pt;}
.w0_c00438{width:793.333333pt;}
.x0_c00438{left:0.000000pt;}
.x3_c00438{left:32.402667pt;}
.x4_c00438{left:48.402667pt;}
.x2_c00438{left:108.930667pt;}
.x1_c00438{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00439;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00439;src:url('chunks/assets/font_9f2ed5b18aae5d780c0ce3da.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00439;src:url('chunks/assets/font_509f4f7d074d1ebe54f54522.woff2')format("woff");}.ff4_c00439{font-family:ff4_c00439;line-height:1.330566;font-style: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:2549.376000px;}
.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;}
}
.ws0_c00439{word-spacing:0.000000px;}
._0_c00439{width:4.865400px;}
.fc1_c00439{color:transparent;}
.fc0_c00439{color:rgb(0,0,0);}
.fs1_c00439{font-size:54.000000px;}
.fs0_c00439{font-size:72.000000px;}
.y0_c00439{bottom:0.000000px;}
.y8_c00439{bottom:3.787500px;}
.y7_c00439{bottom:56.735596px;}
.y6_c00439{bottom:73.726500px;}
.y5_c00439{bottom:88.725000px;}
.y4_c00439{bottom:100.275000px;}
.y1_c00439{bottom:106.275000px;}
.y3_c00439{bottom:106.725000px;}
.y2_c00439{bottom:550.725000px;}
.h6_c00439{height:19.800105px;}
.h2_c00439{height:47.988281px;}
.h5_c00439{height:48.410156px;}
.h4_c00439{height:65.003906px;}
.h7_c00439{height:72.421875px;}
.h3_c00439{height:1053.771000px;}
.h1_c00439{height:1054.221000px;}
.h0_c00439{height:1263.000000px;}
.w3_c00439{width:30.031500px;}
.w2_c00439{width:637.350000px;}
.w1_c00439{width:658.159500px;}
.w0_c00439{width:892.500000px;}
.x0_c00439{left:0.000000px;}
.x2_c00439{left:4.953000px;}
.x1_c00439{left:122.547000px;}
.x3_c00439{left:127.575000px;}
.x4_c00439{left:734.908997px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls1_c00439{letter-spacing:0.000000pt;}
.ls0_c00439{letter-spacing:2266.112000pt;}
.ws0_c00439{word-spacing:0.000000pt;}
._0_c00439{width:4.324800pt;}
.fs1_c00439{font-size:48.000000pt;}
.fs0_c00439{font-size:64.000000pt;}
.y0_c00439{bottom:0.000000pt;}
.y8_c00439{bottom:3.366667pt;}
.y7_c00439{bottom:50.431641pt;}
.y6_c00439{bottom:65.534667pt;}
.y5_c00439{bottom:78.866667pt;}
.y4_c00439{bottom:89.133333pt;}
.y1_c00439{bottom:94.466667pt;}
.y3_c00439{bottom:94.866667pt;}
.y2_c00439{bottom:489.533333pt;}
.h6_c00439{height:17.600093pt;}
.h2_c00439{height:42.656250pt;}
.h5_c00439{height:43.031250pt;}
.h4_c00439{height:57.781250pt;}
.h7_c00439{height:64.375000pt;}
.h3_c00439{height:936.685333pt;}
.h1_c00439{height:937.085333pt;}
.h0_c00439{height:1122.666667pt;}
.w3_c00439{width:26.694667pt;}
.w2_c00439{width:566.533333pt;}
.w1_c00439{width:585.030667pt;}
.w0_c00439{width:793.333333pt;}
.x0_c00439{left:0.000000pt;}
.x2_c00439{left:4.402667pt;}
.x1_c00439{left:108.930667pt;}
.x3_c00439{left:113.400000pt;}
.x4_c00439{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00440;src:url('chunks/assets/font_7c96e494a7233b3051982cac.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00440;src:url('chunks/assets/font_c4fdc3fe33a2e422312d53f3.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.330566;font-style: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;}
.ls1_c00440{letter-spacing:0.000000px;}
.ls0_c00440{letter-spacing:2549.394000px;}
.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:0.000000px;}
._0_c00440{width:8.818200px;}
.fc1_c00440{color:transparent;}
.fc0_c00440{color:rgb(0,0,0);}
.fs0_c00440{font-size:54.000000px;}
.fs1_c00440{font-size:72.000000px;}
.y0_c00440{bottom:0.000000px;}
.y7_c00440{bottom:3.787500px;}
.y5_c00440{bottom:15.226500px;}
.y4_c00440{bottom:30.225000px;}
.y2_c00440{bottom:44.775000px;}
.y6_c00440{bottom:56.735596px;}
.y3_c00440{bottom:106.275000px;}
.y1_c00440{bottom:106.725000px;}
.h4_c00440{height:19.800105px;}
.h2_c00440{height:48.410156px;}
.h5_c00440{height:72.421875px;}
.h1_c00440{height:1053.771000px;}
.h3_c00440{height:1054.221000px;}
.h0_c00440{height:1263.000000px;}
.w3_c00440{width:30.033000px;}
.w1_c00440{width:637.350000px;}
.w2_c00440{width:655.645500px;}
.w0_c00440{width:892.500000px;}
.x0_c00440{left:0.000000px;}
.x3_c00440{left:3.696000px;}
.x2_c00440{left:123.804000px;}
.x1_c00440{left:127.575000px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls1_c00440{letter-spacing:0.000000pt;}
.ls0_c00440{letter-spacing:2266.128000pt;}
.ws0_c00440{word-spacing:0.000000pt;}
._0_c00440{width:7.838400pt;}
.fs0_c00440{font-size:48.000000pt;}
.fs1_c00440{font-size:64.000000pt;}
.y0_c00440{bottom:0.000000pt;}
.y7_c00440{bottom:3.366667pt;}
.y5_c00440{bottom:13.534667pt;}
.y4_c00440{bottom:26.866667pt;}
.y2_c00440{bottom:39.800000pt;}
.y6_c00440{bottom:50.431641pt;}
.y3_c00440{bottom:94.466667pt;}
.y1_c00440{bottom:94.866667pt;}
.h4_c00440{height:17.600093pt;}
.h2_c00440{height:43.031250pt;}
.h5_c00440{height:64.375000pt;}
.h1_c00440{height:936.685333pt;}
.h3_c00440{height:937.085333pt;}
.h0_c00440{height:1122.666667pt;}
.w3_c00440{width:26.696000pt;}
.w1_c00440{width:566.533333pt;}
.w2_c00440{width:582.796000pt;}
.w0_c00440{width:793.333333pt;}
.x0_c00440{left:0.000000pt;}
.x3_c00440{left:3.285333pt;}
.x2_c00440{left:110.048000pt;}
.x1_c00440{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00441;src:url('chunks/assets/font_9db1b05eb360d763d8ddf4f3.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00441;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00441;src:url('chunks/assets/font_10d7a89949bba1b2f5e62e3b.woff2')format("woff");}.ff4_c00441{font-family:ff4_c00441;line-height:1.330566;font-style: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;}
.ls1_c00441{letter-spacing:0.000000px;}
.ls0_c00441{letter-spacing:2549.394000px;}
.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:0.000000px;}
.fc1_c00441{color:transparent;}
.fc0_c00441{color:rgb(0,0,0);}
.fs0_c00441{font-size:54.000000px;}
.fs1_c00441{font-size:72.000000px;}
.y0_c00441{bottom:0.000000px;}
.y6_c00441{bottom:3.787500px;}
.y4_c00441{bottom:15.878400px;}
.y2_c00441{bottom:29.775000px;}
.y5_c00441{bottom:56.735596px;}
.y3_c00441{bottom:106.275000px;}
.y1_c00441{bottom:106.725000px;}
.h5_c00441{height:19.800105px;}
.h2_c00441{height:48.410156px;}
.h4_c00441{height:65.003906px;}
.h6_c00441{height:72.421875px;}
.h1_c00441{height:1053.771000px;}
.h3_c00441{height:1054.221000px;}
.h0_c00441{height:1263.000000px;}
.w3_c00441{width:30.031500px;}
.w1_c00441{width:637.350000px;}
.w2_c00441{width:655.645500px;}
.w0_c00441{width:892.500000px;}
.x0_c00441{left:0.000000px;}
.x2_c00441{left:123.804000px;}
.x1_c00441{left:127.575000px;}
.x3_c00441{left:443.472000px;}
.x4_c00441{left:734.908997px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls1_c00441{letter-spacing:0.000000pt;}
.ls0_c00441{letter-spacing:2266.128000pt;}
.ws0_c00441{word-spacing:0.000000pt;}
.fs0_c00441{font-size:48.000000pt;}
.fs1_c00441{font-size:64.000000pt;}
.y0_c00441{bottom:0.000000pt;}
.y6_c00441{bottom:3.366667pt;}
.y4_c00441{bottom:14.114133pt;}
.y2_c00441{bottom:26.466667pt;}
.y5_c00441{bottom:50.431641pt;}
.y3_c00441{bottom:94.466667pt;}
.y1_c00441{bottom:94.866667pt;}
.h5_c00441{height:17.600093pt;}
.h2_c00441{height:43.031250pt;}
.h4_c00441{height:57.781250pt;}
.h6_c00441{height:64.375000pt;}
.h1_c00441{height:936.685333pt;}
.h3_c00441{height:937.085333pt;}
.h0_c00441{height:1122.666667pt;}
.w3_c00441{width:26.694667pt;}
.w1_c00441{width:566.533333pt;}
.w2_c00441{width:582.796000pt;}
.w0_c00441{width:793.333333pt;}
.x0_c00441{left:0.000000pt;}
.x2_c00441{left:110.048000pt;}
.x1_c00441{left:113.400000pt;}
.x3_c00441{left:394.197333pt;}
.x4_c00441{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00442;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00442;src:url('chunks/assets/font_401e1cfa95d910d9c3b81458.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00442;src:url('chunks/assets/font_504c1cceb8639cdd5b852c89.woff2')format("woff");}.ff4_c00442{font-family:ff4_c00442;line-height:1.330566;font-style: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;}
.ls1_c00442{letter-spacing:0.000000px;}
.ls0_c00442{letter-spacing:2549.376000px;}
.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;}
}
.ws0_c00442{word-spacing:0.000000px;}
.fc1_c00442{color:transparent;}
.fc0_c00442{color:rgb(0,0,0);}
.fs1_c00442{font-size:54.000000px;}
.fs0_c00442{font-size:72.000000px;}
.y0_c00442{bottom:0.000000px;}
.y5_c00442{bottom:3.787500px;}
.y3_c00442{bottom:49.098000px;}
.y4_c00442{bottom:56.735596px;}
.y2_c00442{bottom:65.598000px;}
.y1_c00442{bottom:93.402000px;}
.h4_c00442{height:19.800105px;}
.h3_c00442{height:48.410156px;}
.h2_c00442{height:65.003906px;}
.h5_c00442{height:72.421875px;}
.h1_c00442{height:1068.349500px;}
.h0_c00442{height:1263.000000px;}
.w3_c00442{width:30.033000px;}
.w1_c00442{width:637.350000px;}
.w2_c00442{width:658.159500px;}
.w0_c00442{width:892.500000px;}
.x0_c00442{left:0.000000px;}
.x3_c00442{left:4.953000px;}
.x2_c00442{left:122.547000px;}
.x1_c00442{left:127.575000px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls1_c00442{letter-spacing:0.000000pt;}
.ls0_c00442{letter-spacing:2266.112000pt;}
.ws0_c00442{word-spacing:0.000000pt;}
.fs1_c00442{font-size:48.000000pt;}
.fs0_c00442{font-size:64.000000pt;}
.y0_c00442{bottom:0.000000pt;}
.y5_c00442{bottom:3.366667pt;}
.y3_c00442{bottom:43.642667pt;}
.y4_c00442{bottom:50.431641pt;}
.y2_c00442{bottom:58.309333pt;}
.y1_c00442{bottom:83.024000pt;}
.h4_c00442{height:17.600093pt;}
.h3_c00442{height:43.031250pt;}
.h2_c00442{height:57.781250pt;}
.h5_c00442{height:64.375000pt;}
.h1_c00442{height:949.644000pt;}
.h0_c00442{height:1122.666667pt;}
.w3_c00442{width:26.696000pt;}
.w1_c00442{width:566.533333pt;}
.w2_c00442{width:585.030667pt;}
.w0_c00442{width:793.333333pt;}
.x0_c00442{left:0.000000pt;}
.x3_c00442{left:4.402667pt;}
.x2_c00442{left:108.930667pt;}
.x1_c00442{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_9db1b05eb360d763d8ddf4f3.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00443;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00443;src:url('chunks/assets/font_ed7bbca96b23c18edb306083.woff2')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:1.330566;font-style: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:0.000000px;}
.fc0_c00443{color:rgb(0,0,0);}
.fs0_c00443{font-size:54.000000px;}
.fs1_c00443{font-size:72.000000px;}
.y0_c00443{bottom:0.000000px;}
.y4_c00443{bottom:3.787500px;}
.y2_c00443{bottom:15.752550px;}
.y3_c00443{bottom:56.735596px;}
.y1_c00443{bottom:106.275000px;}
.h3_c00443{height:19.800105px;}
.h2_c00443{height:65.003906px;}
.h4_c00443{height:72.421875px;}
.h1_c00443{height:1055.478000px;}
.h0_c00443{height:1263.000000px;}
.w2_c00443{width:30.031500px;}
.w1_c00443{width:648.399000px;}
.w0_c00443{width:892.500000px;}
.x0_c00443{left:0.000000px;}
.x1_c00443{left:122.547000px;}
.x2_c00443{left:444.729000px;}
.x3_c00443{left:734.908997px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls0_c00443{letter-spacing:0.000000pt;}
.ws0_c00443{word-spacing:0.000000pt;}
.fs0_c00443{font-size:48.000000pt;}
.fs1_c00443{font-size:64.000000pt;}
.y0_c00443{bottom:0.000000pt;}
.y4_c00443{bottom:3.366667pt;}
.y2_c00443{bottom:14.002267pt;}
.y3_c00443{bottom:50.431641pt;}
.y1_c00443{bottom:94.466667pt;}
.h3_c00443{height:17.600093pt;}
.h2_c00443{height:57.781250pt;}
.h4_c00443{height:64.375000pt;}
.h1_c00443{height:938.202667pt;}
.h0_c00443{height:1122.666667pt;}
.w2_c00443{width:26.694667pt;}
.w1_c00443{width:576.354667pt;}
.w0_c00443{width:793.333333pt;}
.x0_c00443{left:0.000000pt;}
.x1_c00443{left:108.930667pt;}
.x2_c00443{left:395.314667pt;}
.x3_c00443{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00444;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00444;src:url('chunks/assets/font_6d2ccf00e82fc95690e85ee7.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00444;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff4_c00444{font-family:ff4_c00444;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00444;src:url('chunks/assets/font_eec5775a62743ed723bcadbd.woff2')format("woff");}.ff5_c00444{font-family:ff5_c00444;line-height:1.330566;font-style: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;}
.ls2_c00444{letter-spacing:0.000000px;}
.ls0_c00444{letter-spacing:2549.376000px;}
.ls1_c00444{letter-spacing:2549.394000px;}
.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:0.000000px;}
._0_c00444{width:3.245400px;}
.fc1_c00444{color:transparent;}
.fc0_c00444{color:rgb(0,0,0);}
.fs1_c00444{font-size:54.000000px;}
.fs0_c00444{font-size:72.000000px;}
.y0_c00444{bottom:0.000000px;}
.ya_c00444{bottom:3.787500px;}
.y8_c00444{bottom:15.226500px;}
.y7_c00444{bottom:30.225000px;}
.y6_c00444{bottom:44.775000px;}
.y9_c00444{bottom:56.735596px;}
.y3_c00444{bottom:106.275000px;}
.y1_c00444{bottom:106.725000px;}
.y5_c00444{bottom:559.726500px;}
.y4_c00444{bottom:574.725000px;}
.y2_c00444{bottom:590.775000px;}
.h5_c00444{height:19.800105px;}
.h4_c00444{height:48.410156px;}
.h2_c00444{height:65.003906px;}
.h6_c00444{height:72.421875px;}
.h1_c00444{height:1055.028000px;}
.h3_c00444{height:1055.478000px;}
.h0_c00444{height:1263.000000px;}
.w3_c00444{width:30.033000px;}
.w1_c00444{width:637.350000px;}
.w2_c00444{width:658.159500px;}
.w0_c00444{width:892.500000px;}
.x0_c00444{left:0.000000px;}
.x3_c00444{left:4.953000px;}
.x2_c00444{left:122.547000px;}
.x1_c00444{left:127.575000px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls2_c00444{letter-spacing:0.000000pt;}
.ls0_c00444{letter-spacing:2266.112000pt;}
.ls1_c00444{letter-spacing:2266.128000pt;}
.ws0_c00444{word-spacing:0.000000pt;}
._0_c00444{width:2.884800pt;}
.fs1_c00444{font-size:48.000000pt;}
.fs0_c00444{font-size:64.000000pt;}
.y0_c00444{bottom:0.000000pt;}
.ya_c00444{bottom:3.366667pt;}
.y8_c00444{bottom:13.534667pt;}
.y7_c00444{bottom:26.866667pt;}
.y6_c00444{bottom:39.800000pt;}
.y9_c00444{bottom:50.431641pt;}
.y3_c00444{bottom:94.466667pt;}
.y1_c00444{bottom:94.866667pt;}
.y5_c00444{bottom:497.534667pt;}
.y4_c00444{bottom:510.866667pt;}
.y2_c00444{bottom:525.133333pt;}
.h5_c00444{height:17.600093pt;}
.h4_c00444{height:43.031250pt;}
.h2_c00444{height:57.781250pt;}
.h6_c00444{height:64.375000pt;}
.h1_c00444{height:937.802667pt;}
.h3_c00444{height:938.202667pt;}
.h0_c00444{height:1122.666667pt;}
.w3_c00444{width:26.696000pt;}
.w1_c00444{width:566.533333pt;}
.w2_c00444{width:585.030667pt;}
.w0_c00444{width:793.333333pt;}
.x0_c00444{left:0.000000pt;}
.x3_c00444{left:4.402667pt;}
.x2_c00444{left:108.930667pt;}
.x1_c00444{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00445;src:url('chunks/assets/font_d826b5eb0e8fca035fad2c90.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00445;src:url('chunks/assets/font_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00445;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00445;src:url('chunks/assets/font_53b0e24a8aa4a798106f92cf.woff2')format("woff");}.ff5_c00445{font-family:ff5_c00445;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00445{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.ls2_c00445{letter-spacing:-0.010800px;}
.ls1_c00445{letter-spacing:0.000000px;}
.ls0_c00445{letter-spacing:2549.400000px;}
.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:0.000000px;}
._0_c00445{width:2.500200px;}
.fc1_c00445{color:transparent;}
.fc0_c00445{color:rgb(0,0,0);}
.fs1_c00445{font-size:54.000000px;}
.fs0_c00445{font-size:72.000000px;}
.y0_c00445{bottom:0.000000px;}
.y9_c00445{bottom:3.787500px;}
.y7_c00445{bottom:14.048850px;}
.y6_c00445{bottom:28.275000px;}
.y8_c00445{bottom:56.735596px;}
.y1_c00445{bottom:106.275000px;}
.y5_c00445{bottom:106.725000px;}
.y4_c00445{bottom:574.726500px;}
.y3_c00445{bottom:589.725000px;}
.y2_c00445{bottom:604.725000px;}
.h6_c00445{height:19.800105px;}
.h2_c00445{height:47.988281px;}
.h3_c00445{height:48.410156px;}
.h5_c00445{height:65.003906px;}
.h7_c00445{height:72.421875px;}
.h4_c00445{height:1053.771000px;}
.h1_c00445{height:1054.221000px;}
.h0_c00445{height:1263.000000px;}
.w3_c00445{width:30.031500px;}
.w2_c00445{width:637.350000px;}
.w1_c00445{width:656.902500px;}
.w0_c00445{width:892.500000px;}
.x0_c00445{left:0.000000px;}
.x2_c00445{left:4.953000px;}
.x1_c00445{left:122.547000px;}
.x3_c00445{left:127.575000px;}
.x4_c00445{left:444.729000px;}
.x5_c00445{left:734.908997px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls2_c00445{letter-spacing:-0.009600pt;}
.ls1_c00445{letter-spacing:0.000000pt;}
.ls0_c00445{letter-spacing:2266.133333pt;}
.ws0_c00445{word-spacing:0.000000pt;}
._0_c00445{width:2.222400pt;}
.fs1_c00445{font-size:48.000000pt;}
.fs0_c00445{font-size:64.000000pt;}
.y0_c00445{bottom:0.000000pt;}
.y9_c00445{bottom:3.366667pt;}
.y7_c00445{bottom:12.487867pt;}
.y6_c00445{bottom:25.133333pt;}
.y8_c00445{bottom:50.431641pt;}
.y1_c00445{bottom:94.466667pt;}
.y5_c00445{bottom:94.866667pt;}
.y4_c00445{bottom:510.868000pt;}
.y3_c00445{bottom:524.200000pt;}
.y2_c00445{bottom:537.533333pt;}
.h6_c00445{height:17.600093pt;}
.h2_c00445{height:42.656250pt;}
.h3_c00445{height:43.031250pt;}
.h5_c00445{height:57.781250pt;}
.h7_c00445{height:64.375000pt;}
.h4_c00445{height:936.685333pt;}
.h1_c00445{height:937.085333pt;}
.h0_c00445{height:1122.666667pt;}
.w3_c00445{width:26.694667pt;}
.w2_c00445{width:566.533333pt;}
.w1_c00445{width:583.913333pt;}
.w0_c00445{width:793.333333pt;}
.x0_c00445{left:0.000000pt;}
.x2_c00445{left:4.402667pt;}
.x1_c00445{left:108.930667pt;}
.x3_c00445{left:113.400000pt;}
.x4_c00445{left:395.314667pt;}
.x5_c00445{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00446;src:url('chunks/assets/font_9db1b05eb360d763d8ddf4f3.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00446;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff3_c00446{font-family:ff3_c00446;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00446;src:url('chunks/assets/font_15cc599b027087639839c4bc.woff2')format("woff");}.ff4_c00446{font-family:ff4_c00446;line-height:1.330566;font-style: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;}
.ls1_c00446{letter-spacing:0.000000px;}
.ls0_c00446{letter-spacing:2549.376000px;}
.sc__c00446{text-shadow:none;}
.sc0_c00446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00446{-webkit-text-stroke:0px transparent;}
.sc0_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00446{word-spacing:0.000000px;}
.fc1_c00446{color:transparent;}
.fc0_c00446{color:rgb(0,0,0);}
.fs1_c00446{font-size:54.000000px;}
.fs0_c00446{font-size:72.000000px;}
.y0_c00446{bottom:0.000000px;}
.y7_c00446{bottom:3.787500px;}
.y5_c00446{bottom:15.651000px;}
.y4_c00446{bottom:31.275000px;}
.y6_c00446{bottom:56.735596px;}
.y1_c00446{bottom:106.275000px;}
.y3_c00446{bottom:106.725000px;}
.y2_c00446{bottom:549.225000px;}
.h6_c00446{height:19.800105px;}
.h2_c00446{height:47.988281px;}
.h4_c00446{height:64.546875px;}
.h5_c00446{height:65.003906px;}
.h7_c00446{height:72.421875px;}
.h3_c00446{height:1055.028000px;}
.h1_c00446{height:1055.478000px;}
.h0_c00446{height:1263.000000px;}
.w3_c00446{width:30.033000px;}
.w2_c00446{width:637.350000px;}
.w1_c00446{width:658.159500px;}
.w0_c00446{width:892.500000px;}
.x0_c00446{left:0.000000px;}
.x2_c00446{left:4.953000px;}
.x1_c00446{left:122.547000px;}
.x3_c00446{left:127.575000px;}
.x4_c00446{left:444.729000px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls1_c00446{letter-spacing:0.000000pt;}
.ls0_c00446{letter-spacing:2266.112000pt;}
.ws0_c00446{word-spacing:0.000000pt;}
.fs1_c00446{font-size:48.000000pt;}
.fs0_c00446{font-size:64.000000pt;}
.y0_c00446{bottom:0.000000pt;}
.y7_c00446{bottom:3.366667pt;}
.y5_c00446{bottom:13.912000pt;}
.y4_c00446{bottom:27.800000pt;}
.y6_c00446{bottom:50.431641pt;}
.y1_c00446{bottom:94.466667pt;}
.y3_c00446{bottom:94.866667pt;}
.y2_c00446{bottom:488.200000pt;}
.h6_c00446{height:17.600093pt;}
.h2_c00446{height:42.656250pt;}
.h4_c00446{height:57.375000pt;}
.h5_c00446{height:57.781250pt;}
.h7_c00446{height:64.375000pt;}
.h3_c00446{height:937.802667pt;}
.h1_c00446{height:938.202667pt;}
.h0_c00446{height:1122.666667pt;}
.w3_c00446{width:26.696000pt;}
.w2_c00446{width:566.533333pt;}
.w1_c00446{width:585.030667pt;}
.w0_c00446{width:793.333333pt;}
.x0_c00446{left:0.000000pt;}
.x2_c00446{left:4.402667pt;}
.x1_c00446{left:108.930667pt;}
.x3_c00446{left:113.400000pt;}
.x4_c00446{left:395.314667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00447;src:url('chunks/assets/font_a9306d979442c27c5a2039ee.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00447;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff3_c00447{font-family:ff3_c00447;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00447;src:url('chunks/assets/font_47f9b38f1da376d05be4f60f.woff2')format("woff");}.ff4_c00447{font-family:ff4_c00447;line-height:1.330566;font-style: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;}
.ls1_c00447{letter-spacing:-0.010800px;}
.ls0_c00447{letter-spacing:0.000000px;}
.sc__c00447{text-shadow:none;}
.sc0_c00447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00447{-webkit-text-stroke:0px transparent;}
.sc0_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00447{word-spacing:0.000000px;}
._1_c00447{width:2.862000px;}
._0_c00447{width:19.240200px;}
.fc0_c00447{color:rgb(0,0,0);}
.fs1_c00447{font-size:54.000000px;}
.fs0_c00447{font-size:72.000000px;}
.y0_c00447{bottom:0.000000px;}
.y9_c00447{bottom:3.787500px;}
.y7_c00447{bottom:24.226500px;}
.y6_c00447{bottom:39.225000px;}
.y5_c00447{bottom:55.725000px;}
.y8_c00447{bottom:56.735596px;}
.y1_c00447{bottom:106.275000px;}
.y4_c00447{bottom:570.226500px;}
.y3_c00447{bottom:585.225000px;}
.y2_c00447{bottom:601.725000px;}
.h4_c00447{height:19.800105px;}
.h2_c00447{height:47.988281px;}
.h3_c00447{height:48.410156px;}
.h5_c00447{height:72.421875px;}
.h1_c00447{height:1055.478000px;}
.h0_c00447{height:1263.000000px;}
.w2_c00447{width:30.031500px;}
.w1_c00447{width:647.404500px;}
.w0_c00447{width:892.500000px;}
.x0_c00447{left:0.000000px;}
.x2_c00447{left:4.953000px;}
.x1_c00447{left:122.547000px;}
.x3_c00447{left:734.908997px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls1_c00447{letter-spacing:-0.009600pt;}
.ls0_c00447{letter-spacing:0.000000pt;}
.ws0_c00447{word-spacing:0.000000pt;}
._1_c00447{width:2.544000pt;}
._0_c00447{width:17.102400pt;}
.fs1_c00447{font-size:48.000000pt;}
.fs0_c00447{font-size:64.000000pt;}
.y0_c00447{bottom:0.000000pt;}
.y9_c00447{bottom:3.366667pt;}
.y7_c00447{bottom:21.534667pt;}
.y6_c00447{bottom:34.866667pt;}
.y5_c00447{bottom:49.533333pt;}
.y8_c00447{bottom:50.431641pt;}
.y1_c00447{bottom:94.466667pt;}
.y4_c00447{bottom:506.868000pt;}
.y3_c00447{bottom:520.200000pt;}
.y2_c00447{bottom:534.866667pt;}
.h4_c00447{height:17.600093pt;}
.h2_c00447{height:42.656250pt;}
.h3_c00447{height:43.031250pt;}
.h5_c00447{height:64.375000pt;}
.h1_c00447{height:938.202667pt;}
.h0_c00447{height:1122.666667pt;}
.w2_c00447{width:26.694667pt;}
.w1_c00447{width:575.470667pt;}
.w0_c00447{width:793.333333pt;}
.x0_c00447{left:0.000000pt;}
.x2_c00447{left:4.402667pt;}
.x1_c00447{left:108.930667pt;}
.x3_c00447{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00448;src:url('chunks/assets/font_43ca8b03571a43847ff19b5d.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00448;src:url('chunks/assets/font_509f4f7d074d1ebe54f54522.woff2')format("woff");}.ff3_c00448{font-family:ff3_c00448;line-height:1.330566;font-style: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;}
.ls1_c00448{letter-spacing:0.000000px;}
.ls0_c00448{letter-spacing:2549.394000px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00448{word-spacing:0.000000px;}
._1_c00448{margin-left:-14.553000px;}
._0_c00448{width:1.917000px;}
.fc1_c00448{color:transparent;}
.fc0_c00448{color:rgb(0,0,0);}
.fs0_c00448{font-size:54.000000px;}
.fs1_c00448{font-size:72.000000px;}
.y0_c00448{bottom:0.000000px;}
.y7_c00448{bottom:3.787500px;}
.y5_c00448{bottom:7.597500px;}
.y4_c00448{bottom:22.596000px;}
.y3_c00448{bottom:37.596000px;}
.y6_c00448{bottom:56.735596px;}
.y1_c00448{bottom:103.404000px;}
.y2_c00448{bottom:510.096000px;}
.h3_c00448{height:19.800105px;}
.h2_c00448{height:48.410156px;}
.h4_c00448{height:72.421875px;}
.h1_c00448{height:1057.090500px;}
.h0_c00448{height:1263.000000px;}
.w3_c00448{width:30.033000px;}
.w1_c00448{width:637.350000px;}
.w2_c00448{width:655.645500px;}
.w0_c00448{width:892.500000px;}
.x0_c00448{left:0.000000px;}
.x3_c00448{left:3.696000px;}
.x2_c00448{left:123.804000px;}
.x1_c00448{left:127.575000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls1_c00448{letter-spacing:0.000000pt;}
.ls0_c00448{letter-spacing:2266.128000pt;}
.ws0_c00448{word-spacing:0.000000pt;}
._1_c00448{margin-left:-12.936000pt;}
._0_c00448{width:1.704000pt;}
.fs0_c00448{font-size:48.000000pt;}
.fs1_c00448{font-size:64.000000pt;}
.y0_c00448{bottom:0.000000pt;}
.y7_c00448{bottom:3.366667pt;}
.y5_c00448{bottom:6.753333pt;}
.y4_c00448{bottom:20.085333pt;}
.y3_c00448{bottom:33.418667pt;}
.y6_c00448{bottom:50.431641pt;}
.y1_c00448{bottom:91.914667pt;}
.y2_c00448{bottom:453.418667pt;}
.h3_c00448{height:17.600093pt;}
.h2_c00448{height:43.031250pt;}
.h4_c00448{height:64.375000pt;}
.h1_c00448{height:939.636000pt;}
.h0_c00448{height:1122.666667pt;}
.w3_c00448{width:26.696000pt;}
.w1_c00448{width:566.533333pt;}
.w2_c00448{width:582.796000pt;}
.w0_c00448{width:793.333333pt;}
.x0_c00448{left:0.000000pt;}
.x3_c00448{left:3.285333pt;}
.x2_c00448{left:110.048000pt;}
.x1_c00448{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00449;src:url('chunks/assets/font_9db1b05eb360d763d8ddf4f3.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00449;src:url('chunks/assets/font_1ec5f0441c314458361d6012.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;line-height:1.330566;font-style: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;}
.ls1_c00449{letter-spacing:0.000000px;}
.ls0_c00449{letter-spacing:2549.394000px;}
.sc__c00449{text-shadow:none;}
.sc0_c00449{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00449{-webkit-text-stroke:0px transparent;}
.sc0_c00449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00449{word-spacing:0.000000px;}
.fc1_c00449{color:transparent;}
.fc0_c00449{color:rgb(0,0,0);}
.fs0_c00449{font-size:54.000000px;}
.fs1_c00449{font-size:72.000000px;}
.y0_c00449{bottom:0.000000px;}
.y6_c00449{bottom:3.787500px;}
.y4_c00449{bottom:7.874850px;}
.y2_c00449{bottom:22.596000px;}
.y5_c00449{bottom:56.735596px;}
.y3_c00449{bottom:106.275000px;}
.y1_c00449{bottom:106.404000px;}
.h4_c00449{height:19.800105px;}
.h2_c00449{height:48.410156px;}
.h5_c00449{height:72.421875px;}
.h1_c00449{height:1054.090500px;}
.h3_c00449{height:1054.221000px;}
.h0_c00449{height:1263.000000px;}
.w3_c00449{width:30.031500px;}
.w1_c00449{width:637.350000px;}
.w2_c00449{width:655.645500px;}
.w0_c00449{width:892.500000px;}
.x0_c00449{left:0.000000px;}
.x2_c00449{left:123.804000px;}
.x1_c00449{left:127.575000px;}
.x3_c00449{left:443.472000px;}
.x4_c00449{left:734.908997px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls1_c00449{letter-spacing:0.000000pt;}
.ls0_c00449{letter-spacing:2266.128000pt;}
.ws0_c00449{word-spacing:0.000000pt;}
.fs0_c00449{font-size:48.000000pt;}
.fs1_c00449{font-size:64.000000pt;}
.y0_c00449{bottom:0.000000pt;}
.y6_c00449{bottom:3.366667pt;}
.y4_c00449{bottom:6.999867pt;}
.y2_c00449{bottom:20.085333pt;}
.y5_c00449{bottom:50.431641pt;}
.y3_c00449{bottom:94.466667pt;}
.y1_c00449{bottom:94.581333pt;}
.h4_c00449{height:17.600093pt;}
.h2_c00449{height:43.031250pt;}
.h5_c00449{height:64.375000pt;}
.h1_c00449{height:936.969333pt;}
.h3_c00449{height:937.085333pt;}
.h0_c00449{height:1122.666667pt;}
.w3_c00449{width:26.694667pt;}
.w1_c00449{width:566.533333pt;}
.w2_c00449{width:582.796000pt;}
.w0_c00449{width:793.333333pt;}
.x0_c00449{left:0.000000pt;}
.x2_c00449{left:110.048000pt;}
.x1_c00449{left:113.400000pt;}
.x3_c00449{left:394.197333pt;}
.x4_c00449{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00450;src:url('chunks/assets/font_c2775363f95c57013216d7c5.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00450;src:url('chunks/assets/font_1ec5f0441c314458361d6012.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00450{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00450{vertical-align:0.000000px;}
.ls1_c00450{letter-spacing:0.000000px;}
.ls0_c00450{letter-spacing:2549.394000px;}
.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:0.000000px;}
._0_c00450{width:7.862400px;}
.fc1_c00450{color:transparent;}
.fc0_c00450{color:rgb(0,0,0);}
.fs0_c00450{font-size:54.000000px;}
.fs1_c00450{font-size:72.000000px;}
.y0_c00450{bottom:0.000000px;}
.y7_c00450{bottom:3.787500px;}
.y5_c00450{bottom:15.226500px;}
.y4_c00450{bottom:30.225000px;}
.y2_c00450{bottom:44.775000px;}
.y6_c00450{bottom:56.735596px;}
.y3_c00450{bottom:106.275000px;}
.y1_c00450{bottom:106.725000px;}
.h4_c00450{height:19.800105px;}
.h2_c00450{height:48.410156px;}
.h5_c00450{height:72.421875px;}
.h1_c00450{height:1053.771000px;}
.h3_c00450{height:1054.221000px;}
.h0_c00450{height:1263.000000px;}
.w3_c00450{width:30.033000px;}
.w1_c00450{width:637.350000px;}
.w2_c00450{width:655.645500px;}
.w0_c00450{width:892.500000px;}
.x0_c00450{left:0.000000px;}
.x3_c00450{left:3.696000px;}
.x2_c00450{left:123.804000px;}
.x1_c00450{left:127.575000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls1_c00450{letter-spacing:0.000000pt;}
.ls0_c00450{letter-spacing:2266.128000pt;}
.ws0_c00450{word-spacing:0.000000pt;}
._0_c00450{width:6.988800pt;}
.fs0_c00450{font-size:48.000000pt;}
.fs1_c00450{font-size:64.000000pt;}
.y0_c00450{bottom:0.000000pt;}
.y7_c00450{bottom:3.366667pt;}
.y5_c00450{bottom:13.534667pt;}
.y4_c00450{bottom:26.866667pt;}
.y2_c00450{bottom:39.800000pt;}
.y6_c00450{bottom:50.431641pt;}
.y3_c00450{bottom:94.466667pt;}
.y1_c00450{bottom:94.866667pt;}
.h4_c00450{height:17.600093pt;}
.h2_c00450{height:43.031250pt;}
.h5_c00450{height:64.375000pt;}
.h1_c00450{height:936.685333pt;}
.h3_c00450{height:937.085333pt;}
.h0_c00450{height:1122.666667pt;}
.w3_c00450{width:26.696000pt;}
.w1_c00450{width:566.533333pt;}
.w2_c00450{width:582.796000pt;}
.w0_c00450{width:793.333333pt;}
.x0_c00450{left:0.000000pt;}
.x3_c00450{left:3.285333pt;}
.x2_c00450{left:110.048000pt;}
.x1_c00450{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00451;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00451;src:url('chunks/assets/font_fb9e1cd998e054acf5c27f29.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00451;src:url('chunks/assets/font_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff4_c00451{font-family:ff4_c00451;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00451;src:url('chunks/assets/font_c2da5fabfbc25faa86de17d5.woff2')format("woff");}.ff5_c00451{font-family:ff5_c00451;line-height:1.330566;font-style: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;}
.ls2_c00451{letter-spacing:-0.010800px;}
.ls1_c00451{letter-spacing:0.000000px;}
.ls0_c00451{letter-spacing:2549.400000px;}
.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:0.000000px;}
._0_c00451{width:4.779000px;}
.fc1_c00451{color:transparent;}
.fc0_c00451{color:rgb(0,0,0);}
.fs0_c00451{font-size:54.000000px;}
.fs1_c00451{font-size:72.000000px;}
.y0_c00451{bottom:0.000000px;}
.y9_c00451{bottom:3.787500px;}
.y7_c00451{bottom:9.538650px;}
.y6_c00451{bottom:23.775000px;}
.y8_c00451{bottom:56.735596px;}
.y3_c00451{bottom:106.275000px;}
.y1_c00451{bottom:106.725000px;}
.y5_c00451{bottom:514.726500px;}
.y4_c00451{bottom:529.725000px;}
.y2_c00451{bottom:544.275000px;}
.h5_c00451{height:19.800105px;}
.h4_c00451{height:48.410156px;}
.h2_c00451{height:65.003906px;}
.h6_c00451{height:72.421875px;}
.h1_c00451{height:1053.771000px;}
.h3_c00451{height:1054.221000px;}
.h0_c00451{height:1263.000000px;}
.w3_c00451{width:30.031500px;}
.w1_c00451{width:637.350000px;}
.w2_c00451{width:655.645500px;}
.w0_c00451{width:892.500000px;}
.x0_c00451{left:0.000000px;}
.x3_c00451{left:3.696000px;}
.x2_c00451{left:123.804000px;}
.x1_c00451{left:127.575000px;}
.x4_c00451{left:443.472000px;}
.x5_c00451{left:734.908997px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls2_c00451{letter-spacing:-0.009600pt;}
.ls1_c00451{letter-spacing:0.000000pt;}
.ls0_c00451{letter-spacing:2266.133333pt;}
.ws0_c00451{word-spacing:0.000000pt;}
._0_c00451{width:4.248000pt;}
.fs0_c00451{font-size:48.000000pt;}
.fs1_c00451{font-size:64.000000pt;}
.y0_c00451{bottom:0.000000pt;}
.y9_c00451{bottom:3.366667pt;}
.y7_c00451{bottom:8.478800pt;}
.y6_c00451{bottom:21.133333pt;}
.y8_c00451{bottom:50.431641pt;}
.y3_c00451{bottom:94.466667pt;}
.y1_c00451{bottom:94.866667pt;}
.y5_c00451{bottom:457.534667pt;}
.y4_c00451{bottom:470.866667pt;}
.y2_c00451{bottom:483.800000pt;}
.h5_c00451{height:17.600093pt;}
.h4_c00451{height:43.031250pt;}
.h2_c00451{height:57.781250pt;}
.h6_c00451{height:64.375000pt;}
.h1_c00451{height:936.685333pt;}
.h3_c00451{height:937.085333pt;}
.h0_c00451{height:1122.666667pt;}
.w3_c00451{width:26.694667pt;}
.w1_c00451{width:566.533333pt;}
.w2_c00451{width:582.796000pt;}
.w0_c00451{width:793.333333pt;}
.x0_c00451{left:0.000000pt;}
.x3_c00451{left:3.285333pt;}
.x2_c00451{left:110.048000pt;}
.x1_c00451{left:113.400000pt;}
.x4_c00451{left:394.197333pt;}
.x5_c00451{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00452;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00452;src:url('chunks/assets/font_11241dba69dfe3fa544427ad.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00452;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff4_c00452{font-family:ff4_c00452;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00452;src:url('chunks/assets/font_81330e392053145cf4f862d5.woff2')format("woff");}.ff5_c00452{font-family:ff5_c00452;line-height:1.330566;font-style: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;}
.ls2_c00452{letter-spacing:0.000000px;}
.ls0_c00452{letter-spacing:2549.376000px;}
.ls1_c00452{letter-spacing:2549.394000px;}
.sc__c00452{text-shadow:none;}
.sc0_c00452{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00452{-webkit-text-stroke:0px transparent;}
.sc0_c00452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00452{word-spacing:0.000000px;}
._1_c00452{margin-left:-2.986200px;}
._0_c00452{width:3.709800px;}
.fc1_c00452{color:transparent;}
.fc0_c00452{color:rgb(0,0,0);}
.fs1_c00452{font-size:54.000000px;}
.fs0_c00452{font-size:72.000000px;}
.y0_c00452{bottom:0.000000px;}
.y8_c00452{bottom:3.787500px;}
.y6_c00452{bottom:52.073550px;}
.y7_c00452{bottom:56.735596px;}
.y5_c00452{bottom:66.603000px;}
.y1_c00452{bottom:105.897000px;}
.y4_c00452{bottom:590.104500px;}
.y3_c00452{bottom:605.103000px;}
.y2_c00452{bottom:621.603000px;}
.h4_c00452{height:19.800105px;}
.h3_c00452{height:48.410156px;}
.h2_c00452{height:65.003906px;}
.h5_c00452{height:72.421875px;}
.h1_c00452{height:1055.854500px;}
.h0_c00452{height:1263.000000px;}
.w3_c00452{width:30.033000px;}
.w1_c00452{width:637.350000px;}
.w2_c00452{width:658.159500px;}
.w0_c00452{width:892.500000px;}
.x0_c00452{left:0.000000px;}
.x3_c00452{left:4.953000px;}
.x2_c00452{left:122.547000px;}
.x1_c00452{left:127.575000px;}
.x4_c00452{left:444.729000px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls2_c00452{letter-spacing:0.000000pt;}
.ls0_c00452{letter-spacing:2266.112000pt;}
.ls1_c00452{letter-spacing:2266.128000pt;}
.ws0_c00452{word-spacing:0.000000pt;}
._1_c00452{margin-left:-2.654400pt;}
._0_c00452{width:3.297600pt;}
.fs1_c00452{font-size:48.000000pt;}
.fs0_c00452{font-size:64.000000pt;}
.y0_c00452{bottom:0.000000pt;}
.y8_c00452{bottom:3.366667pt;}
.y6_c00452{bottom:46.287600pt;}
.y7_c00452{bottom:50.431641pt;}
.y5_c00452{bottom:59.202667pt;}
.y1_c00452{bottom:94.130667pt;}
.y4_c00452{bottom:524.537333pt;}
.y3_c00452{bottom:537.869333pt;}
.y2_c00452{bottom:552.536000pt;}
.h4_c00452{height:17.600093pt;}
.h3_c00452{height:43.031250pt;}
.h2_c00452{height:57.781250pt;}
.h5_c00452{height:64.375000pt;}
.h1_c00452{height:938.537333pt;}
.h0_c00452{height:1122.666667pt;}
.w3_c00452{width:26.696000pt;}
.w1_c00452{width:566.533333pt;}
.w2_c00452{width:585.030667pt;}
.w0_c00452{width:793.333333pt;}
.x0_c00452{left:0.000000pt;}
.x3_c00452{left:4.402667pt;}
.x2_c00452{left:108.930667pt;}
.x1_c00452{left:113.400000pt;}
.x4_c00452{left:395.314667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00453;src:url('chunks/assets/font_708de8e79f020bdc699ac3bf.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00453;src:url('chunks/assets/font_21be95662bfb70c1fa03cd7e.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00453{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.ls1_c00453{letter-spacing:0.000000px;}
.ls0_c00453{letter-spacing:2549.394000px;}
.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:0.000000px;}
.fc1_c00453{color:transparent;}
.fc0_c00453{color:rgb(0,0,0);}
.fs0_c00453{font-size:54.000000px;}
.fs1_c00453{font-size:72.000000px;}
.y0_c00453{bottom:0.000000px;}
.y7_c00453{bottom:3.787500px;}
.y5_c00453{bottom:37.072800px;}
.y4_c00453{bottom:51.841500px;}
.y6_c00453{bottom:56.735596px;}
.y1_c00453{bottom:102.658500px;}
.y3_c00453{bottom:539.341500px;}
.y2_c00453{bottom:554.341500px;}
.h3_c00453{height:19.800105px;}
.h2_c00453{height:48.410156px;}
.h4_c00453{height:72.421875px;}
.h1_c00453{height:1057.837500px;}
.h0_c00453{height:1263.000000px;}
.w3_c00453{width:30.031500px;}
.w1_c00453{width:637.350000px;}
.w2_c00453{width:655.645500px;}
.w0_c00453{width:892.500000px;}
.x0_c00453{left:0.000000px;}
.x3_c00453{left:42.696000px;}
.x2_c00453{left:123.804000px;}
.x1_c00453{left:127.575000px;}
.x4_c00453{left:443.472000px;}
.x5_c00453{left:734.908997px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls1_c00453{letter-spacing:0.000000pt;}
.ls0_c00453{letter-spacing:2266.128000pt;}
.ws0_c00453{word-spacing:0.000000pt;}
.fs0_c00453{font-size:48.000000pt;}
.fs1_c00453{font-size:64.000000pt;}
.y0_c00453{bottom:0.000000pt;}
.y7_c00453{bottom:3.366667pt;}
.y5_c00453{bottom:32.953600pt;}
.y4_c00453{bottom:46.081333pt;}
.y6_c00453{bottom:50.431641pt;}
.y1_c00453{bottom:91.252000pt;}
.y3_c00453{bottom:479.414667pt;}
.y2_c00453{bottom:492.748000pt;}
.h3_c00453{height:17.600093pt;}
.h2_c00453{height:43.031250pt;}
.h4_c00453{height:64.375000pt;}
.h1_c00453{height:940.300000pt;}
.h0_c00453{height:1122.666667pt;}
.w3_c00453{width:26.694667pt;}
.w1_c00453{width:566.533333pt;}
.w2_c00453{width:582.796000pt;}
.w0_c00453{width:793.333333pt;}
.x0_c00453{left:0.000000pt;}
.x3_c00453{left:37.952000pt;}
.x2_c00453{left:110.048000pt;}
.x1_c00453{left:113.400000pt;}
.x4_c00453{left:394.197333pt;}
.x5_c00453{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00454;src:url('chunks/assets/font_3c176f56b49959a277e8abcc.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00454;src:url('chunks/assets/font_92c3097b088fb9275f4ef7f8.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00454{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00454{vertical-align:0.000000px;}
.ls2_c00454{letter-spacing:-0.010800px;}
.ls1_c00454{letter-spacing:0.000000px;}
.ls0_c00454{letter-spacing:2549.394000px;}
.sc__c00454{text-shadow:none;}
.sc0_c00454{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00454{-webkit-text-stroke:0px transparent;}
.sc0_c00454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00454{word-spacing:0.000000px;}
._0_c00454{width:2.862000px;}
._2_c00454{width:6.474600px;}
._1_c00454{width:9.455400px;}
.fc1_c00454{color:transparent;}
.fc0_c00454{color:rgb(0,0,0);}
.fs0_c00454{font-size:54.000000px;}
.fs1_c00454{font-size:72.000000px;}
.y0_c00454{bottom:0.000000px;}
.ya_c00454{bottom:3.787500px;}
.y8_c00454{bottom:7.726500px;}
.y7_c00454{bottom:22.725000px;}
.y6_c00454{bottom:37.596000px;}
.y9_c00454{bottom:56.735596px;}
.y3_c00454{bottom:106.275000px;}
.y1_c00454{bottom:106.404000px;}
.y5_c00454{bottom:559.726500px;}
.y4_c00454{bottom:574.725000px;}
.y2_c00454{bottom:589.596000px;}
.h4_c00454{height:19.800105px;}
.h2_c00454{height:48.410156px;}
.h5_c00454{height:72.421875px;}
.h1_c00454{height:1054.090500px;}
.h3_c00454{height:1054.221000px;}
.h0_c00454{height:1263.000000px;}
.w3_c00454{width:30.033000px;}
.w1_c00454{width:637.350000px;}
.w2_c00454{width:655.645500px;}
.w0_c00454{width:892.500000px;}
.x0_c00454{left:0.000000px;}
.x3_c00454{left:3.696000px;}
.x2_c00454{left:123.804000px;}
.x1_c00454{left:127.575000px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls2_c00454{letter-spacing:-0.009600pt;}
.ls1_c00454{letter-spacing:0.000000pt;}
.ls0_c00454{letter-spacing:2266.128000pt;}
.ws0_c00454{word-spacing:0.000000pt;}
._0_c00454{width:2.544000pt;}
._2_c00454{width:5.755200pt;}
._1_c00454{width:8.404800pt;}
.fs0_c00454{font-size:48.000000pt;}
.fs1_c00454{font-size:64.000000pt;}
.y0_c00454{bottom:0.000000pt;}
.ya_c00454{bottom:3.366667pt;}
.y8_c00454{bottom:6.868000pt;}
.y7_c00454{bottom:20.200000pt;}
.y6_c00454{bottom:33.418667pt;}
.y9_c00454{bottom:50.431641pt;}
.y3_c00454{bottom:94.466667pt;}
.y1_c00454{bottom:94.581333pt;}
.y5_c00454{bottom:497.534667pt;}
.y4_c00454{bottom:510.866667pt;}
.y2_c00454{bottom:524.085333pt;}
.h4_c00454{height:17.600093pt;}
.h2_c00454{height:43.031250pt;}
.h5_c00454{height:64.375000pt;}
.h1_c00454{height:936.969333pt;}
.h3_c00454{height:937.085333pt;}
.h0_c00454{height:1122.666667pt;}
.w3_c00454{width:26.696000pt;}
.w1_c00454{width:566.533333pt;}
.w2_c00454{width:582.796000pt;}
.w0_c00454{width:793.333333pt;}
.x0_c00454{left:0.000000pt;}
.x3_c00454{left:3.285333pt;}
.x2_c00454{left:110.048000pt;}
.x1_c00454{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00455;src:url('chunks/assets/font_9db1b05eb360d763d8ddf4f3.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00455;src:url('chunks/assets/font_6ec6450c2414c1b978f07e76.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:1.330566;font-style: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;}
.ls1_c00455{letter-spacing:0.000000px;}
.ls0_c00455{letter-spacing:2549.394000px;}
.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:0.000000px;}
.fc1_c00455{color:transparent;}
.fc0_c00455{color:rgb(0,0,0);}
.fs0_c00455{font-size:54.000000px;}
.fs1_c00455{font-size:72.000000px;}
.y0_c00455{bottom:0.000000px;}
.y6_c00455{bottom:3.787500px;}
.y5_c00455{bottom:56.735596px;}
.y4_c00455{bottom:72.632700px;}
.y2_c00455{bottom:86.775000px;}
.y3_c00455{bottom:106.275000px;}
.y1_c00455{bottom:106.725000px;}
.h4_c00455{height:19.800105px;}
.h2_c00455{height:48.410156px;}
.h5_c00455{height:72.421875px;}
.h1_c00455{height:1053.771000px;}
.h3_c00455{height:1054.221000px;}
.h0_c00455{height:1263.000000px;}
.w3_c00455{width:30.031500px;}
.w1_c00455{width:637.350000px;}
.w2_c00455{width:655.645500px;}
.w0_c00455{width:892.500000px;}
.x0_c00455{left:0.000000px;}
.x2_c00455{left:123.804000px;}
.x1_c00455{left:127.575000px;}
.x3_c00455{left:443.472000px;}
.x4_c00455{left:734.908997px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls1_c00455{letter-spacing:0.000000pt;}
.ls0_c00455{letter-spacing:2266.128000pt;}
.ws0_c00455{word-spacing:0.000000pt;}
.fs0_c00455{font-size:48.000000pt;}
.fs1_c00455{font-size:64.000000pt;}
.y0_c00455{bottom:0.000000pt;}
.y6_c00455{bottom:3.366667pt;}
.y5_c00455{bottom:50.431641pt;}
.y4_c00455{bottom:64.562400pt;}
.y2_c00455{bottom:77.133333pt;}
.y3_c00455{bottom:94.466667pt;}
.y1_c00455{bottom:94.866667pt;}
.h4_c00455{height:17.600093pt;}
.h2_c00455{height:43.031250pt;}
.h5_c00455{height:64.375000pt;}
.h1_c00455{height:936.685333pt;}
.h3_c00455{height:937.085333pt;}
.h0_c00455{height:1122.666667pt;}
.w3_c00455{width:26.694667pt;}
.w1_c00455{width:566.533333pt;}
.w2_c00455{width:582.796000pt;}
.w0_c00455{width:793.333333pt;}
.x0_c00455{left:0.000000pt;}
.x2_c00455{left:110.048000pt;}
.x1_c00455{left:113.400000pt;}
.x3_c00455{left:394.197333pt;}
.x4_c00455{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00456;src:url('chunks/assets/font_8256f5430cff2847e9ad5f01.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00456;src:url('chunks/assets/font_780a5c480820a13d3b3211b7.woff2')format("woff");}.ff3_c00456{font-family:ff3_c00456;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00456{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.ls1_c00456{letter-spacing:0.000000px;}
.ls0_c00456{letter-spacing:2549.394000px;}
.sc__c00456{text-shadow:none;}
.sc0_c00456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00456{-webkit-text-stroke:0px transparent;}
.sc0_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00456{word-spacing:0.000000px;}
.fc1_c00456{color:transparent;}
.fc0_c00456{color:rgb(0,0,0);}
.fs0_c00456{font-size:54.000000px;}
.fs1_c00456{font-size:72.000000px;}
.y0_c00456{bottom:0.000000px;}
.y5_c00456{bottom:3.787500px;}
.y3_c00456{bottom:50.782500px;}
.y4_c00456{bottom:56.735596px;}
.y2_c00456{bottom:65.782500px;}
.y1_c00456{bottom:97.717500px;}
.h3_c00456{height:19.800105px;}
.h2_c00456{height:48.410156px;}
.h4_c00456{height:72.421875px;}
.h1_c00456{height:1062.777000px;}
.h0_c00456{height:1263.000000px;}
.w3_c00456{width:30.033000px;}
.w1_c00456{width:637.350000px;}
.w2_c00456{width:655.645500px;}
.w0_c00456{width:892.500000px;}
.x0_c00456{left:0.000000px;}
.x3_c00456{left:86.196000px;}
.x2_c00456{left:123.804000px;}
.x1_c00456{left:127.575000px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls1_c00456{letter-spacing:0.000000pt;}
.ls0_c00456{letter-spacing:2266.128000pt;}
.ws0_c00456{word-spacing:0.000000pt;}
.fs0_c00456{font-size:48.000000pt;}
.fs1_c00456{font-size:64.000000pt;}
.y0_c00456{bottom:0.000000pt;}
.y5_c00456{bottom:3.366667pt;}
.y3_c00456{bottom:45.140000pt;}
.y4_c00456{bottom:50.431641pt;}
.y2_c00456{bottom:58.473333pt;}
.y1_c00456{bottom:86.860000pt;}
.h3_c00456{height:17.600093pt;}
.h2_c00456{height:43.031250pt;}
.h4_c00456{height:64.375000pt;}
.h1_c00456{height:944.690667pt;}
.h0_c00456{height:1122.666667pt;}
.w3_c00456{width:26.696000pt;}
.w1_c00456{width:566.533333pt;}
.w2_c00456{width:582.796000pt;}
.w0_c00456{width:793.333333pt;}
.x0_c00456{left:0.000000pt;}
.x3_c00456{left:76.618667pt;}
.x2_c00456{left:110.048000pt;}
.x1_c00456{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00457;src:url('chunks/assets/font_9db1b05eb360d763d8ddf4f3.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00457;src:url('chunks/assets/font_a726f8a901aac1f3c719a79a.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;line-height:1.330566;font-style: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;}
.ls1_c00457{letter-spacing:0.000000px;}
.ls0_c00457{letter-spacing:2549.394000px;}
.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:0.000000px;}
.fc1_c00457{color:transparent;}
.fc0_c00457{color:rgb(0,0,0);}
.fs0_c00457{font-size:54.000000px;}
.fs1_c00457{font-size:72.000000px;}
.y0_c00457{bottom:0.000000px;}
.y6_c00457{bottom:3.787500px;}
.y4_c00457{bottom:7.430100px;}
.y2_c00457{bottom:22.596000px;}
.y5_c00457{bottom:56.735596px;}
.y3_c00457{bottom:106.275000px;}
.y1_c00457{bottom:106.404000px;}
.h4_c00457{height:19.800105px;}
.h2_c00457{height:48.410156px;}
.h5_c00457{height:72.421875px;}
.h1_c00457{height:1054.090500px;}
.h3_c00457{height:1054.221000px;}
.h0_c00457{height:1263.000000px;}
.w3_c00457{width:30.031500px;}
.w1_c00457{width:637.350000px;}
.w2_c00457{width:655.645500px;}
.w0_c00457{width:892.500000px;}
.x0_c00457{left:0.000000px;}
.x2_c00457{left:123.804000px;}
.x1_c00457{left:127.575000px;}
.x3_c00457{left:451.975950px;}
.x4_c00457{left:734.908997px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls1_c00457{letter-spacing:0.000000pt;}
.ls0_c00457{letter-spacing:2266.128000pt;}
.ws0_c00457{word-spacing:0.000000pt;}
.fs0_c00457{font-size:48.000000pt;}
.fs1_c00457{font-size:64.000000pt;}
.y0_c00457{bottom:0.000000pt;}
.y6_c00457{bottom:3.366667pt;}
.y4_c00457{bottom:6.604533pt;}
.y2_c00457{bottom:20.085333pt;}
.y5_c00457{bottom:50.431641pt;}
.y3_c00457{bottom:94.466667pt;}
.y1_c00457{bottom:94.581333pt;}
.h4_c00457{height:17.600093pt;}
.h2_c00457{height:43.031250pt;}
.h5_c00457{height:64.375000pt;}
.h1_c00457{height:936.969333pt;}
.h3_c00457{height:937.085333pt;}
.h0_c00457{height:1122.666667pt;}
.w3_c00457{width:26.694667pt;}
.w1_c00457{width:566.533333pt;}
.w2_c00457{width:582.796000pt;}
.w0_c00457{width:793.333333pt;}
.x0_c00457{left:0.000000pt;}
.x2_c00457{left:110.048000pt;}
.x1_c00457{left:113.400000pt;}
.x3_c00457{left:401.756400pt;}
.x4_c00457{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00458;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00458;src:url('chunks/assets/font_c023623cd695e3b53dd43f39.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00458;src:url('chunks/assets/font_c4fdc3fe33a2e422312d53f3.woff2')format("woff");}.ff4_c00458{font-family:ff4_c00458;line-height:1.330566;font-style: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;}
.ls1_c00458{letter-spacing:0.000000px;}
.ls0_c00458{letter-spacing:2549.376000px;}
.sc__c00458{text-shadow:none;}
.sc0_c00458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00458{-webkit-text-stroke:0px transparent;}
.sc0_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00458{word-spacing:0.000000px;}
._0_c00458{width:13.224600px;}
.fc1_c00458{color:transparent;}
.fc0_c00458{color:rgb(0,0,0);}
.fs1_c00458{font-size:54.000000px;}
.fs0_c00458{font-size:72.000000px;}
.y0_c00458{bottom:0.000000px;}
.y6_c00458{bottom:3.787500px;}
.y4_c00458{bottom:50.052000px;}
.y5_c00458{bottom:56.735596px;}
.y3_c00458{bottom:65.050500px;}
.y2_c00458{bottom:81.550500px;}
.y1_c00458{bottom:105.949500px;}
.h4_c00458{height:19.800105px;}
.h3_c00458{height:48.410156px;}
.h2_c00458{height:65.003906px;}
.h5_c00458{height:72.421875px;}
.h1_c00458{height:1054.546500px;}
.h0_c00458{height:1263.000000px;}
.w3_c00458{width:30.033000px;}
.w1_c00458{width:637.350000px;}
.w2_c00458{width:658.159500px;}
.w0_c00458{width:892.500000px;}
.x0_c00458{left:0.000000px;}
.x3_c00458{left:4.953000px;}
.x2_c00458{left:122.547000px;}
.x1_c00458{left:127.575000px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls1_c00458{letter-spacing:0.000000pt;}
.ls0_c00458{letter-spacing:2266.112000pt;}
.ws0_c00458{word-spacing:0.000000pt;}
._0_c00458{width:11.755200pt;}
.fs1_c00458{font-size:48.000000pt;}
.fs0_c00458{font-size:64.000000pt;}
.y0_c00458{bottom:0.000000pt;}
.y6_c00458{bottom:3.366667pt;}
.y4_c00458{bottom:44.490667pt;}
.y5_c00458{bottom:50.431641pt;}
.y3_c00458{bottom:57.822667pt;}
.y2_c00458{bottom:72.489333pt;}
.y1_c00458{bottom:94.177333pt;}
.h4_c00458{height:17.600093pt;}
.h3_c00458{height:43.031250pt;}
.h2_c00458{height:57.781250pt;}
.h5_c00458{height:64.375000pt;}
.h1_c00458{height:937.374667pt;}
.h0_c00458{height:1122.666667pt;}
.w3_c00458{width:26.696000pt;}
.w1_c00458{width:566.533333pt;}
.w2_c00458{width:585.030667pt;}
.w0_c00458{width:793.333333pt;}
.x0_c00458{left:0.000000pt;}
.x3_c00458{left:4.402667pt;}
.x2_c00458{left:108.930667pt;}
.x1_c00458{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00459;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00459;src:url('chunks/assets/font_9db1b05eb360d763d8ddf4f3.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00459;src:url('chunks/assets/font_1ec5f0441c314458361d6012.woff2')format("woff");}.ff4_c00459{font-family:ff4_c00459;line-height:1.330566;font-style: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;}
.ls1_c00459{letter-spacing:0.000000px;}
.ls0_c00459{letter-spacing:2549.376000px;}
.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:0.000000px;}
.fc1_c00459{color:transparent;}
.fc0_c00459{color:rgb(0,0,0);}
.fs1_c00459{font-size:54.000000px;}
.fs0_c00459{font-size:72.000000px;}
.y0_c00459{bottom:0.000000px;}
.y5_c00459{bottom:3.787500px;}
.y3_c00459{bottom:50.330250px;}
.y4_c00459{bottom:56.735596px;}
.y2_c00459{bottom:66.783000px;}
.y1_c00459{bottom:104.217000px;}
.h3_c00459{height:19.800105px;}
.h2_c00459{height:65.003906px;}
.h4_c00459{height:72.421875px;}
.h1_c00459{height:1057.534500px;}
.h0_c00459{height:1263.000000px;}
.w3_c00459{width:30.031500px;}
.w1_c00459{width:637.350000px;}
.w2_c00459{width:658.159500px;}
.w0_c00459{width:892.500000px;}
.x0_c00459{left:0.000000px;}
.x2_c00459{left:122.547000px;}
.x1_c00459{left:127.575000px;}
.x3_c00459{left:444.729000px;}
.x4_c00459{left:734.908997px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls1_c00459{letter-spacing:0.000000pt;}
.ls0_c00459{letter-spacing:2266.112000pt;}
.ws0_c00459{word-spacing:0.000000pt;}
.fs1_c00459{font-size:48.000000pt;}
.fs0_c00459{font-size:64.000000pt;}
.y0_c00459{bottom:0.000000pt;}
.y5_c00459{bottom:3.366667pt;}
.y3_c00459{bottom:44.738000pt;}
.y4_c00459{bottom:50.431641pt;}
.y2_c00459{bottom:59.362667pt;}
.y1_c00459{bottom:92.637333pt;}
.h3_c00459{height:17.600093pt;}
.h2_c00459{height:57.781250pt;}
.h4_c00459{height:64.375000pt;}
.h1_c00459{height:940.030667pt;}
.h0_c00459{height:1122.666667pt;}
.w3_c00459{width:26.694667pt;}
.w1_c00459{width:566.533333pt;}
.w2_c00459{width:585.030667pt;}
.w0_c00459{width:793.333333pt;}
.x0_c00459{left:0.000000pt;}
.x2_c00459{left:108.930667pt;}
.x1_c00459{left:113.400000pt;}
.x3_c00459{left:395.314667pt;}
.x4_c00459{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00460;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00460;src:url('chunks/assets/font_9dcd8bc1b6878b4067ed7ddf.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00460;src:url('chunks/assets/font_0ca489dda3560fb78413d7db.woff2')format("woff");}.ff4_c00460{font-family:ff4_c00460;line-height:1.330566;font-style: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;}
.ls1_c00460{letter-spacing:0.000000px;}
.ls0_c00460{letter-spacing:2549.376000px;}
.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:0.000000px;}
.fc1_c00460{color:transparent;}
.fc0_c00460{color:rgb(0,0,0);}
.fs1_c00460{font-size:54.000000px;}
.fs0_c00460{font-size:72.000000px;}
.y0_c00460{bottom:0.000000px;}
.y6_c00460{bottom:3.787500px;}
.y4_c00460{bottom:39.225000px;}
.y2_c00460{bottom:55.275000px;}
.y5_c00460{bottom:56.735596px;}
.y3_c00460{bottom:106.275000px;}
.y1_c00460{bottom:106.725000px;}
.h5_c00460{height:19.800105px;}
.h4_c00460{height:48.410156px;}
.h2_c00460{height:65.003906px;}
.h6_c00460{height:72.421875px;}
.h1_c00460{height:1055.028000px;}
.h3_c00460{height:1055.478000px;}
.h0_c00460{height:1263.000000px;}
.w3_c00460{width:30.033000px;}
.w1_c00460{width:637.350000px;}
.w2_c00460{width:658.159500px;}
.w0_c00460{width:892.500000px;}
.x0_c00460{left:0.000000px;}
.x3_c00460{left:9.453000px;}
.x2_c00460{left:122.547000px;}
.x1_c00460{left:127.575000px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls1_c00460{letter-spacing:0.000000pt;}
.ls0_c00460{letter-spacing:2266.112000pt;}
.ws0_c00460{word-spacing:0.000000pt;}
.fs1_c00460{font-size:48.000000pt;}
.fs0_c00460{font-size:64.000000pt;}
.y0_c00460{bottom:0.000000pt;}
.y6_c00460{bottom:3.366667pt;}
.y4_c00460{bottom:34.866667pt;}
.y2_c00460{bottom:49.133333pt;}
.y5_c00460{bottom:50.431641pt;}
.y3_c00460{bottom:94.466667pt;}
.y1_c00460{bottom:94.866667pt;}
.h5_c00460{height:17.600093pt;}
.h4_c00460{height:43.031250pt;}
.h2_c00460{height:57.781250pt;}
.h6_c00460{height:64.375000pt;}
.h1_c00460{height:937.802667pt;}
.h3_c00460{height:938.202667pt;}
.h0_c00460{height:1122.666667pt;}
.w3_c00460{width:26.696000pt;}
.w1_c00460{width:566.533333pt;}
.w2_c00460{width:585.030667pt;}
.w0_c00460{width:793.333333pt;}
.x0_c00460{left:0.000000pt;}
.x3_c00460{left:8.402667pt;}
.x2_c00460{left:108.930667pt;}
.x1_c00460{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00461;src:url('chunks/assets/font_1851e6fa52d426c9afc84f83.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00461;src:url('chunks/assets/font_a6856ad9bce05e3854991ee4.woff2')format("woff");}.ff3_c00461{font-family:ff3_c00461;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00461{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.ls1_c00461{letter-spacing:0.000000px;}
.ls0_c00461{letter-spacing:2549.394000px;}
.sc__c00461{text-shadow:none;}
.sc0_c00461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00461{-webkit-text-stroke:0px transparent;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00461{word-spacing:0.000000px;}
._0_c00461{width:11.388600px;}
.fc1_c00461{color:transparent;}
.fc0_c00461{color:rgb(0,0,0);}
.fs0_c00461{font-size:54.000000px;}
.fs1_c00461{font-size:72.000000px;}
.y0_c00461{bottom:0.000000px;}
.y6_c00461{bottom:3.787500px;}
.y5_c00461{bottom:56.735596px;}
.y4_c00461{bottom:64.744500px;}
.y3_c00461{bottom:79.743000px;}
.y2_c00461{bottom:94.743000px;}
.y1_c00461{bottom:103.257000px;}
.h3_c00461{height:19.800105px;}
.h2_c00461{height:48.410156px;}
.h4_c00461{height:72.421875px;}
.h1_c00461{height:1057.239000px;}
.h0_c00461{height:1263.000000px;}
.w3_c00461{width:30.031500px;}
.w1_c00461{width:637.350000px;}
.w2_c00461{width:656.902500px;}
.w0_c00461{width:892.500000px;}
.x0_c00461{left:0.000000px;}
.x3_c00461{left:4.953000px;}
.x2_c00461{left:122.547000px;}
.x1_c00461{left:127.575000px;}
.x4_c00461{left:734.908997px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls1_c00461{letter-spacing:0.000000pt;}
.ls0_c00461{letter-spacing:2266.128000pt;}
.ws0_c00461{word-spacing:0.000000pt;}
._0_c00461{width:10.123200pt;}
.fs0_c00461{font-size:48.000000pt;}
.fs1_c00461{font-size:64.000000pt;}
.y0_c00461{bottom:0.000000pt;}
.y6_c00461{bottom:3.366667pt;}
.y5_c00461{bottom:50.431641pt;}
.y4_c00461{bottom:57.550667pt;}
.y3_c00461{bottom:70.882667pt;}
.y2_c00461{bottom:84.216000pt;}
.y1_c00461{bottom:91.784000pt;}
.h3_c00461{height:17.600093pt;}
.h2_c00461{height:43.031250pt;}
.h4_c00461{height:64.375000pt;}
.h1_c00461{height:939.768000pt;}
.h0_c00461{height:1122.666667pt;}
.w3_c00461{width:26.694667pt;}
.w1_c00461{width:566.533333pt;}
.w2_c00461{width:583.913333pt;}
.w0_c00461{width:793.333333pt;}
.x0_c00461{left:0.000000pt;}
.x3_c00461{left:4.402667pt;}
.x2_c00461{left:108.930667pt;}
.x1_c00461{left:113.400000pt;}
.x4_c00461{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00462;src:url('chunks/assets/font_1851e6fa52d426c9afc84f83.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00462;src:url('chunks/assets/font_3dbcbd259fd5eb442f5fc59d.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;line-height:1.330566;font-style: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;}
.ls1_c00462{letter-spacing:0.000000px;}
.ls0_c00462{letter-spacing:2549.376000px;}
.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:0.000000px;}
._0_c00462{width:11.388600px;}
.fc1_c00462{color:transparent;}
.fc0_c00462{color:rgb(0,0,0);}
.fs1_c00462{font-size:54.000000px;}
.fs0_c00462{font-size:72.000000px;}
.y0_c00462{bottom:0.000000px;}
.y8_c00462{bottom:3.787500px;}
.y6_c00462{bottom:7.726500px;}
.y5_c00462{bottom:22.725000px;}
.y4_c00462{bottom:37.596000px;}
.y7_c00462{bottom:56.735596px;}
.y1_c00462{bottom:106.275000px;}
.y3_c00462{bottom:106.404000px;}
.y2_c00462{bottom:277.725000px;}
.h6_c00462{height:19.800105px;}
.h2_c00462{height:47.988281px;}
.h5_c00462{height:48.410156px;}
.h4_c00462{height:64.546875px;}
.h7_c00462{height:72.421875px;}
.h3_c00462{height:1055.347500px;}
.h1_c00462{height:1055.478000px;}
.h0_c00462{height:1263.000000px;}
.w3_c00462{width:30.033000px;}
.w2_c00462{width:637.350000px;}
.w1_c00462{width:658.159500px;}
.w0_c00462{width:892.500000px;}
.x0_c00462{left:0.000000px;}
.x2_c00462{left:4.953000px;}
.x1_c00462{left:122.547000px;}
.x3_c00462{left:127.575000px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls1_c00462{letter-spacing:0.000000pt;}
.ls0_c00462{letter-spacing:2266.112000pt;}
.ws0_c00462{word-spacing:0.000000pt;}
._0_c00462{width:10.123200pt;}
.fs1_c00462{font-size:48.000000pt;}
.fs0_c00462{font-size:64.000000pt;}
.y0_c00462{bottom:0.000000pt;}
.y8_c00462{bottom:3.366667pt;}
.y6_c00462{bottom:6.868000pt;}
.y5_c00462{bottom:20.200000pt;}
.y4_c00462{bottom:33.418667pt;}
.y7_c00462{bottom:50.431641pt;}
.y1_c00462{bottom:94.466667pt;}
.y3_c00462{bottom:94.581333pt;}
.y2_c00462{bottom:246.866667pt;}
.h6_c00462{height:17.600093pt;}
.h2_c00462{height:42.656250pt;}
.h5_c00462{height:43.031250pt;}
.h4_c00462{height:57.375000pt;}
.h7_c00462{height:64.375000pt;}
.h3_c00462{height:938.086667pt;}
.h1_c00462{height:938.202667pt;}
.h0_c00462{height:1122.666667pt;}
.w3_c00462{width:26.696000pt;}
.w2_c00462{width:566.533333pt;}
.w1_c00462{width:585.030667pt;}
.w0_c00462{width:793.333333pt;}
.x0_c00462{left:0.000000pt;}
.x2_c00462{left:4.402667pt;}
.x1_c00462{left:108.930667pt;}
.x3_c00462{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00463;src:url('chunks/assets/font_4fa9823315c8c37456909abc.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00463;src:url('chunks/assets/font_c5acd0b781772b134e51f159.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.ls1_c00463{letter-spacing:0.000000px;}
.ls0_c00463{letter-spacing:2549.376000px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00463{word-spacing:0.000000px;}
._1_c00463{margin-left:-2.986200px;}
._0_c00463{width:6.080400px;}
.fc1_c00463{color:transparent;}
.fc0_c00463{color:rgb(0,0,0);}
.fs1_c00463{font-size:54.000000px;}
.fs0_c00463{font-size:72.000000px;}
.y0_c00463{bottom:0.000000px;}
.y7_c00463{bottom:3.787500px;}
.y5_c00463{bottom:12.226500px;}
.y4_c00463{bottom:27.225000px;}
.y2_c00463{bottom:43.275000px;}
.y6_c00463{bottom:56.735596px;}
.y3_c00463{bottom:106.275000px;}
.y1_c00463{bottom:106.725000px;}
.h5_c00463{height:19.800105px;}
.h4_c00463{height:48.410156px;}
.h2_c00463{height:64.546875px;}
.h6_c00463{height:72.421875px;}
.h1_c00463{height:1055.028000px;}
.h3_c00463{height:1055.478000px;}
.h0_c00463{height:1263.000000px;}
.w3_c00463{width:30.031500px;}
.w1_c00463{width:637.350000px;}
.w2_c00463{width:658.159500px;}
.w0_c00463{width:892.500000px;}
.x0_c00463{left:0.000000px;}
.x3_c00463{left:4.953000px;}
.x2_c00463{left:122.547000px;}
.x1_c00463{left:127.575000px;}
.x4_c00463{left:734.908997px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls1_c00463{letter-spacing:0.000000pt;}
.ls0_c00463{letter-spacing:2266.112000pt;}
.ws0_c00463{word-spacing:0.000000pt;}
._1_c00463{margin-left:-2.654400pt;}
._0_c00463{width:5.404800pt;}
.fs1_c00463{font-size:48.000000pt;}
.fs0_c00463{font-size:64.000000pt;}
.y0_c00463{bottom:0.000000pt;}
.y7_c00463{bottom:3.366667pt;}
.y5_c00463{bottom:10.868000pt;}
.y4_c00463{bottom:24.200000pt;}
.y2_c00463{bottom:38.466667pt;}
.y6_c00463{bottom:50.431641pt;}
.y3_c00463{bottom:94.466667pt;}
.y1_c00463{bottom:94.866667pt;}
.h5_c00463{height:17.600093pt;}
.h4_c00463{height:43.031250pt;}
.h2_c00463{height:57.375000pt;}
.h6_c00463{height:64.375000pt;}
.h1_c00463{height:937.802667pt;}
.h3_c00463{height:938.202667pt;}
.h0_c00463{height:1122.666667pt;}
.w3_c00463{width:26.694667pt;}
.w1_c00463{width:566.533333pt;}
.w2_c00463{width:585.030667pt;}
.w0_c00463{width:793.333333pt;}
.x0_c00463{left:0.000000pt;}
.x3_c00463{left:4.402667pt;}
.x2_c00463{left:108.930667pt;}
.x1_c00463{left:113.400000pt;}
.x4_c00463{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00464;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00464;src:url('chunks/assets/font_56d8566bf954dfd622103515.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00464;src:url('chunks/assets/font_a868ef05932a1673e55c2b52.woff2')format("woff");}.ff4_c00464{font-family:ff4_c00464;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00464{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.ls3_c00464{letter-spacing:-0.010800px;}
.ls2_c00464{letter-spacing:0.000000px;}
.ls0_c00464{letter-spacing:2549.376000px;}
.ls1_c00464{letter-spacing:2549.394000px;}
.sc__c00464{text-shadow:none;}
.sc0_c00464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00464{-webkit-text-stroke:0px transparent;}
.sc0_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00464{word-spacing:0.000000px;}
._1_c00464{margin-left:-2.986200px;}
._2_c00464{width:1.139400px;}
._0_c00464{width:16.075800px;}
.fc1_c00464{color:transparent;}
.fc0_c00464{color:rgb(0,0,0);}
.fs1_c00464{font-size:54.000000px;}
.fs0_c00464{font-size:72.000000px;}
.y0_c00464{bottom:0.000000px;}
.y9_c00464{bottom:3.787500px;}
.y7_c00464{bottom:7.597500px;}
.y6_c00464{bottom:22.596000px;}
.y5_c00464{bottom:37.596000px;}
.y8_c00464{bottom:56.735596px;}
.y1_c00464{bottom:104.904000px;}
.y4_c00464{bottom:567.097500px;}
.y3_c00464{bottom:582.096000px;}
.y2_c00464{bottom:598.596000px;}
.h4_c00464{height:19.800105px;}
.h3_c00464{height:48.410156px;}
.h2_c00464{height:65.003906px;}
.h5_c00464{height:72.421875px;}
.h1_c00464{height:1056.847500px;}
.h0_c00464{height:1263.000000px;}
.w3_c00464{width:30.033000px;}
.w1_c00464{width:637.350000px;}
.w2_c00464{width:658.159500px;}
.w0_c00464{width:892.500000px;}
.x0_c00464{left:0.000000px;}
.x3_c00464{left:4.953000px;}
.x2_c00464{left:122.547000px;}
.x1_c00464{left:127.575000px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls3_c00464{letter-spacing:-0.009600pt;}
.ls2_c00464{letter-spacing:0.000000pt;}
.ls0_c00464{letter-spacing:2266.112000pt;}
.ls1_c00464{letter-spacing:2266.128000pt;}
.ws0_c00464{word-spacing:0.000000pt;}
._1_c00464{margin-left:-2.654400pt;}
._2_c00464{width:1.012800pt;}
._0_c00464{width:14.289600pt;}
.fs1_c00464{font-size:48.000000pt;}
.fs0_c00464{font-size:64.000000pt;}
.y0_c00464{bottom:0.000000pt;}
.y9_c00464{bottom:3.366667pt;}
.y7_c00464{bottom:6.753333pt;}
.y6_c00464{bottom:20.085333pt;}
.y5_c00464{bottom:33.418667pt;}
.y8_c00464{bottom:50.431641pt;}
.y1_c00464{bottom:93.248000pt;}
.y4_c00464{bottom:504.086667pt;}
.y3_c00464{bottom:517.418667pt;}
.y2_c00464{bottom:532.085333pt;}
.h4_c00464{height:17.600093pt;}
.h3_c00464{height:43.031250pt;}
.h2_c00464{height:57.781250pt;}
.h5_c00464{height:64.375000pt;}
.h1_c00464{height:939.420000pt;}
.h0_c00464{height:1122.666667pt;}
.w3_c00464{width:26.696000pt;}
.w1_c00464{width:566.533333pt;}
.w2_c00464{width:585.030667pt;}
.w0_c00464{width:793.333333pt;}
.x0_c00464{left:0.000000pt;}
.x3_c00464{left:4.402667pt;}
.x2_c00464{left:108.930667pt;}
.x1_c00464{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00465;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00465;src:url('chunks/assets/font_029e98e845a0b055abcfdac1.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00465;src:url('chunks/assets/font_f16509e5ca906d97f7c7d4f8.woff2')format("woff");}.ff4_c00465{font-family:ff4_c00465;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.ls1_c00465{letter-spacing:0.000000px;}
.ls0_c00465{letter-spacing:2549.400000px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00465{word-spacing:0.000000px;}
._2_c00465{margin-left:-5.994000px;}
._0_c00465{width:2.370600px;}
._1_c00465{width:12.803400px;}
.fc1_c00465{color:transparent;}
.fc0_c00465{color:rgb(0,0,0);}
.fs0_c00465{font-size:54.000000px;}
.fs1_c00465{font-size:72.000000px;}
.y0_c00465{bottom:0.000000px;}
.y9_c00465{bottom:3.787500px;}
.y7_c00465{bottom:51.691500px;}
.y8_c00465{bottom:56.735596px;}
.y6_c00465{bottom:66.691500px;}
.y1_c00465{bottom:104.308500px;}
.y5_c00465{bottom:575.194500px;}
.y4_c00465{bottom:590.193000px;}
.y3_c00465{bottom:605.191500px;}
.y2_c00465{bottom:620.191500px;}
.h4_c00465{height:19.800105px;}
.h3_c00465{height:48.410156px;}
.h2_c00465{height:65.003906px;}
.h5_c00465{height:72.421875px;}
.h1_c00465{height:1056.186000px;}
.h0_c00465{height:1263.000000px;}
.w3_c00465{width:30.031500px;}
.w1_c00465{width:637.350000px;}
.w2_c00465{width:655.645500px;}
.w0_c00465{width:892.500000px;}
.x0_c00465{left:0.000000px;}
.x3_c00465{left:3.696000px;}
.x4_c00465{left:99.696000px;}
.x2_c00465{left:123.804000px;}
.x1_c00465{left:127.575000px;}
.x5_c00465{left:734.908997px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls1_c00465{letter-spacing:0.000000pt;}
.ls0_c00465{letter-spacing:2266.133333pt;}
.ws0_c00465{word-spacing:0.000000pt;}
._2_c00465{margin-left:-5.328000pt;}
._0_c00465{width:2.107200pt;}
._1_c00465{width:11.380800pt;}
.fs0_c00465{font-size:48.000000pt;}
.fs1_c00465{font-size:64.000000pt;}
.y0_c00465{bottom:0.000000pt;}
.y9_c00465{bottom:3.366667pt;}
.y7_c00465{bottom:45.948000pt;}
.y8_c00465{bottom:50.431641pt;}
.y6_c00465{bottom:59.281333pt;}
.y1_c00465{bottom:92.718667pt;}
.y5_c00465{bottom:511.284000pt;}
.y4_c00465{bottom:524.616000pt;}
.y3_c00465{bottom:537.948000pt;}
.y2_c00465{bottom:551.281333pt;}
.h4_c00465{height:17.600093pt;}
.h3_c00465{height:43.031250pt;}
.h2_c00465{height:57.781250pt;}
.h5_c00465{height:64.375000pt;}
.h1_c00465{height:938.832000pt;}
.h0_c00465{height:1122.666667pt;}
.w3_c00465{width:26.694667pt;}
.w1_c00465{width:566.533333pt;}
.w2_c00465{width:582.796000pt;}
.w0_c00465{width:793.333333pt;}
.x0_c00465{left:0.000000pt;}
.x3_c00465{left:3.285333pt;}
.x4_c00465{left:88.618667pt;}
.x2_c00465{left:110.048000pt;}
.x1_c00465{left:113.400000pt;}
.x5_c00465{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00466;src:url('chunks/assets/font_9db1b05eb360d763d8ddf4f3.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00466;src:url('chunks/assets/font_a2a5398a4f04426b34562361.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:1.330566;font-style: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;}
}
.ws0_c00466{word-spacing:0.000000px;}
.fc1_c00466{color:transparent;}
.fc0_c00466{color:rgb(0,0,0);}
.fs0_c00466{font-size:54.000000px;}
.fs1_c00466{font-size:72.000000px;}
.y0_c00466{bottom:0.000000px;}
.y5_c00466{bottom:3.787500px;}
.y3_c00466{bottom:22.590150px;}
.y2_c00466{bottom:37.588650px;}
.y4_c00466{bottom:56.735596px;}
.y1_c00466{bottom:106.275000px;}
.h4_c00466{height:19.800105px;}
.h2_c00466{height:35.991211px;}
.h3_c00466{height:48.410156px;}
.h5_c00466{height:72.421875px;}
.h1_c00466{height:1054.221000px;}
.h0_c00466{height:1263.000000px;}
.w2_c00466{width:30.033000px;}
.w1_c00466{width:655.645500px;}
.w0_c00466{width:892.500000px;}
.x0_c00466{left:0.000000px;}
.x2_c00466{left:3.771000px;}
.x1_c00466{left:123.804000px;}
.x4_c00466{left:127.559509px;}
.x3_c00466{left:451.971000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls0_c00466{letter-spacing:0.000000pt;}
.ws0_c00466{word-spacing:0.000000pt;}
.fs0_c00466{font-size:48.000000pt;}
.fs1_c00466{font-size:64.000000pt;}
.y0_c00466{bottom:0.000000pt;}
.y5_c00466{bottom:3.366667pt;}
.y3_c00466{bottom:20.080133pt;}
.y2_c00466{bottom:33.412133pt;}
.y4_c00466{bottom:50.431641pt;}
.y1_c00466{bottom:94.466667pt;}
.h4_c00466{height:17.600093pt;}
.h2_c00466{height:31.992188pt;}
.h3_c00466{height:43.031250pt;}
.h5_c00466{height:64.375000pt;}
.h1_c00466{height:937.085333pt;}
.h0_c00466{height:1122.666667pt;}
.w2_c00466{width:26.696000pt;}
.w1_c00466{width:582.796000pt;}
.w0_c00466{width:793.333333pt;}
.x0_c00466{left:0.000000pt;}
.x2_c00466{left:3.352000pt;}
.x1_c00466{left:110.048000pt;}
.x4_c00466{left:113.386231pt;}
.x3_c00466{left:401.752000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00467;src:url('chunks/assets/font_92a93854161c1473e4ca6c5f.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00467;src:url('chunks/assets/font_8ea1c52e1b71305b4882c965.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:1.330566;font-style: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;}
.ls1_c00467{letter-spacing:0.000000px;}
.ls0_c00467{letter-spacing:2549.376000px;}
.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:0.000000px;}
._0_c00467{width:1.620000px;}
.fc1_c00467{color:transparent;}
.fc0_c00467{color:rgb(0,0,0);}
.fs1_c00467{font-size:54.000000px;}
.fs0_c00467{font-size:72.000000px;}
.y0_c00467{bottom:0.000000px;}
.y7_c00467{bottom:3.787500px;}
.y5_c00467{bottom:30.226500px;}
.y4_c00467{bottom:45.225000px;}
.y6_c00467{bottom:56.735596px;}
.y2_c00467{bottom:61.275000px;}
.y3_c00467{bottom:106.275000px;}
.y1_c00467{bottom:106.725000px;}
.h5_c00467{height:19.800105px;}
.h4_c00467{height:48.410156px;}
.h2_c00467{height:64.546875px;}
.h6_c00467{height:72.421875px;}
.h1_c00467{height:1053.771000px;}
.h3_c00467{height:1054.221000px;}
.h0_c00467{height:1263.000000px;}
.w3_c00467{width:30.031500px;}
.w1_c00467{width:637.350000px;}
.w2_c00467{width:658.159500px;}
.w0_c00467{width:892.500000px;}
.x0_c00467{left:0.000000px;}
.x3_c00467{left:4.953000px;}
.x2_c00467{left:122.547000px;}
.x1_c00467{left:127.575000px;}
.x4_c00467{left:734.908997px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls1_c00467{letter-spacing:0.000000pt;}
.ls0_c00467{letter-spacing:2266.112000pt;}
.ws0_c00467{word-spacing:0.000000pt;}
._0_c00467{width:1.440000pt;}
.fs1_c00467{font-size:48.000000pt;}
.fs0_c00467{font-size:64.000000pt;}
.y0_c00467{bottom:0.000000pt;}
.y7_c00467{bottom:3.366667pt;}
.y5_c00467{bottom:26.868000pt;}
.y4_c00467{bottom:40.200000pt;}
.y6_c00467{bottom:50.431641pt;}
.y2_c00467{bottom:54.466667pt;}
.y3_c00467{bottom:94.466667pt;}
.y1_c00467{bottom:94.866667pt;}
.h5_c00467{height:17.600093pt;}
.h4_c00467{height:43.031250pt;}
.h2_c00467{height:57.375000pt;}
.h6_c00467{height:64.375000pt;}
.h1_c00467{height:936.685333pt;}
.h3_c00467{height:937.085333pt;}
.h0_c00467{height:1122.666667pt;}
.w3_c00467{width:26.694667pt;}
.w1_c00467{width:566.533333pt;}
.w2_c00467{width:585.030667pt;}
.w0_c00467{width:793.333333pt;}
.x0_c00467{left:0.000000pt;}
.x3_c00467{left:4.402667pt;}
.x2_c00467{left:108.930667pt;}
.x1_c00467{left:113.400000pt;}
.x4_c00467{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00468;src:url('chunks/assets/font_2c23c0066d85f26692efa5c8.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00468;src:url('chunks/assets/font_10d7a89949bba1b2f5e62e3b.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.330566;font-style: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;}
.ls3_c00468{letter-spacing:-0.010800px;}
.ls2_c00468{letter-spacing:0.000000px;}
.ls0_c00468{letter-spacing:2549.376000px;}
.ls1_c00468{letter-spacing:2549.400000px;}
.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:0.000000px;}
.fc1_c00468{color:transparent;}
.fc0_c00468{color:rgb(0,0,0);}
.fs1_c00468{font-size:54.000000px;}
.fs0_c00468{font-size:72.000000px;}
.y0_c00468{bottom:0.000000px;}
.y8_c00468{bottom:3.787500px;}
.y6_c00468{bottom:52.725000px;}
.y7_c00468{bottom:56.735596px;}
.y5_c00468{bottom:68.775000px;}
.y3_c00468{bottom:106.275000px;}
.y1_c00468{bottom:106.725000px;}
.y4_c00468{bottom:577.725000px;}
.y2_c00468{bottom:592.275000px;}
.h5_c00468{height:19.800105px;}
.h4_c00468{height:48.410156px;}
.h2_c00468{height:64.546875px;}
.h6_c00468{height:72.421875px;}
.h1_c00468{height:1055.028000px;}
.h3_c00468{height:1055.478000px;}
.h0_c00468{height:1263.000000px;}
.w3_c00468{width:30.033000px;}
.w1_c00468{width:637.350000px;}
.w2_c00468{width:658.159500px;}
.w0_c00468{width:892.500000px;}
.x0_c00468{left:0.000000px;}
.x2_c00468{left:122.547000px;}
.x1_c00468{left:127.575000px;}
.x3_c00468{left:156.453000px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls3_c00468{letter-spacing:-0.009600pt;}
.ls2_c00468{letter-spacing:0.000000pt;}
.ls0_c00468{letter-spacing:2266.112000pt;}
.ls1_c00468{letter-spacing:2266.133333pt;}
.ws0_c00468{word-spacing:0.000000pt;}
.fs1_c00468{font-size:48.000000pt;}
.fs0_c00468{font-size:64.000000pt;}
.y0_c00468{bottom:0.000000pt;}
.y8_c00468{bottom:3.366667pt;}
.y6_c00468{bottom:46.866667pt;}
.y7_c00468{bottom:50.431641pt;}
.y5_c00468{bottom:61.133333pt;}
.y3_c00468{bottom:94.466667pt;}
.y1_c00468{bottom:94.866667pt;}
.y4_c00468{bottom:513.533333pt;}
.y2_c00468{bottom:526.466667pt;}
.h5_c00468{height:17.600093pt;}
.h4_c00468{height:43.031250pt;}
.h2_c00468{height:57.375000pt;}
.h6_c00468{height:64.375000pt;}
.h1_c00468{height:937.802667pt;}
.h3_c00468{height:938.202667pt;}
.h0_c00468{height:1122.666667pt;}
.w3_c00468{width:26.696000pt;}
.w1_c00468{width:566.533333pt;}
.w2_c00468{width:585.030667pt;}
.w0_c00468{width:793.333333pt;}
.x0_c00468{left:0.000000pt;}
.x2_c00468{left:108.930667pt;}
.x1_c00468{left:113.400000pt;}
.x3_c00468{left:139.069333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00469;src:url('chunks/assets/font_b13ba32bd234abe13f06f78f.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00469;src:url('chunks/assets/font_c2da5fabfbc25faa86de17d5.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:1.330566;font-style: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;}
.ls1_c00469{letter-spacing:0.000000px;}
.ls0_c00469{letter-spacing:2549.394000px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00469{word-spacing:0.000000px;}
.fc1_c00469{color:transparent;}
.fc0_c00469{color:rgb(0,0,0);}
.fs0_c00469{font-size:54.000000px;}
.fs1_c00469{font-size:72.000000px;}
.y0_c00469{bottom:0.000000px;}
.y6_c00469{bottom:3.787500px;}
.y5_c00469{bottom:56.735596px;}
.y4_c00469{bottom:73.725000px;}
.y2_c00469{bottom:88.275000px;}
.y3_c00469{bottom:106.275000px;}
.y1_c00469{bottom:106.725000px;}
.h5_c00469{height:19.800105px;}
.h2_c00469{height:48.410156px;}
.h4_c00469{height:64.546875px;}
.h6_c00469{height:72.421875px;}
.h1_c00469{height:1053.771000px;}
.h3_c00469{height:1054.221000px;}
.h0_c00469{height:1263.000000px;}
.w3_c00469{width:30.031500px;}
.w1_c00469{width:637.350000px;}
.w2_c00469{width:655.645500px;}
.w0_c00469{width:892.500000px;}
.x0_c00469{left:0.000000px;}
.x3_c00469{left:104.196000px;}
.x2_c00469{left:123.804000px;}
.x1_c00469{left:127.575000px;}
.x4_c00469{left:734.908997px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls1_c00469{letter-spacing:0.000000pt;}
.ls0_c00469{letter-spacing:2266.128000pt;}
.ws0_c00469{word-spacing:0.000000pt;}
.fs0_c00469{font-size:48.000000pt;}
.fs1_c00469{font-size:64.000000pt;}
.y0_c00469{bottom:0.000000pt;}
.y6_c00469{bottom:3.366667pt;}
.y5_c00469{bottom:50.431641pt;}
.y4_c00469{bottom:65.533333pt;}
.y2_c00469{bottom:78.466667pt;}
.y3_c00469{bottom:94.466667pt;}
.y1_c00469{bottom:94.866667pt;}
.h5_c00469{height:17.600093pt;}
.h2_c00469{height:43.031250pt;}
.h4_c00469{height:57.375000pt;}
.h6_c00469{height:64.375000pt;}
.h1_c00469{height:936.685333pt;}
.h3_c00469{height:937.085333pt;}
.h0_c00469{height:1122.666667pt;}
.w3_c00469{width:26.694667pt;}
.w1_c00469{width:566.533333pt;}
.w2_c00469{width:582.796000pt;}
.w0_c00469{width:793.333333pt;}
.x0_c00469{left:0.000000pt;}
.x3_c00469{left:92.618667pt;}
.x2_c00469{left:110.048000pt;}
.x1_c00469{left:113.400000pt;}
.x4_c00469{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00470;src:url('chunks/assets/font_9db1b05eb360d763d8ddf4f3.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00470;src:url('chunks/assets/font_a6856ad9bce05e3854991ee4.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00470{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.ls1_c00470{letter-spacing:0.000000px;}
.ls0_c00470{letter-spacing:2549.400000px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00470{word-spacing:0.000000px;}
.fc1_c00470{color:transparent;}
.fc0_c00470{color:rgb(0,0,0);}
.fs1_c00470{font-size:54.000000px;}
.fs0_c00470{font-size:72.000000px;}
.y0_c00470{bottom:0.000000px;}
.y5_c00470{bottom:3.787500px;}
.y4_c00470{bottom:56.735596px;}
.y3_c00470{bottom:67.816950px;}
.y2_c00470{bottom:84.096000px;}
.y1_c00470{bottom:104.904000px;}
.h3_c00470{height:19.800105px;}
.h2_c00470{height:48.410156px;}
.h4_c00470{height:72.421875px;}
.h1_c00470{height:1055.590500px;}
.h0_c00470{height:1263.000000px;}
.w3_c00470{width:30.033000px;}
.w1_c00470{width:637.350000px;}
.w2_c00470{width:658.159500px;}
.w0_c00470{width:892.500000px;}
.x0_c00470{left:0.000000px;}
.x2_c00470{left:122.547000px;}
.x1_c00470{left:127.575000px;}
.x3_c00470{left:444.729000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls1_c00470{letter-spacing:0.000000pt;}
.ls0_c00470{letter-spacing:2266.133333pt;}
.ws0_c00470{word-spacing:0.000000pt;}
.fs1_c00470{font-size:48.000000pt;}
.fs0_c00470{font-size:64.000000pt;}
.y0_c00470{bottom:0.000000pt;}
.y5_c00470{bottom:3.366667pt;}
.y4_c00470{bottom:50.431641pt;}
.y3_c00470{bottom:60.281733pt;}
.y2_c00470{bottom:74.752000pt;}
.y1_c00470{bottom:93.248000pt;}
.h3_c00470{height:17.600093pt;}
.h2_c00470{height:43.031250pt;}
.h4_c00470{height:64.375000pt;}
.h1_c00470{height:938.302667pt;}
.h0_c00470{height:1122.666667pt;}
.w3_c00470{width:26.696000pt;}
.w1_c00470{width:566.533333pt;}
.w2_c00470{width:585.030667pt;}
.w0_c00470{width:793.333333pt;}
.x0_c00470{left:0.000000pt;}
.x2_c00470{left:108.930667pt;}
.x1_c00470{left:113.400000pt;}
.x3_c00470{left:395.314667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00471;src:url('chunks/assets/font_051cb8b99b0a4d888d304568.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00471;src:url('chunks/assets/font_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00471;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff4_c00471{font-family:ff4_c00471;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00471;src:url('chunks/assets/font_a6856ad9bce05e3854991ee4.woff2')format("woff");}.ff5_c00471{font-family:ff5_c00471;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00471{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.ls3_c00471{letter-spacing:-0.010800px;}
.ls2_c00471{letter-spacing:0.000000px;}
.ls0_c00471{letter-spacing:2519.424000px;}
.ls1_c00471{letter-spacing:2549.400000px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00471{word-spacing:0.000000px;}
._0_c00471{width:1.242000px;}
.fc1_c00471{color:transparent;}
.fc0_c00471{color:rgb(0,0,0);}
.fs0_c00471{font-size:54.000000px;}
.fs1_c00471{font-size:72.000000px;}
.y0_c00471{bottom:0.000000px;}
.ya_c00471{bottom:3.787500px;}
.y8_c00471{bottom:37.728000px;}
.y7_c00471{bottom:52.726500px;}
.y9_c00471{bottom:56.735596px;}
.y6_c00471{bottom:67.725000px;}
.y5_c00471{bottom:82.596000px;}
.y1_c00471{bottom:106.275000px;}
.y4_c00471{bottom:106.404000px;}
.y3_c00471{bottom:585.226500px;}
.y2_c00471{bottom:600.225000px;}
.h5_c00471{height:19.800105px;}
.h2_c00471{height:48.410156px;}
.h4_c00471{height:65.003906px;}
.h6_c00471{height:72.421875px;}
.h3_c00471{height:1054.090500px;}
.h1_c00471{height:1054.221000px;}
.h0_c00471{height:1263.000000px;}
.w3_c00471{width:30.031500px;}
.w2_c00471{width:637.350000px;}
.w1_c00471{width:655.645500px;}
.w0_c00471{width:892.500000px;}
.x0_c00471{left:0.000000px;}
.x5_c00471{left:3.696000px;}
.x2_c00471{left:8.196000px;}
.x1_c00471{left:123.804000px;}
.x4_c00471{left:127.575000px;}
.x3_c00471{left:176.203500px;}
.x6_c00471{left:734.908997px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls3_c00471{letter-spacing:-0.009600pt;}
.ls2_c00471{letter-spacing:0.000000pt;}
.ls0_c00471{letter-spacing:2239.488000pt;}
.ls1_c00471{letter-spacing:2266.133333pt;}
.ws0_c00471{word-spacing:0.000000pt;}
._0_c00471{width:1.104000pt;}
.fs0_c00471{font-size:48.000000pt;}
.fs1_c00471{font-size:64.000000pt;}
.y0_c00471{bottom:0.000000pt;}
.ya_c00471{bottom:3.366667pt;}
.y8_c00471{bottom:33.536000pt;}
.y7_c00471{bottom:46.868000pt;}
.y9_c00471{bottom:50.431641pt;}
.y6_c00471{bottom:60.200000pt;}
.y5_c00471{bottom:73.418667pt;}
.y1_c00471{bottom:94.466667pt;}
.y4_c00471{bottom:94.581333pt;}
.y3_c00471{bottom:520.201333pt;}
.y2_c00471{bottom:533.533333pt;}
.h5_c00471{height:17.600093pt;}
.h2_c00471{height:43.031250pt;}
.h4_c00471{height:57.781250pt;}
.h6_c00471{height:64.375000pt;}
.h3_c00471{height:936.969333pt;}
.h1_c00471{height:937.085333pt;}
.h0_c00471{height:1122.666667pt;}
.w3_c00471{width:26.694667pt;}
.w2_c00471{width:566.533333pt;}
.w1_c00471{width:582.796000pt;}
.w0_c00471{width:793.333333pt;}
.x0_c00471{left:0.000000pt;}
.x5_c00471{left:3.285333pt;}
.x2_c00471{left:7.285333pt;}
.x1_c00471{left:110.048000pt;}
.x4_c00471{left:113.400000pt;}
.x3_c00471{left:156.625333pt;}
.x6_c00471{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00472;src:url('chunks/assets/font_b48675e2ef6dc62ef9c954a4.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00472;src:url('chunks/assets/font_3d9c844faa7c127af87e8d83.woff2')format("woff");}.ff3_c00472{font-family:ff3_c00472;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00472;src:url('chunks/assets/font_f64444d7b6cdd5b8ebe58dc1.woff2')format("woff");}.ff4_c00472{font-family:ff4_c00472;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00472{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls1_c00472{letter-spacing:0.000000px;}
.ls0_c00472{letter-spacing:2549.394000px;}
.sc__c00472{text-shadow:none;}
.sc0_c00472{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00472{-webkit-text-stroke:0px transparent;}
.sc0_c00472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00472{word-spacing:0.000000px;}
._1_c00472{margin-left:-3.877200px;}
._0_c00472{width:2.921400px;}
.fc1_c00472{color:transparent;}
.fc0_c00472{color:rgb(0,0,0);}
.fs0_c00472{font-size:54.000000px;}
.fs1_c00472{font-size:72.000000px;}
.y0_c00472{bottom:0.000000px;}
.y6_c00472{bottom:3.787500px;}
.y5_c00472{bottom:56.735596px;}
.y4_c00472{bottom:79.780500px;}
.y3_c00472{bottom:94.779000px;}
.y1_c00472{bottom:95.721000px;}
.y2_c00472{bottom:109.779000px;}
.h3_c00472{height:19.800105px;}
.h2_c00472{height:48.410156px;}
.h4_c00472{height:72.421875px;}
.h1_c00472{height:1064.775000px;}
.h0_c00472{height:1263.000000px;}
.w3_c00472{width:30.033000px;}
.w1_c00472{width:637.350000px;}
.w2_c00472{width:656.902500px;}
.w0_c00472{width:892.500000px;}
.x0_c00472{left:0.000000px;}
.x3_c00472{left:4.953000px;}
.x2_c00472{left:122.547000px;}
.x1_c00472{left:127.575000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls1_c00472{letter-spacing:0.000000pt;}
.ls0_c00472{letter-spacing:2266.128000pt;}
.ws0_c00472{word-spacing:0.000000pt;}
._1_c00472{margin-left:-3.446400pt;}
._0_c00472{width:2.596800pt;}
.fs0_c00472{font-size:48.000000pt;}
.fs1_c00472{font-size:64.000000pt;}
.y0_c00472{bottom:0.000000pt;}
.y6_c00472{bottom:3.366667pt;}
.y5_c00472{bottom:50.431641pt;}
.y4_c00472{bottom:70.916000pt;}
.y3_c00472{bottom:84.248000pt;}
.y1_c00472{bottom:85.085333pt;}
.y2_c00472{bottom:97.581333pt;}
.h3_c00472{height:17.600093pt;}
.h2_c00472{height:43.031250pt;}
.h4_c00472{height:64.375000pt;}
.h1_c00472{height:946.466667pt;}
.h0_c00472{height:1122.666667pt;}
.w3_c00472{width:26.696000pt;}
.w1_c00472{width:566.533333pt;}
.w2_c00472{width:583.913333pt;}
.w0_c00472{width:793.333333pt;}
.x0_c00472{left:0.000000pt;}
.x3_c00472{left:4.402667pt;}
.x2_c00472{left:108.930667pt;}
.x1_c00472{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f3544959990fdd1591df739f.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.113281;font-style:normal;font-weight:normal;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_7086c813f83388eef1fa73fd.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00473;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff3_c00473{font-family:ff3_c00473;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00473;src:url('chunks/assets/font_0ceccfe7bdd268e455139a71.woff2')format("woff");}.ff4_c00473{font-family:ff4_c00473;line-height:1.330566;font-style: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;}
.ls2_c00473{letter-spacing:-0.014400px;}
.ls0_c00473{letter-spacing:0.000000px;}
.ls1_c00473{letter-spacing:0.014400px;}
.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:0.000000px;}
._0_c00473{margin-left:-3.981600px;}
.fc0_c00473{color:rgb(0,0,0);}
.fs1_c00473{font-size:54.000000px;}
.fs0_c00473{font-size:72.000000px;}
.y0_c00473{bottom:0.000000px;}
.y7_c00473{bottom:3.787500px;}
.y5_c00473{bottom:29.330250px;}
.y4_c00473{bottom:45.448500px;}
.y6_c00473{bottom:56.735596px;}
.y1_c00473{bottom:104.065500px;}
.y3_c00473{bottom:994.660500px;}
.y2_c00473{bottom:1035.934500px;}
.h5_c00473{height:19.800105px;}
.h4_c00473{height:47.988281px;}
.h3_c00473{height:64.546875px;}
.h2_c00473{height:65.003906px;}
.h6_c00473{height:72.421875px;}
.h1_c00473{height:1057.686000px;}
.h0_c00473{height:1263.000000px;}
.w2_c00473{width:30.031500px;}
.w1_c00473{width:658.159500px;}
.w0_c00473{width:892.500000px;}
.x0_c00473{left:0.000000px;}
.x2_c00473{left:4.953000px;}
.x1_c00473{left:122.547000px;}
.x3_c00473{left:153.093000px;}
.x4_c00473{left:453.232950px;}
.x5_c00473{left:734.908997px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls2_c00473{letter-spacing:-0.012800pt;}
.ls0_c00473{letter-spacing:0.000000pt;}
.ls1_c00473{letter-spacing:0.012800pt;}
.ws0_c00473{word-spacing:0.000000pt;}
._0_c00473{margin-left:-3.539200pt;}
.fs1_c00473{font-size:48.000000pt;}
.fs0_c00473{font-size:64.000000pt;}
.y0_c00473{bottom:0.000000pt;}
.y7_c00473{bottom:3.366667pt;}
.y5_c00473{bottom:26.071333pt;}
.y4_c00473{bottom:40.398667pt;}
.y6_c00473{bottom:50.431641pt;}
.y1_c00473{bottom:92.502667pt;}
.y3_c00473{bottom:884.142667pt;}
.y2_c00473{bottom:920.830667pt;}
.h5_c00473{height:17.600093pt;}
.h4_c00473{height:42.656250pt;}
.h3_c00473{height:57.375000pt;}
.h2_c00473{height:57.781250pt;}
.h6_c00473{height:64.375000pt;}
.h1_c00473{height:940.165333pt;}
.h0_c00473{height:1122.666667pt;}
.w2_c00473{width:26.694667pt;}
.w1_c00473{width:585.030667pt;}
.w0_c00473{width:793.333333pt;}
.x0_c00473{left:0.000000pt;}
.x2_c00473{left:4.402667pt;}
.x1_c00473{left:108.930667pt;}
.x3_c00473{left:136.082667pt;}
.x4_c00473{left:402.873733pt;}
.x5_c00473{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00474;src:url('chunks/assets/font_9db1b05eb360d763d8ddf4f3.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00474;src:url('chunks/assets/font_d1f07c756d918c36d388c18f.woff2')format("woff");}.ff3_c00474{font-family:ff3_c00474;line-height:1.330566;font-style: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;}
.ls1_c00474{letter-spacing:0.000000px;}
.ls0_c00474{letter-spacing:2549.376000px;}
.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:0.000000px;}
.fc1_c00474{color:transparent;}
.fc0_c00474{color:rgb(0,0,0);}
.fs1_c00474{font-size:54.000000px;}
.fs0_c00474{font-size:72.000000px;}
.y0_c00474{bottom:0.000000px;}
.y6_c00474{bottom:3.787500px;}
.y4_c00474{bottom:31.725300px;}
.y2_c00474{bottom:47.775000px;}
.y5_c00474{bottom:56.735596px;}
.y3_c00474{bottom:106.275000px;}
.y1_c00474{bottom:106.725000px;}
.h4_c00474{height:19.800105px;}
.h2_c00474{height:64.546875px;}
.h5_c00474{height:72.421875px;}
.h1_c00474{height:1055.028000px;}
.h3_c00474{height:1055.478000px;}
.h0_c00474{height:1263.000000px;}
.w3_c00474{width:30.033000px;}
.w1_c00474{width:637.350000px;}
.w2_c00474{width:658.159500px;}
.w0_c00474{width:892.500000px;}
.x0_c00474{left:0.000000px;}
.x2_c00474{left:122.547000px;}
.x1_c00474{left:127.575000px;}
.x3_c00474{left:444.729000px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls1_c00474{letter-spacing:0.000000pt;}
.ls0_c00474{letter-spacing:2266.112000pt;}
.ws0_c00474{word-spacing:0.000000pt;}
.fs1_c00474{font-size:48.000000pt;}
.fs0_c00474{font-size:64.000000pt;}
.y0_c00474{bottom:0.000000pt;}
.y6_c00474{bottom:3.366667pt;}
.y4_c00474{bottom:28.200267pt;}
.y2_c00474{bottom:42.466667pt;}
.y5_c00474{bottom:50.431641pt;}
.y3_c00474{bottom:94.466667pt;}
.y1_c00474{bottom:94.866667pt;}
.h4_c00474{height:17.600093pt;}
.h2_c00474{height:57.375000pt;}
.h5_c00474{height:64.375000pt;}
.h1_c00474{height:937.802667pt;}
.h3_c00474{height:938.202667pt;}
.h0_c00474{height:1122.666667pt;}
.w3_c00474{width:26.696000pt;}
.w1_c00474{width:566.533333pt;}
.w2_c00474{width:585.030667pt;}
.w0_c00474{width:793.333333pt;}
.x0_c00474{left:0.000000pt;}
.x2_c00474{left:108.930667pt;}
.x1_c00474{left:113.400000pt;}
.x3_c00474{left:395.314667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00475;src:url('chunks/assets/font_7d3643660f00efd2e465933f.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00475;src:url('chunks/assets/font_47a250c073387fe7cef28ac0.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;line-height:1.330566;font-style: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:2549.376000px;}
.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:0.000000px;}
._1_c00475{width:2.446200px;}
._0_c00475{width:5.427000px;}
.fc1_c00475{color:transparent;}
.fc0_c00475{color:rgb(0,0,0);}
.fs1_c00475{font-size:54.000000px;}
.fs0_c00475{font-size:72.000000px;}
.y0_c00475{bottom:0.000000px;}
.y7_c00475{bottom:3.787500px;}
.y6_c00475{bottom:56.735596px;}
.y5_c00475{bottom:66.226500px;}
.y4_c00475{bottom:81.225000px;}
.y2_c00475{bottom:97.275000px;}
.y3_c00475{bottom:106.275000px;}
.y1_c00475{bottom:106.725000px;}
.h5_c00475{height:19.800105px;}
.h4_c00475{height:48.410156px;}
.h2_c00475{height:64.546875px;}
.h6_c00475{height:72.421875px;}
.h1_c00475{height:1055.028000px;}
.h3_c00475{height:1055.478000px;}
.h0_c00475{height:1263.000000px;}
.w3_c00475{width:30.031500px;}
.w1_c00475{width:637.350000px;}
.w2_c00475{width:658.159500px;}
.w0_c00475{width:892.500000px;}
.x0_c00475{left:0.000000px;}
.x3_c00475{left:4.953000px;}
.x2_c00475{left:122.547000px;}
.x1_c00475{left:127.575000px;}
.x4_c00475{left:734.908997px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls1_c00475{letter-spacing:0.000000pt;}
.ls0_c00475{letter-spacing:2266.112000pt;}
.ws0_c00475{word-spacing:0.000000pt;}
._1_c00475{width:2.174400pt;}
._0_c00475{width:4.824000pt;}
.fs1_c00475{font-size:48.000000pt;}
.fs0_c00475{font-size:64.000000pt;}
.y0_c00475{bottom:0.000000pt;}
.y7_c00475{bottom:3.366667pt;}
.y6_c00475{bottom:50.431641pt;}
.y5_c00475{bottom:58.868000pt;}
.y4_c00475{bottom:72.200000pt;}
.y2_c00475{bottom:86.466667pt;}
.y3_c00475{bottom:94.466667pt;}
.y1_c00475{bottom:94.866667pt;}
.h5_c00475{height:17.600093pt;}
.h4_c00475{height:43.031250pt;}
.h2_c00475{height:57.375000pt;}
.h6_c00475{height:64.375000pt;}
.h1_c00475{height:937.802667pt;}
.h3_c00475{height:938.202667pt;}
.h0_c00475{height:1122.666667pt;}
.w3_c00475{width:26.694667pt;}
.w1_c00475{width:566.533333pt;}
.w2_c00475{width:585.030667pt;}
.w0_c00475{width:793.333333pt;}
.x0_c00475{left:0.000000pt;}
.x3_c00475{left:4.402667pt;}
.x2_c00475{left:108.930667pt;}
.x1_c00475{left:113.400000pt;}
.x4_c00475{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00476;src:url('chunks/assets/font_ae3b2e9fcfacaa2811e5b7bf.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00476;src:url('chunks/assets/font_776d0ff3b746116e8b0c86df.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;line-height:1.330566;font-style: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;}
.ls2_c00476{letter-spacing:-0.010800px;}
.ls1_c00476{letter-spacing:0.000000px;}
.ls0_c00476{letter-spacing:1130.220000px;}
.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:0.000000px;}
._0_c00476{width:12.490200px;}
.fc1_c00476{color:transparent;}
.fc0_c00476{color:rgb(0,0,0);}
.fs1_c00476{font-size:54.000000px;}
.fs0_c00476{font-size:72.000000px;}
.y0_c00476{bottom:0.000000px;}
.y9_c00476{bottom:3.787500px;}
.y7_c00476{bottom:37.065000px;}
.y6_c00476{bottom:52.698000px;}
.y8_c00476{bottom:56.735596px;}
.y1_c00476{bottom:103.294500px;}
.y5_c00476{bottom:573.204000px;}
.y4_c00476{bottom:597.207000px;}
.y3_c00476{bottom:612.205500px;}
.y2_c00476{bottom:628.705500px;}
.h4_c00476{height:19.800105px;}
.h2_c00476{height:47.988281px;}
.h3_c00476{height:48.410156px;}
.h5_c00476{height:72.421875px;}
.h1_c00476{height:1058.457000px;}
.h0_c00476{height:1263.000000px;}
.w2_c00476{width:30.033000px;}
.w1_c00476{width:656.902500px;}
.w0_c00476{width:892.500000px;}
.x0_c00476{left:0.000000px;}
.x2_c00476{left:4.953000px;}
.x1_c00476{left:122.547000px;}
.x4_c00476{left:127.559509px;}
.x3_c00476{left:453.234000px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls2_c00476{letter-spacing:-0.009600pt;}
.ls1_c00476{letter-spacing:0.000000pt;}
.ls0_c00476{letter-spacing:1004.640000pt;}
.ws0_c00476{word-spacing:0.000000pt;}
._0_c00476{width:11.102400pt;}
.fs1_c00476{font-size:48.000000pt;}
.fs0_c00476{font-size:64.000000pt;}
.y0_c00476{bottom:0.000000pt;}
.y9_c00476{bottom:3.366667pt;}
.y7_c00476{bottom:32.946667pt;}
.y6_c00476{bottom:46.842667pt;}
.y8_c00476{bottom:50.431641pt;}
.y1_c00476{bottom:91.817333pt;}
.y5_c00476{bottom:509.514667pt;}
.y4_c00476{bottom:530.850667pt;}
.y3_c00476{bottom:544.182667pt;}
.y2_c00476{bottom:558.849333pt;}
.h4_c00476{height:17.600093pt;}
.h2_c00476{height:42.656250pt;}
.h3_c00476{height:43.031250pt;}
.h5_c00476{height:64.375000pt;}
.h1_c00476{height:940.850667pt;}
.h0_c00476{height:1122.666667pt;}
.w2_c00476{width:26.696000pt;}
.w1_c00476{width:583.913333pt;}
.w0_c00476{width:793.333333pt;}
.x0_c00476{left:0.000000pt;}
.x2_c00476{left:4.402667pt;}
.x1_c00476{left:108.930667pt;}
.x4_c00476{left:113.386231pt;}
.x3_c00476{left:402.874667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00477;src:url('chunks/assets/font_7b2c739b8fb35df1f5d9c257.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00477;src:url('chunks/assets/font_5c3992fffbda0014984348fc.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00477;src:url('chunks/assets/font_7d4f9e4969e5ec4ca8739c41.woff2')format("woff");}.ff4_c00477{font-family:ff4_c00477;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00477{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.ls1_c00477{letter-spacing:0.000000px;}
.ls0_c00477{letter-spacing:2549.394000px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00477{word-spacing:0.000000px;}
._0_c00477{margin-left:-2.654400px;}
.fc1_c00477{color:transparent;}
.fc0_c00477{color:rgb(0,0,0);}
.fs1_c00477{font-size:48.000000px;}
.fs0_c00477{font-size:54.000000px;}
.fs2_c00477{font-size:72.000000px;}
.y0_c00477{bottom:0.000000px;}
.y6_c00477{bottom:3.787500px;}
.y4_c00477{bottom:54.225000px;}
.y5_c00477{bottom:56.735596px;}
.y2_c00477{bottom:67.275000px;}
.y3_c00477{bottom:106.275000px;}
.y1_c00477{bottom:106.725000px;}
.h5_c00477{height:19.800105px;}
.h4_c00477{height:43.031250px;}
.h2_c00477{height:48.410156px;}
.h6_c00477{height:72.421875px;}
.h1_c00477{height:1053.771000px;}
.h3_c00477{height:1054.221000px;}
.h0_c00477{height:1263.000000px;}
.w3_c00477{width:30.031500px;}
.w1_c00477{width:637.350000px;}
.w2_c00477{width:655.645500px;}
.w0_c00477{width:892.500000px;}
.x0_c00477{left:0.000000px;}
.x3_c00477{left:36.696000px;}
.x2_c00477{left:123.804000px;}
.x1_c00477{left:127.575000px;}
.x4_c00477{left:734.908997px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls1_c00477{letter-spacing:0.000000pt;}
.ls0_c00477{letter-spacing:2266.128000pt;}
.ws0_c00477{word-spacing:0.000000pt;}
._0_c00477{margin-left:-2.359467pt;}
.fs1_c00477{font-size:42.666667pt;}
.fs0_c00477{font-size:48.000000pt;}
.fs2_c00477{font-size:64.000000pt;}
.y0_c00477{bottom:0.000000pt;}
.y6_c00477{bottom:3.366667pt;}
.y4_c00477{bottom:48.200000pt;}
.y5_c00477{bottom:50.431641pt;}
.y2_c00477{bottom:59.800000pt;}
.y3_c00477{bottom:94.466667pt;}
.y1_c00477{bottom:94.866667pt;}
.h5_c00477{height:17.600093pt;}
.h4_c00477{height:38.250000pt;}
.h2_c00477{height:43.031250pt;}
.h6_c00477{height:64.375000pt;}
.h1_c00477{height:936.685333pt;}
.h3_c00477{height:937.085333pt;}
.h0_c00477{height:1122.666667pt;}
.w3_c00477{width:26.694667pt;}
.w1_c00477{width:566.533333pt;}
.w2_c00477{width:582.796000pt;}
.w0_c00477{width:793.333333pt;}
.x0_c00477{left:0.000000pt;}
.x3_c00477{left:32.618667pt;}
.x2_c00477{left:110.048000pt;}
.x1_c00477{left:113.400000pt;}
.x4_c00477{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d8cdaf0e089c0279a0d062ed.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.106934;font-style:normal;font-weight:normal;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_ec2c8b60f952508927151553.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00478;src:url('chunks/assets/font_504c1cceb8639cdd5b852c89.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:1.330566;font-style: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.009600px;}
.ls2_c00478{letter-spacing:0.000000px;}
.ls0_c00478{letter-spacing:2549.400000px;}
.sc__c00478{text-shadow:none;}
.sc0_c00478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00478{-webkit-text-stroke:0px transparent;}
.sc0_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00478{word-spacing:0.000000px;}
._1_c00478{width:16.129800px;}
._0_c00478{width:19.105200px;}
.fc1_c00478{color:transparent;}
.fc0_c00478{color:rgb(0,0,0);}
.fs0_c00478{font-size:48.000000px;}
.fs2_c00478{font-size:54.000000px;}
.fs1_c00478{font-size:72.000000px;}
.y0_c00478{bottom:0.000000px;}
.y7_c00478{bottom:3.787500px;}
.y5_c00478{bottom:7.626000px;}
.y4_c00478{bottom:22.624500px;}
.y3_c00478{bottom:36.124500px;}
.y6_c00478{bottom:56.735596px;}
.y1_c00478{bottom:104.875500px;}
.y2_c00478{bottom:1041.124500px;}
.h5_c00478{height:19.800105px;}
.h2_c00478{height:43.031250px;}
.h4_c00478{height:48.410156px;}
.h3_c00478{height:64.546875px;}
.h6_c00478{height:72.421875px;}
.h1_c00478{height:1055.202000px;}
.h0_c00478{height:1263.000000px;}
.w3_c00478{width:30.033000px;}
.w2_c00478{width:637.350000px;}
.w1_c00478{width:644.890500px;}
.w0_c00478{width:892.500000px;}
.x0_c00478{left:0.000000px;}
.x2_c00478{left:3.696000px;}
.x4_c00478{left:14.196000px;}
.x1_c00478{left:123.804000px;}
.x3_c00478{left:127.575000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls1_c00478{letter-spacing:-0.008533pt;}
.ls2_c00478{letter-spacing:0.000000pt;}
.ls0_c00478{letter-spacing:2266.133333pt;}
.ws0_c00478{word-spacing:0.000000pt;}
._1_c00478{width:14.337600pt;}
._0_c00478{width:16.982400pt;}
.fs0_c00478{font-size:42.666667pt;}
.fs2_c00478{font-size:48.000000pt;}
.fs1_c00478{font-size:64.000000pt;}
.y0_c00478{bottom:0.000000pt;}
.y7_c00478{bottom:3.366667pt;}
.y5_c00478{bottom:6.778667pt;}
.y4_c00478{bottom:20.110667pt;}
.y3_c00478{bottom:32.110667pt;}
.y6_c00478{bottom:50.431641pt;}
.y1_c00478{bottom:93.222667pt;}
.y2_c00478{bottom:925.444000pt;}
.h5_c00478{height:17.600093pt;}
.h2_c00478{height:38.250000pt;}
.h4_c00478{height:43.031250pt;}
.h3_c00478{height:57.375000pt;}
.h6_c00478{height:64.375000pt;}
.h1_c00478{height:937.957333pt;}
.h0_c00478{height:1122.666667pt;}
.w3_c00478{width:26.696000pt;}
.w2_c00478{width:566.533333pt;}
.w1_c00478{width:573.236000pt;}
.w0_c00478{width:793.333333pt;}
.x0_c00478{left:0.000000pt;}
.x2_c00478{left:3.285333pt;}
.x4_c00478{left:12.618667pt;}
.x1_c00478{left:110.048000pt;}
.x3_c00478{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00479;src:url('chunks/assets/font_c2961be1a77640c680aa85c1.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00479;src:url('chunks/assets/font_bbbda8e18a692b52f2a8dc7a.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00479;src:url('chunks/assets/font_81330e392053145cf4f862d5.woff2')format("woff");}.ff4_c00479{font-family:ff4_c00479;line-height:1.330566;font-style: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;}
.ls1_c00479{letter-spacing:0.000000px;}
.ls0_c00479{letter-spacing:2506.788000px;}
.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:0.000000px;}
.fc1_c00479{color:transparent;}
.fc0_c00479{color:rgb(0,0,0);}
.fs0_c00479{font-size:54.000000px;}
.fs1_c00479{font-size:72.000000px;}
.y0_c00479{bottom:0.000000px;}
.y6_c00479{bottom:3.787500px;}
.y4_c00479{bottom:43.725000px;}
.y5_c00479{bottom:56.735596px;}
.y2_c00479{bottom:58.275000px;}
.y3_c00479{bottom:106.275000px;}
.y1_c00479{bottom:106.725000px;}
.h4_c00479{height:19.800105px;}
.h2_c00479{height:48.410156px;}
.h5_c00479{height:72.421875px;}
.h1_c00479{height:1053.771000px;}
.h3_c00479{height:1054.221000px;}
.h0_c00479{height:1263.000000px;}
.w3_c00479{width:30.031500px;}
.w1_c00479{width:637.350000px;}
.w2_c00479{width:655.645500px;}
.w0_c00479{width:892.500000px;}
.x0_c00479{left:0.000000px;}
.x2_c00479{left:10.425000px;}
.x4_c00479{left:38.196000px;}
.x3_c00479{left:123.804000px;}
.x1_c00479{left:127.575000px;}
.x5_c00479{left:734.908997px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls1_c00479{letter-spacing:0.000000pt;}
.ls0_c00479{letter-spacing:2228.256000pt;}
.ws0_c00479{word-spacing:0.000000pt;}
.fs0_c00479{font-size:48.000000pt;}
.fs1_c00479{font-size:64.000000pt;}
.y0_c00479{bottom:0.000000pt;}
.y6_c00479{bottom:3.366667pt;}
.y4_c00479{bottom:38.866667pt;}
.y5_c00479{bottom:50.431641pt;}
.y2_c00479{bottom:51.800000pt;}
.y3_c00479{bottom:94.466667pt;}
.y1_c00479{bottom:94.866667pt;}
.h4_c00479{height:17.600093pt;}
.h2_c00479{height:43.031250pt;}
.h5_c00479{height:64.375000pt;}
.h1_c00479{height:936.685333pt;}
.h3_c00479{height:937.085333pt;}
.h0_c00479{height:1122.666667pt;}
.w3_c00479{width:26.694667pt;}
.w1_c00479{width:566.533333pt;}
.w2_c00479{width:582.796000pt;}
.w0_c00479{width:793.333333pt;}
.x0_c00479{left:0.000000pt;}
.x2_c00479{left:9.266667pt;}
.x4_c00479{left:33.952000pt;}
.x3_c00479{left:110.048000pt;}
.x1_c00479{left:113.400000pt;}
.x5_c00479{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00480;src:url('chunks/assets/font_b163a40c2ef976f1f14f38fd.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00480;src:url('chunks/assets/font_3dbcbd259fd5eb442f5fc59d.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.330566;font-style: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;}
.ls1_c00480{letter-spacing:0.000000px;}
.ls0_c00480{letter-spacing:2549.376000px;}
.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;}
}
.ws0_c00480{word-spacing:0.000000px;}
.fc1_c00480{color:transparent;}
.fc0_c00480{color:rgb(0,0,0);}
.fs1_c00480{font-size:54.000000px;}
.fs0_c00480{font-size:72.000000px;}
.y0_c00480{bottom:0.000000px;}
.y5_c00480{bottom:3.787500px;}
.y3_c00480{bottom:51.540000px;}
.y4_c00480{bottom:56.735596px;}
.y2_c00480{bottom:68.040000px;}
.y1_c00480{bottom:90.960000px;}
.h4_c00480{height:19.800105px;}
.h3_c00480{height:48.410156px;}
.h2_c00480{height:64.546875px;}
.h5_c00480{height:72.421875px;}
.h1_c00480{height:1069.534500px;}
.h0_c00480{height:1263.000000px;}
.w3_c00480{width:30.033000px;}
.w1_c00480{width:637.350000px;}
.w2_c00480{width:658.159500px;}
.w0_c00480{width:892.500000px;}
.x0_c00480{left:0.000000px;}
.x3_c00480{left:4.953000px;}
.x2_c00480{left:122.547000px;}
.x1_c00480{left:127.575000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls1_c00480{letter-spacing:0.000000pt;}
.ls0_c00480{letter-spacing:2266.112000pt;}
.ws0_c00480{word-spacing:0.000000pt;}
.fs1_c00480{font-size:48.000000pt;}
.fs0_c00480{font-size:64.000000pt;}
.y0_c00480{bottom:0.000000pt;}
.y5_c00480{bottom:3.366667pt;}
.y3_c00480{bottom:45.813333pt;}
.y4_c00480{bottom:50.431641pt;}
.y2_c00480{bottom:60.480000pt;}
.y1_c00480{bottom:80.853333pt;}
.h4_c00480{height:17.600093pt;}
.h3_c00480{height:43.031250pt;}
.h2_c00480{height:57.375000pt;}
.h5_c00480{height:64.375000pt;}
.h1_c00480{height:950.697333pt;}
.h0_c00480{height:1122.666667pt;}
.w3_c00480{width:26.696000pt;}
.w1_c00480{width:566.533333pt;}
.w2_c00480{width:585.030667pt;}
.w0_c00480{width:793.333333pt;}
.x0_c00480{left:0.000000pt;}
.x3_c00480{left:4.402667pt;}
.x2_c00480{left:108.930667pt;}
.x1_c00480{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00481;src:url('chunks/assets/font_7f8c8191d6099581315a92ac.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00481;src:url('chunks/assets/font_f64444d7b6cdd5b8ebe58dc1.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00481{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.ls1_c00481{letter-spacing:0.000000px;}
.ls0_c00481{letter-spacing:2549.394000px;}
.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:0.000000px;}
.fc1_c00481{color:transparent;}
.fc0_c00481{color:rgb(0,0,0);}
.fs0_c00481{font-size:54.000000px;}
.fs1_c00481{font-size:72.000000px;}
.y0_c00481{bottom:0.000000px;}
.y5_c00481{bottom:3.787500px;}
.y3_c00481{bottom:21.450000px;}
.y2_c00481{bottom:36.450000px;}
.y4_c00481{bottom:56.735596px;}
.y1_c00481{bottom:100.050000px;}
.h3_c00481{height:19.800105px;}
.h2_c00481{height:48.410156px;}
.h4_c00481{height:72.421875px;}
.h1_c00481{height:1060.446000px;}
.h0_c00481{height:1263.000000px;}
.w3_c00481{width:30.031500px;}
.w1_c00481{width:637.350000px;}
.w2_c00481{width:655.645500px;}
.w0_c00481{width:892.500000px;}
.x0_c00481{left:0.000000px;}
.x2_c00481{left:123.804000px;}
.x1_c00481{left:127.575000px;}
.x3_c00481{left:185.196000px;}
.x4_c00481{left:734.908997px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls1_c00481{letter-spacing:0.000000pt;}
.ls0_c00481{letter-spacing:2266.128000pt;}
.ws0_c00481{word-spacing:0.000000pt;}
.fs0_c00481{font-size:48.000000pt;}
.fs1_c00481{font-size:64.000000pt;}
.y0_c00481{bottom:0.000000pt;}
.y5_c00481{bottom:3.366667pt;}
.y3_c00481{bottom:19.066667pt;}
.y2_c00481{bottom:32.400000pt;}
.y4_c00481{bottom:50.431641pt;}
.y1_c00481{bottom:88.933333pt;}
.h3_c00481{height:17.600093pt;}
.h2_c00481{height:43.031250pt;}
.h4_c00481{height:64.375000pt;}
.h1_c00481{height:942.618667pt;}
.h0_c00481{height:1122.666667pt;}
.w3_c00481{width:26.694667pt;}
.w1_c00481{width:566.533333pt;}
.w2_c00481{width:582.796000pt;}
.w0_c00481{width:793.333333pt;}
.x0_c00481{left:0.000000pt;}
.x2_c00481{left:110.048000pt;}
.x1_c00481{left:113.400000pt;}
.x3_c00481{left:164.618667pt;}
.x4_c00481{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00482;src:url('chunks/assets/font_00fe83afedb8a8748ea7e6a7.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00482;src:url('chunks/assets/font_3dbcbd259fd5eb442f5fc59d.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:1.330566;font-style: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;}
.ls1_c00482{letter-spacing:0.000000px;}
.ls0_c00482{letter-spacing:2549.394000px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00482{word-spacing:0.000000px;}
.fc1_c00482{color:transparent;}
.fc0_c00482{color:rgb(0,0,0);}
.fs0_c00482{font-size:54.000000px;}
.fs1_c00482{font-size:72.000000px;}
.y0_c00482{bottom:0.000000px;}
.y5_c00482{bottom:3.787500px;}
.y3_c00482{bottom:6.423000px;}
.y2_c00482{bottom:21.423000px;}
.y4_c00482{bottom:56.735596px;}
.y1_c00482{bottom:104.577000px;}
.h3_c00482{height:19.800105px;}
.h2_c00482{height:48.410156px;}
.h4_c00482{height:72.421875px;}
.h1_c00482{height:1055.919000px;}
.h0_c00482{height:1263.000000px;}
.w3_c00482{width:30.033000px;}
.w1_c00482{width:637.350000px;}
.w2_c00482{width:655.645500px;}
.w0_c00482{width:892.500000px;}
.x0_c00482{left:0.000000px;}
.x3_c00482{left:29.196000px;}
.x2_c00482{left:123.804000px;}
.x1_c00482{left:127.575000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls1_c00482{letter-spacing:0.000000pt;}
.ls0_c00482{letter-spacing:2266.128000pt;}
.ws0_c00482{word-spacing:0.000000pt;}
.fs0_c00482{font-size:48.000000pt;}
.fs1_c00482{font-size:64.000000pt;}
.y0_c00482{bottom:0.000000pt;}
.y5_c00482{bottom:3.366667pt;}
.y3_c00482{bottom:5.709333pt;}
.y2_c00482{bottom:19.042667pt;}
.y4_c00482{bottom:50.431641pt;}
.y1_c00482{bottom:92.957333pt;}
.h3_c00482{height:17.600093pt;}
.h2_c00482{height:43.031250pt;}
.h4_c00482{height:64.375000pt;}
.h1_c00482{height:938.594667pt;}
.h0_c00482{height:1122.666667pt;}
.w3_c00482{width:26.696000pt;}
.w1_c00482{width:566.533333pt;}
.w2_c00482{width:582.796000pt;}
.w0_c00482{width:793.333333pt;}
.x0_c00482{left:0.000000pt;}
.x3_c00482{left:25.952000pt;}
.x2_c00482{left:110.048000pt;}
.x1_c00482{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00483;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00483;src:url('chunks/assets/font_b960cdae4104b1378d7f659d.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00483;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff4_c00483{font-family:ff4_c00483;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00483;src:url('chunks/assets/font_0b976a8b207f3e7fc4a4152a.woff2')format("woff");}.ff5_c00483{font-family:ff5_c00483;line-height:1.330566;font-style: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;}
.ls3_c00483{letter-spacing:-0.010800px;}
.ls2_c00483{letter-spacing:0.000000px;}
.ls1_c00483{letter-spacing:2549.394000px;}
.ls0_c00483{letter-spacing:2549.400000px;}
.sc__c00483{text-shadow:none;}
.sc0_c00483{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00483{-webkit-text-stroke:0px transparent;}
.sc0_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00483{word-spacing:0.000000px;}
._0_c00483{margin-left:-3.726000px;}
.fc1_c00483{color:transparent;}
.fc0_c00483{color:rgb(0,0,0);}
.fs0_c00483{font-size:54.000000px;}
.fs1_c00483{font-size:72.000000px;}
.y0_c00483{bottom:0.000000px;}
.y7_c00483{bottom:3.787500px;}
.y6_c00483{bottom:56.735596px;}
.y5_c00483{bottom:66.355500px;}
.y4_c00483{bottom:81.355500px;}
.y1_c00483{bottom:88.144500px;}
.y3_c00483{bottom:607.855500px;}
.y2_c00483{bottom:622.855500px;}
.h4_c00483{height:19.800105px;}
.h3_c00483{height:48.410156px;}
.h2_c00483{height:65.003906px;}
.h5_c00483{height:72.421875px;}
.h1_c00483{height:1072.351500px;}
.h0_c00483{height:1263.000000px;}
.w3_c00483{width:30.031500px;}
.w1_c00483{width:637.350000px;}
.w2_c00483{width:655.645500px;}
.w0_c00483{width:892.500000px;}
.x0_c00483{left:0.000000px;}
.x3_c00483{left:101.196000px;}
.x2_c00483{left:123.804000px;}
.x1_c00483{left:127.575000px;}
.x4_c00483{left:146.196000px;}
.x5_c00483{left:734.908997px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls3_c00483{letter-spacing:-0.009600pt;}
.ls2_c00483{letter-spacing:0.000000pt;}
.ls1_c00483{letter-spacing:2266.128000pt;}
.ls0_c00483{letter-spacing:2266.133333pt;}
.ws0_c00483{word-spacing:0.000000pt;}
._0_c00483{margin-left:-3.312000pt;}
.fs0_c00483{font-size:48.000000pt;}
.fs1_c00483{font-size:64.000000pt;}
.y0_c00483{bottom:0.000000pt;}
.y7_c00483{bottom:3.366667pt;}
.y6_c00483{bottom:50.431641pt;}
.y5_c00483{bottom:58.982667pt;}
.y4_c00483{bottom:72.316000pt;}
.y1_c00483{bottom:78.350667pt;}
.y3_c00483{bottom:540.316000pt;}
.y2_c00483{bottom:553.649333pt;}
.h4_c00483{height:17.600093pt;}
.h3_c00483{height:43.031250pt;}
.h2_c00483{height:57.781250pt;}
.h5_c00483{height:64.375000pt;}
.h1_c00483{height:953.201333pt;}
.h0_c00483{height:1122.666667pt;}
.w3_c00483{width:26.694667pt;}
.w1_c00483{width:566.533333pt;}
.w2_c00483{width:582.796000pt;}
.w0_c00483{width:793.333333pt;}
.x0_c00483{left:0.000000pt;}
.x3_c00483{left:89.952000pt;}
.x2_c00483{left:110.048000pt;}
.x1_c00483{left:113.400000pt;}
.x4_c00483{left:129.952000pt;}
.x5_c00483{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00484;src:url('chunks/assets/font_9db1b05eb360d763d8ddf4f3.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00484;src:url('chunks/assets/font_1dc391abcd9069de4f7048a1.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:1.330566;font-style: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;}
.ls1_c00484{letter-spacing:0.000000px;}
.ls0_c00484{letter-spacing:2549.394000px;}
.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:0.000000px;}
.fc1_c00484{color:transparent;}
.fc0_c00484{color:rgb(0,0,0);}
.fs0_c00484{font-size:54.000000px;}
.fs1_c00484{font-size:72.000000px;}
.y0_c00484{bottom:0.000000px;}
.y5_c00484{bottom:3.787500px;}
.y3_c00484{bottom:22.194000px;}
.y2_c00484{bottom:37.596000px;}
.y4_c00484{bottom:56.735596px;}
.y1_c00484{bottom:103.404000px;}
.h3_c00484{height:19.800105px;}
.h2_c00484{height:48.410156px;}
.h4_c00484{height:72.421875px;}
.h1_c00484{height:1057.090500px;}
.h0_c00484{height:1263.000000px;}
.w3_c00484{width:30.033000px;}
.w1_c00484{width:637.350000px;}
.w2_c00484{width:655.645500px;}
.w0_c00484{width:892.500000px;}
.x0_c00484{left:0.000000px;}
.x2_c00484{left:123.804000px;}
.x1_c00484{left:127.575000px;}
.x3_c00484{left:443.472000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls1_c00484{letter-spacing:0.000000pt;}
.ls0_c00484{letter-spacing:2266.128000pt;}
.ws0_c00484{word-spacing:0.000000pt;}
.fs0_c00484{font-size:48.000000pt;}
.fs1_c00484{font-size:64.000000pt;}
.y0_c00484{bottom:0.000000pt;}
.y5_c00484{bottom:3.366667pt;}
.y3_c00484{bottom:19.728000pt;}
.y2_c00484{bottom:33.418667pt;}
.y4_c00484{bottom:50.431641pt;}
.y1_c00484{bottom:91.914667pt;}
.h3_c00484{height:17.600093pt;}
.h2_c00484{height:43.031250pt;}
.h4_c00484{height:64.375000pt;}
.h1_c00484{height:939.636000pt;}
.h0_c00484{height:1122.666667pt;}
.w3_c00484{width:26.696000pt;}
.w1_c00484{width:566.533333pt;}
.w2_c00484{width:582.796000pt;}
.w0_c00484{width:793.333333pt;}
.x0_c00484{left:0.000000pt;}
.x2_c00484{left:110.048000pt;}
.x1_c00484{left:113.400000pt;}
.x3_c00484{left:394.197333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00485;src:url('chunks/assets/font_9db1b05eb360d763d8ddf4f3.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00485;src:url('chunks/assets/font_7380a04892bd90ab4bd5f0e5.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;line-height:1.330566;font-style: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;}
.ls1_c00485{letter-spacing:0.000000px;}
.ls0_c00485{letter-spacing:2549.394000px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00485{word-spacing:0.000000px;}
.fc1_c00485{color:transparent;}
.fc0_c00485{color:rgb(0,0,0);}
.fs0_c00485{font-size:54.000000px;}
.fs1_c00485{font-size:72.000000px;}
.y0_c00485{bottom:0.000000px;}
.y6_c00485{bottom:3.787500px;}
.y4_c00485{bottom:41.019900px;}
.y2_c00485{bottom:55.275000px;}
.y5_c00485{bottom:56.735596px;}
.y3_c00485{bottom:106.275000px;}
.y1_c00485{bottom:106.725000px;}
.h5_c00485{height:19.800105px;}
.h2_c00485{height:48.410156px;}
.h4_c00485{height:64.546875px;}
.h6_c00485{height:72.421875px;}
.h1_c00485{height:1053.771000px;}
.h3_c00485{height:1054.221000px;}
.h0_c00485{height:1263.000000px;}
.w3_c00485{width:30.031500px;}
.w1_c00485{width:637.350000px;}
.w2_c00485{width:656.902500px;}
.w0_c00485{width:892.500000px;}
.x0_c00485{left:0.000000px;}
.x2_c00485{left:122.547000px;}
.x1_c00485{left:127.575000px;}
.x3_c00485{left:444.729000px;}
.x4_c00485{left:734.908997px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls1_c00485{letter-spacing:0.000000pt;}
.ls0_c00485{letter-spacing:2266.128000pt;}
.ws0_c00485{word-spacing:0.000000pt;}
.fs0_c00485{font-size:48.000000pt;}
.fs1_c00485{font-size:64.000000pt;}
.y0_c00485{bottom:0.000000pt;}
.y6_c00485{bottom:3.366667pt;}
.y4_c00485{bottom:36.462133pt;}
.y2_c00485{bottom:49.133333pt;}
.y5_c00485{bottom:50.431641pt;}
.y3_c00485{bottom:94.466667pt;}
.y1_c00485{bottom:94.866667pt;}
.h5_c00485{height:17.600093pt;}
.h2_c00485{height:43.031250pt;}
.h4_c00485{height:57.375000pt;}
.h6_c00485{height:64.375000pt;}
.h1_c00485{height:936.685333pt;}
.h3_c00485{height:937.085333pt;}
.h0_c00485{height:1122.666667pt;}
.w3_c00485{width:26.694667pt;}
.w1_c00485{width:566.533333pt;}
.w2_c00485{width:583.913333pt;}
.w0_c00485{width:793.333333pt;}
.x0_c00485{left:0.000000pt;}
.x2_c00485{left:108.930667pt;}
.x1_c00485{left:113.400000pt;}
.x3_c00485{left:395.314667pt;}
.x4_c00485{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00486;src:url('chunks/assets/font_9db1b05eb360d763d8ddf4f3.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.106934;font-style:normal;font-weight:normal;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_a07546cdf0621ec947ae7759.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:1.330566;font-style: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;}
.ls1_c00486{letter-spacing:0.000000px;}
.ls0_c00486{letter-spacing:2549.376000px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00486{word-spacing:0.000000px;}
.fc1_c00486{color:transparent;}
.fc0_c00486{color:rgb(0,0,0);}
.fs1_c00486{font-size:54.000000px;}
.fs0_c00486{font-size:72.000000px;}
.y0_c00486{bottom:0.000000px;}
.y6_c00486{bottom:3.787500px;}
.y4_c00486{bottom:19.119300px;}
.y2_c00486{bottom:34.275000px;}
.y5_c00486{bottom:56.735596px;}
.y3_c00486{bottom:106.275000px;}
.y1_c00486{bottom:106.725000px;}
.h5_c00486{height:19.800105px;}
.h4_c00486{height:48.410156px;}
.h2_c00486{height:64.546875px;}
.h6_c00486{height:72.421875px;}
.h1_c00486{height:1055.028000px;}
.h3_c00486{height:1055.478000px;}
.h0_c00486{height:1263.000000px;}
.w3_c00486{width:30.033000px;}
.w1_c00486{width:637.350000px;}
.w2_c00486{width:658.159500px;}
.w0_c00486{width:892.500000px;}
.x0_c00486{left:0.000000px;}
.x2_c00486{left:122.547000px;}
.x1_c00486{left:127.575000px;}
.x3_c00486{left:453.232950px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls1_c00486{letter-spacing:0.000000pt;}
.ls0_c00486{letter-spacing:2266.112000pt;}
.ws0_c00486{word-spacing:0.000000pt;}
.fs1_c00486{font-size:48.000000pt;}
.fs0_c00486{font-size:64.000000pt;}
.y0_c00486{bottom:0.000000pt;}
.y6_c00486{bottom:3.366667pt;}
.y4_c00486{bottom:16.994933pt;}
.y2_c00486{bottom:30.466667pt;}
.y5_c00486{bottom:50.431641pt;}
.y3_c00486{bottom:94.466667pt;}
.y1_c00486{bottom:94.866667pt;}
.h5_c00486{height:17.600093pt;}
.h4_c00486{height:43.031250pt;}
.h2_c00486{height:57.375000pt;}
.h6_c00486{height:64.375000pt;}
.h1_c00486{height:937.802667pt;}
.h3_c00486{height:938.202667pt;}
.h0_c00486{height:1122.666667pt;}
.w3_c00486{width:26.696000pt;}
.w1_c00486{width:566.533333pt;}
.w2_c00486{width:585.030667pt;}
.w0_c00486{width:793.333333pt;}
.x0_c00486{left:0.000000pt;}
.x2_c00486{left:108.930667pt;}
.x1_c00486{left:113.400000pt;}
.x3_c00486{left:402.873733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00487;src:url('chunks/assets/font_47595d37bf9f0a8ab7aa219f.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00487;src:url('chunks/assets/font_78a84473deca33453ab6b603.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;line-height:1.330566;font-style: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;}
.ls2_c00487{letter-spacing:-0.010800px;}
.ls1_c00487{letter-spacing:0.000000px;}
.ls0_c00487{letter-spacing:2549.376000px;}
.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:0.000000px;}
.fc1_c00487{color:transparent;}
.fc0_c00487{color:rgb(0,0,0);}
.fs1_c00487{font-size:54.000000px;}
.fs0_c00487{font-size:72.000000px;}
.y0_c00487{bottom:0.000000px;}
.y7_c00487{bottom:3.787500px;}
.y5_c00487{bottom:37.725000px;}
.y3_c00487{bottom:52.275000px;}
.y6_c00487{bottom:56.735596px;}
.y4_c00487{bottom:106.275000px;}
.y1_c00487{bottom:106.725000px;}
.y2_c00487{bottom:583.275000px;}
.h5_c00487{height:19.800105px;}
.h4_c00487{height:48.410156px;}
.h2_c00487{height:64.546875px;}
.h6_c00487{height:72.421875px;}
.h1_c00487{height:1055.028000px;}
.h3_c00487{height:1055.478000px;}
.h0_c00487{height:1263.000000px;}
.w3_c00487{width:30.031500px;}
.w1_c00487{width:637.350000px;}
.w2_c00487{width:658.159500px;}
.w0_c00487{width:892.500000px;}
.x0_c00487{left:0.000000px;}
.x3_c00487{left:96.453000px;}
.x2_c00487{left:122.547000px;}
.x1_c00487{left:127.575000px;}
.x4_c00487{left:734.908997px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls2_c00487{letter-spacing:-0.009600pt;}
.ls1_c00487{letter-spacing:0.000000pt;}
.ls0_c00487{letter-spacing:2266.112000pt;}
.ws0_c00487{word-spacing:0.000000pt;}
.fs1_c00487{font-size:48.000000pt;}
.fs0_c00487{font-size:64.000000pt;}
.y0_c00487{bottom:0.000000pt;}
.y7_c00487{bottom:3.366667pt;}
.y5_c00487{bottom:33.533333pt;}
.y3_c00487{bottom:46.466667pt;}
.y6_c00487{bottom:50.431641pt;}
.y4_c00487{bottom:94.466667pt;}
.y1_c00487{bottom:94.866667pt;}
.y2_c00487{bottom:518.466667pt;}
.h5_c00487{height:17.600093pt;}
.h4_c00487{height:43.031250pt;}
.h2_c00487{height:57.375000pt;}
.h6_c00487{height:64.375000pt;}
.h1_c00487{height:937.802667pt;}
.h3_c00487{height:938.202667pt;}
.h0_c00487{height:1122.666667pt;}
.w3_c00487{width:26.694667pt;}
.w1_c00487{width:566.533333pt;}
.w2_c00487{width:585.030667pt;}
.w0_c00487{width:793.333333pt;}
.x0_c00487{left:0.000000pt;}
.x3_c00487{left:85.736000pt;}
.x2_c00487{left:108.930667pt;}
.x1_c00487{left:113.400000pt;}
.x4_c00487{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00488;src:url('chunks/assets/font_9db1b05eb360d763d8ddf4f3.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00488;src:url('chunks/assets/font_ed7bbca96b23c18edb306083.woff2')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:1.330566;font-style: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:0.000000px;}
.fc1_c00488{color:transparent;}
.fc0_c00488{color:rgb(0,0,0);}
.fs0_c00488{font-size:54.000000px;}
.fs1_c00488{font-size:72.000000px;}
.y0_c00488{bottom:0.000000px;}
.y5_c00488{bottom:3.787500px;}
.y3_c00488{bottom:12.571500px;}
.y2_c00488{bottom:32.092500px;}
.y4_c00488{bottom:56.735596px;}
.y1_c00488{bottom:106.275000px;}
.h4_c00488{height:19.800105px;}
.h2_c00488{height:35.991211px;}
.h3_c00488{height:48.410156px;}
.h5_c00488{height:72.421875px;}
.h1_c00488{height:1054.221000px;}
.h0_c00488{height:1263.000000px;}
.w2_c00488{width:30.033000px;}
.w1_c00488{width:655.645500px;}
.w0_c00488{width:892.500000px;}
.x0_c00488{left:0.000000px;}
.x2_c00488{left:3.771000px;}
.x1_c00488{left:123.804000px;}
.x4_c00488{left:127.559509px;}
.x3_c00488{left:451.971000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls0_c00488{letter-spacing:0.000000pt;}
.ws0_c00488{word-spacing:0.000000pt;}
.fs0_c00488{font-size:48.000000pt;}
.fs1_c00488{font-size:64.000000pt;}
.y0_c00488{bottom:0.000000pt;}
.y5_c00488{bottom:3.366667pt;}
.y3_c00488{bottom:11.174667pt;}
.y2_c00488{bottom:28.526667pt;}
.y4_c00488{bottom:50.431641pt;}
.y1_c00488{bottom:94.466667pt;}
.h4_c00488{height:17.600093pt;}
.h2_c00488{height:31.992188pt;}
.h3_c00488{height:43.031250pt;}
.h5_c00488{height:64.375000pt;}
.h1_c00488{height:937.085333pt;}
.h0_c00488{height:1122.666667pt;}
.w2_c00488{width:26.696000pt;}
.w1_c00488{width:582.796000pt;}
.w0_c00488{width:793.333333pt;}
.x0_c00488{left:0.000000pt;}
.x2_c00488{left:3.352000pt;}
.x1_c00488{left:110.048000pt;}
.x4_c00488{left:113.386231pt;}
.x3_c00488{left:401.752000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00489;src:url('chunks/assets/font_622ba78e6ec67826cc9c4450.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00489;src:url('chunks/assets/font_21be95662bfb70c1fa03cd7e.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:1.330566;font-style: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;}
.ls2_c00489{letter-spacing:-0.010800px;}
.ls1_c00489{letter-spacing:0.000000px;}
.ls0_c00489{letter-spacing:2549.394000px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00489{word-spacing:0.000000px;}
._1_c00489{width:3.790800px;}
._0_c00489{width:6.766200px;}
.fc1_c00489{color:transparent;}
.fc0_c00489{color:rgb(0,0,0);}
.fs0_c00489{font-size:54.000000px;}
.fs1_c00489{font-size:72.000000px;}
.y0_c00489{bottom:0.000000px;}
.y7_c00489{bottom:3.787500px;}
.y5_c00489{bottom:28.278000px;}
.y4_c00489{bottom:43.276500px;}
.y6_c00489{bottom:56.735596px;}
.y3_c00489{bottom:58.275000px;}
.y2_c00489{bottom:73.275000px;}
.y1_c00489{bottom:97.725000px;}
.h3_c00489{height:19.800105px;}
.h2_c00489{height:48.410156px;}
.h4_c00489{height:72.421875px;}
.h1_c00489{height:1062.771000px;}
.h0_c00489{height:1263.000000px;}
.w3_c00489{width:30.031500px;}
.w1_c00489{width:637.350000px;}
.w2_c00489{width:655.645500px;}
.w0_c00489{width:892.500000px;}
.x0_c00489{left:0.000000px;}
.x3_c00489{left:3.696000px;}
.x2_c00489{left:123.804000px;}
.x1_c00489{left:127.575000px;}
.x4_c00489{left:734.908997px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls2_c00489{letter-spacing:-0.009600pt;}
.ls1_c00489{letter-spacing:0.000000pt;}
.ls0_c00489{letter-spacing:2266.128000pt;}
.ws0_c00489{word-spacing:0.000000pt;}
._1_c00489{width:3.369600pt;}
._0_c00489{width:6.014400pt;}
.fs0_c00489{font-size:48.000000pt;}
.fs1_c00489{font-size:64.000000pt;}
.y0_c00489{bottom:0.000000pt;}
.y7_c00489{bottom:3.366667pt;}
.y5_c00489{bottom:25.136000pt;}
.y4_c00489{bottom:38.468000pt;}
.y6_c00489{bottom:50.431641pt;}
.y3_c00489{bottom:51.800000pt;}
.y2_c00489{bottom:65.133333pt;}
.y1_c00489{bottom:86.866667pt;}
.h3_c00489{height:17.600093pt;}
.h2_c00489{height:43.031250pt;}
.h4_c00489{height:64.375000pt;}
.h1_c00489{height:944.685333pt;}
.h0_c00489{height:1122.666667pt;}
.w3_c00489{width:26.694667pt;}
.w1_c00489{width:566.533333pt;}
.w2_c00489{width:582.796000pt;}
.w0_c00489{width:793.333333pt;}
.x0_c00489{left:0.000000pt;}
.x3_c00489{left:3.285333pt;}
.x2_c00489{left:110.048000pt;}
.x1_c00489{left:113.400000pt;}
.x4_c00489{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a25b7e10b6ea493bf45dd186.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.113281;font-style:normal;font-weight:normal;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_f63f6547f700cf5ed4d04173.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00490;src:url('chunks/assets/font_ec2c8b60f952508927151553.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00490;src:url('chunks/assets/font_c5acd0b781772b134e51f159.woff2')format("woff");}.ff4_c00490{font-family:ff4_c00490;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00490{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls3_c00490{letter-spacing:-0.014400px;}
.ls2_c00490{letter-spacing:0.000000px;}
.ls1_c00490{letter-spacing:0.014400px;}
.ls0_c00490{letter-spacing:2549.394000px;}
.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:0.000000px;}
.ws0_c00490{word-spacing:3.628800px;}
._3_c00490{margin-left:-2.986200px;}
._0_c00490{width:3.830400px;}
._2_c00490{width:8.539200px;}
._1_c00490{width:9.820800px;}
.fc1_c00490{color:transparent;}
.fc0_c00490{color:rgb(0,0,0);}
.fs1_c00490{font-size:54.000000px;}
.fs0_c00490{font-size:72.000000px;}
.y0_c00490{bottom:0.000000px;}
.yb_c00490{bottom:3.787500px;}
.y9_c00490{bottom:21.715500px;}
.y8_c00490{bottom:36.715500px;}
.ya_c00490{bottom:56.735596px;}
.y1_c00490{bottom:89.284500px;}
.y7_c00490{bottom:837.723750px;}
.y6_c00490{bottom:879.717750px;}
.y5_c00490{bottom:920.217750px;}
.y4_c00490{bottom:962.211750px;}
.y3_c00490{bottom:1002.711750px;}
.y2_c00490{bottom:1050.843750px;}
.h5_c00490{height:19.800105px;}
.h4_c00490{height:48.410156px;}
.h3_c00490{height:64.546875px;}
.h2_c00490{height:65.003906px;}
.h6_c00490{height:72.421875px;}
.h1_c00490{height:1072.468500px;}
.h0_c00490{height:1263.000000px;}
.w3_c00490{width:30.033000px;}
.w2_c00490{width:637.350000px;}
.w1_c00490{width:656.902500px;}
.w0_c00490{width:892.500000px;}
.x0_c00490{left:0.000000px;}
.x2_c00490{left:5.028000px;}
.x3_c00490{left:46.950000px;}
.x5_c00490{left:79.953000px;}
.x1_c00490{left:122.547000px;}
.x4_c00490{left:127.575000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls3_c00490{letter-spacing:-0.012800pt;}
.ls2_c00490{letter-spacing:0.000000pt;}
.ls1_c00490{letter-spacing:0.012800pt;}
.ls0_c00490{letter-spacing:2266.128000pt;}
.ws1_c00490{word-spacing:0.000000pt;}
.ws0_c00490{word-spacing:3.225600pt;}
._3_c00490{margin-left:-2.654400pt;}
._0_c00490{width:3.404800pt;}
._2_c00490{width:7.590400pt;}
._1_c00490{width:8.729600pt;}
.fs1_c00490{font-size:48.000000pt;}
.fs0_c00490{font-size:64.000000pt;}
.y0_c00490{bottom:0.000000pt;}
.yb_c00490{bottom:3.366667pt;}
.y9_c00490{bottom:19.302667pt;}
.y8_c00490{bottom:32.636000pt;}
.ya_c00490{bottom:50.431641pt;}
.y1_c00490{bottom:79.364000pt;}
.y7_c00490{bottom:744.643333pt;}
.y6_c00490{bottom:781.971333pt;}
.y5_c00490{bottom:817.971333pt;}
.y4_c00490{bottom:855.299333pt;}
.y3_c00490{bottom:891.299333pt;}
.y2_c00490{bottom:934.083333pt;}
.h5_c00490{height:17.600093pt;}
.h4_c00490{height:43.031250pt;}
.h3_c00490{height:57.375000pt;}
.h2_c00490{height:57.781250pt;}
.h6_c00490{height:64.375000pt;}
.h1_c00490{height:953.305333pt;}
.h0_c00490{height:1122.666667pt;}
.w3_c00490{width:26.696000pt;}
.w2_c00490{width:566.533333pt;}
.w1_c00490{width:583.913333pt;}
.w0_c00490{width:793.333333pt;}
.x0_c00490{left:0.000000pt;}
.x2_c00490{left:4.469333pt;}
.x3_c00490{left:41.733333pt;}
.x5_c00490{left:71.069333pt;}
.x1_c00490{left:108.930667pt;}
.x4_c00490{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00491;src:url('chunks/assets/font_5d22bca3d93ae5c088281686.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00491;src:url('chunks/assets/font_0ceccfe7bdd268e455139a71.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls3_c00491{letter-spacing:0.000000px;}
.ls2_c00491{letter-spacing:0.010800px;}
.ls1_c00491{letter-spacing:1801.434000px;}
.ls0_c00491{letter-spacing:2549.394000px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00491{word-spacing:0.000000px;}
._0_c00491{width:4.212000px;}
._1_c00491{width:7.965000px;}
.fc1_c00491{color:transparent;}
.fc0_c00491{color:rgb(0,0,0);}
.fs0_c00491{font-size:54.000000px;}
.fs1_c00491{font-size:72.000000px;}
.y0_c00491{bottom:0.000000px;}
.y9_c00491{bottom:3.787500px;}
.y7_c00491{bottom:7.600500px;}
.y6_c00491{bottom:22.599000px;}
.y5_c00491{bottom:39.096000px;}
.y8_c00491{bottom:56.735596px;}
.y1_c00491{bottom:103.404000px;}
.y4_c00491{bottom:513.097500px;}
.y3_c00491{bottom:528.096000px;}
.y2_c00491{bottom:543.096000px;}
.h3_c00491{height:19.800105px;}
.h2_c00491{height:48.410156px;}
.h4_c00491{height:72.421875px;}
.h1_c00491{height:1057.090500px;}
.h0_c00491{height:1263.000000px;}
.w3_c00491{width:30.031500px;}
.w1_c00491{width:637.350000px;}
.w2_c00491{width:656.902500px;}
.w0_c00491{width:892.500000px;}
.x0_c00491{left:0.000000px;}
.x3_c00491{left:4.953000px;}
.x4_c00491{left:97.953000px;}
.x2_c00491{left:122.547000px;}
.x1_c00491{left:127.575000px;}
.x5_c00491{left:734.908997px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls3_c00491{letter-spacing:0.000000pt;}
.ls2_c00491{letter-spacing:0.009600pt;}
.ls1_c00491{letter-spacing:1601.274667pt;}
.ls0_c00491{letter-spacing:2266.128000pt;}
.ws0_c00491{word-spacing:0.000000pt;}
._0_c00491{width:3.744000pt;}
._1_c00491{width:7.080000pt;}
.fs0_c00491{font-size:48.000000pt;}
.fs1_c00491{font-size:64.000000pt;}
.y0_c00491{bottom:0.000000pt;}
.y9_c00491{bottom:3.366667pt;}
.y7_c00491{bottom:6.756000pt;}
.y6_c00491{bottom:20.088000pt;}
.y5_c00491{bottom:34.752000pt;}
.y8_c00491{bottom:50.431641pt;}
.y1_c00491{bottom:91.914667pt;}
.y4_c00491{bottom:456.086667pt;}
.y3_c00491{bottom:469.418667pt;}
.y2_c00491{bottom:482.752000pt;}
.h3_c00491{height:17.600093pt;}
.h2_c00491{height:43.031250pt;}
.h4_c00491{height:64.375000pt;}
.h1_c00491{height:939.636000pt;}
.h0_c00491{height:1122.666667pt;}
.w3_c00491{width:26.694667pt;}
.w1_c00491{width:566.533333pt;}
.w2_c00491{width:583.913333pt;}
.w0_c00491{width:793.333333pt;}
.x0_c00491{left:0.000000pt;}
.x3_c00491{left:4.402667pt;}
.x4_c00491{left:87.069333pt;}
.x2_c00491{left:108.930667pt;}
.x1_c00491{left:113.400000pt;}
.x5_c00491{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00492;src:url('chunks/assets/font_516b554066ca6cc170adf31b.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00492;src:url('chunks/assets/font_0b976a8b207f3e7fc4a4152a.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.330566;font-style: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:0.000000px;}
.fc0_c00492{color:rgb(0,0,0);}
.fs0_c00492{font-size:54.000000px;}
.fs1_c00492{font-size:72.000000px;}
.y0_c00492{bottom:0.000000px;}
.y5_c00492{bottom:3.787500px;}
.y3_c00492{bottom:7.597500px;}
.y2_c00492{bottom:22.596000px;}
.y4_c00492{bottom:56.735596px;}
.y1_c00492{bottom:103.404000px;}
.h4_c00492{height:19.800105px;}
.h2_c00492{height:35.991211px;}
.h3_c00492{height:48.410156px;}
.h5_c00492{height:72.421875px;}
.h1_c00492{height:1057.090500px;}
.h0_c00492{height:1263.000000px;}
.w2_c00492{width:30.033000px;}
.w1_c00492{width:644.890500px;}
.w0_c00492{width:892.500000px;}
.x0_c00492{left:0.000000px;}
.x2_c00492{left:3.696000px;}
.x3_c00492{left:116.191500px;}
.x1_c00492{left:123.804000px;}
.x4_c00492{left:127.559509px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls0_c00492{letter-spacing:0.000000pt;}
.ws0_c00492{word-spacing:0.000000pt;}
.fs0_c00492{font-size:48.000000pt;}
.fs1_c00492{font-size:64.000000pt;}
.y0_c00492{bottom:0.000000pt;}
.y5_c00492{bottom:3.366667pt;}
.y3_c00492{bottom:6.753333pt;}
.y2_c00492{bottom:20.085333pt;}
.y4_c00492{bottom:50.431641pt;}
.y1_c00492{bottom:91.914667pt;}
.h4_c00492{height:17.600093pt;}
.h2_c00492{height:31.992188pt;}
.h3_c00492{height:43.031250pt;}
.h5_c00492{height:64.375000pt;}
.h1_c00492{height:939.636000pt;}
.h0_c00492{height:1122.666667pt;}
.w2_c00492{width:26.696000pt;}
.w1_c00492{width:573.236000pt;}
.w0_c00492{width:793.333333pt;}
.x0_c00492{left:0.000000pt;}
.x2_c00492{left:3.285333pt;}
.x3_c00492{left:103.281333pt;}
.x1_c00492{left:110.048000pt;}
.x4_c00492{left:113.386231pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00493;src:url('chunks/assets/font_08df59d785c5089c450c23fc.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00493;src:url('chunks/assets/font_c5acd0b781772b134e51f159.woff2')format("woff");}.ff3_c00493{font-family:ff3_c00493;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00493{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.ls1_c00493{letter-spacing:0.000000px;}
.ls0_c00493{letter-spacing:2549.394000px;}
.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:0.000000px;}
.fc1_c00493{color:transparent;}
.fc0_c00493{color:rgb(0,0,0);}
.fs0_c00493{font-size:54.000000px;}
.fs1_c00493{font-size:72.000000px;}
.y0_c00493{bottom:0.000000px;}
.y5_c00493{bottom:3.787500px;}
.y3_c00493{bottom:51.081000px;}
.y4_c00493{bottom:56.735596px;}
.y2_c00493{bottom:66.081000px;}
.y1_c00493{bottom:88.419000px;}
.h3_c00493{height:19.800105px;}
.h2_c00493{height:48.410156px;}
.h4_c00493{height:72.421875px;}
.h1_c00493{height:1072.077000px;}
.h0_c00493{height:1263.000000px;}
.w3_c00493{width:30.031500px;}
.w1_c00493{width:637.350000px;}
.w2_c00493{width:655.645500px;}
.w0_c00493{width:892.500000px;}
.x0_c00493{left:0.000000px;}
.x3_c00493{left:77.196000px;}
.x2_c00493{left:123.804000px;}
.x1_c00493{left:127.575000px;}
.x4_c00493{left:734.908997px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls1_c00493{letter-spacing:0.000000pt;}
.ls0_c00493{letter-spacing:2266.128000pt;}
.ws0_c00493{word-spacing:0.000000pt;}
.fs0_c00493{font-size:48.000000pt;}
.fs1_c00493{font-size:64.000000pt;}
.y0_c00493{bottom:0.000000pt;}
.y5_c00493{bottom:3.366667pt;}
.y3_c00493{bottom:45.405333pt;}
.y4_c00493{bottom:50.431641pt;}
.y2_c00493{bottom:58.738667pt;}
.y1_c00493{bottom:78.594667pt;}
.h3_c00493{height:17.600093pt;}
.h2_c00493{height:43.031250pt;}
.h4_c00493{height:64.375000pt;}
.h1_c00493{height:952.957333pt;}
.h0_c00493{height:1122.666667pt;}
.w3_c00493{width:26.694667pt;}
.w1_c00493{width:566.533333pt;}
.w2_c00493{width:582.796000pt;}
.w0_c00493{width:793.333333pt;}
.x0_c00493{left:0.000000pt;}
.x3_c00493{left:68.618667pt;}
.x2_c00493{left:110.048000pt;}
.x1_c00493{left:113.400000pt;}
.x4_c00493{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00494;src:url('chunks/assets/font_14fed670c08606a3243fce23.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00494;src:url('chunks/assets/font_e2e0d14126f67404f773160d.woff2')format("woff");}.ff3_c00494{font-family:ff3_c00494;line-height:1.330566;font-style: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;}
.ls1_c00494{letter-spacing:0.000000px;}
.ls0_c00494{letter-spacing:2549.394000px;}
.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:0.000000px;}
.fc1_c00494{color:transparent;}
.fc0_c00494{color:rgb(0,0,0);}
.fs0_c00494{font-size:54.000000px;}
.fs1_c00494{font-size:72.000000px;}
.y0_c00494{bottom:0.000000px;}
.y6_c00494{bottom:3.787500px;}
.y4_c00494{bottom:16.725000px;}
.y2_c00494{bottom:31.275000px;}
.y5_c00494{bottom:56.735596px;}
.y3_c00494{bottom:106.275000px;}
.y1_c00494{bottom:106.725000px;}
.h4_c00494{height:19.800105px;}
.h2_c00494{height:48.410156px;}
.h5_c00494{height:72.421875px;}
.h1_c00494{height:1053.771000px;}
.h3_c00494{height:1054.221000px;}
.h0_c00494{height:1263.000000px;}
.w3_c00494{width:30.033000px;}
.w1_c00494{width:637.350000px;}
.w2_c00494{width:655.645500px;}
.w0_c00494{width:892.500000px;}
.x0_c00494{left:0.000000px;}
.x2_c00494{left:123.804000px;}
.x1_c00494{left:127.575000px;}
.x3_c00494{left:183.696000px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls1_c00494{letter-spacing:0.000000pt;}
.ls0_c00494{letter-spacing:2266.128000pt;}
.ws0_c00494{word-spacing:0.000000pt;}
.fs0_c00494{font-size:48.000000pt;}
.fs1_c00494{font-size:64.000000pt;}
.y0_c00494{bottom:0.000000pt;}
.y6_c00494{bottom:3.366667pt;}
.y4_c00494{bottom:14.866667pt;}
.y2_c00494{bottom:27.800000pt;}
.y5_c00494{bottom:50.431641pt;}
.y3_c00494{bottom:94.466667pt;}
.y1_c00494{bottom:94.866667pt;}
.h4_c00494{height:17.600093pt;}
.h2_c00494{height:43.031250pt;}
.h5_c00494{height:64.375000pt;}
.h1_c00494{height:936.685333pt;}
.h3_c00494{height:937.085333pt;}
.h0_c00494{height:1122.666667pt;}
.w3_c00494{width:26.696000pt;}
.w1_c00494{width:566.533333pt;}
.w2_c00494{width:582.796000pt;}
.w0_c00494{width:793.333333pt;}
.x0_c00494{left:0.000000pt;}
.x2_c00494{left:110.048000pt;}
.x1_c00494{left:113.400000pt;}
.x3_c00494{left:163.285333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00495;src:url('chunks/assets/font_79f49af3d84abf426dfa76b8.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00495;src:url('chunks/assets/font_6670a531bc7030baf360041c.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00495{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.ls2_c00495{letter-spacing:0.000000px;}
.ls1_c00495{letter-spacing:0.010800px;}
.ls0_c00495{letter-spacing:2549.394000px;}
.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:0.000000px;}
.fc1_c00495{color:transparent;}
.fc0_c00495{color:rgb(0,0,0);}
.fs0_c00495{font-size:54.000000px;}
.fs1_c00495{font-size:72.000000px;}
.y0_c00495{bottom:0.000000px;}
.y5_c00495{bottom:3.787500px;}
.y3_c00495{bottom:21.270000px;}
.y2_c00495{bottom:36.270000px;}
.y4_c00495{bottom:56.735596px;}
.y1_c00495{bottom:91.230000px;}
.h3_c00495{height:19.800105px;}
.h2_c00495{height:48.410156px;}
.h4_c00495{height:72.421875px;}
.h1_c00495{height:1069.266000px;}
.h0_c00495{height:1263.000000px;}
.w3_c00495{width:30.031500px;}
.w1_c00495{width:637.350000px;}
.w2_c00495{width:655.645500px;}
.w0_c00495{width:892.500000px;}
.x0_c00495{left:0.000000px;}
.x3_c00495{left:24.696000px;}
.x2_c00495{left:123.804000px;}
.x1_c00495{left:127.575000px;}
.x4_c00495{left:734.908997px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls2_c00495{letter-spacing:0.000000pt;}
.ls1_c00495{letter-spacing:0.009600pt;}
.ls0_c00495{letter-spacing:2266.128000pt;}
.ws0_c00495{word-spacing:0.000000pt;}
.fs0_c00495{font-size:48.000000pt;}
.fs1_c00495{font-size:64.000000pt;}
.y0_c00495{bottom:0.000000pt;}
.y5_c00495{bottom:3.366667pt;}
.y3_c00495{bottom:18.906667pt;}
.y2_c00495{bottom:32.240000pt;}
.y4_c00495{bottom:50.431641pt;}
.y1_c00495{bottom:81.093333pt;}
.h3_c00495{height:17.600093pt;}
.h2_c00495{height:43.031250pt;}
.h4_c00495{height:64.375000pt;}
.h1_c00495{height:950.458667pt;}
.h0_c00495{height:1122.666667pt;}
.w3_c00495{width:26.694667pt;}
.w1_c00495{width:566.533333pt;}
.w2_c00495{width:582.796000pt;}
.w0_c00495{width:793.333333pt;}
.x0_c00495{left:0.000000pt;}
.x3_c00495{left:21.952000pt;}
.x2_c00495{left:110.048000pt;}
.x1_c00495{left:113.400000pt;}
.x4_c00495{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00496;src:url('chunks/assets/font_e5076f929db52b04c7f2e6d8.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00496;src:url('chunks/assets/font_9ffcec59209cfc264c910dbb.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00496{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls1_c00496{letter-spacing:0.000000px;}
.ls0_c00496{letter-spacing:2549.394000px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00496{word-spacing:0.000000px;}
._1_c00496{margin-left:-2.980800px;}
._0_c00496{width:9.990000px;}
.fc1_c00496{color:transparent;}
.fc0_c00496{color:rgb(0,0,0);}
.fs0_c00496{font-size:54.000000px;}
.fs1_c00496{font-size:72.000000px;}
.y0_c00496{bottom:0.000000px;}
.y7_c00496{bottom:3.787500px;}
.y5_c00496{bottom:10.726500px;}
.y4_c00496{bottom:25.725000px;}
.y2_c00496{bottom:40.275000px;}
.y6_c00496{bottom:56.735596px;}
.y3_c00496{bottom:106.275000px;}
.y1_c00496{bottom:106.725000px;}
.h4_c00496{height:19.800105px;}
.h2_c00496{height:48.410156px;}
.h5_c00496{height:72.421875px;}
.h1_c00496{height:1053.771000px;}
.h3_c00496{height:1054.221000px;}
.h0_c00496{height:1263.000000px;}
.w3_c00496{width:30.033000px;}
.w1_c00496{width:637.350000px;}
.w2_c00496{width:655.645500px;}
.w0_c00496{width:892.500000px;}
.x0_c00496{left:0.000000px;}
.x3_c00496{left:3.696000px;}
.x2_c00496{left:123.804000px;}
.x1_c00496{left:127.575000px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls1_c00496{letter-spacing:0.000000pt;}
.ls0_c00496{letter-spacing:2266.128000pt;}
.ws0_c00496{word-spacing:0.000000pt;}
._1_c00496{margin-left:-2.649600pt;}
._0_c00496{width:8.880000pt;}
.fs0_c00496{font-size:48.000000pt;}
.fs1_c00496{font-size:64.000000pt;}
.y0_c00496{bottom:0.000000pt;}
.y7_c00496{bottom:3.366667pt;}
.y5_c00496{bottom:9.534667pt;}
.y4_c00496{bottom:22.866667pt;}
.y2_c00496{bottom:35.800000pt;}
.y6_c00496{bottom:50.431641pt;}
.y3_c00496{bottom:94.466667pt;}
.y1_c00496{bottom:94.866667pt;}
.h4_c00496{height:17.600093pt;}
.h2_c00496{height:43.031250pt;}
.h5_c00496{height:64.375000pt;}
.h1_c00496{height:936.685333pt;}
.h3_c00496{height:937.085333pt;}
.h0_c00496{height:1122.666667pt;}
.w3_c00496{width:26.696000pt;}
.w1_c00496{width:566.533333pt;}
.w2_c00496{width:582.796000pt;}
.w0_c00496{width:793.333333pt;}
.x0_c00496{left:0.000000pt;}
.x3_c00496{left:3.285333pt;}
.x2_c00496{left:110.048000pt;}
.x1_c00496{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00497;src:url('chunks/assets/font_7970b7fcbafb49d32d30825b.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00497;src:url('chunks/assets/font_3a120e7b29c106fc20654fa9.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:1.330566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00497{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls1_c00497{letter-spacing:0.000000px;}
.ls0_c00497{letter-spacing:2549.394000px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00497{word-spacing:0.000000px;}
.fc1_c00497{color:transparent;}
.fc0_c00497{color:rgb(0,0,0);}
.fs0_c00497{font-size:54.000000px;}
.fs1_c00497{font-size:72.000000px;}
.y0_c00497{bottom:0.000000px;}
.y6_c00497{bottom:3.787500px;}
.y4_c00497{bottom:15.225000px;}
.y2_c00497{bottom:29.775000px;}
.y5_c00497{bottom:56.735596px;}
.y3_c00497{bottom:106.275000px;}
.y1_c00497{bottom:106.725000px;}
.h4_c00497{height:19.800105px;}
.h2_c00497{height:48.410156px;}
.h5_c00497{height:72.421875px;}
.h1_c00497{height:1053.771000px;}
.h3_c00497{height:1054.221000px;}
.h0_c00497{height:1263.000000px;}
.w3_c00497{width:30.031500px;}
.w1_c00497{width:637.350000px;}
.w2_c00497{width:655.645500px;}
.w0_c00497{width:892.500000px;}
.x0_c00497{left:0.000000px;}
.x3_c00497{left:44.196000px;}
.x2_c00497{left:123.804000px;}
.x1_c00497{left:127.575000px;}
.x4_c00497{left:734.908997px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls1_c00497{letter-spacing:0.000000pt;}
.ls0_c00497{letter-spacing:2266.128000pt;}
.ws0_c00497{word-spacing:0.000000pt;}
.fs0_c00497{font-size:48.000000pt;}
.fs1_c00497{font-size:64.000000pt;}
.y0_c00497{bottom:0.000000pt;}
.y6_c00497{bottom:3.366667pt;}
.y4_c00497{bottom:13.533333pt;}
.y2_c00497{bottom:26.466667pt;}
.y5_c00497{bottom:50.431641pt;}
.y3_c00497{bottom:94.466667pt;}
.y1_c00497{bottom:94.866667pt;}
.h4_c00497{height:17.600093pt;}
.h2_c00497{height:43.031250pt;}
.h5_c00497{height:64.375000pt;}
.h1_c00497{height:936.685333pt;}
.h3_c00497{height:937.085333pt;}
.h0_c00497{height:1122.666667pt;}
.w3_c00497{width:26.694667pt;}
.w1_c00497{width:566.533333pt;}
.w2_c00497{width:582.796000pt;}
.w0_c00497{width:793.333333pt;}
.x0_c00497{left:0.000000pt;}
.x3_c00497{left:39.285333pt;}
.x2_c00497{left:110.048000pt;}
.x1_c00497{left:113.400000pt;}
.x4_c00497{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00498;src:url('chunks/assets/font_84e40d7dd725b10d5b5a3400.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00498;src:url('chunks/assets/font_2baa26fb98a5e9ac21782fc1.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00498;src:url('chunks/assets/font_eec5775a62743ed723bcadbd.woff2')format("woff");}.ff4_c00498{font-family:ff4_c00498;line-height:1.330566;font-style: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:2549.376000px;}
.sc__c00498{text-shadow:none;}
.sc0_c00498{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00498{-webkit-text-stroke:0px transparent;}
.sc0_c00498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00498{word-spacing:0.000000px;}
._0_c00498{width:5.707800px;}
.fc1_c00498{color:transparent;}
.fc0_c00498{color:rgb(0,0,0);}
.fs1_c00498{font-size:54.000000px;}
.fs0_c00498{font-size:72.000000px;}
.y0_c00498{bottom:0.000000px;}
.y6_c00498{bottom:3.787500px;}
.y4_c00498{bottom:7.824000px;}
.y3_c00498{bottom:22.822500px;}
.y2_c00498{bottom:37.822500px;}
.y5_c00498{bottom:56.735596px;}
.y1_c00498{bottom:104.677500px;}
.h4_c00498{height:19.800105px;}
.h3_c00498{height:48.410156px;}
.h2_c00498{height:65.003906px;}
.h5_c00498{height:72.421875px;}
.h1_c00498{height:1057.075500px;}
.h0_c00498{height:1263.000000px;}
.w3_c00498{width:30.033000px;}
.w1_c00498{width:637.350000px;}
.w2_c00498{width:658.159500px;}
.w0_c00498{width:892.500000px;}
.x0_c00498{left:0.000000px;}
.x3_c00498{left:4.953000px;}
.x2_c00498{left:122.547000px;}
.x1_c00498{left:127.575000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls1_c00498{letter-spacing:0.000000pt;}
.ls0_c00498{letter-spacing:2266.112000pt;}
.ws0_c00498{word-spacing:0.000000pt;}
._0_c00498{width:5.073600pt;}
.fs1_c00498{font-size:48.000000pt;}
.fs0_c00498{font-size:64.000000pt;}
.y0_c00498{bottom:0.000000pt;}
.y6_c00498{bottom:3.366667pt;}
.y4_c00498{bottom:6.954667pt;}
.y3_c00498{bottom:20.286667pt;}
.y2_c00498{bottom:33.620000pt;}
.y5_c00498{bottom:50.431641pt;}
.y1_c00498{bottom:93.046667pt;}
.h4_c00498{height:17.600093pt;}
.h3_c00498{height:43.031250pt;}
.h2_c00498{height:57.781250pt;}
.h5_c00498{height:64.375000pt;}
.h1_c00498{height:939.622667pt;}
.h0_c00498{height:1122.666667pt;}
.w3_c00498{width:26.696000pt;}
.w1_c00498{width:566.533333pt;}
.w2_c00498{width:585.030667pt;}
.w0_c00498{width:793.333333pt;}
.x0_c00498{left:0.000000pt;}
.x3_c00498{left:4.402667pt;}
.x2_c00498{left:108.930667pt;}
.x1_c00498{left:113.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00499;src:url('chunks/assets/font_cb321261f6307925d108befb.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00499;src:url('chunks/assets/font_92c3097b088fb9275f4ef7f8.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:1.330566;font-style: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;}
.ls2_c00499{letter-spacing:0.000000px;}
.ls1_c00499{letter-spacing:0.010800px;}
.ls0_c00499{letter-spacing:2549.394000px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00499{word-spacing:0.000000px;}
.fc1_c00499{color:transparent;}
.fc0_c00499{color:rgb(0,0,0);}
.fs0_c00499{font-size:54.000000px;}
.fs1_c00499{font-size:72.000000px;}
.y0_c00499{bottom:0.000000px;}
.y5_c00499{bottom:3.787500px;}
.y3_c00499{bottom:7.641000px;}
.y2_c00499{bottom:22.641000px;}
.y4_c00499{bottom:56.735596px;}
.y1_c00499{bottom:103.359000px;}
.h3_c00499{height:19.800105px;}
.h2_c00499{height:48.410156px;}
.h4_c00499{height:72.421875px;}
.h1_c00499{height:1057.137000px;}
.h0_c00499{height:1263.000000px;}
.w3_c00499{width:30.031500px;}
.w1_c00499{width:637.350000px;}
.w2_c00499{width:655.645500px;}
.w0_c00499{width:892.500000px;}
.x0_c00499{left:0.000000px;}
.x3_c00499{left:21.696000px;}
.x2_c00499{left:123.804000px;}
.x1_c00499{left:127.575000px;}
.x4_c00499{left:734.908997px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls2_c00499{letter-spacing:0.000000pt;}
.ls1_c00499{letter-spacing:0.009600pt;}
.ls0_c00499{letter-spacing:2266.128000pt;}
.ws0_c00499{word-spacing:0.000000pt;}
.fs0_c00499{font-size:48.000000pt;}
.fs1_c00499{font-size:64.000000pt;}
.y0_c00499{bottom:0.000000pt;}
.y5_c00499{bottom:3.366667pt;}
.y3_c00499{bottom:6.792000pt;}
.y2_c00499{bottom:20.125333pt;}
.y4_c00499{bottom:50.431641pt;}
.y1_c00499{bottom:91.874667pt;}
.h3_c00499{height:17.600093pt;}
.h2_c00499{height:43.031250pt;}
.h4_c00499{height:64.375000pt;}
.h1_c00499{height:939.677333pt;}
.h0_c00499{height:1122.666667pt;}
.w3_c00499{width:26.694667pt;}
.w1_c00499{width:566.533333pt;}
.w2_c00499{width:582.796000pt;}
.w0_c00499{width:793.333333pt;}
.x0_c00499{left:0.000000pt;}
.x3_c00499{left:19.285333pt;}
.x2_c00499{left:110.048000pt;}
.x1_c00499{left:113.400000pt;}
.x4_c00499{left:653.252441pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2c8b60f952508927151553.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00001;src:url('chunks/assets/font_4d2e8b438cfbb24cdd82d08b.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_d9f3fd0711e6197c40b6d930.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.330566;font-style:normal;font-weight:normal;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_d9f3fd0711e6197c40b6d930.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.330566;font-style:normal;font-weight:normal;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_be64ea6b72608fd31aaafe78.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:1.113281;font-style:normal;font-weight:normal;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_68d33f8050dc9547f2b88c44.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00001;src:url('chunks/assets/font_00e4afd436f83c2a1fbfce63.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00001;src:url('chunks/assets/font_96fa34711052f4a5d6ae182e.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00001;src:url('chunks/assets/font_5c3992fffbda0014984348fc.woff2')format("woff");}.ff9_c00001{font-family:ff9_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls2_c00001{letter-spacing:-0.014400px;}
.ls5_c00001{letter-spacing:-0.010800px;}
.ls9_c00001{letter-spacing:-0.007200px;}
.ls1_c00001{letter-spacing:0.000000px;}
.ls6_c00001{letter-spacing:0.010800px;}
.lsa_c00001{letter-spacing:0.014400px;}
.ls7_c00001{letter-spacing:1.180800px;}
.lsb_c00001{letter-spacing:1383.552000px;}
.lsf_c00001{letter-spacing:1466.478000px;}
.ls8_c00001{letter-spacing:2529.792000px;}
.lsc_c00001{letter-spacing:2541.888000px;}
.lsd_c00001{letter-spacing:2544.048000px;}
.lse_c00001{letter-spacing:2545.560000px;}
.ls4_c00001{letter-spacing:2549.376000px;}
.ls0_c00001{letter-spacing:2549.394000px;}
.ls3_c00001{letter-spacing:2549.400000px;}
.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;}
}
.ws1_c00001{word-spacing:-15.022800px;}
.ws0_c00001{word-spacing:0.000000px;}
.ws2_c00001{word-spacing:3.628800px;}
._12_c00001{margin-left:-19.404000px;}
._4_c00001{margin-left:-7.149600px;}
._6_c00001{margin-left:-5.994000px;}
._3_c00001{margin-left:-3.974400px;}
._1c_c00001{margin-left:-2.685600px;}
._15_c00001{margin-left:-1.188000px;}
._0_c00001{width:1.171800px;}
._a_c00001{width:2.179800px;}
._d_c00001{width:3.209400px;}
._13_c00001{width:4.361400px;}
._2_c00001{width:5.580000px;}
._14_c00001{width:6.652800px;}
._5_c00001{width:7.718400px;}
._f_c00001{width:9.066600px;}
._7_c00001{width:10.449000px;}
._10_c00001{width:11.507400px;}
._8_c00001{width:12.621600px;}
._1_c00001{width:13.780800px;}
._1b_c00001{width:15.372000px;}
._17_c00001{width:16.732800px;}
._9_c00001{width:18.187200px;}
._1a_c00001{width:21.225600px;}
._11_c00001{width:22.809600px;}
._e_c00001{width:24.116400px;}
._18_c00001{width:26.053200px;}
._19_c00001{width:27.079200px;}
._16_c00001{width:34.790400px;}
._c_c00001{width:35.992800px;}
._b_c00001{width:37.137600px;}
.fc2_c00001{color:rgb(154,64,62);}
.fc3_c00001{color:rgb(255,38,0);}
.fc1_c00001{color:transparent;}
.fc0_c00001{color:rgb(0,0,0);}
.fs2_c00001{font-size:36.000000px;}
.fs0_c00001{font-size:54.000000px;}
.fs1_c00001{font-size:72.000000px;}
.y0_c00001{bottom:0.000000px;}
.y5_c00001{bottom:3.787500px;}
.yaa_c00001{bottom:5.490450px;}
.y2a_c00001{bottom:6.523500px;}
.yd8_c00001{bottom:6.565500px;}
.yce_c00001{bottom:6.600000px;}
.ye7_c00001{bottom:7.075050px;}
.yee_c00001{bottom:7.113900px;}
.yc1_c00001{bottom:7.296450px;}
.ydd_c00001{bottom:7.474050px;}
.y77_c00001{bottom:7.689000px;}
.y61_c00001{bottom:7.698000px;}
.y1d_c00001{bottom:7.725000px;}
.y12_c00001{bottom:7.726500px;}
.y7a_c00001{bottom:7.728000px;}
.ydc_c00001{bottom:8.067450px;}
.yb8_c00001{bottom:8.360850px;}
.yc2_c00001{bottom:8.431800px;}
.yb3_c00001{bottom:8.665650px;}
.yde_c00001{bottom:8.728350px;}
.y14_c00001{bottom:9.225000px;}
.y2b_c00001{bottom:9.226500px;}
.yae_c00001{bottom:9.771450px;}
.yeb_c00001{bottom:9.799800px;}
.yc4_c00001{bottom:10.725000px;}
.y4f_c00001{bottom:10.726500px;}
.y2e_c00001{bottom:11.492250px;}
.yf2_c00001{bottom:11.855550px;}
.y43_c00001{bottom:12.225000px;}
.y54_c00001{bottom:12.228000px;}
.yab_c00001{bottom:12.771450px;}
.yac_c00001{bottom:12.888600px;}
.yf4_c00001{bottom:12.981600px;}
.ye9_c00001{bottom:13.493550px;}
.y39_c00001{bottom:13.725000px;}
.ybb_c00001{bottom:13.728000px;}
.y50_c00001{bottom:13.742850px;}
.y7f_c00001{bottom:15.146700px;}
.y8e_c00001{bottom:15.190800px;}
.y6c_c00001{bottom:15.225000px;}
.y4d_c00001{bottom:15.226500px;}
.y7e_c00001{bottom:15.228000px;}
.yf0_c00001{bottom:15.364200px;}
.yfc_c00001{bottom:16.055850px;}
.y65_c00001{bottom:16.653750px;}
.y8b_c00001{bottom:16.709250px;}
.yb7_c00001{bottom:16.728000px;}
.y80_c00001{bottom:17.811750px;}
.y74_c00001{bottom:18.225000px;}
.y63_c00001{bottom:18.226500px;}
.ybe_c00001{bottom:19.276500px;}
.y8d_c00001{bottom:19.312500px;}
.yf6_c00001{bottom:20.005800px;}
.ya9_c00001{bottom:20.493450px;}
.y3_c00001{bottom:20.896500px;}
.ya_c00001{bottom:21.226500px;}
.y20_c00001{bottom:21.388500px;}
.y85_c00001{bottom:21.430800px;}
.y29_c00001{bottom:21.522000px;}
.yd7_c00001{bottom:21.565500px;}
.y6a_c00001{bottom:21.573000px;}
.y1a_c00001{bottom:21.598500px;}
.y8f_c00001{bottom:21.640050px;}
.y95_c00001{bottom:22.002000px;}
.yed_c00001{bottom:22.073400px;}
.ye6_c00001{bottom:22.073550px;}
.y1c_c00001{bottom:22.596000px;}
.y34_c00001{bottom:22.597500px;}
.y76_c00001{bottom:22.689000px;}
.y60_c00001{bottom:22.696500px;}
.y11_c00001{bottom:22.725000px;}
.y79_c00001{bottom:22.726500px;}
.y13_c00001{bottom:23.775000px;}
.y3a_c00001{bottom:24.096000px;}
.y24_c00001{bottom:24.225000px;}
.y72_c00001{bottom:24.226500px;}
.y92_c00001{bottom:24.228000px;}
.yad_c00001{bottom:24.321450px;}
.yea_c00001{bottom:24.349800px;}
.y66_c00001{bottom:25.275000px;}
.y26_c00001{bottom:25.725000px;}
.y89_c00001{bottom:25.728000px;}
.ydf_c00001{bottom:26.232600px;}
.yf1_c00001{bottom:26.405550px;}
.yc3_c00001{bottom:26.775000px;}
.y30_c00001{bottom:27.225000px;}
.y53_c00001{bottom:27.226500px;}
.yb2_c00001{bottom:27.321450px;}
.yf3_c00001{bottom:27.531600px;}
.ye8_c00001{bottom:28.043550px;}
.y38_c00001{bottom:28.275000px;}
.yba_c00001{bottom:28.726500px;}
.ye4_c00001{bottom:29.329650px;}
.y83_c00001{bottom:29.330550px;}
.y6b_c00001{bottom:29.775000px;}
.yef_c00001{bottom:29.914200px;}
.y4c_c00001{bottom:30.225000px;}
.y7d_c00001{bottom:30.226500px;}
.y8a_c00001{bottom:31.275000px;}
.y64_c00001{bottom:31.652250px;}
.yb6_c00001{bottom:31.726500px;}
.y73_c00001{bottom:32.775000px;}
.y62_c00001{bottom:33.225000px;}
.yf8_c00001{bottom:33.607800px;}
.y8c_c00001{bottom:34.275000px;}
.yf5_c00001{bottom:34.555800px;}
.ya8_c00001{bottom:35.496450px;}
.y2_c00001{bottom:35.896500px;}
.y9_c00001{bottom:36.225000px;}
.y48_c00001{bottom:36.235500px;}
.y1f_c00001{bottom:36.388500px;}
.y28_c00001{bottom:36.522000px;}
.y69_c00001{bottom:36.571500px;}
.y94_c00001{bottom:37.002000px;}
.y6f_c00001{bottom:37.020000px;}
.y10_c00001{bottom:37.275000px;}
.y3e_c00001{bottom:37.305000px;}
.y84_c00001{bottom:37.531650px;}
.y31_c00001{bottom:37.596000px;}
.y5f_c00001{bottom:37.696500px;}
.y78_c00001{bottom:37.725000px;}
.y19_c00001{bottom:38.098500px;}
.yb1_c00001{bottom:38.268450px;}
.y23_c00001{bottom:38.775000px;}
.y71_c00001{bottom:39.225000px;}
.y91_c00001{bottom:39.226500px;}
.y115_c00001{bottom:39.461250px;}
.y25_c00001{bottom:40.275000px;}
.y45_c00001{bottom:40.725000px;}
.y88_c00001{bottom:40.726500px;}
.y4e_c00001{bottom:41.775000px;}
.y52_c00001{bottom:42.225000px;}
.y2f_c00001{bottom:43.275000px;}
.yb9_c00001{bottom:43.725000px;}
.y4b_c00001{bottom:44.775000px;}
.y7c_c00001{bottom:45.225000px;}
.ye3_c00001{bottom:45.280500px;}
.y82_c00001{bottom:45.709500px;}
.yb5_c00001{bottom:46.725000px;}
.y2d_c00001{bottom:47.775000px;}
.yf7_c00001{bottom:48.157800px;}
.y9c_c00001{bottom:49.048500px;}
.y37_c00001{bottom:49.086000px;}
.ybd_c00001{bottom:49.275000px;}
.y42_c00001{bottom:49.725000px;}
.y98_c00001{bottom:50.488500px;}
.y7_c00001{bottom:50.775000px;}
.y47_c00001{bottom:51.235500px;}
.y6e_c00001{bottom:52.020000px;}
.y3d_c00001{bottom:52.305000px;}
.ya7_c00001{bottom:52.950000px;}
.y68_c00001{bottom:53.071500px;}
.yb0_c00001{bottom:53.271450px;}
.y70_c00001{bottom:53.775000px;}
.y33_c00001{bottom:54.096000px;}
.y90_c00001{bottom:54.225000px;}
.y44_c00001{bottom:55.275000px;}
.y87_c00001{bottom:55.725000px;}
.y4_c00001{bottom:56.735596px;}
.y51_c00001{bottom:56.775000px;}
.y7b_c00001{bottom:59.775000px;}
.yb4_c00001{bottom:62.775000px;}
.ye1_c00001{bottom:63.407250px;}
.y9b_c00001{bottom:64.048500px;}
.y41_c00001{bottom:64.723500px;}
.y97_c00001{bottom:65.488500px;}
.y36_c00001{bottom:65.586000px;}
.y17_c00001{bottom:66.876000px;}
.yaf_c00001{bottom:67.821450px;}
.y86_c00001{bottom:70.275000px;}
.ye0_c00001{bottom:79.508100px;}
.y40_c00001{bottom:79.723500px;}
.y114_c00001{bottom:81.293250px;}
.y16_c00001{bottom:83.376000px;}
.y96_c00001{bottom:84.511500px;}
.y18_c00001{bottom:92.401500px;}
.y6d_c00001{bottom:94.980000px;}
.y3c_c00001{bottom:96.195000px;}
.ybc_c00001{bottom:97.725000px;}
.y3f_c00001{bottom:98.776500px;}
.y1_c00001{bottom:99.103500px;}
.y35_c00001{bottom:99.414000px;}
.y15_c00001{bottom:99.624000px;}
.y9a_c00001{bottom:100.951500px;}
.y81_c00001{bottom:101.290500px;}
.y1e_c00001{bottom:101.611500px;}
.y67_c00001{bottom:102.928500px;}
.y46_c00001{bottom:103.264500px;}
.y99_c00001{bottom:103.404000px;}
.yc5_c00001{bottom:104.401500px;}
.ycf_c00001{bottom:104.434500px;}
.y27_c00001{bottom:104.478000px;}
.ye2_c00001{bottom:104.719500px;}
.y55_c00001{bottom:104.803500px;}
.y75_c00001{bottom:104.811000px;}
.y32_c00001{bottom:104.904000px;}
.y93_c00001{bottom:105.498000px;}
.y9d_c00001{bottom:106.050000px;}
.ye5_c00001{bottom:106.099500px;}
.y8_c00001{bottom:106.275000px;}
.yec_c00001{bottom:106.315500px;}
.y1b_c00001{bottom:106.404000px;}
.y6_c00001{bottom:106.725000px;}
.yfd_c00001{bottom:107.775000px;}
.y113_c00001{bottom:121.793250px;}
.y22_c00001{bottom:145.725000px;}
.y21_c00001{bottom:160.275000px;}
.y112_c00001{bottom:163.787250px;}
.y111_c00001{bottom:205.097250px;}
.yfb_c00001{bottom:238.275000px;}
.y110_c00001{bottom:246.281250px;}
.yfa_c00001{bottom:254.775000px;}
.y10f_c00001{bottom:288.275250px;}
.ycd_c00001{bottom:315.598500px;}
.y10e_c00001{bottom:328.775250px;}
.y123_c00001{bottom:329.907000px;}
.ycc_c00001{bottom:332.098500px;}
.y4a_c00001{bottom:364.725000px;}
.y10d_c00001{bottom:370.733250px;}
.y122_c00001{bottom:370.767000px;}
.y49_c00001{bottom:379.275000px;}
.yd6_c00001{bottom:387.565500px;}
.yd5_c00001{bottom:404.065500px;}
.y121_c00001{bottom:412.761000px;}
.y10c_c00001{bottom:412.763250px;}
.y5e_c00001{bottom:420.196500px;}
.y5d_c00001{bottom:436.696500px;}
.y10b_c00001{bottom:453.263250px;}
.y120_c00001{bottom:454.125000px;}
.y11f_c00001{bottom:495.255000px;}
.y10a_c00001{bottom:495.257250px;}
.y109_c00001{bottom:535.757250px;}
.y11e_c00001{bottom:536.943000px;}
.ydb_c00001{bottom:541.725000px;}
.y11d_c00001{bottom:577.749000px;}
.y108_c00001{bottom:577.769250px;}
.yda_c00001{bottom:603.225000px;}
.ycb_c00001{bottom:611.098500px;}
.yd9_c00001{bottom:617.775000px;}
.y11c_c00001{bottom:619.743000px;}
.y107_c00001{bottom:619.745250px;}
.yca_c00001{bottom:627.610500px;}
.y106_c00001{bottom:660.587250px;}
.y11b_c00001{bottom:661.179000px;}
.y11a_c00001{bottom:702.255000px;}
.ya6_c00001{bottom:702.480000px;}
.y105_c00001{bottom:720.239250px;}
.y119_c00001{bottom:743.997000px;}
.ya5_c00001{bottom:744.474000px;}
.y104_c00001{bottom:760.739250px;}
.y118_c00001{bottom:784.749000px;}
.ya4_c00001{bottom:784.974000px;}
.y5c_c00001{bottom:786.220500px;}
.y103_c00001{bottom:802.733250px;}
.y2c_c00001{bottom:826.743000px;}
.ya3_c00001{bottom:826.968000px;}
.y5b_c00001{bottom:828.214500px;}
.y102_c00001{bottom:844.727250px;}
.yf_c00001{bottom:868.737000px;}
.ya2_c00001{bottom:868.962000px;}
.y5a_c00001{bottom:870.208500px;}
.yd4_c00001{bottom:870.577500px;}
.y101_c00001{bottom:903.227250px;}
.ye_c00001{bottom:909.237000px;}
.ya1_c00001{bottom:909.462000px;}
.y117_c00001{bottom:909.633000px;}
.y59_c00001{bottom:910.708500px;}
.yd3_c00001{bottom:911.077500px;}
.yc9_c00001{bottom:911.110500px;}
.y100_c00001{bottom:945.221250px;}
.yd_c00001{bottom:951.231000px;}
.ya0_c00001{bottom:951.456000px;}
.y58_c00001{bottom:952.702500px;}
.yd2_c00001{bottom:953.071500px;}
.yc8_c00001{bottom:953.104500px;}
.yff_c00001{bottom:985.721250px;}
.yc0_c00001{bottom:988.592250px;}
.yc_c00001{bottom:991.731000px;}
.y9f_c00001{bottom:991.956000px;}
.y116_c00001{bottom:992.451000px;}
.y57_c00001{bottom:993.202500px;}
.yd1_c00001{bottom:993.571500px;}
.yc7_c00001{bottom:993.604500px;}
.yb_c00001{bottom:1033.725000px;}
.yfe_c00001{bottom:1033.853250px;}
.y9e_c00001{bottom:1033.950000px;}
.y56_c00001{bottom:1035.196500px;}
.yd0_c00001{bottom:1035.565500px;}
.yc6_c00001{bottom:1035.598500px;}
.ybf_c00001{bottom:1036.724250px;}
.y3b_c00001{bottom:1038.225000px;}
.yf9_c00001{bottom:1042.275000px;}
.h3_c00001{height:19.800105px;}
.h24_c00001{height:32.273438px;}
.h1a_c00001{height:35.991211px;}
.h2c_c00001{height:43.257000px;}
.h12_c00001{height:47.988281px;}
.h2_c00001{height:48.410156px;}
.h17_c00001{height:48.752930px;}
.h2d_c00001{height:52.417969px;}
.h18_c00001{height:64.540875px;}
.h9_c00001{height:64.546875px;}
.h8_c00001{height:65.003906px;}
.h4_c00001{height:72.421875px;}
.h5_c00001{height:1053.771000px;}
.hd_c00001{height:1054.090500px;}
.h2a_c00001{height:1054.179000px;}
.h6_c00001{height:1054.221000px;}
.h29_c00001{height:1054.395000px;}
.h1f_c00001{height:1054.996500px;}
.ha_c00001{height:1055.028000px;}
.h13_c00001{height:1055.347500px;}
.h7_c00001{height:1055.478000px;}
.h1d_c00001{height:1055.683500px;}
.h23_c00001{height:1055.701500px;}
.hf_c00001{height:1056.016500px;}
.h10_c00001{height:1056.847500px;}
.h19_c00001{height:1056.948000px;}
.h28_c00001{height:1057.033500px;}
.h16_c00001{height:1057.231500px;}
.h27_c00001{height:1057.318500px;}
.h26_c00001{height:1057.351500px;}
.h21_c00001{height:1058.347500px;}
.h1b_c00001{height:1058.824500px;}
.he_c00001{height:1058.883000px;}
.h22_c00001{height:1059.544500px;}
.h1e_c00001{height:1060.461000px;}
.hb_c00001{height:1060.870500px;}
.h11_c00001{height:1061.080500px;}
.h1_c00001{height:1061.392500px;}
.h15_c00001{height:1061.718000px;}
.h25_c00001{height:1062.771000px;}
.h2b_c00001{height:1064.028000px;}
.h14_c00001{height:1064.301000px;}
.h1c_c00001{height:1065.516000px;}
.hc_c00001{height:1069.350000px;}
.h20_c00001{height:1077.241500px;}
.h0_c00001{height:1263.000000px;}
.w4_c00001{width:30.031500px;}
.w3_c00001{width:30.033000px;}
.wb_c00001{width:281.505000px;}
.w1_c00001{width:637.350000px;}
.w8_c00001{width:644.890500px;}
.w7_c00001{width:647.404500px;}
.w2_c00001{width:655.645500px;}
.w9_c00001{width:655.705500px;}
.wa_c00001{width:656.284500px;}
.w5_c00001{width:656.902500px;}
.w6_c00001{width:658.159500px;}
.w0_c00001{width:892.500000px;}
.x0_c00001{left:0.000000px;}
.x33_c00001{left:1.341300px;}
.x4_c00001{left:3.696000px;}
.x7_c00001{left:4.953000px;}
.xb_c00001{left:6.696000px;}
.x9_c00001{left:10.953000px;}
.x1e_c00001{left:12.453000px;}
.x12_c00001{left:17.196000px;}
.x1a_c00001{left:20.196000px;}
.x3_c00001{left:26.196000px;}
.x22_c00001{left:27.696000px;}
.x18_c00001{left:29.196000px;}
.x14_c00001{left:33.453000px;}
.x21_c00001{left:35.196000px;}
.x8_c00001{left:46.947000px;}
.x29_c00001{left:48.696000px;}
.x16_c00001{left:49.953000px;}
.x25_c00001{left:57.453000px;}
.x20_c00001{left:59.196000px;}
.x19_c00001{left:64.953000px;}
.x1d_c00001{left:72.453000px;}
.x24_c00001{left:77.196000px;}
.x2b_c00001{left:78.453000px;}
.x17_c00001{left:84.696000px;}
.x15_c00001{left:103.953000px;}
.xe_c00001{left:113.196000px;}
.x6_c00001{left:122.547000px;}
.x2_c00001{left:123.804000px;}
.x1_c00001{left:127.575000px;}
.x28_c00001{left:131.196000px;}
.x1b_c00001{left:135.696000px;}
.xd_c00001{left:138.453000px;}
.xc_c00001{left:144.453000px;}
.x2f_c00001{left:148.953000px;}
.x2c_c00001{left:150.447000px;}
.x1f_c00001{left:153.696000px;}
.x23_c00001{left:175.953000px;}
.x11_c00001{left:177.453000px;}
.x35_c00001{left:183.453000px;}
.x34_c00001{left:192.453000px;}
.xf_c00001{left:194.196000px;}
.x2e_c00001{left:195.453000px;}
.x2d_c00001{left:208.953000px;}
.x32_c00001{left:240.453000px;}
.x10_c00001{left:249.453000px;}
.x30_c00001{left:255.453000px;}
.x31_c00001{left:258.453000px;}
.x36_c00001{left:270.729000px;}
.xa_c00001{left:297.450000px;}
.x42_c00001{left:335.475000px;}
.x3b_c00001{left:339.270000px;}
.x3c_c00001{left:357.237000px;}
.x38_c00001{left:366.306000px;}
.x3e_c00001{left:389.205000px;}
.x39_c00001{left:395.286000px;}
.x40_c00001{left:411.183000px;}
.x3a_c00001{left:421.674000px;}
.x3d_c00001{left:427.221000px;}
.x37_c00001{left:428.316000px;}
.x2a_c00001{left:439.106700px;}
.x41_c00001{left:441.171000px;}
.x1c_c00001{left:451.975950px;}
.x13_c00001{left:453.232950px;}
.x3f_c00001{left:467.217000px;}
.x26_c00001{left:515.024250px;}
.x27_c00001{left:637.275000px;}
.x5_c00001{left:734.908997px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls2_c00001{letter-spacing:-0.012800pt;}
.ls5_c00001{letter-spacing:-0.009600pt;}
.ls9_c00001{letter-spacing:-0.006400pt;}
.ls1_c00001{letter-spacing:0.000000pt;}
.ls6_c00001{letter-spacing:0.009600pt;}
.lsa_c00001{letter-spacing:0.012800pt;}
.ls7_c00001{letter-spacing:1.049600pt;}
.lsb_c00001{letter-spacing:1229.824000pt;}
.lsf_c00001{letter-spacing:1303.536000pt;}
.ls8_c00001{letter-spacing:2248.704000pt;}
.lsc_c00001{letter-spacing:2259.456000pt;}
.lsd_c00001{letter-spacing:2261.376000pt;}
.lse_c00001{letter-spacing:2262.720000pt;}
.ls4_c00001{letter-spacing:2266.112000pt;}
.ls0_c00001{letter-spacing:2266.128000pt;}
.ls3_c00001{letter-spacing:2266.133333pt;}
.ws1_c00001{word-spacing:-13.353600pt;}
.ws0_c00001{word-spacing:0.000000pt;}
.ws2_c00001{word-spacing:3.225600pt;}
._12_c00001{margin-left:-17.248000pt;}
._4_c00001{margin-left:-6.355200pt;}
._6_c00001{margin-left:-5.328000pt;}
._3_c00001{margin-left:-3.532800pt;}
._1c_c00001{margin-left:-2.387200pt;}
._15_c00001{margin-left:-1.056000pt;}
._0_c00001{width:1.041600pt;}
._a_c00001{width:1.937600pt;}
._d_c00001{width:2.852800pt;}
._13_c00001{width:3.876800pt;}
._2_c00001{width:4.960000pt;}
._14_c00001{width:5.913600pt;}
._5_c00001{width:6.860800pt;}
._f_c00001{width:8.059200pt;}
._7_c00001{width:9.288000pt;}
._10_c00001{width:10.228800pt;}
._8_c00001{width:11.219200pt;}
._1_c00001{width:12.249600pt;}
._1b_c00001{width:13.664000pt;}
._17_c00001{width:14.873600pt;}
._9_c00001{width:16.166400pt;}
._1a_c00001{width:18.867200pt;}
._11_c00001{width:20.275200pt;}
._e_c00001{width:21.436800pt;}
._18_c00001{width:23.158400pt;}
._19_c00001{width:24.070400pt;}
._16_c00001{width:30.924800pt;}
._c_c00001{width:31.993600pt;}
._b_c00001{width:33.011200pt;}
.fs2_c00001{font-size:32.000000pt;}
.fs0_c00001{font-size:48.000000pt;}
.fs1_c00001{font-size:64.000000pt;}
.y0_c00001{bottom:0.000000pt;}
.y5_c00001{bottom:3.366667pt;}
.yaa_c00001{bottom:4.880400pt;}
.y2a_c00001{bottom:5.798667pt;}
.yd8_c00001{bottom:5.836000pt;}
.yce_c00001{bottom:5.866667pt;}
.ye7_c00001{bottom:6.288933pt;}
.yee_c00001{bottom:6.323467pt;}
.yc1_c00001{bottom:6.485733pt;}
.ydd_c00001{bottom:6.643600pt;}
.y77_c00001{bottom:6.834667pt;}
.y61_c00001{bottom:6.842667pt;}
.y1d_c00001{bottom:6.866667pt;}
.y12_c00001{bottom:6.868000pt;}
.y7a_c00001{bottom:6.869333pt;}
.ydc_c00001{bottom:7.171067pt;}
.yb8_c00001{bottom:7.431867pt;}
.yc2_c00001{bottom:7.494933pt;}
.yb3_c00001{bottom:7.702800pt;}
.yde_c00001{bottom:7.758533pt;}
.y14_c00001{bottom:8.200000pt;}
.y2b_c00001{bottom:8.201333pt;}
.yae_c00001{bottom:8.685733pt;}
.yeb_c00001{bottom:8.710933pt;}
.yc4_c00001{bottom:9.533333pt;}
.y4f_c00001{bottom:9.534667pt;}
.y2e_c00001{bottom:10.215333pt;}
.yf2_c00001{bottom:10.538267pt;}
.y43_c00001{bottom:10.866667pt;}
.y54_c00001{bottom:10.869333pt;}
.yab_c00001{bottom:11.352400pt;}
.yac_c00001{bottom:11.456533pt;}
.yf4_c00001{bottom:11.539200pt;}
.ye9_c00001{bottom:11.994267pt;}
.y39_c00001{bottom:12.200000pt;}
.ybb_c00001{bottom:12.202667pt;}
.y50_c00001{bottom:12.215867pt;}
.y7f_c00001{bottom:13.463733pt;}
.y8e_c00001{bottom:13.502933pt;}
.y6c_c00001{bottom:13.533333pt;}
.y4d_c00001{bottom:13.534667pt;}
.y7e_c00001{bottom:13.536000pt;}
.yf0_c00001{bottom:13.657067pt;}
.yfc_c00001{bottom:14.271867pt;}
.y65_c00001{bottom:14.803333pt;}
.y8b_c00001{bottom:14.852667pt;}
.yb7_c00001{bottom:14.869333pt;}
.y80_c00001{bottom:15.832667pt;}
.y74_c00001{bottom:16.200000pt;}
.y63_c00001{bottom:16.201333pt;}
.ybe_c00001{bottom:17.134667pt;}
.y8d_c00001{bottom:17.166667pt;}
.yf6_c00001{bottom:17.782933pt;}
.ya9_c00001{bottom:18.216400pt;}
.y3_c00001{bottom:18.574667pt;}
.ya_c00001{bottom:18.868000pt;}
.y20_c00001{bottom:19.012000pt;}
.y85_c00001{bottom:19.049600pt;}
.y29_c00001{bottom:19.130667pt;}
.yd7_c00001{bottom:19.169333pt;}
.y6a_c00001{bottom:19.176000pt;}
.y1a_c00001{bottom:19.198667pt;}
.y8f_c00001{bottom:19.235600pt;}
.y95_c00001{bottom:19.557333pt;}
.yed_c00001{bottom:19.620800pt;}
.ye6_c00001{bottom:19.620933pt;}
.y1c_c00001{bottom:20.085333pt;}
.y34_c00001{bottom:20.086667pt;}
.y76_c00001{bottom:20.168000pt;}
.y60_c00001{bottom:20.174667pt;}
.y11_c00001{bottom:20.200000pt;}
.y79_c00001{bottom:20.201333pt;}
.y13_c00001{bottom:21.133333pt;}
.y3a_c00001{bottom:21.418667pt;}
.y24_c00001{bottom:21.533333pt;}
.y72_c00001{bottom:21.534667pt;}
.y92_c00001{bottom:21.536000pt;}
.yad_c00001{bottom:21.619067pt;}
.yea_c00001{bottom:21.644267pt;}
.y66_c00001{bottom:22.466667pt;}
.y26_c00001{bottom:22.866667pt;}
.y89_c00001{bottom:22.869333pt;}
.ydf_c00001{bottom:23.317867pt;}
.yf1_c00001{bottom:23.471600pt;}
.yc3_c00001{bottom:23.800000pt;}
.y30_c00001{bottom:24.200000pt;}
.y53_c00001{bottom:24.201333pt;}
.yb2_c00001{bottom:24.285733pt;}
.yf3_c00001{bottom:24.472533pt;}
.ye8_c00001{bottom:24.927600pt;}
.y38_c00001{bottom:25.133333pt;}
.yba_c00001{bottom:25.534667pt;}
.ye4_c00001{bottom:26.070800pt;}
.y83_c00001{bottom:26.071600pt;}
.y6b_c00001{bottom:26.466667pt;}
.yef_c00001{bottom:26.590400pt;}
.y4c_c00001{bottom:26.866667pt;}
.y7d_c00001{bottom:26.868000pt;}
.y8a_c00001{bottom:27.800000pt;}
.y64_c00001{bottom:28.135333pt;}
.yb6_c00001{bottom:28.201333pt;}
.y73_c00001{bottom:29.133333pt;}
.y62_c00001{bottom:29.533333pt;}
.yf8_c00001{bottom:29.873600pt;}
.y8c_c00001{bottom:30.466667pt;}
.yf5_c00001{bottom:30.716267pt;}
.ya8_c00001{bottom:31.552400pt;}
.y2_c00001{bottom:31.908000pt;}
.y9_c00001{bottom:32.200000pt;}
.y48_c00001{bottom:32.209333pt;}
.y1f_c00001{bottom:32.345333pt;}
.y28_c00001{bottom:32.464000pt;}
.y69_c00001{bottom:32.508000pt;}
.y94_c00001{bottom:32.890667pt;}
.y6f_c00001{bottom:32.906667pt;}
.y10_c00001{bottom:33.133333pt;}
.y3e_c00001{bottom:33.160000pt;}
.y84_c00001{bottom:33.361467pt;}
.y31_c00001{bottom:33.418667pt;}
.y5f_c00001{bottom:33.508000pt;}
.y78_c00001{bottom:33.533333pt;}
.y19_c00001{bottom:33.865333pt;}
.yb1_c00001{bottom:34.016400pt;}
.y23_c00001{bottom:34.466667pt;}
.y71_c00001{bottom:34.866667pt;}
.y91_c00001{bottom:34.868000pt;}
.y115_c00001{bottom:35.076667pt;}
.y25_c00001{bottom:35.800000pt;}
.y45_c00001{bottom:36.200000pt;}
.y88_c00001{bottom:36.201333pt;}
.y4e_c00001{bottom:37.133333pt;}
.y52_c00001{bottom:37.533333pt;}
.y2f_c00001{bottom:38.466667pt;}
.yb9_c00001{bottom:38.866667pt;}
.y4b_c00001{bottom:39.800000pt;}
.y7c_c00001{bottom:40.200000pt;}
.ye3_c00001{bottom:40.249333pt;}
.y82_c00001{bottom:40.630667pt;}
.yb5_c00001{bottom:41.533333pt;}
.y2d_c00001{bottom:42.466667pt;}
.yf7_c00001{bottom:42.806933pt;}
.y9c_c00001{bottom:43.598667pt;}
.y37_c00001{bottom:43.632000pt;}
.ybd_c00001{bottom:43.800000pt;}
.y42_c00001{bottom:44.200000pt;}
.y98_c00001{bottom:44.878667pt;}
.y7_c00001{bottom:45.133333pt;}
.y47_c00001{bottom:45.542667pt;}
.y6e_c00001{bottom:46.240000pt;}
.y3d_c00001{bottom:46.493333pt;}
.ya7_c00001{bottom:47.066667pt;}
.y68_c00001{bottom:47.174667pt;}
.yb0_c00001{bottom:47.352400pt;}
.y70_c00001{bottom:47.800000pt;}
.y33_c00001{bottom:48.085333pt;}
.y90_c00001{bottom:48.200000pt;}
.y44_c00001{bottom:49.133333pt;}
.y87_c00001{bottom:49.533333pt;}
.y4_c00001{bottom:50.431641pt;}
.y51_c00001{bottom:50.466667pt;}
.y7b_c00001{bottom:53.133333pt;}
.yb4_c00001{bottom:55.800000pt;}
.ye1_c00001{bottom:56.362000pt;}
.y9b_c00001{bottom:56.932000pt;}
.y41_c00001{bottom:57.532000pt;}
.y97_c00001{bottom:58.212000pt;}
.y36_c00001{bottom:58.298667pt;}
.y17_c00001{bottom:59.445333pt;}
.yaf_c00001{bottom:60.285733pt;}
.y86_c00001{bottom:62.466667pt;}
.ye0_c00001{bottom:70.673867pt;}
.y40_c00001{bottom:70.865333pt;}
.y114_c00001{bottom:72.260667pt;}
.y16_c00001{bottom:74.112000pt;}
.y96_c00001{bottom:75.121333pt;}
.y18_c00001{bottom:82.134667pt;}
.y6d_c00001{bottom:84.426667pt;}
.y3c_c00001{bottom:85.506667pt;}
.ybc_c00001{bottom:86.866667pt;}
.y3f_c00001{bottom:87.801333pt;}
.y1_c00001{bottom:88.092000pt;}
.y35_c00001{bottom:88.368000pt;}
.y15_c00001{bottom:88.554667pt;}
.y9a_c00001{bottom:89.734667pt;}
.y81_c00001{bottom:90.036000pt;}
.y1e_c00001{bottom:90.321333pt;}
.y67_c00001{bottom:91.492000pt;}
.y46_c00001{bottom:91.790667pt;}
.y99_c00001{bottom:91.914667pt;}
.yc5_c00001{bottom:92.801333pt;}
.ycf_c00001{bottom:92.830667pt;}
.y27_c00001{bottom:92.869333pt;}
.ye2_c00001{bottom:93.084000pt;}
.y55_c00001{bottom:93.158667pt;}
.y75_c00001{bottom:93.165333pt;}
.y32_c00001{bottom:93.248000pt;}
.y93_c00001{bottom:93.776000pt;}
.y9d_c00001{bottom:94.266667pt;}
.ye5_c00001{bottom:94.310667pt;}
.y8_c00001{bottom:94.466667pt;}
.yec_c00001{bottom:94.502667pt;}
.y1b_c00001{bottom:94.581333pt;}
.y6_c00001{bottom:94.866667pt;}
.yfd_c00001{bottom:95.800000pt;}
.y113_c00001{bottom:108.260667pt;}
.y22_c00001{bottom:129.533333pt;}
.y21_c00001{bottom:142.466667pt;}
.y112_c00001{bottom:145.588667pt;}
.y111_c00001{bottom:182.308667pt;}
.yfb_c00001{bottom:211.800000pt;}
.y110_c00001{bottom:218.916667pt;}
.yfa_c00001{bottom:226.466667pt;}
.y10f_c00001{bottom:256.244667pt;}
.ycd_c00001{bottom:280.532000pt;}
.y10e_c00001{bottom:292.244667pt;}
.y123_c00001{bottom:293.250667pt;}
.ycc_c00001{bottom:295.198667pt;}
.y4a_c00001{bottom:324.200000pt;}
.y10d_c00001{bottom:329.540667pt;}
.y122_c00001{bottom:329.570667pt;}
.y49_c00001{bottom:337.133333pt;}
.yd6_c00001{bottom:344.502667pt;}
.yd5_c00001{bottom:359.169333pt;}
.y121_c00001{bottom:366.898667pt;}
.y10c_c00001{bottom:366.900667pt;}
.y5e_c00001{bottom:373.508000pt;}
.y5d_c00001{bottom:388.174667pt;}
.y10b_c00001{bottom:402.900667pt;}
.y120_c00001{bottom:403.666667pt;}
.y11f_c00001{bottom:440.226667pt;}
.y10a_c00001{bottom:440.228667pt;}
.y109_c00001{bottom:476.228667pt;}
.y11e_c00001{bottom:477.282667pt;}
.ydb_c00001{bottom:481.533333pt;}
.y11d_c00001{bottom:513.554667pt;}
.y108_c00001{bottom:513.572667pt;}
.yda_c00001{bottom:536.200000pt;}
.ycb_c00001{bottom:543.198667pt;}
.yd9_c00001{bottom:549.133333pt;}
.y11c_c00001{bottom:550.882667pt;}
.y107_c00001{bottom:550.884667pt;}
.yca_c00001{bottom:557.876000pt;}
.y106_c00001{bottom:587.188667pt;}
.y11b_c00001{bottom:587.714667pt;}
.y11a_c00001{bottom:624.226667pt;}
.ya6_c00001{bottom:624.426667pt;}
.y105_c00001{bottom:640.212667pt;}
.y119_c00001{bottom:661.330667pt;}
.ya5_c00001{bottom:661.754667pt;}
.y104_c00001{bottom:676.212667pt;}
.y118_c00001{bottom:697.554667pt;}
.ya4_c00001{bottom:697.754667pt;}
.y5c_c00001{bottom:698.862667pt;}
.y103_c00001{bottom:713.540667pt;}
.y2c_c00001{bottom:734.882667pt;}
.ya3_c00001{bottom:735.082667pt;}
.y5b_c00001{bottom:736.190667pt;}
.y102_c00001{bottom:750.868667pt;}
.yf_c00001{bottom:772.210667pt;}
.ya2_c00001{bottom:772.410667pt;}
.y5a_c00001{bottom:773.518667pt;}
.yd4_c00001{bottom:773.846667pt;}
.y101_c00001{bottom:802.868667pt;}
.ye_c00001{bottom:808.210667pt;}
.ya1_c00001{bottom:808.410667pt;}
.y117_c00001{bottom:808.562667pt;}
.y59_c00001{bottom:809.518667pt;}
.yd3_c00001{bottom:809.846667pt;}
.yc9_c00001{bottom:809.876000pt;}
.y100_c00001{bottom:840.196667pt;}
.yd_c00001{bottom:845.538667pt;}
.ya0_c00001{bottom:845.738667pt;}
.y58_c00001{bottom:846.846667pt;}
.yd2_c00001{bottom:847.174667pt;}
.yc8_c00001{bottom:847.204000pt;}
.yff_c00001{bottom:876.196667pt;}
.yc0_c00001{bottom:878.748667pt;}
.yc_c00001{bottom:881.538667pt;}
.y9f_c00001{bottom:881.738667pt;}
.y116_c00001{bottom:882.178667pt;}
.y57_c00001{bottom:882.846667pt;}
.yd1_c00001{bottom:883.174667pt;}
.yc7_c00001{bottom:883.204000pt;}
.yb_c00001{bottom:918.866667pt;}
.yfe_c00001{bottom:918.980667pt;}
.y9e_c00001{bottom:919.066667pt;}
.y56_c00001{bottom:920.174667pt;}
.yd0_c00001{bottom:920.502667pt;}
.yc6_c00001{bottom:920.532000pt;}
.ybf_c00001{bottom:921.532667pt;}
.y3b_c00001{bottom:922.866667pt;}
.yf9_c00001{bottom:926.466667pt;}
.h3_c00001{height:17.600093pt;}
.h24_c00001{height:28.687500pt;}
.h1a_c00001{height:31.992188pt;}
.h2c_c00001{height:38.450667pt;}
.h12_c00001{height:42.656250pt;}
.h2_c00001{height:43.031250pt;}
.h17_c00001{height:43.335938pt;}
.h2d_c00001{height:46.593750pt;}
.h18_c00001{height:57.369667pt;}
.h9_c00001{height:57.375000pt;}
.h8_c00001{height:57.781250pt;}
.h4_c00001{height:64.375000pt;}
.h5_c00001{height:936.685333pt;}
.hd_c00001{height:936.969333pt;}
.h2a_c00001{height:937.048000pt;}
.h6_c00001{height:937.085333pt;}
.h29_c00001{height:937.240000pt;}
.h1f_c00001{height:937.774667pt;}
.ha_c00001{height:937.802667pt;}
.h13_c00001{height:938.086667pt;}
.h7_c00001{height:938.202667pt;}
.h1d_c00001{height:938.385333pt;}
.h23_c00001{height:938.401333pt;}
.hf_c00001{height:938.681333pt;}
.h10_c00001{height:939.420000pt;}
.h19_c00001{height:939.509333pt;}
.h28_c00001{height:939.585333pt;}
.h16_c00001{height:939.761333pt;}
.h27_c00001{height:939.838667pt;}
.h26_c00001{height:939.868000pt;}
.h21_c00001{height:940.753333pt;}
.h1b_c00001{height:941.177333pt;}
.he_c00001{height:941.229333pt;}
.h22_c00001{height:941.817333pt;}
.h1e_c00001{height:942.632000pt;}
.hb_c00001{height:942.996000pt;}
.h11_c00001{height:943.182667pt;}
.h1_c00001{height:943.460000pt;}
.h15_c00001{height:943.749333pt;}
.h25_c00001{height:944.685333pt;}
.h2b_c00001{height:945.802667pt;}
.h14_c00001{height:946.045333pt;}
.h1c_c00001{height:947.125333pt;}
.hc_c00001{height:950.533333pt;}
.h20_c00001{height:957.548000pt;}
.h0_c00001{height:1122.666667pt;}
.w4_c00001{width:26.694667pt;}
.w3_c00001{width:26.696000pt;}
.wb_c00001{width:250.226667pt;}
.w1_c00001{width:566.533333pt;}
.w8_c00001{width:573.236000pt;}
.w7_c00001{width:575.470667pt;}
.w2_c00001{width:582.796000pt;}
.w9_c00001{width:582.849333pt;}
.wa_c00001{width:583.364000pt;}
.w5_c00001{width:583.913333pt;}
.w6_c00001{width:585.030667pt;}
.w0_c00001{width:793.333333pt;}
.x0_c00001{left:0.000000pt;}
.x33_c00001{left:1.192267pt;}
.x4_c00001{left:3.285333pt;}
.x7_c00001{left:4.402667pt;}
.xb_c00001{left:5.952000pt;}
.x9_c00001{left:9.736000pt;}
.x1e_c00001{left:11.069333pt;}
.x12_c00001{left:15.285333pt;}
.x1a_c00001{left:17.952000pt;}
.x3_c00001{left:23.285333pt;}
.x22_c00001{left:24.618667pt;}
.x18_c00001{left:25.952000pt;}
.x14_c00001{left:29.736000pt;}
.x21_c00001{left:31.285333pt;}
.x8_c00001{left:41.730667pt;}
.x29_c00001{left:43.285333pt;}
.x16_c00001{left:44.402667pt;}
.x25_c00001{left:51.069333pt;}
.x20_c00001{left:52.618667pt;}
.x19_c00001{left:57.736000pt;}
.x1d_c00001{left:64.402667pt;}
.x24_c00001{left:68.618667pt;}
.x2b_c00001{left:69.736000pt;}
.x17_c00001{left:75.285333pt;}
.x15_c00001{left:92.402667pt;}
.xe_c00001{left:100.618667pt;}
.x6_c00001{left:108.930667pt;}
.x2_c00001{left:110.048000pt;}
.x1_c00001{left:113.400000pt;}
.x28_c00001{left:116.618667pt;}
.x1b_c00001{left:120.618667pt;}
.xd_c00001{left:123.069333pt;}
.xc_c00001{left:128.402667pt;}
.x2f_c00001{left:132.402667pt;}
.x2c_c00001{left:133.730667pt;}
.x1f_c00001{left:136.618667pt;}
.x23_c00001{left:156.402667pt;}
.x11_c00001{left:157.736000pt;}
.x35_c00001{left:163.069333pt;}
.x34_c00001{left:171.069333pt;}
.xf_c00001{left:172.618667pt;}
.x2e_c00001{left:173.736000pt;}
.x2d_c00001{left:185.736000pt;}
.x32_c00001{left:213.736000pt;}
.x10_c00001{left:221.736000pt;}
.x30_c00001{left:227.069333pt;}
.x31_c00001{left:229.736000pt;}
.x36_c00001{left:240.648000pt;}
.xa_c00001{left:264.400000pt;}
.x42_c00001{left:298.200000pt;}
.x3b_c00001{left:301.573333pt;}
.x3c_c00001{left:317.544000pt;}
.x38_c00001{left:325.605333pt;}
.x3e_c00001{left:345.960000pt;}
.x39_c00001{left:351.365333pt;}
.x40_c00001{left:365.496000pt;}
.x3a_c00001{left:374.821333pt;}
.x3d_c00001{left:379.752000pt;}
.x37_c00001{left:380.725333pt;}
.x2a_c00001{left:390.317067pt;}
.x41_c00001{left:392.152000pt;}
.x1c_c00001{left:401.756400pt;}
.x13_c00001{left:402.873733pt;}
.x3f_c00001{left:415.304000pt;}
.x26_c00001{left:457.799333pt;}
.x27_c00001{left:566.466667pt;}
.x5_c00001{left:653.252441pt;}
}




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